diff --git a/analysis/src/benchmark_analysis/cli.py b/analysis/src/benchmark_analysis/cli.py index 4875b605..56df8e4a 100644 --- a/analysis/src/benchmark_analysis/cli.py +++ b/analysis/src/benchmark_analysis/cli.py @@ -675,70 +675,40 @@ def main(): recs, skipped = parse_csv_file(path, language_hint=lang) total_loaded += len(recs) if recs: - # One sanitize pass → same population for tables and latency distributions. - clean, meta = prepare_analysis_records( + # Multi-policy stats for dashboard outlier research; default policy + # still feeds markdown tables / latency distributions. + from .stats import ( + DEFAULT_FILTER_POLICY, + build_stats_export_payload, + compute_statistics_multi_policy, + config_for_filter_policy, + ) + + by_policy = compute_statistics_multi_policy( recs, config=stats_cfg, language_hint=lang ) + default_pid = DEFAULT_FILTER_POLICY + if default_pid not in by_policy: + default_pid = next(iter(by_policy), DEFAULT_FILTER_POLICY) + st = by_policy.get(default_pid) or {} + all_stats.update(st) + + # Sanitize once under default policy for shared plot population + default_cfg = config_for_filter_policy(stats_cfg, default_pid) + clean, _meta = prepare_analysis_records( + recs, config=default_cfg, language_hint=lang + ) all_records[lang] = clean total_sanitized += len(clean) - st = compute_statistics( - clean, - config=stats_cfg, - language_hint=lang, - pre_sanitized=True, - group_meta=meta, - ) - all_stats.update(st) - - # Export to machine-readable JSON: reports/stats__latest.json + + # Export machine-readable JSON with all filter policies try: import json - import datetime + os.makedirs(str(reports_root), exist_ok=True) - groups_list = [] - for entry in st.values(): - # Strip private helper keys (like _times_total_filtered) - clean_entry = {k: v for k, v in entry.items() if not k.startswith("_")} - groups_list.append(clean_entry) - - # Dynamic Pareto front computation - pareto_front = [] - workloads = {} - for g in groups_list: - wkey = (g["test_data"], g["mode"]) - workloads.setdefault(wkey, []).append(g) - for wkey, items in workloads.items(): - for item in items: - dominated = False - for other in items: - if other == item: - continue - if ((other["avg_time_total_ns"] <= item["avg_time_total_ns"] and other["median_size_bytes"] < item["median_size_bytes"]) or - (other["avg_time_total_ns"] < item["avg_time_total_ns"] and other["median_size_bytes"] <= item["median_size_bytes"])): - dominated = True - break - if not dominated: - pareto_front.append({ - "serializer": item["serializer"], - "test_data": item["test_data"], - "mode": item["mode"], - "time": item["avg_time_total_ns"], - "size": item["median_size_bytes"] - }) - - export_data = { - "schema_version": "2.0", - "generated": datetime.datetime.now().isoformat(), - "language": lang, - "questions": { - "Q1": "How fast?", - "Q2": "How compact?", - "Q3": "How stable?", - "Q4": "Under which workloads does it win?" - }, - "groups": groups_list, - "pareto_front": pareto_front - } + export_data = build_stats_export_payload( + by_policy, language=lang, default_policy=default_pid + ) latest_json_path = reports_root / f"stats_{lang}_latest.json" with open(latest_json_path, "w", encoding="utf-8") as f: json.dump(export_data, f, indent=2) @@ -747,7 +717,8 @@ def main(): print( f"Loaded {len(recs)} {lang} records from {os.path.basename(path)} " - f"-> {len(clean)} after sanitize, {len(st)} stat groups " + f"-> {len(clean)} after sanitize ({default_pid}), {len(st)} stat groups " + f"× {len(by_policy)} filter policies " f"(parse-skipped {skipped})" ) else: diff --git a/analysis/src/benchmark_analysis/stats.py b/analysis/src/benchmark_analysis/stats.py index ce4e6f03..87a92e22 100644 --- a/analysis/src/benchmark_analysis/stats.py +++ b/analysis/src/benchmark_analysis/stats.py @@ -21,6 +21,63 @@ # Config helpers (optional YAML; safe defaults if PyYAML / file missing) # --------------------------------------------------------------------------- +# Named filter policies exported for dashboard outlier research. +# Keys are stable API ids; criteria are fixed (not taken from YAML outlier_method). +FILTER_POLICY_IDS: Tuple[str, ...] = ( + "all", + "iqr_1.5", + "iqr_3", + "winsorize_5_95", +) +DEFAULT_FILTER_POLICY = "iqr_1.5" + +FILTER_POLICY_SPECS: Dict[str, Dict[str, Any]] = { + "all": { + "label": "All trials (post-warmup)", + "description": ( + "Every measured repetition after warmup exclusion. " + "No IQR drop and no winsorization — includes GC and scheduler tails." + ), + "outlier_method": "none", + "iqr_k": None, + "winsorize_percentiles": None, + "paired": None, + }, + "iqr_1.5": { + "label": "IQR k=1.5 (strict / default)", + "description": ( + "Tukey fences with k=1.5 on serialize, deserialize, and total; " + "a repetition is dropped if it is an outlier on any of the three (paired)." + ), + "outlier_method": "iqr", + "iqr_k": 1.5, + "winsorize_percentiles": None, + "paired": True, + }, + "iqr_3": { + "label": "IQR k=3 (loose)", + "description": ( + "Same paired IQR rule as iqr_1.5 but with k=3 so only extreme stalls " + "are removed; bulk tail mass is retained." + ), + "outlier_method": "iqr", + "iqr_k": 3.0, + "winsorize_percentiles": None, + "paired": True, + }, + "winsorize_5_95": { + "label": "Winsorize 5–95%", + "description": ( + "Clip each of ser/deser/total independently at the 5th and 95th " + "percentiles; sample size is unchanged (no rows dropped)." + ), + "outlier_method": "winsorize", + "iqr_k": None, + "winsorize_percentiles": [5.0, 95.0], + "paired": False, + }, +} + _DEFAULT_STATS_CFG: Dict[str, Any] = { "exclude_warmup": True, "outlier_method": "iqr", @@ -422,8 +479,19 @@ def _scale_for(lang: str) -> float: # Bucket non-warmup rows by analysis group key buckets: Dict[Tuple, List[Dict]] = defaultdict(list) - group_meta: Dict[Tuple, Dict[str, int]] = defaultdict( - lambda: {"warmup_skipped": 0, "outliers_removed": 0, "runs_raw": 0} + group_meta: Dict[Tuple, Dict[str, Any]] = defaultdict( + lambda: { + "warmup_skipped": 0, + "outliers_removed": 0, + "values_clipped": 0, + "runs_raw": 0, + "fence_total_low_ns": None, + "fence_total_high_ns": None, + "fence_ser_low_ns": None, + "fence_ser_high_ns": None, + "fence_deser_low_ns": None, + "fence_deser_high_ns": None, + } ) for r in records: @@ -454,11 +522,37 @@ def _scale_for(lang: str) -> float: deser = [float(x["TimeDeser"]) for x in recs] total = [float(x["TimeSerAndDeser"]) for x in recs] + if outlier_method == "iqr" and len(recs) >= min_out: + for series, lo_k, hi_k in ( + (ser, "fence_ser_low_ns", "fence_ser_high_ns"), + (deser, "fence_deser_low_ns", "fence_deser_high_ns"), + (total, "fence_total_low_ns", "fence_total_high_ns"), + ): + lo, hi = _iqr_fence_bounds(series, iqr_k=iqr_k, min_samples=min_out) + group_meta[key][lo_k] = lo + group_meta[key][hi_k] = hi + if outlier_method == "winsorize" and len(recs) >= min_out: s_f, d_f, t_f, rem = filter_outliers_paired( ser, deser, total, method="winsorize", iqr_k=iqr_k, min_samples=min_out ) - group_meta[key]["outliers_removed"] = rem + group_meta[key]["outliers_removed"] = rem # always 0 for winsorize + clipped_rows = sum( + 1 + for i in range(len(ser)) + if ser[i] != s_f[i] or deser[i] != d_f[i] or total[i] != t_f[i] + ) + group_meta[key]["values_clipped"] = int(clipped_rows) + # Store clip bounds from total (and ser/deser) for provenance + for series, lo_k, hi_k in ( + (ser, "fence_ser_low_ns", "fence_ser_high_ns"), + (deser, "fence_deser_low_ns", "fence_deser_high_ns"), + (total, "fence_total_low_ns", "fence_total_high_ns"), + ): + arr = np.asarray(series, dtype=float) + lo, hi = np.percentile(arr, [5, 95]) + group_meta[key][lo_k] = float(lo) + group_meta[key][hi_k] = float(hi) for rec, ts, td, tt in zip(recs, s_f, d_f, t_f): out = dict(rec) out["TimeSer"] = ts @@ -472,6 +566,7 @@ def _scale_for(lang: str) -> float: ) rem = int((~mask).sum()) group_meta[key]["outliers_removed"] = rem + group_meta[key]["values_clipped"] = 0 for rec, keep in zip(recs, mask): if keep: sanitized.append(rec) @@ -479,6 +574,24 @@ def _scale_for(lang: str) -> float: return sanitized, dict(group_meta) +def _iqr_fence_bounds( + values: Sequence[float], + iqr_k: float = 1.5, + min_samples: int = 10, +) -> Tuple[Optional[float], Optional[float]]: + """Return (lower, upper) Tukey fences, or (None, None) if not applicable.""" + arr = np.asarray(values, dtype=float) + n = len(arr) + if n < min_samples: + return None, None + q1 = float(np.percentile(arr, 25)) + q3 = float(np.percentile(arr, 75)) + iqr = q3 - q1 + if iqr == 0: + return None, None + return q1 - iqr_k * iqr, q3 + iqr_k * iqr + + # --------------------------------------------------------------------------- # Bootstrap CI # --------------------------------------------------------------------------- @@ -849,6 +962,7 @@ def compute_statistics( times_total = data["times_total"] m = meta.get(key) or {} rem_t = int(m.get("outliers_removed", 0)) + values_clipped = int(m.get("values_clipped", 0)) warmup_skipped = int(m.get("warmup_skipped", 0)) runs_raw = int(m.get("runs_raw", len(times_total) + warmup_skipped + rem_t)) total_outliers += rem_t @@ -884,6 +998,7 @@ def compute_statistics( "runs_raw": runs_raw, "warmup_skipped": warmup_skipped, "outliers_removed": rem_t, + "values_clipped": values_clipped, # Extended scientific metrics **ser_stats, **deser_stats, @@ -893,6 +1008,12 @@ def compute_statistics( # Retain filtered series for effect-size / A-B (not serialized by default consumers) "_times_total_filtered": times_total, } + entry["filter"] = _build_filter_block( + policy_id=m.get("filter_policy"), + cfg=cfg, + entry=entry, + meta=m, + ) # B-6: majority StreamMode label for this group (stream I/O rows) sms = [s for s in (data.get("stream_modes") or []) if s] if sms: @@ -920,6 +1041,317 @@ def compute_statistics( return results +def config_for_filter_policy( + base_config: Optional[Dict[str, Any]], + policy_id: str, +) -> Dict[str, Any]: + """Return a stats config with outlier settings forced to a named policy.""" + if policy_id not in FILTER_POLICY_SPECS: + raise ValueError( + f"Unknown filter policy {policy_id!r}; expected one of {list(FILTER_POLICY_SPECS)}" + ) + cfg = dict(base_config or load_stats_config()) + spec = FILTER_POLICY_SPECS[policy_id] + cfg["outlier_method"] = spec["outlier_method"] + if spec.get("iqr_k") is not None: + cfg["iqr_k"] = float(spec["iqr_k"]) + return cfg + + +def filter_policy_catalog() -> Dict[str, Dict[str, Any]]: + """Public catalog of filter policies (no internal-only fields).""" + out: Dict[str, Dict[str, Any]] = {} + for pid, spec in FILTER_POLICY_SPECS.items(): + out[pid] = { + "id": pid, + "label": spec["label"], + "description": spec["description"], + "outlier_method": spec["outlier_method"], + "iqr_k": spec.get("iqr_k"), + "winsorize_percentiles": spec.get("winsorize_percentiles"), + "paired": spec.get("paired"), + "min_samples_for_outlier_filter": _DEFAULT_STATS_CFG[ + "min_samples_for_outlier_filter" + ], + "exclude_warmup": _DEFAULT_STATS_CFG["exclude_warmup"], + } + return out + + +def _infer_policy_id(cfg: Dict[str, Any]) -> Optional[str]: + method = str(cfg.get("outlier_method") or "iqr").lower() + if method == "none": + return "all" + if method == "winsorize": + return "winsorize_5_95" + if method == "iqr": + k = float(cfg.get("iqr_k", 1.5)) + if abs(k - 1.5) < 1e-9: + return "iqr_1.5" + if abs(k - 3.0) < 1e-9: + return "iqr_3" + return None + + +# Group identity fields shared across filter-policy variants (schema 2.2). +_EXPORT_IDENTITY_KEYS: Tuple[str, ...] = ( + "serializer", + "test_data", + "type_config_hash", + "data_type_instance_count", + "mode", + "language", + "serializer_version", +) + + +def _build_filter_block( + policy_id: Optional[str], + cfg: Dict[str, Any], + entry: Dict[str, Any], + meta: Dict[str, Any], + *, + include_catalog_text: bool = False, +) -> Dict[str, Any]: + """Provenance block describing how this group's sample was filtered. + + By default omits ``label`` / ``description`` (schema 2.2 recommendation D): + those live once in ``filter_policies``. Pass ``include_catalog_text=True`` + for in-memory full blocks (e.g. multi_policy before export slim). + """ + pid = policy_id or _infer_policy_id(cfg) + spec = FILTER_POLICY_SPECS.get(pid or "", {}) + method = str(cfg.get("outlier_method") or spec.get("outlier_method") or "iqr") + iqr_k = cfg.get("iqr_k") if method == "iqr" else spec.get("iqr_k") + winsor = ( + list(spec.get("winsorize_percentiles") or [5.0, 95.0]) + if method == "winsorize" + else None + ) + paired = spec.get("paired") + if paired is None and method == "iqr": + paired = True + if method == "winsorize": + paired = False + if method == "none": + paired = None + + block: Dict[str, Any] = { + "policy": pid, + "method": method, + "iqr_k": float(iqr_k) if iqr_k is not None and method == "iqr" else None, + "winsorize_percentiles": winsor, + "paired": paired, + "exclude_warmup": bool(cfg.get("exclude_warmup", True)), + "min_samples_for_outlier_filter": int( + cfg.get("min_samples_for_outlier_filter", 10) + ), + "runs_raw": int(entry.get("runs_raw") or 0), + "warmup_skipped": int(entry.get("warmup_skipped") or 0), + "runs_kept": int(entry.get("runs") or 0), + "outliers_removed": int(entry.get("outliers_removed") or 0), + "values_clipped": int(entry.get("values_clipped") or 0), + "fence_total_low_ns": meta.get("fence_total_low_ns"), + "fence_total_high_ns": meta.get("fence_total_high_ns"), + "fence_ser_low_ns": meta.get("fence_ser_low_ns"), + "fence_ser_high_ns": meta.get("fence_ser_high_ns"), + "fence_deser_low_ns": meta.get("fence_deser_low_ns"), + "fence_deser_high_ns": meta.get("fence_deser_high_ns"), + } + if include_catalog_text: + block["label"] = spec.get("label") or method + block["description"] = spec.get("description") + return block + + +def slim_filter_block(filter_block: Optional[Dict[str, Any]]) -> Optional[Dict[str, Any]]: + """Drop catalog-duplicated text from a per-group filter block (rec D).""" + if not filter_block: + return filter_block + return { + k: v + for k, v in filter_block.items() + if k not in ("label", "description") + } + + +def public_stats_entry(entry: Dict[str, Any]) -> Dict[str, Any]: + """Drop private underscore keys for JSON export.""" + return {k: v for k, v in entry.items() if not str(k).startswith("_")} + + +def compute_pareto_front(groups: List[Dict[str, Any]]) -> List[Dict[str, Any]]: + """Classical 2D Pareto: minimize avg_time_total_ns and median_size_bytes.""" + front: List[Dict[str, Any]] = [] + workloads: Dict[Tuple[Any, Any], List[Dict[str, Any]]] = {} + for g in groups: + wkey = (g.get("test_data"), g.get("mode")) + workloads.setdefault(wkey, []).append(g) + for items in workloads.values(): + for item in items: + t = item.get("avg_time_total_ns") + s = item.get("median_size_bytes") + if t is None or s is None: + continue + dominated = False + for other in items: + if other is item: + continue + ot = other.get("avg_time_total_ns") + os_ = other.get("median_size_bytes") + if ot is None or os_ is None: + continue + if (ot <= t and os_ < s) or (ot < t and os_ <= s): + dominated = True + break + if not dominated: + front.append( + { + "serializer": item.get("serializer"), + "test_data": item.get("test_data"), + "mode": item.get("mode"), + "time": t, + "size": s, + "filter_policy": (item.get("filter") or {}).get("policy"), + } + ) + return front + + +def compute_statistics_multi_policy( + records: List[Dict], + config: Optional[Dict[str, Any]] = None, + language_hint: Optional[str] = None, + policies: Optional[Sequence[str]] = None, +) -> Dict[str, Dict]: + """Compute full stats under each named filter policy. + + Returns ``{policy_id: {group_key: entry}}``. Each entry includes a + ``filter`` provenance block. Effect sizes are recomputed per policy + (comparisons only among groups sharing that sample set). + """ + base = config or load_stats_config() + policy_ids = list(policies) if policies is not None else list(FILTER_POLICY_IDS) + result: Dict[str, Dict] = {} + for pid in policy_ids: + cfg = config_for_filter_policy(base, pid) + clean, meta = prepare_analysis_records( + records, config=cfg, language_hint=language_hint + ) + # Tag meta so entries get the stable policy id + for key in meta: + meta[key]["filter_policy"] = pid + stats = compute_statistics( + clean, + config=cfg, + language_hint=language_hint, + pre_sanitized=True, + group_meta=meta, + ) + # Ensure policy id is set even for empty-meta edge cases + for entry in stats.values(): + fb = entry.get("filter") or {} + fb["policy"] = pid + entry["filter"] = slim_filter_block(fb) + result[pid] = stats + return result + + +def build_stats_export_payload( + by_policy: Dict[str, Dict], + language: str, + default_policy: str = DEFAULT_FILTER_POLICY, + generated: Optional[str] = None, +) -> Dict[str, Any]: + """Assemble schema **2.2** compact multi-policy stats export. + + Size reductions vs 2.1: + - **B** no duplicate flat ``groups`` list equal to default policy + - **C** identity once + ``variants`` per policy (no ``groups_by_policy`` blow-up) + - **D** filter blocks omit catalog ``label``/``description`` + - Pareto fronts omitted (dashboard recomputes from metrics) + + Dashboard expands variants client-side. Prefer publishing as + ``stats__latest.json.gz`` (recommendation A). + """ + import datetime as _dt + + if default_policy not in by_policy and by_policy: + default_policy = next(iter(by_policy)) + + # Preserve policy order: FILTER_POLICY_IDS first, then any extras + policy_order: List[str] = [p for p in FILTER_POLICY_IDS if p in by_policy] + for p in by_policy: + if p not in policy_order: + policy_order.append(p) + + # Union of group keys across policies (stable sort for determinism) + all_keys: List[Any] = sorted( + {k for stats in by_policy.values() for k in stats.keys()}, + key=lambda k: tuple(str(x) for x in (k if isinstance(k, tuple) else (k,))), + ) + + catalog = filter_policy_catalog() + slim_groups: List[Dict[str, Any]] = [] + + for key in all_keys: + # Identity from first available policy entry + base_pub: Optional[Dict[str, Any]] = None + for pid in policy_order: + if key in by_policy[pid]: + base_pub = public_stats_entry(by_policy[pid][key]) + break + if not base_pub: + continue + + identity: Dict[str, Any] = { + k: base_pub.get(k) for k in _EXPORT_IDENTITY_KEYS + } + if base_pub.get("StreamMode") is not None: + identity["StreamMode"] = base_pub.get("StreamMode") + + variants: Dict[str, Dict[str, Any]] = {} + for pid in policy_order: + if key not in by_policy[pid]: + continue + pub = public_stats_entry(by_policy[pid][key]) + metrics = { + k: v + for k, v in pub.items() + if k not in _EXPORT_IDENTITY_KEYS and k != "StreamMode" + } + if isinstance(metrics.get("filter"), dict): + metrics["filter"] = slim_filter_block(metrics["filter"]) + variants[pid] = metrics + + # Refresh catalog min_samples / warmup from first seen filter + fb = metrics.get("filter") or {} + if pid in catalog: + if fb.get("min_samples_for_outlier_filter") is not None: + catalog[pid]["min_samples_for_outlier_filter"] = fb[ + "min_samples_for_outlier_filter" + ] + if fb.get("exclude_warmup") is not None: + catalog[pid]["exclude_warmup"] = fb["exclude_warmup"] + + slim_groups.append({**identity, "variants": variants}) + + return { + "schema_version": "2.2", + "generated": generated or _dt.datetime.now().isoformat(), + "language": language, + "default_filter_policy": default_policy, + "filter_policies": catalog, + "questions": { + "Q1": "How fast?", + "Q2": "How compact?", + "Q3": "How stable?", + "Q4": "Under which workloads does it win?", + }, + "groups": slim_groups, + } + + def _attach_effect_sizes(results: Dict, cfg: Dict[str, Any]) -> None: """Attach effect size + MWU vs fastest in same (lang, data, instance, mode) group. diff --git a/analysis/tests/test_stats.py b/analysis/tests/test_stats.py index bb6288a4..b21cfb0d 100644 --- a/analysis/tests/test_stats.py +++ b/analysis/tests/test_stats.py @@ -13,12 +13,16 @@ sys.path.insert(0, str(Path(__file__).resolve().parents[1] / "src")) from benchmark_analysis.stats import ( + DEFAULT_FILTER_POLICY, + FILTER_POLICY_IDS, _derive_seed, _filter_outliers, bootstrap_ci, + build_stats_export_payload, cliffs_delta, cliffs_delta_label, compute_statistics, + compute_statistics_multi_policy, filter_outliers_paired, hedges_g, holm_correction, @@ -398,6 +402,77 @@ def test_paired_n_equal_across_metrics_after_stats(): assert entry["runs"] < entry["runs_raw"] - entry["warmup_skipped"] or entry["outliers_removed"] >= 0 +def test_multi_policy_all_four_and_export_payload(): + """Four named policies differ on a spiked series; export is schema 2.1.""" + recs = _make_records(30) + # Strong total spike on last measured rep → IQR k=1.5 drops; k=3 may keep + recs[-1]["TimeSer"] = 50_000_000.0 + recs[-1]["TimeDeser"] = 50_000_000.0 + recs[-1]["TimeSerAndDeser"] = 100_000_000.0 + + cfg = { + "exclude_warmup": True, + "bootstrap": {"enabled": False}, + "effect_sizes": {"enabled": False}, + "hypothesis_tests": {"enabled": False}, + "min_samples_for_outlier_filter": 10, + } + by_policy = compute_statistics_multi_policy(recs, config=cfg, language_hint="python") + assert list(by_policy.keys()) == list(FILTER_POLICY_IDS) + + all_e = next(iter(by_policy["all"].values())) + iqr15 = next(iter(by_policy["iqr_1.5"].values())) + iqr3 = next(iter(by_policy["iqr_3"].values())) + win = next(iter(by_policy["winsorize_5_95"].values())) + + # all keeps every post-warmup rep + assert all_e["outliers_removed"] == 0 + assert all_e["runs"] == all_e["runs_raw"] - all_e["warmup_skipped"] + assert all_e["filter"]["policy"] == "all" + assert all_e["filter"]["method"] == "none" + + # strict IQR removes the spike; mean is lower than unfiltered + assert iqr15["outliers_removed"] >= 1 + assert iqr15["runs"] < all_e["runs"] + assert iqr15["avg_time_total_ns"] < all_e["avg_time_total_ns"] + assert iqr15["filter"]["policy"] == "iqr_1.5" + assert iqr15["filter"]["iqr_k"] == 1.5 + assert iqr15["filter"]["fence_total_high_ns"] is not None + + # loose IQR removes fewer or equal vs strict + assert iqr3["outliers_removed"] <= iqr15["outliers_removed"] + assert iqr3["filter"]["iqr_k"] == 3.0 + + # winsorize keeps n, may clip + assert win["runs"] == all_e["runs"] + assert win["outliers_removed"] == 0 + assert win["values_clipped"] >= 1 + assert win["filter"]["method"] == "winsorize" + assert win["filter"]["winsorize_percentiles"] == [5.0, 95.0] + # clipped mean should not be as extreme as raw all + assert win["avg_time_total_ns"] < all_e["avg_time_total_ns"] + + payload = build_stats_export_payload(by_policy, language="python") + assert payload["schema_version"] == "2.2" + assert payload["default_filter_policy"] == DEFAULT_FILTER_POLICY + assert "groups_by_policy" not in payload # B: no duplicate multi-list + assert "pareto_by_policy" not in payload # client recomputes + assert "filter_policies" in payload and "iqr_1.5" in payload["filter_policies"] + # C: identity once + variants + sample = payload["groups"][0] + assert "variants" in sample + assert set(sample["variants"]) == set(FILTER_POLICY_IDS) + assert "serializer" in sample and "avg_ops_per_sec" not in sample + assert "avg_ops_per_sec" in sample["variants"][DEFAULT_FILTER_POLICY] + # D: catalog text not repeated per group + fb = sample["variants"][DEFAULT_FILTER_POLICY].get("filter") or {} + assert "label" not in fb and "description" not in fb + assert fb.get("policy") == DEFAULT_FILTER_POLICY + assert "label" in payload["filter_policies"][DEFAULT_FILTER_POLICY] + assert not any(str(k).startswith("_") for k in sample) + assert not any(str(k).startswith("_") for k in sample["variants"][DEFAULT_FILTER_POLICY]) + + def test_save_baseline_skipped_when_regression(tmp_path): """Regression gate must not write a degraded baseline (cli ordering contract).""" baseline = tmp_path / "baseline.json" diff --git a/dashboard/charts.js b/dashboard/charts.js index 9c7ee951..a9c13dee 100644 --- a/dashboard/charts.js +++ b/dashboard/charts.js @@ -1,64 +1,134 @@ -// Chart instances +import { + formatOpsCompact, + formatTimeCompact, + formatIntGrouped, + formatSig, + chooseLatencyUnit, +} from './format.js'; + let scatterChartInstance = null; let barChartInstance = null; -// Google Material style constants const fontStyle = { family: "'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif", - size: 11 + size: 11, }; const gridColor = 'rgba(0, 0, 0, 0.06)'; const tickColor = '#5f6368'; +/** @type {{ logScale: boolean, rankSort: 'speed' | 'size' }} */ +let chartOptions = { logScale: false, rankSort: 'speed' }; + export function initCharts() { - console.log("Material visualizations engine initialized."); + // charts created on first data +} + +export function setChartLogScale(enabled) { + chartOptions.logScale = !!enabled; +} + +export function getChartLogScale() { + return chartOptions.logScale; +} + +/** Ranking chart row order: 'speed' (ops/latency) or 'size' (median bytes, compact first). */ +export function setRankSort(sort) { + chartOptions.rankSort = sort === 'size' ? 'size' : 'speed'; +} + +export function getRankSort() { + return chartOptions.rankSort; } export function updateCharts(groups, paretoNames, metric) { updateScatterChart(groups, paretoNames, metric); updateBarChart(groups, paretoNames, metric); + const title = document.getElementById('bar-chart-title'); + if (title) { + title.textContent = + metric === 'ops' ? 'Throughput & Size Ranking' : 'Latency & Size Ranking'; + } + const help = document.getElementById('ranking-help'); + if (help) { + const primaryRight = metric === 'ops' ? 'ops/s' : 'latency'; + const sortLabel = + chartOptions.rankSort === 'size' + ? 'sorted by size (most compact first)' + : metric === 'ops' + ? 'sorted by ops/s (highest first)' + : 'sorted by latency (lowest first)'; + help.innerHTML = + `Single diverging chart, ${sortLabel}: ` + + `◀ size left · ` + + `${primaryRight} ▶ right. ` + + `Each side is normalized to the chart max (100); hover for absolute values.`; + } +} + +export function exportScatterPng() { + if (!scatterChartInstance) return null; + return scatterChartInstance.toBase64Image('image/png', 1); +} + +/** Prefer primary ranking chart for PNG export. */ +export function exportBarPng() { + if (!barChartInstance) return null; + return barChartInstance.toBase64Image('image/png', 1); } function updateScatterChart(groups, paretoNames, metric) { - const ctx = document.getElementById('scatter-chart').getContext('2d'); - if (scatterChartInstance) { - scatterChartInstance.destroy(); - } + const canvas = document.getElementById('scatter-chart'); + if (!canvas) return; + const ctx = canvas.getContext('2d'); + if (scatterChartInstance) scatterChartInstance.destroy(); const isOps = metric === 'ops'; - const paretoPoints = []; const standardPoints = []; - groups.forEach(g => { + groups.forEach((g) => { const xVal = isOps ? g.avg_ops_per_sec : g.avg_time_total_ns; const yVal = g.median_size_bytes; + if (xVal == null || yVal == null || !Number.isFinite(xVal) || !Number.isFinite(yVal)) return; + if (chartOptions.logScale && xVal <= 0) return; const point = { x: xVal, y: yVal, label: g.serializer, ops: g.avg_ops_per_sec, - time: g.avg_time_total_ns + time: g.avg_time_total_ns, + onFrontier: paretoNames.includes(g.serializer), }; - - if (paretoNames.includes(g.serializer)) { - paretoPoints.push(point); - } else { - standardPoints.push(point); - } + if (point.onFrontier) paretoPoints.push(point); + else standardPoints.push(point); }); - const sortedPareto = [...paretoPoints].sort((a, b) => a.y - b.y); + // Axis title unit must match tick scale (raw values stay in ns / ops/s). + const latencyNs = isOps + ? [] + : [...standardPoints, ...paretoPoints].map((p) => p.time).filter((v) => Number.isFinite(v)); + const latencyScale = chooseLatencyUnit(latencyNs); + const xAxisTitle = isOps + ? 'Throughput (ops/s)' + : `Total latency (${latencyScale.unit})`; + const formatXTick = (value) => { + if (isOps) return formatOpsCompact(value); + if (value == null || !Number.isFinite(value)) return ''; + return formatSig(value / latencyScale.divisor); + }; + const sortedPareto = [...paretoPoints].sort((a, b) => a.y - b.y); const frontierLineData = []; for (let i = 0; i < sortedPareto.length; i++) { frontierLineData.push({ x: sortedPareto[i].x, y: sortedPareto[i].y }); if (i < sortedPareto.length - 1) { - frontierLineData.push({ x: sortedPareto[i+1].x, y: sortedPareto[i].y }); + frontierLineData.push({ x: sortedPareto[i + 1].x, y: sortedPareto[i].y }); } } + const xType = chartOptions.logScale ? 'logarithmic' : 'linear'; + scatterChartInstance = new Chart(ctx, { type: 'scatter', data: { @@ -74,30 +144,30 @@ function updateScatterChart(groups, paretoNames, metric) { pointRadius: 0, fill: false, stepped: true, - order: 3 + order: 3, }, { label: 'Pareto Optimal', data: paretoPoints, - backgroundColor: '#1a73e8', // Google Blue + backgroundColor: '#1a73e8', borderColor: '#ffffff', borderWidth: 1.5, pointRadius: 7, pointHoverRadius: 9, pointStyle: 'rectRot', - order: 1 + order: 1, }, { - label: 'Sub-Optimal', + label: 'Dominated', data: standardPoints, - backgroundColor: 'rgba(95, 99, 104, 0.4)', // Slate gray - borderColor: 'rgba(0, 0, 0, 0.1)', + backgroundColor: 'rgba(95, 99, 104, 0.35)', + borderColor: 'rgba(0, 0, 0, 0.08)', borderWidth: 1, - pointRadius: 5, - pointHoverRadius: 7, - order: 2 - } - ] + pointRadius: 4, + pointHoverRadius: 6, + order: 2, + }, + ], }, options: { responsive: true, @@ -107,10 +177,8 @@ function updateScatterChart(groups, paretoNames, metric) { labels: { color: tickColor, font: fontStyle, - filter: function(item) { - return item.text !== 'Frontier Line'; - } - } + filter: (item) => item.text !== 'Frontier Line', + }, }, tooltip: { backgroundColor: 'rgba(32, 33, 36, 0.95)', @@ -122,183 +190,261 @@ function updateScatterChart(groups, paretoNames, metric) { bodyFont: fontStyle, titleFont: { ...fontStyle, weight: 'bold' }, callbacks: { - label: function(context) { + label: (context) => { const p = context.raw; - if (!p.label) return ''; + if (!p?.label) return ''; return [ `Serializer: ${p.label}`, - `Throughput: ${formatOps(p.ops)}`, - `Latency: ${formatTime(p.time)}`, - `Size: ${p.y} Bytes` + `Throughput: ${formatOpsCompact(p.ops)}`, + `Latency: ${formatTimeCompact(p.time)}`, + `Size: ${formatIntGrouped(p.y)} bytes`, + p.onFrontier ? 'On Pareto frontier' : 'Dominated on speed/size', ]; - } - } - } + }, + }, + }, }, scales: { x: { + type: xType, title: { display: true, - text: isOps ? 'Throughput (Operations / Second)' : 'Total Latency (Nanoseconds)', + text: xAxisTitle, color: tickColor, - font: { ...fontStyle, weight: 'bold' } + font: { ...fontStyle, weight: 'bold' }, }, grid: { color: gridColor }, ticks: { color: tickColor, font: fontStyle, - callback: function(value) { - return isOps ? formatOps(value) : formatTime(value); - } - } + callback: (value) => formatXTick(value), + }, }, y: { title: { display: true, - text: 'Serialized Size (Bytes)', + text: 'Serialized size (bytes)', color: tickColor, - font: { ...fontStyle, weight: 'bold' } + font: { ...fontStyle, weight: 'bold' }, }, grid: { color: gridColor }, ticks: { color: tickColor, - font: fontStyle - } - } - } + font: fontStyle, + callback: (v) => formatIntGrouped(v), + }, + }, + }, }, - plugins: [{ - id: 'pointLabels', - afterDatasetsDraw(chart) { - const {ctx} = chart; - ctx.save(); - ctx.textAlign = 'center'; - - chart.data.datasets.forEach((dataset, datasetIndex) => { - // Dataset 0 is the Frontier Line (ignore it) - if (datasetIndex === 0) return; - - const isPareto = datasetIndex === 1; - ctx.font = isPareto - ? 'bold 10px "Roboto", -apple-system, sans-serif' - : '400 9px "Roboto", -apple-system, sans-serif'; - ctx.fillStyle = isPareto ? '#1a73e8' : '#80868b'; - - const meta = chart.getDatasetMeta(datasetIndex); - meta.data.forEach((element, index) => { - const dataPoint = dataset.data[index]; - if (dataPoint && dataPoint.label) { - const xPos = element.x; - const yPos = element.y - (isPareto ? 10 : 8); - ctx.fillText(dataPoint.label, xPos, yPos); - } + plugins: [ + { + id: 'pointLabels', + afterDatasetsDraw(chart) { + const { ctx: c } = chart; + c.save(); + c.textAlign = 'center'; + chart.data.datasets.forEach((dataset, datasetIndex) => { + if (datasetIndex === 0) return; + const isPareto = datasetIndex === 1; + if (!isPareto) return; + c.font = 'bold 10px "Roboto", -apple-system, sans-serif'; + c.fillStyle = '#1a73e8'; + const meta = chart.getDatasetMeta(datasetIndex); + meta.data.forEach((element, index) => { + const dataPoint = dataset.data[index]; + if (dataPoint?.label) { + c.fillText(dataPoint.label, element.x, element.y - 10); + } + }); }); - }); - ctx.restore(); - } - }] + c.restore(); + }, + }, + ], }); } +/** + * Single diverging (butterfly) horizontal bar chart: + * - Right (blue): throughput or latency, normalized 0..100 vs chart max + * - Left (green): median size, normalized 0..-100 vs chart max + * Absolute values only in tooltips — avoids dual-axis collisions. + */ function updateBarChart(groups, paretoNames, metric) { - const ctx = document.getElementById('bar-chart').getContext('2d'); - if (barChartInstance) { - barChartInstance.destroy(); - } + const canvas = document.getElementById('bar-chart'); + if (!canvas) return; + if (barChartInstance) barChartInstance.destroy(); const isOps = metric === 'ops'; + const sortBySize = chartOptions.rankSort === 'size'; - const sortedGroups = [...groups].sort((a, b) => { - return isOps - ? b.avg_ops_per_sec - a.avg_ops_per_sec - : a.avg_time_total_ns - b.avg_time_total_ns; - }).slice(0, 15); + const sortedGroups = [...groups] + .filter((g) => { + if (!g) return false; + if (g.median_size_bytes == null && sortBySize) return false; + return isOps ? g.avg_ops_per_sec != null : g.avg_time_total_ns != null; + }) + .sort((a, b) => { + if (sortBySize) { + // Compact first (ascending size); tie-break by speed + const ds = (a.median_size_bytes ?? 0) - (b.median_size_bytes ?? 0); + if (ds !== 0) return ds; + } + return isOps + ? b.avg_ops_per_sec - a.avg_ops_per_sec + : a.avg_time_total_ns - b.avg_time_total_ns; + }) + .slice(0, 15); - const labels = sortedGroups.map(g => g.serializer); - const data = sortedGroups.map(g => isOps ? g.avg_ops_per_sec : g.avg_time_total_ns); + const labels = sortedGroups.map((g) => g.serializer); + const primaryRaw = sortedGroups.map((g) => + isOps ? g.avg_ops_per_sec : g.avg_time_total_ns + ); + const sizeRaw = sortedGroups.map((g) => Number(g.median_size_bytes) || 0); + + const maxPrimary = Math.max(...primaryRaw.filter((v) => Number.isFinite(v) && v > 0), 1); + const maxSize = Math.max(...sizeRaw.filter((v) => Number.isFinite(v) && v > 0), 1); + + // Normalized: speed → +0..100, size → -0..-100 (diverging from center) + const speedNorm = primaryRaw.map((v) => + Number.isFinite(v) && maxPrimary > 0 ? (v / maxPrimary) * 100 : 0 + ); + const sizeNorm = sizeRaw.map((v) => + Number.isFinite(v) && maxSize > 0 ? -(v / maxSize) * 100 : 0 + ); - const backgroundColors = sortedGroups.map(g => - paretoNames.includes(g.serializer) - ? 'rgba(26, 115, 232, 0.85)' // Google Blue - : '#e8eaed' // High-contrast Material gray + const speedColors = sortedGroups.map((g) => + paretoNames.includes(g.serializer) ? 'rgba(26, 115, 232, 0.9)' : 'rgba(26, 115, 232, 0.28)' ); - - const borderColors = sortedGroups.map(g => - paretoNames.includes(g.serializer) ? '#1a73e8' : '#bdc1c6' + const sizeColors = sortedGroups.map((g) => + paretoNames.includes(g.serializer) ? 'rgba(30, 142, 62, 0.9)' : 'rgba(30, 142, 62, 0.28)' ); - barChartInstance = new Chart(ctx, { + barChartInstance = new Chart(canvas.getContext('2d'), { type: 'bar', data: { - labels: labels, - datasets: [{ - label: isOps ? 'Ops/Sec' : 'Latency (ns)', - data: data, - backgroundColor: backgroundColors, - borderColor: borderColors, - borderWidth: 1, - borderRadius: 2 - }] + labels, + // Legend order matches plot: size left (←), then speed/latency right (→). + datasets: [ + { + label: 'Size (←)', + data: sizeNorm, + backgroundColor: sizeColors, + borderColor: sortedGroups.map((g) => + paretoNames.includes(g.serializer) ? '#1e8e3e' : 'rgba(30, 142, 62, 0.45)' + ), + borderWidth: 1, + borderRadius: 3, + barPercentage: 0.9, + categoryPercentage: 0.75, + }, + { + label: isOps ? 'Ops/s (→)' : 'Latency (→)', + data: speedNorm, + backgroundColor: speedColors, + borderColor: sortedGroups.map((g) => + paretoNames.includes(g.serializer) ? '#1a73e8' : 'rgba(26, 115, 232, 0.45)' + ), + borderWidth: 1, + borderRadius: 3, + barPercentage: 0.9, + categoryPercentage: 0.75, + }, + ], }, options: { indexAxis: 'y', responsive: true, maintainAspectRatio: false, plugins: { - legend: { display: false }, + legend: { + display: true, + position: 'top', + align: 'end', + labels: { + color: tickColor, + font: fontStyle, + boxWidth: 12, + usePointStyle: true, + pointStyle: 'rectRounded', + }, + }, tooltip: { backgroundColor: 'rgba(32, 33, 36, 0.95)', titleColor: '#ffffff', bodyColor: '#ffffff', borderColor: '#dadce0', borderWidth: 1, - padding: 8, + padding: 10, bodyFont: fontStyle, titleFont: { ...fontStyle, weight: 'bold' }, callbacks: { - label: function(context) { - const val = context.raw; - return isOps - ? ` Throughput: ${formatOps(val)}` - : ` Latency: ${formatTime(val)}`; - } - } - } + label: (context) => { + const g = sortedGroups[context.dataIndex]; + if (!g) return ''; + const pct = Math.abs(context.raw).toFixed(0); + // dataset 0 = size (left), 1 = speed/latency (right) + if (context.datasetIndex === 0) { + return `Size: ${formatIntGrouped(g.median_size_bytes)} bytes (${pct}% of max in chart)`; + } + const abs = isOps + ? formatOpsCompact(g.avg_ops_per_sec) + : formatTimeCompact(g.avg_time_total_ns); + return isOps + ? `Ops/s: ${abs} (${pct}% of max in chart)` + : `Latency: ${abs} (${pct}% of max in chart)`; + }, + afterBody: (items) => { + const g = sortedGroups[items[0]?.dataIndex]; + if (!g) return []; + return [ + paretoNames.includes(g.serializer) ? 'Pareto optimal' : 'Dominated on speed/size', + ]; + }, + }, + }, }, scales: { x: { - grid: { color: gridColor }, + stacked: false, + min: -100, + max: 100, + grid: { + color: (ctx) => + ctx.tick.value === 0 ? 'rgba(32, 33, 36, 0.35)' : gridColor, + lineWidth: (ctx) => (ctx.tick.value === 0 ? 1.5 : 1), + }, + title: { + display: true, + text: isOps + ? '◀ larger size normalized % of chart max higher ops/s ▶' + : '◀ larger size normalized % of chart max higher latency ▶', + color: tickColor, + font: { ...fontStyle, size: 10 }, + }, ticks: { color: tickColor, font: fontStyle, - callback: function(value) { - return isOps ? formatOps(value) : formatTime(value); - } - } + stepSize: 25, + callback: (value) => { + if (value === 0) return '0'; + const a = Math.abs(value); + if (value < 0) return `${a}%`; // size side + return `${a}%`; + }, + }, }, y: { + stacked: false, grid: { display: false }, ticks: { color: tickColor, font: { ...fontStyle, weight: 'bold' }, - autoSkip: false - } - } - } - } + autoSkip: false, + }, + }, + }, + }, }); } -function formatTime(ns) { - if (ns === null || ns === undefined) return '-'; - if (ns < 1000) return `${ns.toFixed(0)}ns`; - if (ns < 1000000) return `${(ns / 1000).toFixed(1)}µs`; - return `${(ns / 1000000).toFixed(2)}ms`; -} - -function formatOps(ops) { - if (ops === null || ops === undefined) return '-'; - if (ops < 1000) return `${ops.toFixed(0)}/s`; - if (ops < 1000000) return `${(ops / 1000).toFixed(0)}K/s`; - return `${(ops / 1000000).toFixed(2)}M/s`; -} diff --git a/dashboard/format.js b/dashboard/format.js new file mode 100644 index 00000000..5993a7ac --- /dev/null +++ b/dashboard/format.js @@ -0,0 +1,283 @@ +/** + * Shared number formatting for dashboard tables and charts. + * + * Contract: + * - Continuous metrics: 3 significant digits, unitless cells (unit in header). + * - Byte sizes and sample counts: locale-grouped integers (e.g. 29,577). + * - Ratio cells: absolute + (ratio×) with better/worse class names. + */ + +const SIG = 3; + +/** + * Format a finite number to `sig` significant digits in **fixed-point only** + * (never scientific / exponential). Examples: 1100 → "1,100", 0.644 → "0.644". + */ +export function formatSig(value, sig = SIG) { + if (value === null || value === undefined || value === '') return '—'; + if (typeof value !== 'number' || !Number.isFinite(value)) return String(value); + if (value === 0) return '0'; + + const abs = Math.abs(value); + // Round to `sig` significant digits without using exponential display. + const order = Math.floor(Math.log10(abs)); + const scale = 10 ** (sig - 1 - order); + const rounded = Math.round(value * scale) / scale; + + // Fraction digits needed so the least significant digit of `sig` is visible. + const decimals = Math.max(0, sig - 1 - order); + + if (decimals === 0) { + return Math.round(rounded).toLocaleString('en-US'); + } + + // Fixed-point with thousands separators; strip trailing zeros after the point. + let s = rounded.toLocaleString('en-US', { + useGrouping: true, + minimumFractionDigits: 0, + maximumFractionDigits: decimals, + }); + // Guard: some engines can still emit exp for extreme values — force fixed. + if (/e/i.test(s)) { + s = rounded.toFixed(decimals).replace(/\.?0+$/, ''); + // Add grouping to integer part + const neg = s.startsWith('-'); + const body = neg ? s.slice(1) : s; + const [ip, fp] = body.split('.'); + const grouped = Number(ip).toLocaleString('en-US'); + s = (neg ? '-' : '') + grouped + (fp != null && fp !== '' ? `.${fp}` : ''); + } + return s; +} + +/** + * Docs Summary-table style label: ``simd-json:0.14.3`` when version is known. + * Matches analysis/reports.py: ``f"{name}:{version}" if version else name``. + */ +export function serializerDisplayName(serializer, version) { + const name = serializer == null ? '' : String(serializer).trim(); + if (!name) return '—'; + const ver = + version == null || version === '' + ? '' + : String(version).trim(); + if (!ver || ver === 'unknown' || ver === '—') return name; + // Avoid double-suffix if caller already passed "name:ver" + if (name.includes(':') && name.endsWith(ver)) return name; + return `${name}:${ver}`; +} + +/** Label from a stats group object (uses serializer_version when present). */ +export function serializerLabelFromGroup(g) { + if (!g) return '—'; + return serializerDisplayName(g.serializer, g.serializer_version); +} + +/** Locale-grouped integer (sizes, counts). */ +export function formatIntGrouped(value) { + if (value === null || value === undefined || value === '') return '—'; + if (typeof value !== 'number' || !Number.isFinite(value)) return String(value); + return Math.round(value).toLocaleString('en-US'); +} + +/** Fixed µs scale for roster/compare latency columns. */ +export const LATENCY_US = { unit: 'µs', divisor: 1e3, header: 'µs' }; + +/** + * Choose latency display unit from a set of ns values. + * + * Prefer **microseconds** for table columns. Serializer encode/decode times + * usually sit in the µs–ms band: ms collapses fast codecs to awkward decimals + * (e.g. 0.012 ms vs 12.3 µs), while a fixed µs scale keeps 3-sig values + * comparable across total / ser / deser without unit hopping when one slow + * row would otherwise force the whole column into milliseconds. + * + * - max < 1 µs → ns (sub-microsecond niche) + * - otherwise → µs (including multi-ms latencies, shown as e.g. 12,400) + * - never auto-ms for roster/compare tables + */ +export function chooseLatencyUnit(valuesNs) { + const nums = (valuesNs || []).filter((v) => typeof v === 'number' && Number.isFinite(v) && v > 0); + if (!nums.length) return LATENCY_US; + const max = Math.max(...nums); + if (max < 1e3) return { unit: 'ns', divisor: 1, header: 'ns' }; + return LATENCY_US; +} + +/** Choose throughput scale from ops/s values. */ +export function chooseOpsUnit(valuesOps) { + const nums = (valuesOps || []).filter((v) => typeof v === 'number' && Number.isFinite(v) && v > 0); + if (!nums.length) return { unit: 'ops', divisor: 1, header: 'Ops/s' }; + const max = Math.max(...nums); + if (max >= 1e6) return { unit: 'M', divisor: 1e6, header: 'Ops/s (M)' }; + if (max >= 1e3) return { unit: 'k', divisor: 1e3, header: 'Ops/s (k)' }; + return { unit: 'ops', divisor: 1, header: 'Ops/s' }; +} + +export function formatLatencyCell(ns, scale) { + if (ns === null || ns === undefined || !Number.isFinite(ns)) return '—'; + const s = scale || { divisor: 1 }; + return formatSig(ns / s.divisor); +} + +export function formatOpsCell(ops, scale) { + if (ops === null || ops === undefined || !Number.isFinite(ops)) return '—'; + const s = scale || { divisor: 1 }; + return formatSig(ops / s.divisor); +} + +/** + * Compact formats WITH unit — for chart tooltips/axes only (not table cells). + */ +export function formatTimeCompact(ns) { + if (ns === null || ns === undefined || !Number.isFinite(ns)) return '—'; + if (ns < 1000) return `${formatSig(ns)} ns`; + if (ns < 1e6) return `${formatSig(ns / 1e3)} µs`; + return `${formatSig(ns / 1e6)} ms`; +} + +export function formatOpsCompact(ops) { + if (ops === null || ops === undefined || !Number.isFinite(ops)) return '—'; + if (ops < 1000) return `${formatSig(ops)}/s`; + if (ops < 1e6) return `${formatSig(ops / 1e3)}k/s`; + return `${formatSig(ops / 1e6)}M/s`; +} + +/** Infer metric kind for table formatting. */ +export function metricKind(key) { + if (!key) return 'other'; + if (key.endsWith('_ns') || key.includes('_time_') || key.includes('latency')) return 'latency'; + if ( + key.includes('ops_per_sec') || + key.endsWith('_ops_mean') || + key.endsWith('_ops_median') || + key.endsWith('_ops_p95') + ) { + return 'ops'; + } + if (key.endsWith('_bytes') || key.startsWith('size_') || key === 'median_size_bytes') return 'bytes'; + if ( + key === 'runs' || + key === 'runs_raw' || + key === 'outliers_removed' || + key === 'values_clipped' || + key === 'warmup_skipped' + ) + return 'count'; + if (typeof key === 'string' && (key.includes('fidelity') || key.includes('cv') || key.includes('delta') || key.includes('hedges'))) { + return 'ratio'; + } + return 'other'; +} + +/** + * Format a metric cell value without unit suffix. + * Optional `scales` map: { latency: chooseLatencyUnit(...), ops: chooseOpsUnit(...) } + */ +export function formatMetricCell(key, value, scales = {}) { + if (value === null || value === undefined || value === '') return '—'; + if (typeof value === 'boolean') return value ? 'true' : 'false'; + if (typeof value === 'string') return value; + if (typeof value !== 'number' || !Number.isFinite(value)) return String(value); + + const kind = metricKind(key); + if (kind === 'latency') return formatLatencyCell(value, scales.latency); + if (kind === 'ops') return formatOpsCell(value, scales.ops); + if (kind === 'bytes' || kind === 'count') return formatIntGrouped(value); + if (kind === 'ratio') return formatSig(value); + if (Number.isInteger(value) && Math.abs(value) < 1e9) return formatIntGrouped(value); + return formatSig(value); +} + +/** Header label with unit for a metric key given column scales. */ +export function metricHeaderLabel(key, scales = {}) { + const kind = metricKind(key); + const base = key + .replace(/_ns$/g, '') + .replace(/_bytes$/g, '') + .replace(/_per_sec$/g, '') + .replace(/_/g, ' '); + + if (kind === 'latency') { + const u = scales.latency?.header || 'ns'; + return `${base} (${u})`; + } + if (kind === 'ops') { + return scales.ops?.header || 'Ops/s'; + } + if (kind === 'bytes') { + return key.includes('memory') ? `${base} (bytes)` : `${base} (bytes)`; + } + return base; +} + +/** + * Ratio = value / reference. + * @param {string} [ratioTag=''] suffix after ×, e.g. '' → "0.93×", 'med' → "0.93×med", 'base' → "0.93×base" + * Returns { text, ratio, className } for cell rendering. + */ +export function formatRelativeCell(value, reference, higherIsBetter, scales, key, ratioTag = '') { + const abs = + key && (String(key).startsWith('ops_') || key === 'avg_ops_per_sec') + ? formatOpsCell(value, scales?.ops) + : formatMetricCell(key, value, scales); + if ( + value === null || + value === undefined || + reference === null || + reference === undefined || + typeof value !== 'number' || + typeof reference !== 'number' || + !Number.isFinite(value) || + !Number.isFinite(reference) || + reference === 0 + ) { + return { text: abs, ratio: null, className: 'num' }; + } + + const ratio = value / reference; + // Multiplier: 2 significant digits is enough (0.931× → 0.93×) + const tag = ratioTag ? `×${ratioTag}` : '×'; + const ratioText = `${formatSig(ratio, 2)}${tag}`; + let className = 'num rel-neutral'; + if (higherIsBetter === true || higherIsBetter === false) { + const better = higherIsBetter ? ratio > 1 + 1e-9 : ratio < 1 - 1e-9; + const worse = higherIsBetter ? ratio < 1 - 1e-9 : ratio > 1 + 1e-9; + if (better) className = 'num rel-better'; + else if (worse) className = 'num rel-worse'; + } + return { + text: `${abs} (${ratioText})`, + ratio, + className, + }; +} + +/** Build latency/ops scales from a list of groups for consistent columns. */ +export function scalesFromGroups(groups, keys = null) { + const gs = groups || []; + const lat = []; + const ops = []; + for (const g of gs) { + if (!g) continue; + if (!keys) { + if (typeof g.avg_time_total_ns === 'number') lat.push(g.avg_time_total_ns); + if (typeof g.avg_time_ser_ns === 'number') lat.push(g.avg_time_ser_ns); + if (typeof g.avg_time_deser_ns === 'number') lat.push(g.avg_time_deser_ns); + if (typeof g.avg_ops_per_sec === 'number') ops.push(g.avg_ops_per_sec); + } else { + for (const k of keys) { + const v = g[k]; + if (typeof v !== 'number' || !Number.isFinite(v)) continue; + const kind = metricKind(k); + if (kind === 'latency') lat.push(v); + if (kind === 'ops') ops.push(v); + } + } + } + return { + // Tables always normalize latency to µs (see chooseLatencyUnit). + latency: lat.length ? chooseLatencyUnit(lat) : LATENCY_US, + ops: chooseOpsUnit(ops), + }; +} diff --git a/dashboard/index.css b/dashboard/index.css index f46d0d51..366cb4d7 100644 --- a/dashboard/index.css +++ b/dashboard/index.css @@ -40,42 +40,86 @@ body { overflow-x: hidden; } -/* Header & Google Style Navbar */ +/* Header & responsive navbar */ header { background: var(--bg-surface); - padding: 0.75rem 1.5rem; - display: flex; - justify-content: space-between; - align-items: center; + padding: 0.45rem 1.25rem; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 100; + display: flex; + flex-wrap: wrap; + align-items: center; + justify-content: space-between; + gap: 0.35rem; +} + +.header-bar { + display: flex; + align-items: center; + justify-content: space-between; + gap: 0.75rem; + flex: 1 1 auto; + min-width: 0; } .logo { display: flex; align-items: center; gap: 0.5rem; + min-width: 0; } .logo-icon { - font-size: 1.25rem; color: var(--color-blue); - font-weight: bold; + display: flex; + align-items: center; + flex-shrink: 0; } .logo h1 { - font-size: 1.15rem; + font-size: 1.05rem; font-weight: 500; color: var(--text-primary); letter-spacing: -0.2px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; +} + +.nav-toggle { + display: none; + flex-direction: column; + justify-content: center; + gap: 4px; + width: 40px; + height: 40px; + padding: 8px; + border: 1px solid var(--border-color); + border-radius: 6px; + background: var(--bg-surface); + cursor: pointer; +} + +.nav-toggle-bar { + display: block; + height: 2px; + width: 100%; + background: var(--text-primary); + border-radius: 1px; +} + +.main-nav { + flex: 0 1 auto; } .nav-links { display: flex; - gap: 0.5rem; + flex-wrap: wrap; + gap: 0.35rem; list-style: none; + align-items: center; } .nav-links a { @@ -83,9 +127,10 @@ header { text-decoration: none; font-size: 0.85rem; font-weight: 500; - padding: 0.4rem 0.8rem; + padding: 0.45rem 0.75rem; border-radius: 4px; transition: all 0.15s ease; + display: inline-block; } .nav-links a:hover { @@ -99,14 +144,45 @@ header { font-weight: 500; } +.nav-docs { + border: 1px solid var(--border-color); + font-weight: 500; +} + +@media (max-width: 720px) { + header { + padding: 0.6rem 0.85rem; + } + .nav-toggle { + display: flex; + } + .main-nav { + display: none; + width: 100%; + flex-basis: 100%; + } + .main-nav.open { + display: block; + } + .nav-links { + flex-direction: column; + align-items: stretch; + gap: 0.25rem; + padding-top: 0.35rem; + } + .nav-links a { + padding: 0.65rem 0.75rem; + } +} + /* Main Container Layout (High Density) */ .container { max-width: 1440px; margin: 0 auto; - padding: 1rem 1.5rem 2rem 1.5rem; + padding: 0.65rem 1.25rem 1.75rem 1.25rem; display: flex; flex-direction: column; - gap: 1rem; + gap: 0.55rem; } /* Material Flat Card */ @@ -125,22 +201,55 @@ header { } /* Filters Toolbar */ +.filter-policy-meta { + margin: 0; + padding: 0.35rem 0.7rem; + font-size: 0.8rem; + color: var(--text-secondary); + line-height: 1.3; +} + +.filter-policy-meta-text strong { + color: var(--text-primary); + font-weight: 500; +} + +.filter-policy-meta-text .fp-criteria { + color: var(--text-muted); +} + .toolbar { display: flex; flex-wrap: wrap; - gap: 1rem; + gap: 0.55rem 0.85rem; align-items: center; justify-content: space-between; - padding: 0.75rem 1rem; + padding: 0.45rem 0.75rem; } + .filter-group { display: flex; flex-wrap: wrap; - gap: 0.75rem; + gap: 0.45rem 0.6rem; align-items: center; } +/* `.display: flex` beats the UA [hidden] rule — keep hide reliable */ +.filter-group[hidden], +.xl-add-panel[hidden], +.compare-inline-add[hidden], +.chip-groups[hidden], +#compare-same-panel[hidden], +#compare-xl-filters[hidden], +#compare-same-filters[hidden], +#compare-xl-disclaimer[hidden], +#same-selection-chips[hidden], +#xl-selection-chips[hidden], +[hidden] { + display: none !important; +} + .filter-label { font-size: 0.75rem; font-weight: 700; @@ -158,7 +267,7 @@ select { background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: 4px; - padding: 0.4rem 2rem 0.4rem 0.75rem; + padding: 0.3rem 1.75rem 0.3rem 0.6rem; color: var(--text-primary); font-family: var(--font-family); font-size: 0.85rem; @@ -195,7 +304,7 @@ select:focus { border: none; border-right: 1px solid var(--border-color); color: var(--text-secondary); - padding: 0.4rem 0.8rem; + padding: 0.3rem 0.7rem; font-family: var(--font-family); font-size: 0.85rem; font-weight: 500; @@ -220,16 +329,16 @@ select:focus { /* KPI Cards Layout (Horizontal Row & Small) */ .summary-grid { display: grid; - grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); - gap: 1rem; + grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); + gap: 0.55rem; } .kpi-card { display: flex; flex-direction: column; - gap: 0.25rem; + gap: 0.1rem; position: relative; - padding: 0.75rem 1rem; + padding: 0.5rem 0.75rem; } .kpi-card::before { @@ -242,8 +351,18 @@ select:focus { background: var(--color-blue); } -.kpi-card.purple::before { - background: #a142f4; +.kpi-card.featured::before { + background: #a142f4; /* featured highlight only — never negative status */ +} + +.kpi-card { + min-height: 0; +} + +.kpi-value-name { + font-size: 1.15rem !important; + line-height: 1.25 !important; + word-break: break-word; } .kpi-card.green::before { @@ -251,7 +370,7 @@ select:focus { } .kpi-title { - font-size: 0.75rem; + font-size: 0.7rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; @@ -259,14 +378,16 @@ select:focus { } .kpi-value { - font-size: 1.4rem; + font-size: 1.25rem; font-weight: 500; color: var(--text-primary); + line-height: 1.2; } .kpi-desc { - font-size: 0.75rem; + font-size: 0.7rem; color: var(--text-muted); + line-height: 1.25; } /* High Density Charts Container */ @@ -415,56 +536,63 @@ select:focus { gap: 0.6rem; } -.cross-lang-add-row { - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: flex-start; - gap: 0.6rem; -} +/* (cross-lang add controls live in .compare-inline-add / #xl-add-panel) */ -/* Keep language + serializer + Add as a tight group (do not stretch the - serializer wrapper — a flex:1 wrapper left the custom ::after chevron - stranded at the far right of the row). */ -.cross-lang-add-row .select-wrapper { - flex: 0 0 auto; +/* Compare selection chips (neutral; baseline emphasized) */ +.chip-groups, +.xl-chips { + display: flex; + flex-direction: column; + gap: 0.45rem; + min-height: 1.5rem; + margin-top: 0.35rem; } -.cross-lang-add-row .xl-add-ser-wrap select { - min-width: 12rem; - max-width: 22rem; +.chip-lang-row { + display: flex; + flex-wrap: wrap; + align-items: center; + gap: 0.35rem 0.5rem; } -.cross-lang-add-row .xl-add-btn { - flex: 0 0 auto; - font-size: 0.85rem; - border: 1px solid var(--border-color); +.chip-lang-label { + flex: 0 0 4.5rem; + font-size: 0.68rem; + font-weight: 600; + text-transform: uppercase; + letter-spacing: 0.04em; + color: var(--text-muted); } -.xl-chips { +.chip-lang-chips { display: flex; flex-wrap: wrap; - gap: 0.4rem; - min-height: 2rem; + gap: 0.35rem; + flex: 1 1 auto; + min-width: 0; } .xl-chip { display: inline-flex; align-items: center; - gap: 0.35rem; - background: var(--bg-blue-light); - color: var(--color-blue); - border: 1px solid #c6dafc; + gap: 0.3rem; + background: var(--bg-surface); + color: var(--text-primary); + border: 1px solid var(--border-color); border-radius: 999px; - padding: 0.2rem 0.35rem 0.2rem 0.65rem; + padding: 0.2rem 0.3rem 0.2rem 0.6rem; font-size: 0.78rem; font-weight: 500; max-width: 100%; } +.xl-chip.chip-baseline { + border-color: var(--color-blue); + background: var(--bg-blue-light); + color: var(--color-blue); +} + .xl-chip.pareto-chip { - background: var(--bg-green-light); - color: var(--color-green); border-color: #b7e1c4; } @@ -472,7 +600,17 @@ select:focus { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; - max-width: 16rem; + max-width: 14rem; +} + +.xl-chip-ver { + font-weight: 400; + color: var(--text-muted); + font-size: 0.72rem; +} + +.xl-chip.chip-baseline .xl-chip-ver { + color: #5a8fd4; } .xl-chip-remove { @@ -484,7 +622,7 @@ select:focus { line-height: 1; padding: 0.1rem 0.35rem; border-radius: 999px; - opacity: 0.75; + opacity: 0.65; } .xl-chip-remove:hover { @@ -492,6 +630,11 @@ select:focus { background: rgba(0, 0, 0, 0.06); } +.chip-empty { + color: var(--text-muted); + font-size: 0.85rem; +} + .xl-table-wrap { border: 1px solid var(--border-color); border-radius: 6px; @@ -775,6 +918,33 @@ select:focus { } } +/* Detailed Analytics: Ops vs Latency column sets (local switch) */ +#analytics-table.view-ops .roster-col-latency { + display: none; +} +#analytics-table.view-latency .roster-col-ops { + display: none; +} + +/* Pareto highlight instead of Frontier column */ +#analytics-table tbody tr.roster-pareto-row td { + background: rgba(26, 115, 232, 0.06); +} +#analytics-table tbody tr.roster-pareto-row td.str strong { + color: var(--color-blue); +} +#analytics-table tbody tr.roster-pareto-row.roster-baseline-row td { + background: var(--bg-blue-light); +} + +.roster-metric-tabs { + flex-shrink: 0; +} +.roster-metric-tabs .tab-btn { + font-size: 0.8rem; + padding: 0.3rem 0.65rem; +} + /* Detailed Data Table (Material Design) */ .table-panel { padding-bottom: 0.5rem; @@ -945,3 +1115,813 @@ footer { ::-webkit-scrollbar-thumb:hover { background: #bdc1c6; } + + +/* --- Dashboard improvement tokens --- */ +.badge-slate { + background: #e8eaed; + color: #5f6368; +} + +.section-help { + font-size: 0.85rem; + color: var(--text-secondary); + margin: 0.25rem 0 0.75rem 0; + line-height: 1.45; + font-weight: 400; +} + +.section-disclaimer { + font-size: 0.85rem; + color: #5f4b00; + background: var(--bg-yellow-light); + border: 1px solid #f9ab00; + border-radius: 6px; + padding: 0.6rem 0.85rem; + margin: 0 0 0.75rem 0; +} + +.run-meta { + padding: 0.3rem 0.7rem; + font-size: 0.75rem; + color: var(--text-secondary); + line-height: 1.3; +} + +.run-meta-text { + font-variant-numeric: tabular-nums; +} + +.chart-toolbar { + display: flex; + align-items: center; + gap: 0.4rem; + flex-wrap: wrap; +} + +.chart-tool-btn { + font-size: 0.75rem !important; + padding: 0.25rem 0.5rem !important; +} + +.chart-container-tall { + height: 360px; +} + +.ranking-help { + margin: 0 0 0.5rem 0; + font-size: 0.8rem; +} + +.rank-legend-size { + color: #1e8e3e; + font-weight: 600; +} + +.rank-legend-speed { + color: #1a73e8; + font-weight: 600; +} + +.ranking-chart-single { + height: 420px; +} + +.table-header-actions { + display: flex; + align-items: center; + gap: 0.5rem; + flex-wrap: wrap; +} + +.data-table th.num, +.data-table td.num { + text-align: right; + font-variant-numeric: tabular-nums; + font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace; + font-size: 0.82rem; +} + +.data-table th.str, +.data-table td.str { + text-align: left; +} + +.data-table th.status, +.data-table td.status { + text-align: center; +} + +.data-table tbody tr:nth-child(even) td { + background: rgba(0, 0, 0, 0.015); +} + +.data-table tbody tr:hover td { + background: #f1f3f4; +} + +td.rel-better { + color: var(--color-green); + background: var(--bg-green-light) !important; +} + +td.rel-worse { + color: var(--color-red); + background: var(--bg-red-light) !important; +} + +td.rel-neutral { + color: var(--text-secondary); +} + +th.baseline-col { + background: var(--bg-blue-light) !important; + color: var(--color-blue); +} + +tr.roster-baseline-row td { + background: var(--bg-blue-light) !important; +} + +tr.roster-baseline-row td.num.baseline-col { + font-weight: 600; +} + +.compare-lab-filters { + display: flex; + flex-wrap: wrap; + gap: 0.75rem; + margin-bottom: 0.75rem; + align-items: center; +} + +.compare-scope-tabs { + margin-bottom: 0.75rem; +} + +/* Must stay row — column was stacking lang/ser/Add and blowing vertical space */ +.xl-add-panel { + margin-top: 0; + display: flex; + flex-direction: row; + flex-wrap: nowrap; + align-items: center; + gap: 0.3rem; +} + +.xl-add-panel[hidden] { + display: none !important; +} + +.utility-card { + gap: 0.75rem; +} + +.utility-card-title { + font-size: 0.95rem; + font-weight: 500; + color: var(--text-primary); +} + +.utility-actions { + display: grid; + grid-template-columns: repeat(2, 1fr); + gap: 0.5rem; + margin-top: 0.5rem; +} + +.dropzone { + border: 2px dashed var(--border-color); +} + +.dropzone.dragover { + border-color: var(--color-blue); + background: var(--bg-blue-light); +} + +#serializer-metrics-table td.num { + text-align: right; + font-variant-numeric: tabular-nums; + font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace; + font-size: 0.82rem; +} + + +/* --- Compare lab: compact controls + matrix headers --- */ +.compare-title-row { + margin-bottom: 0.5rem; +} + +.compare-title-left { + display: flex; + flex-wrap: wrap; + align-items: center; + gap: 0.5rem 0.75rem; + min-width: 0; +} + +.compare-status-line { + font-size: 0.8rem; + color: var(--text-secondary); + font-variant-numeric: tabular-nums; +} + +.compare-controls-compact { + display: flex; + flex-direction: column; + gap: 0.3rem; + margin-bottom: 0.5rem; + padding: 0.4rem 0.55rem; + background: #f8f9fa; + border: 1px solid var(--border-color); + border-radius: 8px; +} + +.compare-ctrl-row { + display: flex; + flex-wrap: wrap; + align-items: center; + gap: 0.3rem 0.5rem; +} + +.compare-ctrl-row-selected, +.compare-ctrl-row-metrics { + padding-top: 0.3rem; + border-top: 1px solid var(--border-color); +} + +.compare-lab-filters-inline { + gap: 0.3rem; +} + +.compare-lab-filters-inline .select-wrapper select { + max-width: 14rem; + font-size: 0.8rem; + padding: 0.28rem 1.6rem 0.28rem 0.5rem; +} + +.compare-inline-add { + display: flex; + flex-wrap: nowrap; + align-items: center; + gap: 0.3rem; + flex: 1 1 auto; + min-width: 0; +} + +#xl-add-panel.compare-inline-add, +#xl-add-panel.xl-add-panel { + flex: 0 0 auto; + flex-direction: row !important; + flex-wrap: nowrap !important; + justify-content: flex-start; + align-items: center; + margin-top: 0; + gap: 0.3rem; + width: auto; + max-width: none; +} + +#xl-add-panel .select-wrapper { + flex: 0 0 auto; + display: inline-block; + position: relative; + width: auto; +} + +#xl-add-panel #xl-add-lang { + width: 5.25rem; + max-width: 5.25rem; + min-width: 5.25rem; + font-size: 0.78rem; + padding: 0.25rem 1.35rem 0.25rem 0.4rem; +} + +#xl-add-panel .xl-add-ser-wrap { + flex: 0 0 auto; + width: 11rem; + max-width: 11rem; + min-width: 11rem; +} + +#xl-add-panel .xl-add-ser-wrap select { + width: 100%; + font-size: 0.78rem; + padding: 0.25rem 1.35rem 0.25rem 0.4rem; +} + +#xl-add-panel #xl-add-btn { + flex: 0 0 auto; +} + +.compare-sel-actions { + margin-left: 0; + flex-shrink: 0; + display: flex; + gap: 0.35rem; + align-items: center; +} + +.compare-search-input { + flex: 0 1 7rem; + min-width: 5rem; + max-width: 9rem; + background: var(--bg-surface); + border: 1px solid var(--border-color); + border-radius: 4px; + padding: 0.28rem 0.45rem; + font-family: var(--font-family); + font-size: 0.78rem; + color: var(--text-primary); + outline: none; +} + +.compare-search-input:focus { + border-color: var(--color-blue); +} + +.compare-add-select-wrap { + flex: 1 1 9rem; + min-width: 7rem; + max-width: 14rem; +} + +.compare-add-select-wrap select { + width: 100%; + padding-top: 0.28rem; + padding-bottom: 0.28rem; + font-size: 0.78rem; +} + +/* Chips: one dense wrapping stream (lang rows stay inline, not stacked blocks) */ +.chip-groups-compact { + display: flex; + flex-direction: row; + flex-wrap: wrap; + align-items: center; + gap: 0.2rem 0.45rem; + margin-top: 0; + max-height: 3.4rem; + overflow-x: hidden; + overflow-y: auto; + padding: 0.1rem 0; +} + +.chip-groups-compact .chip-lang-row { + display: inline-flex; + flex-wrap: wrap; + align-items: center; + gap: 0.2rem 0.25rem; + margin: 0; +} + +.chip-groups-compact .chip-lang-label { + flex: 0 0 auto; + flex-basis: auto; + width: auto; + min-width: 0; + font-size: 0.62rem; + margin: 0; + padding: 0; +} + +.chip-groups-compact .chip-lang-chips { + display: inline-flex; + flex-wrap: wrap; + gap: 0.2rem; +} + +.chip-groups-compact .xl-chip { + font-size: 0.7rem; + padding: 0.08rem 0.2rem 0.08rem 0.4rem; + max-width: 11rem; +} + +.chip-groups-compact .xl-chip-label { + max-width: 8.5rem; +} + +.chip-groups-compact .chip-empty { + font-size: 0.75rem; + padding: 0; +} + +.comparison-section .preset-btn { + font-size: 0.7rem; + padding: 0.18rem 0.4rem; +} + +.comparison-section .metrics-panel-body { + max-height: 160px; + margin-top: 0.25rem; + padding-top: 0.25rem; +} + +.comparison-section .section-disclaimer { + font-size: 0.78rem; + padding: 0.4rem 0.6rem; + margin: 0 0 0.4rem 0; +} + +.comparison-section .compare-scope-tabs .tab-btn { + font-size: 0.78rem; + padding: 0.28rem 0.55rem; +} + +.comparison-section .filter-label { + font-size: 0.68rem; +} + +/* Compare matrix: non-overlapping stacked headers */ +.compare-table-wrap { + margin-top: 0; +} + +#serializer-metrics-table.compare-matrix-table { + table-layout: auto; + border-collapse: separate; + border-spacing: 0; + width: max-content; + min-width: 100%; +} + +#serializer-metrics-table.compare-matrix-table th.cmp-th-metric { + position: sticky; + left: 0; + z-index: 3; + min-width: 9rem; + max-width: 14rem; + text-align: left; + vertical-align: bottom; + background: #f1f3f4; +} + +#serializer-metrics-table.compare-matrix-table th.cmp-th-ser { + min-width: 8.5rem; + width: 8.5rem; + max-width: none; + padding: 0.45rem 0.5rem; + text-align: center; + vertical-align: bottom; + white-space: normal; + overflow: hidden; + line-height: 1.15; + font-weight: 500; + border-left: 1px solid var(--border-color); + background: #f1f3f4; +} + +#serializer-metrics-table.compare-matrix-table th.cmp-th-ser.baseline-col { + background: var(--bg-blue-light) !important; + color: var(--color-blue); +} + +#serializer-metrics-table.compare-matrix-table .cmp-th-lang { + display: block; + font-size: 0.62rem; + font-weight: 600; + text-transform: uppercase; + letter-spacing: 0.03em; + color: var(--text-muted); + margin-bottom: 0.1rem; +} + +#serializer-metrics-table.compare-matrix-table .cmp-th-name { + display: block; + font-size: 0.72rem; + font-weight: 600; + color: inherit; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + max-width: 100%; +} + +#serializer-metrics-table.compare-matrix-table .cmp-th-ver { + display: block; + font-size: 0.65rem; + font-weight: 400; + color: var(--text-muted); + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} + +#serializer-metrics-table.compare-matrix-table .cmp-th-base { + display: block; + font-size: 0.6rem; + font-weight: 600; + text-transform: uppercase; + letter-spacing: 0.04em; + color: var(--color-blue); + margin-top: 0.15rem; +} + +#serializer-metrics-table.compare-matrix-table td.num { + min-width: 8.5rem; + width: 8.5rem; + max-width: none; + padding: 0.45rem 0.5rem; + text-align: right; + border-left: 1px solid rgba(0, 0, 0, 0.04); + /* Full value + ratio, e.g. 9,036 (0.76×) — never ellipsize */ + overflow: visible; + text-overflow: clip; + white-space: nowrap; + font-size: 0.78rem; +} + +#serializer-metrics-table.compare-matrix-table td:first-child { + position: sticky; + left: 0; + z-index: 2; + background: var(--bg-surface); + max-width: 14rem; +} + +/* Override older loose header rules that caused interleaved wraps */ +#serializer-metrics-table th { + white-space: normal; + max-width: none; +} + +.metrics-preset-row { + display: flex; + flex-wrap: wrap; + gap: 0.3rem; +} + +.preset-btn { + appearance: none; + border: 1px solid var(--border-color); + background: var(--bg-surface); + color: var(--text-secondary); + font-family: var(--font-family); + font-size: 0.75rem; + font-weight: 500; + padding: 0.28rem 0.55rem; + border-radius: 999px; + cursor: pointer; +} + +.preset-btn:hover { + background: #f1f3f4; + color: var(--text-primary); +} + +.preset-btn.active { + background: var(--bg-blue-light); + border-color: #c6dafc; + color: var(--color-blue); +} + +.metrics-panel-body { + margin-top: 0.5rem; + padding-top: 0.5rem; + border-top: 1px solid var(--border-color); + max-height: 280px; + overflow-y: auto; +} + +.metrics-checklist-accordion { + display: flex; + flex-direction: column; + gap: 0.15rem; + max-height: none; +} + +.metric-accordion-group { + border: 1px solid var(--border-color); + border-radius: 6px; + background: var(--bg-surface); + overflow: hidden; +} + +.metric-accordion-head { + display: flex; + align-items: center; + justify-content: space-between; + width: 100%; + padding: 0.45rem 0.65rem; + border: none; + background: transparent; + cursor: pointer; + font-family: var(--font-family); + font-size: 0.78rem; + font-weight: 600; + color: var(--text-secondary); + text-align: left; +} + +.metric-accordion-head:hover { + background: #f1f3f4; +} + +.metric-accordion-head .acc-count { + font-weight: 500; + color: var(--text-muted); + font-size: 0.72rem; +} + +.metric-accordion-body { + display: none; + padding: 0.15rem 0.5rem 0.45rem; + border-top: 1px solid var(--border-color); +} + +.metric-accordion-group.open .metric-accordion-body { + display: flex; + flex-direction: column; + gap: 0.1rem; +} + +.metric-accordion-group.open .metric-accordion-head .acc-chevron { + transform: rotate(90deg); +} + +.acc-chevron { + display: inline-block; + transition: transform 0.12s ease; + margin-right: 0.35rem; + color: var(--text-muted); +} + +.metrics-check-item { + display: flex; + align-items: center; + gap: 0.4rem; + font-size: 0.8rem; + padding: 0.2rem 0.25rem; + cursor: pointer; + border-radius: 4px; +} + +.metrics-check-item:hover { + background: #f8f9fa; +} + +.compare-table-wrap { + margin-top: 0.25rem; +} + +/* Hide dual-column metrics grid leftovers when used in compare */ +.comparison-section .metrics-detail-controls-wide { + display: none; +} + +@media (max-width: 720px) { + .chip-lang-label { + flex-basis: 100%; + } + .compare-add-select-wrap { + max-width: none; + flex-basis: 100%; + } +} + +/* --- Compare ultra-dense toolbar --- */ +.comparison-section { + padding: 0.75rem; +} + +.compare-controls-compact { + gap: 0.25rem; + margin-bottom: 0.4rem; + padding: 0.35rem 0.45rem; +} + +.compare-h2 { + font-size: 0.95rem !important; + margin: 0 !important; + white-space: nowrap; +} + +.compare-ctrl-row-main { + flex-wrap: nowrap; + gap: 0.35rem 0.45rem; + overflow-x: auto; +} + +.compare-ctrl-row-main .compare-status-line { + margin-left: auto; + white-space: nowrap; + font-size: 0.75rem; +} + +.compare-copy-btn { + flex-shrink: 0; +} + +/* Selected row: [add controls] [chips scroll] [actions] — no vertical stack */ +.compare-ctrl-row-selected { + display: grid; + grid-template-columns: auto minmax(0, 1fr) auto; + align-items: center; + column-gap: 0.4rem; + row-gap: 0; + padding-top: 0.25rem; + min-height: 2rem; + flex-wrap: nowrap; +} + +.compare-ctrl-row-selected .compare-inline-add { + grid-column: 1; + flex: none; + width: auto; + max-width: none; +} + +.compare-ctrl-row-selected .chip-groups-compact { + grid-column: 2; + flex: none; + width: auto; + min-width: 0; + max-height: none; + height: 1.75rem; + display: flex; + flex-direction: row; + flex-wrap: nowrap; + align-items: center; + overflow-x: auto; + overflow-y: hidden; + -webkit-overflow-scrolling: touch; +} + +.compare-ctrl-row-selected .compare-sel-actions { + grid-column: 3; +} + +.compare-ctrl-row-selected .chip-groups-compact .xl-chip { + display: inline-flex; + flex-shrink: 0; + font-size: 0.68rem; + padding: 0.05rem 0.15rem 0.05rem 0.35rem; + max-width: 9rem; +} + +.compare-ctrl-row-selected .chip-groups-compact .xl-chip-label { + max-width: 7rem; +} + +/* When same-panel is shown, same grid applies */ +#compare-same-panel.compare-inline-add { + flex-direction: row; + flex-wrap: nowrap; + width: auto; + align-items: center; +} + +#compare-same-panel .same-lang-wrap { + flex: 0 0 auto; +} + +#compare-same-panel #same-lang-select { + width: 5.5rem; + max-width: 5.5rem; + min-width: 5.5rem; + font-size: 0.78rem; + padding: 0.25rem 1.35rem 0.25rem 0.4rem; +} + +#compare-same-filters .select-wrapper select { + max-width: 12rem; +} + +.compare-ctrl-row-metrics { + flex-wrap: nowrap; + gap: 0.3rem 0.4rem; + padding-top: 0.25rem; + overflow-x: auto; +} + +.compare-xl-hint { + margin: 0; + padding: 0; + font-size: 0.7rem; + color: #8a6d00; + line-height: 1.2; +} + +#xl-add-panel #xl-add-lang { + max-width: 5.5rem; + min-width: 4rem; + font-size: 0.78rem; + padding: 0.25rem 1.4rem 0.25rem 0.4rem; +} + +#xl-add-panel .xl-add-ser-wrap { + flex: 0 1 11rem; + max-width: 12rem; + min-width: 7rem; +} + +.compare-lab-filters-inline .select-wrapper select { + max-width: 12rem; + font-size: 0.78rem; + padding: 0.25rem 1.4rem 0.25rem 0.4rem; +} + +.comparison-section .glass-panel, +.comparison-section.glass-panel { + /* section itself is glass-panel */ +} diff --git a/dashboard/index.html b/dashboard/index.html index 764f22fa..23c515a5 100644 --- a/dashboard/index.html +++ b/dashboard/index.html @@ -8,24 +8,33 @@ - +
-
@@ -62,6 +71,16 @@

Serializer Analytics dashboard

+ + Samples: +
+ +
@@ -70,27 +89,35 @@

Serializer Analytics dashboard

+ + + + -
+
Tested Libraries - - + Loading… Total serializers in this workload
-
+
Most Compact - - - Size: - + Loading… + Waiting for data
Pareto Frontier - - - Optimal trade-offs (Speed/Size) + Loading… + Optimal trade-offs (speed / size)
@@ -99,7 +126,11 @@

Serializer Analytics dashboard

Speed vs Size Trade-off

- Pareto Front Highlighted +
+ Pareto front + + +
@@ -108,204 +139,185 @@

Speed vs Size Trade-off

-

Performance Comparison

+

Throughput & Size Ranking

+
+ Sort + + + +
-
+

+ Single diverging chart: + ◀ size left · + ops/s ▶ right. + Each side is normalized to the chart max (100); hover for absolute values. +

+
- +
-

Detailed Analytics

-
- +
+

Detailed Analytics

+

+ Roster with Median / Std / P95 / P99 for speed or latency, plus median size. + Pareto-optimal rows are highlighted. Cells: value (ratio×) vs baseline. +

+
+
+
+ + +
+ +
+ +
+ +
+ +
- +
- - - - - - - + + + + + + + + + + + + - - - +
SerializerOps/SecTotal LatencySer LatencyDeser LatencyMedian Size (Bytes)OptimalSerializerMedianStdP95P99MedianStdP95P99Median size (bytes)
- +
-
-

Side-by-Side Comparison

-
- -
-
- -
- -
-
-
- -
- + +
+
+

Compare

+
+ +
-
-
- -
-
- Total Latency - - - - -
-
- Serialization - - - - -
-
- Deserialization - - - - -
-
- Throughput - - - - -
-
- Serialized Size - - - - -
-
-
+ - -
-
-

Cross-language Comparison

- Pareto best by default -
-

- Compare serializers across languages for the same workload. Default selection is each language’s - Pareto-best set (speed vs size), limited to - at most 2 per language (fastest first) so the diagram stays readable. - Add or remove any language/serializer pair. -

- -
-
- Test Data: -
- +
+ Test Data +
+ +
+ Mode +
+ +
+ Baseline +
+ +
- Mode: -
- + + - -
-
-
-
- -
-
- + 0 serializers · 0 metrics +
- -
-
- -
- -
- - - - - - - -
Metric
-
-
- - -
-
-

All Metrics

-
-

- Compare full metric sets for one or more serializers under the current language / test data / mode. - Metrics are grouped by family; use the checklists to show only what you need. -

+
+
+
+ +
+ +
+ +
+ +
-
-
-
- Serializers -
- - + -
- + +
+ + +
+ + +
-
-
- Show metrics -
- - - -
+
+ Metrics + 0 +
+ + + +
-
- +
+ +
+
+ + + + +
-
- +
+
- - - + - - - +
Metric
Metric
@@ -313,46 +325,44 @@

All Metrics

-

History & Custom Runs

+

History & Custom Runs

+

Load a past run from local logs (dev server) or upload a stats JSON file (works on GitHub Pages too).

- -
-

Historical Runs (Local Logs)

-

- Access run results stored in the local logs folder. Select a run timestamp to download raw files or inspect them.
- *Note: Historical log file downloads require a local dashboard installation. +

+

Historical Runs

+

+ Select a run timestamp to download raw files or inspect them. Requires a local logs tree. +

+ -
- +
- -
- - - +
+ + +
- -
-

Upload Custom Stats

-

- Drag and drop a custom computed stats JSON file (e.g. stats_*.json) from your local system to load it instantly. -

- -
- 📥 -

Drag & Drop custom stats JSON file here

-

Or click to browse and upload

+
+

Upload Custom Stats

+

Drop a computed stats JSON file (e.g. stats_*.json).

+
+ +

Drag & drop stats JSON

+

Or click to browse

diff --git a/dashboard/main.js b/dashboard/main.js index 93fa5bf5..3c74817c 100644 --- a/dashboard/main.js +++ b/dashboard/main.js @@ -1,20 +1,81 @@ -import { initCharts, updateCharts } from './charts.js'; - -const SETTINGS_KEY = 'serializer-dashboard-settings-v1'; - -/** Keys that identify a group, not metrics. */ -const GROUP_META_KEYS = new Set(['serializer', 'test_data', 'mode', 'language']); - -/** Suite fixture base type ids. */ -const SUITE_TYPE_IDS = ['message', 'document', 'telemetry', 'strings', 'event']; - /** - * Display / filter key: "message@n=1" when batch axis is present. - * Idempotent: safe if test_data is already labeled (or even doubled like "x@n=1@n=1"). + * Dashboard UI terminology: always say **data type** (test_data / Test Data control). + * Never use "fixture" in user-visible copy, notifications, KPIs, or export notes. + * Internal helpers may still say fixture* in identifiers until renamed. */ +import { + initCharts, + updateCharts, + setChartLogScale, + getChartLogScale, + setRankSort, + getRankSort, + exportScatterPng, + exportBarPng, +} from './charts.js'; +import { + formatSig, + formatIntGrouped, + formatMetricCell, + formatRelativeCell, + scalesFromGroups, + metricHeaderLabel, + metricKind, + formatOpsCompact, + formatTimeCompact, + formatOpsCell, + chooseLatencyUnit, + chooseOpsUnit, + serializerLabelFromGroup, +} from './format.js'; + +const SETTINGS_KEY = 'serializer-dashboard-settings-v2'; + +const GROUP_META_KEYS = new Set([ + 'serializer', + 'test_data', + 'mode', + 'language', + 'filter', + 'variants', + 'serializer_version', + 'type_config_hash', + 'StreamMode', + 'compounded', + 'compound_parts', +]); +const SUITE_TYPE_IDS = ['message', 'document', 'telemetry', 'strings', 'event']; + +/** Named sample-filter policies (must match analysis FILTER_POLICY_IDS). */ +const FILTER_POLICY_FALLBACK = { + all: { + id: 'all', + label: 'All trials (post-warmup)', + description: + 'Every measured repetition after warmup. No IQR drop and no winsorization.', + }, + 'iqr_1.5': { + id: 'iqr_1.5', + label: 'IQR k=1.5 (strict / default)', + description: + 'Paired Tukey fences (k=1.5) on ser/deser/total; drop if outlier on any.', + }, + iqr_3: { + id: 'iqr_3', + label: 'IQR k=3 (loose)', + description: 'Same paired IQR rule with k=3 (only extreme stalls removed).', + }, + winsorize_5_95: { + id: 'winsorize_5_95', + label: 'Winsorize 5–95%', + description: 'Clip ser/deser/total at 5th–95th percentiles; n unchanged.', + }, +}; +const DEFAULT_FILTER_POLICY = 'iqr_1.5'; +const FILTER_POLICY_ORDER = ['all', 'iqr_1.5', 'iqr_3', 'winsorize_5_95']; + function fixtureKey(g) { const raw = String(g?.test_data ?? ''); - // Strip one or more trailing @n= segments so re-labeling never stacks. const base = raw.replace(/(@n=\d+)+$/i, '') || raw; let n = g?.data_type_instance_count; if (n == null || n === '') { @@ -29,12 +90,10 @@ function fixtureKey(g) { function baseTypeId(key) { if (!key) return ''; - // First @n= starts the batch suffix (handles accidental doubles). const i = String(key).indexOf('@n='); return i >= 0 ? String(key).slice(0, i) : String(key); } -/** Prefer message@n=1, then message, then any suite type. */ function pickPreferredFixture(options) { if (!options || !options.length) return ''; const preferred = []; @@ -45,10 +104,9 @@ function pickPreferredFixture(options) { if (options.includes(p)) return p; } const cleaned = options.filter((o) => SUITE_TYPE_IDS.includes(baseTypeId(o))); - return (cleaned[0] || options[0] || ''); + return cleaned[0] || options[0] || ''; } - const LANGUAGE_CATALOG = [ { id: 'csharp', label: 'C#' }, { id: 'rust', label: 'Rust' }, @@ -61,106 +119,189 @@ const LANGUAGE_CATALOG = [ { id: 'swift', label: 'Swift' }, ]; -/** Metrics shown as rows in the cross-language matrix. */ const CROSS_LANG_METRICS = [ - { key: 'avg_ops_per_sec', label: 'Ops/Sec', higherIsBetter: true }, - { key: 'avg_time_total_ns', label: 'Total latency', higherIsBetter: false }, + { key: 'avg_ops_per_sec', label: 'Ops/s', higherIsBetter: true }, + { key: 'avg_time_total_ns', label: 'Total latency (mean)', higherIsBetter: false }, { key: 'avg_time_ser_ns', label: 'Ser latency', higherIsBetter: false }, { key: 'avg_time_deser_ns', label: 'Deser latency', higherIsBetter: false }, { key: 'total_median_ns', label: 'Median total', higherIsBetter: false }, + { key: 'total_p95_ns', label: 'Total p95', higherIsBetter: false }, { key: 'median_size_bytes', label: 'Median size', higherIsBetter: false }, { key: 'mean_fidelity', label: 'Fidelity', higherIsBetter: true }, + { key: 'mean_memory_peak_bytes', label: 'Peak memory', higherIsBetter: false }, { key: 'runs', label: 'Samples', higherIsBetter: null }, + { key: 'total_cv', label: 'Total CV', higherIsBetter: false }, ]; -/** Default checklist when no saved selection exists. */ const DEFAULT_SELECTED_METRICS = [ 'avg_ops_per_sec', 'avg_time_total_ns', 'avg_time_ser_ns', 'avg_time_deser_ns', 'total_median_ns', - 'ser_median_ns', - 'deser_median_ns', + 'total_p95_ns', + 'total_ci_low_ns', + 'total_ci_high_ns', 'median_size_bytes', - 'size_median_bytes', - 'runs', 'mean_fidelity', + 'mean_memory_peak_bytes', + 'runs', 'serializer_version', ]; -// State Management +/** Max serializer columns in Compare matrix (baseline counts). */ +const MAX_COMPARE_COLUMNS = 8; + +/** Metric presets for Compare catalog. */ +const METRIC_PRESETS = { + defaults: DEFAULT_SELECTED_METRICS, + latency: [ + 'avg_time_total_ns', + 'avg_time_ser_ns', + 'avg_time_deser_ns', + 'total_median_ns', + 'total_p95_ns', + 'total_p50_ns', + 'total_p99_ns', + 'total_ci_low_ns', + 'total_ci_high_ns', + 'total_cv', + 'ser_median_ns', + 'deser_median_ns', + ], + size: ['median_size_bytes', 'mean_memory_peak_bytes', 'mean_fidelity', 'runs'], +}; + +/** Open metric accordion groups (name -> bool). */ +const metricAccordionOpen = {}; + let state = { currentLanguage: 'csharp', currentTestData: '', currentMode: '', - displayMetric: 'ops', // 'ops' or 'time' + displayMetric: 'ops', // charts / ranking toolbar + /** Detailed Analytics only: 'ops' | 'time' (independent of displayMetric). */ + rosterMetric: 'ops', + rankSort: 'speed', // 'speed' | 'size' for ranking chart searchQuery: '', sortKey: 'serializer', - sortDirection: 'asc', // 'asc' or 'desc' - allGroups: [], // All serializer runs for the loaded file - filteredGroups: [], // Filtered by test_data and mode - paretoSerializerNames: [], // Names of Pareto-optimal serializers - serializerNames: [], // Names of all serializers in filtered group - compareA: '', - compareB: '', - detailSerializers: [], // multi-select for Serializer Metrics table - availableMetrics: [], // all metric field ids in loaded data + sortDirection: 'asc', + allGroups: [], + /** @type {Record} policy id → full group list for current language */ + groupsByPolicy: {}, + /** @type {Record} policy catalog from export or fallback */ + filterPolicies: { ...FILTER_POLICY_FALLBACK }, + filterPolicy: DEFAULT_FILTER_POLICY, + defaultFilterPolicy: DEFAULT_FILTER_POLICY, + filteredGroups: [], + paretoSerializerNames: [], + serializerNames: [], + detailSerializers: [], + availableMetrics: [], selectedMetrics: [...DEFAULT_SELECTED_METRICS], + compareBaseline: '', + compareScope: 'same', // 'same' | 'cross' - // Cross-language comparison - crossLangGroupsByLang: {}, // langId -> groups[] + /** @type {Record>} lang → policy → groups */ + crossLangGroupsByLangPolicy: {}, + crossLangGroupsByLang: {}, xlTestData: '', - xlMode: '', // normalized: 'bytes' | 'stream' | other - xlSelected: [], // [{ lang, serializer }] - xlSelectionMode: 'pareto', // 'pareto' | 'custom' + xlMode: '', + xlSelected: [], + xlSelectionMode: 'pareto', + xlBaselineKey: '', // "lang|serializer" - // Historical data state currentRunId: '', currentRunConfigs: {}, currentRunErrors: '', currentRunCsv: '', - historicalRuns: {} // Maps language -> array of runIds + historicalRuns: {}, + logsAvailable: null, // null unknown, true/false after probe + chartLogScale: false, + crossLangLoaded: false, }; -/** Fill the main Language toolbar select from LANGUAGE_CATALOG (single source of truth). */ +function languageLabel(langId) { + return LANGUAGE_CATALOG.find((l) => l.id === langId)?.label || langId; +} + function populateLanguageSelect() { - const sel = document.getElementById('lang-select'); - if (!sel) return; - const prev = sel.value || state.currentLanguage; - sel.innerHTML = ''; - for (const lang of LANGUAGE_CATALOG) { - const opt = document.createElement('option'); - opt.value = lang.id; - opt.textContent = lang.label; - sel.appendChild(opt); - } - if ([...sel.options].some((o) => o.value === prev)) { - sel.value = prev; - } else if (sel.options.length) { - sel.value = sel.options[0].value; - state.currentLanguage = sel.value; + const sels = [ + document.getElementById('lang-select'), + document.getElementById('same-lang-select'), + ].filter(Boolean); + if (!sels.length) return; + const prev = state.currentLanguage; + sels.forEach((sel) => { + sel.innerHTML = ''; + for (const lang of LANGUAGE_CATALOG) { + const opt = document.createElement('option'); + opt.value = lang.id; + opt.textContent = lang.label; + sel.appendChild(opt); + } + if ([...sel.options].some((o) => o.value === prev)) { + sel.value = prev; + } else if (sel.options.length) { + sel.value = sel.options[0].value; + } + }); + if (sels[0] && ![...sels[0].options].some((o) => o.value === state.currentLanguage)) { + state.currentLanguage = sels[0].value; } } -// Initialize elements +/** Keep toolbar + Compare same-language filters in sync. */ +function syncLanguageSelects() { + ['lang-select', 'same-lang-select'].forEach((id) => { + const el = document.getElementById(id); + if (el && [...el.options].some((o) => o.value === state.currentLanguage)) { + el.value = state.currentLanguage; + } + }); +} + +function syncFixtureModeSelects() { + ['data-select', 'same-data-select'].forEach((id) => { + const el = document.getElementById(id); + if (el && [...el.options].some((o) => o.value === state.currentTestData)) { + el.value = state.currentTestData; + } + }); + ['mode-select', 'same-mode-select'].forEach((id) => { + const el = document.getElementById(id); + if (el && [...el.options].some((o) => o.value === state.currentMode)) { + el.value = state.currentMode; + } + }); +} + document.addEventListener('DOMContentLoaded', async () => { populateLanguageSelect(); applySavedSettings(loadSettings()); + applyUrlParams(); setupEventListeners(); initCharts(); applyUiFromState(); await loadHistoryList(); - await Promise.all([ - loadLanguageData(state.currentLanguage), - loadAllLanguagesForCrossCompare(), - ]); + await probeLogsAvailability(); + await loadLanguageData(state.currentLanguage); + // Lazy: do not load all langs until cross-lang compare is opened + if (state.compareScope === 'cross') { + await ensureCrossLangLoaded(); + } + syncUrlFromState(); }); function loadSettings() { try { const raw = localStorage.getItem(SETTINGS_KEY); - if (!raw) return null; + if (!raw) { + // migrate v1 + const v1 = localStorage.getItem('serializer-dashboard-settings-v1'); + if (v1) return JSON.parse(v1); + return null; + } return JSON.parse(raw); } catch (e) { console.warn('Could not read saved dashboard settings:', e); @@ -174,28 +315,33 @@ function saveSettings() { currentTestData: state.currentTestData, currentMode: state.currentMode, displayMetric: state.displayMetric, + rosterMetric: state.rosterMetric, + rankSort: state.rankSort, searchQuery: state.searchQuery, sortKey: state.sortKey, sortDirection: state.sortDirection, - compareA: state.compareA, - compareB: state.compareB, detailSerializers: state.detailSerializers, selectedMetrics: state.selectedMetrics, + compareBaseline: state.compareBaseline, + compareScope: state.compareScope, xlTestData: state.xlTestData, xlMode: state.xlMode, xlSelected: state.xlSelected, xlSelectionMode: state.xlSelectionMode, + xlBaselineKey: state.xlBaselineKey, + chartLogScale: state.chartLogScale, + filterPolicy: state.filterPolicy, }; try { localStorage.setItem(SETTINGS_KEY, JSON.stringify(payload)); } catch (e) { console.warn('Could not persist dashboard settings:', e); } + syncUrlFromState(); } function applySavedSettings(saved) { if (!saved || typeof saved !== 'object') return; - if (typeof saved.currentLanguage === 'string' && saved.currentLanguage) { state.currentLanguage = saved.currentLanguage; } @@ -204,14 +350,18 @@ function applySavedSettings(saved) { if (saved.displayMetric === 'ops' || saved.displayMetric === 'time') { state.displayMetric = saved.displayMetric; } + if (saved.rosterMetric === 'ops' || saved.rosterMetric === 'time') { + state.rosterMetric = saved.rosterMetric; + } + if (saved.rankSort === 'speed' || saved.rankSort === 'size') { + state.rankSort = saved.rankSort; + setRankSort(state.rankSort); + } if (typeof saved.searchQuery === 'string') state.searchQuery = saved.searchQuery; if (typeof saved.sortKey === 'string' && saved.sortKey) state.sortKey = saved.sortKey; if (saved.sortDirection === 'asc' || saved.sortDirection === 'desc') { state.sortDirection = saved.sortDirection; } - if (typeof saved.compareA === 'string') state.compareA = saved.compareA; - if (typeof saved.compareB === 'string') state.compareB = saved.compareB; - // Multi-select (new) with migration from single detailSerializer if (Array.isArray(saved.detailSerializers)) { state.detailSerializers = saved.detailSerializers.filter((s) => typeof s === 'string'); } else if (typeof saved.detailSerializer === 'string' && saved.detailSerializer) { @@ -220,6 +370,14 @@ function applySavedSettings(saved) { if (Array.isArray(saved.selectedMetrics) && saved.selectedMetrics.length > 0) { state.selectedMetrics = saved.selectedMetrics.filter((k) => typeof k === 'string'); } + if (typeof saved.compareBaseline === 'string') state.compareBaseline = saved.compareBaseline; + // migrate old compareA as baseline + if (!state.compareBaseline && typeof saved.compareA === 'string') { + state.compareBaseline = saved.compareA; + } + if (saved.compareScope === 'same' || saved.compareScope === 'cross') { + state.compareScope = saved.compareScope; + } if (typeof saved.xlTestData === 'string') state.xlTestData = saved.xlTestData; if (typeof saved.xlMode === 'string') state.xlMode = saved.xlMode; if (saved.xlSelectionMode === 'pareto' || saved.xlSelectionMode === 'custom') { @@ -230,556 +388,1774 @@ function applySavedSettings(saved) { .filter((x) => x && typeof x.lang === 'string' && typeof x.serializer === 'string') .map((x) => ({ lang: x.lang, serializer: x.serializer })); } + if (typeof saved.xlBaselineKey === 'string') state.xlBaselineKey = saved.xlBaselineKey; + if (typeof saved.filterPolicy === 'string' && saved.filterPolicy) { + state.filterPolicy = saved.filterPolicy; + } + if (typeof saved.chartLogScale === 'boolean') { + state.chartLogScale = saved.chartLogScale; + setChartLogScale(state.chartLogScale); + } +} + +function applyUrlParams() { + const p = new URLSearchParams(window.location.search); + if (p.has('lang')) state.currentLanguage = p.get('lang'); + if (p.has('data')) state.currentTestData = p.get('data'); + if (p.has('mode')) state.currentMode = p.get('mode'); + if (p.get('metric') === 'ops' || p.get('metric') === 'time') state.displayMetric = p.get('metric'); + if (p.get('scope') === 'cross' || p.get('scope') === 'same') state.compareScope = p.get('scope'); + if (p.has('baseline')) state.compareBaseline = p.get('baseline'); + if (p.has('log')) state.chartLogScale = p.get('log') === '1'; + if (p.get('rank') === 'size' || p.get('rank') === 'speed') { + state.rankSort = p.get('rank'); + setRankSort(state.rankSort); + } + setChartLogScale(state.chartLogScale); +} + +function syncUrlFromState() { + try { + const p = new URLSearchParams(); + p.set('lang', state.currentLanguage); + if (state.currentTestData) p.set('data', state.currentTestData); + if (state.currentMode) p.set('mode', state.currentMode); + p.set('metric', state.displayMetric); + if (state.compareScope === 'cross') p.set('scope', 'cross'); + if (state.compareBaseline) p.set('baseline', state.compareBaseline); + if (state.chartLogScale) p.set('log', '1'); + if (state.rankSort === 'size') p.set('rank', 'size'); + const qs = p.toString(); + const url = `${window.location.pathname}${qs ? `?${qs}` : ''}${window.location.hash || ''}`; + window.history.replaceState(null, '', url); + } catch (_) { + /* ignore */ + } } -/** Sync non-data-dependent controls from state (before/after data load). */ function applyUiFromState() { const langSel = document.getElementById('lang-select'); if (langSel && [...langSel.options].some((o) => o.value === state.currentLanguage)) { langSel.value = state.currentLanguage; } - document.getElementById('btn-ops-sec').classList.toggle('active', state.displayMetric === 'ops'); - document.getElementById('btn-time-ns').classList.toggle('active', state.displayMetric === 'time'); + document.getElementById('btn-ops-sec')?.classList.toggle('active', state.displayMetric === 'ops'); + document.getElementById('btn-time-ns')?.classList.toggle('active', state.displayMetric === 'time'); + document.getElementById('btn-roster-ops')?.classList.toggle('active', state.rosterMetric === 'ops'); + document.getElementById('btn-roster-latency')?.classList.toggle('active', state.rosterMetric === 'time'); + document.getElementById('btn-chart-log')?.classList.toggle('active', state.chartLogScale); + document.getElementById('btn-rank-sort-speed')?.classList.toggle('active', state.rankSort !== 'size'); + document.getElementById('btn-rank-sort-size')?.classList.toggle('active', state.rankSort === 'size'); + setRankSort(state.rankSort); + updateRankSortPrimaryLabel(); const search = document.getElementById('table-search'); if (search) search.value = state.searchQuery || ''; - // Restore sort indicator on multi-serializer table headers + updateSortIndicators(); + applyCompareScopeUi(); +} + +/** Rank-sort primary button: Ops/s vs Latency (not generic "Speed"). */ +function updateRankSortPrimaryLabel() { + const btn = document.getElementById('btn-rank-sort-speed'); + if (!btn) return; + if (state.displayMetric === 'time') { + btn.textContent = 'Latency'; + btn.title = 'Sort by latency (lowest first)'; + } else { + btn.textContent = 'Ops/s'; + btn.title = 'Sort by ops/s (highest first)'; + } +} + + +function updateSortIndicators() { document.querySelectorAll('#analytics-table th').forEach((th) => { - th.className = ''; + th.classList.remove('sort-asc', 'sort-desc'); }); const sortHeaderMap = { serializer: 'th-serializer', - avg_ops_per_sec: 'th-ops', - avg_time_total_ns: 'th-total-ns', - avg_time_ser_ns: 'th-ser-ns', - avg_time_deser_ns: 'th-deser-ns', + ops_median: 'th-ops-median', + ops_std: 'th-ops-std', + ops_p95: 'th-ops-p95', + ops_p99: 'th-ops-p99', + total_median_ns: 'th-lat-median', + total_std_ns: 'th-lat-std', + total_p95_ns: 'th-lat-p95', + total_p99_ns: 'th-lat-p99', median_size_bytes: 'th-size', }; const sortTh = document.getElementById(sortHeaderMap[state.sortKey]); if (sortTh) { - sortTh.className = state.sortDirection === 'asc' ? 'sort-asc' : 'sort-desc'; + sortTh.classList.add(state.sortDirection === 'asc' ? 'sort-asc' : 'sort-desc'); + } +} + +function applyCompareScopeUi() { + const same = state.compareScope === 'same'; + document.getElementById('btn-compare-same')?.classList.toggle('active', same); + document.getElementById('btn-compare-xl')?.classList.toggle('active', !same); + const sameFilters = document.getElementById('compare-same-filters'); + const xlFilters = document.getElementById('compare-xl-filters'); + const samePanel = document.getElementById('compare-same-panel'); + const xlPanel = document.getElementById('xl-add-panel'); + const sameChips = document.getElementById('same-selection-chips'); + const xlChips = document.getElementById('xl-selection-chips'); + const disclaimer = document.getElementById('compare-xl-disclaimer'); + const badge = document.getElementById('compare-scope-badge'); + const serAll = document.getElementById('detail-ser-select-all'); + const seedPareto = document.getElementById('xl-reset-pareto'); + + if (sameFilters) sameFilters.hidden = !same; + if (xlFilters) xlFilters.hidden = same; + if (samePanel) samePanel.hidden = !same; + if (xlPanel) xlPanel.hidden = same; + if (sameChips) sameChips.hidden = !same; + if (xlChips) xlChips.hidden = same; + if (disclaimer) disclaimer.hidden = same; + if (serAll) serAll.hidden = !same; + if (seedPareto) seedPareto.hidden = same; + if (badge) { + badge.hidden = true; // status line + Same/Cross tabs already convey mode + } + updateCompareStatusLine(); +} + +function updateCompareStatusLine() { + const el = document.getElementById('compare-status-line'); + const countEl = document.getElementById('compare-selected-count'); + const metricsEl = document.getElementById('metrics-selected-count'); + let n = 0; + if (state.compareScope === 'same') { + n = state.detailSerializers.filter((s) => state.serializerNames.includes(s)).length; + } else { + n = state.xlSelected.length; } + const m = state.selectedMetrics.filter((k) => + state.availableMetrics.length ? state.availableMetrics.includes(k) : true + ).length; + if (el) { + const serLabel = n === 1 ? 'serializer' : 'serializers'; + const metLabel = m === 1 ? 'metric' : 'metrics'; + el.textContent = `${n} ${serLabel} · ${m} ${metLabel}`; + } + if (countEl) countEl.textContent = String(n); + if (metricsEl) metricsEl.textContent = String(m); } function setupEventListeners() { - // Selectors - document.getElementById('lang-select').addEventListener('change', async (e) => { + document.getElementById('filter-policy-select')?.addEventListener('change', (e) => { + setFilterPolicy(e.target.value); + }); + + // Mobile nav + const navToggle = document.getElementById('nav-toggle'); + const mainNav = document.getElementById('main-nav'); + navToggle?.addEventListener('click', () => { + const open = mainNav?.classList.toggle('open'); + navToggle.setAttribute('aria-expanded', open ? 'true' : 'false'); + }); + + const onLanguageChange = async (e) => { state.currentLanguage = e.target.value; + syncLanguageSelects(); saveSettings(); await loadLanguageData(state.currentLanguage); - }); + }; + document.getElementById('lang-select')?.addEventListener('change', onLanguageChange); + document.getElementById('same-lang-select')?.addEventListener('change', onLanguageChange); - document.getElementById('data-select').addEventListener('change', (e) => { + const onDataChange = (e) => { state.currentTestData = e.target.value; + syncFixtureModeSelects(); saveSettings(); filterAndRefresh(); - }); + }; + document.getElementById('data-select')?.addEventListener('change', onDataChange); + document.getElementById('same-data-select')?.addEventListener('change', onDataChange); - document.getElementById('mode-select').addEventListener('change', (e) => { + const onModeChange = (e) => { state.currentMode = e.target.value; + syncFixtureModeSelects(); saveSettings(); filterAndRefresh(); - }); + }; + document.getElementById('mode-select')?.addEventListener('change', onModeChange); + document.getElementById('same-mode-select')?.addEventListener('change', onModeChange); + + document.getElementById('btn-ops-sec')?.addEventListener('click', () => setViewMetric('ops')); + document.getElementById('btn-time-ns')?.addEventListener('click', () => setViewMetric('time')); - // Toggle View Tabs - document.getElementById('btn-ops-sec').addEventListener('click', () => { - setViewMetric('ops'); + document.getElementById('btn-roster-ops')?.addEventListener('click', () => setRosterMetric('ops')); + document.getElementById('btn-roster-latency')?.addEventListener('click', () => setRosterMetric('time')); + + document.getElementById('btn-chart-log')?.addEventListener('click', () => { + state.chartLogScale = !state.chartLogScale; + setChartLogScale(state.chartLogScale); + document.getElementById('btn-chart-log')?.classList.toggle('active', state.chartLogScale); + saveSettings(); + updateCharts(state.filteredGroups, state.paretoSerializerNames, state.displayMetric); }); - document.getElementById('btn-time-ns').addEventListener('click', () => { - setViewMetric('time'); + const setRankingSort = (sort) => { + state.rankSort = sort === 'size' ? 'size' : 'speed'; + setRankSort(state.rankSort); + document.getElementById('btn-rank-sort-speed')?.classList.toggle('active', state.rankSort === 'speed'); + document.getElementById('btn-rank-sort-size')?.classList.toggle('active', state.rankSort === 'size'); + updateRankSortPrimaryLabel(); + saveSettings(); + updateCharts(state.filteredGroups, state.paretoSerializerNames, state.displayMetric); + }; + document.getElementById('btn-rank-sort-speed')?.addEventListener('click', () => setRankingSort('speed')); + document.getElementById('btn-rank-sort-size')?.addEventListener('click', () => setRankingSort('size')); + + document.getElementById('btn-export-scatter')?.addEventListener('click', () => { + const url = exportScatterPng(); + if (url) downloadDataUrl(url, `scatter-${state.currentLanguage}.png`); + }); + document.getElementById('btn-export-bar')?.addEventListener('click', () => { + const url = exportBarPng(); + if (url) downloadDataUrl(url, `ranking-${state.currentLanguage}.png`); }); - // Search Input - document.getElementById('table-search').addEventListener('input', (e) => { + document.getElementById('table-search')?.addEventListener('input', (e) => { state.searchQuery = e.target.value.toLowerCase().trim(); saveSettings(); renderTable(); }); - // Table Sorting const headers = [ { id: 'th-serializer', key: 'serializer' }, - { id: 'th-ops', key: 'avg_ops_per_sec' }, - { id: 'th-total-ns', key: 'avg_time_total_ns' }, - { id: 'th-ser-ns', key: 'avg_time_ser_ns' }, - { id: 'th-deser-ns', key: 'avg_time_deser_ns' }, - { id: 'th-size', key: 'median_size_bytes' } + { id: 'th-ops-median', key: 'ops_median' }, + { id: 'th-ops-std', key: 'ops_std' }, + { id: 'th-ops-p95', key: 'ops_p95' }, + { id: 'th-ops-p99', key: 'ops_p99' }, + { id: 'th-lat-median', key: 'total_median_ns' }, + { id: 'th-lat-std', key: 'total_std_ns' }, + { id: 'th-lat-p95', key: 'total_p95_ns' }, + { id: 'th-lat-p99', key: 'total_p99_ns' }, + { id: 'th-size', key: 'median_size_bytes' }, ]; - - headers.forEach(h => { + headers.forEach((h) => { const el = document.getElementById(h.id); - if (el) { - el.addEventListener('click', () => handleTableSort(h.key, el)); - } + if (el) el.addEventListener('click', () => handleTableSort(h.key)); }); - // Comparison Selects - document.getElementById('compare-a-select').addEventListener('change', (e) => { - state.compareA = e.target.value; + const onBaselineChange = (e) => { + state.compareBaseline = e.target.value; + // Keep roster + compare pickers in sync + const otherIds = ['compare-baseline-select', 'roster-baseline-select']; + otherIds.forEach((id) => { + const el = document.getElementById(id); + if (el && el !== e.target && [...el.options].some((o) => o.value === state.compareBaseline)) { + el.value = state.compareBaseline; + } + }); + // Ensure baseline is in compare selection + if ( + state.compareScope === 'same' && + state.compareBaseline && + !state.detailSerializers.includes(state.compareBaseline) + ) { + state.detailSerializers = [state.compareBaseline, ...state.detailSerializers].slice( + 0, + MAX_COMPARE_COLUMNS + ); + } + saveSettings(); + renderSameSelectionChips(); + populateSameSerAddSelect(); + renderTable(); + renderCompareMatrix(); + }; + document.getElementById('compare-baseline-select')?.addEventListener('change', onBaselineChange); + document.getElementById('roster-baseline-select')?.addEventListener('change', onBaselineChange); + + document.getElementById('btn-compare-same')?.addEventListener('click', () => { + state.compareScope = 'same'; + applyCompareScopeUi(); + renderSameSelectionChips(); + populateSameSerAddSelect(); saveSettings(); - updateComparison(); + renderCompareMatrix(); }); - document.getElementById('compare-b-select').addEventListener('change', (e) => { - state.compareB = e.target.value; + document.getElementById('btn-compare-xl')?.addEventListener('click', async () => { + state.compareScope = 'cross'; + applyCompareScopeUi(); saveSettings(); - updateComparison(); + await ensureCrossLangLoaded(); + renderCrossLangSelection(); + renderCompareMatrix(); }); - // Multi-serializer metrics explorer - document.getElementById('detail-ser-select-all').addEventListener('click', () => { - state.detailSerializers = [...state.serializerNames]; + document.getElementById('detail-ser-select-all')?.addEventListener('click', () => { + // Same-language only: add all (capped) + state.detailSerializers = state.serializerNames.slice(0, MAX_COMPARE_COLUMNS); + if ( + state.compareBaseline && + !state.detailSerializers.includes(state.compareBaseline) && + state.serializerNames.includes(state.compareBaseline) + ) { + state.detailSerializers = [ + state.compareBaseline, + ...state.detailSerializers.filter((s) => s !== state.compareBaseline), + ].slice(0, MAX_COMPARE_COLUMNS); + } saveSettings(); - renderDetailSerializerChecklist(); - renderSerializerMetricsTable(); + renderSameSelectionChips(); + populateSameSerAddSelect(); + renderCompareMatrix(); + updateCompareStatusLine(); }); - document.getElementById('detail-ser-select-none').addEventListener('click', () => { - state.detailSerializers = []; + document.getElementById('detail-ser-select-none')?.addEventListener('click', () => { + if (state.compareScope === 'same') { + state.detailSerializers = state.compareBaseline ? [state.compareBaseline] : []; + renderSameSelectionChips(); + populateSameSerAddSelect(); + } else { + state.xlSelected = []; + state.xlSelectionMode = 'custom'; + renderCrossLangSelection(); + updateXlBaselineSelect(); + } saveSettings(); - renderDetailSerializerChecklist(); - renderSerializerMetricsTable(); + renderCompareMatrix(); + updateCompareStatusLine(); + }); + + document.getElementById('same-ser-search')?.addEventListener('input', () => { + populateSameSerAddSelect(); + }); + + document.getElementById('same-ser-add-btn')?.addEventListener('click', () => { + addSameLanguageSerializer(document.getElementById('same-ser-add-select')?.value); }); - document.getElementById('metrics-select-all').addEventListener('click', () => { + document.getElementById('same-ser-add-select')?.addEventListener('keydown', (e) => { + if (e.key === 'Enter') { + e.preventDefault(); + addSameLanguageSerializer(e.target.value); + } + }); + + document.getElementById('metrics-select-all')?.addEventListener('click', () => { state.selectedMetrics = [...state.availableMetrics]; + setMetricsPresetActive('custom'); + openMetricsPanel(true); saveSettings(); renderMetricsChecklist(); - renderSerializerMetricsTable(); + renderCompareMatrix(); + updateCompareStatusLine(); }); - document.getElementById('metrics-select-none').addEventListener('click', () => { + document.getElementById('metrics-select-none')?.addEventListener('click', () => { state.selectedMetrics = []; + setMetricsPresetActive('custom'); + openMetricsPanel(true); saveSettings(); renderMetricsChecklist(); - renderSerializerMetricsTable(); + renderCompareMatrix(); + updateCompareStatusLine(); }); - document.getElementById('metrics-select-default').addEventListener('click', () => { - state.selectedMetrics = DEFAULT_SELECTED_METRICS.filter((k) => - state.availableMetrics.includes(k) - ); - if (state.selectedMetrics.length === 0) { - state.selectedMetrics = state.availableMetrics.slice(0, 12); - } - saveSettings(); - renderMetricsChecklist(); - renderSerializerMetricsTable(); + document.getElementById('metrics-select-default')?.addEventListener('click', () => { + applyMetricPreset('defaults'); + }); + document.getElementById('metrics-preset-latency')?.addEventListener('click', () => { + applyMetricPreset('latency'); + }); + document.getElementById('metrics-preset-size')?.addEventListener('click', () => { + applyMetricPreset('size'); + }); + document.getElementById('metrics-edit-toggle')?.addEventListener('click', () => { + const body = document.getElementById('metrics-panel-body'); + const open = body && body.hidden; + openMetricsPanel(!!open); + setMetricsPresetActive('custom'); }); - // Cross-language comparison - document.getElementById('xl-data-select').addEventListener('change', (e) => { + // Cross-lang filters + document.getElementById('xl-data-select')?.addEventListener('change', (e) => { state.xlTestData = e.target.value; - if (state.xlSelectionMode === 'pareto') { - applyCrossLangParetoSelection(); - } else { - pruneCrossLangSelection(); - } + if (state.xlSelectionMode === 'pareto') applyCrossLangParetoSelection(); + else pruneCrossLangSelection(); refreshCrossLangAddSerializerOptions(); renderCrossLangSelection(); - renderCrossLangTable(); + updateXlBaselineSelect(); + renderCompareMatrix(); saveSettings(); + updateCompareStatusLine(); }); - document.getElementById('xl-mode-select').addEventListener('change', (e) => { + document.getElementById('xl-mode-select')?.addEventListener('change', (e) => { state.xlMode = e.target.value; - if (state.xlSelectionMode === 'pareto') { - applyCrossLangParetoSelection(); - } else { - pruneCrossLangSelection(); - } + if (state.xlSelectionMode === 'pareto') applyCrossLangParetoSelection(); + else pruneCrossLangSelection(); refreshCrossLangAddSerializerOptions(); renderCrossLangSelection(); - renderCrossLangTable(); + updateXlBaselineSelect(); + renderCompareMatrix(); saveSettings(); + updateCompareStatusLine(); }); - document.getElementById('xl-reset-pareto').addEventListener('click', () => { + document.getElementById('xl-reset-pareto')?.addEventListener('click', () => { state.xlSelectionMode = 'pareto'; applyCrossLangParetoSelection(); + // Cap columns for readability + if (state.xlSelected.length > MAX_COMPARE_COLUMNS) { + state.xlSelected = state.xlSelected.slice(0, MAX_COMPARE_COLUMNS); + } renderCrossLangSelection(); - renderCrossLangTable(); - updateCrossLangBadge(); + updateXlBaselineSelect(); + refreshCrossLangAddSerializerOptions(); + renderCompareMatrix(); saveSettings(); + updateCompareStatusLine(); }); - document.getElementById('xl-add-lang').addEventListener('change', () => { + document.getElementById('xl-add-lang')?.addEventListener('change', () => { refreshCrossLangAddSerializerOptions(); }); - document.getElementById('xl-add-btn').addEventListener('click', () => { + document.getElementById('xl-add-btn')?.addEventListener('click', () => { const lang = document.getElementById('xl-add-lang').value; const serializer = document.getElementById('xl-add-serializer').value; if (!lang || !serializer) return; - const exists = state.xlSelected.some( - (x) => x.lang === lang && x.serializer === serializer - ); - if (exists) { + if (state.xlSelected.some((x) => x.lang === lang && x.serializer === serializer)) { showNotification('Already selected for comparison.', 'info'); return; } - // Only add if a matching group exists under current filters + if (state.xlSelected.length >= MAX_COMPARE_COLUMNS) { + showNotification(`At most ${MAX_COMPARE_COLUMNS} serializers in Compare.`, 'info'); + return; + } const group = findCrossLangGroup(lang, serializer); if (!group) { - showNotification('No data for that serializer under the current Test Data / Mode.', 'error'); + showNotification('No data for that serializer under the current data type / mode.', 'error'); return; } state.xlSelectionMode = 'custom'; state.xlSelected = [...state.xlSelected, { lang, serializer }]; renderCrossLangSelection(); - renderCrossLangTable(); - updateCrossLangBadge(); + updateXlBaselineSelect(); + refreshCrossLangAddSerializerOptions(); + renderCompareMatrix(); + saveSettings(); + updateCompareStatusLine(); + }); + + document.getElementById('compare-xl-baseline-select')?.addEventListener('change', (e) => { + state.xlBaselineKey = e.target.value; saveSettings(); + renderCrossLangSelection(); + renderCompareMatrix(); }); - // Navigation Links for Smooth Scrolling - const navLinks = document.querySelectorAll('.nav-links a'); - navLinks.forEach(link => { + document.getElementById('btn-copy-roster-md')?.addEventListener('click', () => copyRosterMarkdown()); + document.getElementById('btn-copy-compare-md')?.addEventListener('click', () => copyCompareMarkdown()); + + // Nav smooth scroll + document.querySelectorAll('.nav-links a').forEach((link) => { link.addEventListener('click', (e) => { const href = link.getAttribute('href'); if (href && href.startsWith('#')) { e.preventDefault(); - // Remove active class - document.querySelectorAll('.nav-links li').forEach(li => li.classList.remove('active')); + document.querySelectorAll('.nav-links li').forEach((li) => li.classList.remove('active')); link.parentElement.classList.add('active'); - - const targetId = href.substring(1); - const targetElement = document.getElementById(targetId); - if (targetElement) { - targetElement.scrollIntoView({ behavior: 'smooth', block: 'start' }); - } + document.getElementById(href.slice(1))?.scrollIntoView({ behavior: 'smooth', block: 'start' }); + // close mobile nav + document.getElementById('main-nav')?.classList.remove('open'); + document.getElementById('nav-toggle')?.setAttribute('aria-expanded', 'false'); } }); }); - // Drag and Drop Upload Setup + // Upload const dropZone = document.getElementById('drop-zone'); const fileInput = document.getElementById('file-input'); - - dropZone.addEventListener('click', () => fileInput.click()); - fileInput.addEventListener('change', (e) => handleFileUpload(e.target.files[0])); - - ['dragenter', 'dragover'].forEach(eventName => { - dropZone.addEventListener(eventName, (e) => { + dropZone?.addEventListener('click', () => fileInput?.click()); + fileInput?.addEventListener('change', (e) => handleFileUpload(e.target.files[0])); + ['dragenter', 'dragover'].forEach((ev) => { + dropZone?.addEventListener(ev, (e) => { e.preventDefault(); dropZone.classList.add('dragover'); - }, false); + }); }); - - ['dragleave', 'drop'].forEach(eventName => { - dropZone.addEventListener(eventName, (e) => { + ['dragleave', 'drop'].forEach((ev) => { + dropZone?.addEventListener(ev, (e) => { e.preventDefault(); dropZone.classList.remove('dragover'); - }, false); - }); - - dropZone.addEventListener('drop', (e) => { - const dt = e.dataTransfer; - const files = dt.files; - handleFileUpload(files[0]); + }); }); - - // History Actions Setup - document.getElementById('history-run-select').addEventListener('change', (e) => { - const runId = e.target.value; - const disabled = !runId; - document.getElementById('download-csv-btn').disabled = disabled; - document.getElementById('download-config-btn').disabled = disabled; - document.getElementById('download-error-btn').disabled = disabled; - document.getElementById('load-history-btn').disabled = disabled; + dropZone?.addEventListener('drop', (e) => handleFileUpload(e.dataTransfer.files[0])); + + // History + document.getElementById('history-run-select')?.addEventListener('change', (e) => { + const disabled = !e.target.value || state.logsAvailable === false; + ['download-csv-btn', 'download-config-btn', 'download-error-btn', 'load-history-btn'].forEach( + (id) => { + const b = document.getElementById(id); + if (b) b.disabled = disabled; + } + ); }); - document.getElementById('download-csv-btn').addEventListener('click', () => { + document.getElementById('download-csv-btn')?.addEventListener('click', () => { const runId = document.getElementById('history-run-select').value; if (runId) { - triggerDownload(`/logs/${state.currentLanguage}/${runId}.csv`, `${state.currentLanguage}_${runId}.csv`); + triggerDownload( + logsUrl(`${state.currentLanguage}/${runId}.csv`), + `${state.currentLanguage}_${runId}.csv` + ); } }); - document.getElementById('download-config-btn').addEventListener('click', () => { + document.getElementById('download-config-btn')?.addEventListener('click', () => { const runId = document.getElementById('history-run-select').value; if (runId) { - const url = `/logs/${state.currentLanguage}/${runId}.configs.json`; - const fallbackUrl = `/logs/${state.currentLanguage}/${runId}.environment.json`; - downloadFileWithFallback(url, fallbackUrl, `${state.currentLanguage}_${runId}.configs.json`); + downloadFileWithFallback( + logsUrl(`${state.currentLanguage}/${runId}.configs.json`), + logsUrl(`${state.currentLanguage}/${runId}.environment.json`), + `${state.currentLanguage}_${runId}.configs.json` + ); } }); - document.getElementById('download-error-btn').addEventListener('click', () => { + document.getElementById('download-error-btn')?.addEventListener('click', () => { const runId = document.getElementById('history-run-select').value; if (runId) { - const url = `/logs/${state.currentLanguage}/${runId}.errors.csv`; - downloadFileWithFallback(url, null, `${state.currentLanguage}_${runId}.errors.csv`); + downloadFileWithFallback( + logsUrl(`${state.currentLanguage}/${runId}.errors.csv`), + null, + `${state.currentLanguage}_${runId}.errors.csv` + ); } }); - document.getElementById('load-history-btn').addEventListener('click', async () => { + document.getElementById('load-history-btn')?.addEventListener('click', async () => { const runId = document.getElementById('history-run-select').value; - if (runId) { - await loadHistoricalRunIntoDashboard(runId); - } + if (runId) await loadHistoricalRunIntoDashboard(runId); }); } -// Load available historical runs index +function logsUrl(path) { + // Relative to dashboard base (Vite base: './') + return `logs/${path}`; +} + +async function probeLogsAvailability() { + try { + // Try a lightweight probe against available_runs path sibling + const runs = state.historicalRuns[state.currentLanguage]; + if (!runs || !runs.length) { + state.logsAvailable = false; + } else { + const probe = await fetch(logsUrl(`${state.currentLanguage}/${runs[0]}.csv`), { + method: 'HEAD', + }); + state.logsAvailable = probe.ok; + } + } catch { + state.logsAvailable = false; + } + const localNote = document.getElementById('history-local-note'); + const pagesNote = document.getElementById('history-pages-note'); + if (localNote) localNote.hidden = state.logsAvailable === false; + if (pagesNote) pagesNote.hidden = state.logsAvailable !== false; + if (state.logsAvailable === false) { + ['download-csv-btn', 'download-config-btn', 'download-error-btn', 'load-history-btn'].forEach( + (id) => { + const b = document.getElementById(id); + if (b) b.disabled = true; + } + ); + } +} + async function loadHistoryList() { try { const response = await fetch('data/available_runs.json'); - if (!response.ok) throw new Error("Could not fetch available runs index"); + if (!response.ok) throw new Error('Could not fetch available runs index'); state.historicalRuns = await response.json(); } catch (e) { - console.error("History runs not indexable (or offline):", e); + console.error('History runs not indexable (or offline):', e); } } -// Populate the history dropdown for the current language function updateHistoryUIForLanguage() { const select = document.getElementById('history-run-select'); - select.innerHTML = ''; - + if (!select) return; + select.innerHTML = ''; const runs = state.historicalRuns[state.currentLanguage] || []; - runs.forEach(runId => { + runs.forEach((runId) => { const opt = document.createElement('option'); opt.value = runId; - opt.textContent = runId + (runId === state.currentRunId ? ' (Currently Active)' : ''); + opt.textContent = runId + (runId === state.currentRunId ? ' (currently active)' : ''); select.appendChild(opt); }); - - // Reset buttons select.value = ''; - document.getElementById('download-csv-btn').disabled = true; - document.getElementById('download-config-btn').disabled = true; - document.getElementById('download-error-btn').disabled = true; - document.getElementById('load-history-btn').disabled = true; + ['download-csv-btn', 'download-config-btn', 'download-error-btn', 'load-history-btn'].forEach( + (id) => { + const b = document.getElementById(id); + if (b) b.disabled = true; + } + ); +} + +/** + * Fetch JSON or gzip-JSON from a URL. + * @param {string} url + * @returns {Promise} + */ +async function fetchJsonMaybeGzip(url) { + const res = await fetch(url); + if (!res.ok) return null; + try { + return await res.clone().json(); + } catch { + const ds = new DecompressionStream('gzip'); + const text = await new Response(res.body.pipeThrough(ds)).text(); + return JSON.parse(text); + } +} + +/** + * Prefer standalone multi-policy stats (gzip first); fall back to embedded stats. + * @param {string} lang + * @param {object|null} gzStats + */ +async function loadStatsObjectForLanguage(lang, gzStats) { + const urls = [ + `data/stats_${lang}_latest.json.gz`, + `data/stats_${lang}_latest.json`, + ]; + for (const statsUrl of urls) { + try { + const obj = await fetchJsonMaybeGzip(statsUrl); + if (obj && (obj.groups_by_policy || obj.groups)) return obj; + } catch (e) { + console.warn(`Could not load ${statsUrl}:`, e); + } + } + return gzStats || { groups: [] }; } -// Load packed compressed run data (.json.gz) async function loadLanguageData(lang) { const url = `data/${lang}_latest.json.gz`; try { const response = await fetch(url); if (!response.ok) throw new Error(`Could not load stats for ${lang}`); - + let payload; - // Check if the response is already decompressed (e.g. Content-Encoding handled by browser) try { - const clonedResponse = response.clone(); - payload = await clonedResponse.json(); - } catch (e) { - // Fallback: manually decompress using DecompressionStream - try { - const ds = new DecompressionStream('gzip'); - const decompressedStream = response.body.pipeThrough(ds); - const text = await new Response(decompressedStream).text(); - payload = JSON.parse(text); - } catch (decompError) { - throw new Error(`Failed to parse or decompress payload: ${decompError.message}`); - } + payload = await response.clone().json(); + } catch { + const ds = new DecompressionStream('gzip'); + const text = await new Response(response.body.pipeThrough(ds)).text(); + payload = JSON.parse(text); } state.currentRunId = payload.run_id; - state.currentRunConfigs = payload.configs; - state.currentRunErrors = payload.errors; - state.currentRunCsv = payload.csv_data; + state.currentRunConfigs = payload.configs || {}; + state.currentRunErrors = payload.errors || ''; + state.currentRunCsv = payload.csv_data || ''; - processStatsData(payload.stats); + const statsObj = await loadStatsObjectForLanguage(lang, payload.stats); + processStatsData(statsObj); + updateRunMeta(); updateHistoryUIForLanguage(); } catch (error) { console.error(error); + // Last resort: stats-only file without gz package + try { + const statsObj = await loadStatsObjectForLanguage(lang, null); + if (statsObj.groups?.length || statsObj.groups_by_policy) { + processStatsData(statsObj); + updateRunMeta(); + updateHistoryUIForLanguage(); + return; + } + } catch (_) { + /* ignore */ + } showNotification(`Error loading ${lang} stats. Please run sync script first.`, 'error'); + setKpiEmpty('No data'); } } -// Load historical raw run dynamically into dashboard -async function loadHistoricalRunIntoDashboard(runId) { - const csvUrl = `/logs/${state.currentLanguage}/${runId}.csv`; - const configUrl = `/logs/${state.currentLanguage}/${runId}.configs.json`; - const fallbackConfigUrl = `/logs/${state.currentLanguage}/${runId}.environment.json`; +function formatHostMemory(mem) { + const bytes = mem?.total_bytes ?? mem?.total ?? null; + if (typeof bytes !== 'number' || !Number.isFinite(bytes) || bytes <= 0) return null; + const gib = bytes / (1024 ** 3); + if (gib >= 10) return `${Math.round(gib)} GiB RAM`; + return `${formatSig(gib, 3)} GiB RAM`; +} + +function updateRunMeta() { + const el = document.getElementById('run-meta'); + const text = document.getElementById('run-meta-text'); + if (!el || !text) return; + const cfg = state.currentRunConfigs || {}; + const env = cfg.environment || cfg; // packed env sometimes flat + const cpu = env.cpu || {}; + const mem = env.memory || {}; + const runtimes = env.runtimes || {}; + const dataset = cfg.dataset || {}; + const parts = []; + // Run id is the provenance key for this payload (not git commit — can disagree with other runs). + if (state.currentRunId) parts.push(`run ${state.currentRunId}`); + if (cpu.model) { + const cores = cpu.logical_cores || cpu.cpu_count; + parts.push(cores ? `${cpu.model} (${cores} threads)` : cpu.model); + } + const ram = formatHostMemory(mem); + if (ram) parts.push(ram); + const rtKey = + state.currentLanguage === 'csharp' + ? 'dotnet' + : state.currentLanguage === 'javascript' + ? 'node' + : state.currentLanguage === 'cpp' + ? 'g++' + : state.currentLanguage === 'c' + ? 'gcc' + : state.currentLanguage; + const rtLabel = + { + csharp: '.NET', + javascript: 'Node', + python: 'Python', + rust: 'rustc', + go: 'Go', + java: 'Java', + c: 'gcc', + cpp: 'g++', + swift: 'Swift', + }[state.currentLanguage] || 'runtime'; + if (runtimes[rtKey]) { + // Strip redundant product name if the version string already starts with it + let ver = String(runtimes[rtKey]).split('\n')[0].trim(); + ver = ver.replace(/^rustc\s+/i, '').replace(/^go\s+version\s+/i, 'go '); + parts.push(`${rtLabel} ${ver}`); + } + if (dataset.seed != null) parts.push(`seed ${dataset.seed}`); + if (parts.length) { + text.textContent = parts.join(' · '); + el.hidden = false; + } else { + el.hidden = true; + } +} - showNotification(`Loading historical run ${runId}...`, 'info'); +async function loadHistoricalRunIntoDashboard(runId) { + const csvUrl = logsUrl(`${state.currentLanguage}/${runId}.csv`); + const configUrl = logsUrl(`${state.currentLanguage}/${runId}.configs.json`); + const fallbackConfigUrl = logsUrl(`${state.currentLanguage}/${runId}.environment.json`); + showNotification(`Loading historical run ${runId}…`, 'info'); try { - // 1. Fetch CSV const csvRes = await fetch(csvUrl); if (!csvRes.ok) throw new Error(`Could not fetch raw CSV for run ${runId}`); const csvText = await csvRes.text(); - // 2. Fetch Config let configs = {}; try { let confRes = await fetch(configUrl); if (!confRes.ok) confRes = await fetch(fallbackConfigUrl); if (confRes.ok) configs = await confRes.json(); } catch (e) { - console.warn("Failed to load configs sidecar for history run:", e); + console.warn('Failed to load configs sidecar for history run:', e); } - // 3. Parse CSV and aggregate stats dynamically const records = parseCSV(csvText); const groups = aggregateCSVRecords(records); - - if (groups.length === 0) { - throw new Error("No valid serializer records found in parsed CSV."); - } + if (groups.length === 0) throw new Error('No valid serializer records found in parsed CSV.'); state.currentRunId = runId; state.currentRunConfigs = configs; state.currentRunCsv = csvText; - state.currentRunErrors = ''; // Cleared for historical local - - // Swap datasets + state.currentRunErrors = ''; processStatsData({ groups }); - - // Update active indicators - document.getElementById('history-run-select').value = runId; - document.getElementById('load-history-btn').disabled = false; - - showNotification(`Successfully loaded run ${runId} into Dashboard!`, 'success'); + updateRunMeta(); + showNotification(`Successfully loaded run ${runId}`, 'success'); } catch (error) { - console.error("Error loading historical run:", error); + console.error(error); showNotification(`Failed to load historical run: ${error.message}`, 'error'); } } -function processStatsData(statsObj) { - // Normalize groups to display fixture keys (type@n=N when batch axis present) - state.allGroups = (statsObj.groups || []).map((g) => ({ - ...g, - test_data: fixtureKey(g), - })); - - // Suite fixtures only in the data-type dropdown - const testDataOptions = [ - ...new Set( - state.allGroups - .map((g) => g.test_data) - .filter((k) => k && SUITE_TYPE_IDS.includes(baseTypeId(k))) - ), - ].sort(); - const modeOptions = [...new Set(state.allGroups.map(g => g.mode))]; +const GROUP_IDENTITY_KEYS = new Set([ + 'serializer', + 'test_data', + 'type_config_hash', + 'data_type_instance_count', + 'mode', + 'language', + 'serializer_version', + 'StreamMode', + 'variants', +]); - // Populate Dropdowns - populateSelect('data-select', testDataOptions); - populateSelect('mode-select', modeOptions); +/** + * Expand schema 2.2 identity+variants groups into flat per-policy rows. + * Merges catalog label/description into each filter block (export omits them). + * @param {object[]} slimGroups + * @param {Record} catalog + * @returns {Record} + */ +function expandVariantGroups(slimGroups, catalog) { + /** @type {Record} */ + const byPolicy = {}; + for (const g of slimGroups) { + const variants = g.variants; + if (!variants || typeof variants !== 'object') continue; + const identity = {}; + for (const [k, v] of Object.entries(g)) { + if (!GROUP_IDENTITY_KEYS.has(k) || k === 'variants') continue; + identity[k] = v; + } + // Always copy known identity fields even if null + for (const k of [ + 'serializer', + 'test_data', + 'type_config_hash', + 'data_type_instance_count', + 'mode', + 'language', + 'serializer_version', + ]) { + if (k in g) identity[k] = g[k]; + } + if (g.StreamMode != null) identity.StreamMode = g.StreamMode; + + for (const [pid, metrics] of Object.entries(variants)) { + if (!metrics || typeof metrics !== 'object') continue; + const cat = catalog[pid] || FILTER_POLICY_FALLBACK[pid] || {}; + const filter = { ...(metrics.filter || {}) }; + if (filter.label == null && cat.label) filter.label = cat.label; + if (filter.description == null && cat.description) filter.description = cat.description; + if (filter.policy == null) filter.policy = pid; + const row = { + ...identity, + ...metrics, + filter, + test_data: fixtureKey({ ...identity, ...metrics }), + }; + if (!byPolicy[pid]) byPolicy[pid] = []; + byPolicy[pid].push(row); + } + } + return byPolicy; +} - // Prefer saved filters when still valid - if (!testDataOptions.includes(state.currentTestData)) { - state.currentTestData = pickPreferredFixture(testDataOptions); +/** + * Normalize a stats export (schema 2.0 / 2.1 / 2.2) into groupsByPolicy. + * @param {object} statsObj + * @returns {{ groupsByPolicy: Record, defaultPolicy: string, catalog: object }} + */ +function normalizeStatsPayload(statsObj) { + const raw = statsObj || {}; + const catalog = { + ...FILTER_POLICY_FALLBACK, + ...(raw.filter_policies && typeof raw.filter_policies === 'object' + ? raw.filter_policies + : {}), + }; + const defaultPolicy = + typeof raw.default_filter_policy === 'string' && raw.default_filter_policy + ? raw.default_filter_policy + : DEFAULT_FILTER_POLICY; + + const mapGroups = (list) => + (Array.isArray(list) ? list : []).map((g) => ({ + ...g, + test_data: fixtureKey(g), + })); + + /** @type {Record} */ + let groupsByPolicy = {}; + + // Schema 2.2: identity once + variants + const rawGroups = Array.isArray(raw.groups) ? raw.groups : []; + const isSlimVariants = + rawGroups.length > 0 && + rawGroups.some((g) => g && typeof g === 'object' && g.variants && typeof g.variants === 'object'); + + if (isSlimVariants) { + groupsByPolicy = expandVariantGroups(rawGroups, catalog); + } else if (raw.groups_by_policy && typeof raw.groups_by_policy === 'object') { + // Schema 2.1 + for (const [pid, list] of Object.entries(raw.groups_by_policy)) { + groupsByPolicy[pid] = mapGroups(list); + } } - if (!modeOptions.includes(state.currentMode)) { - state.currentMode = modeOptions[0] || ''; + + // Schema 2.0 / fallback: flat groups = single policy + if (!Object.keys(groupsByPolicy).length && rawGroups.length) { + groupsByPolicy[defaultPolicy] = mapGroups(rawGroups); + } else if (rawGroups.length && !isSlimVariants && !groupsByPolicy[defaultPolicy]?.length) { + groupsByPolicy[defaultPolicy] = mapGroups(rawGroups); } - document.getElementById('data-select').value = state.currentTestData; - document.getElementById('mode-select').value = state.currentMode; + return { groupsByPolicy, defaultPolicy, catalog }; +} - state.availableMetrics = discoverMetricKeys(state.allGroups); - // Keep only selected metrics that still exist; if none left, fall back to defaults - state.selectedMetrics = state.selectedMetrics.filter((k) => - state.availableMetrics.includes(k) - ); - if (state.selectedMetrics.length === 0) { - state.selectedMetrics = DEFAULT_SELECTED_METRICS.filter((k) => - state.availableMetrics.includes(k) - ); - if (state.selectedMetrics.length === 0) { - state.selectedMetrics = state.availableMetrics.slice(0, 12); - } +function processStatsData(statsObj) { + const { groupsByPolicy, defaultPolicy, catalog } = normalizeStatsPayload(statsObj); + state.groupsByPolicy = groupsByPolicy; + state.defaultFilterPolicy = defaultPolicy; + state.filterPolicies = catalog; + + // Keep selection if still available; else fall back to export default + const available = Object.keys(groupsByPolicy); + if (!available.includes(state.filterPolicy)) { + state.filterPolicy = available.includes(defaultPolicy) + ? defaultPolicy + : available[0] || DEFAULT_FILTER_POLICY; } - renderMetricsChecklist(); + applyFilterPolicyToAllGroups({ refreshSelectors: true }); + populateFilterPolicySelect(); + syncLanguageSelects(); + syncFixtureModeSelects(); + discoverMetricKeys(state.allGroups); filterAndRefresh(); - saveSettings(); } -function discoverMetricKeys(groups) { - const keys = new Set(); - for (const g of groups) { - if (!g || typeof g !== 'object') continue; - for (const k of Object.keys(g)) { - if (!GROUP_META_KEYS.has(k)) keys.add(k); +/** Bind state.allGroups from the active filter policy. */ +function applyFilterPolicyToAllGroups({ refreshSelectors = false } = {}) { + const pid = state.filterPolicy; + const groups = + state.groupsByPolicy[pid] || + state.groupsByPolicy[state.defaultFilterPolicy] || + state.groupsByPolicy[DEFAULT_FILTER_POLICY] || + []; + state.allGroups = groups; + + if (refreshSelectors) { + const discovered = discoverFixtureOptions(state.allGroups); + const testDataOptions = discovered.all; + const modeOptions = [...new Set(state.allGroups.map((g) => g.mode))]; + + populateFixtureSelect(testDataOptions); + populateFixtureSelect(testDataOptions, { + selectId: 'same-data-select', + previous: state.currentTestData, + }); + populateSelect('mode-select', modeOptions); + populateSelect('same-mode-select', modeOptions); + + if (!testDataOptions.includes(state.currentTestData)) { + state.currentTestData = + pickPreferredFixture(discovered.natural) || testDataOptions[0] || ''; + } + if (!modeOptions.includes(state.currentMode)) { + state.currentMode = modeOptions[0] || ''; } } - return [...keys].sort((a, b) => a.localeCompare(b)); } -function populateSelect(id, options) { - const select = document.getElementById(id); - select.innerHTML = ''; - options.forEach(opt => { - const el = document.createElement('option'); - el.value = opt; - el.textContent = opt; - select.appendChild(el); - }); -} +function populateFilterPolicySelect() { + const sel = document.getElementById('filter-policy-select'); + if (!sel) return; + const available = FILTER_POLICY_ORDER.filter((id) => state.groupsByPolicy[id]?.length); + const extras = Object.keys(state.groupsByPolicy).filter((id) => !available.includes(id)); + const ids = available.length ? [...available, ...extras] : Object.keys(state.groupsByPolicy); -// Filter dataset based on selected test_data & mode -function filterAndRefresh() { - state.filteredGroups = state.allGroups.filter(g => - g.test_data === state.currentTestData && g.mode === state.currentMode - ); + sel.innerHTML = ''; + if (!ids.length) { + const opt = document.createElement('option'); + opt.value = DEFAULT_FILTER_POLICY; + opt.textContent = FILTER_POLICY_FALLBACK[DEFAULT_FILTER_POLICY]?.label || DEFAULT_FILTER_POLICY; + sel.appendChild(opt); + sel.disabled = true; + return; + } + sel.disabled = ids.length <= 1; + for (const id of ids) { + const meta = state.filterPolicies[id] || FILTER_POLICY_FALLBACK[id] || { label: id }; + const opt = document.createElement('option'); + opt.value = id; + opt.textContent = meta.label || id; + sel.appendChild(opt); + } + if (ids.includes(state.filterPolicy)) sel.value = state.filterPolicy; + else { + state.filterPolicy = ids[0]; + sel.value = ids[0]; + } +} - // Re-calculate Pareto frontier dynamically - calculateParetoFrontier(); +function setFilterPolicy(policyId) { + if (!policyId) return; + if (!(policyId in state.groupsByPolicy)) { + showNotification(`Sample policy “${policyId}” not in this export.`, 'error'); + return; + } + state.filterPolicy = policyId; + applyFilterPolicyToAllGroups({ refreshSelectors: false }); + discoverMetricKeys(state.allGroups); + if (state.crossLangLoaded) { + rebuildCrossLangForPolicy(); + } + filterAndRefresh(); + if (state.compareScope === 'cross') { + renderCrossLangSelection(); + renderCompareMatrix(); + } +} - // Populate comparison pickers - state.serializerNames = state.filteredGroups.map(g => g.serializer).sort(); - populateCompareSelectors(); - populateDetailSerializerSelect(); +function updateFilterPolicyMeta() { + const el = document.getElementById('filter-policy-meta'); + const text = document.getElementById('filter-policy-meta-text'); + if (!el || !text) return; + + const pid = state.filterPolicy; + const catalog = state.filterPolicies[pid] || FILTER_POLICY_FALLBACK[pid] || {}; + const sample = state.filteredGroups[0] || state.allGroups[0]; + const f = sample?.filter || {}; + + const removed = state.filteredGroups.length + ? state.filteredGroups.reduce((a, g) => a + (Number(g.outliers_removed) || 0), 0) + : state.allGroups.reduce((a, g) => a + (Number(g.outliers_removed) || 0), 0); + const clipped = state.filteredGroups.length + ? state.filteredGroups.reduce((a, g) => a + (Number(g.values_clipped) || 0), 0) + : state.allGroups.reduce((a, g) => a + (Number(g.values_clipped) || 0), 0); + const kept = state.filteredGroups.length + ? state.filteredGroups.reduce((a, g) => a + (Number(g.runs) || 0), 0) + : null; + + const criteriaBits = []; + const method = f.method || catalog.outlier_method; + if (method) criteriaBits.push(`method=${method}`); + if (f.iqr_k != null || catalog.iqr_k != null) { + criteriaBits.push(`k=${f.iqr_k ?? catalog.iqr_k}`); + } + if (f.winsorize_percentiles || catalog.winsorize_percentiles) { + const w = f.winsorize_percentiles || catalog.winsorize_percentiles; + criteriaBits.push(`clip=${Array.isArray(w) ? w.join('–') : w}%`); + } + if (f.paired === true || catalog.paired === true) criteriaBits.push('paired ser/deser/total'); + if (f.exclude_warmup !== false && catalog.exclude_warmup !== false) { + criteriaBits.push('warmup excluded'); + } + if (f.min_samples_for_outlier_filter != null || catalog.min_samples_for_outlier_filter != null) { + criteriaBits.push( + `min_n=${f.min_samples_for_outlier_filter ?? catalog.min_samples_for_outlier_filter}` + ); + } + if (f.fence_total_low_ns != null && f.fence_total_high_ns != null && sample) { + criteriaBits.push( + `e.g. total fences [${formatTimeCompact(f.fence_total_low_ns)}, ${formatTimeCompact(f.fence_total_high_ns)}] on ${sample.serializer}` + ); + } - // Update summary widgets - updateKPIs(); + const statsBits = []; + if (kept != null) statsBits.push(`${formatIntGrouped(kept)} trials kept (current data type)`); + if (removed > 0) statsBits.push(`${formatIntGrouped(removed)} reps removed (sum over rows)`); + if (clipped > 0) statsBits.push(`${formatIntGrouped(clipped)} reps clipped (winsorize, sum)`); - // Render visualizations - updateCharts(state.filteredGroups, state.paretoSerializerNames, state.displayMetric); + const desc = catalog.description || f.description || ''; + text.innerHTML = + `Samples: ${catalog.label || pid}` + + (desc ? ` — ${desc}` : '') + + (criteriaBits.length + ? `
Criteria: ${criteriaBits.join(' · ')}` + : '') + + (statsBits.length + ? `
This view: ${statsBits.join(' · ')}` + : ''); + el.hidden = false; +} - // Render Table - renderTable(); +function discoverMetricKeys(groups) { + const keys = new Set(); + for (const g of groups) { + for (const k of Object.keys(g)) { + if (GROUP_META_KEYS.has(k) || k === 'data_type_instance_count') continue; + if (typeof g[k] === 'object' && g[k] !== null) continue; // skip filter blocks etc. + keys.add(k); + } + } + state.availableMetrics = [...keys].sort(); + // Keep selected intersection; fill defaults if empty + state.selectedMetrics = state.selectedMetrics.filter((k) => state.availableMetrics.includes(k)); + if (!state.selectedMetrics.length) { + state.selectedMetrics = DEFAULT_SELECTED_METRICS.filter((k) => + state.availableMetrics.includes(k) + ); + } +} + +function populateSelect(id, options) { + const sel = document.getElementById(id); + if (!sel) return; + const prev = sel.value; + sel.innerHTML = ''; + options.forEach((o) => { + const opt = document.createElement('option'); + opt.value = o; + opt.textContent = o; + sel.appendChild(opt); + }); + if (options.includes(prev)) sel.value = prev; +} + +/** + * Test Data select with grouped synthetic data-type labels. + * @param {string[]} options + * @param {{ selectId?: string, previous?: string }} [cfg] + */ +function populateFixtureSelect(options, cfg = {}) { + const selectId = cfg.selectId || 'data-select'; + const sel = document.getElementById(selectId); + if (!sel) return; + const prev = cfg.previous != null ? cfg.previous : sel.value || state.currentTestData; + sel.innerHTML = ''; + + const natural = options.filter((o) => parseFixtureSelection(o).kind === 'natural'); + const batchCompound = options.filter((o) => parseFixtureSelection(o).kind === 'batch_compound'); + const allTypes = options.filter((o) => parseFixtureSelection(o).kind === 'all_n'); + const allAll = options.filter((o) => parseFixtureSelection(o).kind === 'all_all'); + + const addOpt = (o) => { + const opt = document.createElement('option'); + opt.value = o; + opt.textContent = fixtureOptionLabel(o); + sel.appendChild(opt); + }; + const addSep = (label) => { + const sep = document.createElement('option'); + sep.disabled = true; + sep.textContent = label; + sel.appendChild(sep); + }; + + natural.forEach(addOpt); + if (batchCompound.length) { + addSep('── compounded batch ──'); + batchCompound.forEach(addOpt); + } + if (allTypes.length) { + addSep('── compounded data types ──'); + allTypes.forEach(addOpt); + } + if (allAll.length) { + addSep('── compounded all ──'); + allAll.forEach(addOpt); + } + + if ([...sel.options].some((o) => o.value === prev)) { + sel.value = prev; + } else if (sel.options.length) { + const first = [...sel.options].find((o) => !o.disabled && o.value); + if (first) sel.value = first.value; + } +} + +/** + * Docs Summary aggregation (reports._scientific_summary_md intent): + * - Prefer bytes/string mode when present for a serializer (else keep all modes). + * - Restrict to suite data-type base ids (message, document, …). + * - One value per field: arithmetic mean across remaining groups; + * `runs` is summed; non-numeric: first non-empty (e.g. serializer_version). + * - `total_median_ns` falls back to `avg_time_total_ns` when missing. + */ + +/** Instance count from group (column or @n= suffix). */ +function instanceCount(g) { + let n = g?.data_type_instance_count; + if (n != null && n !== '') { + const num = Number(n); + if (Number.isFinite(num) && num > 0) return num; + } + const m = String(g?.test_data ?? '').match(/@n=(\d+)/i); + return m ? Number(m[1]) : null; +} - // Update Side-by-side comparison - updateComparison(); +/** + * Data-type selection kinds: + * - natural: message@n=1 + * - batch_compound: message@n=1+100 (same type, two batch sizes) + * - all_n: all@1 / all@100 (all suite types at fixed n) + * - all_all: all@all (all suite types × all n) + */ +function parseFixtureSelection(key) { + const s = String(key || '').trim(); + if (!s) return { kind: 'natural', key: s }; + if (s === 'all@all') return { kind: 'all_all', key: s }; + let m = s.match(/^all@n=(\d+)$/i) || s.match(/^all@(\d+)$/i); + if (m) return { kind: 'all_n', key: s, n: Number(m[1]) }; + m = s.match(/^(.+)@n=(\d+)\+(\d+)$/i); + if (m) { + return { + kind: 'batch_compound', + key: s, + base: m[1], + nA: Number(m[2]), + nB: Number(m[3]), + }; + } + return { kind: 'natural', key: s }; +} - // Single-serializer metrics table - renderSerializerMetricsTable(); +/** @deprecated use parseFixtureSelection; kept for call sites that only need batch compound */ +function parseCompoundFixture(key) { + const p = parseFixtureSelection(key); + if (p.kind === 'batch_compound') return { base: p.base, nA: p.nA, nB: p.nB }; + return null; +} + +function compoundFixtureKey(base, nA, nB) { + const a = Math.min(nA, nB); + const b = Math.max(nA, nB); + return `${base}@n=${a}+${b}`; +} +function isSyntheticFixture(key) { + const k = parseFixtureSelection(key).kind; + return k === 'batch_compound' || k === 'all_n' || k === 'all_all'; +} + +function isCompoundFixture(key) { + return isSyntheticFixture(key); +} + +/** + * Average numeric fields across a list of groups (same serializer). + * runs: sum; total_median_ns falls back to avg_time_total_ns. + */ +function averageGroupsForSerializer(serializer, entries, meta) { + const row = { + serializer, + test_data: meta.test_data, + mode: meta.mode, + language: entries[0]?.language || state.currentLanguage, + compounded: !!meta.compounded, + compound_parts: meta.compound_parts || null, + }; + let version = ''; + for (const e of entries) { + if (e.serializer_version) { + version = String(e.serializer_version).trim(); + break; + } + } + if (version) row.serializer_version = version; + + const numericKeys = new Set(); + for (const e of entries) { + for (const [k, v] of Object.entries(e)) { + if (GROUP_META_KEYS.has(k) || k === 'data_type_instance_count') continue; + if (typeof v === 'number' && Number.isFinite(v)) numericKeys.add(k); + } + } + for (const key of numericKeys) { + const vals = []; + for (const e of entries) { + let v = e[key]; + if ((v === null || v === undefined) && key === 'total_median_ns') { + v = e.avg_time_total_ns; + } + if (typeof v === 'number' && Number.isFinite(v)) vals.push(v); + } + if (!vals.length) continue; + row[key] = + key === 'runs' || + key === 'runs_raw' || + key === 'outliers_removed' || + key === 'values_clipped' || + key === 'warmup_skipped' + ? vals.reduce((a, b) => a + b, 0) + : vals.reduce((a, b) => a + b, 0) / vals.length; + } + if (row.avg_time_total_ns == null && row.total_median_ns != null) { + row.avg_time_total_ns = row.total_median_ns; + } + if (row.avg_ops_per_sec == null && row.avg_time_total_ns > 0) { + row.avg_ops_per_sec = 1e9 / row.avg_time_total_ns; + } + return row; +} + +/** + * Build compounded rows: for each serializer, mean of n=A and n=B groups + * for the same base type + mode. + */ +function buildCompoundedFixtureGroups(allGroups, base, nA, nB, mode) { + const want = new Set([nA, nB]); + const matched = (allGroups || []).filter((g) => { + if (baseTypeId(g.test_data) !== base) return false; + if (String(g.mode) !== String(mode)) return false; + const n = instanceCount(g); + return n != null && want.has(n); + }); + + const bySer = new Map(); + for (const g of matched) { + if (!bySer.has(g.serializer)) bySer.set(g.serializer, []); + bySer.get(g.serializer).push(g); + } + + const test_data = compoundFixtureKey(base, nA, nB); + const out = []; + for (const [serializer, entries] of bySer) { + // Prefer serializers that have both batch sizes + const ns = new Set(entries.map(instanceCount).filter((x) => x != null)); + if (!ns.has(nA) || !ns.has(nB)) continue; + // One group per n (if duplicates, average those first) + const perN = new Map(); + for (const e of entries) { + const n = instanceCount(e); + if (!perN.has(n)) perN.set(n, []); + perN.get(n).push(e); + } + const parts = []; + for (const n of [nA, nB]) { + const list = perN.get(n) || []; + if (list.length === 1) parts.push(list[0]); + else if (list.length > 1) { + parts.push( + averageGroupsForSerializer(serializer, list, { + test_data: `${base}@n=${n}`, + mode, + compounded: false, + }) + ); + } + } + if (parts.length < 2) continue; + out.push( + averageGroupsForSerializer(serializer, parts, { + test_data, + mode, + compounded: true, + compound_parts: `${base}@n=${nA} + ${base}@n=${nB}`, + }) + ); + } + return out.sort((a, b) => a.serializer.localeCompare(b.serializer)); +} + +/** + * all@1 / all@100: mean across all suite data types at a fixed instance count. + * One contribution per base type (if multiple rows, pre-averaged). + */ +function buildAllTypesAtNGroups(allGroups, n, mode) { + const matched = (allGroups || []).filter((g) => { + if (!SUITE_TYPE_IDS.includes(baseTypeId(g.test_data))) return false; + if (String(g.mode) !== String(mode)) return false; + return instanceCount(g) === n; + }); + + const bySer = new Map(); + for (const g of matched) { + if (!bySer.has(g.serializer)) bySer.set(g.serializer, []); + bySer.get(g.serializer).push(g); + } + + const test_data = `all@${n}`; + const out = []; + for (const [serializer, entries] of bySer) { + // One value per base type, then mean across types + const byBase = new Map(); + for (const e of entries) { + const base = baseTypeId(e.test_data); + if (!byBase.has(base)) byBase.set(base, []); + byBase.get(base).push(e); + } + const parts = []; + const bases = []; + for (const base of SUITE_TYPE_IDS) { + const list = byBase.get(base); + if (!list || !list.length) continue; + bases.push(`${base}@n=${n}`); + if (list.length === 1) parts.push(list[0]); + else { + parts.push( + averageGroupsForSerializer(serializer, list, { + test_data: `${base}@n=${n}`, + mode, + compounded: false, + }) + ); + } + } + if (parts.length < 1) continue; + out.push( + averageGroupsForSerializer(serializer, parts, { + test_data, + mode, + compounded: true, + compound_parts: bases.join(' + '), + }) + ); + } + return out.sort((a, b) => a.serializer.localeCompare(b.serializer)); +} + +/** + * all@all: mean across all suite types and all batch sizes (current mode). + * Collapse to one row per (base, n) then average those cells. + */ +function buildAllAllGroups(allGroups, mode) { + const matched = (allGroups || []).filter((g) => { + if (!SUITE_TYPE_IDS.includes(baseTypeId(g.test_data))) return false; + return String(g.mode) === String(mode); + }); + + const bySer = new Map(); + for (const g of matched) { + if (!bySer.has(g.serializer)) bySer.set(g.serializer, []); + bySer.get(g.serializer).push(g); + } + + const out = []; + for (const [serializer, entries] of bySer) { + const byCell = new Map(); // base@n -> groups + for (const e of entries) { + const n = instanceCount(e); + const base = baseTypeId(e.test_data); + if (n == null) continue; + const cell = `${base}@n=${n}`; + if (!byCell.has(cell)) byCell.set(cell, []); + byCell.get(cell).push(e); + } + const parts = []; + const cells = [...byCell.keys()].sort(); + for (const cell of cells) { + const list = byCell.get(cell); + if (list.length === 1) parts.push(list[0]); + else { + parts.push( + averageGroupsForSerializer(serializer, list, { + test_data: cell, + mode, + compounded: false, + }) + ); + } + } + if (parts.length < 1) continue; + out.push( + averageGroupsForSerializer(serializer, parts, { + test_data: 'all@all', + mode, + compounded: true, + compound_parts: cells.join(' + '), + }) + ); + } + return out.sort((a, b) => a.serializer.localeCompare(b.serializer)); +} + +/** Natural + synthetic data-type keys for the Test Data dropdown. */ +function discoverFixtureOptions(allGroups) { + const natural = [ + ...new Set( + (allGroups || []) + .map((g) => g.test_data) + .filter((k) => k && SUITE_TYPE_IDS.includes(baseTypeId(k))) + ), + ].sort(); + + const byBase = new Map(); + const nsGlobal = new Set(); + for (const g of allGroups || []) { + const base = baseTypeId(g.test_data); + if (!SUITE_TYPE_IDS.includes(base)) continue; + const n = instanceCount(g); + if (n == null) continue; + if (!byBase.has(base)) byBase.set(base, new Set()); + byBase.get(base).add(n); + nsGlobal.add(n); + } + + // Per-type batch compounds: message@n=1+100, … + const batchCompound = []; + for (const [base, ns] of byBase) { + if (ns.has(1) && ns.has(100)) { + batchCompound.push(compoundFixtureKey(base, 1, 100)); + } + } + batchCompound.sort(); + + // Cross-type at fixed n + const allTypes = []; + if (nsGlobal.has(1)) allTypes.push('all@1'); + if (nsGlobal.has(100)) allTypes.push('all@100'); + + // Everything + const allAll = natural.length ? ['all@all'] : []; + + return { + natural, + batchCompound, + allTypes, + allAll, + all: [...natural, ...batchCompound, ...allTypes, ...allAll], + }; +} + +function fixtureOptionLabel(key) { + const p = parseFixtureSelection(key); + if (p.kind === 'batch_compound') { + return `${p.base}@n=${p.nA}+${p.nB} (compounded batch)`; + } + if (p.kind === 'all_n') { + return `all@${p.n} (all data types, n=${p.n})`; + } + if (p.kind === 'all_all') { + return 'all@all (all types × all n)'; + } + return key; +} + +function resolveFixtureGroups() { + const sel = parseFixtureSelection(state.currentTestData); + const mode = state.currentMode; + if (sel.kind === 'batch_compound') { + return buildCompoundedFixtureGroups( + state.allGroups, + sel.base, + sel.nA, + sel.nB, + mode + ); + } + if (sel.kind === 'all_n') { + return buildAllTypesAtNGroups(state.allGroups, sel.n, mode); + } + if (sel.kind === 'all_all') { + return buildAllAllGroups(state.allGroups, mode); + } + return state.allGroups.filter( + (g) => g.test_data === state.currentTestData && g.mode === mode + ); +} + +function filterAndRefresh() { + state.filteredGroups = resolveFixtureGroups(); + + state.serializerNames = [ + ...new Set(state.filteredGroups.map((g) => g.serializer)), + ].sort((a, b) => a.localeCompare(b)); + + calculateParetoFrontier(); + + // Baseline default + if (!state.compareBaseline || !state.serializerNames.includes(state.compareBaseline)) { + state.compareBaseline = + state.paretoSerializerNames[0] || state.serializerNames[0] || ''; + } + + // Detail serializers default: baseline + a few others (capped) + state.detailSerializers = state.detailSerializers.filter((s) => + state.serializerNames.includes(s) + ); + if (!state.detailSerializers.length) { + const seed = state.paretoSerializerNames.length + ? state.paretoSerializerNames + : state.serializerNames; + state.detailSerializers = seed.slice(0, Math.min(6, seed.length)); + } + if (state.compareBaseline && !state.detailSerializers.includes(state.compareBaseline)) { + state.detailSerializers = [state.compareBaseline, ...state.detailSerializers].slice( + 0, + MAX_COMPARE_COLUMNS + ); + } + + updateKPIs(); + updateFilterPolicyMeta(); + populateBaselineSelect(); + populateSameSerAddSelect(); + renderSameSelectionChips(); + renderMetricsChecklist(); + renderTable(); + renderCompareMatrix(); + updateCharts(state.filteredGroups, state.paretoSerializerNames, state.displayMetric); + updateSortIndicators(); + updateCompareStatusLine(); saveSettings(); } function setViewMetric(metric) { state.displayMetric = metric; - - // Update Active Button Style - document.getElementById('btn-ops-sec').classList.toggle('active', metric === 'ops'); - document.getElementById('btn-time-ns').classList.toggle('active', metric === 'time'); - - // Redraw charts & table + document.getElementById('btn-ops-sec')?.classList.toggle('active', metric === 'ops'); + document.getElementById('btn-time-ns')?.classList.toggle('active', metric === 'time'); + updateRankSortPrimaryLabel(); + saveSettings(); updateCharts(state.filteredGroups, state.paretoSerializerNames, state.displayMetric); +} + +function setRosterMetric(metric) { + state.rosterMetric = metric === 'time' ? 'time' : 'ops'; + document.getElementById('btn-roster-ops')?.classList.toggle('active', state.rosterMetric === 'ops'); + document.getElementById('btn-roster-latency')?.classList.toggle('active', state.rosterMetric === 'time'); + // Reset sort to primary column of the active view + const opsKeys = new Set(['ops_median', 'ops_std', 'ops_p95', 'ops_p99']); + const latKeys = new Set(['total_median_ns', 'total_std_ns', 'total_p95_ns', 'total_p99_ns']); + if (state.rosterMetric === 'ops' && latKeys.has(state.sortKey)) { + state.sortKey = 'ops_median'; + state.sortDirection = 'desc'; + } else if (state.rosterMetric === 'time' && opsKeys.has(state.sortKey)) { + state.sortKey = 'total_median_ns'; + state.sortDirection = 'asc'; + } saveSettings(); + renderTable(); } -// Pareto Frontier Calculation (minimize latency + size) -function isParetoDominated(g, groups) { - const gTime = g.avg_time_total_ns; - const gSize = g.median_size_bytes; - if (gTime == null || gSize == null) return true; +/** + * Ops stats derived from trial latencies when direct ops percentiles are absent. + * (ops ≈ 1e9 / total_ns; percentile of ops inverts latency percentiles.) + */ +function invNsToOps(ns) { + if (typeof ns !== 'number' || !Number.isFinite(ns) || ns <= 0) return null; + return 1e9 / ns; +} + +/** Attach ops_median / ops_std / ops_p95 / ops_p99 for roster display & sort. */ +function withOpsDerivedStats(g) { + if (!g) return g; + const medianNs = g.total_median_ns ?? g.total_p50_ns ?? g.avg_time_total_ns; + const meanNs = g.total_mean_ns ?? g.avg_time_total_ns; + const stdNs = g.total_std_ns; + // High throughput percentiles ↔ low latency percentiles + const p95Ops = invNsToOps(g.total_p5_ns); + const p99Ops = invNsToOps(g.total_min_ns ?? g.total_p5_ns); + let opsStd = null; + if ( + typeof meanNs === 'number' && + meanNs > 0 && + typeof stdNs === 'number' && + Number.isFinite(stdNs) + ) { + // Delta method: sd(1e9/T) ≈ 1e9 * sd(T) / E[T]^2 + opsStd = (1e9 * stdNs) / (meanNs * meanNs); + } + return { + ...g, + ops_median: invNsToOps(medianNs) ?? g.avg_ops_per_sec ?? null, + ops_std: opsStd, + ops_p95: p95Ops ?? g.max_ops_per_sec ?? null, + ops_p99: p99Ops ?? g.max_ops_per_sec ?? null, + }; +} + +/** Roster columns for Detailed Analytics (local Ops/s | Latency switch). */ +function rosterMetricKeys() { + if (state.rosterMetric === 'time') { + return [ + { key: 'total_median_ns', higherIsBetter: false, label: 'Median' }, + { key: 'total_std_ns', higherIsBetter: false, label: 'Std' }, + { key: 'total_p95_ns', higherIsBetter: false, label: 'P95' }, + { key: 'total_p99_ns', higherIsBetter: false, label: 'P99' }, + { key: 'median_size_bytes', higherIsBetter: false, label: 'Median size' }, + ]; + } + return [ + { key: 'ops_median', higherIsBetter: true, label: 'Median' }, + { key: 'ops_std', higherIsBetter: false, label: 'Std' }, + { key: 'ops_p95', higherIsBetter: true, label: 'P95' }, + { key: 'ops_p99', higherIsBetter: true, label: 'P99' }, + { key: 'median_size_bytes', higherIsBetter: false, label: 'Median size' }, + ]; +} + +function formatRosterCell(key, value, scales) { + if (value === null || value === undefined) return '—'; + if (key.startsWith('ops_') || key === 'avg_ops_per_sec') { + return formatOpsCell(value, scales.ops); + } + return formatMetricCell(key, value, scales); +} - for (const other of groups) { - if (other === g) continue; - const otherTime = other.avg_time_total_ns; - const otherSize = other.median_size_bytes; - if (otherTime == null || otherSize == null) continue; +/** + * Detailed Analytics cell policy: + * - Median (ops/latency) & size → absolute + ×base (vs baseline same column) + * - Std / P95 / P99 → absolute + ×med (vs that row’s own median) + */ +function formatRosterRelativeCell(row, key, higherIsBetter, scales, baselineGroup, isBaseline) { + const v = row[key]; + const ownMedian = + key.startsWith('ops_') + ? row.ops_median + : key.startsWith('total_') + ? row.total_median_ns ?? row.total_p50_ns + : null; + + // Shape stats: ratio to own median + const vsOwnMed = + key === 'ops_std' || + key === 'ops_p95' || + key === 'ops_p99' || + key === 'total_std_ns' || + key === 'total_p95_ns' || + key === 'total_p99_ns'; + + if (vsOwnMed) { + // ×med is distribution shape (tail/spread vs typical), not better/worse vs baseline. + // Never green/red these: P95/P99 are almost always > median, so coloring was nonsense. if ( - (otherTime <= gTime && otherSize < gSize) || - (otherTime < gTime && otherSize <= gSize) + ownMedian == null || + typeof ownMedian !== 'number' || + !Number.isFinite(ownMedian) || + ownMedian === 0 ) { - return true; + return { + text: formatRosterCell(key, v, scales), + className: 'num' + (isBaseline ? ' baseline-col' : ''), + }; } + const rel = formatRelativeCell(v, ownMedian, null, scales, key, 'med'); + return { + text: rel.text, + className: 'num rel-neutral' + (isBaseline ? ' baseline-col' : ''), + }; + } + + // Median & size only: vs baseline (green = better, red = worse) + if (isBaseline || !baselineGroup) { + return { + text: formatRosterCell(key, v, scales), + className: 'num' + (isBaseline ? ' baseline-col' : ''), + }; + } + const baseVal = baselineGroup[key]; + if (baseVal == null || typeof baseVal !== 'number' || !Number.isFinite(baseVal)) { + return { text: formatRosterCell(key, v, scales), className: 'num' }; } - return false; + // Equal within ~1%: treat as neutral (avoid noisy green/red on ties) + const ratio = v / baseVal; + if (Math.abs(ratio - 1) < 0.01) { + return { + text: formatRelativeCell(v, baseVal, null, scales, key, 'base').text, + className: 'num rel-neutral', + }; + } + return formatRelativeCell(v, baseVal, higherIsBetter, scales, key, 'base'); +} + +function isParetoDominated(g, groups) { + const gOps = g.avg_ops_per_sec; + const gSize = g.median_size_bytes; + if (gOps == null || gSize == null) return true; + return groups.some((other) => { + if (other === g) return false; + const oOps = other.avg_ops_per_sec; + const oSize = other.median_size_bytes; + if (oOps == null || oSize == null) return false; + const betterOrEqualOps = oOps >= gOps; + const betterOrEqualSize = oSize <= gSize; + const strictlyBetter = oOps > gOps || oSize < gSize; + return betterOrEqualOps && betterOrEqualSize && strictlyBetter; + }); } function paretoOptimalGroups(groups) { @@ -787,169 +2163,200 @@ function paretoOptimalGroups(groups) { } function calculateParetoFrontier() { - state.paretoSerializerNames = paretoOptimalGroups(state.filteredGroups).map( - (g) => g.serializer - ); + state.paretoSerializerNames = paretoOptimalGroups(state.filteredGroups).map((g) => g.serializer); } -// ---------- Cross-language comparison ---------- - -function languageLabel(langId) { - return LANGUAGE_CATALOG.find((l) => l.id === langId)?.label || langId; -} +// ---------- Cross-language ---------- -/** Normalize mode labels across languages (bytes/string vs stream/Stream). */ function normalizeMode(mode) { - const s = String(mode || '').toLowerCase(); - if (s === 'stream') return 'stream'; - if (s === 'bytes' || s === 'string' || s === 'buffer') return 'bytes'; - return s; + const m = String(mode || '').toLowerCase(); + if (m === 'string' || m === 'bytes' || m === 'byte') return 'bytes'; + if (m === 'stream') return 'stream'; + return m; } function modeDisplayLabel(norm) { - if (norm === 'bytes') return 'bytes (buffer)'; + if (norm === 'bytes') return 'bytes / string'; if (norm === 'stream') return 'stream'; - return norm; + return norm || '—'; } -async function fetchStatsGroups(langId) { - // Prefer plain JSON (no gzip edge cases); fall back to packed gz used by main dash. - const urls = [`data/stats_${langId}_latest.json`, `data/${langId}_latest.json.gz`]; +/** + * Load multi-policy groups for one language (cross-lang compare). + * @returns {Promise>} policy → groups + */ +async function fetchStatsGroupsByPolicy(langId) { + const urls = [ + `data/stats_${langId}_latest.json.gz`, + `data/stats_${langId}_latest.json`, + `data/${langId}_latest.json.gz`, + ]; for (const url of urls) { try { - const response = await fetch(url); - if (!response.ok) continue; - - let payload; - try { - payload = await response.clone().json(); - } catch { - const ds = new DecompressionStream('gzip'); - const text = await new Response(response.body.pipeThrough(ds)).text(); - payload = JSON.parse(text); + const payload = await fetchJsonMaybeGzip(url); + if (!payload) continue; + // standalone stats file vs language pack with embedded .stats + const statsObj = + payload.groups || payload.groups_by_policy || payload.default_filter_policy + ? payload + : payload.stats || payload; + const { groupsByPolicy, defaultPolicy } = normalizeStatsPayload(statsObj); + if (!Object.keys(groupsByPolicy).length) continue; + const stamped = {}; + for (const [pid, list] of Object.entries(groupsByPolicy)) { + stamped[pid] = list.map((g) => ({ + ...g, + language: g.language || langId, + test_data: fixtureKey(g), + })); } - - const groups = payload.groups || payload.stats?.groups || []; - if (Array.isArray(groups) && groups.length) { - // Normalize fixture keys so cross-lang filters match type@n=N options - return groups.map((g) => ({ + if (!stamped[defaultPolicy] && Array.isArray(statsObj.groups) && !statsObj.groups[0]?.variants) { + stamped[defaultPolicy] = (statsObj.groups || []).map((g) => ({ ...g, language: g.language || langId, test_data: fixtureKey(g), })); } + return stamped; } catch (e) { console.warn(`Cross-lang load failed for ${langId} via ${url}:`, e); } } - return []; + return {}; +} + +function rebuildCrossLangForPolicy() { + const pid = state.filterPolicy; + const byLang = {}; + for (const [lang, byPolicy] of Object.entries(state.crossLangGroupsByLangPolicy || {})) { + byLang[lang] = + byPolicy[pid] || + byPolicy[state.defaultFilterPolicy] || + byPolicy[DEFAULT_FILTER_POLICY] || + byPolicy[Object.keys(byPolicy)[0]] || + []; + } + state.crossLangGroupsByLang = byLang; + if (state.xlSelectionMode === 'pareto') { + applyCrossLangParetoSelection(); + } else { + pruneCrossLangSelection(); + } + updateXlBaselineSelect(); } -async function loadAllLanguagesForCrossCompare() { +async function ensureCrossLangLoaded() { + if (state.crossLangLoaded) { + rebuildCrossLangForPolicy(); + initCrossLangControls(); + return; + } + showNotification('Loading cross-language stats…', 'info'); const entries = await Promise.all( - LANGUAGE_CATALOG.map(async (lang) => [lang.id, await fetchStatsGroups(lang.id)]) + LANGUAGE_CATALOG.map(async (lang) => [lang.id, await fetchStatsGroupsByPolicy(lang.id)]) ); - state.crossLangGroupsByLang = Object.fromEntries(entries); - - const loaded = entries.filter(([, g]) => g.length > 0).map(([id]) => id); - if (loaded.length === 0) { - console.warn('No cross-language stats loaded.'); - } - + state.crossLangGroupsByLangPolicy = Object.fromEntries(entries); + state.crossLangLoaded = true; + rebuildCrossLangForPolicy(); initCrossLangControls(); if (state.xlSelectionMode === 'pareto' || state.xlSelected.length === 0) { applyCrossLangParetoSelection(); } else { pruneCrossLangSelection(); - if (state.xlSelected.length === 0) { - applyCrossLangParetoSelection(); - } } renderCrossLangSelection(); - renderCrossLangTable(); - updateCrossLangBadge(); - saveSettings(); + updateXlBaselineSelect(); } function allCrossLangGroups() { return Object.values(state.crossLangGroupsByLang).flat(); } -/** How many catalog languages have at least one group in this (normalized) mode. */ -function languageCountForMode(mode) { - if (!mode) return 0; - return LANGUAGE_CATALOG.filter((lang) => { - const groups = state.crossLangGroupsByLang[lang.id] || []; - return groups.some((g) => normalizeMode(g.mode) === mode); - }).length; -} - function initCrossLangControls() { const all = allCrossLangGroups(); - // Groups normalized with fixtureKey on load; suite fixtures only - const testDataOptions = [ - ...new Set( - all - .map((g) => fixtureKey(g)) - .filter((k) => k && SUITE_TYPE_IDS.includes(baseTypeId(k))) - ), - ].sort(); - const modeOptions = [...new Set(all.map((g) => normalizeMode(g.mode)).filter(Boolean))].sort(); - - populateSelect('xl-data-select', testDataOptions); - const modeSel = document.getElementById('xl-mode-select'); - modeSel.innerHTML = ''; - modeOptions.forEach((m) => { - const opt = document.createElement('option'); - opt.value = m; - opt.textContent = modeDisplayLabel(m); - modeSel.appendChild(opt); + const discovered = discoverFixtureOptions(all); + const dataTypes = discovered.all; + const modes = [...new Set(all.map((g) => normalizeMode(g.mode)).filter(Boolean))].sort(); + + // Same grouped options as top toolbar Test Data (natural + compounds) + populateFixtureSelect(dataTypes, { + selectId: 'xl-data-select', + previous: state.xlTestData, }); - // Prefer message@n=1; drop stale localStorage / doubled labels (e.g. type@n=100@n=100) - if (!testDataOptions.includes(state.xlTestData)) { - state.xlTestData = pickPreferredFixture(testDataOptions); + const modeSel = document.getElementById('xl-mode-select'); + if (modeSel) { + modeSel.innerHTML = ''; + modes.forEach((m) => { + const opt = document.createElement('option'); + opt.value = m; + opt.textContent = modeDisplayLabel(m); + modeSel.appendChild(opt); + }); } - // Prefer a mode available in as many languages as possible (bytes). Stream exists - // only for C/C# today — keep it selectable, but don't restore it as default when - // it would hide every other language on load. - const bytesCount = languageCountForMode('bytes'); - const currentCount = languageCountForMode(state.xlMode); - if ( - !modeOptions.includes(state.xlMode) || - !state.xlMode || - (bytesCount > currentCount && modeOptions.includes('bytes')) - ) { - state.xlMode = modeOptions.includes('bytes') - ? 'bytes' - : modeOptions[0] || ''; + if (!dataTypes.includes(state.xlTestData)) { + state.xlTestData = + pickPreferredFixture(discovered.natural) || dataTypes[0] || ''; } + if (!modes.includes(state.xlMode)) { + state.xlMode = modes.includes('bytes') ? 'bytes' : modes[0] || ''; + } + const xd = document.getElementById('xl-data-select'); + const xm = document.getElementById('xl-mode-select'); + if (xd && [...xd.options].some((o) => o.value === state.xlTestData)) { + xd.value = state.xlTestData; + } else if (xd && xd.options.length) { + const first = [...xd.options].find((o) => !o.disabled && o.value); + if (first) { + xd.value = first.value; + state.xlTestData = first.value; + } + } + if (xm) xm.value = state.xlMode; - document.getElementById('xl-data-select').value = state.xlTestData; - modeSel.value = state.xlMode; - - // Language add picker const langSel = document.getElementById('xl-add-lang'); - langSel.innerHTML = ''; - LANGUAGE_CATALOG.forEach((lang) => { - const groups = state.crossLangGroupsByLang[lang.id] || []; - if (!groups.length) return; - const opt = document.createElement('option'); - opt.value = lang.id; - opt.textContent = lang.label; - langSel.appendChild(opt); - }); - + if (langSel) { + langSel.innerHTML = ''; + LANGUAGE_CATALOG.forEach((l) => { + const opt = document.createElement('option'); + opt.value = l.id; + opt.textContent = l.label; + langSel.appendChild(opt); + }); + } refreshCrossLangAddSerializerOptions(); } +/** + * Resolve groups for one language under XL Test Data + Mode + * (supports natural, batch compound, all@1/all@100, all@all). + */ function filterGroupsForCrossLang(groups) { - return groups.filter( - (g) => - fixtureKey(g) === state.xlTestData && - normalizeMode(g.mode) === state.xlMode + const modeNorm = state.xlMode; + const modeGroups = (groups || []).filter( + (g) => normalizeMode(g.mode) === modeNorm ); + // Normalize mode field so builders can match with exact equality + const normalized = modeGroups.map((g) => ({ ...g, mode: modeNorm })); + + const sel = parseFixtureSelection(state.xlTestData); + if (sel.kind === 'batch_compound') { + return buildCompoundedFixtureGroups( + normalized, + sel.base, + sel.nA, + sel.nB, + modeNorm + ); + } + if (sel.kind === 'all_n') { + return buildAllTypesAtNGroups(normalized, sel.n, modeNorm); + } + if (sel.kind === 'all_all') { + return buildAllAllGroups(normalized, modeNorm); + } + return normalized.filter((g) => g.test_data === state.xlTestData); } function findCrossLangGroup(lang, serializer) { @@ -957,29 +2364,24 @@ function findCrossLangGroup(lang, serializer) { return groups.find((g) => g.serializer === serializer) || null; } -/** Max Pareto picks auto-selected per language in the cross-language diagram. */ -const XL_PARETO_MAX_PER_LANG = 2; - function applyCrossLangParetoSelection() { const selected = []; for (const lang of LANGUAGE_CATALOG) { const groups = filterGroupsForCrossLang(state.crossLangGroupsByLang[lang.id] || []); - if (!groups.length) continue; - const pareto = paretoOptimalGroups(groups); - // Stable order: fastest total first; cap so the diagram stays readable. - pareto - .slice() - .sort( - (a, b) => - (a.avg_time_total_ns ?? Infinity) - (b.avg_time_total_ns ?? Infinity) - ) - .slice(0, XL_PARETO_MAX_PER_LANG) - .forEach((g) => { - selected.push({ lang: lang.id, serializer: g.serializer }); - }); + const pareto = paretoOptimalGroups(groups) + .sort((a, b) => b.avg_ops_per_sec - a.avg_ops_per_sec) + .slice(0, 2); + pareto.forEach((g) => selected.push({ lang: lang.id, serializer: g.serializer })); } - state.xlSelected = selected; + // Prefer diversity but keep table readable + state.xlSelected = selected.slice(0, MAX_COMPARE_COLUMNS); state.xlSelectionMode = 'pareto'; + if (state.xlSelected.length) { + const keys = new Set(state.xlSelected.map((x) => `${x.lang}|${x.serializer}`)); + if (!keys.has(state.xlBaselineKey)) { + state.xlBaselineKey = `${state.xlSelected[0].lang}|${state.xlSelected[0].serializer}`; + } + } } function pruneCrossLangSelection() { @@ -987,513 +2389,752 @@ function pruneCrossLangSelection() { } function refreshCrossLangAddSerializerOptions() { - const lang = document.getElementById('xl-add-lang').value; + const lang = document.getElementById('xl-add-lang')?.value; const serSel = document.getElementById('xl-add-serializer'); - serSel.innerHTML = ''; - + if (!serSel || !lang) return; const groups = filterGroupsForCrossLang(state.crossLangGroupsByLang[lang] || []); const names = [...new Set(groups.map((g) => g.serializer))].sort((a, b) => a.localeCompare(b) ); + const selected = new Set( + state.xlSelected.filter((x) => x.lang === lang).map((x) => x.serializer) + ); + serSel.innerHTML = ''; + names + .filter((n) => !selected.has(n)) + .forEach((n) => { + const g = groups.find((x) => x.serializer === n); + const opt = document.createElement('option'); + opt.value = n; + opt.textContent = g ? serializerLabelFromGroup(g) : n; + serSel.appendChild(opt); + }); +} - if (!names.length) { - const opt = document.createElement('option'); - opt.value = ''; - opt.textContent = '— no serializers —'; - serSel.appendChild(opt); - return; +/** + * Build a chip element: neutral pill, optional baseline highlight, truncated label. + */ +function makeChip({ fullLabel, shortLabel, title, isBaseline, onRemove }) { + const chip = document.createElement('span'); + chip.className = 'xl-chip' + (isBaseline ? ' chip-baseline' : ''); + chip.title = title || fullLabel; + + const label = document.createElement('span'); + label.className = 'xl-chip-label'; + // Prefer compact shortLabel (no version in chip; full string in title) + if (shortLabel) { + label.textContent = shortLabel + (isBaseline ? ' · base' : ''); + } else { + const colon = fullLabel.lastIndexOf(':'); + if (colon > 0 && colon < fullLabel.length - 1 && !fullLabel.includes(' / ')) { + label.textContent = fullLabel.slice(0, colon) + (isBaseline ? ' · base' : ''); + } else { + label.textContent = fullLabel + (isBaseline ? ' · base' : ''); + } } + chip.appendChild(label); - names.forEach((name) => { - const opt = document.createElement('option'); - opt.value = name; - opt.textContent = name; - serSel.appendChild(opt); - }); + const btn = document.createElement('button'); + btn.type = 'button'; + btn.className = 'xl-chip-remove'; + btn.textContent = '×'; + btn.setAttribute('aria-label', `Remove ${fullLabel}`); + btn.addEventListener('click', onRemove); + chip.appendChild(btn); + return chip; } -function updateCrossLangBadge() { - const badge = document.getElementById('cross-lang-badge'); - if (!badge) return; - if (state.xlSelectionMode === 'pareto') { - badge.textContent = 'Pareto best'; - badge.className = 'badge badge-cyan'; - } else { - badge.textContent = 'Custom selection'; - badge.className = 'badge badge-purple'; +/** + * Flat chip stream (single dense line with horizontal scroll in compact UI). + * groups: { langLabel?, chips: HTMLElement[] }[] + */ +function renderChipGroups(host, groups) { + host.innerHTML = ''; + host.className = 'chip-groups chip-groups-compact'; + if (!groups.length) { + const empty = document.createElement('span'); + empty.className = 'chip-empty'; + empty.textContent = 'None selected'; + host.appendChild(empty); + return; } + // Flatten: one continuous flex row of chips (lang prefix already on chip label when needed) + groups.forEach((g) => { + g.chips.forEach((c) => host.appendChild(c)); + }); } function renderCrossLangSelection() { const host = document.getElementById('xl-selection-chips'); if (!host) return; - host.innerHTML = ''; - - updateCrossLangBadge(); - if (!state.xlSelected.length) { - const empty = document.createElement('span'); - empty.style.color = 'var(--text-muted)'; - empty.style.fontSize = '0.85rem'; - empty.textContent = 'No serializers selected. Reset to Pareto best or add one.'; - host.appendChild(empty); + renderChipGroups(host, []); + updateCompareStatusLine(); return; } - // Annotate which are currently Pareto under the active filters - const paretoKeys = new Set(); - for (const lang of LANGUAGE_CATALOG) { - const groups = filterGroupsForCrossLang(state.crossLangGroupsByLang[lang.id] || []); - paretoOptimalGroups(groups).forEach((g) => { - paretoKeys.add(`${lang.id}|${g.serializer}`); - }); - } - - state.xlSelected.forEach((item, idx) => { - const key = `${item.lang}|${item.serializer}`; - const chip = document.createElement('span'); - chip.className = 'xl-chip' + (paretoKeys.has(key) ? ' pareto-chip' : ''); - chip.title = paretoKeys.has(key) - ? 'On Pareto front for this language / filter' - : 'Not on Pareto front for this language / filter'; - - const label = document.createElement('span'); - label.className = 'xl-chip-label'; - label.textContent = `${languageLabel(item.lang)} · ${item.serializer}`; - - const remove = document.createElement('button'); - remove.type = 'button'; - remove.className = 'xl-chip-remove'; - remove.setAttribute('aria-label', `Remove ${item.serializer}`); - remove.textContent = '×'; - remove.addEventListener('click', () => { - state.xlSelectionMode = 'custom'; - state.xlSelected = state.xlSelected.filter((_, i) => i !== idx); - renderCrossLangSelection(); - renderCrossLangTable(); - saveSettings(); - }); - - chip.appendChild(label); - chip.appendChild(remove); - host.appendChild(chip); + // Group by language, preserve LANGUAGE_CATALOG order + const byLang = new Map(); + state.xlSelected.forEach((x) => { + if (!byLang.has(x.lang)) byLang.set(x.lang, []); + byLang.get(x.lang).push(x); }); -} -function renderCrossLangTable() { - const thead = document.getElementById('xl-compare-head'); - const tbody = document.getElementById('xl-compare-body'); - if (!thead || !tbody) return; - - thead.innerHTML = ''; - tbody.innerHTML = ''; + const groups = []; + const orderedLangs = [ + ...LANGUAGE_CATALOG.map((l) => l.id).filter((id) => byLang.has(id)), + ...[...byLang.keys()].filter((id) => !LANGUAGE_CATALOG.some((l) => l.id === id)), + ]; - const headerRow = document.createElement('tr'); - const metricTh = document.createElement('th'); - metricTh.textContent = 'Metric'; - headerRow.appendChild(metricTh); + orderedLangs.forEach((langId) => { + const items = byLang.get(langId) || []; + const langShort = languageLabel(langId); + const chips = items.map((x) => { + const g = findCrossLangGroup(x.lang, x.serializer); + const serLabel = g ? serializerLabelFromGroup(g) : x.serializer; + const key = `${x.lang}|${x.serializer}`; + // Compact: "C#: BinaryPack" on one chip (no separate language rows) + return makeChip({ + fullLabel: serLabel, + shortLabel: `${langShort}: ${serLabel.split(':')[0]}`, + title: `${langShort} / ${serLabel}`, + isBaseline: key === state.xlBaselineKey, + onRemove: () => { + state.xlSelectionMode = 'custom'; + state.xlSelected = state.xlSelected.filter( + (y) => !(y.lang === x.lang && y.serializer === x.serializer) + ); + renderCrossLangSelection(); + updateXlBaselineSelect(); + refreshCrossLangAddSerializerOptions(); + renderCompareMatrix(); + saveSettings(); + updateCompareStatusLine(); + }, + }); + }); + groups.push({ langLabel: langShort, chips }); + }); - const columns = state.xlSelected.map((item) => ({ - ...item, - group: findCrossLangGroup(item.lang, item.serializer), - })); + renderChipGroups(host, groups); + updateCompareStatusLine(); +} - columns.forEach((col) => { - const th = document.createElement('th'); - th.innerHTML = `${escapeHtml(languageLabel(col.lang))}${escapeHtml(col.serializer)}`; - headerRow.appendChild(th); +function populateSameSerAddSelect() { + const sel = document.getElementById('same-ser-add-select'); + if (!sel) return; + const q = (document.getElementById('same-ser-search')?.value || '').toLowerCase().trim(); + const selected = new Set(state.detailSerializers); + const candidates = state.serializerNames.filter((n) => !selected.has(n)); + const filtered = candidates.filter((n) => { + if (!q) return true; + const g = groupForSerializer(n); + const label = (g ? serializerLabelFromGroup(g) : n).toLowerCase(); + return n.toLowerCase().includes(q) || label.includes(q); }); - thead.appendChild(headerRow); - - if (!columns.length) { - const tr = document.createElement('tr'); - tr.innerHTML = - 'Select serializers to compare across languages'; - tbody.appendChild(tr); + sel.innerHTML = ''; + if (!filtered.length) { + const opt = document.createElement('option'); + opt.value = ''; + opt.textContent = q ? 'No matches' : 'All selected'; + sel.appendChild(opt); return; } + filtered.forEach((n) => { + const g = groupForSerializer(n); + const opt = document.createElement('option'); + opt.value = n; + opt.textContent = g ? serializerLabelFromGroup(g) : n; + sel.appendChild(opt); + }); +} - CROSS_LANG_METRICS.forEach((metric) => { - // Skip metric row if every column is missing that field entirely - const values = columns.map((c) => - c.group && c.group[metric.key] != null ? Number(c.group[metric.key]) : null - ); - if (values.every((v) => v === null || Number.isNaN(v))) return; +function addSameLanguageSerializer(name) { + if (!name || !state.serializerNames.includes(name)) return; + if (state.detailSerializers.includes(name)) { + showNotification('Already selected.', 'info'); + return; + } + if (state.detailSerializers.length >= MAX_COMPARE_COLUMNS) { + showNotification(`At most ${MAX_COMPARE_COLUMNS} serializers in Compare.`, 'info'); + return; + } + state.detailSerializers = [...state.detailSerializers, name]; + saveSettings(); + renderSameSelectionChips(); + populateSameSerAddSelect(); + renderCompareMatrix(); + updateCompareStatusLine(); +} - let bestVal = null; - if (metric.higherIsBetter === true || metric.higherIsBetter === false) { - values.forEach((v) => { - if (v === null || Number.isNaN(v)) return; +function renderSameSelectionChips() { + const host = document.getElementById('same-selection-chips'); + if (!host) return; + const names = state.detailSerializers.filter((s) => state.serializerNames.includes(s)); + if (!names.length) { + renderChipGroups(host, []); + updateCompareStatusLine(); + return; + } + const chips = names.map((name) => { + const g = groupForSerializer(name); + const full = g ? serializerLabelFromGroup(g) : name; + return makeChip({ + fullLabel: full, + shortLabel: full.split(':')[0], + title: full, + isBaseline: name === state.compareBaseline, + onRemove: () => { + state.detailSerializers = state.detailSerializers.filter((s) => s !== name); if ( - bestVal === null || - (metric.higherIsBetter ? v > bestVal : v < bestVal) + state.compareBaseline === name || + !state.detailSerializers.includes(state.compareBaseline) ) { - bestVal = v; + state.compareBaseline = state.detailSerializers[0] || ''; + populateBaselineSelect(); } - }); - } - - const tr = document.createElement('tr'); - const tdLabel = document.createElement('td'); - tdLabel.textContent = metric.label; - tr.appendChild(tdLabel); - - values.forEach((v) => { - const td = document.createElement('td'); - if (v === null || Number.isNaN(v)) { - td.textContent = '—'; - td.className = 'xl-missing'; - } else { - td.textContent = formatMetricValue(metric.key, v); - // Highlight every column that ties for best (not only the first). - if (bestVal !== null && v === bestVal) td.classList.add('xl-best'); - } - tr.appendChild(td); + saveSettings(); + renderSameSelectionChips(); + populateSameSerAddSelect(); + renderCompareMatrix(); + updateCompareStatusLine(); + }, }); - tbody.appendChild(tr); }); + renderChipGroups(host, [{ chips }]); + updateCompareStatusLine(); } -function escapeHtml(str) { - return String(str) - .replace(/&/g, '&') - .replace(//g, '>') - .replace(/"/g, '"'); +function updateXlBaselineSelect() { + const sel = document.getElementById('compare-xl-baseline-select'); + if (!sel) return; + sel.innerHTML = ''; + state.xlSelected.forEach((x) => { + const opt = document.createElement('option'); + opt.value = `${x.lang}|${x.serializer}`; + const g = findCrossLangGroup(x.lang, x.serializer); + const serLabel = g ? serializerLabelFromGroup(g) : x.serializer; + opt.textContent = `${languageLabel(x.lang)} / ${serLabel}`; + sel.appendChild(opt); + }); + if ( + state.xlBaselineKey && + state.xlSelected.some((x) => `${x.lang}|${x.serializer}` === state.xlBaselineKey) + ) { + sel.value = state.xlBaselineKey; + } else if (state.xlSelected.length) { + state.xlBaselineKey = `${state.xlSelected[0].lang}|${state.xlSelected[0].serializer}`; + sel.value = state.xlBaselineKey; + } else { + state.xlBaselineKey = ''; + } +} + +// ---------- KPIs / tables ---------- + +function setKpiEmpty(msg) { + document.getElementById('kpi-total').textContent = '0'; + document.getElementById('kpi-fastest').textContent = msg || 'No data for this filter'; + document.getElementById('kpi-fastest-val').textContent = 'Select another data type or mode'; + document.getElementById('kpi-compact').textContent = msg || 'No data for this filter'; + document.getElementById('kpi-compact-val').textContent = 'Select another data type or mode'; + document.getElementById('kpi-pareto').textContent = '—'; } -// Update KPI cards function updateKPIs() { const total = state.filteredGroups.length; - document.getElementById('kpi-total').textContent = total; + document.getElementById('kpi-total').textContent = formatIntGrouped(total); if (total === 0) { - document.getElementById('kpi-fastest').textContent = '-'; - document.getElementById('kpi-fastest-val').textContent = 'Speed: -'; - document.getElementById('kpi-compact').textContent = '-'; - document.getElementById('kpi-compact-val').textContent = 'Size: -'; - document.getElementById('kpi-pareto').textContent = '-'; + setKpiEmpty('No data for this filter'); return; } - // Find Fastest (min avg_time_total_ns) - const fastest = [...state.filteredGroups].sort((a, b) => a.avg_time_total_ns - b.avg_time_total_ns)[0]; - document.getElementById('kpi-fastest').textContent = fastest.serializer; - document.getElementById('kpi-fastest-val').textContent = `Total: ${formatTime(fastest.avg_time_total_ns)} (${formatOps(fastest.avg_ops_per_sec)})`; - - // Find Most Compact (min median_size_bytes) - const compact = [...state.filteredGroups].sort((a, b) => a.median_size_bytes - b.median_size_bytes)[0]; - document.getElementById('kpi-compact').textContent = compact.serializer; - document.getElementById('kpi-compact-val').textContent = `Size: ${compact.median_size_bytes} Bytes`; - - // Pareto optimal count - document.getElementById('kpi-pareto').textContent = `${state.paretoSerializerNames.length} / ${total}`; -} - -// Compare Selectors setup -function populateCompareSelectors() { - const selA = document.getElementById('compare-a-select'); - const selB = document.getElementById('compare-b-select'); - - selA.innerHTML = ''; - selB.innerHTML = ''; - - state.serializerNames.forEach(name => { - const optA = document.createElement('option'); - const optB = document.createElement('option'); - optA.value = optA.textContent = name; - optB.value = optB.textContent = name; - selA.appendChild(optA); - selB.appendChild(optB); - }); - - if (state.serializerNames.length === 0) { - state.compareA = ''; - state.compareB = ''; - return; + const latencyKey = (g) => + g.total_median_ns != null && Number.isFinite(g.total_median_ns) + ? g.total_median_ns + : g.avg_time_total_ns; + + const fastest = [...state.filteredGroups] + .filter((g) => latencyKey(g) != null && Number.isFinite(latencyKey(g))) + .sort((a, b) => latencyKey(a) - latencyKey(b))[0]; + if (fastest) { + document.getElementById('kpi-fastest').textContent = fastest.serializer; + const lat = latencyKey(fastest); + const suffix = fastest.compounded ? ` · ${state.currentTestData}` : ''; + document.getElementById('kpi-fastest-val').textContent = + `${formatTimeCompact(lat)} · ${formatOpsCompact(fastest.avg_ops_per_sec)}${suffix}`; } - // Prefer previously chosen serializers when still present - if (!state.serializerNames.includes(state.compareA)) { - state.compareA = state.serializerNames[0]; + const compact = [...state.filteredGroups] + .filter((g) => g.median_size_bytes != null) + .sort((a, b) => a.median_size_bytes - b.median_size_bytes)[0]; + if (compact) { + document.getElementById('kpi-compact').textContent = compact.serializer; + const suffix = compact.compounded ? ` · ${state.currentTestData}` : ''; + document.getElementById('kpi-compact-val').textContent = + `${formatIntGrouped(compact.median_size_bytes)} bytes${suffix}`; } - if (!state.serializerNames.includes(state.compareB)) { - state.compareB = state.serializerNames[Math.min(1, state.serializerNames.length - 1)]; - } - - selA.value = state.compareA; - selB.value = state.compareB; -} -/** Metric family for checklist + table grouping. */ -const METRIC_GROUP_ORDER = [ - 'Run & quality', - 'Throughput', - 'Serialization', - 'Deserialization', - 'Total latency', - 'Size', - 'Comparisons', - 'Other', -]; - -function metricGroupName(key) { - if ( - [ - 'runs', - 'runs_raw', - 'warmup_skipped', - 'outliers_removed', - 'serializer_version', - 'mean_fidelity', - 'mean_memory_peak_bytes', - ].includes(key) - ) { - return 'Run & quality'; - } - if ( - key.includes('ops_per_sec') || - key.endsWith('_ops_mean') || - key.endsWith('_ops_median') || - key.endsWith('_ops_p95') || - key === 'min_ops_per_sec' || - key === 'max_ops_per_sec' - ) { - return 'Throughput'; + document.getElementById('kpi-pareto').textContent = + `${state.paretoSerializerNames.length} / ${total}`; + const paretoDesc = document.querySelector('#kpi-pareto')?.closest('.kpi-card')?.querySelector('.kpi-desc'); + if (paretoDesc) { + const pl = + state.filterPolicies[state.filterPolicy]?.label || state.filterPolicy || 'default'; + paretoDesc.textContent = `Optimal trade-offs · samples: ${pl}`; } - if (key.startsWith('ser_') || key === 'avg_time_ser_ns') return 'Serialization'; - if (key.startsWith('deser_') || key === 'avg_time_deser_ns') return 'Deserialization'; - if (key.startsWith('total_') || key === 'avg_time_total_ns') return 'Total latency'; - if (key.startsWith('size_') || key === 'median_size_bytes') return 'Size'; - if ( - key.includes('effect_') || - key.includes('baseline') || - key.includes('fastest') || - key.includes('speedup') - ) { - return 'Comparisons'; +} + +function groupForSerializer(name) { + return state.filteredGroups.find((g) => g.serializer === name) || null; +} + +function populateBaselineSelect() { + const sels = [ + document.getElementById('compare-baseline-select'), + document.getElementById('roster-baseline-select'), + ].filter(Boolean); + if (!sels.length) return; + + if (state.compareBaseline && state.serializerNames.includes(state.compareBaseline)) { + // keep + } else if (state.serializerNames.length) { + state.compareBaseline = + state.paretoSerializerNames[0] || state.serializerNames[0] || ''; } - return 'Other'; + + sels.forEach((sel) => { + sel.innerHTML = ''; + state.serializerNames.forEach((name) => { + const opt = document.createElement('option'); + opt.value = name; + const g = groupForSerializer(name); + const label = g ? serializerLabelFromGroup(g) : name; + opt.textContent = label + (state.paretoSerializerNames.includes(name) ? ' ★' : ''); + sel.appendChild(opt); + }); + if (state.compareBaseline && state.serializerNames.includes(state.compareBaseline)) { + sel.value = state.compareBaseline; + } + }); } -/** Higher is better for highlighting multi-serializer metric rows; null = no highlight. */ function metricHigherIsBetter(key) { if ( - key.includes('cliffs_label') || - key.includes('baseline_serializer') || - key.includes('fastest_in_group') || - key === 'serializer_version' || - key.includes('cliffs_delta') || - key.includes('hedges_g') - ) { - return null; - } - if ( - key.includes('ops_per_sec') || - key.endsWith('_ops_mean') || - key.endsWith('_ops_median') || - key.endsWith('_ops_p95') || - key === 'min_ops_per_sec' || - key === 'max_ops_per_sec' || - key === 'mean_fidelity' || - key.includes('speedup') + key.includes('ops') || + key.includes('fidelity') || + key === 'runs' || + key === 'fastest_in_group' ) { return true; } if ( + key.includes('time') || key.endsWith('_ns') || - key.endsWith('_bytes') || - key.includes('size_') || - key.endsWith('_cv') || - key.includes('_var_') || - key.includes('_std_') || - key.includes('_mad_') + key.includes('size') || + key.includes('bytes') || + key.includes('cv') || + key.includes('mad') || + key.includes('std') || + key.includes('memory') ) { return false; } return null; } +function metricGroupName(key) { + if (key.includes('ops')) return 'Throughput'; + if (key.startsWith('ser_') || key.includes('time_ser')) return 'Serialize'; + if (key.startsWith('deser_') || key.includes('time_deser')) return 'Deserialize'; + if (key.startsWith('total_') || key.includes('time_total')) return 'Total time'; + if (key.includes('size') || key.includes('bytes') || key.includes('memory')) return 'Size & memory'; + if (key.includes('fidelity') || key.includes('effect')) return 'Quality'; + if (key.includes('run') || key.includes('warmup') || key.includes('outlier')) return 'Samples'; + return 'Other'; +} + function groupMetrics(keys) { - const buckets = new Map(METRIC_GROUP_ORDER.map((g) => [g, []])); + const map = new Map(); keys.forEach((k) => { const g = metricGroupName(k); - if (!buckets.has(g)) buckets.set(g, []); - buckets.get(g).push(k); + if (!map.has(g)) map.set(g, []); + map.get(g).push(k); }); - for (const arr of buckets.values()) arr.sort((a, b) => a.localeCompare(b)); - return METRIC_GROUP_ORDER - .map((name) => ({ name, keys: buckets.get(name) || [] })) - .filter((g) => g.keys.length > 0); + return [...map.entries()].map(([name, ks]) => ({ name, keys: ks })); } -function populateDetailSerializerSelect() { - // Keep only still-valid serializers; default to first if empty - state.detailSerializers = state.detailSerializers.filter((s) => - state.serializerNames.includes(s) - ); - if (state.detailSerializers.length === 0 && state.serializerNames.length > 0) { - state.detailSerializers = [state.serializerNames[0]]; - } - renderDetailSerializerChecklist(); +function metricLabel(key) { + return key + .replace(/_ns$/g, '') + .replace(/_bytes$/g, '') + .replace(/_per_sec$/g, '') + .replace(/_/g, ' '); } -function renderDetailSerializerChecklist() { - const container = document.getElementById('detail-serializer-checklist'); - if (!container) return; +function openMetricsPanel(open) { + const body = document.getElementById('metrics-panel-body'); + const toggle = document.getElementById('metrics-edit-toggle'); + if (body) body.hidden = !open; + if (toggle) toggle.textContent = open ? 'Custom ▴' : 'Custom ▾'; +} - container.innerHTML = ''; - const selected = new Set(state.detailSerializers); +function setMetricsPresetActive(preset) { + document.querySelectorAll('.preset-btn').forEach((btn) => { + btn.classList.toggle('active', btn.dataset.preset === preset); + }); +} - if (!state.serializerNames.length) { - const empty = document.createElement('span'); - empty.style.color = 'var(--text-muted)'; - empty.style.fontSize = '0.8rem'; - empty.textContent = 'No serializers for this filter'; - container.appendChild(empty); - return; +function applyMetricPreset(preset) { + const keys = METRIC_PRESETS[preset] || METRIC_PRESETS.defaults; + state.selectedMetrics = keys.filter((k) => state.availableMetrics.includes(k)); + if (!state.selectedMetrics.length && preset === 'defaults') { + state.selectedMetrics = state.availableMetrics.slice(0, 12); } + setMetricsPresetActive(preset); + // Latency/size presets leave catalog closed; custom opens it + openMetricsPanel(false); + saveSettings(); + renderMetricsChecklist(); + renderCompareMatrix(); + updateCompareStatusLine(); +} - state.serializerNames.forEach((name) => { - const label = document.createElement('label'); - label.className = 'metric-check-item'; - label.title = name; - - const input = document.createElement('input'); - input.type = 'checkbox'; - input.value = name; - input.checked = selected.has(name); - input.addEventListener('change', () => { - if (input.checked) { - if (!state.detailSerializers.includes(name)) { - state.detailSerializers = [...state.detailSerializers, name].sort((a, b) => - a.localeCompare(b) - ); - } - } else { - state.detailSerializers = state.detailSerializers.filter((s) => s !== name); - } - saveSettings(); - renderSerializerMetricsTable(); - }); - - const span = document.createElement('span'); - span.textContent = name; - - label.appendChild(input); - label.appendChild(span); - container.appendChild(label); - }); +/** @deprecated checklist replaced by chips; kept as no-op alias */ +function renderDetailSerializerChecklist() { + renderSameSelectionChips(); + populateSameSerAddSelect(); } function renderMetricsChecklist() { const container = document.getElementById('metrics-checklist'); if (!container) return; - container.innerHTML = ''; - const selected = new Set(state.selectedMetrics); const groups = groupMetrics(state.availableMetrics); - groups.forEach((group) => { - const block = document.createElement('div'); - block.className = 'metric-group-block'; - - const title = document.createElement('div'); - title.className = 'metric-group-title'; - - const titleText = document.createElement('span'); - titleText.textContent = `${group.name} (${group.keys.length})`; - - const groupBtn = document.createElement('button'); - groupBtn.type = 'button'; - groupBtn.className = 'metric-group-toggle'; - const allOn = group.keys.every((k) => selected.has(k)); - groupBtn.textContent = allOn ? 'Clear' : 'All'; - groupBtn.addEventListener('click', () => { - if (allOn) { - state.selectedMetrics = state.selectedMetrics.filter((k) => !group.keys.includes(k)); - } else { - const set = new Set(state.selectedMetrics); - group.keys.forEach((k) => set.add(k)); - state.selectedMetrics = [...set].sort((a, b) => a.localeCompare(b)); - } - saveSettings(); - renderMetricsChecklist(); - renderSerializerMetricsTable(); + const selectedInGroup = group.keys.filter((k) => state.selectedMetrics.includes(k)).length; + const wrap = document.createElement('div'); + wrap.className = 'metric-accordion-group'; + if (metricAccordionOpen[group.name]) wrap.classList.add('open'); + + const head = document.createElement('button'); + head.type = 'button'; + head.className = 'metric-accordion-head'; + head.innerHTML = + `${escapeHtml(group.name)}` + + `${selectedInGroup}/${group.keys.length}`; + head.addEventListener('click', () => { + metricAccordionOpen[group.name] = !metricAccordionOpen[group.name]; + wrap.classList.toggle('open', !!metricAccordionOpen[group.name]); }); + wrap.appendChild(head); - title.appendChild(titleText); - title.appendChild(groupBtn); - block.appendChild(title); - - const items = document.createElement('div'); - items.className = 'metric-group-items'; - + const body = document.createElement('div'); + body.className = 'metric-accordion-body'; group.keys.forEach((key) => { const label = document.createElement('label'); - label.className = 'metric-check-item'; - label.title = key; - - const input = document.createElement('input'); - input.type = 'checkbox'; - input.value = key; - input.checked = selected.has(key); - input.addEventListener('change', () => { - if (input.checked) { + label.className = 'metrics-check-item'; + const cb = document.createElement('input'); + cb.type = 'checkbox'; + cb.checked = state.selectedMetrics.includes(key); + cb.addEventListener('change', () => { + if (cb.checked) { if (!state.selectedMetrics.includes(key)) { - state.selectedMetrics = [...state.selectedMetrics, key].sort((a, b) => - a.localeCompare(b) - ); + state.selectedMetrics = [...state.selectedMetrics, key]; } } else { state.selectedMetrics = state.selectedMetrics.filter((k) => k !== key); } + setMetricsPresetActive('custom'); saveSettings(); - renderSerializerMetricsTable(); + // refresh counts on heads without full re-render of open state + renderMetricsChecklist(); + renderCompareMatrix(); + updateCompareStatusLine(); }); + label.appendChild(cb); + label.appendChild(document.createTextNode(` ${metricLabel(key)}`)); + label.title = key; + body.appendChild(label); + }); + wrap.appendChild(body); + container.appendChild(wrap); + }); + updateCompareStatusLine(); +} + +function handleTableSort(key) { + if (state.sortKey === key) { + state.sortDirection = state.sortDirection === 'asc' ? 'desc' : 'asc'; + } else { + state.sortKey = key; + state.sortDirection = key === 'serializer' ? 'asc' : 'desc'; + } + updateSortIndicators(); + saveSettings(); + renderTable(); +} + +function renderTable() { + const table = document.getElementById('analytics-table'); + const tbody = document.getElementById('table-body'); + if (!tbody) return; + tbody.innerHTML = ''; + + const isOps = state.rosterMetric === 'ops'; + if (table) { + table.classList.toggle('view-ops', isOps); + table.classList.toggle('view-latency', !isOps); + } + + // Enrich with derived ops stats for sort + cells + let rows = state.filteredGroups + .filter((g) => (g.serializer || '').toLowerCase().includes(state.searchQuery)) + .map(withOpsDerivedStats); + + rows.sort((a, b) => { + let valA = a[state.sortKey]; + let valB = b[state.sortKey]; + if (valA === null || valA === undefined) return 1; + if (valB === null || valB === undefined) return -1; + if (typeof valA === 'string') { + return state.sortDirection === 'asc' + ? valA.localeCompare(valB) + : valB.localeCompare(valA); + } + return state.sortDirection === 'asc' ? valA - valB : valB - valA; + }); + + const metricKeys = rosterMetricKeys(); + // Scales: ops_* use ops scale; total_* use latency scale + const latVals = []; + const opsVals = []; + for (const g of rows) { + for (const { key } of metricKeys) { + const v = g[key]; + if (typeof v !== 'number' || !Number.isFinite(v)) continue; + if (key.startsWith('ops_')) opsVals.push(v); + else if (key.endsWith('_ns')) latVals.push(v); + } + } + const scales = { + latency: latVals.length + ? chooseLatencyUnit(latVals) + : { unit: 'µs', divisor: 1e3, header: 'µs' }, + ops: opsVals.length + ? chooseOpsUnit(opsVals) + : { unit: 'ops', divisor: 1, header: 'Ops/s' }, + }; + const u = scales.latency.header; + const oHdr = scales.ops.header; + + // Header labels with units + const setTh = (id, text) => { + const el = document.getElementById(id); + if (el) el.textContent = text; + }; + setTh('th-ops-median', `Median (${oHdr})`); + setTh('th-ops-std', `Std (${oHdr})`); + setTh('th-ops-p95', `P95 (${oHdr})`); + setTh('th-ops-p99', `P99 (${oHdr})`); + setTh('th-lat-median', `Median (${u})`); + setTh('th-lat-std', `Std (${u})`); + setTh('th-lat-p95', `P95 (${u})`); + setTh('th-lat-p99', `P99 (${u})`); + + const baselineRaw = + state.filteredGroups.find((g) => g.serializer === state.compareBaseline) || null; + const baselineGroup = baselineRaw ? withOpsDerivedStats(baselineRaw) : null; + + const help = document.getElementById('detailed-analytics-help'); + if (help) { + const scope = parseFixtureSelection(state.currentTestData); + let scopeNote = ' Full roster for the current language, data type, and mode.'; + if (scope.kind === 'batch_compound') { + scopeNote = + ` Compounded batch: mean of ${escapeHtml(scope.base)}@n=${scope.nA} and ${escapeHtml(scope.base)}@n=${scope.nB}.`; + } else if (scope.kind === 'all_n') { + scopeNote = ` Compounded data types at n=${scope.n}.`; + } else if (scope.kind === 'all_all') { + scopeNote = ` Compounded all (all@all).`; + } + const speedNote = isOps + ? ' View: Ops/s — Median, Std, P95, P99 + size.' + : ' View: Latency — Median, Std, P95, P99 + size.'; + const ratioNote = + ' Median & size: ×base vs baseline (green better / red worse).' + + ' Std/P95/P99: ×med vs that row’s median.'; + const paretoNote = ' Blue rows = Pareto-optimal.'; + if (baselineGroup) { + help.innerHTML = + scopeNote + + speedNote + + ratioNote + + ` Baseline: ${escapeHtml(serializerLabelFromGroup(baselineGroup))}.` + + paretoNote; + } else { + help.innerHTML = scopeNote + speedNote + ratioNote + paretoNote; + } + } + + const colCount = 1 + metricKeys.length; + if (rows.length === 0) { + const tr = document.createElement('tr'); + tr.innerHTML = `No serializers match search query`; + tbody.appendChild(tr); + updateSortIndicators(); + return; + } + + rows.forEach((r) => { + const tr = document.createElement('tr'); + const isBaseline = baselineGroup && r.serializer === baselineGroup.serializer; + const isOptimal = state.paretoSerializerNames.includes(r.serializer); + if (isBaseline) tr.classList.add('roster-baseline-row'); + if (isOptimal) tr.classList.add('roster-pareto-row'); + + const tdName = document.createElement('td'); + tdName.className = 'str'; + const displayName = serializerLabelFromGroup(r); + let nameHtml = `${escapeHtml(displayName)}`; + if (isBaseline) { + nameHtml += ' Baseline'; + } + tdName.innerHTML = nameHtml; + tdName.title = r.serializer_version + ? `${r.serializer} @ ${r.serializer_version}` + : r.serializer; + tr.appendChild(tdName); - const span = document.createElement('span'); - span.textContent = metricLabel(key); + metricKeys.forEach(({ key, higherIsBetter }) => { + const td = document.createElement('td'); + if (key.startsWith('ops_')) td.classList.add('roster-col-ops'); + if (key.startsWith('total_')) td.classList.add('roster-col-latency'); + + const v = r[key]; + if (v === null || v === undefined) { + td.textContent = '—'; + td.classList.add('num', 'sm-missing'); + tr.appendChild(td); + return; + } - label.appendChild(input); - label.appendChild(span); - items.appendChild(label); + const cell = formatRosterRelativeCell(r, key, higherIsBetter, scales, baselineGroup, isBaseline); + td.textContent = cell.text; + td.className = (td.className + ' ' + cell.className).trim(); + tr.appendChild(td); }); - block.appendChild(items); - container.appendChild(block); + tbody.appendChild(tr); }); + updateSortIndicators(); } -function renderSerializerMetricsTable() { +function renderCompareMatrix() { const thead = document.getElementById('serializer-metrics-head'); const tbody = document.getElementById('serializer-metrics-body'); if (!thead || !tbody) return; - thead.innerHTML = ''; tbody.innerHTML = ''; - const serializers = state.detailSerializers.filter((s) => - state.serializerNames.includes(s) - ); - const columns = serializers.map((name) => ({ - name, - group: state.filteredGroups.find((g) => g.serializer === name) || null, - })); + /** @type {{ key: string, label: string, group: object|null, isBaseline: boolean }[]} */ + let columns = []; + + if (state.compareScope === 'same') { + const names = state.detailSerializers.filter((s) => state.serializerNames.includes(s)); + // Baseline first + const ordered = []; + if (state.compareBaseline && names.includes(state.compareBaseline)) { + ordered.push(state.compareBaseline); + } + names.forEach((n) => { + if (!ordered.includes(n)) ordered.push(n); + }); + columns = ordered.map((name) => { + const group = state.filteredGroups.find((g) => g.serializer === name) || null; + return { + key: name, + // Docs Summary style: name:version + label: group ? serializerLabelFromGroup(group) : name, + group, + isBaseline: name === state.compareBaseline, + }; + }); + } else { + const ordered = [...state.xlSelected]; + // baseline first + const bi = ordered.findIndex((x) => `${x.lang}|${x.serializer}` === state.xlBaselineKey); + if (bi > 0) { + const [b] = ordered.splice(bi, 1); + ordered.unshift(b); + } + columns = ordered.map((x) => { + const group = findCrossLangGroup(x.lang, x.serializer); + const serLabel = group + ? serializerLabelFromGroup(group) + : x.serializer; + return { + key: `${x.lang}|${x.serializer}`, + label: `${languageLabel(x.lang)} / ${serLabel}`, + group, + isBaseline: `${x.lang}|${x.serializer}` === state.xlBaselineKey, + }; + }); + } const headerRow = document.createElement('tr'); const metricTh = document.createElement('th'); + metricTh.className = 'str cmp-th-metric'; metricTh.textContent = 'Metric'; headerRow.appendChild(metricTh); columns.forEach((col) => { const th = document.createElement('th'); - th.textContent = col.name; + th.className = 'cmp-th-ser' + (col.isBaseline ? ' baseline-col' : ''); + th.title = col.isBaseline ? `${col.label} (baseline)` : col.label; + + // Split "Lang / name:ver" or "name:ver" into stacked lines (avoids interleaved wraps) + let main = col.label; + let sub = ''; + const slash = col.label.indexOf(' / '); + if (slash >= 0) { + sub = col.label.slice(0, slash); + main = col.label.slice(slash + 3); + } + const colon = main.lastIndexOf(':'); + let name = main; + let ver = ''; + if (colon > 0 && colon < main.length - 1) { + name = main.slice(0, colon); + ver = main.slice(colon + 1); + } + const nameEl = document.createElement('span'); + nameEl.className = 'cmp-th-name'; + nameEl.textContent = name; + th.appendChild(nameEl); + if (ver) { + const verEl = document.createElement('span'); + verEl.className = 'cmp-th-ver'; + verEl.textContent = ver; + th.appendChild(verEl); + } + if (sub) { + const subEl = document.createElement('span'); + subEl.className = 'cmp-th-lang'; + subEl.textContent = sub; + th.insertBefore(subEl, nameEl); + } + if (col.isBaseline) { + const baseEl = document.createElement('span'); + baseEl.className = 'cmp-th-base'; + baseEl.textContent = 'baseline'; + th.appendChild(baseEl); + } headerRow.appendChild(th); }); thead.appendChild(headerRow); const colCount = Math.max(1, columns.length + 1); - if (!columns.length) { const tr = document.createElement('tr'); tr.innerHTML = `Select one or more serializers`; @@ -1501,16 +3142,30 @@ function renderSerializerMetricsTable() { return; } - const selectedKeys = state.selectedMetrics.filter((k) => - state.availableMetrics.includes(k) - ); + // Metrics: use selected; if cross-lang prefer known keys that exist + let selectedKeys = state.selectedMetrics.filter((k) => state.availableMetrics.includes(k)); + if (state.compareScope === 'cross') { + // Union of keys from available metrics defaults that appear in any column + const crossKeys = CROSS_LANG_METRICS.map((m) => m.key).filter((k) => + columns.some((c) => c.group && c.group[k] != null) + ); + selectedKeys = state.selectedMetrics.length + ? state.selectedMetrics.filter((k) => columns.some((c) => c.group && c.group[k] != null)) + : crossKeys; + if (!selectedKeys.length) selectedKeys = crossKeys; + } + if (!selectedKeys.length) { const tr = document.createElement('tr'); - tr.innerHTML = `Select at least one metric in the checklist`; + tr.innerHTML = `Select at least one metric`; tbody.appendChild(tr); return; } + const groupsForScale = columns.map((c) => c.group).filter(Boolean); + const scales = scalesFromGroups(groupsForScale, selectedKeys); + const baselineCol = columns.find((c) => c.isBaseline) || columns[0]; + const groups = groupMetrics(selectedKeys); groups.forEach((group) => { const groupRow = document.createElement('tr'); @@ -1522,48 +3177,33 @@ function renderSerializerMetricsTable() { tbody.appendChild(groupRow); group.keys.forEach((key) => { - const values = columns.map((c) => { - if (!c.group || c.group[key] === undefined || c.group[key] === null) return null; - const v = c.group[key]; - return typeof v === 'number' ? v : v; - }); - - const higherIsBetter = metricHigherIsBetter(key); - let bestVal = null; - if (higherIsBetter === true || higherIsBetter === false) { - values.forEach((v) => { - if (typeof v !== 'number' || !Number.isFinite(v)) return; - if ( - bestVal === null || - (higherIsBetter ? v > bestVal : v < bestVal) - ) { - bestVal = v; - } - }); - } - const tr = document.createElement('tr'); const tdKey = document.createElement('td'); - tdKey.textContent = key; - tdKey.title = metricLabel(key); + tdKey.className = 'str'; + tdKey.textContent = metricHeaderLabel(key, scales); + tdKey.title = key; tr.appendChild(tdKey); - values.forEach((v) => { + const baselineVal = + baselineCol?.group && baselineCol.group[key] != null ? baselineCol.group[key] : null; + const higherIsBetter = metricHigherIsBetter(key); + + columns.forEach((col) => { const td = document.createElement('td'); - if (v === null || v === undefined) { + const v = + col.group && col.group[key] !== undefined && col.group[key] !== null + ? col.group[key] + : null; + if (v === null) { td.textContent = '—'; - td.className = 'sm-missing'; + td.className = 'num sm-missing'; + } else if (col.isBaseline || typeof v !== 'number' || typeof baselineVal !== 'number') { + td.textContent = formatMetricCell(key, v, scales); + td.className = 'num'; } else { - td.textContent = formatMetricValue(key, v); - // Highlight every tied best value when comparing multiple serializers. - if ( - columns.length > 1 && - typeof v === 'number' && - bestVal !== null && - v === bestVal - ) { - td.classList.add('sm-best'); - } + const rel = formatRelativeCell(v, baselineVal, higherIsBetter, scales, key); + td.textContent = rel.text; + td.className = rel.className; } tr.appendChild(td); }); @@ -1572,188 +3212,129 @@ function renderSerializerMetricsTable() { }); } -function metricLabel(key) { - // Short readable label for checklist; full field id stays in the table. - return key - .replace(/_ns$/g, ' (ns)') - .replace(/_bytes$/g, ' (B)') - .replace(/_per_sec$/g, '/s') - .replace(/_/g, ' '); +function escapeHtml(str) { + return String(str) + .replace(/&/g, '&') + .replace(//g, '>') + .replace(/"/g, '"'); } -function formatMetricValue(key, value) { - if (value === null || value === undefined || value === '') return '—'; - if (typeof value === 'boolean') return value ? 'true' : 'false'; - if (typeof value === 'string') return value; - - if (typeof value === 'number') { - if (!Number.isFinite(value)) return String(value); - if (key.endsWith('_ns')) return formatTime(value); - if ( - key.includes('ops_per_sec') || - key.endsWith('_ops_mean') || - key.endsWith('_ops_median') || - key.endsWith('_ops_p95') - ) { - return formatOps(value); +function copyRosterMarkdown() { + const metricSpecs = rosterMetricKeys(); + const rows = state.filteredGroups + .map(withOpsDerivedStats) + .sort((a, b) => a.serializer.localeCompare(b.serializer)); + const latVals = []; + const opsVals = []; + for (const g of rows) { + for (const { key } of metricSpecs) { + const v = g[key]; + if (typeof v !== 'number' || !Number.isFinite(v)) continue; + if (key.startsWith('ops_')) opsVals.push(v); + else if (key.endsWith('_ns')) latVals.push(v); } - if (key.endsWith('_bytes') || key.startsWith('size_')) { - if (Math.abs(value) >= 1000) { - return `${value.toLocaleString(undefined, { maximumFractionDigits: 2 })} B`; - } - return `${Number.isInteger(value) ? value : value.toFixed(4)} B`; - } - if (Number.isInteger(value)) return String(value); - return Number(value.toPrecision(8)).toString(); - } - - return String(value); -} - -// Update Side by side comparison UI -function updateComparison() { - const serializerA = state.filteredGroups.find(g => g.serializer === state.compareA); - const serializerB = state.filteredGroups.find(g => g.serializer === state.compareB); - - if (!serializerA || !serializerB) { - clearComparisonUI(); - return; - } - - updateMetricUI('compare-total-val', 'compare-total-diff', serializerA.avg_time_total_ns, serializerB.avg_time_total_ns, 'ns', true); - updateMetricUI('compare-ser-val', 'compare-ser-diff', serializerA.avg_time_ser_ns, serializerB.avg_time_ser_ns, 'ns', true); - updateMetricUI('compare-deser-val', 'compare-deser-diff', serializerA.avg_time_deser_ns, serializerB.avg_time_deser_ns, 'ns', true); - updateMetricUI('compare-throughput-val', 'compare-throughput-diff', serializerA.avg_ops_per_sec, serializerB.avg_ops_per_sec, 'ops', false); - updateMetricUI('compare-size-val', 'compare-size-diff', serializerA.median_size_bytes, serializerB.median_size_bytes, 'bytes', true); -} - -function updateMetricUI(valId, diffId, valA, valB, type, isLowerBetter) { - const valEl = document.getElementById(valId); - const diffEl = document.getElementById(diffId); - - let displayA = '', displayB = ''; - if (type === 'ns') { - displayA = formatTime(valA); - displayB = formatTime(valB); - } else if (type === 'ops') { - displayA = formatOps(valA); - displayB = formatOps(valB); - } else { - displayA = `${valA} B`; - displayB = `${valB} B`; - } - - valEl.textContent = `${displayB}`; - - if (valA === 0 || valB === 0 || valA === null || valB === null) { - diffEl.textContent = 'N/A'; - diffEl.className = 'compare-diff diff-neutral'; - return; - } - - const pct = ((valB - valA) / valA) * 100; - const isBetter = isLowerBetter ? pct < 0 : pct > 0; - const absPct = Math.abs(pct).toFixed(1); - - if (pct === 0) { - diffEl.textContent = 'Equal'; - diffEl.className = 'compare-diff diff-neutral'; - } else if (isBetter) { - diffEl.textContent = `-${absPct}% (Better)`; - diffEl.className = 'compare-diff diff-positive'; - if (!isLowerBetter) diffEl.textContent = `+${absPct}% (Better)`; - } else { - diffEl.textContent = `+${absPct}% (Worse)`; - diffEl.className = 'compare-diff diff-negative'; - if (!isLowerBetter) diffEl.textContent = `-${absPct}% (Worse)`; } -} - -function clearComparisonUI() { - ['compare-total-val', 'compare-ser-val', 'compare-deser-val', 'compare-throughput-val', 'compare-size-val'].forEach(id => { - document.getElementById(id).textContent = '-'; + const scales = { + latency: latVals.length ? chooseLatencyUnit(latVals) : { divisor: 1e3, header: 'µs' }, + ops: opsVals.length ? chooseOpsUnit(opsVals) : { divisor: 1, header: 'Ops/s' }, + }; + const baselineRaw = + state.filteredGroups.find((g) => g.serializer === state.compareBaseline) || null; + const baselineGroup = baselineRaw ? withOpsDerivedStats(baselineRaw) : null; + const baseLabel = baselineGroup + ? serializerLabelFromGroup(baselineGroup) + : state.compareBaseline || '—'; + const u = scales.latency.header; + const oHdr = scales.ops.header; + const headers = ['Serializer']; + metricSpecs.forEach(({ key, label }) => { + if (key.startsWith('ops_')) headers.push(`${label} (${oHdr})`); + else if (key.endsWith('_ns')) headers.push(`${label} (${u})`); + else if (key === 'median_size_bytes') headers.push('Size (bytes)'); + else headers.push(label || key); }); - ['compare-total-diff', 'compare-ser-diff', 'compare-deser-diff', 'compare-throughput-diff', 'compare-size-diff'].forEach(id => { - document.getElementById(id).textContent = '-'; - document.getElementById(id).className = 'compare-diff diff-neutral'; + headers.push('Pareto'); + const lines = [ + `Baseline: ${baseLabel}`, + `View: ${state.rosterMetric === 'ops' ? 'Ops/s stats' : 'Latency stats'} + size`, + `Ratios: median/size use ×base; Std/P95/P99 use ×med (own median)`, + (() => { + const s = parseFixtureSelection(state.currentTestData); + if (s.kind === 'batch_compound') { + return `Scope: compounded batch ${state.currentTestData} · mode ${state.currentMode}`; + } + if (s.kind === 'all_n') { + return `Scope: all data types @ n=${s.n} · mode ${state.currentMode}`; + } + if (s.kind === 'all_all') { + return `Scope: all@all (all types × all n) · mode ${state.currentMode}`; + } + return `Scope: data type ${state.currentTestData} · mode ${state.currentMode}`; + })(), + ``, + `| ${headers.join(' | ')} |`, + `|${headers.map((h, i) => (i === 0 || h === 'Pareto' ? '---' : '---:')).join('|')}|`, + ]; + rows.forEach((r) => { + const opt = state.paretoSerializerNames.includes(r.serializer) ? 'yes' : ''; + const isBaseline = baselineGroup && r.serializer === baselineGroup.serializer; + const cells = metricSpecs.map(({ key, higherIsBetter }) => { + const cell = formatRosterRelativeCell( + r, + key, + higherIsBetter, + scales, + baselineGroup, + isBaseline + ); + return cell.text; + }); + const name = + serializerLabelFromGroup(r) + (isBaseline ? ' (baseline)' : ''); + lines.push(`| ${name} | ${cells.join(' | ')} | ${opt} |`); }); -} - -// Table Sorting -function handleTableSort(key, el) { - if (state.sortKey === key) { - state.sortDirection = state.sortDirection === 'asc' ? 'desc' : 'asc'; - } else { - state.sortKey = key; - state.sortDirection = 'desc'; - } - - document.querySelectorAll('#analytics-table th').forEach(th => th.className = ''); - el.className = state.sortDirection === 'asc' ? 'sort-asc' : 'sort-desc'; - - saveSettings(); - renderTable(); -} - -function renderTable() { - const tbody = document.getElementById('table-body'); - tbody.innerHTML = ''; - - let rows = state.filteredGroups.filter(g => - g.serializer.toLowerCase().includes(state.searchQuery) - ); - - rows.sort((a, b) => { - let valA = a[state.sortKey]; - let valB = b[state.sortKey]; - - if (valA === null || valA === undefined) return 1; - if (valB === null || valB === undefined) return -1; - - if (typeof valA === 'string') { - return state.sortDirection === 'asc' ? valA.localeCompare(valB) : valB.localeCompare(valA); - } else { - return state.sortDirection === 'asc' ? valA - valB : valB - valA; + copyText(lines.join('\n'), 'Roster Markdown copied'); +} + +function copyCompareMarkdown() { + const table = document.getElementById('serializer-metrics-table'); + if (!table) return; + const rows = [...table.querySelectorAll('tr')]; + const md = rows + .map((tr) => { + const cells = [...tr.children].map((td) => td.textContent.trim().replace(/\|/g, '\\|')); + return `| ${cells.join(' | ')} |`; + }) + .filter((line) => !line.includes('Throughput') || line.startsWith('| Metric')); + // simpler: all rows + const all = rows.map((tr) => { + const cells = [...tr.children].map((td) => td.textContent.trim().replace(/\|/g, '\\|')); + if (tr.classList.contains('metric-group-row')) { + return `\n**${cells[0]}**\n`; } + return `| ${cells.join(' | ')} |`; }); + copyText(all.join('\n'), 'Compare Markdown copied'); +} - if (rows.length === 0) { - const tr = document.createElement('tr'); - tr.innerHTML = `No serializers match search query`; - tbody.appendChild(tr); - return; +async function copyText(text, okMsg) { + try { + await navigator.clipboard.writeText(text); + showNotification(okMsg || 'Copied', 'success'); + } catch { + showNotification('Clipboard unavailable', 'error'); } - - rows.forEach(r => { - const tr = document.createElement('tr'); - const isOptimal = state.paretoSerializerNames.includes(r.serializer); - - tr.innerHTML = ` - ${r.serializer} - ${formatOps(r.avg_ops_per_sec)} - ${formatTime(r.avg_time_total_ns)} - ${formatTime(r.avg_time_ser_ns)} - ${formatTime(r.avg_time_deser_ns)} - ${r.median_size_bytes} Bytes - - ${isOptimal - ? 'Optimal' - : 'Compromised'} - - `; - tbody.appendChild(tr); - }); } -// Upload Handler function handleFileUpload(file) { if (!file) return; - const status = document.getElementById('upload-status'); - status.style.display = 'block'; - status.style.color = 'var(--text-secondary)'; - status.textContent = `Analyzing ${file.name}...`; - + if (status) { + status.style.display = 'block'; + status.style.color = 'var(--text-secondary)'; + status.textContent = `Analyzing ${file.name}…`; + } const reader = new FileReader(); reader.onload = (e) => { try { @@ -1761,40 +3342,35 @@ function handleFileUpload(file) { if (!data.groups || !Array.isArray(data.groups)) { throw new Error("Invalid stats format. Missing 'groups' array."); } - processStatsData(data); - - status.style.color = 'var(--accent-green)'; - status.textContent = `Successfully loaded ${file.name}!`; + if (status) { + status.style.color = 'var(--color-green)'; + status.textContent = `Successfully loaded ${file.name}`; + } showNotification(`Loaded ${file.name} successfully.`, 'success'); - - document.getElementById('lang-select').value = ''; } catch (err) { - status.style.color = 'var(--accent-red)'; - status.textContent = `Failed: ${err.message}`; + if (status) { + status.style.color = 'var(--color-red)'; + status.textContent = `Failed: ${err.message}`; + } showNotification(`Upload failed: ${err.message}`, 'error'); } }; - reader.readAsText(file); } -// Dynamic CSV parsing and aggregations function parseCSV(text) { - const lines = text.split('\n').map(line => line.trim()).filter(line => line.length > 0); - if (lines.length === 0) return []; - + const lines = text.trim().split(/\r?\n/); + if (lines.length < 2) return []; const headers = parseCSVLine(lines[0]); const records = []; - for (let i = 1; i < lines.length; i++) { + if (!lines[i].trim()) continue; const values = parseCSVLine(lines[i]); - if (values.length !== headers.length) continue; - const rec = {}; - for (let j = 0; j < headers.length; j++) { - rec[headers[j]] = values[j]; - } + headers.forEach((h, idx) => { + rec[h] = values[idx]; + }); records.push(rec); } return records; @@ -1802,95 +3378,94 @@ function parseCSV(text) { function parseCSVLine(line) { const result = []; - let current = ''; + let cur = ''; let inQuotes = false; - for (let i = 0; i < line.length; i++) { - const char = line[i]; - if (char === '"') { - inQuotes = !inQuotes; - } else if (char === ',' && !inQuotes) { - result.push(current.trim()); - current = ''; - } else { - current += char; - } + const ch = line[i]; + if (ch === '"') { + if (inQuotes && line[i + 1] === '"') { + cur += '"'; + i++; + } else inQuotes = !inQuotes; + } else if (ch === ',' && !inQuotes) { + result.push(cur); + cur = ''; + } else cur += ch; } - result.push(current.trim()); + result.push(cur); return result; } function aggregateCSVRecords(records) { - const groups = {}; - - records.forEach(r => { - const serializer = r.SerializerName || r.serializer || ''; - const testData = r.TestDataName || r.test_data || ''; - const mode = r.StringOrStream || r.mode || ''; - - if (!serializer || !testData || !mode) return; - - const key = `${serializer}|${testData}|${mode}`; - if (!groups[key]) { - groups[key] = { + const map = new Map(); + for (const r of records) { + const serializer = r.Serializer || r.serializer; + const test_data = r.TestData || r.test_data || r.DataType; + const mode = r.Mode || r.mode || 'bytes'; + if (!serializer) continue; + const key = `${serializer}|${test_data}|${mode}`; + if (!map.has(key)) { + map.set(key, { serializer, - test_data: testData, + test_data, mode, - timesSer: [], - timesDeser: [], - timesTotal: [], + times: [], + ser: [], + deser: [], sizes: [], - opsSec: [] - }; + ops: [], + fidelities: [], + }); } - - const tSer = parseFloat(r.TimeSer || r.time_ser || 0); - const tDeser = parseFloat(r.TimeDeser || r.time_deser || 0); - const tTotal = parseFloat(r.TimeSerAndDeser || r.time_total || 0) || (tSer + tDeser); - const size = parseFloat(r.Size || r.size || 0); - const ops = parseFloat(r.OpPerSecSerAndDeser || r.ops_sec || 0); - - groups[key].timesSer.push(tSer); - groups[key].timesDeser.push(tDeser); - groups[key].timesTotal.push(tTotal); - groups[key].sizes.push(size); - groups[key].opsSec.push(ops); - }); - - const resultGroups = []; - Object.values(groups).forEach(g => { - const avgTotal = mean(g.timesTotal); - const avgOps = mean(g.opsSec) || (1e9 / avgTotal); - - resultGroups.push({ + const g = map.get(key); + const total = Number(r.TotalTimeNs || r.total_time_ns || r.TimeNs); + const ser = Number(r.SerTimeNs || r.ser_time_ns); + const deser = Number(r.DeserTimeNs || r.deser_time_ns); + const size = Number(r.SizeBytes || r.size_bytes || r.PayloadSize); + const ops = Number(r.OpsPerSec || r.ops_per_sec); + const fid = Number(r.FidelityScore || r.fidelity); + if (Number.isFinite(total)) g.times.push(total); + if (Number.isFinite(ser)) g.ser.push(ser); + if (Number.isFinite(deser)) g.deser.push(deser); + if (Number.isFinite(size)) g.sizes.push(size); + if (Number.isFinite(ops)) g.ops.push(ops); + if (Number.isFinite(fid)) g.fidelities.push(fid); + } + + const groups = []; + for (const g of map.values()) { + if (!g.times.length && !g.ops.length) continue; + const avg_time_total_ns = mean(g.times); + const avg_ops_per_sec = + g.ops.length > 0 ? mean(g.ops) : avg_time_total_ns > 0 ? 1e9 / avg_time_total_ns : 0; + groups.push({ serializer: g.serializer, test_data: g.test_data, mode: g.mode, - avg_time_ser_ns: mean(g.timesSer), - avg_time_deser_ns: mean(g.timesDeser), - avg_time_total_ns: avgTotal, + avg_time_total_ns, + avg_time_ser_ns: mean(g.ser), + avg_time_deser_ns: mean(g.deser), + avg_ops_per_sec, median_size_bytes: median(g.sizes), - avg_ops_per_sec: avgOps, - runs: g.timesTotal.length + mean_fidelity: g.fidelities.length ? mean(g.fidelities) : null, + runs: Math.max(g.times.length, g.ops.length), }); - }); - - return resultGroups; + } + return groups; } function mean(arr) { - if (arr.length === 0) return 0; - return arr.reduce((sum, val) => sum + val, 0) / arr.length; + if (!arr || !arr.length) return null; + return arr.reduce((a, b) => a + b, 0) / arr.length; } function median(arr) { - if (arr.length === 0) return 0; - const sorted = [...arr].sort((a, b) => a - b); - const mid = Math.floor(sorted.length / 2); - return sorted.length % 2 !== 0 ? sorted[mid] : (sorted[mid - 1] + sorted[mid]) / 2; + if (!arr || !arr.length) return null; + const s = [...arr].sort((a, b) => a - b); + const m = Math.floor(s.length / 2); + return s.length % 2 ? s[m] : (s[m - 1] + s[m]) / 2; } -// Download helpers function triggerDownload(url, filename) { const a = document.createElement('a'); a.href = url; @@ -1900,73 +3475,48 @@ function triggerDownload(url, filename) { a.remove(); } +function downloadDataUrl(dataUrl, filename) { + const a = document.createElement('a'); + a.href = dataUrl; + a.download = filename; + document.body.appendChild(a); + a.click(); + a.remove(); +} + async function downloadFileWithFallback(url, fallbackUrl, filename) { try { - const res = await fetch(url); - if (res.ok) { - triggerDownload(url, filename); - } else if (fallbackUrl) { - const fbRes = await fetch(fallbackUrl); - if (fbRes.ok) { - // Change suffix to environment json - const fbFilename = filename.replace('.configs.json', '.environment.json'); - triggerDownload(fallbackUrl, fbFilename); - } else { - showNotification("File not found on local server.", "error"); - } - } else { - showNotification("File not found on local server.", "error"); - } + let res = await fetch(url); + if (!res.ok && fallbackUrl) res = await fetch(fallbackUrl); + if (!res.ok) throw new Error('Download failed'); + const blob = await res.blob(); + const obj = URL.createObjectURL(blob); + triggerDownload(obj, filename); + URL.revokeObjectURL(obj); } catch (e) { - showNotification("Download failed: " + e.message, "error"); + showNotification('Download failed: ' + e.message, 'error'); } } -// Helpers -function formatTime(ns) { - if (ns === null || ns === undefined) return '-'; - if (ns < 1000) return `${ns.toFixed(0)}ns`; - if (ns < 1000000) return `${(ns / 1000).toFixed(2)}µs`; - return `${(ns / 1000000).toFixed(2)}ms`; -} - -function formatOps(ops) { - if (ops === null || ops === undefined) return '-'; - if (ops < 1000) return `${ops.toFixed(0)}/s`; - if (ops < 1000000) return `${(ops / 1000).toFixed(1)}K/s`; - return `${(ops / 1000000).toFixed(2)}M/s`; -} - function showNotification(msg, type) { const notif = document.createElement('div'); notif.style.position = 'fixed'; notif.style.bottom = '2rem'; notif.style.right = '2rem'; - notif.style.padding = '1rem 1.5rem'; + notif.style.padding = '0.85rem 1.25rem'; notif.style.borderRadius = '8px'; notif.style.color = '#fff'; notif.style.zIndex = '10000'; - notif.style.backdropFilter = 'blur(10px)'; - notif.style.boxShadow = '0 10px 30px rgba(0,0,0,0.5)'; - notif.style.fontSize = '0.95rem'; - notif.style.transition = 'opacity 0.3s ease'; - - if (type === 'error') { - notif.style.background = 'rgba(239, 68, 68, 0.8)'; - notif.style.border = '1px solid rgba(239, 68, 68, 0.3)'; - } else if (type === 'info') { - notif.style.background = 'rgba(59, 130, 246, 0.8)'; - notif.style.border = '1px solid rgba(59, 130, 246, 0.3)'; - } else { - notif.style.background = 'rgba(16, 185, 129, 0.8)'; - notif.style.border = '1px solid rgba(16, 185, 129, 0.3)'; - } - + notif.style.fontSize = '0.9rem'; + notif.style.boxShadow = '0 8px 24px rgba(0,0,0,0.2)'; notif.textContent = msg; + if (type === 'error') notif.style.background = 'rgba(217, 48, 37, 0.92)'; + else if (type === 'info') notif.style.background = 'rgba(26, 115, 232, 0.92)'; + else notif.style.background = 'rgba(30, 142, 62, 0.92)'; document.body.appendChild(notif); - setTimeout(() => { notif.style.opacity = '0'; + notif.style.transition = 'opacity 0.3s'; setTimeout(() => notif.remove(), 300); - }, 4000); + }, 2800); } diff --git a/dashboard/package.json b/dashboard/package.json index 9a1831fd..4ad4d39e 100644 --- a/dashboard/package.json +++ b/dashboard/package.json @@ -1,6 +1,6 @@ { "name": "serializer-benchmark-dashboard", - "version": "0.2.0", + "version": "0.3.0", "description": "Interactive analytics dashboard for serializer benchmarks", "scripts": { "dev": "vite --port 5173 --open", @@ -10,5 +10,6 @@ }, "devDependencies": { "vite": "^5.0.0" - } + }, + "type": "module" } diff --git a/dashboard/public/data/c_latest.json.gz b/dashboard/public/data/c_latest.json.gz index e2944698..ffc8032c 100644 Binary files a/dashboard/public/data/c_latest.json.gz and b/dashboard/public/data/c_latest.json.gz differ diff --git a/dashboard/public/data/cpp_latest.json.gz b/dashboard/public/data/cpp_latest.json.gz index a89a8387..51a4a176 100644 Binary files a/dashboard/public/data/cpp_latest.json.gz and b/dashboard/public/data/cpp_latest.json.gz differ diff --git a/dashboard/public/data/csharp_latest.json.gz b/dashboard/public/data/csharp_latest.json.gz index 2587640c..0bff5975 100644 Binary files a/dashboard/public/data/csharp_latest.json.gz and b/dashboard/public/data/csharp_latest.json.gz differ diff --git a/dashboard/public/data/go_latest.json.gz b/dashboard/public/data/go_latest.json.gz index b06c0cec..e60196e5 100644 Binary files a/dashboard/public/data/go_latest.json.gz and b/dashboard/public/data/go_latest.json.gz differ diff --git a/dashboard/public/data/java_latest.json.gz b/dashboard/public/data/java_latest.json.gz index 8624dfae..ed0b4449 100644 Binary files a/dashboard/public/data/java_latest.json.gz and b/dashboard/public/data/java_latest.json.gz differ diff --git a/dashboard/public/data/javascript_latest.json.gz b/dashboard/public/data/javascript_latest.json.gz index 393ccaf7..d91232e9 100644 Binary files a/dashboard/public/data/javascript_latest.json.gz and b/dashboard/public/data/javascript_latest.json.gz differ diff --git a/dashboard/public/data/python_latest.json.gz b/dashboard/public/data/python_latest.json.gz index bc91411b..c21faab7 100644 Binary files a/dashboard/public/data/python_latest.json.gz and b/dashboard/public/data/python_latest.json.gz differ diff --git a/dashboard/public/data/rust_latest.json.gz b/dashboard/public/data/rust_latest.json.gz index 4d2559e8..268ab954 100644 Binary files a/dashboard/public/data/rust_latest.json.gz and b/dashboard/public/data/rust_latest.json.gz differ diff --git a/dashboard/public/data/stats_c_latest.json b/dashboard/public/data/stats_c_latest.json deleted file mode 100644 index e3c7cd8e..00000000 --- a/dashboard/public/data/stats_c_latest.json +++ /dev/null @@ -1 +0,0 @@ -{"schema_version": "2.0", "generated": "2026-07-24T20:23:53.568136", "language": "c", "questions": {"Q1": "How fast?", "Q2": "How compact?", "Q3": "How stable?", "Q4": "Under which workloads does it win?"}, "groups": [{"serializer": "custom-binary", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "v2-1.0", "avg_time_ser_ns": 54.92857142857143, "avg_time_deser_ns": 57.97959183673469, "avg_time_total_ns": 112.90816326530613, "median_size_bytes": 55.0, "avg_ops_per_sec": 8856755.535472209, "min_ops_per_sec": 6849315.068493151, "max_ops_per_sec": 13157894.736842105, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 54.92857142857143, "ser_median_ns": 57.0, "ser_std_ns": 10.368717822293677, "ser_mad_ns": 8.0, "ser_cv": 0.18876729455411115, "ser_min_ns": 28.0, "ser_max_ns": 72.0, "ser_p5_ns": 37.85, "ser_p25_ns": 47.0, "ser_p50_ns": 57.0, "ser_p75_ns": 63.0, "ser_p95_ns": 70.0, "ser_p99_ns": 71.03, "ser_ci_low_ns": 52.948724489795914, "ser_ci_high_ns": 57.03086734693878, "deser_mean_ns": 57.97959183673469, "deser_median_ns": 58.0, "deser_std_ns": 8.115124725857351, "deser_mad_ns": 6.0, "deser_cv": 0.13996519238543126, "deser_min_ns": 45.0, "deser_max_ns": 77.0, "deser_p5_ns": 47.0, "deser_p25_ns": 50.0, "deser_p50_ns": 58.0, "deser_p75_ns": 62.75, "deser_p95_ns": 73.0, "deser_p99_ns": 76.03, "deser_ci_low_ns": 56.38775510204081, "deser_ci_high_ns": 59.51020408163265, "total_mean_ns": 112.90816326530613, "total_median_ns": 115.5, "total_std_ns": 14.755105169072474, "total_mad_ns": 10.5, "total_cv": 0.13068235938265724, "total_min_ns": 76.0, "total_max_ns": 146.0, "total_p5_ns": 87.85, "total_p25_ns": 101.25, "total_p50_ns": 115.5, "total_p75_ns": 123.0, "total_p95_ns": 136.14999999999998, "total_p99_ns": 145.03, "total_ci_low_ns": 110.0, "total_ci_high_ns": 115.9795918367347, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "parson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.5.3", "avg_time_ser_ns": 4199.10752688172, "avg_time_deser_ns": 1506.3548387096773, "avg_time_total_ns": 5705.462365591397, "median_size_bytes": 170.0, "avg_ops_per_sec": 175270.63293429426, "min_ops_per_sec": 155860.34912718204, "max_ops_per_sec": 196425.06383814575, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 4199.10752688172, "ser_median_ns": 4173.0, "ser_std_ns": 207.64442131586347, "ser_mad_ns": 129.0, "ser_cv": 0.049449655667679775, "ser_min_ns": 3748.0, "ser_max_ns": 4736.0, "ser_p5_ns": 3894.6, "ser_p25_ns": 4071.0, "ser_p50_ns": 4173.0, "ser_p75_ns": 4320.0, "ser_p95_ns": 4581.4, "ser_p99_ns": 4669.76, "ser_ci_low_ns": 4157.396505376344, "ser_ci_high_ns": 4241.075268817204, "deser_mean_ns": 1506.3548387096773, "deser_median_ns": 1497.0, "deser_std_ns": 146.67648852530868, "deser_mad_ns": 94.0, "deser_cv": 0.09737180427617555, "deser_min_ns": 1206.0, "deser_max_ns": 1822.0, "deser_p5_ns": 1264.0, "deser_p25_ns": 1412.0, "deser_p50_ns": 1497.0, "deser_p75_ns": 1603.0, "deser_p95_ns": 1753.9999999999998, "deser_p99_ns": 1813.72, "deser_ci_low_ns": 1477.0077956989248, "deser_ci_high_ns": 1535.8725806451612, "total_mean_ns": 5705.462365591397, "total_median_ns": 5660.0, "total_std_ns": 324.59428050694515, "total_mad_ns": 220.0, "total_cv": 0.056891844991304126, "total_min_ns": 5091.0, "total_max_ns": 6416.0, "total_p5_ns": 5189.2, "total_p25_ns": 5494.0, "total_p50_ns": 5660.0, "total_p75_ns": 5921.0, "total_p95_ns": 6243.0, "total_p99_ns": 6402.2, "total_ci_low_ns": 5640.471774193548, "total_ci_high_ns": 5770.689784946237, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.569970988657357}, {"serializer": "nanopb", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.4.9", "avg_time_ser_ns": 96.7032967032967, "avg_time_deser_ns": 100.54945054945055, "avg_time_total_ns": 197.25274725274724, "median_size_bytes": 51.0, "avg_ops_per_sec": 5069637.883008357, "min_ops_per_sec": 3831417.624521073, "max_ops_per_sec": 7407407.407407408, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 96.7032967032967, "ser_median_ns": 96.0, "ser_std_ns": 16.55126346670617, "ser_mad_ns": 10.0, "ser_cv": 0.17115511084889337, "ser_min_ns": 58.0, "ser_max_ns": 138.0, "ser_p5_ns": 73.0, "ser_p25_ns": 84.5, "ser_p50_ns": 96.0, "ser_p75_ns": 106.0, "ser_p95_ns": 125.5, "ser_p99_ns": 131.69999999999996, "ser_ci_low_ns": 93.29642857142858, "ser_ci_high_ns": 100.37362637362638, "deser_mean_ns": 100.54945054945055, "deser_median_ns": 101.0, "deser_std_ns": 12.35697170405232, "deser_mad_ns": 8.0, "deser_cv": 0.1228944726851105, "deser_min_ns": 76.0, "deser_max_ns": 130.0, "deser_p5_ns": 79.0, "deser_p25_ns": 93.5, "deser_p50_ns": 101.0, "deser_p75_ns": 109.0, "deser_p95_ns": 118.0, "deser_p99_ns": 125.49999999999997, "deser_ci_low_ns": 98.0434065934066, "deser_ci_high_ns": 103.13296703296703, "total_mean_ns": 197.25274725274724, "total_median_ns": 197.0, "total_std_ns": 24.224227269681624, "total_mad_ns": 14.0, "total_cv": 0.12280806025298205, "total_min_ns": 135.0, "total_max_ns": 261.0, "total_p5_ns": 159.5, "total_p25_ns": 184.5, "total_p50_ns": 197.0, "total_p75_ns": 214.5, "total_p95_ns": 237.5, "total_p99_ns": 247.49999999999991, "total_ci_low_ns": 192.14258241758242, "total_ci_high_ns": 202.4728021978022, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.9979816102265082, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.224895671055012}, {"serializer": "tinycbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.6.0", "avg_time_ser_ns": 322.0412371134021, "avg_time_deser_ns": 1345.0309278350514, "avg_time_total_ns": 1667.0721649484535, "median_size_bytes": 125.0, "avg_ops_per_sec": 599854.0561265507, "min_ops_per_sec": 537634.4086021505, "max_ops_per_sec": 679809.6532970768, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 322.0412371134021, "ser_median_ns": 320.0, "ser_std_ns": 57.311996549183384, "ser_mad_ns": 43.0, "ser_cv": 0.17796477576255804, "ser_min_ns": 196.0, "ser_max_ns": 446.0, "ser_p5_ns": 226.60000000000002, "ser_p25_ns": 282.0, "ser_p50_ns": 320.0, "ser_p75_ns": 363.0, "ser_p95_ns": 409.7999999999999, "ser_p99_ns": 442.15999999999997, "ser_ci_low_ns": 310.38118556701033, "ser_ci_high_ns": 332.6925257731959, "deser_mean_ns": 1345.0309278350514, "deser_median_ns": 1344.0, "deser_std_ns": 43.08916472662806, "deser_mad_ns": 28.0, "deser_cv": 0.03203581704696111, "deser_min_ns": 1257.0, "deser_max_ns": 1458.0, "deser_p5_ns": 1273.6, "deser_p25_ns": 1316.0, "deser_p50_ns": 1344.0, "deser_p75_ns": 1373.0, "deser_p95_ns": 1407.0, "deser_p99_ns": 1455.12, "deser_ci_low_ns": 1336.7626288659794, "deser_ci_high_ns": 1353.6092783505155, "total_mean_ns": 1667.0721649484535, "total_median_ns": 1664.0, "total_std_ns": 83.19733662387182, "total_mad_ns": 61.0, "total_cv": 0.04990625983275554, "total_min_ns": 1471.0, "total_max_ns": 1860.0, "total_p5_ns": 1521.6, "total_p25_ns": 1608.0, "total_p50_ns": 1664.0, "total_p75_ns": 1732.0, "total_p95_ns": 1792.8, "total_p99_ns": 1829.2799999999997, "total_ci_low_ns": 1650.5458762886599, "total_ci_high_ns": 1683.1561855670102, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.974282431074784}, {"serializer": "mpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.1", "avg_time_ser_ns": 245.07692307692307, "avg_time_deser_ns": 636.2417582417582, "avg_time_total_ns": 881.3186813186813, "median_size_bytes": 125.0, "avg_ops_per_sec": 1134663.3416458853, "min_ops_per_sec": 814332.2475570033, "max_ops_per_sec": 1602564.1025641025, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 245.07692307692307, "ser_median_ns": 246.0, "ser_std_ns": 46.377731909764805, "ser_mad_ns": 33.0, "ser_cv": 0.18923744972597065, "ser_min_ns": 136.0, "ser_max_ns": 338.0, "ser_p5_ns": 173.5, "ser_p25_ns": 213.0, "ser_p50_ns": 246.0, "ser_p75_ns": 278.5, "ser_p95_ns": 321.0, "ser_p99_ns": 337.1, "ser_ci_low_ns": 235.45027472527474, "ser_ci_high_ns": 254.4620879120879, "deser_mean_ns": 636.2417582417582, "deser_median_ns": 627.0, "deser_std_ns": 105.80152704835183, "deser_mad_ns": 74.0, "deser_cv": 0.16629139109122967, "deser_min_ns": 428.0, "deser_max_ns": 917.0, "deser_p5_ns": 478.0, "deser_p25_ns": 559.0, "deser_p50_ns": 627.0, "deser_p75_ns": 703.0, "deser_p95_ns": 832.0, "deser_p99_ns": 880.9999999999998, "deser_ci_low_ns": 615.3065934065934, "deser_ci_high_ns": 658.9266483516483, "total_mean_ns": 881.3186813186813, "total_median_ns": 870.0, "total_std_ns": 136.9793884836433, "total_mad_ns": 85.0, "total_cv": 0.1554254906734606, "total_min_ns": 624.0, "total_max_ns": 1228.0, "total_p5_ns": 663.0, "total_p25_ns": 791.0, "total_p50_ns": 870.0, "total_p75_ns": 967.0, "total_p95_ns": 1114.0, "total_p99_ns": 1216.3, "total_ci_low_ns": 853.7903846153846, "total_ci_high_ns": 909.2675824175824, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.003708263830257}, {"serializer": "ubj", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.0-min", "avg_time_ser_ns": 107.56122448979592, "avg_time_deser_ns": 90.1938775510204, "avg_time_total_ns": 197.75510204081633, "median_size_bytes": 92.0, "avg_ops_per_sec": 5056759.545923633, "min_ops_per_sec": 3846153.846153846, "max_ops_per_sec": 7042253.52112676, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 107.56122448979592, "ser_median_ns": 109.5, "ser_std_ns": 18.060075193944805, "ser_mad_ns": 13.5, "ser_cv": 0.1679050724795172, "ser_min_ns": 67.0, "ser_max_ns": 143.0, "ser_p5_ns": 72.85, "ser_p25_ns": 95.25, "ser_p50_ns": 109.5, "ser_p75_ns": 120.75, "ser_p95_ns": 136.0, "ser_p99_ns": 139.12, "ser_ci_low_ns": 104.12168367346939, "ser_ci_high_ns": 111.23494897959183, "deser_mean_ns": 90.1938775510204, "deser_median_ns": 90.0, "deser_std_ns": 14.500379065976745, "deser_mad_ns": 9.5, "deser_cv": 0.16076899518788562, "deser_min_ns": 61.0, "deser_max_ns": 120.0, "deser_p5_ns": 64.0, "deser_p25_ns": 80.25, "deser_p50_ns": 90.0, "deser_p75_ns": 98.5, "deser_p95_ns": 114.14999999999999, "deser_p99_ns": 119.03, "deser_ci_low_ns": 87.38775510204081, "deser_ci_high_ns": 92.90841836734694, "total_mean_ns": 197.75510204081633, "total_median_ns": 199.5, "total_std_ns": 27.615945350799535, "total_mad_ns": 18.0, "total_cv": 0.1396471952723609, "total_min_ns": 142.0, "total_max_ns": 260.0, "total_p5_ns": 147.0, "total_p25_ns": 181.25, "total_p50_ns": 199.5, "total_p75_ns": 217.0, "total_p95_ns": 243.29999999999998, "total_p99_ns": 255.15, "total_ci_low_ns": 192.16224489795917, "total_ci_high_ns": 203.0612244897959, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.9988546438983756, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.817468015574946}, {"serializer": "cbor-encode", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.11.0", "avg_time_ser_ns": 1513.2043010752689, "avg_time_deser_ns": 1396.1505376344087, "avg_time_total_ns": 2909.3548387096776, "median_size_bytes": 137.0, "avg_ops_per_sec": 343718.8158332409, "min_ops_per_sec": 299132.51570445707, "max_ops_per_sec": 404367.1653861706, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1513.2043010752689, "ser_median_ns": 1518.0, "ser_std_ns": 143.25103832538065, "ser_mad_ns": 94.0, "ser_cv": 0.09466734810599454, "ser_min_ns": 1105.0, "ser_max_ns": 1886.0, "ser_p5_ns": 1290.2, "ser_p25_ns": 1420.0, "ser_p50_ns": 1518.0, "ser_p75_ns": 1600.0, "ser_p95_ns": 1730.0, "ser_p99_ns": 1846.4399999999998, "ser_ci_low_ns": 1483.3860215053764, "ser_ci_high_ns": 1542.7666666666667, "deser_mean_ns": 1396.1505376344087, "deser_median_ns": 1385.0, "deser_std_ns": 50.58547356284581, "deser_mad_ns": 38.0, "deser_cv": 0.03623210549240354, "deser_min_ns": 1314.0, "deser_max_ns": 1527.0, "deser_p5_ns": 1327.4, "deser_p25_ns": 1354.0, "deser_p50_ns": 1385.0, "deser_p75_ns": 1434.0, "deser_p95_ns": 1485.4, "deser_p99_ns": 1518.72, "deser_ci_low_ns": 1386.2997311827958, "deser_ci_high_ns": 1406.9381720430108, "total_mean_ns": 2909.3548387096776, "total_median_ns": 2895.0, "total_std_ns": 169.04769362785643, "total_mad_ns": 110.0, "total_cv": 0.05810487307310732, "total_min_ns": 2473.0, "total_max_ns": 3343.0, "total_p5_ns": 2641.6, "total_p25_ns": 2802.0, "total_p50_ns": 2895.0, "total_p75_ns": 3024.0, "total_p95_ns": 3180.9999999999995, "total_p99_ns": 3304.36, "total_ci_low_ns": 2875.772043010753, "total_ci_high_ns": 2942.7236559139783, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.521656605200185}, {"serializer": "zcbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.9", "avg_time_ser_ns": 477.68131868131866, "avg_time_deser_ns": 1441.5274725274726, "avg_time_total_ns": 1919.2087912087911, "median_size_bytes": 126.0, "avg_ops_per_sec": 521048.05093674135, "min_ops_per_sec": 473484.8484848485, "max_ops_per_sec": 582072.1769499418, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 477.68131868131866, "ser_median_ns": 476.0, "ser_std_ns": 47.212493431501116, "ser_mad_ns": 34.0, "ser_cv": 0.09883680099074287, "ser_min_ns": 359.0, "ser_max_ns": 611.0, "ser_p5_ns": 405.0, "ser_p25_ns": 445.5, "ser_p50_ns": 476.0, "ser_p75_ns": 512.0, "ser_p95_ns": 555.0, "ser_p99_ns": 571.3999999999997, "ser_ci_low_ns": 468.67967032967033, "ser_ci_high_ns": 487.8038461538461, "deser_mean_ns": 1441.5274725274726, "deser_median_ns": 1438.0, "deser_std_ns": 45.26792847022434, "deser_mad_ns": 34.0, "deser_cv": 0.03140275113234904, "deser_min_ns": 1342.0, "deser_max_ns": 1551.0, "deser_p5_ns": 1375.0, "deser_p25_ns": 1407.5, "deser_p50_ns": 1438.0, "deser_p75_ns": 1477.0, "deser_p95_ns": 1513.0, "deser_p99_ns": 1540.1999999999998, "deser_ci_low_ns": 1432.371978021978, "deser_ci_high_ns": 1451.142857142857, "total_mean_ns": 1919.2087912087911, "total_median_ns": 1912.0, "total_std_ns": 79.6640887286551, "total_mad_ns": 60.0, "total_cv": 0.041508818161717365, "total_min_ns": 1718.0, "total_max_ns": 2112.0, "total_p5_ns": 1812.5, "total_p25_ns": 1855.0, "total_p50_ns": 1912.0, "total_p75_ns": 1979.0, "total_p95_ns": 2049.5, "total_p99_ns": 2093.1, "total_ci_low_ns": 1903.6222527472528, "total_ci_high_ns": 1936.607967032967, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 31.96653233798255}, {"serializer": "json-c", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.15", "avg_time_ser_ns": 2074.4725274725274, "avg_time_deser_ns": 2470.032967032967, "avg_time_total_ns": 4544.505494505494, "median_size_bytes": 170.0, "avg_ops_per_sec": 220045.94365856607, "min_ops_per_sec": 182748.5380116959, "max_ops_per_sec": 261028.45210127905, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 2074.4725274725274, "ser_median_ns": 2065.0, "ser_std_ns": 127.3898077781858, "ser_mad_ns": 82.0, "ser_cv": 0.06140828865706579, "ser_min_ns": 1766.0, "ser_max_ns": 2393.0, "ser_p5_ns": 1883.5, "ser_p25_ns": 1983.5, "ser_p50_ns": 2065.0, "ser_p75_ns": 2144.5, "ser_p95_ns": 2303.0, "ser_p99_ns": 2373.2, "ser_ci_low_ns": 2049.3947802197804, "ser_ci_high_ns": 2100.4510989010987, "deser_mean_ns": 2470.032967032967, "deser_median_ns": 2477.0, "deser_std_ns": 205.71492953704706, "deser_mad_ns": 137.0, "deser_cv": 0.08328428498027468, "deser_min_ns": 2043.0, "deser_max_ns": 3107.0, "deser_p5_ns": 2121.5, "deser_p25_ns": 2324.5, "deser_p50_ns": 2477.0, "deser_p75_ns": 2597.0, "deser_p95_ns": 2766.5, "deser_p99_ns": 2960.2999999999993, "deser_ci_low_ns": 2426.171428571429, "deser_ci_high_ns": 2510.6815934065935, "total_mean_ns": 4544.505494505494, "total_median_ns": 4531.0, "total_std_ns": 308.7914569063786, "total_mad_ns": 208.0, "total_cv": 0.06794830752866751, "total_min_ns": 3831.0, "total_max_ns": 5472.0, "total_p5_ns": 4110.0, "total_p25_ns": 4326.5, "total_p50_ns": 4531.0, "total_p75_ns": 4740.0, "total_p95_ns": 5016.5, "total_p99_ns": 5312.699999999999, "total_ci_low_ns": 4481.600274725275, "total_ci_high_ns": 4608.33434065934, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.578475106947913}, {"serializer": "libbson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.27.5", "avg_time_ser_ns": 940.4301075268817, "avg_time_deser_ns": 669.9139784946236, "avg_time_total_ns": 1610.3440860215053, "median_size_bytes": 153.0, "avg_ops_per_sec": 620985.2966707175, "min_ops_per_sec": 519480.51948051946, "max_ops_per_sec": 782472.613458529, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 940.4301075268817, "ser_median_ns": 933.0, "ser_std_ns": 113.95521601750845, "ser_mad_ns": 90.0, "ser_cv": 0.12117350891411258, "ser_min_ns": 706.0, "ser_max_ns": 1274.0, "ser_p5_ns": 773.2, "ser_p25_ns": 855.0, "ser_p50_ns": 933.0, "ser_p75_ns": 1031.0, "ser_p95_ns": 1100.3999999999999, "ser_p99_ns": 1179.2399999999998, "ser_ci_low_ns": 917.6325268817204, "ser_ci_high_ns": 963.875, "deser_mean_ns": 669.9139784946236, "deser_median_ns": 669.0, "deser_std_ns": 59.667312425171374, "deser_mad_ns": 43.0, "deser_cv": 0.08906712554237325, "deser_min_ns": 565.0, "deser_max_ns": 836.0, "deser_p5_ns": 574.8, "deser_p25_ns": 626.0, "deser_p50_ns": 669.0, "deser_p75_ns": 712.0, "deser_p95_ns": 770.8, "deser_p99_ns": 817.5999999999999, "deser_ci_low_ns": 658.0422043010752, "deser_ci_high_ns": 681.4752688172043, "total_mean_ns": 1610.3440860215053, "total_median_ns": 1611.0, "total_std_ns": 157.91449906059208, "total_mad_ns": 129.0, "total_cv": 0.09806258204774952, "total_min_ns": 1278.0, "total_max_ns": 1925.0, "total_p5_ns": 1357.0, "total_p25_ns": 1482.0, "total_p50_ns": 1611.0, "total_p75_ns": 1739.0, "total_p95_ns": 1853.9999999999998, "total_p99_ns": 1914.8799999999999, "total_ci_low_ns": 1578.5260752688173, "total_ci_high_ns": 1642.5198924731183, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.47548539836993}, {"serializer": "protobuf-wire", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "wire-v2", "avg_time_ser_ns": 101.14432989690722, "avg_time_deser_ns": 98.3917525773196, "avg_time_total_ns": 199.53608247422682, "median_size_bytes": 51.0, "avg_ops_per_sec": 5011624.903125807, "min_ops_per_sec": 3816793.893129771, "max_ops_per_sec": 8064516.129032258, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 101.14432989690722, "ser_median_ns": 102.0, "ser_std_ns": 19.440073350942747, "ser_mad_ns": 13.0, "ser_cv": 0.19220131638379842, "ser_min_ns": 50.0, "ser_max_ns": 142.0, "ser_p5_ns": 67.0, "ser_p25_ns": 87.0, "ser_p50_ns": 102.0, "ser_p75_ns": 114.0, "ser_p95_ns": 129.2, "ser_p99_ns": 141.04, "ser_ci_low_ns": 97.14432989690722, "ser_ci_high_ns": 105.0618556701031, "deser_mean_ns": 98.3917525773196, "deser_median_ns": 97.0, "deser_std_ns": 13.77842266993859, "deser_mad_ns": 10.0, "deser_cv": 0.14003635781475726, "deser_min_ns": 74.0, "deser_max_ns": 139.0, "deser_p5_ns": 77.0, "deser_p25_ns": 88.0, "deser_p50_ns": 97.0, "deser_p75_ns": 108.0, "deser_p95_ns": 120.19999999999999, "deser_p99_ns": 125.55999999999989, "deser_ci_low_ns": 95.79381443298969, "deser_ci_high_ns": 100.9381443298969, "total_mean_ns": 199.53608247422682, "total_median_ns": 198.0, "total_std_ns": 29.23755499341775, "total_mad_ns": 19.0, "total_cv": 0.14652765871152268, "total_min_ns": 124.0, "total_max_ns": 262.0, "total_p5_ns": 153.0, "total_p25_ns": 181.0, "total_p50_ns": 198.0, "total_p75_ns": 218.0, "total_p95_ns": 246.39999999999998, "total_p99_ns": 257.19999999999993, "total_ci_low_ns": 193.97783505154638, "total_ci_high_ns": 205.24768041237112, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.9947401641068798, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.7319926785363124}, {"serializer": "protobuf-c", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.5.0", "avg_time_ser_ns": 94.23469387755102, "avg_time_deser_ns": 105.76530612244898, "avg_time_total_ns": 200.0, "median_size_bytes": 51.0, "avg_ops_per_sec": 5000000.0, "min_ops_per_sec": 3937007.874015748, "max_ops_per_sec": 8000000.0, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 94.23469387755102, "ser_median_ns": 96.0, "ser_std_ns": 18.982249451401167, "ser_mad_ns": 13.0, "ser_cv": 0.20143589022602212, "ser_min_ns": 50.0, "ser_max_ns": 135.0, "ser_p5_ns": 61.7, "ser_p25_ns": 81.25, "ser_p50_ns": 96.0, "ser_p75_ns": 108.0, "ser_p95_ns": 124.29999999999998, "ser_p99_ns": 133.06, "ser_ci_low_ns": 90.66275510204082, "ser_ci_high_ns": 97.88801020408162, "deser_mean_ns": 105.76530612244898, "deser_median_ns": 107.0, "deser_std_ns": 13.635763332424785, "deser_mad_ns": 9.0, "deser_cv": 0.1289247280827428, "deser_min_ns": 73.0, "deser_max_ns": 140.0, "deser_p5_ns": 81.0, "deser_p25_ns": 97.0, "deser_p50_ns": 107.0, "deser_p75_ns": 115.0, "deser_p95_ns": 127.0, "deser_p99_ns": 132.24, "deser_ci_low_ns": 102.87755102040816, "deser_ci_high_ns": 108.49005102040816, "total_mean_ns": 200.0, "total_median_ns": 200.5, "total_std_ns": 27.552386840681457, "total_mad_ns": 20.5, "total_cv": 0.1377619342034073, "total_min_ns": 125.0, "total_max_ns": 254.0, "total_p5_ns": 154.0, "total_p25_ns": 179.0, "total_p50_ns": 200.5, "total_p75_ns": 220.75, "total_p95_ns": 245.45, "total_p99_ns": 251.09, "total_ci_low_ns": 194.45790816326533, "total_ci_high_ns": 205.1329081632653, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.9942732194918784, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.9254978038106176}, {"serializer": "flatcc", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.6.1", "avg_time_ser_ns": 265.5257731958763, "avg_time_deser_ns": 66.91752577319588, "avg_time_total_ns": 332.44329896907215, "median_size_bytes": 84.0, "avg_ops_per_sec": 3008031.7548919283, "min_ops_per_sec": 2309468.8221709006, "max_ops_per_sec": 4524886.877828054, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 265.5257731958763, "ser_median_ns": 268.0, "ser_std_ns": 38.7712556712189, "ser_mad_ns": 28.0, "ser_cv": 0.14601692033344593, "ser_min_ns": 160.0, "ser_max_ns": 364.0, "ser_p5_ns": 211.0, "ser_p25_ns": 233.0, "ser_p50_ns": 268.0, "ser_p75_ns": 290.0, "ser_p95_ns": 329.99999999999994, "ser_p99_ns": 346.71999999999986, "ser_ci_low_ns": 257.70850515463917, "ser_ci_high_ns": 273.4855670103093, "deser_mean_ns": 66.91752577319588, "deser_median_ns": 69.0, "deser_std_ns": 10.260837870974914, "deser_mad_ns": 7.0, "deser_cv": 0.1533355836519129, "deser_min_ns": 46.0, "deser_max_ns": 87.0, "deser_p5_ns": 47.8, "deser_p25_ns": 60.0, "deser_p50_ns": 69.0, "deser_p75_ns": 75.0, "deser_p95_ns": 82.19999999999999, "deser_p99_ns": 85.07999999999998, "deser_ci_low_ns": 64.83479381443298, "deser_ci_high_ns": 68.95927835051546, "total_mean_ns": 332.44329896907215, "total_median_ns": 339.0, "total_std_ns": 43.66228565940446, "total_mad_ns": 30.0, "total_cv": 0.13133754175465107, "total_min_ns": 221.0, "total_max_ns": 433.0, "total_p5_ns": 264.8, "total_p25_ns": 295.0, "total_p50_ns": 339.0, "total_p75_ns": 362.0, "total_p95_ns": 399.99999999999994, "total_p99_ns": 422.43999999999994, "total_ci_low_ns": 324.17474226804126, "total_ci_high_ns": 341.29896907216494, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.724095448893351}, {"serializer": "jansson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "2.14", "avg_time_ser_ns": 2482.468085106383, "avg_time_deser_ns": 2885.074468085106, "avg_time_total_ns": 5367.54255319149, "median_size_bytes": 170.0, "avg_ops_per_sec": 186304.99713605613, "min_ops_per_sec": 161969.54972465176, "max_ops_per_sec": 213857.998289136, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 2482.468085106383, "ser_median_ns": 2456.0, "ser_std_ns": 171.7736508971336, "ser_mad_ns": 106.0, "ser_cv": 0.06919470664202816, "ser_min_ns": 2137.0, "ser_max_ns": 2957.0, "ser_p5_ns": 2177.25, "ser_p25_ns": 2358.5, "ser_p50_ns": 2456.0, "ser_p75_ns": 2588.5, "ser_p95_ns": 2765.05, "ser_p99_ns": 2920.7299999999996, "ser_ci_low_ns": 2448.0398936170213, "ser_ci_high_ns": 2517.452925531915, "deser_mean_ns": 2885.074468085106, "deser_median_ns": 2880.5, "deser_std_ns": 137.07114857335733, "deser_mad_ns": 91.0, "deser_cv": 0.04751043693660177, "deser_min_ns": 2539.0, "deser_max_ns": 3217.0, "deser_p5_ns": 2676.25, "deser_p25_ns": 2797.5, "deser_p50_ns": 2880.5, "deser_p75_ns": 2980.75, "deser_p95_ns": 3106.1499999999996, "deser_p99_ns": 3141.6699999999996, "deser_ci_low_ns": 2857.434574468085, "deser_ci_high_ns": 2910.8414893617023, "total_mean_ns": 5367.54255319149, "total_median_ns": 5352.0, "total_std_ns": 292.02256006875575, "total_mad_ns": 195.5, "total_cv": 0.05440526221727333, "total_min_ns": 4676.0, "total_max_ns": 6174.0, "total_p5_ns": 4871.35, "total_p25_ns": 5179.5, "total_p50_ns": 5352.0, "total_p75_ns": 5564.25, "total_p95_ns": 5810.7, "total_p99_ns": 5995.439999999999, "total_ci_low_ns": 5307.724468085106, "total_ci_high_ns": 5427.989627659575, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.583737580196114}, {"serializer": "qcbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.5.1", "avg_time_ser_ns": 779.5957446808511, "avg_time_deser_ns": 1343.3085106382978, "avg_time_total_ns": 2122.904255319149, "median_size_bytes": 125.0, "avg_ops_per_sec": 471052.80301473796, "min_ops_per_sec": 428449.0145672665, "max_ops_per_sec": 539374.3257820928, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 779.5957446808511, "ser_median_ns": 787.5, "ser_std_ns": 64.46276230222402, "ser_mad_ns": 49.5, "ser_cv": 0.08268742196458964, "ser_min_ns": 595.0, "ser_max_ns": 918.0, "ser_p5_ns": 681.65, "ser_p25_ns": 732.75, "ser_p50_ns": 787.5, "ser_p75_ns": 821.25, "ser_p95_ns": 887.4499999999999, "ser_p99_ns": 906.8399999999999, "ser_ci_low_ns": 767.1164893617022, "ser_ci_high_ns": 792.4053191489361, "deser_mean_ns": 1343.3085106382978, "deser_median_ns": 1341.5, "deser_std_ns": 46.83694585135416, "deser_mad_ns": 30.5, "deser_cv": 0.03486685707745477, "deser_min_ns": 1234.0, "deser_max_ns": 1442.0, "deser_p5_ns": 1266.15, "deser_p25_ns": 1312.25, "deser_p50_ns": 1341.5, "deser_p75_ns": 1373.75, "deser_p95_ns": 1425.7, "deser_p99_ns": 1438.28, "deser_ci_low_ns": 1334.0095744680852, "deser_ci_high_ns": 1353.4574468085107, "total_mean_ns": 2122.904255319149, "total_median_ns": 2126.5, "total_std_ns": 96.01703132402187, "total_mad_ns": 66.0, "total_cv": 0.0452290917423344, "total_min_ns": 1854.0, "total_max_ns": 2334.0, "total_p5_ns": 1976.6, "total_p25_ns": 2060.25, "total_p50_ns": 2126.5, "total_p75_ns": 2191.0, "total_p95_ns": 2280.0, "total_p99_ns": 2310.75, "total_ci_low_ns": 2103.1255319148936, "total_ci_high_ns": 2141.9481382978724, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.44276559307545}, {"serializer": "cJSON", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.7.18", "avg_time_ser_ns": 2108.340425531915, "avg_time_deser_ns": 1103.1914893617022, "avg_time_total_ns": 3211.531914893617, "median_size_bytes": 170.0, "avg_ops_per_sec": 311377.88024539227, "min_ops_per_sec": 259672.81225655673, "max_ops_per_sec": 365363.5367190354, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 2108.340425531915, "ser_median_ns": 2093.5, "ser_std_ns": 163.72594155967442, "ser_mad_ns": 101.5, "ser_cv": 0.0776563118445959, "ser_min_ns": 1788.0, "ser_max_ns": 2536.0, "ser_p5_ns": 1874.65, "ser_p25_ns": 2000.25, "ser_p50_ns": 2093.5, "ser_p75_ns": 2208.5, "ser_p95_ns": 2407.7, "ser_p99_ns": 2505.31, "ser_ci_low_ns": 2075.6805851063828, "ser_ci_high_ns": 2143.5877659574467, "deser_mean_ns": 1103.1914893617022, "deser_median_ns": 1091.5, "deser_std_ns": 84.24672886610892, "deser_mad_ns": 55.5, "deser_cv": 0.07636636946397529, "deser_min_ns": 949.0, "deser_max_ns": 1315.0, "deser_p5_ns": 974.95, "deser_p25_ns": 1041.5, "deser_p50_ns": 1091.5, "deser_p75_ns": 1155.25, "deser_p95_ns": 1254.1, "deser_p99_ns": 1309.42, "deser_ci_low_ns": 1086.3827127659574, "deser_ci_high_ns": 1119.287234042553, "total_mean_ns": 3211.531914893617, "total_median_ns": 3198.0, "total_std_ns": 230.7521456756755, "total_mad_ns": 169.5, "total_cv": 0.0718511139825678, "total_min_ns": 2737.0, "total_max_ns": 3851.0, "total_p5_ns": 2884.3, "total_p25_ns": 3037.0, "total_p50_ns": 3198.0, "total_p75_ns": 3376.75, "total_p95_ns": 3636.6999999999994, "total_p99_ns": 3767.2999999999993, "total_ci_low_ns": 3163.923670212766, "total_ci_high_ns": 3259.5795212765956, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.077187953089197}, {"serializer": "avro-c", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.11.3", "avg_time_ser_ns": 311.05102040816325, "avg_time_deser_ns": 300.01020408163265, "avg_time_total_ns": 611.0612244897959, "median_size_bytes": 57.0, "avg_ops_per_sec": 1636497.2279740833, "min_ops_per_sec": 1207729.4685990338, "max_ops_per_sec": 2583979.3281653747, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 311.05102040816325, "ser_median_ns": 309.0, "ser_std_ns": 53.866649485401304, "ser_mad_ns": 42.5, "ser_cv": 0.1731762506829816, "ser_min_ns": 180.0, "ser_max_ns": 416.0, "ser_p5_ns": 218.85, "ser_p25_ns": 274.5, "ser_p50_ns": 309.0, "ser_p75_ns": 357.25, "ser_p95_ns": 392.15, "ser_p99_ns": 413.09000000000003, "ser_ci_low_ns": 300.14285714285717, "ser_ci_high_ns": 321.8686224489796, "deser_mean_ns": 300.01020408163265, "deser_median_ns": 300.5, "deser_std_ns": 50.93608181717314, "deser_mad_ns": 37.0, "deser_cv": 0.1697811645210356, "deser_min_ns": 196.0, "deser_max_ns": 421.0, "deser_p5_ns": 213.55, "deser_p25_ns": 264.25, "deser_p50_ns": 300.5, "deser_p75_ns": 337.0, "deser_p95_ns": 388.19999999999993, "deser_p99_ns": 412.27, "deser_ci_low_ns": 290.1117346938775, "deser_ci_high_ns": 310.0, "total_mean_ns": 611.0612244897959, "total_median_ns": 610.5, "total_std_ns": 99.69694453191948, "total_mad_ns": 63.0, "total_cv": 0.1631537733639722, "total_min_ns": 387.0, "total_max_ns": 828.0, "total_p5_ns": 427.25, "total_p25_ns": 551.25, "total_p50_ns": 610.5, "total_p75_ns": 680.5, "total_p95_ns": 765.3999999999999, "total_p99_ns": 809.57, "total_ci_low_ns": 591.4772959183673, "total_ci_high_ns": 630.1645408163265, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.963162460761156}, {"serializer": "yyjson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.10.0", "avg_time_ser_ns": 776.3684210526316, "avg_time_deser_ns": 412.0210526315789, "avg_time_total_ns": 1188.3894736842105, "median_size_bytes": 170.0, "avg_ops_per_sec": 841474.9727627838, "min_ops_per_sec": 668002.672010688, "max_ops_per_sec": 1128668.1715575622, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 776.3684210526316, "ser_median_ns": 780.0, "ser_std_ns": 79.19019021446915, "ser_mad_ns": 58.0, "ser_cv": 0.10200078734153034, "ser_min_ns": 585.0, "ser_max_ns": 995.0, "ser_p5_ns": 655.2, "ser_p25_ns": 722.0, "ser_p50_ns": 780.0, "ser_p75_ns": 825.0, "ser_p95_ns": 897.4, "ser_p99_ns": 957.4000000000001, "ser_ci_low_ns": 760.7894736842105, "ser_ci_high_ns": 792.6336842105263, "deser_mean_ns": 412.0210526315789, "deser_median_ns": 413.0, "deser_std_ns": 58.99242269182028, "deser_mad_ns": 46.0, "deser_cv": 0.14317817576319367, "deser_min_ns": 297.0, "deser_max_ns": 545.0, "deser_p5_ns": 311.4, "deser_p25_ns": 368.0, "deser_p50_ns": 413.0, "deser_p75_ns": 457.0, "deser_p95_ns": 509.79999999999995, "deser_p99_ns": 530.9000000000001, "deser_ci_low_ns": 400.53631578947363, "deser_ci_high_ns": 423.7173684210526, "total_mean_ns": 1188.3894736842105, "total_median_ns": 1192.0, "total_std_ns": 130.13612306471938, "total_mad_ns": 91.0, "total_cv": 0.10950629061133903, "total_min_ns": 886.0, "total_max_ns": 1497.0, "total_p5_ns": 976.4, "total_p25_ns": 1106.5, "total_p50_ns": 1192.0, "total_p75_ns": 1288.0, "total_p95_ns": 1382.6, "total_p99_ns": 1485.72, "total_ci_low_ns": 1162.8194736842106, "total_ci_high_ns": 1214.2028947368422, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.656955179829538}, {"serializer": "msgpack-c", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "6.0.1", "avg_time_ser_ns": 332.1290322580645, "avg_time_deser_ns": 515.6774193548387, "avg_time_total_ns": 847.8064516129032, "median_size_bytes": 125.0, "avg_ops_per_sec": 1179514.496613652, "min_ops_per_sec": 895255.1477170994, "max_ops_per_sec": 1941747.572815534, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 332.1290322580645, "ser_median_ns": 335.0, "ser_std_ns": 54.52646461690427, "ser_mad_ns": 37.0, "ser_cv": 0.16417253332595497, "ser_min_ns": 204.0, "ser_max_ns": 464.0, "ser_p5_ns": 247.20000000000002, "ser_p25_ns": 293.0, "ser_p50_ns": 335.0, "ser_p75_ns": 369.0, "ser_p95_ns": 419.4, "ser_p99_ns": 447.43999999999994, "ser_ci_low_ns": 320.997311827957, "ser_ci_high_ns": 343.35483870967744, "deser_mean_ns": 515.6774193548387, "deser_median_ns": 527.0, "deser_std_ns": 100.53640496706984, "deser_mad_ns": 68.0, "deser_cv": 0.19495987451389749, "deser_min_ns": 301.0, "deser_max_ns": 787.0, "deser_p5_ns": 342.2, "deser_p25_ns": 437.0, "deser_p50_ns": 527.0, "deser_p75_ns": 594.0, "deser_p95_ns": 661.0, "deser_p99_ns": 729.9599999999999, "deser_ci_low_ns": 494.64086021505375, "deser_ci_high_ns": 537.6368279569892, "total_mean_ns": 847.8064516129032, "total_median_ns": 872.0, "total_std_ns": 137.25026792280147, "total_mad_ns": 81.0, "total_cv": 0.16188868067905204, "total_min_ns": 515.0, "total_max_ns": 1117.0, "total_p5_ns": 606.0, "total_p25_ns": 753.0, "total_p50_ns": 872.0, "total_p75_ns": 936.0, "total_p95_ns": 1055.0, "total_p99_ns": 1089.3999999999999, "total_ci_low_ns": 820.1204301075269, "total_ci_high_ns": 875.3489247311828, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.597870096053936}, {"serializer": "jansson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "2.14", "avg_time_ser_ns": 2836.463157894737, "avg_time_deser_ns": 3163.0105263157893, "avg_time_total_ns": 5999.473684210527, "median_size_bytes": 170.0, "avg_ops_per_sec": 166681.28783226598, "min_ops_per_sec": 146972.36919459142, "max_ops_per_sec": 190876.1213972132, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 2836.463157894737, "ser_median_ns": 2815.0, "ser_std_ns": 181.07685041406884, "ser_mad_ns": 123.0, "ser_cv": 0.06383895729795647, "ser_min_ns": 2377.0, "ser_max_ns": 3357.0, "ser_p5_ns": 2572.0, "ser_p25_ns": 2706.5, "ser_p50_ns": 2815.0, "ser_p75_ns": 2952.5, "ser_p95_ns": 3134.1, "ser_p99_ns": 3243.26, "ser_ci_low_ns": 2801.673421052632, "ser_ci_high_ns": 2873.190789473684, "deser_mean_ns": 3163.0105263157893, "deser_median_ns": 3177.0, "deser_std_ns": 164.2056633859439, "deser_mad_ns": 90.0, "deser_cv": 0.05191435881094184, "deser_min_ns": 2789.0, "deser_max_ns": 3572.0, "deser_p5_ns": 2894.5, "deser_p25_ns": 3051.0, "deser_p50_ns": 3177.0, "deser_p75_ns": 3251.5, "deser_p95_ns": 3431.8, "deser_p99_ns": 3572.0, "deser_ci_low_ns": 3129.5597368421054, "deser_ci_high_ns": 3195.3442105263157, "total_mean_ns": 5999.473684210527, "total_median_ns": 6003.0, "total_std_ns": 324.97017349568273, "total_mad_ns": 203.0, "total_cv": 0.0541664470253353, "total_min_ns": 5239.0, "total_max_ns": 6804.0, "total_p5_ns": 5514.5, "total_p25_ns": 5821.5, "total_p50_ns": 6003.0, "total_p75_ns": 6216.5, "total_p95_ns": 6589.9, "total_p99_ns": 6788.02, "total_ci_low_ns": 5938.420789473685, "total_ci_high_ns": 6065.972105263158, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.148410782258306}, {"serializer": "nanopb", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.4.9", "avg_time_ser_ns": 327.61290322580646, "avg_time_deser_ns": 278.3333333333333, "avg_time_total_ns": 605.9462365591398, "median_size_bytes": 51.0, "avg_ops_per_sec": 1650311.4297375472, "min_ops_per_sec": 1349527.665317139, "max_ops_per_sec": 1926782.2736030829, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 327.61290322580646, "ser_median_ns": 320.0, "ser_std_ns": 42.36283036949308, "ser_mad_ns": 25.0, "ser_cv": 0.1293075759604456, "ser_min_ns": 255.0, "ser_max_ns": 440.0, "ser_p5_ns": 272.2, "ser_p25_ns": 296.0, "ser_p50_ns": 320.0, "ser_p75_ns": 349.0, "ser_p95_ns": 413.4, "ser_p99_ns": 434.48, "ser_ci_low_ns": 319.55860215053764, "ser_ci_high_ns": 336.3010752688172, "deser_mean_ns": 278.3333333333333, "deser_median_ns": 278.0, "deser_std_ns": 16.977179909547978, "deser_mad_ns": 11.0, "deser_cv": 0.06099585596244783, "deser_min_ns": 241.0, "deser_max_ns": 321.0, "deser_p5_ns": 256.0, "deser_p25_ns": 267.0, "deser_p50_ns": 278.0, "deser_p75_ns": 287.0, "deser_p95_ns": 308.79999999999995, "deser_p99_ns": 320.08, "deser_ci_low_ns": 274.7521505376344, "deser_ci_high_ns": 281.80672043010753, "total_mean_ns": 605.9462365591398, "total_median_ns": 600.0, "total_std_ns": 51.5733680833933, "total_mad_ns": 35.0, "total_cv": 0.08511211881808557, "total_min_ns": 519.0, "total_max_ns": 741.0, "total_p5_ns": 531.4, "total_p25_ns": 567.0, "total_p50_ns": 600.0, "total_p75_ns": 642.0, "total_p95_ns": 689.8, "total_p99_ns": 740.08, "total_ci_low_ns": 596.0747311827957, "total_ci_high_ns": 616.0430107526881, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.8304007820136853, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.8401960024221606}, {"serializer": "mpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.1", "avg_time_ser_ns": 501.77659574468083, "avg_time_deser_ns": 687.7446808510638, "avg_time_total_ns": 1189.5212765957447, "median_size_bytes": 125.0, "avg_ops_per_sec": 840674.3281312883, "min_ops_per_sec": 689655.1724137932, "max_ops_per_sec": 1101321.5859030837, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 501.77659574468083, "ser_median_ns": 502.0, "ser_std_ns": 63.65973968768358, "ser_mad_ns": 38.5, "ser_cv": 0.126868690623577, "ser_min_ns": 360.0, "ser_max_ns": 653.0, "ser_p5_ns": 393.6, "ser_p25_ns": 461.0, "ser_p50_ns": 502.0, "ser_p75_ns": 536.5, "ser_p95_ns": 606.5, "ser_p99_ns": 639.9799999999999, "ser_ci_low_ns": 489.148670212766, "ser_ci_high_ns": 514.6194148936171, "deser_mean_ns": 687.7446808510638, "deser_median_ns": 692.0, "deser_std_ns": 76.04030286351093, "deser_mad_ns": 56.5, "deser_cv": 0.11056472697020833, "deser_min_ns": 508.0, "deser_max_ns": 843.0, "deser_p5_ns": 561.0, "deser_p25_ns": 632.75, "deser_p50_ns": 692.0, "deser_p75_ns": 744.25, "deser_p95_ns": 804.7, "deser_p99_ns": 829.05, "deser_ci_low_ns": 672.8404255319149, "deser_ci_high_ns": 703.3212765957446, "total_mean_ns": 1189.5212765957447, "total_median_ns": 1187.0, "total_std_ns": 125.78473920833011, "total_mad_ns": 79.0, "total_cv": 0.10574400112313223, "total_min_ns": 908.0, "total_max_ns": 1450.0, "total_p5_ns": 949.2, "total_p25_ns": 1111.5, "total_p50_ns": 1187.0, "total_p75_ns": 1268.5, "total_p95_ns": 1415.1999999999998, "total_p99_ns": 1439.77, "total_ci_low_ns": 1164.0742021276596, "total_ci_high_ns": 1214.2590425531914, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.061201617379788}, {"serializer": "msgpack-c", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "6.0.1", "avg_time_ser_ns": 583.7010309278351, "avg_time_deser_ns": 600.659793814433, "avg_time_total_ns": 1184.360824742268, "median_size_bytes": 125.0, "avg_ops_per_sec": 844337.282278492, "min_ops_per_sec": 682593.8566552901, "max_ops_per_sec": 1122334.455667789, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 583.7010309278351, "ser_median_ns": 577.0, "ser_std_ns": 75.01224413227116, "ser_mad_ns": 47.0, "ser_cv": 0.1285114127912945, "ser_min_ns": 425.0, "ser_max_ns": 756.0, "ser_p5_ns": 461.6, "ser_p25_ns": 535.0, "ser_p50_ns": 577.0, "ser_p75_ns": 645.0, "ser_p95_ns": 699.0, "ser_p99_ns": 749.28, "ser_ci_low_ns": 568.7007731958763, "ser_ci_high_ns": 598.3953608247423, "deser_mean_ns": 600.659793814433, "deser_median_ns": 607.0, "deser_std_ns": 63.181927564695094, "deser_mad_ns": 49.0, "deser_cv": 0.10518754245804311, "deser_min_ns": 466.0, "deser_max_ns": 730.0, "deser_p5_ns": 504.6, "deser_p25_ns": 547.0, "deser_p50_ns": 607.0, "deser_p75_ns": 644.0, "deser_p95_ns": 707.4, "deser_p99_ns": 715.5999999999999, "deser_ci_low_ns": 588.1525773195876, "deser_ci_high_ns": 612.9082474226803, "total_mean_ns": 1184.360824742268, "total_median_ns": 1182.0, "total_std_ns": 125.04883925615908, "total_mad_ns": 81.0, "total_cv": 0.10558339708962537, "total_min_ns": 891.0, "total_max_ns": 1465.0, "total_p5_ns": 975.6, "total_p25_ns": 1095.0, "total_p50_ns": 1182.0, "total_p75_ns": 1259.0, "total_p95_ns": 1395.8, "total_p99_ns": 1463.08, "total_ci_low_ns": 1161.2265463917527, "total_ci_high_ns": 1209.155412371134, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.000219790774069}, {"serializer": "protobuf-c", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.5.0", "avg_time_ser_ns": 336.4673913043478, "avg_time_deser_ns": 278.8369565217391, "avg_time_total_ns": 615.304347826087, "median_size_bytes": 51.0, "avg_ops_per_sec": 1625211.9841718485, "min_ops_per_sec": 1278772.378516624, "max_ops_per_sec": 1964636.5422396855, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 336.4673913043478, "ser_median_ns": 325.0, "ser_std_ns": 47.27438055497065, "ser_mad_ns": 24.0, "ser_cv": 0.14050211633200774, "ser_min_ns": 261.0, "ser_max_ns": 462.0, "ser_p5_ns": 280.55, "ser_p25_ns": 306.0, "ser_p50_ns": 325.0, "ser_p75_ns": 352.5, "ser_p95_ns": 434.8, "ser_p99_ns": 448.35, "ser_ci_low_ns": 327.48668478260873, "ser_ci_high_ns": 345.8369565217391, "deser_mean_ns": 278.8369565217391, "deser_median_ns": 278.0, "deser_std_ns": 19.393143216669767, "deser_mad_ns": 15.5, "deser_cv": 0.06955011795632553, "deser_min_ns": 244.0, "deser_max_ns": 326.0, "deser_p5_ns": 252.55, "deser_p25_ns": 262.75, "deser_p50_ns": 278.0, "deser_p75_ns": 293.25, "deser_p95_ns": 311.45, "deser_p99_ns": 320.54, "deser_ci_low_ns": 274.93396739130435, "deser_ci_high_ns": 282.8595108695652, "total_mean_ns": 615.304347826087, "total_median_ns": 604.0, "total_std_ns": 57.03955425947371, "total_mad_ns": 35.5, "total_cv": 0.09270136715431708, "total_min_ns": 509.0, "total_max_ns": 782.0, "total_p5_ns": 539.1, "total_p25_ns": 573.75, "total_p50_ns": 604.0, "total_p75_ns": 656.0, "total_p95_ns": 719.0, "total_p99_ns": 751.9700000000001, "total_ci_low_ns": 603.8146739130435, "total_ci_high_ns": 627.772554347826, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.8584486166007905, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.9109023376708152}, {"serializer": "cbor-encode", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.11.0", "avg_time_ser_ns": 1910.3563218390805, "avg_time_deser_ns": 1596.3563218390805, "avg_time_total_ns": 3506.712643678161, "median_size_bytes": 137.0, "avg_ops_per_sec": 285167.3637424447, "min_ops_per_sec": 260756.19295958278, "max_ops_per_sec": 312597.68677711784, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 1910.3563218390805, "ser_median_ns": 1919.0, "ser_std_ns": 116.26363156001588, "ser_mad_ns": 86.0, "ser_cv": 0.06085965755754407, "ser_min_ns": 1601.0, "ser_max_ns": 2125.0, "ser_p5_ns": 1715.6, "ser_p25_ns": 1829.0, "ser_p50_ns": 1919.0, "ser_p75_ns": 1994.0, "ser_p95_ns": 2086.7, "ser_p99_ns": 2106.08, "ser_ci_low_ns": 1886.446551724138, "ser_ci_high_ns": 1934.1393678160919, "deser_mean_ns": 1596.3563218390805, "deser_median_ns": 1592.0, "deser_std_ns": 59.95870226256981, "deser_mad_ns": 38.0, "deser_cv": 0.03755972362955562, "deser_min_ns": 1488.0, "deser_max_ns": 1749.0, "deser_p5_ns": 1505.9, "deser_p25_ns": 1559.5, "deser_p50_ns": 1592.0, "deser_p75_ns": 1630.5, "deser_p95_ns": 1703.2, "deser_p99_ns": 1744.7, "deser_ci_low_ns": 1583.9074712643678, "deser_ci_high_ns": 1608.7364942528736, "total_mean_ns": 3506.712643678161, "total_median_ns": 3510.0, "total_std_ns": 135.53545044249728, "total_mad_ns": 110.0, "total_cv": 0.03865028709633171, "total_min_ns": 3199.0, "total_max_ns": 3835.0, "total_p5_ns": 3294.5, "total_p25_ns": 3400.5, "total_p50_ns": 3510.0, "total_p75_ns": 3619.5, "total_p95_ns": 3706.4, "total_p99_ns": 3785.98, "total_ci_low_ns": 3479.02183908046, "total_ci_high_ns": 3536.379597701149, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.9544055300023}, {"serializer": "libbson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.27.5", "avg_time_ser_ns": 1166.0652173913043, "avg_time_deser_ns": 875.8913043478261, "avg_time_total_ns": 2041.9565217391305, "median_size_bytes": 153.0, "avg_ops_per_sec": 489726.3919940381, "min_ops_per_sec": 426985.4824935952, "max_ops_per_sec": 619578.6864931847, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 1166.0652173913043, "ser_median_ns": 1171.5, "ser_std_ns": 106.0272414039545, "ser_mad_ns": 75.5, "ser_cv": 0.09092736823173266, "ser_min_ns": 888.0, "ser_max_ns": 1357.0, "ser_p5_ns": 988.55, "ser_p25_ns": 1091.0, "ser_p50_ns": 1171.5, "ser_p75_ns": 1231.5, "ser_p95_ns": 1339.9, "ser_p99_ns": 1353.3600000000001, "ser_ci_low_ns": 1143.8535326086958, "ser_ci_high_ns": 1187.0668478260868, "deser_mean_ns": 875.8913043478261, "deser_median_ns": 876.5, "deser_std_ns": 67.16658911084792, "deser_mad_ns": 41.5, "deser_cv": 0.07668370353426335, "deser_min_ns": 721.0, "deser_max_ns": 1032.0, "deser_p5_ns": 762.1, "deser_p25_ns": 829.25, "deser_p50_ns": 876.5, "deser_p75_ns": 915.5, "deser_p95_ns": 978.1, "deser_p99_ns": 1026.54, "deser_ci_low_ns": 862.4339673913043, "deser_ci_high_ns": 889.1665760869565, "total_mean_ns": 2041.9565217391305, "total_median_ns": 2041.5, "total_std_ns": 160.9786630488635, "total_mad_ns": 106.0, "total_cv": 0.0788354998429439, "total_min_ns": 1614.0, "total_max_ns": 2342.0, "total_p5_ns": 1776.65, "total_p25_ns": 1932.0, "total_p50_ns": 2041.5, "total_p75_ns": 2146.25, "total_p95_ns": 2296.95, "total_p99_ns": 2334.7200000000003, "total_ci_low_ns": 2008.8896739130435, "total_ci_high_ns": 2075.5652173913045, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.818526764082703}, {"serializer": "qcbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.5.1", "avg_time_ser_ns": 1041.9347826086957, "avg_time_deser_ns": 1551.1304347826087, "avg_time_total_ns": 2593.0652173913045, "median_size_bytes": 125.0, "avg_ops_per_sec": 385643.9835346786, "min_ops_per_sec": 347826.0869565217, "max_ops_per_sec": 427350.4273504274, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 1041.9347826086957, "ser_median_ns": 1043.0, "ser_std_ns": 73.89252729513392, "ser_mad_ns": 45.0, "ser_cv": 0.0709185723794813, "ser_min_ns": 875.0, "ser_max_ns": 1217.0, "ser_p5_ns": 917.55, "ser_p25_ns": 1007.5, "ser_p50_ns": 1043.0, "ser_p75_ns": 1094.25, "ser_p95_ns": 1146.9, "ser_p99_ns": 1215.18, "ser_ci_low_ns": 1027.6494565217392, "ser_ci_high_ns": 1056.9584239130436, "deser_mean_ns": 1551.1304347826087, "deser_median_ns": 1546.5, "deser_std_ns": 68.38164032746525, "deser_mad_ns": 43.0, "deser_cv": 0.04408503552897468, "deser_min_ns": 1413.0, "deser_max_ns": 1713.0, "deser_p5_ns": 1446.4, "deser_p25_ns": 1503.0, "deser_p50_ns": 1546.5, "deser_p75_ns": 1588.25, "deser_p95_ns": 1666.35, "deser_p99_ns": 1698.44, "deser_ci_low_ns": 1537.771195652174, "deser_ci_high_ns": 1565.1853260869566, "total_mean_ns": 2593.0652173913045, "total_median_ns": 2596.0, "total_std_ns": 120.85626776544932, "total_mad_ns": 81.0, "total_cv": 0.046607492536201646, "total_min_ns": 2340.0, "total_max_ns": 2875.0, "total_p5_ns": 2387.1, "total_p25_ns": 2517.5, "total_p50_ns": 2596.0, "total_p75_ns": 2680.75, "total_p95_ns": 2786.9, "total_p99_ns": 2819.4900000000002, "total_ci_low_ns": 2568.8152173913045, "total_ci_high_ns": 2617.0809782608694, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.8327929194001}, {"serializer": "custom-binary", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "v2-1.0", "avg_time_ser_ns": 287.34090909090907, "avg_time_deser_ns": 234.88636363636363, "avg_time_total_ns": 522.2272727272727, "median_size_bytes": 55.0, "avg_ops_per_sec": 1914875.0979197493, "min_ops_per_sec": 1628664.4951140066, "max_ops_per_sec": 2262443.438914027, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 287.34090909090907, "ser_median_ns": 280.5, "ser_std_ns": 31.443759815708468, "ser_mad_ns": 18.5, "ser_cv": 0.10943015359417643, "ser_min_ns": 231.0, "ser_max_ns": 368.0, "ser_p5_ns": 243.4, "ser_p25_ns": 268.5, "ser_p50_ns": 280.5, "ser_p75_ns": 302.75, "ser_p95_ns": 354.0, "ser_p99_ns": 363.65, "ser_ci_low_ns": 281.5, "ser_ci_high_ns": 294.02357954545454, "deser_mean_ns": 234.88636363636363, "deser_median_ns": 233.0, "deser_std_ns": 15.262780074101395, "deser_mad_ns": 10.0, "deser_cv": 0.06497942169912543, "deser_min_ns": 208.0, "deser_max_ns": 274.0, "deser_p5_ns": 214.0, "deser_p25_ns": 224.75, "deser_p50_ns": 233.0, "deser_p75_ns": 245.5, "deser_p95_ns": 259.65, "deser_p99_ns": 270.52, "deser_ci_low_ns": 231.63551136363637, "deser_ci_high_ns": 238.03494318181816, "total_mean_ns": 522.2272727272727, "total_median_ns": 519.0, "total_std_ns": 37.55171982002963, "total_mad_ns": 25.0, "total_cv": 0.07190685316743423, "total_min_ns": 442.0, "total_max_ns": 614.0, "total_p5_ns": 456.7, "total_p25_ns": 495.75, "total_p50_ns": 519.0, "total_p75_ns": 547.25, "total_p95_ns": 584.9499999999999, "total_p99_ns": 605.3, "total_ci_low_ns": 514.8747159090909, "total_ci_high_ns": 529.9664772727273, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "avro-c", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.11.3", "avg_time_ser_ns": 544.8105263157895, "avg_time_deser_ns": 501.18947368421055, "avg_time_total_ns": 1046.0, "median_size_bytes": 57.0, "avg_ops_per_sec": 956022.9445506692, "min_ops_per_sec": 773993.8080495356, "max_ops_per_sec": 1340482.5737265416, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 544.8105263157895, "ser_median_ns": 548.0, "ser_std_ns": 76.32089236521132, "ser_mad_ns": 51.0, "ser_cv": 0.1400870370132557, "ser_min_ns": 363.0, "ser_max_ns": 742.0, "ser_p5_ns": 424.2, "ser_p25_ns": 493.5, "ser_p50_ns": 548.0, "ser_p75_ns": 598.0, "ser_p95_ns": 662.8, "ser_p99_ns": 692.1800000000001, "ser_ci_low_ns": 529.7673684210525, "ser_ci_high_ns": 560.3718421052631, "deser_mean_ns": 501.18947368421055, "deser_median_ns": 503.0, "deser_std_ns": 58.217182287962295, "deser_mad_ns": 38.0, "deser_cv": 0.11615803073438805, "deser_min_ns": 357.0, "deser_max_ns": 640.0, "deser_p5_ns": 403.4, "deser_p25_ns": 463.5, "deser_p50_ns": 503.0, "deser_p75_ns": 539.5, "deser_p95_ns": 604.8, "deser_p99_ns": 634.36, "deser_ci_low_ns": 489.57842105263154, "deser_ci_high_ns": 512.6315789473684, "total_mean_ns": 1046.0, "total_median_ns": 1047.0, "total_std_ns": 122.71260317800859, "total_mad_ns": 83.0, "total_cv": 0.11731606422371758, "total_min_ns": 746.0, "total_max_ns": 1292.0, "total_p5_ns": 820.5, "total_p25_ns": 963.0, "total_p50_ns": 1047.0, "total_p75_ns": 1126.0, "total_p95_ns": 1239.5, "total_p99_ns": 1281.66, "total_ci_low_ns": 1020.9573684210527, "total_ci_high_ns": 1069.433157894737, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.658147650363174}, {"serializer": "protobuf-wire", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "wire-v2", "avg_time_ser_ns": 357.9795918367347, "avg_time_deser_ns": 285.96938775510205, "avg_time_total_ns": 643.9489795918367, "median_size_bytes": 51.0, "avg_ops_per_sec": 1552918.0598031913, "min_ops_per_sec": 1200480.1920768307, "max_ops_per_sec": 1904761.9047619049, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 357.9795918367347, "ser_median_ns": 341.0, "ser_std_ns": 56.53061930864825, "ser_mad_ns": 33.0, "ser_cv": 0.15791575999793422, "ser_min_ns": 269.0, "ser_max_ns": 521.0, "ser_p5_ns": 287.85, "ser_p25_ns": 316.5, "ser_p50_ns": 341.0, "ser_p75_ns": 403.0, "ser_p95_ns": 465.15, "ser_p99_ns": 489.96000000000004, "ser_ci_low_ns": 347.1005102040816, "ser_ci_high_ns": 369.35714285714283, "deser_mean_ns": 285.96938775510205, "deser_median_ns": 281.5, "deser_std_ns": 22.178960068596194, "deser_mad_ns": 14.5, "deser_cv": 0.0775571128179278, "deser_min_ns": 247.0, "deser_max_ns": 353.0, "deser_p5_ns": 252.85, "deser_p25_ns": 269.25, "deser_p50_ns": 281.5, "deser_p75_ns": 303.0, "deser_p95_ns": 320.59999999999997, "deser_p99_ns": 345.24, "deser_ci_low_ns": 281.7132653061225, "deser_ci_high_ns": 290.4795918367347, "total_mean_ns": 643.9489795918367, "total_median_ns": 630.0, "total_std_ns": 70.47795187134031, "total_mad_ns": 48.5, "total_cv": 0.10944648427894449, "total_min_ns": 525.0, "total_max_ns": 833.0, "total_p5_ns": 549.85, "total_p25_ns": 583.25, "total_p50_ns": 630.0, "total_p75_ns": 692.75, "total_p95_ns": 769.0, "total_p99_ns": 809.72, "total_ci_low_ns": 630.8244897959185, "total_ci_high_ns": 658.0658163265306, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.9159322820037106, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.1149719810464154}, {"serializer": "json-c", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.15", "avg_time_ser_ns": 2337.425531914894, "avg_time_deser_ns": 2629.744680851064, "avg_time_total_ns": 4967.170212765957, "median_size_bytes": 170.0, "avg_ops_per_sec": 201321.87083702782, "min_ops_per_sec": 173973.55601948503, "max_ops_per_sec": 244678.24810374356, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 2337.425531914894, "ser_median_ns": 2322.5, "ser_std_ns": 158.35175825077496, "ser_mad_ns": 92.5, "ser_cv": 0.06774622596042584, "ser_min_ns": 1968.0, "ser_max_ns": 2693.0, "ser_p5_ns": 2070.7, "ser_p25_ns": 2240.0, "ser_p50_ns": 2322.5, "ser_p75_ns": 2433.25, "ser_p95_ns": 2605.75, "ser_p99_ns": 2688.35, "ser_ci_low_ns": 2304.0215425531915, "ser_ci_high_ns": 2368.8417553191493, "deser_mean_ns": 2629.744680851064, "deser_median_ns": 2640.5, "deser_std_ns": 222.68440159413478, "deser_mad_ns": 142.0, "deser_cv": 0.08467909573718292, "deser_min_ns": 2119.0, "deser_max_ns": 3094.0, "deser_p5_ns": 2254.5, "deser_p25_ns": 2500.5, "deser_p50_ns": 2640.5, "deser_p75_ns": 2780.0, "deser_p95_ns": 2992.3999999999996, "deser_p99_ns": 3064.24, "deser_ci_low_ns": 2585.453989361702, "deser_ci_high_ns": 2675.301063829787, "total_mean_ns": 4967.170212765957, "total_median_ns": 4998.0, "total_std_ns": 348.679463928614, "total_mad_ns": 226.0, "total_cv": 0.07019680200056053, "total_min_ns": 4087.0, "total_max_ns": 5748.0, "total_p5_ns": 4315.25, "total_p25_ns": 4725.25, "total_p50_ns": 4998.0, "total_p75_ns": 5184.75, "total_p95_ns": 5499.45, "total_p99_ns": 5573.159999999999, "total_ci_low_ns": 4898.137234042553, "total_ci_high_ns": 5031.481382978724, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.56609797694098}, {"serializer": "cJSON", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.7.18", "avg_time_ser_ns": 2490.691489361702, "avg_time_deser_ns": 1363.5531914893618, "avg_time_total_ns": 3854.244680851064, "median_size_bytes": 170.0, "avg_ops_per_sec": 259454.20771241433, "min_ops_per_sec": 221729.49002217295, "max_ops_per_sec": 298151.4609421586, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 2490.691489361702, "ser_median_ns": 2487.0, "ser_std_ns": 195.75659818571077, "ser_mad_ns": 142.0, "ser_cv": 0.07859528127904672, "ser_min_ns": 2122.0, "ser_max_ns": 3005.0, "ser_p5_ns": 2205.3, "ser_p25_ns": 2343.25, "ser_p50_ns": 2487.0, "ser_p75_ns": 2624.5, "ser_p95_ns": 2807.65, "ser_p99_ns": 2992.91, "ser_ci_low_ns": 2449.5797872340427, "ser_ci_high_ns": 2528.8026595744677, "deser_mean_ns": 1363.5531914893618, "deser_median_ns": 1368.0, "deser_std_ns": 96.08191140574948, "deser_mad_ns": 74.0, "deser_cv": 0.07046436619080665, "deser_min_ns": 1168.0, "deser_max_ns": 1549.0, "deser_p5_ns": 1217.55, "deser_p25_ns": 1290.0, "deser_p50_ns": 1368.0, "deser_p75_ns": 1437.25, "deser_p95_ns": 1522.05, "deser_p99_ns": 1538.77, "deser_ci_low_ns": 1344.0632978723404, "deser_ci_high_ns": 1381.8409574468085, "total_mean_ns": 3854.244680851064, "total_median_ns": 3852.5, "total_std_ns": 273.7115146481279, "total_mad_ns": 225.5, "total_cv": 0.07101560417479491, "total_min_ns": 3354.0, "total_max_ns": 4510.0, "total_p5_ns": 3419.2, "total_p25_ns": 3627.0, "total_p50_ns": 3852.5, "total_p75_ns": 4074.0, "total_p95_ns": 4251.45, "total_p99_ns": 4508.14, "total_ci_low_ns": 3800.4521276595747, "total_ci_high_ns": 3910.1869680851064, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.71871326318173}, {"serializer": "yyjson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.10.0", "avg_time_ser_ns": 1059.0736842105264, "avg_time_deser_ns": 626.5684210526316, "avg_time_total_ns": 1685.6421052631579, "median_size_bytes": 170.0, "avg_ops_per_sec": 593245.741120048, "min_ops_per_sec": 489715.96474045055, "max_ops_per_sec": 772797.5270479134, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1059.0736842105264, "ser_median_ns": 1057.0, "ser_std_ns": 109.64733041013552, "ser_mad_ns": 78.0, "ser_cv": 0.10353135201529513, "ser_min_ns": 784.0, "ser_max_ns": 1349.0, "ser_p5_ns": 912.5, "ser_p25_ns": 973.0, "ser_p50_ns": 1057.0, "ser_p75_ns": 1124.5, "ser_p95_ns": 1251.4, "ser_p99_ns": 1325.5, "ser_ci_low_ns": 1038.1144736842105, "ser_ci_high_ns": 1081.622105263158, "deser_mean_ns": 626.5684210526316, "deser_median_ns": 627.0, "deser_std_ns": 58.448495718330705, "deser_mad_ns": 44.0, "deser_cv": 0.09328350065925368, "deser_min_ns": 505.0, "deser_max_ns": 749.0, "deser_p5_ns": 532.2, "deser_p25_ns": 581.5, "deser_p50_ns": 627.0, "deser_p75_ns": 669.5, "deser_p95_ns": 725.5, "deser_p99_ns": 747.12, "deser_ci_low_ns": 615.1002631578947, "deser_ci_high_ns": 638.2323684210527, "total_mean_ns": 1685.6421052631579, "total_median_ns": 1706.0, "total_std_ns": 156.07158176240344, "total_mad_ns": 111.0, "total_cv": 0.0925888011904152, "total_min_ns": 1294.0, "total_max_ns": 2042.0, "total_p5_ns": 1432.8, "total_p25_ns": 1571.0, "total_p50_ns": 1706.0, "total_p75_ns": 1780.5, "total_p95_ns": 1935.8, "total_p99_ns": 1995.0, "total_ci_low_ns": 1654.8073684210526, "total_ci_high_ns": 1715.4536842105263, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.0356740594151}, {"serializer": "ubj", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.0-min", "avg_time_ser_ns": 358.60869565217394, "avg_time_deser_ns": 267.5, "avg_time_total_ns": 626.1086956521739, "median_size_bytes": 92.0, "avg_ops_per_sec": 1597166.7650428806, "min_ops_per_sec": 1307189.5424836602, "max_ops_per_sec": 1953125.0, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 358.60869565217394, "ser_median_ns": 343.5, "ser_std_ns": 54.970912692405115, "ser_mad_ns": 32.0, "ser_cv": 0.15328940251276887, "ser_min_ns": 278.0, "ser_max_ns": 500.0, "ser_p5_ns": 291.65, "ser_p25_ns": 317.5, "ser_p50_ns": 343.5, "ser_p75_ns": 401.25, "ser_p95_ns": 454.8, "ser_p99_ns": 484.5300000000001, "ser_ci_low_ns": 347.7258152173913, "ser_ci_high_ns": 370.0440217391304, "deser_mean_ns": 267.5, "deser_median_ns": 269.5, "deser_std_ns": 20.10603758209825, "deser_mad_ns": 13.5, "deser_cv": 0.07516275731625514, "deser_min_ns": 225.0, "deser_max_ns": 319.0, "deser_p5_ns": 233.2, "deser_p25_ns": 255.0, "deser_p50_ns": 269.5, "deser_p75_ns": 280.25, "deser_p95_ns": 301.45, "deser_p99_ns": 313.54, "deser_ci_low_ns": 263.16277173913045, "deser_ci_high_ns": 271.75, "total_mean_ns": 626.1086956521739, "total_median_ns": 620.0, "total_std_ns": 65.47585017792238, "total_mad_ns": 46.0, "total_cv": 0.1045758518171046, "total_min_ns": 512.0, "total_max_ns": 765.0, "total_p5_ns": 532.6, "total_p25_ns": 575.5, "total_p50_ns": 620.0, "total_p75_ns": 667.0, "total_p95_ns": 744.25, "total_p99_ns": 757.72, "total_ci_low_ns": 613.6608695652174, "total_ci_high_ns": 639.6521739130435, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.8504199604743083, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.9272357504519277}, {"serializer": "parson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.5.3", "avg_time_ser_ns": 4620.917525773196, "avg_time_deser_ns": 1780.5463917525774, "avg_time_total_ns": 6401.4639175257735, "median_size_bytes": 170.0, "avg_ops_per_sec": 156214.26799926563, "min_ops_per_sec": 137608.3665886886, "max_ops_per_sec": 183385.29249954154, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 4620.917525773196, "ser_median_ns": 4626.0, "ser_std_ns": 260.0531864711802, "ser_mad_ns": 173.0, "ser_cv": 0.05627739188607716, "ser_min_ns": 3940.0, "ser_max_ns": 5203.0, "ser_p5_ns": 4273.8, "ser_p25_ns": 4448.0, "ser_p50_ns": 4626.0, "ser_p75_ns": 4798.0, "ser_p95_ns": 5058.8, "ser_p99_ns": 5199.16, "ser_ci_low_ns": 4568.424226804124, "ser_ci_high_ns": 4672.477577319588, "deser_mean_ns": 1780.5463917525774, "deser_median_ns": 1804.0, "deser_std_ns": 168.87699052728664, "deser_mad_ns": 118.0, "deser_cv": 0.0948455998167295, "deser_min_ns": 1406.0, "deser_max_ns": 2202.0, "deser_p5_ns": 1485.6, "deser_p25_ns": 1668.0, "deser_p50_ns": 1804.0, "deser_p75_ns": 1911.0, "deser_p95_ns": 2006.8, "deser_p99_ns": 2069.519999999999, "deser_ci_low_ns": 1747.5167525773197, "deser_ci_high_ns": 1814.6909793814432, "total_mean_ns": 6401.4639175257735, "total_median_ns": 6459.0, "total_std_ns": 398.14099423277145, "total_mad_ns": 271.0, "total_cv": 0.06219530397457223, "total_min_ns": 5453.0, "total_max_ns": 7267.0, "total_p5_ns": 5759.0, "total_p25_ns": 6098.0, "total_p50_ns": 6459.0, "total_p75_ns": 6657.0, "total_p95_ns": 7042.0, "total_p99_ns": 7158.5199999999995, "total_ci_low_ns": 6324.700515463918, "total_ci_high_ns": 6480.436855670104, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.222944456839194}, {"serializer": "zcbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.9", "avg_time_ser_ns": 726.8526315789474, "avg_time_deser_ns": 1641.1894736842105, "avg_time_total_ns": 2368.0421052631577, "median_size_bytes": 126.0, "avg_ops_per_sec": 422289.7885883964, "min_ops_per_sec": 376506.0240963855, "max_ops_per_sec": 467289.7196261682, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 726.8526315789474, "ser_median_ns": 722.0, "ser_std_ns": 58.56419798438557, "ser_mad_ns": 42.0, "ser_cv": 0.08057231334110483, "ser_min_ns": 598.0, "ser_max_ns": 881.0, "ser_p5_ns": 633.7, "ser_p25_ns": 687.0, "ser_p50_ns": 722.0, "ser_p75_ns": 769.0, "ser_p95_ns": 826.1999999999999, "ser_p99_ns": 859.3800000000001, "ser_ci_low_ns": 714.7684210526315, "ser_ci_high_ns": 738.4955263157894, "deser_mean_ns": 1641.1894736842105, "deser_median_ns": 1630.0, "deser_std_ns": 70.23793827501132, "deser_mad_ns": 53.0, "deser_cv": 0.04279697097821269, "deser_min_ns": 1483.0, "deser_max_ns": 1813.0, "deser_p5_ns": 1540.8, "deser_p25_ns": 1595.5, "deser_p50_ns": 1630.0, "deser_p75_ns": 1693.5, "deser_p95_ns": 1751.4, "deser_p99_ns": 1813.0, "deser_ci_low_ns": 1627.378157894737, "deser_ci_high_ns": 1654.7263157894736, "total_mean_ns": 2368.0421052631577, "total_median_ns": 2358.0, "total_std_ns": 109.41779346813576, "total_mad_ns": 67.0, "total_cv": 0.046206016871467866, "total_min_ns": 2140.0, "total_max_ns": 2656.0, "total_p5_ns": 2192.3, "total_p25_ns": 2293.0, "total_p50_ns": 2358.0, "total_p75_ns": 2438.5, "total_p95_ns": 2557.1, "total_p99_ns": 2617.46, "total_ci_low_ns": 2347.1105263157897, "total_ci_high_ns": 2390.222631578947, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.136123765102596}, {"serializer": "tinycbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.6.0", "avg_time_ser_ns": 571.421052631579, "avg_time_deser_ns": 1550.6631578947367, "avg_time_total_ns": 2122.084210526316, "median_size_bytes": 125.0, "avg_ops_per_sec": 471234.8336789055, "min_ops_per_sec": 405844.1558441558, "max_ops_per_sec": 528262.0179609086, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 571.421052631579, "ser_median_ns": 556.0, "ser_std_ns": 73.2921259228059, "ser_mad_ns": 45.0, "ser_cv": 0.12826290803475288, "ser_min_ns": 389.0, "ser_max_ns": 749.0, "ser_p5_ns": 467.1, "ser_p25_ns": 526.5, "ser_p50_ns": 556.0, "ser_p75_ns": 609.0, "ser_p95_ns": 717.8, "ser_p99_ns": 743.36, "ser_ci_low_ns": 556.3973684210526, "ser_ci_high_ns": 586.2023684210527, "deser_mean_ns": 1550.6631578947367, "deser_median_ns": 1546.0, "deser_std_ns": 69.55796764039356, "deser_mad_ns": 49.0, "deser_cv": 0.04485691640138609, "deser_min_ns": 1418.0, "deser_max_ns": 1748.0, "deser_p5_ns": 1456.8, "deser_p25_ns": 1501.5, "deser_p50_ns": 1546.0, "deser_p75_ns": 1597.5, "deser_p95_ns": 1665.8, "deser_p99_ns": 1723.56, "deser_ci_low_ns": 1536.6631578947367, "deser_ci_high_ns": 1565.3276315789474, "total_mean_ns": 2122.084210526316, "total_median_ns": 2107.0, "total_std_ns": 117.23377836866602, "total_mad_ns": 82.0, "total_cv": 0.055244640051108004, "total_min_ns": 1893.0, "total_max_ns": 2464.0, "total_p5_ns": 1953.8, "total_p25_ns": 2035.5, "total_p50_ns": 2107.0, "total_p75_ns": 2210.5, "total_p95_ns": 2314.4, "total_p99_ns": 2352.1400000000003, "total_ci_low_ns": 2097.8826315789474, "total_ci_high_ns": 2144.9894736842107, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.021818428859753}, {"serializer": "flatcc", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.6.1", "avg_time_ser_ns": 528.936170212766, "avg_time_deser_ns": 234.82978723404256, "avg_time_total_ns": 763.7659574468086, "median_size_bytes": 84.0, "avg_ops_per_sec": 1309301.6129481571, "min_ops_per_sec": 1061571.1252653927, "max_ops_per_sec": 1655629.1390728478, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 528.936170212766, "ser_median_ns": 523.5, "ser_std_ns": 63.86912164069201, "ser_mad_ns": 42.0, "ser_cv": 0.12075014952182317, "ser_min_ns": 402.0, "ser_max_ns": 689.0, "ser_p5_ns": 423.3, "ser_p25_ns": 484.0, "ser_p50_ns": 523.5, "ser_p75_ns": 570.5, "ser_p95_ns": 643.4, "ser_p99_ns": 667.6099999999999, "ser_ci_low_ns": 516.7869680851064, "ser_ci_high_ns": 541.5752659574467, "deser_mean_ns": 234.82978723404256, "deser_median_ns": 233.0, "deser_std_ns": 15.330508130004574, "deser_mad_ns": 11.0, "deser_cv": 0.06528349027002038, "deser_min_ns": 202.0, "deser_max_ns": 268.0, "deser_p5_ns": 213.0, "deser_p25_ns": 224.0, "deser_p50_ns": 233.0, "deser_p75_ns": 245.75, "deser_p95_ns": 260.35, "deser_p99_ns": 267.07, "deser_ci_low_ns": 231.85079787234042, "deser_ci_high_ns": 237.84122340425532, "total_mean_ns": 763.7659574468086, "total_median_ns": 757.5, "total_std_ns": 69.7245618671646, "total_mad_ns": 44.0, "total_cv": 0.09129048131478218, "total_min_ns": 604.0, "total_max_ns": 942.0, "total_p5_ns": 657.5, "total_p25_ns": 713.5, "total_p50_ns": 757.5, "total_p75_ns": 800.0, "total_p95_ns": 883.0, "total_p99_ns": 928.9799999999999, "total_ci_low_ns": 749.8912234042552, "total_ci_high_ns": 777.6625, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.999637330754352, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.256452887686072}, {"serializer": "jansson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "2.14", "avg_time_ser_ns": 200874.26136363635, "avg_time_deser_ns": 275624.4431818182, "avg_time_total_ns": 476498.70454545453, "median_size_bytes": 16795.0, "avg_ops_per_sec": 2098.641592224113, "min_ops_per_sec": 2013.7296084705522, "max_ops_per_sec": 2174.5086697660663, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 200874.26136363635, "ser_median_ns": 200755.0, "ser_std_ns": 3668.209157771233, "ser_mad_ns": 2484.5, "ser_cv": 0.018261220391649825, "ser_min_ns": 192542.0, "ser_max_ns": 210579.0, "ser_p5_ns": 195640.95, "ser_p25_ns": 198288.0, "ser_p50_ns": 200755.0, "ser_p75_ns": 203283.5, "ser_p95_ns": 207685.35, "ser_p99_ns": 209448.87, "ser_ci_low_ns": 200104.74147727274, "ser_ci_high_ns": 201621.65482954544, "deser_mean_ns": 275624.4431818182, "deser_median_ns": 274702.5, "deser_std_ns": 5553.542005002959, "deser_mad_ns": 3166.0, "deser_cv": 0.020148945938512117, "deser_min_ns": 263181.0, "deser_max_ns": 289429.0, "deser_p5_ns": 267917.35, "deser_p25_ns": 271778.5, "deser_p50_ns": 274702.5, "deser_p75_ns": 279117.5, "deser_p95_ns": 285894.39999999997, "deser_p99_ns": 288016.12, "deser_ci_low_ns": 274531.4872159091, "deser_ci_high_ns": 276797.48238636367, "total_mean_ns": 476498.70454545453, "total_median_ns": 475686.5, "total_std_ns": 7513.648923232194, "total_mad_ns": 4795.0, "total_cv": 0.015768456139665005, "total_min_ns": 459874.0, "total_max_ns": 496591.0, "total_p5_ns": 464484.0, "total_p25_ns": 471818.0, "total_p50_ns": 475686.5, "total_p75_ns": 481125.5, "total_p95_ns": 488895.1, "total_p99_ns": 493328.5, "total_ci_low_ns": 474988.83437500003, "total_ci_high_ns": 478086.4846590909, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 83.89260935329887}, {"serializer": "cJSON", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.7.18", "avg_time_ser_ns": 170755.70786516854, "avg_time_deser_ns": 113081.17977528089, "avg_time_total_ns": 283836.88764044945, "median_size_bytes": 16741.0, "avg_ops_per_sec": 3523.1502441879597, "min_ops_per_sec": 3439.179824395478, "max_ops_per_sec": 3641.2230139859375, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 170755.70786516854, "ser_median_ns": 170588.0, "ser_std_ns": 2703.3386059154504, "ser_mad_ns": 1653.0, "ser_cv": 0.015831614882531774, "ser_min_ns": 164708.0, "ser_max_ns": 177011.0, "ser_p5_ns": 165927.8, "ser_p25_ns": 169144.0, "ser_p50_ns": 170588.0, "ser_p75_ns": 172365.0, "ser_p95_ns": 175574.0, "ser_p99_ns": 176712.68, "ser_ci_low_ns": 170165.94971910113, "ser_ci_high_ns": 171330.1407303371, "deser_mean_ns": 113081.17977528089, "deser_median_ns": 113119.0, "deser_std_ns": 1891.9325591105714, "deser_mad_ns": 1170.0, "deser_cv": 0.016730746556326084, "deser_min_ns": 107881.0, "deser_max_ns": 117043.0, "deser_p5_ns": 110492.6, "deser_p25_ns": 111928.0, "deser_p50_ns": 113119.0, "deser_p75_ns": 114210.0, "deser_p95_ns": 116208.2, "deser_p99_ns": 116992.84, "deser_ci_low_ns": 112670.26376404494, "deser_ci_high_ns": 113473.29185393259, "total_mean_ns": 283836.88764044945, "total_median_ns": 283927.0, "total_std_ns": 3729.5405591957856, "total_mad_ns": 2441.0, "total_cv": 0.013139731731839532, "total_min_ns": 274633.0, "total_max_ns": 290767.0, "total_p5_ns": 276973.4, "total_p25_ns": 281859.0, "total_p50_ns": 283927.0, "total_p75_ns": 286796.0, "total_p95_ns": 289046.2, "total_p99_ns": 290308.52, "total_ci_low_ns": 283068.06769662927, "total_ci_high_ns": 284603.81404494384, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 96.49889886021693}, {"serializer": "libbson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.27.5", "avg_time_ser_ns": 58728.36263736264, "avg_time_deser_ns": 76992.2967032967, "avg_time_total_ns": 135720.65934065933, "median_size_bytes": 15143.0, "avg_ops_per_sec": 7368.075021577934, "min_ops_per_sec": 7108.330963889679, "max_ops_per_sec": 7713.371128851864, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 58728.36263736264, "ser_median_ns": 58665.0, "ser_std_ns": 957.9630764919157, "ser_mad_ns": 625.0, "ser_cv": 0.0163117620425955, "ser_min_ns": 56508.0, "ser_max_ns": 61126.0, "ser_p5_ns": 57057.5, "ser_p25_ns": 58145.0, "ser_p50_ns": 58665.0, "ser_p75_ns": 59323.0, "ser_p95_ns": 60396.5, "ser_p99_ns": 60604.0, "ser_ci_low_ns": 58529.73983516484, "ser_ci_high_ns": 58924.31538461539, "deser_mean_ns": 76992.2967032967, "deser_median_ns": 77351.0, "deser_std_ns": 1814.4474181444973, "deser_mad_ns": 902.0, "deser_cv": 0.023566609853668714, "deser_min_ns": 72621.0, "deser_max_ns": 80889.0, "deser_p5_ns": 73689.5, "deser_p25_ns": 75983.0, "deser_p50_ns": 77351.0, "deser_p75_ns": 77869.5, "deser_p95_ns": 79536.5, "deser_p99_ns": 80600.09999999999, "deser_ci_low_ns": 76615.7293956044, "deser_ci_high_ns": 77350.14423076923, "total_mean_ns": 135720.65934065933, "total_median_ns": 136038.0, "total_std_ns": 2361.6334705725294, "total_mad_ns": 1137.0, "total_cv": 0.01740069258464786, "total_min_ns": 129645.0, "total_max_ns": 140680.0, "total_p5_ns": 131450.0, "total_p25_ns": 134837.5, "total_p50_ns": 136038.0, "total_p75_ns": 137051.5, "total_p95_ns": 139508.0, "total_p99_ns": 140309.2, "total_ci_low_ns": 135220.35357142857, "total_ci_high_ns": 136184.37802197805, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 64.72713726233839}, {"serializer": "avro-c", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.11.3", "avg_time_ser_ns": 14646.464788732394, "avg_time_deser_ns": 32824.25352112676, "avg_time_total_ns": 47470.718309859156, "median_size_bytes": 5543.0, "avg_ops_per_sec": 21065.61761868918, "min_ops_per_sec": 20510.716849553894, "max_ops_per_sec": 21577.300679684973, "runs": 71, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 28, "ser_mean_ns": 14646.464788732394, "ser_median_ns": 14649.0, "ser_std_ns": 198.49842251880676, "ser_mad_ns": 124.0, "ser_cv": 0.013552650785158252, "ser_min_ns": 14179.0, "ser_max_ns": 15238.0, "ser_p5_ns": 14331.5, "ser_p25_ns": 14518.5, "ser_p50_ns": 14649.0, "ser_p75_ns": 14763.0, "ser_p95_ns": 14970.0, "ser_p99_ns": 15119.0, "ser_ci_low_ns": 14603.092253521128, "ser_ci_high_ns": 14695.57852112676, "deser_mean_ns": 32824.25352112676, "deser_median_ns": 32876.0, "deser_std_ns": 304.71226325876955, "deser_mad_ns": 131.0, "deser_cv": 0.009283143729762104, "deser_min_ns": 32156.0, "deser_max_ns": 33649.0, "deser_p5_ns": 32215.0, "deser_p25_ns": 32691.5, "deser_p50_ns": 32876.0, "deser_p75_ns": 32979.5, "deser_p95_ns": 33207.0, "deser_p99_ns": 33556.6, "deser_ci_low_ns": 32755.230985915492, "deser_ci_high_ns": 32890.460563380286, "total_mean_ns": 47470.718309859156, "total_median_ns": 47517.0, "total_std_ns": 431.4668728584449, "total_mad_ns": 231.0, "total_cv": 0.00908911615876758, "total_min_ns": 46345.0, "total_max_ns": 48755.0, "total_p5_ns": 46594.0, "total_p25_ns": 47275.0, "total_p50_ns": 47517.0, "total_p75_ns": 47713.0, "total_p95_ns": 47974.0, "total_p99_ns": 48447.0, "total_ci_low_ns": 47367.07992957746, "total_ci_high_ns": 47567.17852112676, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 64.18101834755333}, {"serializer": "tinycbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.6.0", "avg_time_ser_ns": 15434.357142857143, "avg_time_deser_ns": 149862.94047619047, "avg_time_total_ns": 165297.29761904763, "median_size_bytes": 12295.0, "avg_ops_per_sec": 6049.705678217739, "min_ops_per_sec": 5841.08737682607, "max_ops_per_sec": 6294.771562739988, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 15434.357142857143, "ser_median_ns": 15410.0, "ser_std_ns": 322.9804217594794, "ser_mad_ns": 183.5, "ser_cv": 0.020926068949295454, "ser_min_ns": 14785.0, "ser_max_ns": 16256.0, "ser_p5_ns": 14938.0, "ser_p25_ns": 15228.0, "ser_p50_ns": 15410.0, "ser_p75_ns": 15616.75, "ser_p95_ns": 16020.8, "ser_p99_ns": 16228.61, "ser_ci_low_ns": 15371.69375, "ser_ci_high_ns": 15504.493154761905, "deser_mean_ns": 149862.94047619047, "deser_median_ns": 149936.0, "deser_std_ns": 2318.092081870064, "deser_mad_ns": 1233.0, "deser_cv": 0.015468080864450617, "deser_min_ns": 143467.0, "deser_max_ns": 155660.0, "deser_p5_ns": 145866.1, "deser_p25_ns": 148498.5, "deser_p50_ns": 149936.0, "deser_p75_ns": 151090.5, "deser_p95_ns": 153415.7, "deser_p99_ns": 155093.94, "deser_ci_low_ns": 149363.56428571427, "deser_ci_high_ns": 150356.59851190477, "total_mean_ns": 165297.29761904763, "total_median_ns": 165399.0, "total_std_ns": 2414.86617544233, "total_mad_ns": 1468.5, "total_cv": 0.01460922961370942, "total_min_ns": 158862.0, "total_max_ns": 171201.0, "total_p5_ns": 161086.4, "total_p25_ns": 163923.0, "total_p50_ns": 165399.0, "total_p75_ns": 166840.5, "total_p95_ns": 169060.85, "total_p99_ns": 170954.49, "total_ci_low_ns": 164793.71220238094, "total_ci_high_ns": 165782.5413690476, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 81.73273291151932}, {"serializer": "custom-binary", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "v2-1.0", "avg_time_ser_ns": 2415.3176470588237, "avg_time_deser_ns": 22199.682352941178, "avg_time_total_ns": 24615.0, "median_size_bytes": 5343.0, "avg_ops_per_sec": 40625.63477554337, "min_ops_per_sec": 39778.82970683002, "max_ops_per_sec": 41890.080428954425, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 2415.3176470588237, "ser_median_ns": 2406.0, "ser_std_ns": 91.67154252374874, "ser_mad_ns": 63.0, "ser_cv": 0.037954238704535966, "ser_min_ns": 2210.0, "ser_max_ns": 2673.0, "ser_p5_ns": 2280.0, "ser_p25_ns": 2353.0, "ser_p50_ns": 2406.0, "ser_p75_ns": 2479.0, "ser_p95_ns": 2570.8, "ser_p99_ns": 2625.96, "ser_ci_low_ns": 2396.540882352941, "ser_ci_high_ns": 2434.3764705882354, "deser_mean_ns": 22199.682352941178, "deser_median_ns": 22304.0, "deser_std_ns": 242.00488049804684, "deser_mad_ns": 79.0, "deser_cv": 0.01090127672326736, "deser_min_ns": 21528.0, "deser_max_ns": 22594.0, "deser_p5_ns": 21802.6, "deser_p25_ns": 21951.0, "deser_p50_ns": 22304.0, "deser_p75_ns": 22357.0, "deser_p95_ns": 22509.2, "deser_p99_ns": 22540.239999999998, "deser_ci_low_ns": 22146.999705882354, "deser_ci_high_ns": 22250.165, "total_mean_ns": 24615.0, "total_median_ns": 24677.0, "total_std_ns": 274.04053401953934, "total_mad_ns": 182.0, "total_cv": 0.011133070648772673, "total_min_ns": 23872.0, "total_max_ns": 25139.0, "total_p5_ns": 24193.2, "total_p25_ns": 24402.0, "total_p50_ns": 24677.0, "total_p75_ns": 24816.0, "total_p95_ns": 24944.6, "total_p99_ns": 25033.16, "total_ci_low_ns": 24554.184411764705, "total_ci_high_ns": 24668.873529411765, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "msgpack-c", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "6.0.1", "avg_time_ser_ns": 17825.914634146342, "avg_time_deser_ns": 38525.78048780488, "avg_time_total_ns": 56351.69512195122, "median_size_bytes": 12295.0, "avg_ops_per_sec": 17745.69509995912, "min_ops_per_sec": 17137.079498911797, "max_ops_per_sec": 18433.519511880404, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 17825.914634146342, "ser_median_ns": 17884.5, "ser_std_ns": 474.1634921776054, "ser_mad_ns": 275.0, "ser_cv": 0.026599672550283837, "ser_min_ns": 16712.0, "ser_max_ns": 19291.0, "ser_p5_ns": 16997.95, "ser_p25_ns": 17521.5, "ser_p50_ns": 17884.5, "ser_p75_ns": 18106.5, "ser_p95_ns": 18448.0, "ser_p99_ns": 18805.809999999998, "ser_ci_low_ns": 17726.93963414634, "ser_ci_high_ns": 17933.712499999998, "deser_mean_ns": 38525.78048780488, "deser_median_ns": 38534.5, "deser_std_ns": 699.882512616529, "deser_mad_ns": 341.0, "deser_cv": 0.018166601785992963, "deser_min_ns": 37061.0, "deser_max_ns": 40222.0, "deser_p5_ns": 37316.0, "deser_p25_ns": 38193.25, "deser_p50_ns": 38534.5, "deser_p75_ns": 38845.0, "deser_p95_ns": 39853.65, "deser_p99_ns": 40145.86, "deser_ci_low_ns": 38383.251219512196, "deser_ci_high_ns": 38675.891463414635, "total_mean_ns": 56351.69512195122, "total_median_ns": 56495.5, "total_std_ns": 881.5629595104647, "total_mad_ns": 521.5, "total_cv": 0.015643947490890313, "total_min_ns": 54249.0, "total_max_ns": 58353.0, "total_p5_ns": 54907.65, "total_p25_ns": 55811.25, "total_p50_ns": 56495.5, "total_p75_ns": 56811.25, "total_p95_ns": 57866.15, "total_p99_ns": 58293.87, "total_ci_low_ns": 56164.63323170732, "total_ci_high_ns": 56529.38170731708, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 48.762748790434976}, {"serializer": "protobuf-wire", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "wire-v2", "avg_time_ser_ns": 4639.368421052632, "avg_time_deser_ns": 22568.934210526317, "avg_time_total_ns": 27208.302631578947, "median_size_bytes": 4932.0, "avg_ops_per_sec": 36753.487107989, "min_ops_per_sec": 35819.18475535497, "max_ops_per_sec": 38330.33079075473, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 4639.368421052632, "ser_median_ns": 4659.5, "ser_std_ns": 238.72711573986246, "ser_mad_ns": 167.5, "ser_cv": 0.051456813530169565, "ser_min_ns": 4004.0, "ser_max_ns": 5087.0, "ser_p5_ns": 4201.25, "ser_p25_ns": 4521.5, "ser_p50_ns": 4659.5, "ser_p75_ns": 4826.0, "ser_p95_ns": 4938.5, "ser_p99_ns": 5050.25, "ser_ci_low_ns": 4584.0917763157895, "ser_ci_high_ns": 4690.780592105263, "deser_mean_ns": 22568.934210526317, "deser_median_ns": 22624.0, "deser_std_ns": 216.63876756950748, "deser_mad_ns": 69.0, "deser_cv": 0.009598980862306983, "deser_min_ns": 22077.0, "deser_max_ns": 23061.0, "deser_p5_ns": 22138.75, "deser_p25_ns": 22492.5, "deser_p50_ns": 22624.0, "deser_p75_ns": 22683.0, "deser_p95_ns": 22819.5, "deser_p99_ns": 23044.5, "deser_ci_low_ns": 22521.52467105263, "deser_ci_high_ns": 22616.63157894737, "total_mean_ns": 27208.302631578947, "total_median_ns": 27247.5, "total_std_ns": 365.4471241182721, "total_mad_ns": 266.0, "total_cv": 0.013431456164932569, "total_min_ns": 26089.0, "total_max_ns": 27918.0, "total_p5_ns": 26681.0, "total_p25_ns": 26967.25, "total_p50_ns": 27247.5, "total_p75_ns": 27461.0, "total_p95_ns": 27675.75, "total_p99_ns": 27806.25, "total_ci_low_ns": 27122.691118421055, "total_ci_high_ns": 27281.880592105263, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.055148941556975}, {"serializer": "yyjson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.10.0", "avg_time_ser_ns": 51852.07865168539, "avg_time_deser_ns": 48188.8202247191, "avg_time_total_ns": 100040.89887640449, "median_size_bytes": 16717.0, "avg_ops_per_sec": 9995.911784393798, "min_ops_per_sec": 9631.406088974929, "max_ops_per_sec": 10372.798373545214, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 51852.07865168539, "ser_median_ns": 51974.0, "ser_std_ns": 869.5113076884977, "ser_mad_ns": 502.0, "ser_cv": 0.016769073300405387, "ser_min_ns": 49944.0, "ser_max_ns": 53905.0, "ser_p5_ns": 50316.6, "ser_p25_ns": 51260.0, "ser_p50_ns": 51974.0, "ser_p75_ns": 52351.0, "ser_p95_ns": 53314.0, "ser_p99_ns": 53745.72, "ser_ci_low_ns": 51675.182865168535, "ser_ci_high_ns": 52030.730056179775, "deser_mean_ns": 48188.8202247191, "deser_median_ns": 48275.0, "deser_std_ns": 773.0709358519695, "deser_mad_ns": 462.0, "deser_cv": 0.016042537091526726, "deser_min_ns": 46350.0, "deser_max_ns": 50187.0, "deser_p5_ns": 46889.8, "deser_p25_ns": 47731.0, "deser_p50_ns": 48275.0, "deser_p75_ns": 48576.0, "deser_p95_ns": 49638.6, "deser_p99_ns": 49953.8, "deser_ci_low_ns": 48029.59494382023, "deser_ci_high_ns": 48347.2345505618, "total_mean_ns": 100040.89887640449, "total_median_ns": 100215.0, "total_std_ns": 1533.9839474458167, "total_mad_ns": 870.0, "total_cv": 0.015333568217344558, "total_min_ns": 96406.0, "total_max_ns": 103827.0, "total_p5_ns": 97292.8, "total_p25_ns": 99020.0, "total_p50_ns": 100215.0, "total_p75_ns": 100875.0, "total_p95_ns": 102599.4, "total_p99_ns": 103087.8, "total_ci_low_ns": 99721.29213483146, "total_ci_high_ns": 100354.59578651686, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 67.42260900907495}, {"serializer": "json-c", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.15", "avg_time_ser_ns": 172528.4090909091, "avg_time_deser_ns": 218006.18181818182, "avg_time_total_ns": 390534.5909090909, "median_size_bytes": 16795.0, "avg_ops_per_sec": 2560.5926421835993, "min_ops_per_sec": 2471.2958981430684, "max_ops_per_sec": 2649.385607477626, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 172528.4090909091, "ser_median_ns": 172705.5, "ser_std_ns": 3130.159676571779, "ser_mad_ns": 2206.0, "ser_cv": 0.018142865242108782, "ser_min_ns": 165675.0, "ser_max_ns": 179935.0, "ser_p5_ns": 167012.35, "ser_p25_ns": 170471.5, "ser_p50_ns": 172705.5, "ser_p75_ns": 174894.75, "ser_p95_ns": 177140.25, "ser_p99_ns": 178523.86, "ser_ci_low_ns": 171870.8502840909, "ser_ci_high_ns": 173130.11335227275, "deser_mean_ns": 218006.18181818182, "deser_median_ns": 217676.0, "deser_std_ns": 3672.9055194856187, "deser_mad_ns": 2530.0, "deser_cv": 0.016847712706371046, "deser_min_ns": 210516.0, "deser_max_ns": 227635.0, "deser_p5_ns": 212436.35, "deser_p25_ns": 215563.25, "deser_p50_ns": 217676.0, "deser_p75_ns": 220375.25, "deser_p95_ns": 224581.15, "deser_p99_ns": 226858.09, "deser_ci_low_ns": 217298.55028409092, "deser_ci_high_ns": 218767.0775568182, "total_mean_ns": 390534.5909090909, "total_median_ns": 391023.0, "total_std_ns": 5560.807411887263, "total_mad_ns": 3532.5, "total_cv": 0.014238962543478548, "total_min_ns": 377446.0, "total_max_ns": 404646.0, "total_p5_ns": 381002.75, "total_p25_ns": 387035.25, "total_p50_ns": 391023.0, "total_p75_ns": 394331.0, "total_p95_ns": 398810.4, "total_p99_ns": 402022.07999999996, "total_ci_low_ns": 389319.3806818182, "total_ci_high_ns": 391685.7292613636, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 91.7415059653935}, {"serializer": "parson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.5.3", "avg_time_ser_ns": 386313.3820224719, "avg_time_deser_ns": 131226.0224719101, "avg_time_total_ns": 517539.40449438203, "median_size_bytes": 16795.0, "avg_ops_per_sec": 1932.2200228926822, "min_ops_per_sec": 1871.7303210953366, "max_ops_per_sec": 1995.3428697420222, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 386313.3820224719, "ser_median_ns": 385811.0, "ser_std_ns": 5990.518818603007, "ser_mad_ns": 3701.0, "ser_cv": 0.015506889218387308, "ser_min_ns": 373457.0, "ser_max_ns": 400403.0, "ser_p5_ns": 376286.6, "ser_p25_ns": 382720.0, "ser_p50_ns": 385811.0, "ser_p75_ns": 389531.0, "ser_p95_ns": 396623.6, "ser_p99_ns": 399861.8, "ser_ci_low_ns": 385111.1828651685, "ser_ci_high_ns": 387541.9289325843, "deser_mean_ns": 131226.0224719101, "deser_median_ns": 131210.0, "deser_std_ns": 1970.7194750875312, "deser_mad_ns": 1134.0, "deser_cv": 0.015017749055903742, "deser_min_ns": 126854.0, "deser_max_ns": 135888.0, "deser_p5_ns": 127816.2, "deser_p25_ns": 130250.0, "deser_p50_ns": 131210.0, "deser_p75_ns": 132344.0, "deser_p95_ns": 135153.0, "deser_p99_ns": 135724.32, "deser_ci_low_ns": 130828.33988764044, "deser_ci_high_ns": 131646.44438202248, "total_mean_ns": 517539.40449438203, "total_median_ns": 517210.0, "total_std_ns": 6935.979520061088, "total_mad_ns": 4309.0, "total_cv": 0.01340183850703561, "total_min_ns": 501167.0, "total_max_ns": 534265.0, "total_p5_ns": 506374.6, "total_p25_ns": 513297.0, "total_p50_ns": 517210.0, "total_p75_ns": 521674.0, "total_p95_ns": 529094.0, "total_p99_ns": 533678.92, "total_ci_low_ns": 516203.9370786517, "total_ci_high_ns": 518956.41348314605, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 98.84880960472348}, {"serializer": "qcbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.5.1", "avg_time_ser_ns": 53110.22619047619, "avg_time_deser_ns": 149469.4642857143, "avg_time_total_ns": 202579.69047619047, "median_size_bytes": 12295.0, "avg_ops_per_sec": 4936.32899551464, "min_ops_per_sec": 4760.544606302961, "max_ops_per_sec": 5124.158356989865, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 53110.22619047619, "ser_median_ns": 53118.0, "ser_std_ns": 1111.3467391986542, "ser_mad_ns": 657.0, "ser_cv": 0.020925287254715978, "ser_min_ns": 50727.0, "ser_max_ns": 55645.0, "ser_p5_ns": 51148.15, "ser_p25_ns": 52363.5, "ser_p50_ns": 53118.0, "ser_p75_ns": 53657.75, "ser_p95_ns": 55277.4, "ser_p99_ns": 55439.99, "ser_ci_low_ns": 52870.77767857143, "ser_ci_high_ns": 53352.93035714285, "deser_mean_ns": 149469.4642857143, "deser_median_ns": 148976.5, "deser_std_ns": 3231.1257557253216, "deser_mad_ns": 2519.5, "deser_cv": 0.021617296691108432, "deser_min_ns": 143773.0, "deser_max_ns": 157027.0, "deser_p5_ns": 144771.1, "deser_p25_ns": 147055.75, "deser_p50_ns": 148976.5, "deser_p75_ns": 151830.75, "deser_p95_ns": 154410.25, "deser_p99_ns": 156895.03, "deser_ci_low_ns": 148782.9056547619, "deser_ci_high_ns": 150166.33095238096, "total_mean_ns": 202579.69047619047, "total_median_ns": 202233.0, "total_std_ns": 3616.507720966709, "total_mad_ns": 2544.0, "total_cv": 0.017852271925510532, "total_min_ns": 195154.0, "total_max_ns": 210060.0, "total_p5_ns": 196646.5, "total_p25_ns": 200202.0, "total_p50_ns": 202233.0, "total_p75_ns": 205306.5, "total_p95_ns": 208193.3, "total_p99_ns": 209496.43, "total_ci_low_ns": 201804.21845238094, "total_ci_high_ns": 203325.2675595238, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 69.28635075245252}, {"serializer": "flatcc", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.6.1", "avg_time_ser_ns": 15510.238095238095, "avg_time_deser_ns": 22283.083333333332, "avg_time_total_ns": 37793.32142857143, "median_size_bytes": 8304.0, "avg_ops_per_sec": 26459.701402269675, "min_ops_per_sec": 25837.12277800744, "max_ops_per_sec": 27222.73642946589, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 15510.238095238095, "ser_median_ns": 15541.5, "ser_std_ns": 269.30573922935685, "ser_mad_ns": 173.5, "ser_cv": 0.01736309511019294, "ser_min_ns": 14825.0, "ser_max_ns": 16141.0, "ser_p5_ns": 15056.5, "ser_p25_ns": 15321.5, "ser_p50_ns": 15541.5, "ser_p75_ns": 15668.5, "ser_p95_ns": 15909.55, "ser_p99_ns": 16076.26, "ser_ci_low_ns": 15452.963988095238, "ser_ci_high_ns": 15565.360714285714, "deser_mean_ns": 22283.083333333332, "deser_median_ns": 22376.0, "deser_std_ns": 249.3361406699332, "deser_mad_ns": 114.0, "deser_cv": 0.01118948113867844, "deser_min_ns": 21526.0, "deser_max_ns": 22776.0, "deser_p5_ns": 21910.05, "deser_p25_ns": 22084.75, "deser_p50_ns": 22376.0, "deser_p75_ns": 22445.75, "deser_p95_ns": 22549.45, "deser_p99_ns": 22739.48, "deser_ci_low_ns": 22229.55505952381, "deser_ci_high_ns": 22336.100297619047, "total_mean_ns": 37793.32142857143, "total_median_ns": 37882.5, "total_std_ns": 437.17577068616583, "total_mad_ns": 260.0, "total_cv": 0.011567540352663068, "total_min_ns": 36734.0, "total_max_ns": 38704.0, "total_p5_ns": 36951.4, "total_p25_ns": 37583.5, "total_p50_ns": 37882.5, "total_p75_ns": 38077.25, "total_p95_ns": 38396.9, "total_p99_ns": 38525.55, "total_ci_low_ns": 37704.54761904762, "total_ci_high_ns": 37884.343154761904, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 36.005075133581826}, {"serializer": "zcbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.9", "avg_time_ser_ns": 29120.827956989247, "avg_time_deser_ns": 156513.2258064516, "avg_time_total_ns": 185634.05376344087, "median_size_bytes": 12395.0, "avg_ops_per_sec": 5386.942641862093, "min_ops_per_sec": 5161.237045295016, "max_ops_per_sec": 5590.808710479971, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 29120.827956989247, "ser_median_ns": 29252.0, "ser_std_ns": 757.6892879248051, "ser_mad_ns": 472.0, "ser_cv": 0.026018809940565345, "ser_min_ns": 27406.0, "ser_max_ns": 31061.0, "ser_p5_ns": 27867.6, "ser_p25_ns": 28521.0, "ser_p50_ns": 29252.0, "ser_p75_ns": 29562.0, "ser_p95_ns": 30516.4, "ser_p99_ns": 30816.28, "ser_ci_low_ns": 28970.962096774194, "ser_ci_high_ns": 29264.638440860213, "deser_mean_ns": 156513.2258064516, "deser_median_ns": 156721.0, "deser_std_ns": 3078.257744558679, "deser_mad_ns": 2260.0, "deser_cv": 0.019667716441838172, "deser_min_ns": 149856.0, "deser_max_ns": 164028.0, "deser_p5_ns": 151369.0, "deser_p25_ns": 154214.0, "deser_p50_ns": 156721.0, "deser_p75_ns": 158650.0, "deser_p95_ns": 161274.6, "deser_p99_ns": 163922.2, "deser_ci_low_ns": 155856.39032258064, "deser_ci_high_ns": 157113.723655914, "total_mean_ns": 185634.05376344087, "total_median_ns": 185956.0, "total_std_ns": 3405.7623336288502, "total_mad_ns": 2395.0, "total_cv": 0.018346646343073005, "total_min_ns": 178865.0, "total_max_ns": 193752.0, "total_p5_ns": 179645.8, "total_p25_ns": 183385.0, "total_p50_ns": 185956.0, "total_p75_ns": 187701.0, "total_p95_ns": 190491.0, "total_p99_ns": 193201.84, "total_ci_low_ns": 184973.27956989247, "total_ci_high_ns": 186336.48333333334, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 64.92144779018882}, {"serializer": "nanopb", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.4.9", "avg_time_ser_ns": 4624.814285714286, "avg_time_deser_ns": 22593.414285714287, "avg_time_total_ns": 27218.22857142857, "median_size_bytes": 4932.0, "avg_ops_per_sec": 36740.083851368516, "min_ops_per_sec": 35794.8240684397, "max_ops_per_sec": 37509.377344336084, "runs": 70, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 29, "ser_mean_ns": 4624.814285714286, "ser_median_ns": 4598.0, "ser_std_ns": 194.51279104448938, "ser_mad_ns": 120.5, "ser_cv": 0.042058508521158396, "ser_min_ns": 4110.0, "ser_max_ns": 5132.0, "ser_p5_ns": 4314.05, "ser_p25_ns": 4507.5, "ser_p50_ns": 4598.0, "ser_p75_ns": 4737.75, "ser_p95_ns": 4988.75, "ser_p99_ns": 5098.88, "ser_ci_low_ns": 4580.981071428571, "ser_ci_high_ns": 4672.105357142857, "deser_mean_ns": 22593.414285714287, "deser_median_ns": 22608.0, "deser_std_ns": 164.79653620050786, "deser_mad_ns": 74.5, "deser_cv": 0.007294007630564627, "deser_min_ns": 22173.0, "deser_max_ns": 22891.0, "deser_p5_ns": 22237.0, "deser_p25_ns": 22560.0, "deser_p50_ns": 22608.0, "deser_p75_ns": 22691.75, "deser_p95_ns": 22832.1, "deser_p99_ns": 22864.78, "deser_ci_low_ns": 22553.37107142857, "deser_ci_high_ns": 22631.5025, "total_mean_ns": 27218.22857142857, "total_median_ns": 27228.5, "total_std_ns": 289.7167117804669, "total_mad_ns": 180.0, "total_cv": 0.010644216283957118, "total_min_ns": 26660.0, "total_max_ns": 27937.0, "total_p5_ns": 26764.25, "total_p25_ns": 27016.5, "total_p50_ns": 27228.5, "total_p75_ns": 27400.5, "total_p95_ns": 27743.95, "total_p99_ns": 27934.93, "total_ci_low_ns": 27149.049285714285, "total_ci_high_ns": 27287.545714285712, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.211512833553218}, {"serializer": "ubj", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.0-min", "avg_time_ser_ns": 6439.975903614458, "avg_time_deser_ns": 23281.734939759037, "avg_time_total_ns": 29721.710843373494, "median_size_bytes": 9043.0, "avg_ops_per_sec": 33645.438691930205, "min_ops_per_sec": 32915.30891017412, "max_ops_per_sec": 34423.40791738382, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 6439.975903614458, "ser_median_ns": 6442.0, "ser_std_ns": 115.5664707792915, "ser_mad_ns": 76.0, "ser_cv": 0.017945171303269853, "ser_min_ns": 6149.0, "ser_max_ns": 6769.0, "ser_p5_ns": 6268.2, "ser_p25_ns": 6361.0, "ser_p50_ns": 6442.0, "ser_p75_ns": 6516.0, "ser_p95_ns": 6605.9, "ser_p99_ns": 6648.459999999999, "ser_ci_low_ns": 6415.828313253012, "ser_ci_high_ns": 6464.628915662651, "deser_mean_ns": 23281.734939759037, "deser_median_ns": 23390.0, "deser_std_ns": 236.67669026658518, "deser_mad_ns": 119.0, "deser_cv": 0.010165766893188192, "deser_min_ns": 22845.0, "deser_max_ns": 23671.0, "deser_p5_ns": 22880.0, "deser_p25_ns": 23075.5, "deser_p50_ns": 23390.0, "deser_p75_ns": 23463.5, "deser_p95_ns": 23566.2, "deser_p99_ns": 23622.62, "deser_ci_low_ns": 23228.51656626506, "deser_ci_high_ns": 23331.215060240964, "total_mean_ns": 29721.710843373494, "total_median_ns": 29839.0, "total_std_ns": 316.8910149701191, "total_mad_ns": 170.0, "total_cv": 0.010661937216200679, "total_min_ns": 29050.0, "total_max_ns": 30381.0, "total_p5_ns": 29162.2, "total_p25_ns": 29499.5, "total_p50_ns": 29839.0, "total_p75_ns": 29949.0, "total_p95_ns": 30069.9, "total_p99_ns": 30305.559999999998, "total_ci_low_ns": 29655.1078313253, "total_ci_high_ns": 29787.497289156625, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.1752650975958}, {"serializer": "cbor-encode", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.11.0", "avg_time_ser_ns": 89003.18181818182, "avg_time_deser_ns": 149594.5340909091, "avg_time_total_ns": 238597.7159090909, "median_size_bytes": 13543.0, "avg_ops_per_sec": 4191.154958000579, "min_ops_per_sec": 4036.326942482341, "max_ops_per_sec": 4370.400153838085, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 89003.18181818182, "ser_median_ns": 89050.5, "ser_std_ns": 1602.8962260201872, "ser_mad_ns": 1014.5, "ser_cv": 0.018009426104502964, "ser_min_ns": 85700.0, "ser_max_ns": 93221.0, "ser_p5_ns": 86528.45, "ser_p25_ns": 87875.0, "ser_p50_ns": 89050.5, "ser_p75_ns": 89731.75, "ser_p95_ns": 91883.8, "ser_p99_ns": 92973.05, "ser_ci_low_ns": 88674.35085227272, "ser_ci_high_ns": 89346.71875, "deser_mean_ns": 149594.5340909091, "deser_median_ns": 149383.5, "deser_std_ns": 2991.08751970727, "deser_mad_ns": 1797.5, "deser_cv": 0.019994631073148545, "deser_min_ns": 143052.0, "deser_max_ns": 157276.0, "deser_p5_ns": 145474.2, "deser_p25_ns": 147507.5, "deser_p50_ns": 149383.5, "deser_p75_ns": 150995.75, "deser_p95_ns": 154982.2, "deser_p99_ns": 156976.72, "deser_ci_low_ns": 149009.08494318184, "deser_ci_high_ns": 150191.27812499998, "total_mean_ns": 238597.7159090909, "total_median_ns": 238550.0, "total_std_ns": 3737.821133549686, "total_mad_ns": 2674.5, "total_cv": 0.01566578757599611, "total_min_ns": 228812.0, "total_max_ns": 247750.0, "total_p5_ns": 232383.45, "total_p25_ns": 236346.5, "total_p50_ns": 238550.0, "total_p75_ns": 241523.25, "total_p95_ns": 243916.05, "total_p99_ns": 245693.31999999998, "total_ci_low_ns": 237828.75369318182, "total_ci_high_ns": 239354.83636363636, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 79.70081757653024}, {"serializer": "mpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.1", "avg_time_ser_ns": 10432.686046511628, "avg_time_deser_ns": 43612.313953488374, "avg_time_total_ns": 54045.0, "median_size_bytes": 12295.0, "avg_ops_per_sec": 18503.09926912758, "min_ops_per_sec": 17452.92074628689, "max_ops_per_sec": 19476.093095725, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 10432.686046511628, "ser_median_ns": 10434.5, "ser_std_ns": 213.61720913424483, "ser_mad_ns": 131.0, "ser_cv": 0.020475763210153528, "ser_min_ns": 9952.0, "ser_max_ns": 11039.0, "ser_p5_ns": 10136.25, "ser_p25_ns": 10291.75, "ser_p50_ns": 10434.5, "ser_p75_ns": 10544.0, "ser_p95_ns": 10728.0, "ser_p99_ns": 11019.45, "ser_ci_low_ns": 10389.104069767442, "ser_ci_high_ns": 10475.361046511627, "deser_mean_ns": 43612.313953488374, "deser_median_ns": 43512.5, "deser_std_ns": 1107.9242410034224, "deser_mad_ns": 589.0, "deser_cv": 0.02540393160943032, "deser_min_ns": 41393.0, "deser_max_ns": 46258.0, "deser_p5_ns": 41962.25, "deser_p25_ns": 42931.75, "deser_p50_ns": 43512.5, "deser_p75_ns": 44133.25, "deser_p95_ns": 45701.0, "deser_p99_ns": 46173.0, "deser_ci_low_ns": 43389.789244186046, "deser_ci_high_ns": 43842.91976744186, "total_mean_ns": 54045.0, "total_median_ns": 53949.5, "total_std_ns": 1220.3837969117362, "total_mad_ns": 673.5, "total_cv": 0.022580882540692685, "total_min_ns": 51345.0, "total_max_ns": 57297.0, "total_p5_ns": 51994.0, "total_p25_ns": 53370.75, "total_p50_ns": 53949.5, "total_p75_ns": 54649.75, "total_p95_ns": 56157.75, "total_p99_ns": 56707.950000000004, "total_ci_low_ns": 53787.22441860465, "total_ci_high_ns": 54297.56860465116, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 33.039508785651456}, {"serializer": "protobuf-c", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.5.0", "avg_time_ser_ns": 4572.630952380952, "avg_time_deser_ns": 22581.119047619046, "avg_time_total_ns": 27153.75, "median_size_bytes": 4932.0, "avg_ops_per_sec": 36827.32587579984, "min_ops_per_sec": 35782.01595877912, "max_ops_per_sec": 37939.14561044085, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 4572.630952380952, "ser_median_ns": 4555.5, "ser_std_ns": 206.70290534629677, "ser_mad_ns": 143.0, "ser_cv": 0.0452043708532103, "ser_min_ns": 3997.0, "ser_max_ns": 5081.0, "ser_p5_ns": 4263.65, "ser_p25_ns": 4458.5, "ser_p50_ns": 4555.5, "ser_p75_ns": 4713.0, "ser_p95_ns": 4907.15, "ser_p99_ns": 5018.75, "ser_ci_low_ns": 4530.413988095238, "ser_ci_high_ns": 4617.645535714286, "deser_mean_ns": 22581.119047619046, "deser_median_ns": 22635.5, "deser_std_ns": 214.8535732680981, "deser_mad_ns": 84.5, "deser_cv": 0.009514744278838222, "deser_min_ns": 22080.0, "deser_max_ns": 23014.0, "deser_p5_ns": 22167.6, "deser_p25_ns": 22477.75, "deser_p50_ns": 22635.5, "deser_p75_ns": 22707.5, "deser_p95_ns": 22825.55, "deser_p99_ns": 22953.41, "deser_ci_low_ns": 22534.42619047619, "deser_ci_high_ns": 22627.325, "total_mean_ns": 27153.75, "total_median_ns": 27162.0, "total_std_ns": 322.68515279034034, "total_mad_ns": 216.5, "total_cv": 0.011883631277092127, "total_min_ns": 26358.0, "total_max_ns": 27947.0, "total_p5_ns": 26589.95, "total_p25_ns": 26946.0, "total_p50_ns": 27162.0, "total_p75_ns": 27368.25, "total_p95_ns": 27661.4, "total_p99_ns": 27898.03, "total_ci_low_ns": 27087.20535714286, "total_ci_high_ns": 27223.22113095238, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.4467548517491}, {"serializer": "flatcc", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.6.1", "avg_time_ser_ns": 15897.033333333333, "avg_time_deser_ns": 22658.5, "avg_time_total_ns": 38555.53333333333, "median_size_bytes": 8304.0, "avg_ops_per_sec": 25936.6143726884, "min_ops_per_sec": 25192.089683839273, "max_ops_per_sec": 26656.004264960684, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 15897.033333333333, "ser_median_ns": 15853.5, "ser_std_ns": 337.45110174277954, "ser_mad_ns": 209.0, "ser_cv": 0.02122730038158773, "ser_min_ns": 15225.0, "ser_max_ns": 16749.0, "ser_p5_ns": 15422.15, "ser_p25_ns": 15652.25, "ser_p50_ns": 15853.5, "ser_p75_ns": 16092.0, "ser_p95_ns": 16528.95, "ser_p99_ns": 16715.18, "ser_ci_low_ns": 15829.861944444445, "ser_ci_high_ns": 15969.960833333334, "deser_mean_ns": 22658.5, "deser_median_ns": 22763.5, "deser_std_ns": 291.2718815621653, "deser_mad_ns": 154.0, "deser_cv": 0.01285486159993668, "deser_min_ns": 22215.0, "deser_max_ns": 23600.0, "deser_p5_ns": 22243.7, "deser_p25_ns": 22328.0, "deser_p50_ns": 22763.5, "deser_p75_ns": 22841.5, "deser_p95_ns": 23050.55, "deser_p99_ns": 23268.03, "deser_ci_low_ns": 22595.462222222224, "deser_ci_high_ns": 22719.48361111111, "total_mean_ns": 38555.53333333333, "total_median_ns": 38655.0, "total_std_ns": 550.8608625484665, "total_mad_ns": 451.0, "total_cv": 0.014287465764926083, "total_min_ns": 37515.0, "total_max_ns": 39695.0, "total_p5_ns": 37751.7, "total_p25_ns": 38013.25, "total_p50_ns": 38655.0, "total_p75_ns": 38996.25, "total_p95_ns": 39403.45, "total_p99_ns": 39637.15, "total_ci_low_ns": 38441.428611111114, "total_ci_high_ns": 38667.66083333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.362368903417604}, {"serializer": "yyjson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.10.0", "avg_time_ser_ns": 52359.760869565216, "avg_time_deser_ns": 48780.88043478261, "avg_time_total_ns": 101140.64130434782, "median_size_bytes": 16717.0, "avg_ops_per_sec": 9887.222259060483, "min_ops_per_sec": 9489.556742804543, "max_ops_per_sec": 10289.547877266274, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 52359.760869565216, "ser_median_ns": 52282.5, "ser_std_ns": 1089.0076173011348, "ser_mad_ns": 750.0, "ser_cv": 0.0207985597950684, "ser_min_ns": 50417.0, "ser_max_ns": 55338.0, "ser_p5_ns": 50807.55, "ser_p25_ns": 51441.75, "ser_p50_ns": 52282.5, "ser_p75_ns": 53001.0, "ser_p95_ns": 54430.25, "ser_p99_ns": 54888.46, "ser_ci_low_ns": 52149.95434782609, "ser_ci_high_ns": 52584.023641304346, "deser_mean_ns": 48780.88043478261, "deser_median_ns": 48779.5, "deser_std_ns": 1004.885634982019, "deser_mad_ns": 661.5, "deser_cv": 0.020599989709605523, "deser_min_ns": 46769.0, "deser_max_ns": 51160.0, "deser_p5_ns": 47292.0, "deser_p25_ns": 48027.5, "deser_p50_ns": 48779.5, "deser_p75_ns": 49303.25, "deser_p95_ns": 50592.9, "deser_p99_ns": 51075.37, "deser_ci_low_ns": 48562.08586956522, "deser_ci_high_ns": 48982.757608695654, "total_mean_ns": 101140.64130434782, "total_median_ns": 101235.5, "total_std_ns": 1903.0712515838377, "total_mad_ns": 1529.5, "total_cv": 0.018816088439237814, "total_min_ns": 97186.0, "total_max_ns": 105379.0, "total_p5_ns": 98351.8, "total_p25_ns": 99632.5, "total_p50_ns": 101235.5, "total_p75_ns": 102275.5, "total_p95_ns": 104646.25, "total_p99_ns": 105302.56, "total_ci_low_ns": 100736.27608695652, "total_ci_high_ns": 101535.4605978261, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 54.311977064722335}, {"serializer": "parson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.5.3", "avg_time_ser_ns": 384822.5833333333, "avg_time_deser_ns": 130821.72916666667, "avg_time_total_ns": 515644.3125, "median_size_bytes": 16795.0, "avg_ops_per_sec": 1939.3213029960455, "min_ops_per_sec": 1875.5497705264856, "max_ops_per_sec": 2012.5583641925616, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 384822.5833333333, "ser_median_ns": 385481.0, "ser_std_ns": 6052.418045996887, "ser_mad_ns": 4196.0, "ser_cv": 0.01572781408401461, "ser_min_ns": 371934.0, "ser_max_ns": 400816.0, "ser_p5_ns": 374977.75, "ser_p25_ns": 379952.0, "ser_p50_ns": 385481.0, "ser_p75_ns": 389072.0, "ser_p95_ns": 393739.75, "ser_p99_ns": 398003.05, "ser_ci_low_ns": 383568.36171875, "ser_ci_high_ns": 386033.2229166667, "deser_mean_ns": 130821.72916666667, "deser_median_ns": 130903.5, "deser_std_ns": 2453.5550768937055, "deser_mad_ns": 1805.0, "deser_cv": 0.018754950668538255, "deser_min_ns": 124946.0, "deser_max_ns": 137930.0, "deser_p5_ns": 126931.5, "deser_p25_ns": 128894.0, "deser_p50_ns": 130903.5, "deser_p75_ns": 132610.75, "deser_p95_ns": 134777.0, "deser_p99_ns": 136458.44999999998, "deser_ci_low_ns": 130331.28489583333, "deser_ci_high_ns": 131290.92890625, "total_mean_ns": 515644.3125, "total_median_ns": 516705.5, "total_std_ns": 7695.564126666191, "total_mad_ns": 5300.5, "total_cv": 0.014924171449415902, "total_min_ns": 496880.0, "total_max_ns": 533177.0, "total_p5_ns": 503149.0, "total_p25_ns": 509662.5, "total_p50_ns": 516705.5, "total_p75_ns": 521379.0, "total_p95_ns": 526653.5, "total_p99_ns": 531418.55, "total_ci_low_ns": 514097.8494791667, "total_ci_high_ns": 517140.6661458333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 87.25789751974348}, {"serializer": "protobuf-c", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.5.0", "avg_time_ser_ns": 4978.38202247191, "avg_time_deser_ns": 22738.573033707864, "avg_time_total_ns": 27716.955056179777, "median_size_bytes": 4932.0, "avg_ops_per_sec": 36078.99922531497, "min_ops_per_sec": 35208.78811351313, "max_ops_per_sec": 37167.81267422412, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 4978.38202247191, "ser_median_ns": 4999.0, "ser_std_ns": 190.67574246359953, "ser_mad_ns": 123.0, "ser_cv": 0.03830074542349474, "ser_min_ns": 4519.0, "ser_max_ns": 5426.0, "ser_p5_ns": 4610.6, "ser_p25_ns": 4865.0, "ser_p50_ns": 4999.0, "ser_p75_ns": 5093.0, "ser_p95_ns": 5249.0, "ser_p99_ns": 5403.12, "ser_ci_low_ns": 4940.381179775281, "ser_ci_high_ns": 5020.20308988764, "deser_mean_ns": 22738.573033707864, "deser_median_ns": 22879.0, "deser_std_ns": 277.25803897028226, "deser_mad_ns": 102.0, "deser_cv": 0.012193291045980435, "deser_min_ns": 22257.0, "deser_max_ns": 23172.0, "deser_p5_ns": 22339.0, "deser_p25_ns": 22414.0, "deser_p50_ns": 22879.0, "deser_p75_ns": 22920.0, "deser_p95_ns": 23093.8, "deser_p99_ns": 23171.12, "deser_ci_low_ns": 22682.407584269662, "deser_ci_high_ns": 22798.76994382022, "total_mean_ns": 27716.955056179777, "total_median_ns": 27813.0, "total_std_ns": 373.746265110933, "total_mad_ns": 263.0, "total_cv": 0.013484391209401715, "total_min_ns": 26905.0, "total_max_ns": 28402.0, "total_p5_ns": 27006.6, "total_p25_ns": 27446.0, "total_p50_ns": 27813.0, "total_p75_ns": 27967.0, "total_p95_ns": 28270.0, "total_p99_ns": 28381.76, "total_ci_low_ns": 27637.644662921346, "total_ci_high_ns": 27792.433988764045, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.5963798815494314}, {"serializer": "avro-c", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.11.3", "avg_time_ser_ns": 15122.034482758621, "avg_time_deser_ns": 33044.97701149425, "avg_time_total_ns": 48167.011494252874, "median_size_bytes": 5543.0, "avg_ops_per_sec": 20761.097045003855, "min_ops_per_sec": 19833.00608873287, "max_ops_per_sec": 21323.32558585837, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 15122.034482758621, "ser_median_ns": 15120.0, "ser_std_ns": 288.3000071903403, "ser_mad_ns": 207.0, "ser_cv": 0.019064895501927692, "ser_min_ns": 14543.0, "ser_max_ns": 15893.0, "ser_p5_ns": 14679.4, "ser_p25_ns": 14908.5, "ser_p50_ns": 15120.0, "ser_p75_ns": 15324.0, "ser_p95_ns": 15590.8, "ser_p99_ns": 15820.76, "ser_ci_low_ns": 15058.700862068965, "ser_ci_high_ns": 15181.886206896552, "deser_mean_ns": 33044.97701149425, "deser_median_ns": 33110.0, "deser_std_ns": 600.8520883075328, "deser_mad_ns": 438.0, "deser_cv": 0.018182856901323746, "deser_min_ns": 32223.0, "deser_max_ns": 34866.0, "deser_p5_ns": 32292.3, "deser_p25_ns": 32498.0, "deser_p50_ns": 33110.0, "deser_p75_ns": 33390.5, "deser_p95_ns": 34059.200000000004, "deser_p99_ns": 34829.88, "deser_ci_low_ns": 32921.956034482755, "deser_ci_high_ns": 33166.61149425287, "total_mean_ns": 48167.011494252874, "total_median_ns": 48192.0, "total_std_ns": 802.9584468129134, "total_mad_ns": 615.0, "total_cv": 0.01667029823738846, "total_min_ns": 46897.0, "total_max_ns": 50421.0, "total_p5_ns": 47108.7, "total_p25_ns": 47438.5, "total_p50_ns": 48192.0, "total_p75_ns": 48641.0, "total_p95_ns": 49423.6, "total_p99_ns": 50192.24, "total_ci_low_ns": 47999.0683908046, "total_ci_high_ns": 48328.21781609196, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 36.612324224091985}, {"serializer": "protobuf-wire", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "wire-v2", "avg_time_ser_ns": 5152.511111111111, "avg_time_deser_ns": 22750.81111111111, "avg_time_total_ns": 27903.32222222222, "median_size_bytes": 4932.0, "avg_ops_per_sec": 35838.02645563113, "min_ops_per_sec": 34491.08405477184, "max_ops_per_sec": 36847.34146431335, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 5152.511111111111, "ser_median_ns": 5145.0, "ser_std_ns": 249.64173180215388, "ser_mad_ns": 151.5, "ser_cv": 0.0484504984887495, "ser_min_ns": 4573.0, "ser_max_ns": 5902.0, "ser_p5_ns": 4741.45, "ser_p25_ns": 5008.25, "ser_p50_ns": 5145.0, "ser_p75_ns": 5327.25, "ser_p95_ns": 5519.7, "ser_p99_ns": 5742.69, "ser_ci_low_ns": 5101.574444444444, "ser_ci_high_ns": 5203.111111111111, "deser_mean_ns": 22750.81111111111, "deser_median_ns": 22849.0, "deser_std_ns": 297.2968438418109, "deser_mad_ns": 151.0, "deser_cv": 0.013067527236275817, "deser_min_ns": 22244.0, "deser_max_ns": 23743.0, "deser_p5_ns": 22322.45, "deser_p25_ns": 22421.0, "deser_p50_ns": 22849.0, "deser_p75_ns": 22923.75, "deser_p95_ns": 23155.65, "deser_p99_ns": 23425.27, "deser_ci_low_ns": 22689.649722222224, "deser_ci_high_ns": 22811.540277777778, "total_mean_ns": 27903.32222222222, "total_median_ns": 27860.5, "total_std_ns": 398.39379275707324, "total_mad_ns": 244.5, "total_cv": 0.014277647284587218, "total_min_ns": 27139.0, "total_max_ns": 28993.0, "total_p5_ns": 27310.25, "total_p25_ns": 27637.5, "total_p50_ns": 27860.5, "total_p75_ns": 28164.25, "total_p95_ns": 28550.55, "total_p99_ns": 28725.11, "total_ci_low_ns": 27822.676944444447, "total_ci_high_ns": 27988.01638888889, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.857850172905177}, {"serializer": "nanopb", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.4.9", "avg_time_ser_ns": 5111.413793103448, "avg_time_deser_ns": 22751.16091954023, "avg_time_total_ns": 27862.57471264368, "median_size_bytes": 4932.0, "avg_ops_per_sec": 35890.4376323202, "min_ops_per_sec": 34234.851078397805, "max_ops_per_sec": 37015.10216168196, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 5111.413793103448, "ser_median_ns": 5109.0, "ser_std_ns": 272.8941166044177, "ser_mad_ns": 180.0, "ser_cv": 0.0533891654345455, "ser_min_ns": 4479.0, "ser_max_ns": 5808.0, "ser_p5_ns": 4699.8, "ser_p25_ns": 4927.5, "ser_p50_ns": 5109.0, "ser_p75_ns": 5286.5, "ser_p95_ns": 5572.9, "ser_p99_ns": 5792.52, "ser_ci_low_ns": 5057.605172413792, "ser_ci_high_ns": 5167.015804597701, "deser_mean_ns": 22751.16091954023, "deser_median_ns": 22854.0, "deser_std_ns": 305.56645353298524, "deser_mad_ns": 155.0, "deser_cv": 0.013430807096553221, "deser_min_ns": 22276.0, "deser_max_ns": 23461.0, "deser_p5_ns": 22303.3, "deser_p25_ns": 22408.0, "deser_p50_ns": 22854.0, "deser_p75_ns": 22943.0, "deser_p95_ns": 23221.1, "deser_p99_ns": 23425.74, "deser_ci_low_ns": 22684.13448275862, "deser_ci_high_ns": 22810.310919540232, "total_mean_ns": 27862.57471264368, "total_median_ns": 27782.0, "total_std_ns": 471.2202277853153, "total_mad_ns": 349.0, "total_cv": 0.01691230019641658, "total_min_ns": 27016.0, "total_max_ns": 29210.0, "total_p5_ns": 27242.3, "total_p25_ns": 27480.0, "total_p50_ns": 27782.0, "total_p75_ns": 28180.0, "total_p95_ns": 28649.1, "total_p99_ns": 29083.58, "total_ci_low_ns": 27764.16896551724, "total_ci_high_ns": 27961.29051724138, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.1067374293923775}, {"serializer": "ubj", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.0-min", "avg_time_ser_ns": 6891.068181818182, "avg_time_deser_ns": 23674.579545454544, "avg_time_total_ns": 30565.647727272728, "median_size_bytes": 9043.0, "avg_ops_per_sec": 32716.46682977808, "min_ops_per_sec": 31390.275292714316, "max_ops_per_sec": 33643.9794098846, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 6891.068181818182, "ser_median_ns": 6894.0, "ser_std_ns": 162.35619953574516, "ser_mad_ns": 105.0, "ser_cv": 0.023560382113779654, "ser_min_ns": 6482.0, "ser_max_ns": 7316.0, "ser_p5_ns": 6633.15, "ser_p25_ns": 6781.75, "ser_p50_ns": 6894.0, "ser_p75_ns": 6982.0, "ser_p95_ns": 7171.4, "ser_p99_ns": 7300.34, "ser_ci_low_ns": 6858.133238636364, "ser_ci_high_ns": 6923.233522727273, "deser_mean_ns": 23674.579545454544, "deser_median_ns": 23811.0, "deser_std_ns": 339.91103371495655, "deser_mad_ns": 194.5, "deser_cv": 0.014357637611360179, "deser_min_ns": 23213.0, "deser_max_ns": 24741.0, "deser_p5_ns": 23237.0, "deser_p25_ns": 23323.75, "deser_p50_ns": 23811.0, "deser_p75_ns": 23877.75, "deser_p95_ns": 24088.399999999998, "deser_p99_ns": 24610.5, "deser_ci_low_ns": 23605.712499999998, "deser_ci_high_ns": 23742.288920454546, "total_mean_ns": 30565.647727272728, "total_median_ns": 30680.5, "total_std_ns": 456.45042383599855, "total_mad_ns": 277.5, "total_cv": 0.014933445150868594, "total_min_ns": 29723.0, "total_max_ns": 31857.0, "total_p5_ns": 29920.85, "total_p25_ns": 30163.25, "total_p50_ns": 30680.5, "total_p75_ns": 30887.25, "total_p95_ns": 31121.6, "total_p99_ns": 31779.57, "total_ci_low_ns": 30473.876988636363, "total_ci_high_ns": 30661.63721590909, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.807150708820071}, {"serializer": "custom-binary", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "v2-1.0", "avg_time_ser_ns": 2893.139534883721, "avg_time_deser_ns": 22411.3488372093, "avg_time_total_ns": 25304.488372093023, "median_size_bytes": 5343.0, "avg_ops_per_sec": 39518.680848052514, "min_ops_per_sec": 38056.09468356357, "max_ops_per_sec": 40625.63477554337, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 2893.139534883721, "ser_median_ns": 2893.0, "ser_std_ns": 113.38110256389577, "ser_mad_ns": 80.5, "ser_cv": 0.03918964197779445, "ser_min_ns": 2599.0, "ser_max_ns": 3182.0, "ser_p5_ns": 2708.75, "ser_p25_ns": 2812.25, "ser_p50_ns": 2893.0, "ser_p75_ns": 2969.0, "ser_p95_ns": 3057.5, "ser_p99_ns": 3141.2000000000003, "ser_ci_low_ns": 2870.033430232558, "ser_ci_high_ns": 2917.1427325581394, "deser_mean_ns": 22411.3488372093, "deser_median_ns": 22534.0, "deser_std_ns": 295.847566769338, "deser_mad_ns": 259.5, "deser_cv": 0.013200792550163057, "deser_min_ns": 21985.0, "deser_max_ns": 23231.0, "deser_p5_ns": 22039.5, "deser_p25_ns": 22108.5, "deser_p50_ns": 22534.0, "deser_p75_ns": 22646.75, "deser_p95_ns": 22820.75, "deser_p99_ns": 22998.100000000002, "deser_ci_low_ns": 22350.025581395348, "deser_ci_high_ns": 22471.052034883724, "total_mean_ns": 25304.488372093023, "total_median_ns": 25384.0, "total_std_ns": 353.9160001431395, "total_mad_ns": 302.0, "total_cv": 0.013986293456676038, "total_min_ns": 24615.0, "total_max_ns": 26277.0, "total_p5_ns": 24831.0, "total_p25_ns": 24950.75, "total_p50_ns": 25384.0, "total_p75_ns": 25546.75, "total_p95_ns": 25765.5, "total_p99_ns": 25984.600000000002, "total_ci_low_ns": 25230.237790697673, "total_ci_high_ns": 25376.88895348837, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "cbor-encode", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.11.0", "avg_time_ser_ns": 89262.79787234042, "avg_time_deser_ns": 149414.1170212766, "avg_time_total_ns": 238676.914893617, "median_size_bytes": 13543.0, "avg_ops_per_sec": 4189.76422770388, "min_ops_per_sec": 4057.255996624363, "max_ops_per_sec": 4357.545307577336, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 89262.79787234042, "ser_median_ns": 89178.5, "ser_std_ns": 1814.2355632979993, "ser_mad_ns": 1286.5, "ser_cv": 0.020324654912706592, "ser_min_ns": 85820.0, "ser_max_ns": 94068.0, "ser_p5_ns": 86454.1, "ser_p25_ns": 87870.25, "ser_p50_ns": 89178.5, "ser_p75_ns": 90407.75, "ser_p95_ns": 92436.09999999999, "ser_p99_ns": 93607.65, "ser_ci_low_ns": 88902.80372340426, "ser_ci_high_ns": 89629.54893617022, "deser_mean_ns": 149414.1170212766, "deser_median_ns": 149247.0, "deser_std_ns": 3072.5243128127463, "deser_mad_ns": 2161.0, "deser_cv": 0.020563815348018412, "deser_min_ns": 143134.0, "deser_max_ns": 155886.0, "deser_p5_ns": 144239.7, "deser_p25_ns": 147306.0, "deser_p50_ns": 149247.0, "deser_p75_ns": 151907.0, "deser_p95_ns": 154287.65, "deser_p99_ns": 155297.31, "deser_ci_low_ns": 148798.67819148934, "deser_ci_high_ns": 150032.0295212766, "total_mean_ns": 238676.914893617, "total_median_ns": 237848.0, "total_std_ns": 3981.6791688220824, "total_mad_ns": 3182.5, "total_cv": 0.016682296947724478, "total_min_ns": 229487.0, "total_max_ns": 246472.0, "total_p5_ns": 232679.9, "total_p25_ns": 235735.0, "total_p50_ns": 237848.0, "total_p75_ns": 242134.0, "total_p95_ns": 245188.55, "total_p99_ns": 245756.83, "total_ci_low_ns": 237843.96090425533, "total_ci_high_ns": 239512.44521276598, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 73.5600147522973}, {"serializer": "json-c", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.15", "avg_time_ser_ns": 173340.3186813187, "avg_time_deser_ns": 217932.16483516485, "avg_time_total_ns": 391272.4835164835, "median_size_bytes": 16795.0, "avg_ops_per_sec": 2555.763673981618, "min_ops_per_sec": 2464.8269198536877, "max_ops_per_sec": 2666.9013539858174, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 173340.3186813187, "ser_median_ns": 173606.0, "ser_std_ns": 3908.9246827089896, "ser_mad_ns": 2479.0, "ser_cv": 0.022550579763819623, "ser_min_ns": 164191.0, "ser_max_ns": 182564.0, "ser_p5_ns": 166357.5, "ser_p25_ns": 171017.5, "ser_p50_ns": 173606.0, "ser_p75_ns": 175818.5, "ser_p95_ns": 179787.0, "ser_p99_ns": 180686.59999999998, "ser_ci_low_ns": 172545.96263736265, "ser_ci_high_ns": 174154.03626373626, "deser_mean_ns": 217932.16483516485, "deser_median_ns": 218162.0, "deser_std_ns": 4045.9470427240485, "deser_mad_ns": 2556.0, "deser_cv": 0.018565167036193306, "deser_min_ns": 208367.0, "deser_max_ns": 228535.0, "deser_p5_ns": 210916.0, "deser_p25_ns": 215532.5, "deser_p50_ns": 218162.0, "deser_p75_ns": 220541.5, "deser_p95_ns": 224899.5, "deser_p99_ns": 226524.4, "deser_ci_low_ns": 217110.75631868132, "deser_ci_high_ns": 218749.867032967, "total_mean_ns": 391272.4835164835, "total_median_ns": 391809.0, "total_std_ns": 6715.799028100557, "total_mad_ns": 4663.0, "total_cv": 0.01716399519778046, "total_min_ns": 374967.0, "total_max_ns": 405708.0, "total_p5_ns": 380382.0, "total_p25_ns": 386763.5, "total_p50_ns": 391809.0, "total_p75_ns": 396023.5, "total_p95_ns": 401066.0, "total_p99_ns": 404356.2, "total_ci_low_ns": 389922.2085164835, "total_ci_high_ns": 392669.5697802198, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 75.56252112242504}, {"serializer": "qcbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.5.1", "avg_time_ser_ns": 53160.27659574468, "avg_time_deser_ns": 148302.3085106383, "avg_time_total_ns": 201462.585106383, "median_size_bytes": 12295.0, "avg_ops_per_sec": 4963.700825500411, "min_ops_per_sec": 4736.283722340103, "max_ops_per_sec": 5121.848782536545, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 53160.27659574468, "ser_median_ns": 53210.0, "ser_std_ns": 1178.1775100776633, "ser_mad_ns": 898.0, "ser_cv": 0.022162742286633865, "ser_min_ns": 50655.0, "ser_max_ns": 56109.0, "ser_p5_ns": 51496.55, "ser_p25_ns": 52229.5, "ser_p50_ns": 53210.0, "ser_p75_ns": 53920.0, "ser_p95_ns": 55129.0, "ser_p99_ns": 55856.04, "ser_ci_low_ns": 52930.93856382979, "ser_ci_high_ns": 53414.96196808511, "deser_mean_ns": 148302.3085106383, "deser_median_ns": 148183.5, "deser_std_ns": 3350.1584235581367, "deser_mad_ns": 2580.0, "deser_cv": 0.022590062536469665, "deser_min_ns": 142652.0, "deser_max_ns": 155998.0, "deser_p5_ns": 143651.75, "deser_p25_ns": 145465.5, "deser_p50_ns": 148183.5, "deser_p75_ns": 150236.75, "deser_p95_ns": 154448.19999999998, "deser_p99_ns": 155347.93, "deser_ci_low_ns": 147622.0420212766, "deser_ci_high_ns": 148938.27978723403, "total_mean_ns": 201462.585106383, "total_median_ns": 201612.0, "total_std_ns": 3882.3566820499013, "total_mad_ns": 2650.5, "total_cv": 0.01927085706757813, "total_min_ns": 195242.0, "total_max_ns": 211136.0, "total_p5_ns": 195721.5, "total_p25_ns": 198077.0, "total_p50_ns": 201612.0, "total_p75_ns": 203980.0, "total_p95_ns": 208470.1, "total_p99_ns": 210370.61, "total_ci_low_ns": 200705.0175531915, "total_ci_high_ns": 202256.52287234043, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 62.272498654392805}, {"serializer": "tinycbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.6.0", "avg_time_ser_ns": 15925.255555555555, "avg_time_deser_ns": 148925.85555555555, "avg_time_total_ns": 164851.11111111112, "median_size_bytes": 12295.0, "avg_ops_per_sec": 6066.079829610557, "min_ops_per_sec": 5809.731299927378, "max_ops_per_sec": 6330.87695307554, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 15925.255555555555, "ser_median_ns": 15950.5, "ser_std_ns": 378.93939989002695, "ser_mad_ns": 240.0, "ser_cv": 0.023794870893474186, "ser_min_ns": 15198.0, "ser_max_ns": 16826.0, "ser_p5_ns": 15405.3, "ser_p25_ns": 15638.5, "ser_p50_ns": 15950.5, "ser_p75_ns": 16126.75, "ser_p95_ns": 16642.8, "ser_p99_ns": 16817.1, "ser_ci_low_ns": 15844.713055555556, "ser_ci_high_ns": 15998.167777777777, "deser_mean_ns": 148925.85555555555, "deser_median_ns": 148768.0, "deser_std_ns": 3027.800186218605, "deser_mad_ns": 1743.0, "deser_cv": 0.02033092356544569, "deser_min_ns": 142501.0, "deser_max_ns": 155925.0, "deser_p5_ns": 144143.0, "deser_p25_ns": 147111.5, "deser_p50_ns": 148768.0, "deser_p75_ns": 150513.0, "deser_p95_ns": 154321.25, "deser_p99_ns": 155500.47, "deser_ci_low_ns": 148302.7313888889, "deser_ci_high_ns": 149546.14527777777, "total_mean_ns": 164851.11111111112, "total_median_ns": 164418.5, "total_std_ns": 3207.6484909428887, "total_mad_ns": 1939.5, "total_cv": 0.0194578518113894, "total_min_ns": 157956.0, "total_max_ns": 172125.0, "total_p5_ns": 159629.0, "total_p25_ns": 162651.25, "total_p50_ns": 164418.5, "total_p75_ns": 166617.25, "total_p95_ns": 170488.2, "total_p99_ns": 171747.64, "total_ci_low_ns": 164209.8672222222, "total_ci_high_ns": 165518.6525, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 60.21758483676361}, {"serializer": "zcbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.9", "avg_time_ser_ns": 29561.902173913044, "avg_time_deser_ns": 155782.03260869565, "avg_time_total_ns": 185343.9347826087, "median_size_bytes": 12395.0, "avg_ops_per_sec": 5395.374826658922, "min_ops_per_sec": 5153.018896120292, "max_ops_per_sec": 5663.989487635511, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 29561.902173913044, "ser_median_ns": 29654.0, "ser_std_ns": 725.1983595228018, "ser_mad_ns": 499.5, "ser_cv": 0.024531518819609462, "ser_min_ns": 27701.0, "ser_max_ns": 30953.0, "ser_p5_ns": 28286.65, "ser_p25_ns": 29070.25, "ser_p50_ns": 29654.0, "ser_p75_ns": 30037.25, "ser_p95_ns": 30679.15, "ser_p99_ns": 30938.44, "ser_ci_low_ns": 29419.14782608696, "ser_ci_high_ns": 29706.73668478261, "deser_mean_ns": 155782.03260869565, "deser_median_ns": 155512.5, "deser_std_ns": 3577.6671091620497, "deser_mad_ns": 2205.5, "deser_cv": 0.02296585202575118, "deser_min_ns": 146977.0, "deser_max_ns": 164260.0, "deser_p5_ns": 150331.05, "deser_p25_ns": 153495.0, "deser_p50_ns": 155512.5, "deser_p75_ns": 158316.0, "deser_p95_ns": 161548.0, "deser_p99_ns": 164078.0, "deser_ci_low_ns": 155070.23967391305, "deser_ci_high_ns": 156469.79456521737, "total_mean_ns": 185343.9347826087, "total_median_ns": 184870.5, "total_std_ns": 3841.4383118035694, "total_mad_ns": 2594.0, "total_cv": 0.020725999565668125, "total_min_ns": 176554.0, "total_max_ns": 194061.0, "total_p5_ns": 179527.6, "total_p25_ns": 182707.75, "total_p50_ns": 184870.5, "total_p75_ns": 188156.0, "total_p95_ns": 191656.8, "total_p99_ns": 194013.68, "total_ci_low_ns": 184532.0508152174, "total_ci_high_ns": 186101.74239130435, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 57.46410809092636}, {"serializer": "libbson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.27.5", "avg_time_ser_ns": 59157.55172413793, "avg_time_deser_ns": 77250.88505747127, "avg_time_total_ns": 136408.4367816092, "median_size_bytes": 15143.0, "avg_ops_per_sec": 7330.924857683154, "min_ops_per_sec": 7031.063237382757, "max_ops_per_sec": 7626.3689332235135, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 59157.55172413793, "ser_median_ns": 58853.0, "ser_std_ns": 1344.9556122927218, "ser_mad_ns": 616.0, "ser_cv": 0.022735146622775846, "ser_min_ns": 56521.0, "ser_max_ns": 62535.0, "ser_p5_ns": 57593.1, "ser_p25_ns": 58293.0, "ser_p50_ns": 58853.0, "ser_p75_ns": 59871.0, "ser_p95_ns": 62031.1, "ser_p99_ns": 62429.22, "ser_ci_low_ns": 58894.31436781609, "ser_ci_high_ns": 59456.72040229885, "deser_mean_ns": 77250.88505747127, "deser_median_ns": 77207.0, "deser_std_ns": 1279.674008499797, "deser_mad_ns": 789.0, "deser_cv": 0.016565169545278036, "deser_min_ns": 73749.0, "deser_max_ns": 80537.0, "deser_p5_ns": 75715.7, "deser_p25_ns": 76261.0, "deser_p50_ns": 77207.0, "deser_p75_ns": 77952.0, "deser_p95_ns": 79585.9, "deser_p99_ns": 80186.98, "deser_ci_low_ns": 76980.95948275863, "deser_ci_high_ns": 77507.68908045978, "total_mean_ns": 136408.4367816092, "total_median_ns": 136392.0, "total_std_ns": 2250.568582944843, "total_mad_ns": 1590.0, "total_cv": 0.016498749168631102, "total_min_ns": 131124.0, "total_max_ns": 142226.0, "total_p5_ns": 133433.1, "total_p25_ns": 134715.5, "total_p50_ns": 136392.0, "total_p75_ns": 137900.5, "total_p95_ns": 140547.3, "total_p99_ns": 141771.06, "total_ci_low_ns": 135942.75, "total_ci_high_ns": 136898.67471264367, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 68.47477226999732}, {"serializer": "mpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.1", "avg_time_ser_ns": 10910.703296703297, "avg_time_deser_ns": 43876.38461538462, "avg_time_total_ns": 54787.08791208791, "median_size_bytes": 12295.0, "avg_ops_per_sec": 18252.475868120848, "min_ops_per_sec": 17365.331851491683, "max_ops_per_sec": 19085.42636842507, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 10910.703296703297, "ser_median_ns": 10918.0, "ser_std_ns": 224.3603992838058, "ser_mad_ns": 160.0, "ser_cv": 0.02056333062888778, "ser_min_ns": 10383.0, "ser_max_ns": 11433.0, "ser_p5_ns": 10536.0, "ser_p25_ns": 10757.5, "ser_p50_ns": 10918.0, "ser_p75_ns": 11064.0, "ser_p95_ns": 11296.0, "ser_p99_ns": 11378.1, "ser_ci_low_ns": 10865.337912087913, "ser_ci_high_ns": 10957.292582417582, "deser_mean_ns": 43876.38461538462, "deser_median_ns": 43706.0, "deser_std_ns": 1080.8994995859366, "deser_mad_ns": 764.0, "deser_cv": 0.024635108591124322, "deser_min_ns": 41839.0, "deser_max_ns": 46513.0, "deser_p5_ns": 42282.5, "deser_p25_ns": 43099.5, "deser_p50_ns": 43706.0, "deser_p75_ns": 44514.0, "deser_p95_ns": 46012.5, "deser_p99_ns": 46508.5, "deser_ci_low_ns": 43653.73901098901, "deser_ci_high_ns": 44098.610714285714, "total_mean_ns": 54787.08791208791, "total_median_ns": 54641.0, "total_std_ns": 1209.1718161925876, "total_mad_ns": 856.0, "total_cv": 0.022070379395467063, "total_min_ns": 52396.0, "total_max_ns": 57586.0, "total_p5_ns": 53001.0, "total_p25_ns": 53943.0, "total_p50_ns": 54641.0, "total_p75_ns": 55539.0, "total_p95_ns": 57105.0, "total_p99_ns": 57419.5, "total_ci_low_ns": 54538.677747252754, "total_ci_high_ns": 55017.932692307695, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 32.5621353310703}, {"serializer": "jansson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "2.14", "avg_time_ser_ns": 199809.04123711342, "avg_time_deser_ns": 273608.1649484536, "avg_time_total_ns": 473417.206185567, "median_size_bytes": 16795.0, "avg_ops_per_sec": 2112.301764562453, "min_ops_per_sec": 2056.7879143142154, "max_ops_per_sec": 2187.36055576457, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 199809.04123711342, "ser_median_ns": 200462.0, "ser_std_ns": 3967.257157337857, "ser_mad_ns": 2505.0, "ser_cv": 0.01985524345031971, "ser_min_ns": 190219.0, "ser_max_ns": 208901.0, "ser_p5_ns": 193316.6, "ser_p25_ns": 196955.0, "ser_p50_ns": 200462.0, "ser_p75_ns": 202582.0, "ser_p95_ns": 205724.19999999998, "ser_p99_ns": 208026.44, "ser_ci_low_ns": 199056.00154639175, "ser_ci_high_ns": 200622.54149484535, "deser_mean_ns": 273608.1649484536, "deser_median_ns": 274173.0, "deser_std_ns": 4466.319786003004, "deser_mad_ns": 3123.0, "deser_cv": 0.016323781078844763, "deser_min_ns": 265370.0, "deser_max_ns": 283236.0, "deser_p5_ns": 266449.2, "deser_p25_ns": 269681.0, "deser_p50_ns": 274173.0, "deser_p75_ns": 276518.0, "deser_p95_ns": 281691.6, "deser_p99_ns": 283140.0, "deser_ci_low_ns": 272784.7298969072, "deser_ci_high_ns": 274490.42474226805, "total_mean_ns": 473417.206185567, "total_median_ns": 474414.0, "total_std_ns": 6961.284658946077, "total_mad_ns": 4763.0, "total_cv": 0.014704333868713334, "total_min_ns": 457172.0, "total_max_ns": 486195.0, "total_p5_ns": 461730.4, "total_p25_ns": 468634.0, "total_p50_ns": 474414.0, "total_p75_ns": 478737.0, "total_p95_ns": 483474.2, "total_p99_ns": 485392.44, "total_ci_low_ns": 472111.2662371134, "total_ci_high_ns": 474745.3030927835, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 87.9223630509413}, {"serializer": "msgpack-c", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "6.0.1", "avg_time_ser_ns": 18224.61797752809, "avg_time_deser_ns": 38625.7191011236, "avg_time_total_ns": 56850.33707865168, "median_size_bytes": 12295.0, "avg_ops_per_sec": 17590.045220251082, "min_ops_per_sec": 16829.067164807057, "max_ops_per_sec": 18359.066625052783, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 18224.61797752809, "ser_median_ns": 18225.0, "ser_std_ns": 485.98329342819767, "ser_mad_ns": 385.0, "ser_cv": 0.02666630894691129, "ser_min_ns": 17030.0, "ser_max_ns": 19274.0, "ser_p5_ns": 17362.8, "ser_p25_ns": 17926.0, "ser_p50_ns": 18225.0, "ser_p75_ns": 18641.0, "ser_p95_ns": 18905.4, "ser_p99_ns": 19142.88, "ser_ci_low_ns": 18124.731460674157, "ser_ci_high_ns": 18322.200280898876, "deser_mean_ns": 38625.7191011236, "deser_median_ns": 38712.0, "deser_std_ns": 715.7639115080926, "deser_mad_ns": 487.0, "deser_cv": 0.018530759508559452, "deser_min_ns": 37135.0, "deser_max_ns": 40556.0, "deser_p5_ns": 37518.6, "deser_p25_ns": 38091.0, "deser_p50_ns": 38712.0, "deser_p75_ns": 39087.0, "deser_p95_ns": 39731.2, "deser_p99_ns": 40541.04, "deser_ci_low_ns": 38480.08033707865, "deser_ci_high_ns": 38775.8856741573, "total_mean_ns": 56850.33707865168, "total_median_ns": 56846.0, "total_std_ns": 1011.8797420442563, "total_mad_ns": 699.0, "total_cv": 0.01779901042001447, "total_min_ns": 54469.0, "total_max_ns": 59421.0, "total_p5_ns": 55108.6, "total_p25_ns": 56155.0, "total_p50_ns": 56846.0, "total_p75_ns": 57545.0, "total_p95_ns": 58230.8, "total_p99_ns": 58661.560000000005, "total_ci_low_ns": 56635.12303370787, "total_ci_high_ns": 57057.77106741573, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 41.15788062147139}, {"serializer": "cJSON", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.7.18", "avg_time_ser_ns": 169934.15463917525, "avg_time_deser_ns": 112809.27835051547, "avg_time_total_ns": 282743.43298969074, "median_size_bytes": 16741.0, "avg_ops_per_sec": 3536.7753352434593, "min_ops_per_sec": 3385.8134416793637, "max_ops_per_sec": 3673.755790757565, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 169934.15463917525, "ser_median_ns": 169687.0, "ser_std_ns": 3882.089547793511, "ser_mad_ns": 2794.0, "ser_cv": 0.02284466919576252, "ser_min_ns": 162938.0, "ser_max_ns": 179868.0, "ser_p5_ns": 164249.0, "ser_p25_ns": 166893.0, "ser_p50_ns": 169687.0, "ser_p75_ns": 172420.0, "ser_p95_ns": 176961.6, "ser_p99_ns": 178659.36, "ser_ci_low_ns": 169172.30360824743, "ser_ci_high_ns": 170678.6175257732, "deser_mean_ns": 112809.27835051547, "deser_median_ns": 113042.0, "deser_std_ns": 2127.7776490501187, "deser_mad_ns": 1359.0, "deser_cv": 0.01886172556160489, "deser_min_ns": 108011.0, "deser_max_ns": 118125.0, "deser_p5_ns": 109243.0, "deser_p25_ns": 111229.0, "deser_p50_ns": 113042.0, "deser_p75_ns": 114172.0, "deser_p95_ns": 116429.8, "deser_p99_ns": 117092.99999999999, "deser_ci_low_ns": 112394.25257731958, "deser_ci_high_ns": 113226.72474226804, "total_mean_ns": 282743.43298969074, "total_median_ns": 282582.0, "total_std_ns": 5406.714276610181, "total_mad_ns": 3788.0, "total_cv": 0.019122333698223568, "total_min_ns": 272201.0, "total_max_ns": 295350.0, "total_p5_ns": 274475.4, "total_p25_ns": 278794.0, "total_p50_ns": 282582.0, "total_p75_ns": 286131.0, "total_p95_ns": 291010.0, "total_p99_ns": 293984.88, "total_ci_low_ns": 281640.43479381443, "total_ci_high_ns": 283812.862886598, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 64.98549474290611}, {"serializer": "json-c", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.15", "avg_time_ser_ns": 7438.886597938144, "avg_time_deser_ns": 8438.20618556701, "avg_time_total_ns": 15877.092783505155, "median_size_bytes": 449.0, "avg_ops_per_sec": 62983.822897281825, "min_ops_per_sec": 56322.16277105041, "max_ops_per_sec": 70239.51675212475, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 7438.886597938144, "ser_median_ns": 7470.0, "ser_std_ns": 584.3805637219754, "ser_mad_ns": 424.0, "ser_cv": 0.0785575308923179, "ser_min_ns": 5859.0, "ser_max_ns": 8717.0, "ser_p5_ns": 6513.6, "ser_p25_ns": 7026.0, "ser_p50_ns": 7470.0, "ser_p75_ns": 7818.0, "ser_p95_ns": 8392.0, "ser_p99_ns": 8600.839999999998, "ser_ci_low_ns": 7324.864690721649, "ser_ci_high_ns": 7545.456443298969, "deser_mean_ns": 8438.20618556701, "deser_median_ns": 8359.0, "deser_std_ns": 588.4419919397382, "deser_mad_ns": 404.0, "deser_cv": 0.06973543653700107, "deser_min_ns": 7281.0, "deser_max_ns": 9850.0, "deser_p5_ns": 7546.8, "deser_p25_ns": 8029.0, "deser_p50_ns": 8359.0, "deser_p75_ns": 8910.0, "deser_p95_ns": 9466.8, "deser_p99_ns": 9749.199999999999, "deser_ci_low_ns": 8322.308247422681, "deser_ci_high_ns": 8557.701288659793, "total_mean_ns": 15877.092783505155, "total_median_ns": 15884.0, "total_std_ns": 780.4508590455133, "total_mad_ns": 578.0, "total_cv": 0.04915577868615407, "total_min_ns": 14237.0, "total_max_ns": 17755.0, "total_p5_ns": 14706.8, "total_p25_ns": 15293.0, "total_p50_ns": 15884.0, "total_p75_ns": 16383.0, "total_p95_ns": 17302.8, "total_p99_ns": 17694.52, "total_ci_low_ns": 15730.021134020619, "total_ci_high_ns": 16030.892268041238, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.712796729792046}, {"serializer": "parson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.5.3", "avg_time_ser_ns": 15840.252747252747, "avg_time_deser_ns": 5970.989010989011, "avg_time_total_ns": 21811.24175824176, "median_size_bytes": 449.0, "avg_ops_per_sec": 45847.916917528666, "min_ops_per_sec": 42633.01500682128, "max_ops_per_sec": 50676.53169817058, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 15840.252747252747, "ser_median_ns": 15949.0, "ser_std_ns": 638.6675468575457, "ser_mad_ns": 491.0, "ser_cv": 0.04031927754235569, "ser_min_ns": 14368.0, "ser_max_ns": 17077.0, "ser_p5_ns": 14731.0, "ser_p25_ns": 15354.0, "ser_p50_ns": 15949.0, "ser_p75_ns": 16336.5, "ser_p95_ns": 16682.5, "ser_p99_ns": 16870.899999999998, "ser_ci_low_ns": 15704.141208791209, "ser_ci_high_ns": 15974.066758241759, "deser_mean_ns": 5970.989010989011, "deser_median_ns": 5970.0, "deser_std_ns": 285.83734669701363, "deser_mad_ns": 188.0, "deser_cv": 0.04787102206534938, "deser_min_ns": 5291.0, "deser_max_ns": 6610.0, "deser_p5_ns": 5456.5, "deser_p25_ns": 5793.0, "deser_p50_ns": 5970.0, "deser_p75_ns": 6159.0, "deser_p95_ns": 6447.0, "deser_p99_ns": 6537.099999999999, "deser_ci_low_ns": 5909.908516483517, "deser_ci_high_ns": 6028.637912087912, "total_mean_ns": 21811.24175824176, "total_median_ns": 21910.0, "total_std_ns": 831.9113913907918, "total_mad_ns": 647.0, "total_cv": 0.038141404355230696, "total_min_ns": 19733.0, "total_max_ns": 23456.0, "total_p5_ns": 20364.0, "total_p25_ns": 21234.0, "total_p50_ns": 21910.0, "total_p75_ns": 22435.0, "total_p95_ns": 22967.5, "total_p99_ns": 23298.5, "total_ci_low_ns": 21642.73379120879, "total_ci_high_ns": 21980.629945054945, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 36.451048804703916}, {"serializer": "tinycbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.6.0", "avg_time_ser_ns": 1059.40625, "avg_time_deser_ns": 5714.322916666667, "avg_time_total_ns": 6773.729166666667, "median_size_bytes": 331.0, "avg_ops_per_sec": 147629.16783283456, "min_ops_per_sec": 137400.38472107722, "max_ops_per_sec": 157703.83220312253, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 1059.40625, "ser_median_ns": 1063.5, "ser_std_ns": 68.89726571994139, "ser_mad_ns": 48.5, "ser_cv": 0.0650338486486571, "ser_min_ns": 876.0, "ser_max_ns": 1228.0, "ser_p5_ns": 949.25, "ser_p25_ns": 1011.75, "ser_p50_ns": 1063.5, "ser_p75_ns": 1108.75, "ser_p95_ns": 1164.5, "ser_p99_ns": 1194.75, "ser_ci_low_ns": 1045.6765624999998, "ser_ci_high_ns": 1072.5010416666667, "deser_mean_ns": 5714.322916666667, "deser_median_ns": 5727.0, "deser_std_ns": 164.82676678332805, "deser_mad_ns": 121.5, "deser_cv": 0.02884449639739232, "deser_min_ns": 5349.0, "deser_max_ns": 6154.0, "deser_p5_ns": 5441.25, "deser_p25_ns": 5596.25, "deser_p50_ns": 5727.0, "deser_p75_ns": 5829.0, "deser_p95_ns": 5978.25, "deser_p99_ns": 6025.75, "deser_ci_low_ns": 5682.627864583334, "deser_ci_high_ns": 5747.70859375, "total_mean_ns": 6773.729166666667, "total_median_ns": 6763.0, "total_std_ns": 188.77987622272312, "total_mad_ns": 138.5, "total_cv": 0.027869416030346126, "total_min_ns": 6341.0, "total_max_ns": 7278.0, "total_p5_ns": 6484.0, "total_p25_ns": 6627.75, "total_p50_ns": 6763.0, "total_p75_ns": 6899.75, "total_p95_ns": 7064.75, "total_p99_ns": 7155.45, "total_ci_low_ns": 6736.258593750001, "total_ci_high_ns": 6811.025781249999, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 47.336539053366195}, {"serializer": "protobuf-wire", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "wire-v2", "avg_time_ser_ns": 529.7674418604652, "avg_time_deser_ns": 265.19767441860466, "avg_time_total_ns": 794.9651162790698, "median_size_bytes": 154.0, "avg_ops_per_sec": 1257916.8312197404, "min_ops_per_sec": 1129943.5028248588, "max_ops_per_sec": 1464128.8433382139, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 529.7674418604652, "ser_median_ns": 531.5, "ser_std_ns": 28.311575025733845, "ser_mad_ns": 16.5, "ser_cv": 0.053441515632421215, "ser_min_ns": 454.0, "ser_max_ns": 577.0, "ser_p5_ns": 478.25, "ser_p25_ns": 515.25, "ser_p50_ns": 531.5, "ser_p75_ns": 548.0, "ser_p95_ns": 574.5, "ser_p99_ns": 577.0, "ser_ci_low_ns": 523.9302325581396, "ser_ci_high_ns": 535.4886627906977, "deser_mean_ns": 265.19767441860466, "deser_median_ns": 261.5, "deser_std_ns": 20.709656609441524, "deser_mad_ns": 11.5, "deser_cv": 0.07809139599298334, "deser_min_ns": 228.0, "deser_max_ns": 315.0, "deser_p5_ns": 238.0, "deser_p25_ns": 251.25, "deser_p50_ns": 261.5, "deser_p75_ns": 275.75, "deser_p95_ns": 306.75, "deser_p99_ns": 310.75, "deser_ci_low_ns": 261.12674418604655, "deser_ci_high_ns": 269.63982558139537, "total_mean_ns": 794.9651162790698, "total_median_ns": 789.5, "total_std_ns": 41.584060202528285, "total_mad_ns": 27.5, "total_cv": 0.0523092892392153, "total_min_ns": 683.0, "total_max_ns": 885.0, "total_p5_ns": 727.5, "total_p25_ns": 777.25, "total_p50_ns": 789.5, "total_p75_ns": 824.0, "total_p95_ns": 863.75, "total_p99_ns": 882.45, "total_ci_low_ns": 785.8363372093023, "total_ci_high_ns": 803.8953488372093, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.531996516530272}, {"serializer": "flatcc", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.6.1", "avg_time_ser_ns": 464.04545454545456, "avg_time_deser_ns": 111.39772727272727, "avg_time_total_ns": 575.4431818181819, "median_size_bytes": 224.0, "avg_ops_per_sec": 1737791.0306285669, "min_ops_per_sec": 1416430.59490085, "max_ops_per_sec": 2227171.4922049, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 464.04545454545456, "ser_median_ns": 460.0, "ser_std_ns": 44.22952389184242, "ser_mad_ns": 24.0, "ser_cv": 0.09531291268689716, "ser_min_ns": 357.0, "ser_max_ns": 571.0, "ser_p5_ns": 379.35, "ser_p25_ns": 441.0, "ser_p50_ns": 460.0, "ser_p75_ns": 495.0, "ser_p95_ns": 531.65, "ser_p99_ns": 567.52, "ser_ci_low_ns": 454.8957386363636, "ser_ci_high_ns": 473.34090909090907, "deser_mean_ns": 111.39772727272727, "deser_median_ns": 112.5, "deser_std_ns": 13.901575014320782, "deser_mad_ns": 9.0, "deser_cv": 0.1247922678017167, "deser_min_ns": 73.0, "deser_max_ns": 145.0, "deser_p5_ns": 88.05, "deser_p25_ns": 103.0, "deser_p50_ns": 112.5, "deser_p75_ns": 120.25, "deser_p95_ns": 133.64999999999998, "deser_p99_ns": 139.77999999999997, "deser_ci_low_ns": 108.53352272727273, "deser_ci_high_ns": 114.22727272727273, "total_mean_ns": 575.4431818181819, "total_median_ns": 573.0, "total_std_ns": 51.11804188201676, "total_mad_ns": 32.5, "total_cv": 0.08883247468586415, "total_min_ns": 449.0, "total_max_ns": 706.0, "total_p5_ns": 477.35, "total_p25_ns": 545.0, "total_p50_ns": 573.0, "total_p75_ns": 615.0, "total_p95_ns": 647.65, "total_p99_ns": 677.2899999999998, "total_ci_low_ns": 564.715625, "total_ci_high_ns": 586.2622159090909, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.379923005265968}, {"serializer": "ubj", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.0-min", "avg_time_ser_ns": 238.8913043478261, "avg_time_deser_ns": 142.65217391304347, "avg_time_total_ns": 381.54347826086956, "median_size_bytes": 233.0, "avg_ops_per_sec": 2620933.280154977, "min_ops_per_sec": 2109704.641350211, "max_ops_per_sec": 3389830.5084745763, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 238.8913043478261, "ser_median_ns": 241.5, "ser_std_ns": 31.678486658319073, "ser_mad_ns": 19.5, "ser_cv": 0.1326062777580014, "ser_min_ns": 173.0, "ser_max_ns": 319.0, "ser_p5_ns": 183.55, "ser_p25_ns": 216.75, "ser_p50_ns": 241.5, "ser_p75_ns": 259.0, "ser_p95_ns": 286.40000000000003, "ser_p99_ns": 309.90000000000003, "ser_ci_low_ns": 232.22771739130434, "ser_ci_high_ns": 245.3046195652174, "deser_mean_ns": 142.65217391304347, "deser_median_ns": 143.5, "deser_std_ns": 12.58503802280136, "deser_mad_ns": 7.5, "deser_cv": 0.0882218453289946, "deser_min_ns": 114.0, "deser_max_ns": 175.0, "deser_p5_ns": 123.0, "deser_p25_ns": 134.75, "deser_p50_ns": 143.5, "deser_p75_ns": 150.0, "deser_p95_ns": 165.45, "deser_p99_ns": 174.09, "deser_ci_low_ns": 140.16304347826087, "deser_ci_high_ns": 145.23940217391302, "total_mean_ns": 381.54347826086956, "total_median_ns": 385.5, "total_std_ns": 39.081040917525776, "total_mad_ns": 26.5, "total_cv": 0.1024288007638417, "total_min_ns": 295.0, "total_max_ns": 474.0, "total_p5_ns": 312.7, "total_p25_ns": 353.75, "total_p50_ns": 385.5, "total_p75_ns": 407.25, "total_p95_ns": 443.9, "total_p99_ns": 462.1700000000001, "total_ci_low_ns": 373.44565217391306, "total_ci_high_ns": 389.43505434782605, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.984472049689441, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.318915771329362}, {"serializer": "libbson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.27.5", "avg_time_ser_ns": 4173.204545454545, "avg_time_deser_ns": 2559.806818181818, "avg_time_total_ns": 6733.011363636364, "median_size_bytes": 566.0, "avg_ops_per_sec": 148521.95340123712, "min_ops_per_sec": 112815.8844765343, "max_ops_per_sec": 185942.7296392711, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 4173.204545454545, "ser_median_ns": 4145.5, "ser_std_ns": 656.4623608733932, "ser_mad_ns": 570.0, "ser_cv": 0.15730414211026683, "ser_min_ns": 3080.0, "ser_max_ns": 6252.0, "ser_p5_ns": 3363.0, "ser_p25_ns": 3571.25, "ser_p50_ns": 4145.5, "ser_p75_ns": 4631.25, "ser_p95_ns": 5283.049999999999, "ser_p99_ns": 5522.939999999996, "ser_ci_low_ns": 4035.681534090909, "ser_ci_high_ns": 4305.382102272727, "deser_mean_ns": 2559.806818181818, "deser_median_ns": 2580.0, "deser_std_ns": 110.6167514443653, "deser_mad_ns": 69.5, "deser_cv": 0.043212929451814756, "deser_min_ns": 2265.0, "deser_max_ns": 2769.0, "deser_p5_ns": 2357.85, "deser_p25_ns": 2490.75, "deser_p50_ns": 2580.0, "deser_p75_ns": 2627.5, "deser_p95_ns": 2728.3999999999996, "deser_p99_ns": 2766.39, "deser_ci_low_ns": 2536.625, "deser_ci_high_ns": 2582.6539772727274, "total_mean_ns": 6733.011363636364, "total_median_ns": 6617.0, "total_std_ns": 699.0063472048033, "total_mad_ns": 518.5, "total_cv": 0.10381778812672077, "total_min_ns": 5378.0, "total_max_ns": 8864.0, "total_p5_ns": 5773.3, "total_p25_ns": 6152.25, "total_p50_ns": 6617.0, "total_p75_ns": 7269.25, "total_p95_ns": 7878.85, "total_p99_ns": 8148.859999999996, "total_ci_low_ns": 6597.013352272727, "total_ci_high_ns": 6873.826704545454, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.130242262914313}, {"serializer": "qcbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.5.1", "avg_time_ser_ns": 2712.534090909091, "avg_time_deser_ns": 5742.352272727273, "avg_time_total_ns": 8454.886363636364, "median_size_bytes": 331.0, "avg_ops_per_sec": 118274.8007472817, "min_ops_per_sec": 110729.70878086591, "max_ops_per_sec": 126135.21695257316, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 2712.534090909091, "ser_median_ns": 2697.0, "ser_std_ns": 102.08087270188204, "ser_mad_ns": 67.0, "ser_cv": 0.03763302848211216, "ser_min_ns": 2470.0, "ser_max_ns": 2990.0, "ser_p5_ns": 2554.1, "ser_p25_ns": 2648.5, "ser_p50_ns": 2697.0, "ser_p75_ns": 2776.75, "ser_p95_ns": 2882.95, "ser_p99_ns": 2954.33, "ser_ci_low_ns": 2691.452556818182, "ser_ci_high_ns": 2734.102840909091, "deser_mean_ns": 5742.352272727273, "deser_median_ns": 5731.5, "deser_std_ns": 145.7148877106333, "deser_mad_ns": 90.0, "deser_cv": 0.025375469979905543, "deser_min_ns": 5434.0, "deser_max_ns": 6102.0, "deser_p5_ns": 5484.7, "deser_p25_ns": 5649.5, "deser_p50_ns": 5731.5, "deser_p75_ns": 5829.25, "deser_p95_ns": 5987.0, "deser_p99_ns": 6084.6, "deser_ci_low_ns": 5712.391193181818, "deser_ci_high_ns": 5773.491193181818, "total_mean_ns": 8454.886363636364, "total_median_ns": 8449.5, "total_std_ns": 203.97348440581158, "total_mad_ns": 124.5, "total_cv": 0.02412492322582613, "total_min_ns": 7928.0, "total_max_ns": 9031.0, "total_p5_ns": 8121.95, "total_p25_ns": 8349.0, "total_p50_ns": 8449.5, "total_p75_ns": 8579.25, "total_p95_ns": 8785.6, "total_p99_ns": 8877.88, "total_ci_low_ns": 8411.519886363638, "total_ci_high_ns": 8496.180397727272, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 56.378992270463996}, {"serializer": "avro-c", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.11.3", "avg_time_ser_ns": 530.4044943820224, "avg_time_deser_ns": 461.13483146067415, "avg_time_total_ns": 991.5393258426966, "median_size_bytes": 199.0, "avg_ops_per_sec": 1008532.8679728489, "min_ops_per_sec": 802568.2182985554, "max_ops_per_sec": 1355013.5501355014, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 530.4044943820224, "ser_median_ns": 545.0, "ser_std_ns": 58.90800206121166, "ser_mad_ns": 33.0, "ser_cv": 0.111062411207216, "ser_min_ns": 384.0, "ser_max_ns": 662.0, "ser_p5_ns": 403.0, "ser_p25_ns": 502.0, "ser_p50_ns": 545.0, "ser_p75_ns": 562.0, "ser_p95_ns": 604.8, "ser_p99_ns": 659.36, "ser_ci_low_ns": 518.2584269662922, "ser_ci_high_ns": 541.9794943820225, "deser_mean_ns": 461.13483146067415, "deser_median_ns": 471.0, "deser_std_ns": 47.27174608080486, "deser_mad_ns": 28.0, "deser_cv": 0.10251176631153316, "deser_min_ns": 335.0, "deser_max_ns": 603.0, "deser_p5_ns": 384.2, "deser_p25_ns": 430.0, "deser_p50_ns": 471.0, "deser_p75_ns": 492.0, "deser_p95_ns": 520.6, "deser_p99_ns": 586.2800000000001, "deser_ci_low_ns": 451.3452247191011, "deser_ci_high_ns": 470.5733146067416, "total_mean_ns": 991.5393258426966, "total_median_ns": 1013.0, "total_std_ns": 98.48616148518431, "total_mad_ns": 56.0, "total_cv": 0.09932653089829008, "total_min_ns": 738.0, "total_max_ns": 1246.0, "total_p5_ns": 791.0, "total_p25_ns": 931.0, "total_p50_ns": 1013.0, "total_p75_ns": 1051.0, "total_p95_ns": 1110.4, "total_p99_ns": 1180.0000000000005, "total_ci_low_ns": 971.3008426966293, "total_ci_high_ns": 1010.8390449438201, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.974219241998119}, {"serializer": "msgpack-c", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "6.0.1", "avg_time_ser_ns": 1040.5416666666667, "avg_time_deser_ns": 2008.8125, "avg_time_total_ns": 3049.3541666666665, "median_size_bytes": 324.0, "avg_ops_per_sec": 327938.2929445443, "min_ops_per_sec": 216076.05877268797, "max_ops_per_sec": 514138.8174807198, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 1040.5416666666667, "ser_median_ns": 1050.0, "ser_std_ns": 80.5292907373874, "ser_mad_ns": 44.0, "ser_cv": 0.0773917021462098, "ser_min_ns": 845.0, "ser_max_ns": 1223.0, "ser_p5_ns": 892.75, "ser_p25_ns": 995.0, "ser_p50_ns": 1050.0, "ser_p75_ns": 1089.5, "ser_p95_ns": 1169.25, "ser_p99_ns": 1214.45, "ser_ci_low_ns": 1024.8515625, "ser_ci_high_ns": 1056.7549479166667, "deser_mean_ns": 2008.8125, "deser_median_ns": 2060.5, "deser_std_ns": 704.2878495331295, "deser_mad_ns": 717.5, "deser_cv": 0.35059909749323515, "deser_min_ns": 1077.0, "deser_max_ns": 3556.0, "deser_p5_ns": 1173.75, "deser_p25_ns": 1301.5, "deser_p50_ns": 2060.5, "deser_p75_ns": 2558.5, "deser_p95_ns": 3212.75, "deser_p99_ns": 3457.2, "deser_ci_low_ns": 1874.7578125, "deser_ci_high_ns": 2149.18359375, "total_mean_ns": 3049.3541666666665, "total_median_ns": 3138.0, "total_std_ns": 723.9993163585993, "total_mad_ns": 722.0, "total_cv": 0.23742709989965616, "total_min_ns": 1945.0, "total_max_ns": 4628.0, "total_p5_ns": 2091.25, "total_p25_ns": 2349.25, "total_p50_ns": 3138.0, "total_p75_ns": 3557.5, "total_p95_ns": 4258.25, "total_p99_ns": 4467.45, "total_ci_low_ns": 2905.0625, "total_ci_high_ns": 3194.6729166666664, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.341366252067179}, {"serializer": "cbor-encode", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.11.0", "avg_time_ser_ns": 6211.935483870968, "avg_time_deser_ns": 5958.408602150537, "avg_time_total_ns": 12170.344086021505, "median_size_bytes": 446.0, "avg_ops_per_sec": 82166.9455630733, "min_ops_per_sec": 73567.27727506805, "max_ops_per_sec": 90017.10324961743, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 6211.935483870968, "ser_median_ns": 6169.0, "ser_std_ns": 464.8774454312526, "ser_mad_ns": 348.0, "ser_cv": 0.07483616767081493, "ser_min_ns": 5273.0, "ser_max_ns": 7577.0, "ser_p5_ns": 5540.2, "ser_p25_ns": 5869.0, "ser_p50_ns": 6169.0, "ser_p75_ns": 6537.0, "ser_p95_ns": 6977.999999999999, "ser_p99_ns": 7229.24, "ser_ci_low_ns": 6118.945698924731, "ser_ci_high_ns": 6300.564247311829, "deser_mean_ns": 5958.408602150537, "deser_median_ns": 5960.0, "deser_std_ns": 138.31542689267542, "deser_mad_ns": 100.0, "deser_cv": 0.023213484695016377, "deser_min_ns": 5668.0, "deser_max_ns": 6307.0, "deser_p5_ns": 5687.8, "deser_p25_ns": 5860.0, "deser_p50_ns": 5960.0, "deser_p75_ns": 6056.0, "deser_p95_ns": 6176.8, "deser_p99_ns": 6220.5199999999995, "deser_ci_low_ns": 5930.408333333333, "deser_ci_high_ns": 5987.636290322581, "total_mean_ns": 12170.344086021505, "total_median_ns": 12121.0, "total_std_ns": 500.4445956960509, "total_mad_ns": 366.0, "total_cv": 0.041120003851891636, "total_min_ns": 11109.0, "total_max_ns": 13593.0, "total_p5_ns": 11428.0, "total_p25_ns": 11775.0, "total_p50_ns": 12121.0, "total_p75_ns": 12496.0, "total_p95_ns": 13059.4, "total_p99_ns": 13317.92, "total_ci_low_ns": 12073.281720430108, "total_ci_high_ns": 12274.161827956988, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 33.262702999327956}, {"serializer": "cJSON", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.7.18", "avg_time_ser_ns": 5728.86170212766, "avg_time_deser_ns": 4054.7340425531916, "avg_time_total_ns": 9783.595744680852, "median_size_bytes": 449.0, "avg_ops_per_sec": 102211.90920972796, "min_ops_per_sec": 87412.58741258741, "max_ops_per_sec": 127518.49018107625, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 5728.86170212766, "ser_median_ns": 5744.0, "ser_std_ns": 496.5113909198868, "ser_mad_ns": 393.5, "ser_cv": 0.08666841979018029, "ser_min_ns": 4401.0, "ser_max_ns": 6841.0, "ser_p5_ns": 4927.4, "ser_p25_ns": 5352.75, "ser_p50_ns": 5744.0, "ser_p75_ns": 6139.5, "ser_p95_ns": 6426.299999999999, "ser_p99_ns": 6601.059999999999, "ser_ci_low_ns": 5629.663563829788, "ser_ci_high_ns": 5827.979521276596, "deser_mean_ns": 4054.7340425531916, "deser_median_ns": 4037.0, "deser_std_ns": 254.0822479456533, "deser_mad_ns": 143.5, "deser_cv": 0.06266311064526994, "deser_min_ns": 3441.0, "deser_max_ns": 4676.0, "deser_p5_ns": 3612.95, "deser_p25_ns": 3901.0, "deser_p50_ns": 4037.0, "deser_p75_ns": 4201.5, "deser_p95_ns": 4524.05, "deser_p99_ns": 4611.83, "deser_ci_low_ns": 4005.2247340425533, "deser_ci_high_ns": 4106.686436170213, "total_mean_ns": 9783.595744680852, "total_median_ns": 9710.0, "total_std_ns": 710.378035344546, "total_mad_ns": 490.0, "total_cv": 0.07260909525322165, "total_min_ns": 7842.0, "total_max_ns": 11440.0, "total_p5_ns": 8593.95, "total_p25_ns": 9325.5, "total_p50_ns": 9710.0, "total_p75_ns": 10316.75, "total_p95_ns": 10790.449999999999, "total_p99_ns": 11247.489999999998, "total_ci_low_ns": 9647.796808510639, "total_ci_high_ns": 9918.245478723404, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.703130554572954}, {"serializer": "jansson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "2.14", "avg_time_ser_ns": 9518.150537634408, "avg_time_deser_ns": 8974.31182795699, "avg_time_total_ns": 18492.462365591397, "median_size_bytes": 449.0, "avg_ops_per_sec": 54076.08679851541, "min_ops_per_sec": 49210.17666453423, "max_ops_per_sec": 59484.861102849325, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 9518.150537634408, "ser_median_ns": 9561.0, "ser_std_ns": 642.8302390386858, "ser_mad_ns": 476.0, "ser_cv": 0.06753730533016465, "ser_min_ns": 8372.0, "ser_max_ns": 11381.0, "ser_p5_ns": 8550.2, "ser_p25_ns": 9069.0, "ser_p50_ns": 9561.0, "ser_p75_ns": 9943.0, "ser_p95_ns": 10612.599999999999, "ser_p99_ns": 11327.64, "ser_ci_low_ns": 9389.562634408603, "ser_ci_high_ns": 9647.765053763442, "deser_mean_ns": 8974.31182795699, "deser_median_ns": 8979.0, "deser_std_ns": 265.7809239439351, "deser_mad_ns": 177.0, "deser_cv": 0.02961574425305437, "deser_min_ns": 8354.0, "deser_max_ns": 9609.0, "deser_p5_ns": 8553.2, "deser_p25_ns": 8806.0, "deser_p50_ns": 8979.0, "deser_p75_ns": 9163.0, "deser_p95_ns": 9427.4, "deser_p99_ns": 9558.4, "deser_ci_low_ns": 8920.999731182796, "deser_ci_high_ns": 9025.846774193547, "total_mean_ns": 18492.462365591397, "total_median_ns": 18536.0, "total_std_ns": 825.5624901839296, "total_mad_ns": 571.0, "total_cv": 0.04464318887678471, "total_min_ns": 16811.0, "total_max_ns": 20321.0, "total_p5_ns": 17119.4, "total_p25_ns": 17941.0, "total_p50_ns": 18536.0, "total_p75_ns": 19099.0, "total_p95_ns": 19835.6, "total_p99_ns": 20213.36, "total_ci_low_ns": 18328.09543010753, "total_ci_high_ns": 18653.689247311828, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.90596826707044}, {"serializer": "yyjson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.10.0", "avg_time_ser_ns": 3388.8829787234044, "avg_time_deser_ns": 1459.531914893617, "avg_time_total_ns": 4848.414893617021, "median_size_bytes": 449.0, "avg_ops_per_sec": 206252.97585743092, "min_ops_per_sec": 158478.60538827258, "max_ops_per_sec": 286450.8736751647, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 3388.8829787234044, "ser_median_ns": 3398.0, "ser_std_ns": 675.7974955384033, "ser_mad_ns": 445.0, "ser_cv": 0.19941600219933733, "ser_min_ns": 2279.0, "ser_max_ns": 4850.0, "ser_p5_ns": 2446.6, "ser_p25_ns": 2768.5, "ser_p50_ns": 3398.0, "ser_p75_ns": 3787.5, "ser_p95_ns": 4690.0, "ser_p99_ns": 4792.339999999999, "ser_ci_low_ns": 3247.560904255319, "ser_ci_high_ns": 3530.926329787234, "deser_mean_ns": 1459.531914893617, "deser_median_ns": 1448.5, "deser_std_ns": 103.29909617979517, "deser_mad_ns": 56.5, "deser_cv": 0.07077549666827565, "deser_min_ns": 1212.0, "deser_max_ns": 1719.0, "deser_p5_ns": 1277.8, "deser_p25_ns": 1402.25, "deser_p50_ns": 1448.5, "deser_p75_ns": 1518.75, "deser_p95_ns": 1636.1499999999999, "deser_p99_ns": 1701.33, "deser_ci_low_ns": 1437.9537234042552, "deser_ci_high_ns": 1479.288829787234, "total_mean_ns": 4848.414893617021, "total_median_ns": 4892.0, "total_std_ns": 711.50501414406, "total_mad_ns": 449.5, "total_cv": 0.14675002650469587, "total_min_ns": 3491.0, "total_max_ns": 6310.0, "total_p5_ns": 3887.9, "total_p25_ns": 4254.5, "total_p50_ns": 4892.0, "total_p75_ns": 5239.5, "total_p95_ns": 6150.849999999999, "total_p99_ns": 6288.61, "total_ci_low_ns": 4711.520212765958, "total_ci_high_ns": 4985.528457446808, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.992224418327394}, {"serializer": "zcbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.9", "avg_time_ser_ns": 1410.258064516129, "avg_time_deser_ns": 7169.279569892473, "avg_time_total_ns": 8579.537634408602, "median_size_bytes": 342.0, "avg_ops_per_sec": 116556.39763027059, "min_ops_per_sec": 109086.94229300752, "max_ops_per_sec": 124100.27302060064, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1410.258064516129, "ser_median_ns": 1410.0, "ser_std_ns": 67.80998118556808, "ser_mad_ns": 40.0, "ser_cv": 0.04808338480151449, "ser_min_ns": 1263.0, "ser_max_ns": 1558.0, "ser_p5_ns": 1298.4, "ser_p25_ns": 1373.0, "ser_p50_ns": 1410.0, "ser_p75_ns": 1450.0, "ser_p95_ns": 1535.6, "ser_p99_ns": 1555.24, "ser_ci_low_ns": 1396.2986559139786, "ser_ci_high_ns": 1423.4956989247312, "deser_mean_ns": 7169.279569892473, "deser_median_ns": 7165.0, "deser_std_ns": 186.3237811603767, "deser_mad_ns": 122.0, "deser_cv": 0.02598919170942182, "deser_min_ns": 6777.0, "deser_max_ns": 7629.0, "deser_p5_ns": 6867.4, "deser_p25_ns": 7035.0, "deser_p50_ns": 7165.0, "deser_p75_ns": 7285.0, "deser_p95_ns": 7511.0, "deser_p99_ns": 7583.92, "deser_ci_low_ns": 7131.254032258064, "deser_ci_high_ns": 7207.48629032258, "total_mean_ns": 8579.537634408602, "total_median_ns": 8595.0, "total_std_ns": 223.2043107315039, "total_mad_ns": 145.0, "total_cv": 0.026015890394411642, "total_min_ns": 8058.0, "total_max_ns": 9167.0, "total_p5_ns": 8181.2, "total_p25_ns": 8435.0, "total_p50_ns": 8595.0, "total_p75_ns": 8722.0, "total_p95_ns": 8959.2, "total_p99_ns": 9140.32, "total_ci_low_ns": 8535.286290322581, "total_ci_high_ns": 8626.001344086022, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 51.707596641764745}, {"serializer": "protobuf-c", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.5.0", "avg_time_ser_ns": 509.1609195402299, "avg_time_deser_ns": 260.48275862068965, "avg_time_total_ns": 769.6436781609195, "median_size_bytes": 154.0, "avg_ops_per_sec": 1299302.5582819337, "min_ops_per_sec": 1168224.2990654206, "max_ops_per_sec": 1529051.9877675842, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 509.1609195402299, "ser_median_ns": 510.0, "ser_std_ns": 29.552032772807337, "ser_mad_ns": 21.0, "ser_cv": 0.05804065402248997, "ser_min_ns": 430.0, "ser_max_ns": 564.0, "ser_p5_ns": 456.1, "ser_p25_ns": 489.0, "ser_p50_ns": 510.0, "ser_p75_ns": 530.0, "ser_p95_ns": 553.7, "ser_p99_ns": 562.28, "ser_ci_low_ns": 502.792816091954, "ser_ci_high_ns": 515.1609195402299, "deser_mean_ns": 260.48275862068965, "deser_median_ns": 263.0, "deser_std_ns": 18.144037440082215, "deser_mad_ns": 13.0, "deser_cv": 0.06965542570325446, "deser_min_ns": 209.0, "deser_max_ns": 301.0, "deser_p5_ns": 231.6, "deser_p25_ns": 247.5, "deser_p50_ns": 263.0, "deser_p75_ns": 270.5, "deser_p95_ns": 288.4, "deser_p99_ns": 300.14, "deser_ci_low_ns": 256.80431034482757, "deser_ci_high_ns": 264.01149425287355, "total_mean_ns": 769.6436781609195, "total_median_ns": 771.0, "total_std_ns": 41.671745213087945, "total_mad_ns": 26.0, "total_cv": 0.05414420516343809, "total_min_ns": 654.0, "total_max_ns": 856.0, "total_p5_ns": 697.6, "total_p25_ns": 745.0, "total_p50_ns": 771.0, "total_p75_ns": 794.5, "total_p95_ns": 841.0, "total_p99_ns": 849.98, "total_ci_low_ns": 761.057183908046, "total_ci_high_ns": 778.3913793103449, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.80790619425197}, {"serializer": "nanopb", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.4.9", "avg_time_ser_ns": 502.1111111111111, "avg_time_deser_ns": 243.57777777777778, "avg_time_total_ns": 745.6888888888889, "median_size_bytes": 154.0, "avg_ops_per_sec": 1341041.8405054237, "min_ops_per_sec": 1210653.7530266345, "max_ops_per_sec": 1543209.87654321, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 502.1111111111111, "ser_median_ns": 506.0, "ser_std_ns": 30.244860068271322, "ser_mad_ns": 17.0, "ser_cv": 0.06023539292198316, "ser_min_ns": 428.0, "ser_max_ns": 573.0, "ser_p5_ns": 438.5, "ser_p25_ns": 483.0, "ser_p50_ns": 506.0, "ser_p75_ns": 521.0, "ser_p95_ns": 545.3, "ser_p99_ns": 555.2, "ser_ci_low_ns": 495.7108333333333, "ser_ci_high_ns": 508.5561111111111, "deser_mean_ns": 243.57777777777778, "deser_median_ns": 242.5, "deser_std_ns": 17.425267575059557, "deser_mad_ns": 11.5, "deser_cv": 0.0715388231801551, "deser_min_ns": 209.0, "deser_max_ns": 290.0, "deser_p5_ns": 217.45, "deser_p25_ns": 233.25, "deser_p50_ns": 242.5, "deser_p75_ns": 254.75, "deser_p95_ns": 272.55, "deser_p99_ns": 287.33, "deser_ci_low_ns": 240.0438888888889, "deser_ci_high_ns": 247.05555555555554, "total_mean_ns": 745.6888888888889, "total_median_ns": 751.5, "total_std_ns": 40.36842810310559, "total_mad_ns": 18.0, "total_cv": 0.0541357511216996, "total_min_ns": 648.0, "total_max_ns": 826.0, "total_p5_ns": 671.8, "total_p25_ns": 721.5, "total_p50_ns": 751.5, "total_p75_ns": 766.75, "total_p95_ns": 807.65, "total_p99_ns": 824.22, "total_ci_low_ns": 737.1652777777778, "total_ci_high_ns": 753.8111111111111, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.389708541188334}, {"serializer": "mpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.1", "avg_time_ser_ns": 717.4827586206897, "avg_time_deser_ns": 2130.5862068965516, "avg_time_total_ns": 2848.0689655172414, "median_size_bytes": 324.0, "avg_ops_per_sec": 351115.0931060368, "min_ops_per_sec": 222965.44035674472, "max_ops_per_sec": 551267.9162072768, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 717.4827586206897, "ser_median_ns": 724.0, "ser_std_ns": 49.541352721850714, "ser_mad_ns": 31.0, "ser_cv": 0.06904884072349068, "ser_min_ns": 588.0, "ser_max_ns": 835.0, "ser_p5_ns": 621.6, "ser_p25_ns": 687.0, "ser_p50_ns": 724.0, "ser_p75_ns": 745.0, "ser_p95_ns": 783.7, "ser_p99_ns": 827.26, "ser_ci_low_ns": 706.4362068965517, "ser_ci_high_ns": 727.8396551724138, "deser_mean_ns": 2130.5862068965516, "deser_median_ns": 2128.0, "deser_std_ns": 670.4367294380813, "deser_mad_ns": 647.0, "deser_cv": 0.3146724254892511, "deser_min_ns": 1205.0, "deser_max_ns": 3720.0, "deser_p5_ns": 1324.3, "deser_p25_ns": 1453.0, "deser_p50_ns": 2128.0, "deser_p75_ns": 2581.5, "deser_p95_ns": 3330.3, "deser_p99_ns": 3701.94, "deser_ci_low_ns": 1991.0330459770114, "deser_ci_high_ns": 2276.186494252873, "total_mean_ns": 2848.0689655172414, "total_median_ns": 2833.0, "total_std_ns": 679.5286977033463, "total_mad_ns": 641.0, "total_cv": 0.23859278196233435, "total_min_ns": 1814.0, "total_max_ns": 4485.0, "total_p5_ns": 1969.5, "total_p25_ns": 2177.0, "total_p50_ns": 2833.0, "total_p75_ns": 3338.5, "total_p95_ns": 4029.7, "total_p99_ns": 4435.9800000000005, "total_ci_low_ns": 2701.339367816092, "total_ci_high_ns": 2994.746264367816, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.410027090985608}, {"serializer": "custom-binary", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "v2-1.0", "avg_time_ser_ns": 156.63736263736263, "avg_time_deser_ns": 107.87912087912088, "avg_time_total_ns": 264.5164835164835, "median_size_bytes": 196.0, "avg_ops_per_sec": 3780482.7385650785, "min_ops_per_sec": 3012048.192771084, "max_ops_per_sec": 5813953.488372093, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 156.63736263736263, "ser_median_ns": 156.0, "ser_std_ns": 26.21938065355324, "ser_mad_ns": 18.0, "ser_cv": 0.16738905847294408, "ser_min_ns": 86.0, "ser_max_ns": 216.0, "ser_p5_ns": 114.5, "ser_p25_ns": 138.0, "ser_p50_ns": 156.0, "ser_p75_ns": 174.0, "ser_p95_ns": 198.5, "ser_p99_ns": 210.59999999999997, "ser_ci_low_ns": 151.33956043956044, "ser_ci_high_ns": 161.98956043956042, "deser_mean_ns": 107.87912087912088, "deser_median_ns": 105.0, "deser_std_ns": 10.445451072473993, "deser_mad_ns": 6.0, "deser_cv": 0.0968255116221996, "deser_min_ns": 85.0, "deser_max_ns": 134.0, "deser_p5_ns": 92.5, "deser_p25_ns": 102.0, "deser_p50_ns": 105.0, "deser_p75_ns": 114.0, "deser_p95_ns": 126.5, "deser_p99_ns": 133.1, "deser_ci_low_ns": 105.6923076923077, "deser_ci_high_ns": 110.02225274725275, "total_mean_ns": 264.5164835164835, "total_median_ns": 264.0, "total_std_ns": 30.584804737488202, "total_mad_ns": 21.0, "total_cv": 0.11562532637245758, "total_min_ns": 172.0, "total_max_ns": 332.0, "total_p5_ns": 219.0, "total_p25_ns": 245.0, "total_p50_ns": 264.0, "total_p75_ns": 287.5, "total_p95_ns": 307.5, "total_p99_ns": 330.2, "total_ci_low_ns": 258.4491758241758, "total_ci_high_ns": 270.67115384615386, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "cJSON", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.7.18", "avg_time_ser_ns": 7194.56043956044, "avg_time_deser_ns": 5638.406593406594, "avg_time_total_ns": 12832.967032967033, "median_size_bytes": 449.0, "avg_ops_per_sec": 77924.3021065251, "min_ops_per_sec": 72009.79333189313, "max_ops_per_sec": 87642.41893076249, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 7194.56043956044, "ser_median_ns": 7224.0, "ser_std_ns": 329.2883642979613, "ser_mad_ns": 218.0, "ser_cv": 0.04576907332480198, "ser_min_ns": 6383.0, "ser_max_ns": 7842.0, "ser_p5_ns": 6591.0, "ser_p25_ns": 7003.5, "ser_p50_ns": 7224.0, "ser_p75_ns": 7436.5, "ser_p95_ns": 7673.0, "ser_p99_ns": 7786.2, "ser_ci_low_ns": 7127.302197802198, "ser_ci_high_ns": 7261.904945054945, "deser_mean_ns": 5638.406593406594, "deser_median_ns": 5635.0, "deser_std_ns": 261.33915716393335, "deser_mad_ns": 164.0, "deser_cv": 0.046349824695071935, "deser_min_ns": 4989.0, "deser_max_ns": 6189.0, "deser_p5_ns": 5179.5, "deser_p25_ns": 5458.0, "deser_p50_ns": 5635.0, "deser_p75_ns": 5778.5, "deser_p95_ns": 6076.0, "deser_p99_ns": 6188.1, "deser_ci_low_ns": 5586.285164835165, "deser_ci_high_ns": 5691.464835164835, "total_mean_ns": 12832.967032967033, "total_median_ns": 12888.0, "total_std_ns": 544.1621582365448, "total_mad_ns": 349.0, "total_cv": 0.042403456413363225, "total_min_ns": 11410.0, "total_max_ns": 13887.0, "total_p5_ns": 11801.0, "total_p25_ns": 12495.5, "total_p50_ns": 12888.0, "total_p75_ns": 13212.0, "total_p95_ns": 13716.5, "total_p99_ns": 13861.8, "total_ci_low_ns": 12715.703296703297, "total_ci_high_ns": 12941.131318681319, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.72091146101953}, {"serializer": "zcbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.9", "avg_time_ser_ns": 1731.1038961038962, "avg_time_deser_ns": 7515.532467532467, "avg_time_total_ns": 9246.636363636364, "median_size_bytes": 342.0, "avg_ops_per_sec": 108147.43444790735, "min_ops_per_sec": 100280.78620136382, "max_ops_per_sec": 116252.03441060218, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 1731.1038961038962, "ser_median_ns": 1715.0, "ser_std_ns": 120.84271905157769, "ser_mad_ns": 73.0, "ser_cv": 0.06980673968994697, "ser_min_ns": 1507.0, "ser_max_ns": 2252.0, "ser_p5_ns": 1554.6, "ser_p25_ns": 1656.0, "ser_p50_ns": 1715.0, "ser_p75_ns": 1801.0, "ser_p95_ns": 1918.4, "ser_p99_ns": 2026.2799999999984, "ser_ci_low_ns": 1704.9295454545454, "ser_ci_high_ns": 1757.8327922077922, "deser_mean_ns": 7515.532467532467, "deser_median_ns": 7496.0, "deser_std_ns": 188.10737306232872, "deser_mad_ns": 130.0, "deser_cv": 0.025029147818196967, "deser_min_ns": 7095.0, "deser_max_ns": 7966.0, "deser_p5_ns": 7220.6, "deser_p25_ns": 7397.0, "deser_p50_ns": 7496.0, "deser_p75_ns": 7661.0, "deser_p95_ns": 7849.6, "deser_p99_ns": 7929.5199999999995, "deser_ci_low_ns": 7474.8438311688315, "deser_ci_high_ns": 7554.793181818181, "total_mean_ns": 9246.636363636364, "total_median_ns": 9267.0, "total_std_ns": 272.5744180900496, "total_mad_ns": 169.0, "total_cv": 0.02947822401257013, "total_min_ns": 8602.0, "total_max_ns": 9972.0, "total_p5_ns": 8823.8, "total_p25_ns": 9045.0, "total_p50_ns": 9267.0, "total_p75_ns": 9432.0, "total_p95_ns": 9718.4, "total_p99_ns": 9854.96, "total_ci_low_ns": 9189.18409090909, "total_ci_high_ns": 9308.951623376623, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 43.062635247128675}, {"serializer": "jansson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "2.14", "avg_time_ser_ns": 11009.054945054944, "avg_time_deser_ns": 10600.945054945056, "avg_time_total_ns": 21610.0, "median_size_bytes": 449.0, "avg_ops_per_sec": 46274.87274409996, "min_ops_per_sec": 43761.76097326157, "max_ops_per_sec": 49123.15174141573, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 11009.054945054944, "ser_median_ns": 11013.0, "ser_std_ns": 351.250001585998, "ser_mad_ns": 212.0, "ser_cv": 0.03190555441307637, "ser_min_ns": 10176.0, "ser_max_ns": 11797.0, "ser_p5_ns": 10327.0, "ser_p25_ns": 10819.0, "ser_p50_ns": 11013.0, "ser_p75_ns": 11223.5, "ser_p95_ns": 11613.0, "ser_p99_ns": 11725.9, "ser_ci_low_ns": 10935.516483516483, "ser_ci_high_ns": 11081.10521978022, "deser_mean_ns": 10600.945054945056, "deser_median_ns": 10604.0, "deser_std_ns": 219.82130938243466, "deser_mad_ns": 147.0, "deser_cv": 0.020736010633306125, "deser_min_ns": 9983.0, "deser_max_ns": 11133.0, "deser_p5_ns": 10264.5, "deser_p25_ns": 10450.5, "deser_p50_ns": 10604.0, "deser_p75_ns": 10741.5, "deser_p95_ns": 10935.5, "deser_p99_ns": 11070.0, "deser_ci_low_ns": 10556.892582417582, "deser_ci_high_ns": 10647.936538461538, "total_mean_ns": 21610.0, "total_median_ns": 21581.0, "total_std_ns": 494.01473212400816, "total_mad_ns": 330.0, "total_cv": 0.022860468862749107, "total_min_ns": 20357.0, "total_max_ns": 22851.0, "total_p5_ns": 20921.5, "total_p25_ns": 21279.0, "total_p50_ns": 21581.0, "total_p75_ns": 21928.5, "total_p95_ns": 22414.5, "total_p99_ns": 22725.899999999998, "total_ci_low_ns": 21508.321428571428, "total_ci_high_ns": 21709.986813186813, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 56.45796898546935}, {"serializer": "avro-c", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.11.3", "avg_time_ser_ns": 811.2916666666666, "avg_time_deser_ns": 693.1388888888889, "avg_time_total_ns": 1504.4305555555557, "median_size_bytes": 199.0, "avg_ops_per_sec": 664703.3299790433, "min_ops_per_sec": 600600.6006006006, "max_ops_per_sec": 816326.5306122449, "runs": 72, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 27, "ser_mean_ns": 811.2916666666666, "ser_median_ns": 813.0, "ser_std_ns": 60.311500666755556, "ser_mad_ns": 44.0, "ser_cv": 0.07434009634852516, "ser_min_ns": 615.0, "ser_max_ns": 930.0, "ser_p5_ns": 717.65, "ser_p25_ns": 768.0, "ser_p50_ns": 813.0, "ser_p75_ns": 853.5, "ser_p95_ns": 904.45, "ser_p99_ns": 917.2200000000001, "ser_ci_low_ns": 798.0399305555555, "ser_ci_high_ns": 824.5638888888889, "deser_mean_ns": 693.1388888888889, "deser_median_ns": 695.5, "deser_std_ns": 39.506571232885165, "deser_mad_ns": 19.0, "deser_cv": 0.05699661621383665, "deser_min_ns": 592.0, "deser_max_ns": 770.0, "deser_p5_ns": 611.1, "deser_p25_ns": 675.25, "deser_p50_ns": 695.5, "deser_p75_ns": 713.25, "deser_p95_ns": 764.9, "deser_p99_ns": 770.0, "deser_ci_low_ns": 683.8888888888889, "deser_ci_high_ns": 702.3631944444444, "total_mean_ns": 1504.4305555555557, "total_median_ns": 1506.0, "total_std_ns": 90.42525921396279, "total_mad_ns": 62.5, "total_cv": 0.06010597091373924, "total_min_ns": 1225.0, "total_max_ns": 1665.0, "total_p5_ns": 1330.1, "total_p25_ns": 1449.75, "total_p50_ns": 1506.0, "total_p75_ns": 1578.0, "total_p95_ns": 1627.45, "total_p99_ns": 1662.8700000000001, "total_ci_low_ns": 1483.2774305555556, "total_ci_high_ns": 1525.4083333333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.012775998800487}, {"serializer": "ubj", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.0-min", "avg_time_ser_ns": 510.0375, "avg_time_deser_ns": 353.525, "avg_time_total_ns": 863.5625, "median_size_bytes": 233.0, "avg_ops_per_sec": 1157993.7757834552, "min_ops_per_sec": 1020408.1632653062, "max_ops_per_sec": 1390820.5841446454, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 510.0375, "ser_median_ns": 509.0, "ser_std_ns": 44.243985145090484, "ser_mad_ns": 29.5, "ser_cv": 0.08674653362760676, "ser_min_ns": 386.0, "ser_max_ns": 602.0, "ser_p5_ns": 438.6, "ser_p25_ns": 482.25, "ser_p50_ns": 509.0, "ser_p75_ns": 539.25, "ser_p95_ns": 584.25, "ser_p99_ns": 598.8399999999999, "ser_ci_low_ns": 500.874375, "ser_ci_high_ns": 519.2753124999999, "deser_mean_ns": 353.525, "deser_median_ns": 351.0, "deser_std_ns": 19.878730443633287, "deser_mad_ns": 14.0, "deser_cv": 0.05623005570647985, "deser_min_ns": 303.0, "deser_max_ns": 408.0, "deser_p5_ns": 326.95, "deser_p25_ns": 337.0, "deser_p50_ns": 351.0, "deser_p75_ns": 366.5, "deser_p95_ns": 382.34999999999997, "deser_p99_ns": 400.88999999999993, "deser_ci_low_ns": 349.21187499999996, "deser_ci_high_ns": 357.8253125, "total_mean_ns": 863.5625, "total_median_ns": 867.0, "total_std_ns": 53.28638740127239, "total_mad_ns": 36.5, "total_cv": 0.06170530494465935, "total_min_ns": 719.0, "total_max_ns": 980.0, "total_p5_ns": 784.65, "total_p25_ns": 828.75, "total_p50_ns": 867.0, "total_p75_ns": 892.0, "total_p95_ns": 952.4499999999999, "total_p99_ns": 974.4699999999999, "total_ci_low_ns": 851.7990625, "total_ci_high_ns": 876.0140625, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.9516891891891892, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.7378800043817098}, {"serializer": "parson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.5.3", "avg_time_ser_ns": 17690.228260869564, "avg_time_deser_ns": 8235.33695652174, "avg_time_total_ns": 25925.565217391304, "median_size_bytes": 449.0, "avg_ops_per_sec": 38571.965224857784, "min_ops_per_sec": 36301.593639960796, "max_ops_per_sec": 41257.52949913359, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 17690.228260869564, "ser_median_ns": 17704.0, "ser_std_ns": 439.9747021513918, "ser_mad_ns": 287.0, "ser_cv": 0.024871058511133356, "ser_min_ns": 16613.0, "ser_max_ns": 18903.0, "ser_p5_ns": 16867.95, "ser_p25_ns": 17443.75, "ser_p50_ns": 17704.0, "ser_p75_ns": 18000.0, "ser_p95_ns": 18444.1, "ser_p99_ns": 18680.05, "ser_ci_low_ns": 17602.45516304348, "ser_ci_high_ns": 17778.019836956522, "deser_mean_ns": 8235.33695652174, "deser_median_ns": 8252.0, "deser_std_ns": 285.59162718872864, "deser_mad_ns": 163.5, "deser_cv": 0.03467880290709447, "deser_min_ns": 7519.0, "deser_max_ns": 8923.0, "deser_p5_ns": 7837.3, "deser_p25_ns": 8028.5, "deser_p50_ns": 8252.0, "deser_p75_ns": 8390.25, "deser_p95_ns": 8760.2, "deser_p99_ns": 8918.45, "deser_ci_low_ns": 8179.49347826087, "deser_ci_high_ns": 8291.078260869566, "total_mean_ns": 25925.565217391304, "total_median_ns": 25955.5, "total_std_ns": 636.2404912711224, "total_mad_ns": 348.5, "total_cv": 0.02454104610395617, "total_min_ns": 24238.0, "total_max_ns": 27547.0, "total_p5_ns": 24837.05, "total_p25_ns": 25626.25, "total_p50_ns": 25955.5, "total_p75_ns": 26318.75, "total_p95_ns": 26890.45, "total_p99_ns": 27272.18, "total_ci_low_ns": 25794.25434782609, "total_ci_high_ns": 26056.696739130435, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 52.82768247955153}, {"serializer": "protobuf-c", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.5.0", "avg_time_ser_ns": 916.6516853932584, "avg_time_deser_ns": 470.86516853932585, "avg_time_total_ns": 1387.5168539325844, "median_size_bytes": 154.0, "avg_ops_per_sec": 720711.9662480059, "min_ops_per_sec": 448229.49350067234, "max_ops_per_sec": 935453.6950420954, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 916.6516853932584, "ser_median_ns": 776.0, "ser_std_ns": 302.33621039572046, "ser_mad_ns": 39.0, "ser_cv": 0.3298267108580216, "ser_min_ns": 644.0, "ser_max_ns": 1727.0, "ser_p5_ns": 713.2, "ser_p25_ns": 755.0, "ser_p50_ns": 776.0, "ser_p75_ns": 832.0, "ser_p95_ns": 1532.7999999999997, "ser_p99_ns": 1644.2800000000004, "ser_ci_low_ns": 857.3238764044944, "ser_ci_high_ns": 979.9912921348314, "deser_mean_ns": 470.86516853932585, "deser_median_ns": 470.0, "deser_std_ns": 22.66364279635596, "deser_mad_ns": 14.0, "deser_cv": 0.04813191612083137, "deser_min_ns": 416.0, "deser_max_ns": 537.0, "deser_p5_ns": 434.2, "deser_p25_ns": 456.0, "deser_p50_ns": 470.0, "deser_p75_ns": 483.0, "deser_p95_ns": 511.79999999999995, "deser_p99_ns": 520.2800000000001, "deser_ci_low_ns": 466.3696629213483, "deser_ci_high_ns": 475.8657303370787, "total_mean_ns": 1387.5168539325844, "total_median_ns": 1247.0, "total_std_ns": 304.23537211267075, "total_mad_ns": 43.0, "total_cv": 0.21926607323751665, "total_min_ns": 1069.0, "total_max_ns": 2231.0, "total_p5_ns": 1167.0, "total_p25_ns": 1224.0, "total_p50_ns": 1247.0, "total_p75_ns": 1323.0, "total_p95_ns": 2005.9999999999998, "total_p99_ns": 2121.8800000000006, "total_ci_low_ns": 1324.5044943820226, "total_ci_high_ns": 1454.0758426966293, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.876363290456685}, {"serializer": "qcbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.5.1", "avg_time_ser_ns": 3118.6794871794873, "avg_time_deser_ns": 6053.974358974359, "avg_time_total_ns": 9172.653846153846, "median_size_bytes": 331.0, "avg_ops_per_sec": 109019.70321482333, "min_ops_per_sec": 100826.7795926598, "max_ops_per_sec": 117315.81417175035, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 3118.6794871794873, "ser_median_ns": 3091.5, "ser_std_ns": 219.66187082841094, "ser_mad_ns": 104.0, "ser_cv": 0.07043425646380598, "ser_min_ns": 2642.0, "ser_max_ns": 3754.0, "ser_p5_ns": 2794.45, "ser_p25_ns": 3000.75, "ser_p50_ns": 3091.5, "ser_p75_ns": 3206.75, "ser_p95_ns": 3657.2999999999997, "ser_p99_ns": 3710.88, "ser_ci_low_ns": 3071.5298076923077, "ser_ci_high_ns": 3167.344871794872, "deser_mean_ns": 6053.974358974359, "deser_median_ns": 6055.0, "deser_std_ns": 143.32199461071613, "deser_mad_ns": 89.0, "deser_cv": 0.023674033967166847, "deser_min_ns": 5765.0, "deser_max_ns": 6343.0, "deser_p5_ns": 5786.15, "deser_p25_ns": 5966.25, "deser_p50_ns": 6055.0, "deser_p75_ns": 6143.0, "deser_p95_ns": 6283.15, "deser_p99_ns": 6334.53, "deser_ci_low_ns": 6022.441987179487, "deser_ci_high_ns": 6086.628846153846, "total_mean_ns": 9172.653846153846, "total_median_ns": 9154.5, "total_std_ns": 291.1911420678541, "total_mad_ns": 172.0, "total_cv": 0.031745571887022914, "total_min_ns": 8524.0, "total_max_ns": 9918.0, "total_p5_ns": 8739.6, "total_p25_ns": 8994.5, "total_p50_ns": 9154.5, "total_p75_ns": 9351.0, "total_p95_ns": 9714.8, "total_p99_ns": 9851.01, "total_ci_low_ns": 9107.28782051282, "total_ci_high_ns": 9236.763782051283, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 39.88896500069597}, {"serializer": "yyjson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.10.0", "avg_time_ser_ns": 3034.655172413793, "avg_time_deser_ns": 1720.6781609195402, "avg_time_total_ns": 4755.333333333333, "median_size_bytes": 449.0, "avg_ops_per_sec": 210290.2004766578, "min_ops_per_sec": 173220.16282695305, "max_ops_per_sec": 248323.81425378693, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 3034.655172413793, "ser_median_ns": 2955.0, "ser_std_ns": 337.7534819880146, "ser_mad_ns": 151.0, "ser_cv": 0.1112988009505417, "ser_min_ns": 2517.0, "ser_max_ns": 3889.0, "ser_p5_ns": 2588.7, "ser_p25_ns": 2813.5, "ser_p50_ns": 2955.0, "ser_p75_ns": 3106.0, "ser_p95_ns": 3704.0, "ser_p99_ns": 3810.7400000000002, "ser_ci_low_ns": 2967.175, "ser_ci_high_ns": 3110.2045977011494, "deser_mean_ns": 1720.6781609195402, "deser_median_ns": 1724.0, "deser_std_ns": 113.92730181525424, "deser_mad_ns": 68.0, "deser_cv": 0.06621069785320623, "deser_min_ns": 1428.0, "deser_max_ns": 1967.0, "deser_p5_ns": 1512.4, "deser_p25_ns": 1662.5, "deser_p50_ns": 1724.0, "deser_p75_ns": 1796.0, "deser_p95_ns": 1896.5, "deser_p99_ns": 1943.78, "deser_ci_low_ns": 1696.8255747126436, "deser_ci_high_ns": 1744.4545977011494, "total_mean_ns": 4755.333333333333, "total_median_ns": 4689.0, "total_std_ns": 409.49548274382335, "total_mad_ns": 247.0, "total_cv": 0.08611288716048437, "total_min_ns": 4027.0, "total_max_ns": 5773.0, "total_p5_ns": 4124.0, "total_p25_ns": 4477.5, "total_p50_ns": 4689.0, "total_p75_ns": 4997.0, "total_p95_ns": 5489.5, "total_p99_ns": 5606.16, "total_ci_low_ns": 4669.969827586207, "total_ci_high_ns": 4840.582471264368, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.239128082912574}, {"serializer": "cbor-encode", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.11.0", "avg_time_ser_ns": 7867.376344086021, "avg_time_deser_ns": 6293.0, "avg_time_total_ns": 14160.376344086022, "median_size_bytes": 446.0, "avg_ops_per_sec": 70619.59200100234, "min_ops_per_sec": 67132.11600429646, "max_ops_per_sec": 75125.83577492299, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 7867.376344086021, "ser_median_ns": 7864.0, "ser_std_ns": 263.8785505385292, "ser_mad_ns": 171.0, "ser_cv": 0.03354085771387931, "ser_min_ns": 7210.0, "ser_max_ns": 8410.0, "ser_p5_ns": 7472.6, "ser_p25_ns": 7701.0, "ser_p50_ns": 7864.0, "ser_p75_ns": 8044.0, "ser_p95_ns": 8338.4, "ser_p99_ns": 8386.08, "ser_ci_low_ns": 7815.004032258064, "ser_ci_high_ns": 7919.507795698925, "deser_mean_ns": 6293.0, "deser_median_ns": 6281.0, "deser_std_ns": 143.7621828485896, "deser_mad_ns": 111.0, "deser_cv": 0.02284477718871597, "deser_min_ns": 5998.0, "deser_max_ns": 6577.0, "deser_p5_ns": 6060.4, "deser_p25_ns": 6184.0, "deser_p50_ns": 6281.0, "deser_p75_ns": 6402.0, "deser_p95_ns": 6543.0, "deser_p99_ns": 6567.8, "deser_ci_low_ns": 6264.082258064516, "deser_ci_high_ns": 6321.141666666666, "total_mean_ns": 14160.376344086022, "total_median_ns": 14165.0, "total_std_ns": 334.12643773104344, "total_mad_ns": 212.0, "total_cv": 0.0235958727093146, "total_min_ns": 13311.0, "total_max_ns": 14896.0, "total_p5_ns": 13569.2, "total_p25_ns": 13952.0, "total_p50_ns": 14165.0, "total_p75_ns": 14367.0, "total_p95_ns": 14762.4, "total_p99_ns": 14865.64, "total_ci_low_ns": 14095.568010752688, "total_ci_high_ns": 14224.254838709678, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 53.26609432174966}, {"serializer": "msgpack-c", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "6.0.1", "avg_time_ser_ns": 1339.2142857142858, "avg_time_deser_ns": 1438.857142857143, "avg_time_total_ns": 2778.0714285714284, "median_size_bytes": 324.0, "avg_ops_per_sec": 359961.9468799013, "min_ops_per_sec": 324780.7729782397, "max_ops_per_sec": 402414.48692152917, "runs": 70, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 29, "ser_mean_ns": 1339.2142857142858, "ser_median_ns": 1342.0, "ser_std_ns": 65.7452026920492, "ser_mad_ns": 38.5, "ser_cv": 0.0490923696031089, "ser_min_ns": 1177.0, "ser_max_ns": 1545.0, "ser_p5_ns": 1227.05, "ser_p25_ns": 1296.75, "ser_p50_ns": 1342.0, "ser_p75_ns": 1378.0, "ser_p95_ns": 1437.65, "ser_p99_ns": 1482.2100000000003, "ser_ci_low_ns": 1324.5996428571427, "ser_ci_high_ns": 1354.1317857142856, "deser_mean_ns": 1438.857142857143, "deser_median_ns": 1443.0, "deser_std_ns": 52.7540878872896, "deser_mad_ns": 26.0, "deser_cv": 0.03666388157377157, "deser_min_ns": 1308.0, "deser_max_ns": 1566.0, "deser_p5_ns": 1359.6, "deser_p25_ns": 1403.0, "deser_p50_ns": 1443.0, "deser_p75_ns": 1464.75, "deser_p95_ns": 1533.1, "deser_p99_ns": 1552.89, "deser_ci_low_ns": 1426.9125000000001, "deser_ci_high_ns": 1450.872142857143, "total_mean_ns": 2778.0714285714284, "total_median_ns": 2786.0, "total_std_ns": 103.85599302777229, "total_mad_ns": 58.0, "total_cv": 0.03738420544542236, "total_min_ns": 2485.0, "total_max_ns": 3079.0, "total_p5_ns": 2594.9, "total_p25_ns": 2714.75, "total_p50_ns": 2786.0, "total_p75_ns": 2819.0, "total_p95_ns": 2930.35, "total_p99_ns": 3027.94, "total_ci_low_ns": 2753.9117857142855, "total_ci_high_ns": 2802.1464285714283, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.09221381514444}, {"serializer": "flatcc", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.6.1", "avg_time_ser_ns": 958.4166666666666, "avg_time_deser_ns": 319.625, "avg_time_total_ns": 1278.0416666666667, "median_size_bytes": 224.0, "avg_ops_per_sec": 782447.1033156195, "min_ops_per_sec": 444839.85765124555, "max_ops_per_sec": 1285347.0437017996, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 958.4166666666666, "ser_median_ns": 748.0, "ser_std_ns": 402.9173525457251, "ser_mad_ns": 50.5, "ser_cv": 0.4203989418788542, "ser_min_ns": 497.0, "ser_max_ns": 1927.0, "ser_p5_ns": 579.0, "ser_p25_ns": 709.75, "ser_p50_ns": 748.0, "ser_p75_ns": 1353.75, "ser_p95_ns": 1818.0, "ser_p99_ns": 1910.85, "ser_ci_low_ns": 879.0098958333334, "ser_ci_high_ns": 1040.8330729166667, "deser_mean_ns": 319.625, "deser_median_ns": 320.0, "deser_std_ns": 18.095216000514146, "deser_mad_ns": 12.0, "deser_cv": 0.05661389440911739, "deser_min_ns": 276.0, "deser_max_ns": 358.0, "deser_p5_ns": 286.0, "deser_p25_ns": 308.0, "deser_p50_ns": 320.0, "deser_p75_ns": 331.5, "deser_p95_ns": 347.5, "deser_p99_ns": 357.05, "deser_ci_low_ns": 316.07109375000005, "deser_ci_high_ns": 323.14635416666664, "total_mean_ns": 1278.0416666666667, "total_median_ns": 1071.5, "total_std_ns": 409.8907663645001, "total_mad_ns": 56.5, "total_cv": 0.3207178428177225, "total_min_ns": 778.0, "total_max_ns": 2248.0, "total_p5_ns": 884.75, "total_p25_ns": 1024.5, "total_p50_ns": 1071.5, "total_p75_ns": 1692.5, "total_p95_ns": 2121.25, "total_p99_ns": 2243.25, "total_ci_low_ns": 1199.7736979166666, "total_ci_high_ns": 1358.8973958333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.9980292792792793, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.7545536184225132}, {"serializer": "nanopb", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.4.9", "avg_time_ser_ns": 774.2465753424658, "avg_time_deser_ns": 473.45205479452056, "avg_time_total_ns": 1247.6986301369864, "median_size_bytes": 154.0, "avg_ops_per_sec": 801475.5934213126, "min_ops_per_sec": 724112.961622013, "max_ops_per_sec": 932835.8208955224, "runs": 73, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 26, "ser_mean_ns": 774.2465753424658, "ser_median_ns": 779.0, "ser_std_ns": 43.202938693102105, "ser_mad_ns": 26.0, "ser_cv": 0.055799973895903285, "ser_min_ns": 660.0, "ser_max_ns": 853.0, "ser_p5_ns": 683.2, "ser_p25_ns": 752.0, "ser_p50_ns": 779.0, "ser_p75_ns": 801.0, "ser_p95_ns": 835.4, "ser_p99_ns": 849.4, "ser_ci_low_ns": 764.0537671232877, "ser_ci_high_ns": 783.7671232876712, "deser_mean_ns": 473.45205479452056, "deser_median_ns": 470.0, "deser_std_ns": 24.622167685898642, "deser_mad_ns": 14.0, "deser_cv": 0.052005620076112515, "deser_min_ns": 412.0, "deser_max_ns": 539.0, "deser_p5_ns": 432.6, "deser_p25_ns": 461.0, "deser_p50_ns": 470.0, "deser_p75_ns": 487.0, "deser_p95_ns": 516.0, "deser_p99_ns": 534.6800000000001, "deser_ci_low_ns": 467.7671232876712, "deser_ci_high_ns": 478.89280821917805, "total_mean_ns": 1247.6986301369864, "total_median_ns": 1257.0, "total_std_ns": 60.533205977175776, "total_mad_ns": 35.0, "total_cv": 0.048515887182251506, "total_min_ns": 1072.0, "total_max_ns": 1381.0, "total_p5_ns": 1127.2, "total_p25_ns": 1210.0, "total_p50_ns": 1257.0, "total_p75_ns": 1286.0, "total_p95_ns": 1330.8, "total_p99_ns": 1359.4, "total_ci_low_ns": 1232.657191780822, "total_ci_high_ns": 1261.180821917808, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.968290877043323}, {"serializer": "tinycbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.6.0", "avg_time_ser_ns": 1353.8732394366198, "avg_time_deser_ns": 6085.549295774648, "avg_time_total_ns": 7439.422535211268, "median_size_bytes": 331.0, "avg_ops_per_sec": 134419.03524997208, "min_ops_per_sec": 127942.68167860799, "max_ops_per_sec": 143513.20321469576, "runs": 71, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 28, "ser_mean_ns": 1353.8732394366198, "ser_median_ns": 1355.0, "ser_std_ns": 59.69468260058602, "ser_mad_ns": 36.0, "ser_cv": 0.044091781166622705, "ser_min_ns": 1193.0, "ser_max_ns": 1470.0, "ser_p5_ns": 1233.5, "ser_p25_ns": 1320.0, "ser_p50_ns": 1355.0, "ser_p75_ns": 1392.5, "ser_p95_ns": 1438.5, "ser_p99_ns": 1463.7, "ser_ci_low_ns": 1340.2676056338028, "ser_ci_high_ns": 1367.6647887323943, "deser_mean_ns": 6085.549295774648, "deser_median_ns": 6082.0, "deser_std_ns": 161.65357923061404, "deser_mad_ns": 133.0, "deser_cv": 0.02656351487331706, "deser_min_ns": 5751.0, "deser_max_ns": 6402.0, "deser_p5_ns": 5824.5, "deser_p25_ns": 5965.5, "deser_p50_ns": 6082.0, "deser_p75_ns": 6211.0, "deser_p95_ns": 6335.5, "deser_p99_ns": 6396.4, "deser_ci_low_ns": 6047.895774647887, "deser_ci_high_ns": 6123.053521126761, "total_mean_ns": 7439.422535211268, "total_median_ns": 7458.0, "total_std_ns": 193.18722687529473, "total_mad_ns": 124.0, "total_cv": 0.025968040659194593, "total_min_ns": 6968.0, "total_max_ns": 7816.0, "total_p5_ns": 7104.5, "total_p25_ns": 7298.0, "total_p50_ns": 7458.0, "total_p75_ns": 7563.5, "total_p95_ns": 7739.5, "total_p99_ns": 7795.7, "total_ci_low_ns": 7395.076760563381, "total_ci_high_ns": 7483.173239436619, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 48.2702425142348}, {"serializer": "mpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.1", "avg_time_ser_ns": 1103.871794871795, "avg_time_deser_ns": 1617.628205128205, "avg_time_total_ns": 2721.5, "median_size_bytes": 324.0, "avg_ops_per_sec": 367444.4240308653, "min_ops_per_sec": 296647.87896766537, "max_ops_per_sec": 419111.48365465214, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 1103.871794871795, "ser_median_ns": 1025.0, "ser_std_ns": 217.948543848239, "ser_mad_ns": 38.5, "ser_cv": 0.1974400875724448, "ser_min_ns": 895.0, "ser_max_ns": 1739.0, "ser_p5_ns": 943.65, "ser_p25_ns": 999.0, "ser_p50_ns": 1025.0, "ser_p75_ns": 1077.0, "ser_p95_ns": 1700.4499999999998, "ser_p99_ns": 1737.46, "ser_ci_low_ns": 1058.050641025641, "ser_ci_high_ns": 1157.577564102564, "deser_mean_ns": 1617.628205128205, "deser_median_ns": 1616.0, "deser_std_ns": 83.34439720094294, "deser_mad_ns": 45.5, "deser_cv": 0.051522591493350894, "deser_min_ns": 1416.0, "deser_max_ns": 1820.0, "deser_p5_ns": 1471.2, "deser_p25_ns": 1571.25, "deser_p50_ns": 1616.0, "deser_p75_ns": 1664.5, "deser_p95_ns": 1758.6999999999998, "deser_p99_ns": 1799.21, "deser_ci_low_ns": 1599.4852564102564, "deser_ci_high_ns": 1636.552564102564, "total_mean_ns": 2721.5, "total_median_ns": 2660.5, "total_std_ns": 233.65668843828985, "total_mad_ns": 93.5, "total_cv": 0.08585584730416676, "total_min_ns": 2386.0, "total_max_ns": 3371.0, "total_p5_ns": 2407.4, "total_p25_ns": 2588.25, "total_p50_ns": 2660.5, "total_p75_ns": 2777.75, "total_p95_ns": 3302.75, "total_p99_ns": 3330.19, "total_ci_low_ns": 2668.6782051282053, "total_ci_high_ns": 2777.3634615384613, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.655990375025581}, {"serializer": "libbson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.27.5", "avg_time_ser_ns": 3926.8, "avg_time_deser_ns": 2926.675, "avg_time_total_ns": 6853.475, "median_size_bytes": 566.0, "avg_ops_per_sec": 145911.38072291794, "min_ops_per_sec": 127388.53503184713, "max_ops_per_sec": 163666.12111292963, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 3926.8, "ser_median_ns": 3832.0, "ser_std_ns": 278.9499024937378, "ser_mad_ns": 96.5, "ser_cv": 0.07103746116271208, "ser_min_ns": 3476.0, "ser_max_ns": 4719.0, "ser_p5_ns": 3631.25, "ser_p25_ns": 3779.5, "ser_p50_ns": 3832.0, "ser_p75_ns": 4004.5, "ser_p95_ns": 4570.35, "ser_p99_ns": 4714.26, "ser_ci_low_ns": 3868.6125, "ser_ci_high_ns": 3989.6075, "deser_mean_ns": 2926.675, "deser_median_ns": 2908.0, "deser_std_ns": 112.06392558589727, "deser_mad_ns": 64.0, "deser_cv": 0.0382905261383301, "deser_min_ns": 2627.0, "deser_max_ns": 3231.0, "deser_p5_ns": 2783.5, "deser_p25_ns": 2855.25, "deser_p50_ns": 2908.0, "deser_p75_ns": 2995.25, "deser_p95_ns": 3136.0, "deser_p99_ns": 3161.4799999999996, "deser_ci_low_ns": 2902.674375, "deser_ci_high_ns": 2951.6421874999996, "total_mean_ns": 6853.475, "total_median_ns": 6773.5, "total_std_ns": 339.3755611693148, "total_mad_ns": 154.5, "total_cv": 0.04951875671382981, "total_min_ns": 6110.0, "total_max_ns": 7850.0, "total_p5_ns": 6429.95, "total_p25_ns": 6646.75, "total_p50_ns": 6773.5, "total_p75_ns": 7019.25, "total_p95_ns": 7488.75, "total_p99_ns": 7831.83, "total_ci_low_ns": 6781.9440625, "total_ci_high_ns": 6928.44375, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.731652616136373}, {"serializer": "custom-binary", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "v2-1.0", "avg_time_ser_ns": 422.27027027027026, "avg_time_deser_ns": 310.5135135135135, "avg_time_total_ns": 732.7837837837837, "median_size_bytes": 196.0, "avg_ops_per_sec": 1364659.0196584666, "min_ops_per_sec": 1210653.7530266345, "max_ops_per_sec": 1626016.2601626017, "runs": 74, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 25, "ser_mean_ns": 422.27027027027026, "ser_median_ns": 426.0, "ser_std_ns": 28.958306020849808, "ser_mad_ns": 18.5, "ser_cv": 0.0685776576274605, "ser_min_ns": 341.0, "ser_max_ns": 483.0, "ser_p5_ns": 377.25, "ser_p25_ns": 401.25, "ser_p50_ns": 426.0, "ser_p75_ns": 442.75, "ser_p95_ns": 462.7, "ser_p99_ns": 477.89, "ser_ci_low_ns": 415.97162162162164, "ser_ci_high_ns": 428.43547297297295, "deser_mean_ns": 310.5135135135135, "deser_median_ns": 309.0, "deser_std_ns": 19.128436296711477, "deser_mad_ns": 10.0, "deser_cv": 0.061602588822206, "deser_min_ns": 271.0, "deser_max_ns": 368.0, "deser_p5_ns": 284.65, "deser_p25_ns": 298.25, "deser_p50_ns": 309.0, "deser_p75_ns": 319.0, "deser_p95_ns": 340.7, "deser_p99_ns": 355.5899999999999, "deser_ci_low_ns": 306.18885135135133, "deser_ci_high_ns": 314.87905405405405, "total_mean_ns": 732.7837837837837, "total_median_ns": 736.0, "total_std_ns": 40.387259034702666, "total_mad_ns": 27.0, "total_cv": 0.05511483732098988, "total_min_ns": 615.0, "total_max_ns": 826.0, "total_p5_ns": 667.25, "total_p25_ns": 707.25, "total_p50_ns": 736.0, "total_p75_ns": 760.5, "total_p95_ns": 790.1999999999999, "total_p99_ns": 823.0799999999999, "total_ci_low_ns": 723.539527027027, "total_ci_high_ns": 742.1621621621622, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "protobuf-wire", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "wire-v2", "avg_time_ser_ns": 797.0540540540541, "avg_time_deser_ns": 481.3918918918919, "avg_time_total_ns": 1278.445945945946, "median_size_bytes": 154.0, "avg_ops_per_sec": 782199.6723217588, "min_ops_per_sec": 668896.3210702341, "max_ops_per_sec": 953288.8465204957, "runs": 74, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 25, "ser_mean_ns": 797.0540540540541, "ser_median_ns": 807.0, "ser_std_ns": 55.09217478976058, "ser_mad_ns": 27.0, "ser_cv": 0.06911974728632943, "ser_min_ns": 639.0, "ser_max_ns": 926.0, "ser_p5_ns": 695.45, "ser_p25_ns": 766.5, "ser_p50_ns": 807.0, "ser_p75_ns": 825.0, "ser_p95_ns": 880.05, "ser_p99_ns": 918.6999999999999, "ser_ci_low_ns": 784.7422297297297, "ser_ci_high_ns": 808.8969594594594, "deser_mean_ns": 481.3918918918919, "deser_median_ns": 473.0, "deser_std_ns": 36.60856160344304, "deser_mad_ns": 16.5, "deser_cv": 0.07604731658352147, "deser_min_ns": 410.0, "deser_max_ns": 575.0, "deser_p5_ns": 432.3, "deser_p25_ns": 459.0, "deser_p50_ns": 473.0, "deser_p75_ns": 495.75, "deser_p95_ns": 560.0999999999999, "deser_p99_ns": 572.0799999999999, "deser_ci_low_ns": 472.7027027027027, "deser_ci_high_ns": 489.55472972972973, "total_mean_ns": 1278.445945945946, "total_median_ns": 1285.0, "total_std_ns": 84.16017700966657, "total_mad_ns": 52.5, "total_cv": 0.06583006287950241, "total_min_ns": 1049.0, "total_max_ns": 1495.0, "total_p5_ns": 1131.75, "total_p25_ns": 1228.25, "total_p50_ns": 1285.0, "total_p75_ns": 1323.5, "total_p95_ns": 1400.05, "total_p99_ns": 1484.05, "total_ci_low_ns": 1259.0635135135135, "total_ci_high_ns": 1297.9881756756756, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.224089946983538}, {"serializer": "json-c", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.15", "avg_time_ser_ns": 8231.755555555555, "avg_time_deser_ns": 8406.944444444445, "avg_time_total_ns": 16638.7, "median_size_bytes": 449.0, "avg_ops_per_sec": 60100.84922499955, "min_ops_per_sec": 54917.897742874404, "max_ops_per_sec": 65197.548572173684, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 8231.755555555555, "ser_median_ns": 8165.5, "ser_std_ns": 412.0256158479184, "ser_mad_ns": 255.5, "ser_cv": 0.05005318890571831, "ser_min_ns": 7429.0, "ser_max_ns": 9259.0, "ser_p5_ns": 7641.05, "ser_p25_ns": 7933.75, "ser_p50_ns": 8165.5, "ser_p75_ns": 8440.75, "ser_p95_ns": 9041.75, "ser_p99_ns": 9231.41, "ser_ci_low_ns": 8146.2555555555555, "ser_ci_high_ns": 8313.918333333333, "deser_mean_ns": 8406.944444444445, "deser_median_ns": 8405.0, "deser_std_ns": 319.2809463804535, "deser_mad_ns": 185.5, "deser_cv": 0.037978239120093585, "deser_min_ns": 7617.0, "deser_max_ns": 9245.0, "deser_p5_ns": 7844.8, "deser_p25_ns": 8239.5, "deser_p50_ns": 8405.0, "deser_p75_ns": 8605.25, "deser_p95_ns": 8911.4, "deser_p99_ns": 9123.07, "deser_ci_low_ns": 8339.121944444445, "deser_ci_high_ns": 8473.036666666667, "total_mean_ns": 16638.7, "total_median_ns": 16638.0, "total_std_ns": 622.7498541941832, "total_mad_ns": 401.0, "total_cv": 0.037427795091815055, "total_min_ns": 15338.0, "total_max_ns": 18209.0, "total_p5_ns": 15490.95, "total_p25_ns": 16220.75, "total_p50_ns": 16638.0, "total_p75_ns": 17015.5, "total_p95_ns": 17833.45, "total_p99_ns": 18158.27, "total_ci_low_ns": 16509.71361111111, "total_ci_high_ns": 16770.118888888886, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 34.240596394365134}, {"serializer": "nanopb", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.4.9", "avg_time_ser_ns": 42047.12765957447, "avg_time_deser_ns": 35975.85106382979, "avg_time_total_ns": 78022.97872340426, "median_size_bytes": 16560.0, "avg_ops_per_sec": 12816.737022372023, "min_ops_per_sec": 12251.748937160779, "max_ops_per_sec": 13213.356060305758, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 42047.12765957447, "ser_median_ns": 42102.0, "ser_std_ns": 891.443100109086, "ser_mad_ns": 781.5, "ser_cv": 0.02120104629563435, "ser_min_ns": 40555.0, "ser_max_ns": 44195.0, "ser_p5_ns": 40935.0, "ser_p25_ns": 41130.25, "ser_p50_ns": 42102.0, "ser_p75_ns": 42677.75, "ser_p95_ns": 43650.6, "ser_p99_ns": 43845.32, "ser_ci_low_ns": 41872.42313829787, "ser_ci_high_ns": 42239.18989361702, "deser_mean_ns": 35975.85106382979, "deser_median_ns": 35760.5, "deser_std_ns": 808.0247382224763, "deser_mad_ns": 531.5, "deser_cv": 0.022460198003067297, "deser_min_ns": 34588.0, "deser_max_ns": 37976.0, "deser_p5_ns": 35029.7, "deser_p25_ns": 35317.25, "deser_p50_ns": 35760.5, "deser_p75_ns": 36490.5, "deser_p95_ns": 37501.4, "deser_p99_ns": 37909.04, "deser_ci_low_ns": 35823.593351063835, "deser_ci_high_ns": 36139.714627659574, "total_mean_ns": 78022.97872340426, "total_median_ns": 77924.0, "total_std_ns": 1432.755567314771, "total_mad_ns": 1070.0, "total_cv": 0.018363251323612856, "total_min_ns": 75681.0, "total_max_ns": 81621.0, "total_p5_ns": 75923.1, "total_p25_ns": 76841.75, "total_p50_ns": 77924.0, "total_p75_ns": 78988.5, "total_p95_ns": 80600.5, "total_p99_ns": 81513.12, "total_ci_low_ns": 77718.05132978724, "total_ci_high_ns": 78310.68138297873, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 37.76239147469715}, {"serializer": "avro-c", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.11.3", "avg_time_ser_ns": 23041.42105263158, "avg_time_deser_ns": 35663.357894736844, "avg_time_total_ns": 58704.778947368424, "median_size_bytes": 20912.0, "avg_ops_per_sec": 17034.388305874498, "min_ops_per_sec": 15723.270440251572, "max_ops_per_sec": 17895.490336435218, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 23041.42105263158, "ser_median_ns": 22810.0, "ser_std_ns": 884.2636746811339, "ser_mad_ns": 510.0, "ser_cv": 0.0383771327584911, "ser_min_ns": 21565.0, "ser_max_ns": 25496.0, "ser_p5_ns": 21937.7, "ser_p25_ns": 22352.0, "ser_p50_ns": 22810.0, "ser_p75_ns": 23586.0, "ser_p95_ns": 24783.6, "ser_p99_ns": 25359.7, "ser_ci_low_ns": 22862.039736842104, "ser_ci_high_ns": 23217.73447368421, "deser_mean_ns": 35663.357894736844, "deser_median_ns": 35509.0, "deser_std_ns": 933.8822185951966, "deser_mad_ns": 606.0, "deser_cv": 0.02618604286650803, "deser_min_ns": 34172.0, "deser_max_ns": 38249.0, "deser_p5_ns": 34531.1, "deser_p25_ns": 34910.5, "deser_p50_ns": 35509.0, "deser_p75_ns": 36227.5, "deser_p95_ns": 37408.2, "deser_p99_ns": 38098.6, "deser_ci_low_ns": 35479.502368421054, "deser_ci_high_ns": 35848.15052631579, "total_mean_ns": 58704.778947368424, "total_median_ns": 58486.0, "total_std_ns": 1685.416150258467, "total_mad_ns": 1229.0, "total_cv": 0.028710033160494842, "total_min_ns": 55880.0, "total_max_ns": 63600.0, "total_p5_ns": 56652.0, "total_p25_ns": 57257.5, "total_p50_ns": 58486.0, "total_p75_ns": 59731.5, "total_p95_ns": 62238.2, "total_p99_ns": 62942.0, "total_ci_low_ns": 58374.01447368421, "total_ci_high_ns": 59048.67078947368, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.643114920595835}, {"serializer": "jansson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "2.14", "avg_time_ser_ns": 689992.9361702128, "avg_time_deser_ns": 816695.0638297872, "avg_time_total_ns": 1506688.0, "median_size_bytes": 45878.0, "avg_ops_per_sec": 663.7074165321553, "min_ops_per_sec": 631.1433919918002, "max_ops_per_sec": 682.7714238310441, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 689992.9361702128, "ser_median_ns": 687557.0, "ser_std_ns": 12906.021964266081, "ser_mad_ns": 9537.0, "ser_cv": 0.018704571145178105, "ser_min_ns": 666252.0, "ser_max_ns": 727132.0, "ser_p5_ns": 672660.55, "ser_p25_ns": 679205.5, "ser_p50_ns": 687557.0, "ser_p75_ns": 699958.5, "ser_p95_ns": 711377.95, "ser_p99_ns": 722696.83, "ser_ci_low_ns": 687403.8909574469, "ser_ci_high_ns": 692687.6257978723, "deser_mean_ns": 816695.0638297872, "deser_median_ns": 818050.5, "deser_std_ns": 15916.688459012394, "deser_mad_ns": 13035.0, "deser_cv": 0.019489144925614117, "deser_min_ns": 790347.0, "deser_max_ns": 857294.0, "deser_p5_ns": 795770.65, "deser_p25_ns": 802773.25, "deser_p50_ns": 818050.5, "deser_p75_ns": 826449.0, "deser_p95_ns": 845194.45, "deser_p99_ns": 852683.99, "deser_ci_low_ns": 813504.0563829787, "deser_ci_high_ns": 819933.9007978723, "total_mean_ns": 1506688.0, "total_median_ns": 1505675.0, "total_std_ns": 26363.56154125965, "total_mad_ns": 20789.5, "total_cv": 0.01749769132113593, "total_min_ns": 1464619.0, "total_max_ns": 1584426.0, "total_p5_ns": 1471376.95, "total_p25_ns": 1483870.25, "total_p50_ns": 1505675.0, "total_p75_ns": 1522489.75, "total_p95_ns": 1550630.8, "total_p99_ns": 1566137.5499999998, "total_ci_low_ns": 1501492.7824468084, "total_ci_high_ns": 1511996.2574468085, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 78.43576010350598}, {"serializer": "flatcc", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.6.1", "avg_time_ser_ns": 23317.533333333333, "avg_time_deser_ns": 23817.81111111111, "avg_time_total_ns": 47135.34444444445, "median_size_bytes": 23568.0, "avg_ops_per_sec": 21215.502120253706, "min_ops_per_sec": 19838.514492034836, "max_ops_per_sec": 21999.29602252728, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 23317.533333333333, "ser_median_ns": 23165.5, "ser_std_ns": 761.8102656822605, "ser_mad_ns": 457.0, "ser_cv": 0.03267113441168422, "ser_min_ns": 22209.0, "ser_max_ns": 25539.0, "ser_p5_ns": 22423.15, "ser_p25_ns": 22723.0, "ser_p50_ns": 23165.5, "ser_p75_ns": 23673.5, "ser_p95_ns": 24804.75, "ser_p99_ns": 25485.6, "ser_ci_low_ns": 23169.796944444442, "ser_ci_high_ns": 23476.261944444443, "deser_mean_ns": 23817.81111111111, "deser_median_ns": 23785.0, "deser_std_ns": 551.8003403455757, "deser_mad_ns": 412.0, "deser_cv": 0.023167550442456844, "deser_min_ns": 23090.0, "deser_max_ns": 25440.0, "deser_p5_ns": 23137.6, "deser_p25_ns": 23294.0, "deser_p50_ns": 23785.0, "deser_p75_ns": 24052.25, "deser_p95_ns": 24970.9, "deser_p99_ns": 25296.71, "deser_ci_low_ns": 23710.038055555553, "deser_ci_high_ns": 23930.558055555553, "total_mean_ns": 47135.34444444445, "total_median_ns": 47111.5, "total_std_ns": 1157.351647115581, "total_mad_ns": 930.0, "total_cv": 0.02455379632325973, "total_min_ns": 45456.0, "total_max_ns": 50407.0, "total_p5_ns": 45745.05, "total_p25_ns": 46041.5, "total_p50_ns": 47111.5, "total_p75_ns": 47704.75, "total_p95_ns": 49367.299999999996, "total_p99_ns": 50092.83, "total_ci_low_ns": 46904.316666666666, "total_ci_high_ns": 47370.33194444445, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.261098220892872}, {"serializer": "parson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.5.3", "avg_time_ser_ns": 1261147.6770833333, "avg_time_deser_ns": 489201.1145833333, "avg_time_total_ns": 1750348.7916666667, "median_size_bytes": 45878.0, "avg_ops_per_sec": 571.3147029671776, "min_ops_per_sec": 549.7069786950067, "max_ops_per_sec": 588.4447112060468, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 1261147.6770833333, "ser_median_ns": 1260277.0, "ser_std_ns": 21389.871320444017, "ser_mad_ns": 13971.0, "ser_cv": 0.016960639669029522, "ser_min_ns": 1220311.0, "ser_max_ns": 1310875.0, "ser_p5_ns": 1229729.0, "ser_p25_ns": 1244933.5, "ser_p50_ns": 1260277.0, "ser_p75_ns": 1274143.25, "ser_p95_ns": 1298831.0, "ser_p99_ns": 1303619.85, "ser_ci_low_ns": 1256945.8919270833, "ser_ci_high_ns": 1265469.0317708333, "deser_mean_ns": 489201.1145833333, "deser_median_ns": 489068.5, "deser_std_ns": 10903.212877399503, "deser_mad_ns": 8925.5, "deser_cv": 0.02228779238715775, "deser_min_ns": 465877.0, "deser_max_ns": 513542.0, "deser_p5_ns": 474003.75, "deser_p25_ns": 479553.25, "deser_p50_ns": 489068.5, "deser_p75_ns": 497021.0, "deser_p95_ns": 508372.0, "deser_p99_ns": 509231.85, "deser_ci_low_ns": 487044.79635416664, "deser_ci_high_ns": 491337.73151041666, "total_mean_ns": 1750348.7916666667, "total_median_ns": 1748071.5, "total_std_ns": 29691.89571155089, "total_mad_ns": 20316.0, "total_cv": 0.01696341657897711, "total_min_ns": 1699395.0, "total_max_ns": 1819151.0, "total_p5_ns": 1703835.25, "total_p25_ns": 1728121.0, "total_p50_ns": 1748071.5, "total_p75_ns": 1768324.0, "total_p95_ns": 1803097.75, "total_p99_ns": 1810422.4, "total_ci_low_ns": 1744205.8674479167, "total_ci_high_ns": 1756169.5078125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 80.75140137372914}, {"serializer": "tinycbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.6.0", "avg_time_ser_ns": 67469.61538461539, "avg_time_deser_ns": 549630.3846153846, "avg_time_total_ns": 617100.0, "median_size_bytes": 34026.0, "avg_ops_per_sec": 1620.4829039053639, "min_ops_per_sec": 1542.786086537957, "max_ops_per_sec": 1698.8254320962487, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 67469.61538461539, "ser_median_ns": 67182.0, "ser_std_ns": 1891.490874470487, "ser_mad_ns": 1056.0, "ser_cv": 0.028034706640728678, "ser_min_ns": 63215.0, "ser_max_ns": 72434.0, "ser_p5_ns": 64962.5, "ser_p25_ns": 66237.0, "ser_p50_ns": 67182.0, "ser_p75_ns": 68297.5, "ser_p95_ns": 71057.0, "ser_p99_ns": 72387.2, "ser_ci_low_ns": 67077.25412087912, "ser_ci_high_ns": 67863.67225274726, "deser_mean_ns": 549630.3846153846, "deser_median_ns": 548188.0, "deser_std_ns": 11069.775186685622, "deser_mad_ns": 6774.0, "deser_cv": 0.020140398887212047, "deser_min_ns": 522803.0, "deser_max_ns": 578518.0, "deser_p5_ns": 532645.0, "deser_p25_ns": 542278.5, "deser_p50_ns": 548188.0, "deser_p75_ns": 555650.5, "deser_p95_ns": 570559.0, "deser_p99_ns": 573570.7, "deser_ci_low_ns": 547372.4546703297, "deser_ci_high_ns": 551936.4527472528, "total_mean_ns": 617100.0, "total_median_ns": 617554.0, "total_std_ns": 12252.370414649477, "total_mad_ns": 8082.0, "total_cv": 0.01985475678925535, "total_min_ns": 588642.0, "total_max_ns": 648178.0, "total_p5_ns": 599196.0, "total_p25_ns": 608326.5, "total_p50_ns": 617554.0, "total_p75_ns": 624803.0, "total_p95_ns": 639730.5, "total_p99_ns": 644765.2, "total_ci_low_ns": 614545.3282967033, "total_ci_high_ns": 619573.7914835165, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 67.26060505780075}, {"serializer": "mpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.1", "avg_time_ser_ns": 45471.494736842105, "avg_time_deser_ns": 112362.65263157895, "avg_time_total_ns": 157834.14736842105, "median_size_bytes": 33416.0, "avg_ops_per_sec": 6335.764577393832, "min_ops_per_sec": 5960.718862694841, "max_ops_per_sec": 6719.843024466948, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 45471.494736842105, "ser_median_ns": 45307.0, "ser_std_ns": 1203.397750641325, "ser_mad_ns": 840.0, "ser_cv": 0.026464882177411754, "ser_min_ns": 43475.0, "ser_max_ns": 48817.0, "ser_p5_ns": 43920.7, "ser_p25_ns": 44492.5, "ser_p50_ns": 45307.0, "ser_p75_ns": 46229.0, "ser_p95_ns": 47770.799999999996, "ser_p99_ns": 48472.020000000004, "ser_ci_low_ns": 45228.16368421052, "ser_ci_high_ns": 45709.761052631584, "deser_mean_ns": 112362.65263157895, "deser_median_ns": 112506.0, "deser_std_ns": 3560.7808364578627, "deser_mad_ns": 2426.0, "deser_cv": 0.03169007453155412, "deser_min_ns": 104818.0, "deser_max_ns": 119498.0, "deser_p5_ns": 106973.6, "deser_p25_ns": 110134.0, "deser_p50_ns": 112506.0, "deser_p75_ns": 114941.0, "deser_p95_ns": 117775.4, "deser_p99_ns": 119469.8, "deser_ci_low_ns": 111672.95605263158, "deser_ci_high_ns": 113109.05263157895, "total_mean_ns": 157834.14736842105, "total_median_ns": 158035.0, "total_std_ns": 4251.137009279816, "total_mad_ns": 3025.0, "total_cv": 0.026934203277043014, "total_min_ns": 148813.0, "total_max_ns": 167765.0, "total_p5_ns": 151396.3, "total_p25_ns": 154926.0, "total_p50_ns": 158035.0, "total_p75_ns": 160619.0, "total_p95_ns": 164677.9, "total_p99_ns": 166449.94, "total_ci_low_ns": 156985.02868421053, "total_ci_high_ns": 158652.6407894737, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 40.1453025733604}, {"serializer": "custom-binary", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "v2-1.0", "avg_time_ser_ns": 10129.698924731183, "avg_time_deser_ns": 23768.88172043011, "avg_time_total_ns": 33898.58064516129, "median_size_bytes": 20612.0, "avg_ops_per_sec": 29499.76019549777, "min_ops_per_sec": 27823.37720152472, "max_ops_per_sec": 30781.543386585403, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 10129.698924731183, "ser_median_ns": 10070.0, "ser_std_ns": 311.7026448446966, "ser_mad_ns": 174.0, "ser_cv": 0.030771165773119797, "ser_min_ns": 9501.0, "ser_max_ns": 10901.0, "ser_p5_ns": 9700.2, "ser_p25_ns": 9931.0, "ser_p50_ns": 10070.0, "ser_p75_ns": 10316.0, "ser_p95_ns": 10686.2, "ser_p99_ns": 10889.04, "ser_ci_low_ns": 10067.534677419355, "ser_ci_high_ns": 10193.655376344086, "deser_mean_ns": 23768.88172043011, "deser_median_ns": 23636.0, "deser_std_ns": 570.1195879405739, "deser_mad_ns": 364.0, "deser_cv": 0.023985965963663237, "deser_min_ns": 22958.0, "deser_max_ns": 25364.0, "deser_p5_ns": 23054.2, "deser_p25_ns": 23300.0, "deser_p50_ns": 23636.0, "deser_p75_ns": 24089.0, "deser_p95_ns": 24940.8, "deser_p99_ns": 25184.6, "deser_ci_low_ns": 23660.242741935483, "deser_ci_high_ns": 23893.664247311826, "total_mean_ns": 33898.58064516129, "total_median_ns": 33766.0, "total_std_ns": 805.0835538947204, "total_mad_ns": 560.0, "total_cv": 0.023749771777233353, "total_min_ns": 32487.0, "total_max_ns": 35941.0, "total_p5_ns": 32867.4, "total_p25_ns": 33239.0, "total_p50_ns": 33766.0, "total_p75_ns": 34375.0, "total_p95_ns": 35436.6, "total_p99_ns": 35939.16, "total_ci_low_ns": 33734.22688172043, "total_ci_high_ns": 34070.19059139785, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "msgpack-c", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "6.0.1", "avg_time_ser_ns": 70039.43181818182, "avg_time_deser_ns": 103762.71590909091, "avg_time_total_ns": 173802.14772727274, "median_size_bytes": 33416.0, "avg_ops_per_sec": 5753.668830198706, "min_ops_per_sec": 5448.403617740002, "max_ops_per_sec": 5990.606728649477, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 70039.43181818182, "ser_median_ns": 69981.5, "ser_std_ns": 1892.5050709505822, "ser_mad_ns": 1364.0, "ser_cv": 0.027020565727366438, "ser_min_ns": 66072.0, "ser_max_ns": 74509.0, "ser_p5_ns": 67417.1, "ser_p25_ns": 68678.0, "ser_p50_ns": 69981.5, "ser_p75_ns": 71369.0, "ser_p95_ns": 73715.79999999999, "ser_p99_ns": 74425.48, "ser_ci_low_ns": 69653.76988636363, "ser_ci_high_ns": 70441.29772727273, "deser_mean_ns": 103762.71590909091, "deser_median_ns": 103645.0, "deser_std_ns": 2209.487270573074, "deser_mad_ns": 1756.5, "deser_cv": 0.02129365303534326, "deser_min_ns": 100069.0, "deser_max_ns": 110394.0, "deser_p5_ns": 100771.35, "deser_p25_ns": 101877.25, "deser_p50_ns": 103645.0, "deser_p75_ns": 105314.5, "deser_p95_ns": 107008.95, "deser_p99_ns": 109578.81, "deser_ci_low_ns": 103322.22130681819, "deser_ci_high_ns": 104218.33551136364, "total_mean_ns": 173802.14772727274, "total_median_ns": 173973.0, "total_std_ns": 3717.9983569823576, "total_mad_ns": 2352.0, "total_cv": 0.021392131257299392, "total_min_ns": 166928.0, "total_max_ns": 183540.0, "total_p5_ns": 168342.9, "total_p25_ns": 170707.75, "total_p50_ns": 173973.0, "total_p75_ns": 175730.5, "total_p95_ns": 180280.94999999998, "total_p99_ns": 183479.97, "total_ci_low_ns": 173019.29176136362, "total_ci_high_ns": 174591.26448863634, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 52.46287153851913}, {"serializer": "protobuf-wire", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "wire-v2", "avg_time_ser_ns": 41944.09574468085, "avg_time_deser_ns": 35982.17021276596, "avg_time_total_ns": 77926.26595744681, "median_size_bytes": 16560.0, "avg_ops_per_sec": 12832.643624244358, "min_ops_per_sec": 12225.088326263158, "max_ops_per_sec": 13281.447146481081, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 41944.09574468085, "ser_median_ns": 42018.5, "ser_std_ns": 869.5268033258823, "ser_mad_ns": 803.5, "ser_cv": 0.020730612685485095, "ser_min_ns": 40647.0, "ser_max_ns": 44041.0, "ser_p5_ns": 40825.45, "ser_p25_ns": 41152.75, "ser_p50_ns": 42018.5, "ser_p75_ns": 42556.25, "ser_p95_ns": 43534.9, "ser_p99_ns": 43963.81, "ser_ci_low_ns": 41764.6625, "ser_ci_high_ns": 42115.54920212766, "deser_mean_ns": 35982.17021276596, "deser_median_ns": 35966.5, "deser_std_ns": 775.7541407205737, "deser_mad_ns": 502.5, "deser_cv": 0.0215594038973599, "deser_min_ns": 34576.0, "deser_max_ns": 38054.0, "deser_p5_ns": 34846.95, "deser_p25_ns": 35421.75, "deser_p50_ns": 35966.5, "deser_p75_ns": 36417.0, "deser_p95_ns": 37550.8, "deser_p99_ns": 37911.71, "deser_ci_low_ns": 35828.86223404255, "deser_ci_high_ns": 36136.578989361704, "total_mean_ns": 77926.26595744681, "total_median_ns": 77996.5, "total_std_ns": 1525.182592104549, "total_mad_ns": 1266.5, "total_cv": 0.019572124666378924, "total_min_ns": 75293.0, "total_max_ns": 81799.0, "total_p5_ns": 75675.05, "total_p25_ns": 76614.5, "total_p50_ns": 77996.5, "total_p75_ns": 78905.0, "total_p95_ns": 80610.6, "total_p99_ns": 81307.95999999999, "total_ci_low_ns": 77618.03723404255, "total_ci_high_ns": 78239.40824468086, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 35.90191559699918}, {"serializer": "protobuf-c", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.5.0", "avg_time_ser_ns": 42012.51111111111, "avg_time_deser_ns": 35370.433333333334, "avg_time_total_ns": 77382.94444444444, "median_size_bytes": 16560.0, "avg_ops_per_sec": 12922.744245250713, "min_ops_per_sec": 12281.391235999214, "max_ops_per_sec": 13289.389751222623, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 42012.51111111111, "ser_median_ns": 42059.0, "ser_std_ns": 768.1279920916219, "ser_mad_ns": 578.5, "ser_cv": 0.018283315416689625, "ser_min_ns": 40873.0, "ser_max_ns": 44404.0, "ser_p5_ns": 40951.75, "ser_p25_ns": 41312.5, "ser_p50_ns": 42059.0, "ser_p75_ns": 42384.5, "ser_p95_ns": 43390.25, "ser_p99_ns": 43934.97, "ser_ci_low_ns": 41854.405, "ser_ci_high_ns": 42164.72305555555, "deser_mean_ns": 35370.433333333334, "deser_median_ns": 35476.0, "deser_std_ns": 655.7588288182125, "deser_mad_ns": 470.5, "deser_cv": 0.01853974540369063, "deser_min_ns": 34306.0, "deser_max_ns": 37020.0, "deser_p5_ns": 34410.2, "deser_p25_ns": 34731.75, "deser_p50_ns": 35476.0, "deser_p75_ns": 35762.75, "deser_p95_ns": 36524.85, "deser_p99_ns": 36882.94, "deser_ci_low_ns": 35231.918333333335, "deser_ci_high_ns": 35502.07277777778, "total_mean_ns": 77382.94444444444, "total_median_ns": 77629.0, "total_std_ns": 1317.45814475111, "total_mad_ns": 757.5, "total_cv": 0.017025174658441087, "total_min_ns": 75248.0, "total_max_ns": 81424.0, "total_p5_ns": 75492.15, "total_p25_ns": 76032.5, "total_p50_ns": 77629.0, "total_p75_ns": 78061.5, "total_p95_ns": 79652.15, "total_p99_ns": 80562.48, "total_ci_low_ns": 77136.42361111111, "total_ci_high_ns": 77656.22166666666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 39.81535091522129}, {"serializer": "cbor-encode", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.11.0", "avg_time_ser_ns": 369425.1041666667, "avg_time_deser_ns": 546500.8958333334, "avg_time_total_ns": 915926.0, "median_size_bytes": 45612.0, "avg_ops_per_sec": 1091.7912582457534, "min_ops_per_sec": 1038.6092606556117, "max_ops_per_sec": 1127.2826063675686, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 369425.1041666667, "ser_median_ns": 368987.5, "ser_std_ns": 8963.13355858514, "ser_mad_ns": 6261.5, "ser_cv": 0.02426238351831501, "ser_min_ns": 353553.0, "ser_max_ns": 393087.0, "ser_p5_ns": 356621.75, "ser_p25_ns": 362488.5, "ser_p50_ns": 368987.5, "ser_p75_ns": 375065.5, "ser_p95_ns": 385812.75, "ser_p99_ns": 390675.89999999997, "ser_ci_low_ns": 367639.9432291667, "ser_ci_high_ns": 371160.6125, "deser_mean_ns": 546500.8958333334, "deser_median_ns": 546103.5, "deser_std_ns": 11747.12229529488, "deser_mad_ns": 8622.0, "deser_cv": 0.021495156521897825, "deser_min_ns": 522406.0, "deser_max_ns": 578147.0, "deser_p5_ns": 529927.25, "deser_p25_ns": 537227.0, "deser_p50_ns": 546103.5, "deser_p75_ns": 554489.75, "deser_p95_ns": 564676.5, "deser_p99_ns": 576891.1, "deser_ci_low_ns": 544212.7044270834, "deser_ci_high_ns": 548960.2794270833, "total_mean_ns": 915926.0, "total_median_ns": 914631.0, "total_std_ns": 17785.196850485696, "total_mad_ns": 14376.0, "total_cv": 0.01941772244754019, "total_min_ns": 887089.0, "total_max_ns": 962826.0, "total_p5_ns": 892088.75, "total_p25_ns": 900835.75, "total_p50_ns": 914631.0, "total_p75_ns": 929024.25, "total_p95_ns": 948083.25, "total_p99_ns": 959672.0, "total_ci_low_ns": 912324.2570312499, "total_ci_high_ns": 919479.4197916667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 69.23158340124255}, {"serializer": "zcbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.9", "avg_time_ser_ns": 111624.08888888889, "avg_time_deser_ns": 666959.3, "avg_time_total_ns": 778583.3888888889, "median_size_bytes": 35126.0, "avg_ops_per_sec": 1284.3839391784268, "min_ops_per_sec": 1223.972230518034, "max_ops_per_sec": 1348.4230866213506, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 111624.08888888889, "ser_median_ns": 111270.5, "ser_std_ns": 3438.631370163885, "ser_mad_ns": 2150.5, "ser_cv": 0.030805459685200334, "ser_min_ns": 106515.0, "ser_max_ns": 120830.0, "ser_p5_ns": 107224.8, "ser_p25_ns": 109060.5, "ser_p50_ns": 111270.5, "ser_p75_ns": 113117.0, "ser_p95_ns": 119291.85, "ser_p99_ns": 120724.09, "ser_ci_low_ns": 110938.8138888889, "ser_ci_high_ns": 112341.80166666667, "deser_mean_ns": 666959.3, "deser_median_ns": 668373.5, "deser_std_ns": 13800.271080589426, "deser_mad_ns": 10032.5, "deser_cv": 0.020691324164142287, "deser_min_ns": 632066.0, "deser_max_ns": 702384.0, "deser_p5_ns": 646593.55, "deser_p25_ns": 657174.0, "deser_p50_ns": 668373.5, "deser_p75_ns": 677634.5, "deser_p95_ns": 687576.2, "deser_p99_ns": 701478.87, "deser_ci_low_ns": 664244.7041666666, "deser_ci_high_ns": 669694.4411111111, "total_mean_ns": 778583.3888888889, "total_median_ns": 779933.0, "total_std_ns": 15217.638985984006, "total_mad_ns": 11176.0, "total_cv": 0.019545291105813337, "total_min_ns": 741607.0, "total_max_ns": 817012.0, "total_p5_ns": 755950.7, "total_p25_ns": 767705.5, "total_p50_ns": 779933.0, "total_p75_ns": 789591.5, "total_p95_ns": 799842.7, "total_p99_ns": 815247.13, "total_ci_low_ns": 775519.4733333334, "total_ci_high_ns": 781759.0652777778, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 69.39630506466645}, {"serializer": "qcbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.5.1", "avg_time_ser_ns": 214802.76086956522, "avg_time_deser_ns": 548139.4782608695, "avg_time_total_ns": 762942.2391304348, "median_size_bytes": 34026.0, "avg_ops_per_sec": 1310.7152136965865, "min_ops_per_sec": 1249.2005116725295, "max_ops_per_sec": 1358.6531942615923, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 214802.76086956522, "ser_median_ns": 213662.0, "ser_std_ns": 5424.419524055775, "ser_mad_ns": 3138.5, "ser_cv": 0.025253025157109817, "ser_min_ns": 206183.0, "ser_max_ns": 233156.0, "ser_p5_ns": 208067.05, "ser_p25_ns": 210823.75, "ser_p50_ns": 213662.0, "ser_p75_ns": 217371.5, "ser_p95_ns": 226310.65, "ser_p99_ns": 227850.7, "ser_ci_low_ns": 213774.32391304345, "ser_ci_high_ns": 215964.97038043477, "deser_mean_ns": 548139.4782608695, "deser_median_ns": 548037.0, "deser_std_ns": 9762.918630529264, "deser_mad_ns": 6700.5, "deser_cv": 0.017811011645256673, "deser_min_ns": 526313.0, "deser_max_ns": 576828.0, "deser_p5_ns": 531099.55, "deser_p25_ns": 541122.0, "deser_p50_ns": 548037.0, "deser_p75_ns": 553787.75, "deser_p95_ns": 564749.4, "deser_p99_ns": 571313.4, "deser_ci_low_ns": 546075.9717391304, "deser_ci_high_ns": 550149.4307065217, "total_mean_ns": 762942.2391304348, "total_median_ns": 761158.5, "total_std_ns": 12668.95909093098, "total_mad_ns": 8297.0, "total_cv": 0.01660539742218291, "total_min_ns": 736023.0, "total_max_ns": 800512.0, "total_p5_ns": 741906.4, "total_p25_ns": 754240.25, "total_p50_ns": 761158.5, "total_p75_ns": 771307.5, "total_p95_ns": 784403.85, "total_p99_ns": 790212.62, "total_ci_low_ns": 760158.5633152174, "total_ci_high_ns": 765447.5138586956, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 81.10482914453553}, {"serializer": "cJSON", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.7.18", "avg_time_ser_ns": 384574.2105263158, "avg_time_deser_ns": 359025.1157894737, "avg_time_total_ns": 743599.3263157895, "median_size_bytes": 45878.0, "avg_ops_per_sec": 1344.8102554833717, "min_ops_per_sec": 1281.9970437148172, "max_ops_per_sec": 1416.169827085664, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 384574.2105263158, "ser_median_ns": 383703.0, "ser_std_ns": 8632.272444203314, "ser_mad_ns": 6539.0, "ser_cv": 0.022446311291621626, "ser_min_ns": 367908.0, "ser_max_ns": 407271.0, "ser_p5_ns": 371928.6, "ser_p25_ns": 378895.5, "ser_p50_ns": 383703.0, "ser_p75_ns": 390768.5, "ser_p95_ns": 399608.7, "ser_p99_ns": 405358.1, "ser_ci_low_ns": 382902.21894736844, "ser_ci_high_ns": 386328.38578947366, "deser_mean_ns": 359025.1157894737, "deser_median_ns": 358480.0, "deser_std_ns": 7563.424758810974, "deser_mad_ns": 5470.0, "deser_cv": 0.021066561714434596, "deser_min_ns": 338222.0, "deser_max_ns": 379629.0, "deser_p5_ns": 348529.7, "deser_p25_ns": 353366.5, "deser_p50_ns": 358480.0, "deser_p75_ns": 364010.0, "deser_p95_ns": 372030.6, "deser_p99_ns": 378628.84, "deser_ci_low_ns": 357520.89499999996, "deser_ci_high_ns": 360602.7013157895, "total_mean_ns": 743599.3263157895, "total_median_ns": 744311.0, "total_std_ns": 14195.927825186953, "total_mad_ns": 9943.0, "total_cv": 0.019090829325413172, "total_min_ns": 706130.0, "total_max_ns": 780033.0, "total_p5_ns": 722040.4, "total_p25_ns": 733560.0, "total_p50_ns": 744311.0, "total_p75_ns": 752068.5, "total_p95_ns": 766804.5, "total_p99_ns": 771850.3, "total_ci_low_ns": 740632.0218421052, "total_ci_high_ns": 746473.5797368421, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 69.93014944783359}, {"serializer": "ubj", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.0-min", "avg_time_ser_ns": 12585.478723404256, "avg_time_deser_ns": 24758.36170212766, "avg_time_total_ns": 37343.84042553192, "median_size_bytes": 24312.0, "avg_ops_per_sec": 26778.177836158, "min_ops_per_sec": 24881.81139586962, "max_ops_per_sec": 28146.813780680026, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 12585.478723404256, "ser_median_ns": 12455.0, "ser_std_ns": 504.31372998572647, "ser_mad_ns": 298.0, "ser_cv": 0.040071080414914424, "ser_min_ns": 11588.0, "ser_max_ns": 13977.0, "ser_p5_ns": 11970.3, "ser_p25_ns": 12223.5, "ser_p50_ns": 12455.0, "ser_p75_ns": 12979.5, "ser_p95_ns": 13481.9, "ser_p99_ns": 13767.749999999998, "ser_ci_low_ns": 12484.649202127659, "ser_ci_high_ns": 12685.655053191489, "deser_mean_ns": 24758.36170212766, "deser_median_ns": 24628.0, "deser_std_ns": 658.0064033917896, "deser_mad_ns": 440.0, "deser_cv": 0.026577138314254553, "deser_min_ns": 23901.0, "deser_max_ns": 26438.0, "deser_p5_ns": 23959.7, "deser_p25_ns": 24212.75, "deser_p50_ns": 24628.0, "deser_p75_ns": 25117.25, "deser_p95_ns": 26267.0, "deser_p99_ns": 26423.12, "deser_ci_low_ns": 24629.156382978726, "deser_ci_high_ns": 24896.25, "total_mean_ns": 37343.84042553192, "total_median_ns": 37125.5, "total_std_ns": 1053.077622798304, "total_mad_ns": 715.0, "total_cv": 0.0281994998585715, "total_min_ns": 35528.0, "total_max_ns": 40190.0, "total_p5_ns": 36003.5, "total_p25_ns": 36530.5, "total_p50_ns": 37125.5, "total_p75_ns": 38070.0, "total_p95_ns": 39200.2, "total_p99_ns": 40083.979999999996, "total_ci_low_ns": 37142.04175531915, "total_ci_high_ns": 37554.71542553191, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.9977121940059483, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.6581418905806427}, {"serializer": "libbson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.27.5", "avg_time_ser_ns": 269685.66315789474, "avg_time_deser_ns": 231344.47368421053, "avg_time_total_ns": 501030.13684210525, "median_size_bytes": 57612.0, "avg_ops_per_sec": 1995.8879246322467, "min_ops_per_sec": 1897.2847957288325, "max_ops_per_sec": 2079.9534090436373, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 269685.66315789474, "ser_median_ns": 269109.0, "ser_std_ns": 8743.91295095285, "ser_mad_ns": 7381.0, "ser_cv": 0.03242260952460602, "ser_min_ns": 254199.0, "ser_max_ns": 288998.0, "ser_p5_ns": 257042.7, "ser_p25_ns": 262271.0, "ser_p50_ns": 269109.0, "ser_p75_ns": 277019.5, "ser_p95_ns": 284660.4, "ser_p99_ns": 288704.72, "ser_ci_low_ns": 267977.9813157895, "ser_ci_high_ns": 271353.72105263156, "deser_mean_ns": 231344.47368421053, "deser_median_ns": 231287.0, "deser_std_ns": 4724.861377775408, "deser_mad_ns": 3645.0, "deser_cv": 0.02042348927783307, "deser_min_ns": 224299.0, "deser_max_ns": 244352.0, "deser_p5_ns": 224813.0, "deser_p25_ns": 227250.5, "deser_p50_ns": 231287.0, "deser_p75_ns": 233951.5, "deser_p95_ns": 238963.3, "deser_p99_ns": 242903.46, "deser_ci_low_ns": 230418.54710526316, "deser_ci_high_ns": 232349.35, "total_mean_ns": 501030.13684210525, "total_median_ns": 501478.0, "total_std_ns": 11748.898899616739, "total_mad_ns": 8794.0, "total_cv": 0.02344948544147014, "total_min_ns": 480780.0, "total_max_ns": 527069.0, "total_p5_ns": 482746.0, "total_p25_ns": 491839.0, "total_p50_ns": 501478.0, "total_p75_ns": 509734.5, "total_p95_ns": 521070.7, "total_p99_ns": 523171.76, "total_ci_low_ns": 498855.8607894737, "total_ci_high_ns": 503379.14184210525, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 55.57530346444021}, {"serializer": "json-c", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.15", "avg_time_ser_ns": 539882.6421052632, "avg_time_deser_ns": 728324.5052631579, "avg_time_total_ns": 1268207.147368421, "median_size_bytes": 45878.0, "avg_ops_per_sec": 788.5147170752339, "min_ops_per_sec": 709.6834173243658, "max_ops_per_sec": 845.997922229103, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 539882.6421052632, "ser_median_ns": 508876.0, "ser_std_ns": 53229.9306737302, "ser_mad_ns": 19093.0, "ser_cv": 0.09859537336885103, "ser_min_ns": 481472.0, "ser_max_ns": 648903.0, "ser_p5_ns": 488066.3, "ser_p25_ns": 495663.0, "ser_p50_ns": 508876.0, "ser_p75_ns": 599427.0, "ser_p95_ns": 624782.3999999999, "ser_p99_ns": 638437.98, "ser_ci_low_ns": 529405.7521052632, "ser_ci_high_ns": 551222.6857894737, "deser_mean_ns": 728324.5052631579, "deser_median_ns": 727377.0, "deser_std_ns": 16408.73959910861, "deser_mad_ns": 10562.0, "deser_cv": 0.022529434998455545, "deser_min_ns": 690254.0, "deser_max_ns": 770884.0, "deser_p5_ns": 701799.7, "deser_p25_ns": 717950.0, "deser_p50_ns": 727377.0, "deser_p75_ns": 738522.5, "deser_p95_ns": 759826.0, "deser_p99_ns": 767044.1, "deser_ci_low_ns": 725043.4007894737, "deser_ci_high_ns": 731747.097368421, "total_mean_ns": 1268207.147368421, "total_median_ns": 1250706.0, "total_std_ns": 58950.64094376056, "total_mad_ns": 38536.0, "total_cv": 0.04648344796517306, "total_min_ns": 1182036.0, "total_max_ns": 1409079.0, "total_p5_ns": 1201492.4, "total_p25_ns": 1220005.0, "total_p50_ns": 1250706.0, "total_p75_ns": 1321495.5, "total_p95_ns": 1375350.1, "total_p99_ns": 1405333.1, "total_ci_low_ns": 1255871.8486842106, "total_ci_high_ns": 1280515.8405263158, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.331280833990665}, {"serializer": "yyjson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.10.0", "avg_time_ser_ns": 184032.96739130435, "avg_time_deser_ns": 140233.5652173913, "avg_time_total_ns": 324266.5326086957, "median_size_bytes": 45878.0, "avg_ops_per_sec": 3083.882853882848, "min_ops_per_sec": 2913.2690666177236, "max_ops_per_sec": 3230.4541372426133, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 184032.96739130435, "ser_median_ns": 183628.0, "ser_std_ns": 5190.722409336981, "ser_mad_ns": 3867.5, "ser_cv": 0.028205394299272955, "ser_min_ns": 175906.0, "ser_max_ns": 196002.0, "ser_p5_ns": 177470.45, "ser_p25_ns": 179508.5, "ser_p50_ns": 183628.0, "ser_p75_ns": 186758.75, "ser_p95_ns": 194325.75, "ser_p99_ns": 195395.94, "ser_ci_low_ns": 183030.98532608696, "ser_ci_high_ns": 185099.46902173912, "deser_mean_ns": 140233.5652173913, "deser_median_ns": 139989.0, "deser_std_ns": 3386.411297999172, "deser_mad_ns": 2651.5, "deser_cv": 0.024148364856512974, "deser_min_ns": 133648.0, "deser_max_ns": 148681.0, "deser_p5_ns": 135312.0, "deser_p25_ns": 137347.5, "deser_p50_ns": 139989.0, "deser_p75_ns": 142701.0, "deser_p95_ns": 146027.95, "deser_p99_ns": 147243.2, "deser_ci_low_ns": 139547.37364130435, "deser_ci_high_ns": 140914.74510869564, "total_mean_ns": 324266.5326086957, "total_median_ns": 324094.0, "total_std_ns": 7635.760367084628, "total_mad_ns": 6109.0, "total_cv": 0.023547790472410485, "total_min_ns": 309554.0, "total_max_ns": 343257.0, "total_p5_ns": 314396.2, "total_p25_ns": 317360.5, "total_p50_ns": 324094.0, "total_p75_ns": 328233.75, "total_p95_ns": 336843.45, "total_p99_ns": 341321.43, "total_ci_low_ns": 322699.95869565214, "total_ci_high_ns": 325830.7355978261, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 53.40579181193393}, {"serializer": "ubj", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.0-min", "avg_time_ser_ns": 13517.0, "avg_time_deser_ns": 25590.662790697676, "avg_time_total_ns": 39107.66279069767, "median_size_bytes": 24312.0, "avg_ops_per_sec": 25570.436294082618, "min_ops_per_sec": 24178.534297250902, "max_ops_per_sec": 26423.569824283262, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 13517.0, "ser_median_ns": 13406.5, "ser_std_ns": 482.7603960558488, "ser_mad_ns": 368.5, "ser_cv": 0.03571505482398822, "ser_min_ns": 12777.0, "ser_max_ns": 14936.0, "ser_p5_ns": 12890.25, "ser_p25_ns": 13114.0, "ser_p50_ns": 13406.5, "ser_p75_ns": 13830.5, "ser_p95_ns": 14363.0, "ser_p99_ns": 14673.350000000002, "ser_ci_low_ns": 13421.68226744186, "ser_ci_high_ns": 13620.276453488372, "deser_mean_ns": 25590.662790697676, "deser_median_ns": 25640.5, "deser_std_ns": 455.8871276833932, "deser_mad_ns": 417.0, "deser_cv": 0.017814588524417207, "deser_min_ns": 24962.0, "deser_max_ns": 26910.0, "deser_p5_ns": 25012.75, "deser_p25_ns": 25170.75, "deser_p50_ns": 25640.5, "deser_p75_ns": 25945.75, "deser_p95_ns": 26286.5, "deser_p99_ns": 26759.55, "deser_ci_low_ns": 25498.591279069766, "deser_ci_high_ns": 25686.54273255814, "total_mean_ns": 39107.66279069767, "total_median_ns": 39060.5, "total_std_ns": 840.7589234168505, "total_mad_ns": 757.0, "total_cv": 0.02149857248991206, "total_min_ns": 37845.0, "total_max_ns": 41359.0, "total_p5_ns": 37965.0, "total_p25_ns": 38314.75, "total_p50_ns": 39060.5, "total_p75_ns": 39818.5, "total_p95_ns": 40462.75, "total_p99_ns": 41069.15, "total_ci_low_ns": 38933.98720930232, "total_ci_high_ns": 39290.111918604656, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.969837398133365}, {"serializer": "mpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.1", "avg_time_ser_ns": 46012.34782608696, "avg_time_deser_ns": 110405.0, "avg_time_total_ns": 156417.34782608695, "median_size_bytes": 33416.0, "avg_ops_per_sec": 6393.152766609064, "min_ops_per_sec": 6122.349022873096, "max_ops_per_sec": 6615.156646909399, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 46012.34782608696, "ser_median_ns": 45834.5, "ser_std_ns": 846.9768401777111, "ser_mad_ns": 534.0, "ser_cv": 0.018407598833665967, "ser_min_ns": 44514.0, "ser_max_ns": 48052.0, "ser_p5_ns": 44760.45, "ser_p25_ns": 45438.75, "ser_p50_ns": 45834.5, "ser_p75_ns": 46451.5, "ser_p95_ns": 47550.25, "ser_p99_ns": 47945.53, "ser_ci_low_ns": 45844.85842391304, "ser_ci_high_ns": 46178.65298913044, "deser_mean_ns": 110405.0, "deser_median_ns": 110193.0, "deser_std_ns": 2021.3260254345169, "deser_mad_ns": 1324.5, "deser_cv": 0.018308283369725255, "deser_min_ns": 105755.0, "deser_max_ns": 115712.0, "deser_p5_ns": 107447.8, "deser_p25_ns": 108897.25, "deser_p50_ns": 110193.0, "deser_p75_ns": 111700.75, "deser_p95_ns": 113591.6, "deser_p99_ns": 115697.44, "deser_ci_low_ns": 110006.0410326087, "deser_ci_high_ns": 110836.09972826087, "total_mean_ns": 156417.34782608695, "total_median_ns": 156397.0, "total_std_ns": 2534.8651499117227, "total_mad_ns": 1840.5, "total_cv": 0.01620578014613903, "total_min_ns": 151168.0, "total_max_ns": 163336.0, "total_p5_ns": 152746.3, "total_p25_ns": 154476.0, "total_p50_ns": 156397.0, "total_p75_ns": 158126.5, "total_p95_ns": 161030.9, "total_p99_ns": 161713.47, "total_ci_low_ns": 155921.18152173914, "total_ci_high_ns": 156928.28967391304, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 64.51355079231725}, {"serializer": "zcbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.9", "avg_time_ser_ns": 112460.28571428571, "avg_time_deser_ns": 667197.065934066, "avg_time_total_ns": 779657.3516483516, "median_size_bytes": 35126.0, "avg_ops_per_sec": 1282.6147254121313, "min_ops_per_sec": 1223.9797211039806, "max_ops_per_sec": 1328.7164864484205, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 112460.28571428571, "ser_median_ns": 111966.0, "ser_std_ns": 2952.174408750699, "ser_mad_ns": 1586.0, "ser_cv": 0.02625081725517693, "ser_min_ns": 107461.0, "ser_max_ns": 120828.0, "ser_p5_ns": 108513.5, "ser_p25_ns": 110461.5, "ser_p50_ns": 111966.0, "ser_p75_ns": 113593.0, "ser_p95_ns": 119438.0, "ser_p99_ns": 120063.9, "ser_ci_low_ns": 111899.63104395605, "ser_ci_high_ns": 113084.9521978022, "deser_mean_ns": 667197.065934066, "deser_median_ns": 664770.0, "deser_std_ns": 14429.18528908391, "deser_mad_ns": 9623.0, "deser_cv": 0.02162657185682204, "deser_min_ns": 643648.0, "deser_max_ns": 701984.0, "deser_p5_ns": 647756.0, "deser_p25_ns": 656411.5, "deser_p50_ns": 664770.0, "deser_p75_ns": 675500.0, "deser_p95_ns": 695273.0, "deser_p99_ns": 700634.9, "deser_ci_low_ns": 664331.3917582418, "deser_ci_high_ns": 670072.6939560439, "total_mean_ns": 779657.3516483516, "total_median_ns": 779087.0, "total_std_ns": 15182.291427386073, "total_mad_ns": 10928.0, "total_cv": 0.019473030550263743, "total_min_ns": 752606.0, "total_max_ns": 817007.0, "total_p5_ns": 759121.0, "total_p25_ns": 767328.5, "total_p50_ns": 779087.0, "total_p75_ns": 787645.0, "total_p95_ns": 807832.0, "total_p99_ns": 814293.5, "total_ci_low_ns": 776756.8590659341, "total_ci_high_ns": 782827.8239010988, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 68.3977911621181}, {"serializer": "msgpack-c", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "6.0.1", "avg_time_ser_ns": 70277.07407407407, "avg_time_deser_ns": 104285.76543209876, "avg_time_total_ns": 174562.83950617284, "median_size_bytes": 33416.0, "avg_ops_per_sec": 5728.596090834317, "min_ops_per_sec": 5532.319812343712, "max_ops_per_sec": 5887.478510703436, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 70277.07407407407, "ser_median_ns": 70183.0, "ser_std_ns": 1197.3163301502425, "ser_mad_ns": 814.0, "ser_cv": 0.01703708280296696, "ser_min_ns": 67813.0, "ser_max_ns": 74562.0, "ser_p5_ns": 68320.0, "ser_p25_ns": 69548.0, "ser_p50_ns": 70183.0, "ser_p75_ns": 71159.0, "ser_p95_ns": 71921.0, "ser_p99_ns": 72922.8, "ser_ci_low_ns": 70034.79969135803, "ser_ci_high_ns": 70555.83641975309, "deser_mean_ns": 104285.76543209876, "deser_median_ns": 104389.0, "deser_std_ns": 1896.3054690081246, "deser_mad_ns": 1488.0, "deser_cv": 0.018183742154559177, "deser_min_ns": 101334.0, "deser_max_ns": 108940.0, "deser_p5_ns": 101889.0, "deser_p25_ns": 102587.0, "deser_p50_ns": 104389.0, "deser_p75_ns": 105249.0, "deser_p95_ns": 108215.0, "deser_p99_ns": 108729.6, "deser_ci_low_ns": 103884.70123456791, "deser_ci_high_ns": 104705.15185185186, "total_mean_ns": 174562.83950617284, "total_median_ns": 174464.0, "total_std_ns": 2435.226208470119, "total_mad_ns": 1773.0, "total_cv": 0.0139504273381392, "total_min_ns": 169852.0, "total_max_ns": 180756.0, "total_p5_ns": 171476.0, "total_p25_ns": 172559.0, "total_p50_ns": 174464.0, "total_p75_ns": 175859.0, "total_p95_ns": 179208.0, "total_p99_ns": 180271.2, "total_ci_low_ns": 174065.2314814815, "total_ci_high_ns": 175084.39413580246, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 79.20705643212197}, {"serializer": "protobuf-wire", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "wire-v2", "avg_time_ser_ns": 42222.6129032258, "avg_time_deser_ns": 36521.82795698925, "avg_time_total_ns": 78744.44086021505, "median_size_bytes": 16560.0, "avg_ops_per_sec": 12699.309171236257, "min_ops_per_sec": 12260.461238551794, "max_ops_per_sec": 13076.510663894447, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 42222.6129032258, "ser_median_ns": 42070.0, "ser_std_ns": 634.1911834951677, "ser_mad_ns": 378.0, "ser_cv": 0.015020178522554571, "ser_min_ns": 40968.0, "ser_max_ns": 43690.0, "ser_p5_ns": 41476.2, "ser_p25_ns": 41756.0, "ser_p50_ns": 42070.0, "ser_p75_ns": 42657.0, "ser_p95_ns": 43399.2, "ser_p99_ns": 43683.56, "ser_ci_low_ns": 42097.38575268818, "ser_ci_high_ns": 42354.076075268815, "deser_mean_ns": 36521.82795698925, "deser_median_ns": 36323.0, "deser_std_ns": 657.8479344514848, "deser_mad_ns": 434.0, "deser_cv": 0.018012459158019533, "deser_min_ns": 35231.0, "deser_max_ns": 38411.0, "deser_p5_ns": 35717.4, "deser_p25_ns": 36047.0, "deser_p50_ns": 36323.0, "deser_p75_ns": 36935.0, "deser_p95_ns": 37746.0, "deser_p99_ns": 38150.64, "deser_ci_low_ns": 36392.44139784946, "deser_ci_high_ns": 36661.61317204301, "total_mean_ns": 78744.44086021505, "total_median_ns": 78446.0, "total_std_ns": 1173.055370115057, "total_mad_ns": 858.0, "total_cv": 0.014896992820070084, "total_min_ns": 76473.0, "total_max_ns": 81563.0, "total_p5_ns": 77162.8, "total_p25_ns": 77849.0, "total_p50_ns": 78446.0, "total_p75_ns": 79664.0, "total_p95_ns": 80620.8, "total_p99_ns": 81296.2, "total_ci_low_ns": 78509.87123655913, "total_ci_high_ns": 78996.82903225807, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 45.225095173450306}, {"serializer": "yyjson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.10.0", "avg_time_ser_ns": 184735.44086021505, "avg_time_deser_ns": 142951.55913978495, "avg_time_total_ns": 327687.0, "median_size_bytes": 45878.0, "avg_ops_per_sec": 3051.692621312411, "min_ops_per_sec": 2876.9527316666185, "max_ops_per_sec": 3210.9841345273912, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 184735.44086021505, "ser_median_ns": 183587.0, "ser_std_ns": 4828.4555579676635, "ser_mad_ns": 2862.0, "ser_cv": 0.026137137170237097, "ser_min_ns": 175110.0, "ser_max_ns": 198464.0, "ser_p5_ns": 179193.6, "ser_p25_ns": 181036.0, "ser_p50_ns": 183587.0, "ser_p75_ns": 187541.0, "ser_p95_ns": 194087.19999999998, "ser_p99_ns": 198236.76, "ser_ci_low_ns": 183781.27204301074, "ser_ci_high_ns": 185697.94919354838, "deser_mean_ns": 142951.55913978495, "deser_median_ns": 142032.0, "deser_std_ns": 5147.746173057228, "deser_mad_ns": 3342.0, "deser_cv": 0.03601042341919134, "deser_min_ns": 134130.0, "deser_max_ns": 157582.0, "deser_p5_ns": 136438.4, "deser_p25_ns": 138920.0, "deser_p50_ns": 142032.0, "deser_p75_ns": 146183.0, "deser_p95_ns": 152548.19999999998, "deser_p99_ns": 155362.04, "deser_ci_low_ns": 141956.08494623657, "deser_ci_high_ns": 144045.9731182796, "total_mean_ns": 327687.0, "total_median_ns": 327987.0, "total_std_ns": 7912.620255285086, "total_mad_ns": 5733.0, "total_cv": 0.024146884848300625, "total_min_ns": 311431.0, "total_max_ns": 347590.0, "total_p5_ns": 316028.6, "total_p25_ns": 321324.0, "total_p50_ns": 327987.0, "total_p75_ns": 331884.0, "total_p95_ns": 342683.0, "total_p99_ns": 346085.8, "total_ci_low_ns": 326119.7255376344, "total_ci_high_ns": 329259.53010752687, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 51.15297524770095}, {"serializer": "tinycbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.6.0", "avg_time_ser_ns": 67950.27173913043, "avg_time_deser_ns": 543653.4130434783, "avg_time_total_ns": 611603.6847826086, "median_size_bytes": 34026.0, "avg_ops_per_sec": 1635.0457410266336, "min_ops_per_sec": 1576.92641272895, "max_ops_per_sec": 1686.2098386971668, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 67950.27173913043, "ser_median_ns": 67922.0, "ser_std_ns": 1197.2785909083532, "ser_mad_ns": 776.5, "ser_cv": 0.0176199235156094, "ser_min_ns": 65676.0, "ser_max_ns": 70902.0, "ser_p5_ns": 66152.7, "ser_p25_ns": 67154.75, "ser_p50_ns": 67922.0, "ser_p75_ns": 68688.75, "ser_p95_ns": 70349.0, "ser_p99_ns": 70729.1, "ser_ci_low_ns": 67704.26739130434, "ser_ci_high_ns": 68192.02038043478, "deser_mean_ns": 543653.4130434783, "deser_median_ns": 542871.0, "deser_std_ns": 8889.833802513494, "deser_mad_ns": 6904.0, "deser_cv": 0.016352024266244304, "deser_min_ns": 525780.0, "deser_max_ns": 563627.0, "deser_p5_ns": 530330.0, "deser_p25_ns": 537306.5, "deser_p50_ns": 542871.0, "deser_p75_ns": 549994.25, "deser_p95_ns": 558057.3, "deser_p99_ns": 561724.1900000001, "deser_ci_low_ns": 541871.1600543478, "deser_ci_high_ns": 545537.69375, "total_mean_ns": 611603.6847826086, "total_median_ns": 610813.5, "total_std_ns": 9346.21121205942, "total_mad_ns": 7079.0, "total_cv": 0.015281482837013124, "total_min_ns": 593046.0, "total_max_ns": 634145.0, "total_p5_ns": 598565.7, "total_p25_ns": 604187.0, "total_p50_ns": 610813.5, "total_p75_ns": 618408.25, "total_p95_ns": 627744.65, "total_p99_ns": 630606.92, "total_ci_low_ns": 609679.4586956522, "total_ci_high_ns": 613532.43125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 85.66836452796913}, {"serializer": "jansson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "2.14", "avg_time_ser_ns": 687447.5306122449, "avg_time_deser_ns": 814443.2346938775, "avg_time_total_ns": 1501890.7653061224, "median_size_bytes": 45878.0, "avg_ops_per_sec": 665.827384454405, "min_ops_per_sec": 645.4831990405538, "max_ops_per_sec": 682.6777351483458, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 687447.5306122449, "ser_median_ns": 686867.5, "ser_std_ns": 11501.137246506136, "ser_mad_ns": 8575.0, "ser_cv": 0.01673020373825935, "ser_min_ns": 665910.0, "ser_max_ns": 722450.0, "ser_p5_ns": 671728.05, "ser_p25_ns": 678374.0, "ser_p50_ns": 686867.5, "ser_p75_ns": 696163.25, "ser_p95_ns": 705244.8, "ser_p99_ns": 709560.64, "ser_ci_low_ns": 685232.6117346939, "ser_ci_high_ns": 689752.6869897959, "deser_mean_ns": 814443.2346938775, "deser_median_ns": 813302.0, "deser_std_ns": 14185.853435257923, "deser_mad_ns": 10264.0, "deser_cv": 0.017417854100770964, "deser_min_ns": 789604.0, "deser_max_ns": 850174.0, "deser_p5_ns": 796076.65, "deser_p25_ns": 803018.5, "deser_p50_ns": 813302.0, "deser_p75_ns": 823161.75, "deser_p95_ns": 840268.7, "deser_p99_ns": 844515.99, "deser_ci_low_ns": 811592.5734693878, "deser_ci_high_ns": 817143.838010204, "total_mean_ns": 1501890.7653061224, "total_median_ns": 1497696.0, "total_std_ns": 21426.549107971397, "total_mad_ns": 17958.0, "total_cv": 0.01426638315044446, "total_min_ns": 1464820.0, "total_max_ns": 1549227.0, "total_p5_ns": 1471842.2, "total_p25_ns": 1484511.75, "total_p50_ns": 1497696.0, "total_p75_ns": 1519930.0, "total_p95_ns": 1538634.25, "total_p99_ns": 1545411.99, "total_ci_low_ns": 1497687.7318877552, "total_ci_high_ns": 1505851.1900510204, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 93.84386983828449}, {"serializer": "avro-c", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.11.3", "avg_time_ser_ns": 23795.824175824175, "avg_time_deser_ns": 36459.93406593407, "avg_time_total_ns": 60255.758241758245, "median_size_bytes": 20912.0, "avg_ops_per_sec": 16595.924259849133, "min_ops_per_sec": 15684.798293493946, "max_ops_per_sec": 17349.966167565974, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 23795.824175824175, "ser_median_ns": 23521.0, "ser_std_ns": 939.9245902778772, "ser_mad_ns": 415.0, "ser_cv": 0.039499560230942185, "ser_min_ns": 22439.0, "ser_max_ns": 26437.0, "ser_p5_ns": 22657.0, "ser_p25_ns": 23159.0, "ser_p50_ns": 23521.0, "ser_p75_ns": 24052.0, "ser_p95_ns": 25780.5, "ser_p99_ns": 26391.1, "ser_ci_low_ns": 23602.465384615385, "ser_ci_high_ns": 24001.0260989011, "deser_mean_ns": 36459.93406593407, "deser_median_ns": 36318.0, "deser_std_ns": 862.6212610693293, "deser_mad_ns": 601.0, "deser_cv": 0.023659430088638307, "deser_min_ns": 35198.0, "deser_max_ns": 38839.0, "deser_p5_ns": 35387.5, "deser_p25_ns": 35733.5, "deser_p50_ns": 36318.0, "deser_p75_ns": 36937.0, "deser_p95_ns": 38283.0, "deser_p99_ns": 38712.1, "deser_ci_low_ns": 36286.670054945054, "deser_ci_high_ns": 36637.4728021978, "total_mean_ns": 60255.758241758245, "total_median_ns": 60099.0, "total_std_ns": 1560.7385099558146, "total_mad_ns": 1183.0, "total_cv": 0.02590189810065649, "total_min_ns": 57637.0, "total_max_ns": 63756.0, "total_p5_ns": 58294.0, "total_p25_ns": 58991.0, "total_p50_ns": 60099.0, "total_p75_ns": 61350.5, "total_p95_ns": 63064.0, "total_p99_ns": 63711.0, "total_ci_low_ns": 59959.038736263734, "total_ci_high_ns": 60577.3554945055, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.612549824174547}, {"serializer": "cJSON", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.7.18", "avg_time_ser_ns": 383456.0208333333, "avg_time_deser_ns": 357424.7291666667, "avg_time_total_ns": 740880.75, "median_size_bytes": 45878.0, "avg_ops_per_sec": 1349.7448813456147, "min_ops_per_sec": 1308.1642531036198, "max_ops_per_sec": 1408.5657701615062, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 383456.0208333333, "ser_median_ns": 383459.0, "ser_std_ns": 7992.115486994425, "ser_mad_ns": 6034.5, "ser_cv": 0.020842326245460483, "ser_min_ns": 370131.0, "ser_max_ns": 402990.0, "ser_p5_ns": 372575.75, "ser_p25_ns": 376363.75, "ser_p50_ns": 383459.0, "ser_p75_ns": 388468.0, "ser_p95_ns": 398652.5, "ser_p99_ns": 400270.14999999997, "ser_ci_low_ns": 381846.7028645833, "ser_ci_high_ns": 384973.3028645833, "deser_mean_ns": 357424.7291666667, "deser_median_ns": 356037.0, "deser_std_ns": 6972.857549820427, "deser_mad_ns": 4799.5, "deser_cv": 0.019508604136254357, "deser_min_ns": 337883.0, "deser_max_ns": 375632.0, "deser_p5_ns": 348471.0, "deser_p25_ns": 352148.75, "deser_p50_ns": 356037.0, "deser_p75_ns": 362962.25, "deser_p95_ns": 369338.25, "deser_p99_ns": 372580.6, "deser_ci_low_ns": 356089.27578125, "deser_ci_high_ns": 358810.5453125, "total_mean_ns": 740880.75, "total_median_ns": 740216.5, "total_std_ns": 12360.354621041208, "total_mad_ns": 9687.0, "total_cv": 0.016683325381366985, "total_min_ns": 709942.0, "total_max_ns": 764430.0, "total_p5_ns": 724508.0, "total_p25_ns": 730654.0, "total_p50_ns": 740216.5, "total_p75_ns": 750479.0, "total_p95_ns": 761188.25, "total_p99_ns": 763944.55, "total_ci_low_ns": 738285.9578125, "total_ci_high_ns": 743303.0700520833, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 78.57898615380985}, {"serializer": "qcbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.5.1", "avg_time_ser_ns": 213174.57142857142, "avg_time_deser_ns": 546471.4725274725, "avg_time_total_ns": 759646.043956044, "median_size_bytes": 34026.0, "avg_ops_per_sec": 1316.4025640050115, "min_ops_per_sec": 1253.1391134792655, "max_ops_per_sec": 1350.1435202562031, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 213174.57142857142, "ser_median_ns": 212572.0, "ser_std_ns": 4010.0804678622294, "ser_mad_ns": 2563.0, "ser_cv": 0.01881125145925714, "ser_min_ns": 206831.0, "ser_max_ns": 224595.0, "ser_p5_ns": 208390.5, "ser_p25_ns": 209988.5, "ser_p50_ns": 212572.0, "ser_p75_ns": 215076.0, "ser_p95_ns": 221751.0, "ser_p99_ns": 224199.9, "ser_ci_low_ns": 212379.95521978024, "ser_ci_high_ns": 213982.57747252745, "deser_mean_ns": 546471.4725274725, "deser_median_ns": 544117.0, "deser_std_ns": 11477.468909264177, "deser_mad_ns": 8420.0, "deser_cv": 0.021002869291932114, "deser_min_ns": 528981.0, "deser_max_ns": 577695.0, "deser_p5_ns": 531715.5, "deser_p25_ns": 537512.5, "deser_p50_ns": 544117.0, "deser_p75_ns": 556017.0, "deser_p95_ns": 564887.0, "deser_p99_ns": 574585.5, "deser_ci_low_ns": 544116.7118131868, "deser_ci_high_ns": 548779.156043956, "total_mean_ns": 759646.043956044, "total_median_ns": 755565.0, "total_std_ns": 13440.009412953126, "total_mad_ns": 9462.0, "total_cv": 0.017692462851462986, "total_min_ns": 740662.0, "total_max_ns": 797996.0, "total_p5_ns": 742423.5, "total_p25_ns": 750440.5, "total_p50_ns": 755565.0, "total_p75_ns": 769981.0, "total_p95_ns": 782746.0, "total_p99_ns": 797163.5, "total_ci_low_ns": 756962.5381868132, "total_ci_high_ns": 762381.8494505495, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 75.16878033201877}, {"serializer": "cbor-encode", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.11.0", "avg_time_ser_ns": 368378.9285714286, "avg_time_deser_ns": 544680.5510204082, "avg_time_total_ns": 913059.4795918367, "median_size_bytes": 45612.0, "avg_ops_per_sec": 1095.2189012341541, "min_ops_per_sec": 1052.6725777740817, "max_ops_per_sec": 1127.8013174974992, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 368378.9285714286, "ser_median_ns": 367657.5, "ser_std_ns": 6850.963007407498, "ser_mad_ns": 5110.5, "ser_cv": 0.018597597408666924, "ser_min_ns": 354040.0, "ser_max_ns": 385970.0, "ser_p5_ns": 358852.8, "ser_p25_ns": 363213.75, "ser_p50_ns": 367657.5, "ser_p75_ns": 372954.5, "ser_p95_ns": 380408.75, "ser_p99_ns": 384123.12, "ser_ci_low_ns": 367103.3556122449, "ser_ci_high_ns": 369700.2655612245, "deser_mean_ns": 544680.5510204082, "deser_median_ns": 542475.0, "deser_std_ns": 11146.074651025627, "deser_mad_ns": 6746.0, "deser_cv": 0.02046350770216505, "deser_min_ns": 522130.0, "deser_max_ns": 574142.0, "deser_p5_ns": 530564.25, "deser_p25_ns": 536902.0, "deser_p50_ns": 542475.0, "deser_p75_ns": 551523.75, "deser_p95_ns": 566443.7999999999, "deser_p99_ns": 573017.77, "deser_ci_low_ns": 542568.5586734693, "deser_ci_high_ns": 546887.4959183673, "total_mean_ns": 913059.4795918367, "total_median_ns": 909641.0, "total_std_ns": 15396.283887045829, "total_mad_ns": 10983.0, "total_cv": 0.016862301121859446, "total_min_ns": 886681.0, "total_max_ns": 949963.0, "total_p5_ns": 894450.25, "total_p25_ns": 900138.5, "total_p50_ns": 909641.0, "total_p75_ns": 923602.25, "total_p95_ns": 943026.5, "total_p99_ns": 948543.89, "total_ci_low_ns": 910012.3252551021, "total_ci_high_ns": 916170.656377551, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 78.13197245352808}, {"serializer": "nanopb", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.4.9", "avg_time_ser_ns": 42335.04347826087, "avg_time_deser_ns": 36383.739130434784, "avg_time_total_ns": 78718.78260869565, "median_size_bytes": 16560.0, "avg_ops_per_sec": 12703.448489173348, "min_ops_per_sec": 12227.031521287261, "max_ops_per_sec": 13181.83016530015, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 42335.04347826087, "ser_median_ns": 42163.5, "ser_std_ns": 707.3484291964393, "ser_mad_ns": 499.5, "ser_cv": 0.016708343043503996, "ser_min_ns": 41035.0, "ser_max_ns": 44503.0, "ser_p5_ns": 41473.05, "ser_p25_ns": 41777.75, "ser_p50_ns": 42163.5, "ser_p75_ns": 42755.75, "ser_p95_ns": 43690.35, "ser_p99_ns": 44068.020000000004, "ser_ci_low_ns": 42185.7652173913, "ser_ci_high_ns": 42487.301086956526, "deser_mean_ns": 36383.739130434784, "deser_median_ns": 36238.0, "deser_std_ns": 667.1758235659352, "deser_mad_ns": 431.0, "deser_cv": 0.01833719786672081, "deser_min_ns": 34827.0, "deser_max_ns": 38215.0, "deser_p5_ns": 35583.75, "deser_p25_ns": 35906.5, "deser_p50_ns": 36238.0, "deser_p75_ns": 36823.75, "deser_p95_ns": 37521.65, "deser_p99_ns": 38172.23, "deser_ci_low_ns": 36254.23641304348, "deser_ci_high_ns": 36523.31195652174, "total_mean_ns": 78718.78260869565, "total_median_ns": 78373.0, "total_std_ns": 1209.5078812719883, "total_mad_ns": 911.0, "total_cv": 0.015364921066987896, "total_min_ns": 75862.0, "total_max_ns": 81786.0, "total_p5_ns": 77278.3, "total_p25_ns": 77756.75, "total_p50_ns": 78373.0, "total_p75_ns": 79585.25, "total_p95_ns": 80876.5, "total_p99_ns": 81235.45, "total_ci_low_ns": 78463.65326086956, "total_ci_high_ns": 78969.09076086957, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 44.19634716188738}, {"serializer": "flatcc", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.6.1", "avg_time_ser_ns": 24120.011764705883, "avg_time_deser_ns": 24581.529411764706, "avg_time_total_ns": 48701.541176470586, "median_size_bytes": 23568.0, "avg_ops_per_sec": 20533.23110199919, "min_ops_per_sec": 19613.22716039697, "max_ops_per_sec": 21199.465773462507, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 24120.011764705883, "ser_median_ns": 24023.0, "ser_std_ns": 591.298601025091, "ser_mad_ns": 399.0, "ser_cv": 0.024514855415216717, "ser_min_ns": 23002.0, "ser_max_ns": 25572.0, "ser_p5_ns": 23293.4, "ser_p25_ns": 23694.0, "ser_p50_ns": 24023.0, "ser_p75_ns": 24472.0, "ser_p95_ns": 25308.0, "ser_p99_ns": 25479.6, "ser_ci_low_ns": 23998.019411764704, "ser_ci_high_ns": 24254.12970588235, "deser_mean_ns": 24581.529411764706, "deser_median_ns": 24406.0, "deser_std_ns": 399.5238114435286, "deser_mad_ns": 260.0, "deser_cv": 0.01625300870222976, "deser_min_ns": 24065.0, "deser_max_ns": 25791.0, "deser_p5_ns": 24140.2, "deser_p25_ns": 24260.0, "deser_p50_ns": 24406.0, "deser_p75_ns": 24831.0, "deser_p95_ns": 25382.6, "deser_p99_ns": 25737.239999999998, "deser_ci_low_ns": 24496.962647058823, "deser_ci_high_ns": 24665.27411764706, "total_mean_ns": 48701.541176470586, "total_median_ns": 48502.0, "total_std_ns": 877.3001814677582, "total_mad_ns": 678.0, "total_cv": 0.018013807371903306, "total_min_ns": 47171.0, "total_max_ns": 50986.0, "total_p5_ns": 47500.6, "total_p25_ns": 48073.0, "total_p50_ns": 48502.0, "total_p75_ns": 49357.0, "total_p95_ns": 50100.6, "total_p99_ns": 50452.6, "total_ci_low_ns": 48512.26794117647, "total_ci_high_ns": 48884.68058823529, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.247582764411877}, {"serializer": "custom-binary", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "v2-1.0", "avg_time_ser_ns": 10939.852272727272, "avg_time_deser_ns": 24422.863636363636, "avg_time_total_ns": 35362.71590909091, "median_size_bytes": 20612.0, "avg_ops_per_sec": 28278.370998731007, "min_ops_per_sec": 26832.671460770634, "max_ops_per_sec": 29291.154071470417, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 10939.852272727272, "ser_median_ns": 10932.5, "ser_std_ns": 328.8426427228322, "ser_mad_ns": 210.0, "ser_cv": 0.030059148380150173, "ser_min_ns": 10188.0, "ser_max_ns": 11866.0, "ser_p5_ns": 10514.05, "ser_p25_ns": 10707.25, "ser_p50_ns": 10932.5, "ser_p75_ns": 11115.0, "ser_p95_ns": 11552.199999999999, "ser_p99_ns": 11733.759999999998, "ser_ci_low_ns": 10874.827556818182, "ser_ci_high_ns": 11008.238920454545, "deser_mean_ns": 24422.863636363636, "deser_median_ns": 24265.5, "deser_std_ns": 380.4799504382267, "deser_mad_ns": 237.5, "deser_cv": 0.01557884268213836, "deser_min_ns": 23907.0, "deser_max_ns": 25436.0, "deser_p5_ns": 24001.05, "deser_p25_ns": 24136.5, "deser_p50_ns": 24265.5, "deser_p75_ns": 24675.5, "deser_p95_ns": 25117.95, "deser_p99_ns": 25406.42, "deser_ci_low_ns": 24350.001988636363, "deser_ci_high_ns": 24504.430397727276, "total_mean_ns": 35362.71590909091, "total_median_ns": 35254.0, "total_std_ns": 649.7451303831645, "total_mad_ns": 441.5, "total_cv": 0.018373733851593972, "total_min_ns": 34140.0, "total_max_ns": 37268.0, "total_p5_ns": 34563.25, "total_p25_ns": 34831.5, "total_p50_ns": 35254.0, "total_p75_ns": 35755.0, "total_p95_ns": 36448.3, "total_p99_ns": 37116.62, "total_ci_low_ns": 35230.78039772727, "total_ci_high_ns": 35494.691477272725, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "libbson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.27.5", "avg_time_ser_ns": 269395.36559139786, "avg_time_deser_ns": 232863.60215053763, "avg_time_total_ns": 502258.96774193546, "median_size_bytes": 57612.0, "avg_ops_per_sec": 1991.0047689060034, "min_ops_per_sec": 1901.6902222695533, "max_ops_per_sec": 2073.8712955473984, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 269395.36559139786, "ser_median_ns": 268521.0, "ser_std_ns": 7905.449161929173, "ser_mad_ns": 5611.0, "ser_cv": 0.029345156493596355, "ser_min_ns": 255712.0, "ser_max_ns": 292441.0, "ser_p5_ns": 259349.2, "ser_p25_ns": 263104.0, "ser_p50_ns": 268521.0, "ser_p75_ns": 274389.0, "ser_p95_ns": 283011.0, "ser_p99_ns": 287836.39999999997, "ser_ci_low_ns": 267796.06586021505, "ser_ci_high_ns": 270974.93064516125, "deser_mean_ns": 232863.60215053763, "deser_median_ns": 232767.0, "deser_std_ns": 4630.654684532915, "deser_mad_ns": 3392.0, "deser_cv": 0.01988569549628185, "deser_min_ns": 224217.0, "deser_max_ns": 246520.0, "deser_p5_ns": 226801.0, "deser_p25_ns": 229105.0, "deser_p50_ns": 232767.0, "deser_p75_ns": 235629.0, "deser_p95_ns": 241589.8, "deser_p99_ns": 245224.63999999998, "deser_ci_low_ns": 231944.9311827957, "deser_ci_high_ns": 233802.5948924731, "total_mean_ns": 502258.96774193546, "total_median_ns": 501500.0, "total_std_ns": 9824.747376386716, "total_mad_ns": 6771.0, "total_cv": 0.019561118879682697, "total_min_ns": 482190.0, "total_max_ns": 525848.0, "total_p5_ns": 489305.6, "total_p25_ns": 494729.0, "total_p50_ns": 501500.0, "total_p75_ns": 507956.0, "total_p95_ns": 521006.8, "total_p99_ns": 524793.68, "total_ci_low_ns": 500243.0454301075, "total_ci_high_ns": 504128.9497311828, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 65.87328054041399}, {"serializer": "json-c", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.15", "avg_time_ser_ns": 501493.94680851063, "avg_time_deser_ns": 724922.6489361703, "avg_time_total_ns": 1226416.5957446808, "median_size_bytes": 45878.0, "avg_ops_per_sec": 815.3836171735751, "min_ops_per_sec": 786.1697025920015, "max_ops_per_sec": 843.612043068082, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 501493.94680851063, "ser_median_ns": 501256.5, "ser_std_ns": 9696.182362997051, "ser_mad_ns": 7687.5, "ser_cv": 0.019334595012967165, "ser_min_ns": 485989.0, "ser_max_ns": 526964.0, "ser_p5_ns": 488815.05, "ser_p25_ns": 492971.0, "ser_p50_ns": 501256.5, "ser_p75_ns": 508288.5, "ser_p95_ns": 518155.35, "ser_p99_ns": 525982.85, "ser_ci_low_ns": 499658.4930851064, "ser_ci_high_ns": 503528.1079787234, "deser_mean_ns": 724922.6489361703, "deser_median_ns": 722917.0, "deser_std_ns": 17361.785295264704, "deser_mad_ns": 13622.5, "deser_cv": 0.023949845298313222, "deser_min_ns": 692978.0, "deser_max_ns": 766318.0, "deser_p5_ns": 700616.9, "deser_p25_ns": 712970.5, "deser_p50_ns": 722917.0, "deser_p75_ns": 736994.75, "deser_p95_ns": 757878.65, "deser_p99_ns": 761800.99, "deser_ci_low_ns": 721485.7675531915, "deser_ci_high_ns": 728245.0904255318, "total_mean_ns": 1226416.5957446808, "total_median_ns": 1223862.0, "total_std_ns": 23143.337489132715, "total_mad_ns": 17435.5, "total_cv": 0.018870698235357836, "total_min_ns": 1185379.0, "total_max_ns": 1271990.0, "total_p5_ns": 1189890.05, "total_p25_ns": 1209172.25, "total_p50_ns": 1223862.0, "total_p75_ns": 1243555.0, "total_p95_ns": 1266821.75, "total_p99_ns": 1269598.97, "total_ci_low_ns": 1221692.307712766, "total_ci_high_ns": 1231044.6263297873, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 71.27287480927414}, {"serializer": "protobuf-c", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.5.0", "avg_time_ser_ns": 42286.34444444445, "avg_time_deser_ns": 35859.27777777778, "avg_time_total_ns": 78145.62222222223, "median_size_bytes": 16560.0, "avg_ops_per_sec": 12796.622146744268, "min_ops_per_sec": 12311.480455524777, "max_ops_per_sec": 13039.509714434736, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 42286.34444444445, "ser_median_ns": 42083.5, "ser_std_ns": 581.8590539612271, "ser_mad_ns": 380.5, "ser_cv": 0.013759975273475581, "ser_min_ns": 41522.0, "ser_max_ns": 43796.0, "ser_p5_ns": 41645.7, "ser_p25_ns": 41794.5, "ser_p50_ns": 42083.5, "ser_p75_ns": 42704.25, "ser_p95_ns": 43419.9, "ser_p99_ns": 43791.55, "ser_ci_low_ns": 42172.58694444444, "ser_ci_high_ns": 42402.83361111111, "deser_mean_ns": 35859.27777777778, "deser_median_ns": 35677.0, "deser_std_ns": 546.4936449722048, "deser_mad_ns": 333.5, "deser_cv": 0.015239951243827626, "deser_min_ns": 35142.0, "deser_max_ns": 37577.0, "deser_p5_ns": 35186.8, "deser_p25_ns": 35481.0, "deser_p50_ns": 35677.0, "deser_p75_ns": 36224.25, "deser_p95_ns": 36894.55, "deser_p99_ns": 37445.28, "deser_ci_low_ns": 35753.7175, "deser_ci_high_ns": 35973.55305555555, "total_mean_ns": 78145.62222222223, "total_median_ns": 77719.0, "total_std_ns": 1061.563735036935, "total_mad_ns": 600.5, "total_cv": 0.013584430001954207, "total_min_ns": 76690.0, "total_max_ns": 81225.0, "total_p5_ns": 76950.35, "total_p25_ns": 77299.0, "total_p50_ns": 77719.0, "total_p75_ns": 78920.75, "total_p95_ns": 79973.75, "total_p99_ns": 80916.17, "total_ci_low_ns": 77926.75388888888, "total_ci_high_ns": 78366.68944444445, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 48.280356493376}, {"serializer": "parson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.5.3", "avg_time_ser_ns": 1258216.1030927836, "avg_time_deser_ns": 487669.40206185565, "avg_time_total_ns": 1745885.5051546392, "median_size_bytes": 45878.0, "avg_ops_per_sec": 572.7752461702387, "min_ops_per_sec": 554.0884524641975, "max_ops_per_sec": 587.5599458034706, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 1258216.1030927836, "ser_median_ns": 1253334.0, "ser_std_ns": 20687.37427226877, "ser_mad_ns": 15534.0, "ser_cv": 0.01644182920677756, "ser_min_ns": 1218307.0, "ser_max_ns": 1312827.0, "ser_p5_ns": 1230099.0, "ser_p25_ns": 1241043.0, "ser_p50_ns": 1253334.0, "ser_p75_ns": 1274494.0, "ser_p95_ns": 1289135.4, "ser_p99_ns": 1307932.92, "ser_ci_low_ns": 1254245.3152061857, "ser_ci_high_ns": 1262305.2453608247, "deser_mean_ns": 487669.40206185565, "deser_median_ns": 486039.0, "deser_std_ns": 10051.22279424643, "deser_mad_ns": 7465.0, "deser_cv": 0.020610730859369233, "deser_min_ns": 472535.0, "deser_max_ns": 514973.0, "deser_p5_ns": 474632.2, "deser_p25_ns": 479141.0, "deser_p50_ns": 486039.0, "deser_p75_ns": 494762.0, "deser_p95_ns": 506910.0, "deser_p99_ns": 513350.6, "deser_ci_low_ns": 485796.0755154639, "deser_ci_high_ns": 489699.52783505153, "total_mean_ns": 1745885.5051546392, "total_median_ns": 1740259.0, "total_std_ns": 27759.894355107765, "total_mad_ns": 21814.0, "total_cv": 0.01590018032290667, "total_min_ns": 1701954.0, "total_max_ns": 1804766.0, "total_p5_ns": 1708264.8, "total_p25_ns": 1723688.0, "total_p50_ns": 1740259.0, "total_p75_ns": 1767339.0, "total_p95_ns": 1798986.2, "total_p99_ns": 1803971.1199999999, "total_ci_low_ns": 1740723.5904639175, "total_ci_high_ns": 1751002.4775773194, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 84.70464070933826}, {"serializer": "avro-c", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.11.3", "avg_time_ser_ns": 423.5744680851064, "avg_time_deser_ns": 408.4574468085106, "avg_time_total_ns": 832.031914893617, "median_size_bytes": 307.0, "avg_ops_per_sec": 1201876.973827211, "min_ops_per_sec": 936329.5880149812, "max_ops_per_sec": 1776198.9342806395, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 423.5744680851064, "ser_median_ns": 419.5, "ser_std_ns": 53.23259761310503, "ser_mad_ns": 30.5, "ser_cv": 0.12567470804781677, "ser_min_ns": 293.0, "ser_max_ns": 537.0, "ser_p5_ns": 333.2, "ser_p25_ns": 393.5, "ser_p50_ns": 419.5, "ser_p75_ns": 463.0, "ser_p95_ns": 506.79999999999995, "ser_p99_ns": 536.0699999999999, "ser_ci_low_ns": 413.02074468085107, "ser_ci_high_ns": 434.6172872340425, "deser_mean_ns": 408.4574468085106, "deser_median_ns": 415.5, "deser_std_ns": 50.74873056172117, "deser_mad_ns": 33.0, "deser_cv": 0.124244841067894, "deser_min_ns": 259.0, "deser_max_ns": 531.0, "deser_p5_ns": 314.25, "deser_p25_ns": 380.25, "deser_p50_ns": 415.5, "deser_p75_ns": 442.5, "deser_p95_ns": 477.04999999999995, "deser_p99_ns": 510.53999999999985, "deser_ci_low_ns": 398.36117021276596, "deser_ci_high_ns": 418.6186170212766, "total_mean_ns": 832.031914893617, "total_median_ns": 843.5, "total_std_ns": 98.83237162066243, "total_mad_ns": 63.5, "total_cv": 0.11878435171960809, "total_min_ns": 563.0, "total_max_ns": 1068.0, "total_p5_ns": 658.3, "total_p25_ns": 775.0, "total_p50_ns": 843.5, "total_p75_ns": 898.0, "total_p95_ns": 976.8999999999999, "total_p99_ns": 1016.8499999999997, "total_ci_low_ns": 811.1781914893617, "total_ci_high_ns": 852.2914893617021, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.871436079872714}, {"serializer": "qcbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.5.1", "avg_time_ser_ns": 1291.911111111111, "avg_time_deser_ns": 6790.033333333334, "avg_time_total_ns": 8081.944444444444, "median_size_bytes": 351.0, "avg_ops_per_sec": 123732.6001031105, "min_ops_per_sec": 116157.50958299453, "max_ops_per_sec": 130890.05235602094, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 1291.911111111111, "ser_median_ns": 1293.0, "ser_std_ns": 56.889335594376014, "ser_mad_ns": 40.5, "ser_cv": 0.044035023079450265, "ser_min_ns": 1163.0, "ser_max_ns": 1419.0, "ser_p5_ns": 1195.9, "ser_p25_ns": 1247.5, "ser_p50_ns": 1293.0, "ser_p75_ns": 1329.0, "ser_p95_ns": 1390.0, "ser_p99_ns": 1409.21, "ser_ci_low_ns": 1280.2325, "ser_ci_high_ns": 1303.3780555555554, "deser_mean_ns": 6790.033333333334, "deser_median_ns": 6785.5, "deser_std_ns": 176.51472548942408, "deser_mad_ns": 110.5, "deser_cv": 0.025996150066434246, "deser_min_ns": 6389.0, "deser_max_ns": 7215.0, "deser_p5_ns": 6487.35, "deser_p25_ns": 6670.5, "deser_p50_ns": 6785.5, "deser_p75_ns": 6893.75, "deser_p95_ns": 7096.3, "deser_p99_ns": 7210.55, "deser_ci_low_ns": 6754.096388888889, "deser_ci_high_ns": 6827.421388888889, "total_mean_ns": 8081.944444444444, "total_median_ns": 8099.5, "total_std_ns": 193.37832519230864, "total_mad_ns": 133.0, "total_cv": 0.023927202979629185, "total_min_ns": 7640.0, "total_max_ns": 8609.0, "total_p5_ns": 7790.05, "total_p25_ns": 7954.75, "total_p50_ns": 8099.5, "total_p75_ns": 8201.5, "total_p95_ns": 8435.1, "total_p99_ns": 8543.14, "total_ci_low_ns": 8042.499722222222, "total_ci_high_ns": 8119.245, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 57.71799644593315}, {"serializer": "libbson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.27.5", "avg_time_ser_ns": 2937.1428571428573, "avg_time_deser_ns": 7455.681318681319, "avg_time_total_ns": 10392.824175824177, "median_size_bytes": 469.0, "avg_ops_per_sec": 96220.23649030871, "min_ops_per_sec": 91307.52373995617, "max_ops_per_sec": 101533.15057366231, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 2937.1428571428573, "ser_median_ns": 2953.0, "ser_std_ns": 124.740670675746, "ser_mad_ns": 81.0, "ser_cv": 0.042470072700886284, "ser_min_ns": 2618.0, "ser_max_ns": 3179.0, "ser_p5_ns": 2702.0, "ser_p25_ns": 2864.0, "ser_p50_ns": 2953.0, "ser_p75_ns": 3021.0, "ser_p95_ns": 3120.5, "ser_p99_ns": 3175.4, "ser_ci_low_ns": 2911.850824175824, "ser_ci_high_ns": 2962.5623626373626, "deser_mean_ns": 7455.681318681319, "deser_median_ns": 7437.0, "deser_std_ns": 150.39288392746357, "deser_mad_ns": 122.0, "deser_cv": 0.020171581576405608, "deser_min_ns": 7193.0, "deser_max_ns": 7883.0, "deser_p5_ns": 7244.0, "deser_p25_ns": 7324.0, "deser_p50_ns": 7437.0, "deser_p75_ns": 7559.5, "deser_p95_ns": 7738.5, "deser_p99_ns": 7787.599999999999, "deser_ci_low_ns": 7425.222802197803, "deser_ci_high_ns": 7488.102472527473, "total_mean_ns": 10392.824175824177, "total_median_ns": 10393.0, "total_std_ns": 251.297680645732, "total_mad_ns": 187.0, "total_cv": 0.024179922261198406, "total_min_ns": 9849.0, "total_max_ns": 10952.0, "total_p5_ns": 10006.0, "total_p25_ns": 10210.0, "total_p50_ns": 10393.0, "total_p75_ns": 10579.0, "total_p95_ns": 10812.0, "total_p99_ns": 10867.4, "total_ci_low_ns": 10342.798626373626, "total_ci_high_ns": 10447.39065934066, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 57.41538299703575}, {"serializer": "jansson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "2.14", "avg_time_ser_ns": 12659.442105263159, "avg_time_deser_ns": 12837.305263157894, "avg_time_total_ns": 25496.747368421053, "median_size_bytes": 688.0, "avg_ops_per_sec": 39220.689037321994, "min_ops_per_sec": 36453.77661125693, "max_ops_per_sec": 41580.04158004158, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 12659.442105263159, "ser_median_ns": 12623.0, "ser_std_ns": 573.9677823968549, "ser_mad_ns": 377.0, "ser_cv": 0.04533910559599052, "ser_min_ns": 11673.0, "ser_max_ns": 14061.0, "ser_p5_ns": 11816.1, "ser_p25_ns": 12228.5, "ser_p50_ns": 12623.0, "ser_p75_ns": 12958.5, "ser_p95_ns": 13811.3, "ser_p99_ns": 14054.42, "ser_ci_low_ns": 12549.925, "ser_ci_high_ns": 12772.884210526316, "deser_mean_ns": 12837.305263157894, "deser_median_ns": 12821.0, "deser_std_ns": 290.2993346451361, "deser_mad_ns": 219.0, "deser_cv": 0.02261372840281936, "deser_min_ns": 12281.0, "deser_max_ns": 13453.0, "deser_p5_ns": 12391.2, "deser_p25_ns": 12611.5, "deser_p50_ns": 12821.0, "deser_p75_ns": 13051.5, "deser_p95_ns": 13344.2, "deser_p99_ns": 13410.7, "deser_ci_low_ns": 12780.039999999999, "deser_ci_high_ns": 12894.630789473684, "total_mean_ns": 25496.747368421053, "total_median_ns": 25462.0, "total_std_ns": 744.3580694117047, "total_mad_ns": 492.0, "total_cv": 0.029194236372817813, "total_min_ns": 24050.0, "total_max_ns": 27432.0, "total_p5_ns": 24430.7, "total_p25_ns": 24975.5, "total_p50_ns": 25462.0, "total_p75_ns": 25969.5, "total_p95_ns": 26872.1, "total_p99_ns": 27298.52, "total_ci_low_ns": 25354.458421052634, "total_ci_high_ns": 25637.341842105263, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 47.73064129004884}, {"serializer": "json-c", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.15", "avg_time_ser_ns": 12736.45652173913, "avg_time_deser_ns": 8851.58695652174, "avg_time_total_ns": 21588.043478260868, "median_size_bytes": 688.0, "avg_ops_per_sec": 46321.93746538443, "min_ops_per_sec": 42731.3904794462, "max_ops_per_sec": 49074.937429454774, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 12736.45652173913, "ser_median_ns": 12647.5, "ser_std_ns": 530.5719785877257, "ser_mad_ns": 361.5, "ser_cv": 0.04165773876604711, "ser_min_ns": 11896.0, "ser_max_ns": 14306.0, "ser_p5_ns": 12034.4, "ser_p25_ns": 12316.0, "ser_p50_ns": 12647.5, "ser_p75_ns": 13031.75, "ser_p95_ns": 13664.6, "ser_p99_ns": 14232.29, "ser_ci_low_ns": 12632.335326086955, "ser_ci_high_ns": 12845.922010869564, "deser_mean_ns": 8851.58695652174, "deser_median_ns": 8788.5, "deser_std_ns": 346.91450484831546, "deser_mad_ns": 181.5, "deser_cv": 0.03919235121931589, "deser_min_ns": 8320.0, "deser_max_ns": 9797.0, "deser_p5_ns": 8381.95, "deser_p25_ns": 8617.0, "deser_p50_ns": 8788.5, "deser_p75_ns": 9038.25, "deser_p95_ns": 9630.45, "deser_p99_ns": 9792.45, "deser_ci_low_ns": 8783.762499999999, "deser_ci_high_ns": 8923.199184782608, "total_mean_ns": 21588.043478260868, "total_median_ns": 21528.5, "total_std_ns": 681.969399478548, "total_mad_ns": 505.0, "total_cv": 0.03159014387595107, "total_min_ns": 20377.0, "total_max_ns": 23402.0, "total_p5_ns": 20637.45, "total_p25_ns": 21057.75, "total_p50_ns": 21528.5, "total_p75_ns": 22051.25, "total_p95_ns": 22797.1, "total_p99_ns": 23348.31, "total_ci_low_ns": 21447.553532608697, "total_ci_high_ns": 21727.532608695652, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 44.401511945675736}, {"serializer": "zcbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.9", "avg_time_ser_ns": 634.2298850574713, "avg_time_deser_ns": 8102.586206896552, "avg_time_total_ns": 8736.816091954022, "median_size_bytes": 353.0, "avg_ops_per_sec": 114458.17211614743, "min_ops_per_sec": 107009.09577314071, "max_ops_per_sec": 123365.4083395016, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 634.2298850574713, "ser_median_ns": 630.0, "ser_std_ns": 51.724381626441875, "ser_mad_ns": 31.0, "ser_cv": 0.08155462687122482, "ser_min_ns": 520.0, "ser_max_ns": 793.0, "ser_p5_ns": 565.6, "ser_p25_ns": 600.5, "ser_p50_ns": 630.0, "ser_p75_ns": 664.0, "ser_p95_ns": 725.0, "ser_p99_ns": 787.84, "ser_ci_low_ns": 623.6764367816093, "ser_ci_high_ns": 644.9431034482759, "deser_mean_ns": 8102.586206896552, "deser_median_ns": 8107.0, "deser_std_ns": 250.2520846147934, "deser_mad_ns": 158.0, "deser_cv": 0.03088545783095652, "deser_min_ns": 7458.0, "deser_max_ns": 8624.0, "deser_p5_ns": 7705.3, "deser_p25_ns": 7942.0, "deser_p50_ns": 8107.0, "deser_p75_ns": 8253.5, "deser_p95_ns": 8542.6, "deser_p99_ns": 8624.0, "deser_ci_low_ns": 8050.27183908046, "deser_ci_high_ns": 8155.090804597701, "total_mean_ns": 8736.816091954022, "total_median_ns": 8723.0, "total_std_ns": 263.906190553493, "total_mad_ns": 163.0, "total_cv": 0.0302062201808885, "total_min_ns": 8106.0, "total_max_ns": 9345.0, "total_p5_ns": 8331.3, "total_p25_ns": 8578.5, "total_p50_ns": 8723.0, "total_p75_ns": 8903.5, "total_p95_ns": 9188.8, "total_p99_ns": 9329.52, "total_ci_low_ns": 8680.806896551723, "total_ci_high_ns": 8793.184770114944, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 46.33627176649488}, {"serializer": "protobuf-c", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.5.0", "avg_time_ser_ns": 142.8265306122449, "avg_time_deser_ns": 183.1122448979592, "avg_time_total_ns": 325.9387755102041, "median_size_bytes": 326.0, "avg_ops_per_sec": 3068060.8603093107, "min_ops_per_sec": 2564102.564102564, "max_ops_per_sec": 3906250.0, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 142.8265306122449, "ser_median_ns": 147.5, "ser_std_ns": 22.47795048358173, "ser_mad_ns": 16.5, "ser_cv": 0.15737937753740153, "ser_min_ns": 89.0, "ser_max_ns": 192.0, "ser_p5_ns": 103.7, "ser_p25_ns": 127.0, "ser_p50_ns": 147.5, "ser_p75_ns": 161.75, "ser_p95_ns": 173.14999999999998, "ser_p99_ns": 186.18, "ser_ci_low_ns": 138.13239795918366, "ser_ci_high_ns": 147.1640306122449, "deser_mean_ns": 183.1122448979592, "deser_median_ns": 183.0, "deser_std_ns": 10.656668840907441, "deser_mad_ns": 7.0, "deser_cv": 0.058197467060960115, "deser_min_ns": 157.0, "deser_max_ns": 210.0, "deser_p5_ns": 166.0, "deser_p25_ns": 176.0, "deser_p50_ns": 183.0, "deser_p75_ns": 190.0, "deser_p95_ns": 198.0, "deser_p99_ns": 210.0, "deser_ci_low_ns": 181.0408163265306, "deser_ci_high_ns": 185.14285714285714, "total_mean_ns": 325.9387755102041, "total_median_ns": 324.5, "total_std_ns": 28.950300935540604, "total_mad_ns": 21.0, "total_cv": 0.08882128519450815, "total_min_ns": 256.0, "total_max_ns": 390.0, "total_p5_ns": 279.55, "total_p25_ns": 305.0, "total_p50_ns": 324.5, "total_p75_ns": 351.0, "total_p95_ns": 365.0, "total_p99_ns": 389.03, "total_ci_low_ns": 320.1311224489796, "total_ci_high_ns": 331.65408163265306, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.108551341969244}, {"serializer": "custom-binary", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "v2-1.0", "avg_time_ser_ns": 101.98936170212765, "avg_time_deser_ns": 93.36170212765957, "avg_time_total_ns": 195.35106382978722, "median_size_bytes": 304.0, "avg_ops_per_sec": 5118989.271905462, "min_ops_per_sec": 4132231.4049586775, "max_ops_per_sec": 6993006.993006993, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 101.98936170212765, "ser_median_ns": 103.5, "ser_std_ns": 16.46533973203774, "ser_mad_ns": 11.5, "ser_cv": 0.1614417372287001, "ser_min_ns": 57.0, "ser_max_ns": 137.0, "ser_p5_ns": 73.25, "ser_p25_ns": 91.0, "ser_p50_ns": 103.5, "ser_p75_ns": 113.75, "ser_p95_ns": 125.35, "ser_p99_ns": 137.0, "ser_ci_low_ns": 98.68085106382979, "ser_ci_high_ns": 105.24468085106383, "deser_mean_ns": 93.36170212765957, "deser_median_ns": 94.0, "deser_std_ns": 9.246738528567485, "deser_mad_ns": 6.0, "deser_cv": 0.0990420945402625, "deser_min_ns": 72.0, "deser_max_ns": 114.0, "deser_p5_ns": 76.65, "deser_p25_ns": 88.0, "deser_p50_ns": 94.0, "deser_p75_ns": 100.0, "deser_p95_ns": 106.69999999999999, "deser_p99_ns": 113.07, "deser_ci_low_ns": 91.45744680851064, "deser_ci_high_ns": 95.31941489361702, "total_mean_ns": 195.35106382978722, "total_median_ns": 199.0, "total_std_ns": 21.220150418937507, "total_mad_ns": 15.0, "total_cv": 0.1086257223427613, "total_min_ns": 143.0, "total_max_ns": 242.0, "total_p5_ns": 160.65, "total_p25_ns": 178.5, "total_p50_ns": 199.0, "total_p75_ns": 209.75, "total_p95_ns": 227.35, "total_p99_ns": 237.34999999999997, "total_ci_low_ns": 191.15797872340426, "total_ci_high_ns": 199.5215425531915, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "nanopb", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.4.9", "avg_time_ser_ns": 129.1958762886598, "avg_time_deser_ns": 178.1958762886598, "avg_time_total_ns": 307.3917525773196, "median_size_bytes": 326.0, "avg_ops_per_sec": 3253177.717409531, "min_ops_per_sec": 2666666.6666666665, "max_ops_per_sec": 4032258.064516129, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 129.1958762886598, "ser_median_ns": 128.0, "ser_std_ns": 20.049750193403145, "ser_mad_ns": 14.0, "ser_cv": 0.15518877822854332, "ser_min_ns": 88.0, "ser_max_ns": 185.0, "ser_p5_ns": 99.4, "ser_p25_ns": 114.0, "ser_p50_ns": 128.0, "ser_p75_ns": 142.0, "ser_p95_ns": 160.0, "ser_p99_ns": 175.39999999999992, "ser_ci_low_ns": 125.12345360824742, "ser_ci_high_ns": 133.0938144329897, "deser_mean_ns": 178.1958762886598, "deser_median_ns": 177.0, "deser_std_ns": 13.682134926655372, "deser_mad_ns": 11.0, "deser_cv": 0.07678143406916813, "deser_min_ns": 151.0, "deser_max_ns": 212.0, "deser_p5_ns": 159.0, "deser_p25_ns": 167.0, "deser_p50_ns": 177.0, "deser_p75_ns": 190.0, "deser_p95_ns": 202.0, "deser_p99_ns": 208.15999999999997, "deser_ci_low_ns": 175.53608247422682, "deser_ci_high_ns": 180.90798969072165, "total_mean_ns": 307.3917525773196, "total_median_ns": 308.0, "total_std_ns": 29.187453319388414, "total_mad_ns": 21.0, "total_cv": 0.09495197276656525, "total_min_ns": 248.0, "total_max_ns": 375.0, "total_p5_ns": 265.2, "total_p25_ns": 283.0, "total_p50_ns": 308.0, "total_p75_ns": 328.0, "total_p95_ns": 360.2, "total_p99_ns": 366.3599999999999, "total_ci_low_ns": 301.4634020618557, "total_ci_high_ns": 313.0213917525773, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.362766926759604}, {"serializer": "protobuf-wire", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "wire-v2", "avg_time_ser_ns": 145.22222222222223, "avg_time_deser_ns": 184.14141414141415, "avg_time_total_ns": 329.3636363636364, "median_size_bytes": 326.0, "avg_ops_per_sec": 3036157.880209771, "min_ops_per_sec": 2506265.664160401, "max_ops_per_sec": 4219409.282700422, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 145.22222222222223, "ser_median_ns": 146.0, "ser_std_ns": 25.05526770779544, "ser_mad_ns": 16.0, "ser_cv": 0.1725305350957605, "ser_min_ns": 86.0, "ser_max_ns": 204.0, "ser_p5_ns": 101.9, "ser_p25_ns": 129.5, "ser_p50_ns": 146.0, "ser_p75_ns": 161.5, "ser_p95_ns": 183.1, "ser_p99_ns": 192.23999999999995, "ser_ci_low_ns": 140.32171717171718, "ser_ci_high_ns": 150.36414141414141, "deser_mean_ns": 184.14141414141415, "deser_median_ns": 185.0, "deser_std_ns": 16.562195766022175, "deser_mad_ns": 13.0, "deser_cv": 0.08994280750609958, "deser_min_ns": 148.0, "deser_max_ns": 225.0, "deser_p5_ns": 153.9, "deser_p25_ns": 173.0, "deser_p50_ns": 185.0, "deser_p75_ns": 198.0, "deser_p95_ns": 205.0, "deser_p99_ns": 209.31999999999994, "deser_ci_low_ns": 180.71691919191917, "deser_ci_high_ns": 187.37398989898992, "total_mean_ns": 329.3636363636364, "total_median_ns": 334.0, "total_std_ns": 37.670823047697134, "total_mad_ns": 29.0, "total_cv": 0.11437456625025351, "total_min_ns": 237.0, "total_max_ns": 399.0, "total_p5_ns": 268.9, "total_p25_ns": 302.0, "total_p50_ns": 334.0, "total_p75_ns": 358.0, "total_p95_ns": 382.29999999999995, "total_p99_ns": 396.06, "total_ci_low_ns": 321.7972222222222, "total_ci_high_ns": 336.9191919191919, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.9994627122286697, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.336845988391702}, {"serializer": "yyjson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.10.0", "avg_time_ser_ns": 1427.989247311828, "avg_time_deser_ns": 1690.236559139785, "avg_time_total_ns": 3118.2258064516127, "median_size_bytes": 657.0, "avg_ops_per_sec": 320695.18439973105, "min_ops_per_sec": 236518.44843897823, "max_ops_per_sec": 466417.9104477612, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1427.989247311828, "ser_median_ns": 1435.0, "ser_std_ns": 101.908259534661, "ser_mad_ns": 69.0, "ser_cv": 0.07136486477506888, "ser_min_ns": 1173.0, "ser_max_ns": 1652.0, "ser_p5_ns": 1256.8, "ser_p25_ns": 1361.0, "ser_p50_ns": 1435.0, "ser_p75_ns": 1498.0, "ser_p95_ns": 1579.2, "ser_p99_ns": 1604.1599999999999, "ser_ci_low_ns": 1407.191935483871, "ser_ci_high_ns": 1447.6567204301075, "deser_mean_ns": 1690.236559139785, "deser_median_ns": 1746.0, "deser_std_ns": 433.5902292600364, "deser_mad_ns": 429.0, "deser_cv": 0.25652635834637505, "deser_min_ns": 971.0, "deser_max_ns": 2755.0, "deser_p5_ns": 1108.6, "deser_p25_ns": 1246.0, "deser_p50_ns": 1746.0, "deser_p75_ns": 2060.0, "deser_p95_ns": 2326.6, "deser_p99_ns": 2560.8799999999997, "deser_ci_low_ns": 1606.3150537634408, "deser_ci_high_ns": 1780.397311827957, "total_mean_ns": 3118.2258064516127, "total_median_ns": 3145.0, "total_std_ns": 466.1331011872472, "total_mad_ns": 395.0, "total_cv": 0.14948664084006272, "total_min_ns": 2144.0, "total_max_ns": 4228.0, "total_p5_ns": 2463.4, "total_p25_ns": 2739.0, "total_p50_ns": 3145.0, "total_p75_ns": 3521.0, "total_p95_ns": 3827.9999999999995, "total_p99_ns": 4136.92, "total_ci_low_ns": 3025.868279569893, "total_ci_high_ns": 3218.3059139784946, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.846493269495253}, {"serializer": "parson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.5.3", "avg_time_ser_ns": 29432.129032258064, "avg_time_deser_ns": 6305.4946236559135, "avg_time_total_ns": 35737.62365591398, "median_size_bytes": 688.0, "avg_ops_per_sec": 27981.715002321278, "min_ops_per_sec": 25425.883549453345, "max_ops_per_sec": 30037.246185269734, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 29432.129032258064, "ser_median_ns": 29104.0, "ser_std_ns": 1251.7578268510042, "ser_mad_ns": 656.0, "ser_cv": 0.04253031866906599, "ser_min_ns": 27527.0, "ser_max_ns": 32551.0, "ser_p5_ns": 27907.6, "ser_p25_ns": 28551.0, "ser_p50_ns": 29104.0, "ser_p75_ns": 30194.0, "ser_p95_ns": 32017.399999999998, "ser_p99_ns": 32496.72, "ser_ci_low_ns": 29183.242204301074, "ser_ci_high_ns": 29697.490860215054, "deser_mean_ns": 6305.4946236559135, "deser_median_ns": 6263.0, "deser_std_ns": 277.20878270702605, "deser_mad_ns": 191.0, "deser_cv": 0.043963051156532575, "deser_min_ns": 5660.0, "deser_max_ns": 7117.0, "deser_p5_ns": 5893.6, "deser_p25_ns": 6110.0, "deser_p50_ns": 6263.0, "deser_p75_ns": 6527.0, "deser_p95_ns": 6751.2, "deser_p99_ns": 6892.5199999999995, "deser_ci_low_ns": 6248.029569892473, "deser_ci_high_ns": 6362.227419354838, "total_mean_ns": 35737.62365591398, "total_median_ns": 35402.0, "total_std_ns": 1353.9999671984654, "total_mad_ns": 689.0, "total_cv": 0.03788724119529981, "total_min_ns": 33292.0, "total_max_ns": 39330.0, "total_p5_ns": 33964.2, "total_p25_ns": 34862.0, "total_p50_ns": 35402.0, "total_p75_ns": 36501.0, "total_p95_ns": 38555.2, "total_p99_ns": 39003.4, "total_ci_low_ns": 35465.320967741936, "total_ci_high_ns": 36025.87123655914, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 37.067897870825384}, {"serializer": "tinycbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.6.0", "avg_time_ser_ns": 557.8247422680413, "avg_time_deser_ns": 6857.144329896907, "avg_time_total_ns": 7414.969072164949, "median_size_bytes": 351.0, "avg_ops_per_sec": 134862.32919755523, "min_ops_per_sec": 126103.40479192938, "max_ops_per_sec": 145645.20827264784, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 557.8247422680413, "ser_median_ns": 556.0, "ser_std_ns": 48.49012148307425, "ser_mad_ns": 34.0, "ser_cv": 0.08692716154166961, "ser_min_ns": 435.0, "ser_max_ns": 663.0, "ser_p5_ns": 469.0, "ser_p25_ns": 526.0, "ser_p50_ns": 556.0, "ser_p75_ns": 594.0, "ser_p95_ns": 637.1999999999998, "ser_p99_ns": 658.1999999999999, "ser_ci_low_ns": 548.5837628865979, "ser_ci_high_ns": 567.1559278350516, "deser_mean_ns": 6857.144329896907, "deser_median_ns": 6820.0, "deser_std_ns": 214.9724299033639, "deser_mad_ns": 154.0, "deser_cv": 0.03135013929429656, "deser_min_ns": 6254.0, "deser_max_ns": 7346.0, "deser_p5_ns": 6558.8, "deser_p25_ns": 6694.0, "deser_p50_ns": 6820.0, "deser_p75_ns": 7009.0, "deser_p95_ns": 7204.2, "deser_p99_ns": 7318.16, "deser_ci_low_ns": 6816.318556701031, "deser_ci_high_ns": 6898.136340206186, "total_mean_ns": 7414.969072164949, "total_median_ns": 7363.0, "total_std_ns": 221.41855413862336, "total_mad_ns": 154.0, "total_cv": 0.02986102193868973, "total_min_ns": 6866.0, "total_max_ns": 7930.0, "total_p5_ns": 7104.2, "total_p25_ns": 7257.0, "total_p50_ns": 7363.0, "total_p75_ns": 7547.0, "total_p95_ns": 7820.8, "total_p99_ns": 7885.839999999999, "total_ci_low_ns": 7372.503350515463, "total_ci_high_ns": 7461.157216494846, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 45.367286596627736}, {"serializer": "cJSON", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.7.18", "avg_time_ser_ns": 23162.9375, "avg_time_deser_ns": 5419.510416666667, "avg_time_total_ns": 28582.447916666668, "median_size_bytes": 666.0, "avg_ops_per_sec": 34986.50650621466, "min_ops_per_sec": 32716.089772950338, "max_ops_per_sec": 37460.19853905226, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 23162.9375, "ser_median_ns": 22967.5, "ser_std_ns": 796.5033295268566, "ser_mad_ns": 575.5, "ser_cv": 0.034386973997872966, "ser_min_ns": 21666.0, "ser_max_ns": 25331.0, "ser_p5_ns": 22258.25, "ser_p25_ns": 22509.0, "ser_p50_ns": 22967.5, "ser_p75_ns": 23756.75, "ser_p95_ns": 24578.0, "ser_p99_ns": 25117.25, "ser_ci_low_ns": 23009.28203125, "ser_ci_high_ns": 23319.875, "deser_mean_ns": 5419.510416666667, "deser_median_ns": 5397.5, "deser_std_ns": 210.26940087179224, "deser_mad_ns": 128.0, "deser_cv": 0.03879859705134046, "deser_min_ns": 4948.0, "deser_max_ns": 5899.0, "deser_p5_ns": 5063.25, "deser_p25_ns": 5298.25, "deser_p50_ns": 5397.5, "deser_p75_ns": 5541.75, "deser_p95_ns": 5770.25, "deser_p99_ns": 5894.25, "deser_ci_low_ns": 5378.195572916667, "deser_ci_high_ns": 5460.699739583333, "total_mean_ns": 28582.447916666668, "total_median_ns": 28423.5, "total_std_ns": 887.9089435272145, "total_mad_ns": 683.0, "total_cv": 0.031064832029641075, "total_min_ns": 26695.0, "total_max_ns": 30566.0, "total_p5_ns": 27487.5, "total_p25_ns": 27783.5, "total_p50_ns": 28423.5, "total_p75_ns": 29247.5, "total_p95_ns": 30215.25, "total_p99_ns": 30528.0, "total_ci_low_ns": 28409.39505208333, "total_ci_high_ns": 28757.73515625, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 44.78266662143679}, {"serializer": "flatcc", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.6.1", "avg_time_ser_ns": 385.8191489361702, "avg_time_deser_ns": 97.62765957446808, "avg_time_total_ns": 483.4468085106383, "median_size_bytes": 332.0, "avg_ops_per_sec": 2068479.8873338616, "min_ops_per_sec": 1700680.2721088436, "max_ops_per_sec": 2985074.6268656715, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 385.8191489361702, "ser_median_ns": 386.5, "ser_std_ns": 53.04693859113415, "ser_mad_ns": 42.5, "ser_cv": 0.13749172050532468, "ser_min_ns": 258.0, "ser_max_ns": 476.0, "ser_p5_ns": 297.3, "ser_p25_ns": 351.25, "ser_p50_ns": 386.5, "ser_p75_ns": 430.0, "ser_p95_ns": 457.7, "ser_p99_ns": 475.07, "ser_ci_low_ns": 375.0627659574468, "ser_ci_high_ns": 396.5851063829787, "deser_mean_ns": 97.62765957446808, "deser_median_ns": 101.0, "deser_std_ns": 11.53394619779445, "deser_mad_ns": 8.0, "deser_cv": 0.11814219707885783, "deser_min_ns": 68.0, "deser_max_ns": 126.0, "deser_p5_ns": 76.0, "deser_p25_ns": 90.0, "deser_p50_ns": 101.0, "deser_p75_ns": 105.0, "deser_p95_ns": 112.0, "deser_p99_ns": 114.83999999999992, "deser_ci_low_ns": 95.12765957446808, "deser_ci_high_ns": 99.95744680851064, "total_mean_ns": 483.4468085106383, "total_median_ns": 490.0, "total_std_ns": 60.54654603705071, "total_mad_ns": 44.0, "total_cv": 0.1252393127251731, "total_min_ns": 335.0, "total_max_ns": 588.0, "total_p5_ns": 372.3, "total_p25_ns": 446.0, "total_p50_ns": 490.0, "total_p75_ns": 533.25, "total_p95_ns": 567.35, "total_p99_ns": 582.42, "total_ci_low_ns": 471.08297872340427, "total_ci_high_ns": 495.5651595744681, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.324811985199107}, {"serializer": "mpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.1", "avg_time_ser_ns": 364.02061855670104, "avg_time_deser_ns": 1447.2371134020618, "avg_time_total_ns": 1811.2577319587629, "median_size_bytes": 352.0, "avg_ops_per_sec": 552102.5430867655, "min_ops_per_sec": 361532.89949385397, "max_ops_per_sec": 1072961.373390558, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 364.02061855670104, "ser_median_ns": 371.0, "ser_std_ns": 51.27214549616652, "ser_mad_ns": 35.0, "ser_cv": 0.14084956423472536, "ser_min_ns": 231.0, "ser_max_ns": 492.0, "ser_p5_ns": 276.6, "ser_p25_ns": 332.0, "ser_p50_ns": 371.0, "ser_p75_ns": 404.0, "ser_p95_ns": 439.59999999999997, "ser_p99_ns": 471.8399999999998, "ser_ci_low_ns": 353.35, "ser_ci_high_ns": 373.7943298969072, "deser_mean_ns": 1447.2371134020618, "deser_median_ns": 1465.0, "deser_std_ns": 408.7623793537195, "deser_mad_ns": 260.0, "deser_cv": 0.28244326763624106, "deser_min_ns": 701.0, "deser_max_ns": 2295.0, "deser_p5_ns": 802.8, "deser_p25_ns": 1224.0, "deser_p50_ns": 1465.0, "deser_p75_ns": 1725.0, "deser_p95_ns": 2136.399999999999, "deser_p99_ns": 2279.64, "deser_ci_low_ns": 1367.6182989690722, "deser_ci_high_ns": 1529.1693298969074, "total_mean_ns": 1811.2577319587629, "total_median_ns": 1848.0, "total_std_ns": 434.39575557967385, "total_mad_ns": 268.0, "total_cv": 0.23983100136163493, "total_min_ns": 932.0, "total_max_ns": 2766.0, "total_p5_ns": 1089.2, "total_p25_ns": 1578.0, "total_p50_ns": 1848.0, "total_p75_ns": 2092.0, "total_p95_ns": 2577.7999999999997, "total_p99_ns": 2692.0799999999995, "total_ci_low_ns": 1728.1226804123712, "total_ci_high_ns": 1897.0051546391753, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.19272672213458}, {"serializer": "msgpack-c", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "6.0.1", "avg_time_ser_ns": 532.3636363636364, "avg_time_deser_ns": 1447.5454545454545, "avg_time_total_ns": 1979.909090909091, "median_size_bytes": 352.0, "avg_ops_per_sec": 505073.69484365673, "min_ops_per_sec": 338753.38753387536, "max_ops_per_sec": 909918.1073703367, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 532.3636363636364, "ser_median_ns": 535.0, "ser_std_ns": 60.10984070771803, "ser_mad_ns": 39.0, "ser_cv": 0.11291124449878728, "ser_min_ns": 382.0, "ser_max_ns": 670.0, "ser_p5_ns": 436.3, "ser_p25_ns": 490.0, "ser_p50_ns": 535.0, "ser_p75_ns": 570.5, "ser_p95_ns": 627.1, "ser_p99_ns": 663.14, "ser_ci_low_ns": 520.3128787878787, "ser_ci_high_ns": 543.9502525252525, "deser_mean_ns": 1447.5454545454545, "deser_median_ns": 1460.0, "deser_std_ns": 375.3184028595539, "deser_mad_ns": 247.0, "deser_cv": 0.25927918303429587, "deser_min_ns": 707.0, "deser_max_ns": 2282.0, "deser_p5_ns": 843.4, "deser_p25_ns": 1228.5, "deser_p50_ns": 1460.0, "deser_p75_ns": 1713.0, "deser_p95_ns": 1961.6999999999998, "deser_p99_ns": 2264.36, "deser_ci_low_ns": 1375.4128787878788, "deser_ci_high_ns": 1517.5532828282828, "total_mean_ns": 1979.909090909091, "total_median_ns": 2002.0, "total_std_ns": 400.0108440088535, "total_mad_ns": 277.0, "total_cv": 0.20203495496108123, "total_min_ns": 1099.0, "total_max_ns": 2952.0, "total_p5_ns": 1331.4, "total_p25_ns": 1698.5, "total_p50_ns": 2002.0, "total_p75_ns": 2275.0, "total_p95_ns": 2533.1999999999994, "total_p99_ns": 2872.62, "total_ci_low_ns": 1900.8449494949496, "total_ci_high_ns": 2055.3171717171717, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.195444445478865}, {"serializer": "ubj", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.0-min", "avg_time_ser_ns": 163.7157894736842, "avg_time_deser_ns": 132.4, "avg_time_total_ns": 296.11578947368423, "median_size_bytes": 341.0, "avg_ops_per_sec": 3377057.338878817, "min_ops_per_sec": 2777777.777777778, "max_ops_per_sec": 4784688.995215311, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 163.7157894736842, "ser_median_ns": 167.0, "ser_std_ns": 25.706470399118178, "ser_mad_ns": 18.0, "ser_cv": 0.1570188830396854, "ser_min_ns": 108.0, "ser_max_ns": 222.0, "ser_p5_ns": 123.0, "ser_p25_ns": 146.0, "ser_p50_ns": 167.0, "ser_p75_ns": 182.5, "ser_p95_ns": 202.3, "ser_p99_ns": 214.48000000000002, "ser_ci_low_ns": 158.4415789473684, "ser_ci_high_ns": 169.0421052631579, "deser_mean_ns": 132.4, "deser_median_ns": 134.0, "deser_std_ns": 16.779166413499656, "deser_mad_ns": 10.0, "deser_cv": 0.12673086415029952, "deser_min_ns": 95.0, "deser_max_ns": 171.0, "deser_p5_ns": 103.4, "deser_p25_ns": 123.0, "deser_p50_ns": 134.0, "deser_p75_ns": 141.5, "deser_p95_ns": 162.3, "deser_p99_ns": 165.36, "deser_ci_low_ns": 129.1786842105263, "deser_ci_high_ns": 135.6428947368421, "total_mean_ns": 296.11578947368423, "total_median_ns": 302.0, "total_std_ns": 35.180042443666636, "total_mad_ns": 25.0, "total_cv": 0.11880502051645267, "total_min_ns": 209.0, "total_max_ns": 360.0, "total_p5_ns": 235.8, "total_p25_ns": 275.5, "total_p50_ns": 302.0, "total_p75_ns": 324.0, "total_p95_ns": 346.3, "total_p99_ns": 352.48, "total_ci_low_ns": 288.91499999999996, "total_ci_high_ns": 302.9486842105263, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.9837625979843225, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.4503062285375905}, {"serializer": "cbor-encode", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.11.0", "avg_time_ser_ns": 2408.1505376344085, "avg_time_deser_ns": 6849.4731182795695, "avg_time_total_ns": 9257.623655913978, "median_size_bytes": 351.0, "avg_ops_per_sec": 108019.08104799416, "min_ops_per_sec": 99552.01592832255, "max_ops_per_sec": 116373.79262190155, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 2408.1505376344085, "ser_median_ns": 2415.0, "ser_std_ns": 159.75476765264716, "ser_mad_ns": 94.0, "ser_cv": 0.06633919481195664, "ser_min_ns": 1997.0, "ser_max_ns": 2800.0, "ser_p5_ns": 2150.0, "ser_p25_ns": 2299.0, "ser_p50_ns": 2415.0, "ser_p75_ns": 2507.0, "ser_p95_ns": 2645.2, "ser_p99_ns": 2775.16, "ser_ci_low_ns": 2377.084946236559, "ser_ci_high_ns": 2439.607258064516, "deser_mean_ns": 6849.4731182795695, "deser_median_ns": 6840.0, "deser_std_ns": 215.17301387477298, "deser_mad_ns": 159.0, "deser_cv": 0.03141453512687404, "deser_min_ns": 6351.0, "deser_max_ns": 7424.0, "deser_p5_ns": 6559.6, "deser_p25_ns": 6682.0, "deser_p50_ns": 6840.0, "deser_p75_ns": 6999.0, "deser_p95_ns": 7196.8, "deser_p99_ns": 7369.72, "deser_ci_low_ns": 6806.365591397849, "deser_ci_high_ns": 6892.929032258065, "total_mean_ns": 9257.623655913978, "total_median_ns": 9246.0, "total_std_ns": 296.6707996203175, "total_mad_ns": 214.0, "total_cv": 0.032046107148760314, "total_min_ns": 8593.0, "total_max_ns": 10045.0, "total_p5_ns": 8797.0, "total_p25_ns": 9032.0, "total_p50_ns": 9246.0, "total_p75_ns": 9454.0, "total_p95_ns": 9746.0, "total_p99_ns": 9896.88, "total_ci_low_ns": 9199.319892473119, "total_ci_high_ns": 9317.708333333332, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 43.02961853814885}, {"serializer": "libbson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.27.5", "avg_time_ser_ns": 3319.3645833333335, "avg_time_deser_ns": 7782.916666666667, "avg_time_total_ns": 11102.28125, "median_size_bytes": 469.0, "avg_ops_per_sec": 90071.57875774405, "min_ops_per_sec": 84160.9156707625, "max_ops_per_sec": 98347.7576711251, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 3319.3645833333335, "ser_median_ns": 3289.0, "ser_std_ns": 253.19125784324706, "ser_mad_ns": 160.5, "ser_cv": 0.07627702576406666, "ser_min_ns": 2817.0, "ser_max_ns": 3951.0, "ser_p5_ns": 2966.0, "ser_p25_ns": 3140.75, "ser_p50_ns": 3289.0, "ser_p75_ns": 3467.25, "ser_p95_ns": 3826.0, "ser_p99_ns": 3930.1, "ser_ci_low_ns": 3270.55625, "ser_ci_high_ns": 3369.839322916667, "deser_mean_ns": 7782.916666666667, "deser_median_ns": 7785.5, "deser_std_ns": 176.69162352687067, "deser_mad_ns": 134.0, "deser_cv": 0.022702494590957203, "deser_min_ns": 7351.0, "deser_max_ns": 8165.0, "deser_p5_ns": 7528.25, "deser_p25_ns": 7650.0, "deser_p50_ns": 7785.5, "deser_p75_ns": 7917.25, "deser_p95_ns": 8061.0, "deser_p99_ns": 8142.2, "deser_ci_low_ns": 7748.2578125, "deser_ci_high_ns": 7817.53203125, "total_mean_ns": 11102.28125, "total_median_ns": 11106.0, "total_std_ns": 380.87248047289916, "total_mad_ns": 284.0, "total_cv": 0.03430578562157207, "total_min_ns": 10168.0, "total_max_ns": 11882.0, "total_p5_ns": 10550.25, "total_p25_ns": 10776.25, "total_p50_ns": 11106.0, "total_p75_ns": 11330.0, "total_p95_ns": 11770.0, "total_p99_ns": 11831.65, "total_ci_low_ns": 11023.206250000001, "total_ci_high_ns": 11177.048958333335, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 36.42098119625051}, {"serializer": "custom-binary", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "v2-1.0", "avg_time_ser_ns": 366.7236842105263, "avg_time_deser_ns": 295.7631578947368, "avg_time_total_ns": 662.4868421052631, "median_size_bytes": 304.0, "avg_ops_per_sec": 1509463.9416870247, "min_ops_per_sec": 1358695.652173913, "max_ops_per_sec": 1745200.6980802792, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 366.7236842105263, "ser_median_ns": 365.5, "ser_std_ns": 21.481526130893972, "ser_mad_ns": 13.5, "ser_cv": 0.05857687151332718, "ser_min_ns": 304.0, "ser_max_ns": 436.0, "ser_p5_ns": 334.75, "ser_p25_ns": 355.0, "ser_p50_ns": 365.5, "ser_p75_ns": 380.0, "ser_p95_ns": 398.5, "ser_p99_ns": 414.25, "ser_ci_low_ns": 362.0391447368421, "ser_ci_high_ns": 371.2631578947368, "deser_mean_ns": 295.7631578947368, "deser_median_ns": 296.5, "deser_std_ns": 15.859271459561757, "deser_mad_ns": 8.5, "deser_cv": 0.053621524643059595, "deser_min_ns": 256.0, "deser_max_ns": 336.0, "deser_p5_ns": 268.0, "deser_p25_ns": 288.0, "deser_p50_ns": 296.5, "deser_p75_ns": 305.0, "deser_p95_ns": 317.25, "deser_p99_ns": 334.5, "deser_ci_low_ns": 292.18355263157895, "deser_ci_high_ns": 299.1582236842105, "total_mean_ns": 662.4868421052631, "total_median_ns": 663.0, "total_std_ns": 29.127074882797103, "total_mad_ns": 19.0, "total_cv": 0.04396626926240005, "total_min_ns": 573.0, "total_max_ns": 736.0, "total_p5_ns": 613.75, "total_p25_ns": 645.75, "total_p50_ns": 663.0, "total_p75_ns": 683.0, "total_p95_ns": 706.75, "total_p99_ns": 721.0, "total_ci_low_ns": 656.25, "total_ci_high_ns": 668.8819078947369, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "avro-c", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.11.3", "avg_time_ser_ns": 700.8571428571429, "avg_time_deser_ns": 620.5584415584416, "avg_time_total_ns": 1321.4155844155844, "median_size_bytes": 307.0, "avg_ops_per_sec": 756764.1942426953, "min_ops_per_sec": 651465.7980456026, "max_ops_per_sec": 924214.4177449169, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 700.8571428571429, "ser_median_ns": 704.0, "ser_std_ns": 62.93537083592691, "ser_mad_ns": 43.0, "ser_cv": 0.08979771623552556, "ser_min_ns": 570.0, "ser_max_ns": 927.0, "ser_p5_ns": 609.6, "ser_p25_ns": 659.0, "ser_p50_ns": 704.0, "ser_p75_ns": 745.0, "ser_p95_ns": 779.0, "ser_p99_ns": 902.6799999999998, "ser_ci_low_ns": 687.8035714285714, "ser_ci_high_ns": 715.8844155844155, "deser_mean_ns": 620.5584415584416, "deser_median_ns": 628.0, "deser_std_ns": 43.838067303517434, "deser_mad_ns": 30.0, "deser_cv": 0.07064293121760547, "deser_min_ns": 512.0, "deser_max_ns": 702.0, "deser_p5_ns": 539.8, "deser_p25_ns": 592.0, "deser_p50_ns": 628.0, "deser_p75_ns": 654.0, "deser_p95_ns": 677.8000000000001, "deser_p99_ns": 697.4399999999999, "deser_ci_low_ns": 610.1555194805195, "deser_ci_high_ns": 629.962012987013, "total_mean_ns": 1321.4155844155844, "total_median_ns": 1336.0, "total_std_ns": 95.53042373607184, "total_mad_ns": 72.0, "total_cv": 0.07229400414429166, "total_min_ns": 1082.0, "total_max_ns": 1535.0, "total_p5_ns": 1178.8, "total_p25_ns": 1253.0, "total_p50_ns": 1336.0, "total_p75_ns": 1393.0, "total_p95_ns": 1464.0, "total_p99_ns": 1491.6799999999996, "total_ci_low_ns": 1300.0746753246754, "total_ci_high_ns": 1342.2347402597404, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.258759061667968}, {"serializer": "json-c", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.15", "avg_time_ser_ns": 12991.074468085106, "avg_time_deser_ns": 8922.787234042553, "avg_time_total_ns": 21913.86170212766, "median_size_bytes": 688.0, "avg_ops_per_sec": 45633.21670971886, "min_ops_per_sec": 42324.459305032375, "max_ops_per_sec": 48141.729250914694, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 12991.074468085106, "ser_median_ns": 12945.5, "ser_std_ns": 405.7044381924714, "ser_mad_ns": 298.5, "ser_cv": 0.031229475220787686, "ser_min_ns": 12262.0, "ser_max_ns": 14147.0, "ser_p5_ns": 12488.95, "ser_p25_ns": 12657.0, "ser_p50_ns": 12945.5, "ser_p75_ns": 13267.0, "ser_p95_ns": 13722.8, "ser_p99_ns": 14038.189999999999, "ser_ci_low_ns": 12911.52260638298, "ser_ci_high_ns": 13070.294414893617, "deser_mean_ns": 8922.787234042553, "deser_median_ns": 8940.0, "deser_std_ns": 258.51302965604003, "deser_mad_ns": 183.5, "deser_cv": 0.028972228394032688, "deser_min_ns": 8281.0, "deser_max_ns": 9597.0, "deser_p5_ns": 8502.65, "deser_p25_ns": 8755.75, "deser_p50_ns": 8940.0, "deser_p75_ns": 9116.25, "deser_p95_ns": 9269.4, "deser_p99_ns": 9562.59, "deser_ci_low_ns": 8869.78670212766, "deser_ci_high_ns": 8971.947872340426, "total_mean_ns": 21913.86170212766, "total_median_ns": 21887.0, "total_std_ns": 566.4478945385703, "total_mad_ns": 436.5, "total_cv": 0.02584883952624255, "total_min_ns": 20772.0, "total_max_ns": 23627.0, "total_p5_ns": 21051.8, "total_p25_ns": 21457.25, "total_p50_ns": 21887.0, "total_p75_ns": 22363.5, "total_p95_ns": 22745.149999999998, "total_p99_ns": 23005.759999999995, "total_ci_low_ns": 21798.088563829788, "total_ci_high_ns": 22029.405851063828, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 50.145462341087736}, {"serializer": "protobuf-c", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.5.0", "avg_time_ser_ns": 393.8181818181818, "avg_time_deser_ns": 385.57142857142856, "avg_time_total_ns": 779.3896103896104, "median_size_bytes": 326.0, "avg_ops_per_sec": 1283055.3380100979, "min_ops_per_sec": 1194743.1302270012, "max_ops_per_sec": 1428571.4285714286, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 393.8181818181818, "ser_median_ns": 396.0, "ser_std_ns": 23.370430751118448, "ser_mad_ns": 15.0, "ser_cv": 0.05934319904485294, "ser_min_ns": 338.0, "ser_max_ns": 440.0, "ser_p5_ns": 354.8, "ser_p25_ns": 381.0, "ser_p50_ns": 396.0, "ser_p75_ns": 412.0, "ser_p95_ns": 427.4, "ser_p99_ns": 436.96, "ser_ci_low_ns": 388.6220779220779, "ser_ci_high_ns": 399.1951298701299, "deser_mean_ns": 385.57142857142856, "deser_median_ns": 387.0, "deser_std_ns": 13.577679605096248, "deser_mad_ns": 8.0, "deser_cv": 0.035214433951713135, "deser_min_ns": 352.0, "deser_max_ns": 417.0, "deser_p5_ns": 363.6, "deser_p25_ns": 376.0, "deser_p50_ns": 387.0, "deser_p75_ns": 393.0, "deser_p95_ns": 411.0, "deser_p99_ns": 416.24, "deser_ci_low_ns": 382.5844155844156, "deser_ci_high_ns": 388.5198051948052, "total_mean_ns": 779.3896103896104, "total_median_ns": 786.0, "total_std_ns": 32.45083562469453, "total_mad_ns": 19.0, "total_cv": 0.041636217871152556, "total_min_ns": 700.0, "total_max_ns": 837.0, "total_p5_ns": 723.8, "total_p25_ns": 755.0, "total_p50_ns": 786.0, "total_p75_ns": 802.0, "total_p95_ns": 828.4, "total_p99_ns": 835.48, "total_ci_low_ns": 772.141883116883, "total_ci_high_ns": 786.6376623376623, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.9933356117566644, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.7711804480124353}, {"serializer": "flatcc", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.6.1", "avg_time_ser_ns": 649.4177215189874, "avg_time_deser_ns": 287.43037974683546, "avg_time_total_ns": 936.8481012658228, "median_size_bytes": 332.0, "avg_ops_per_sec": 1067408.8986772236, "min_ops_per_sec": 915750.9157509158, "max_ops_per_sec": 1317523.0566534915, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 649.4177215189874, "ser_median_ns": 655.0, "ser_std_ns": 55.36397226998075, "ser_mad_ns": 32.0, "ser_cv": 0.08525171154936222, "ser_min_ns": 491.0, "ser_max_ns": 772.0, "ser_p5_ns": 555.4, "ser_p25_ns": 622.5, "ser_p50_ns": 655.0, "ser_p75_ns": 686.5, "ser_p95_ns": 728.1, "ser_p99_ns": 747.04, "ser_ci_low_ns": 637.6825949367088, "ser_ci_high_ns": 661.4341772151898, "deser_mean_ns": 287.43037974683546, "deser_median_ns": 285.0, "deser_std_ns": 14.853717090089104, "deser_mad_ns": 8.0, "deser_cv": 0.051677617039549, "deser_min_ns": 259.0, "deser_max_ns": 328.0, "deser_p5_ns": 268.0, "deser_p25_ns": 278.0, "deser_p50_ns": 285.0, "deser_p75_ns": 293.0, "deser_p95_ns": 320.0, "deser_p99_ns": 325.65999999999997, "deser_ci_low_ns": 284.253164556962, "deser_ci_high_ns": 290.72183544303795, "total_mean_ns": 936.8481012658228, "total_median_ns": 945.0, "total_std_ns": 62.58268143487748, "total_mad_ns": 38.0, "total_cv": 0.0668013110666701, "total_min_ns": 759.0, "total_max_ns": 1092.0, "total_p5_ns": 840.7, "total_p25_ns": 897.0, "total_p50_ns": 945.0, "total_p75_ns": 975.0, "total_p95_ns": 1022.8, "total_p99_ns": 1060.8, "total_ci_low_ns": 922.6800632911393, "total_ci_high_ns": 950.6221518987342, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.558341447351127}, {"serializer": "parson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.5.3", "avg_time_ser_ns": 29974.07608695652, "avg_time_deser_ns": 7047.880434782609, "avg_time_total_ns": 37021.95652173913, "median_size_bytes": 688.0, "avg_ops_per_sec": 27010.99817382165, "min_ops_per_sec": 25368.477130317868, "max_ops_per_sec": 28366.380166226987, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 29974.07608695652, "ser_median_ns": 29774.0, "ser_std_ns": 904.8022822536054, "ser_mad_ns": 503.5, "ser_cv": 0.0301861608554246, "ser_min_ns": 28629.0, "ser_max_ns": 32403.0, "ser_p5_ns": 28826.7, "ser_p25_ns": 29377.0, "ser_p50_ns": 29774.0, "ser_p75_ns": 30402.75, "ser_p95_ns": 31762.9, "ser_p99_ns": 32241.93, "ser_ci_low_ns": 29797.40625, "ser_ci_high_ns": 30171.85489130435, "deser_mean_ns": 7047.880434782609, "deser_median_ns": 7061.0, "deser_std_ns": 264.9499991141312, "deser_mad_ns": 200.5, "deser_cv": 0.03759286235994489, "deser_min_ns": 6473.0, "deser_max_ns": 7651.0, "deser_p5_ns": 6603.05, "deser_p25_ns": 6854.5, "deser_p50_ns": 7061.0, "deser_p75_ns": 7252.75, "deser_p95_ns": 7434.55, "deser_p99_ns": 7590.9400000000005, "deser_ci_low_ns": 6990.303532608696, "deser_ci_high_ns": 7099.677173913044, "total_mean_ns": 37021.95652173913, "total_median_ns": 36786.0, "total_std_ns": 1043.6023822101988, "total_mad_ns": 716.0, "total_cv": 0.028188742040075602, "total_min_ns": 35253.0, "total_max_ns": 39419.0, "total_p5_ns": 35681.35, "total_p25_ns": 36297.25, "total_p50_ns": 36786.0, "total_p75_ns": 37666.5, "total_p95_ns": 39154.4, "total_p99_ns": 39411.72, "total_ci_low_ns": 36810.649999999994, "total_ci_high_ns": 37226.820108695654, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 46.82813556038129}, {"serializer": "cJSON", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.7.18", "avg_time_ser_ns": 23787.147368421054, "avg_time_deser_ns": 6145.5368421052635, "avg_time_total_ns": 29932.684210526317, "median_size_bytes": 666.0, "avg_ops_per_sec": 33408.296862609255, "min_ops_per_sec": 31537.782263151254, "max_ops_per_sec": 35598.59029582429, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 23787.147368421054, "ser_median_ns": 23685.0, "ser_std_ns": 675.7150659796904, "ser_mad_ns": 424.0, "ser_cv": 0.028406729714751125, "ser_min_ns": 22248.0, "ser_max_ns": 25332.0, "ser_p5_ns": 22845.7, "ser_p25_ns": 23316.0, "ser_p50_ns": 23685.0, "ser_p75_ns": 24294.5, "ser_p95_ns": 24994.1, "ser_p99_ns": 25278.420000000002, "ser_ci_low_ns": 23656.213157894737, "ser_ci_high_ns": 23916.468947368423, "deser_mean_ns": 6145.5368421052635, "deser_median_ns": 6159.0, "deser_std_ns": 199.83753031359376, "deser_mad_ns": 138.0, "deser_cv": 0.032517505866116625, "deser_min_ns": 5675.0, "deser_max_ns": 6674.0, "deser_p5_ns": 5815.1, "deser_p25_ns": 5999.0, "deser_p50_ns": 6159.0, "deser_p75_ns": 6277.5, "deser_p95_ns": 6459.6, "deser_p99_ns": 6595.04, "deser_ci_low_ns": 6106.217894736843, "deser_ci_high_ns": 6184.511052631578, "total_mean_ns": 29932.684210526317, "total_median_ns": 29956.0, "total_std_ns": 781.8502096181564, "total_mad_ns": 542.0, "total_cv": 0.026120283905016646, "total_min_ns": 28091.0, "total_max_ns": 31708.0, "total_p5_ns": 28766.2, "total_p25_ns": 29388.0, "total_p50_ns": 29956.0, "total_p75_ns": 30417.0, "total_p95_ns": 31241.6, "total_p99_ns": 31596.14, "total_ci_low_ns": 29774.96368421053, "total_ci_high_ns": 30091.29552631579, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 49.94668826043436}, {"serializer": "nanopb", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.4.9", "avg_time_ser_ns": 477.36842105263156, "avg_time_deser_ns": 382.11578947368423, "avg_time_total_ns": 859.4842105263158, "median_size_bytes": 326.0, "avg_ops_per_sec": 1163488.5059582859, "min_ops_per_sec": 747943.1563201196, "max_ops_per_sec": 1466275.659824047, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 477.36842105263156, "ser_median_ns": 392.0, "ser_std_ns": 173.78704580616358, "ser_mad_ns": 20.0, "ser_cv": 0.36405224590045293, "ser_min_ns": 334.0, "ser_max_ns": 963.0, "ser_p5_ns": 352.7, "ser_p25_ns": 377.0, "ser_p50_ns": 392.0, "ser_p75_ns": 427.0, "ser_p95_ns": 847.8, "ser_p99_ns": 944.2, "ser_ci_low_ns": 444.61447368421057, "ser_ci_high_ns": 513.2752631578948, "deser_mean_ns": 382.11578947368423, "deser_median_ns": 381.0, "deser_std_ns": 15.956632155390475, "deser_mad_ns": 11.0, "deser_cv": 0.04175863074742004, "deser_min_ns": 345.0, "deser_max_ns": 418.0, "deser_p5_ns": 359.8, "deser_p25_ns": 371.0, "deser_p50_ns": 381.0, "deser_p75_ns": 392.0, "deser_p95_ns": 414.3, "deser_p99_ns": 417.06, "deser_ci_low_ns": 379.0736842105263, "deser_ci_high_ns": 385.38947368421054, "total_mean_ns": 859.4842105263158, "total_median_ns": 779.0, "total_std_ns": 175.07347169894464, "total_mad_ns": 28.0, "total_cv": 0.20369597201993536, "total_min_ns": 682.0, "total_max_ns": 1337.0, "total_p5_ns": 717.7, "total_p25_ns": 752.5, "total_p50_ns": 779.0, "total_p75_ns": 825.0, "total_p95_ns": 1237.1, "total_p99_ns": 1332.3, "total_ci_low_ns": 825.8078947368422, "total_ci_high_ns": 894.437894736842, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.9886426592797783, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.4857358999724928}, {"serializer": "cbor-encode", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.11.0", "avg_time_ser_ns": 3117.1555555555556, "avg_time_deser_ns": 7147.777777777777, "avg_time_total_ns": 10264.933333333332, "median_size_bytes": 351.0, "avg_ops_per_sec": 97419.04477379298, "min_ops_per_sec": 89645.89870013446, "max_ops_per_sec": 103993.34442595673, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 3117.1555555555556, "ser_median_ns": 3086.5, "ser_std_ns": 194.32232641110159, "ser_mad_ns": 108.0, "ser_cv": 0.062339630778056716, "ser_min_ns": 2719.0, "ser_max_ns": 3578.0, "ser_p5_ns": 2835.45, "ser_p25_ns": 2989.5, "ser_p50_ns": 3086.5, "ser_p75_ns": 3209.5, "ser_p95_ns": 3527.55, "ser_p99_ns": 3558.42, "ser_ci_low_ns": 3077.7655555555557, "ser_ci_high_ns": 3155.9202777777778, "deser_mean_ns": 7147.777777777777, "deser_median_ns": 7148.5, "deser_std_ns": 219.61661066595008, "deser_mad_ns": 169.0, "deser_cv": 0.030725159272400913, "deser_min_ns": 6637.0, "deser_max_ns": 7627.0, "deser_p5_ns": 6735.45, "deser_p25_ns": 6979.75, "deser_p50_ns": 7148.5, "deser_p75_ns": 7310.5, "deser_p95_ns": 7462.5, "deser_p99_ns": 7545.12, "deser_ci_low_ns": 7102.741388888889, "deser_ci_high_ns": 7192.501111111111, "total_mean_ns": 10264.933333333332, "total_median_ns": 10239.0, "total_std_ns": 294.4176426687211, "total_mad_ns": 227.0, "total_cv": 0.028681885513338726, "total_min_ns": 9616.0, "total_max_ns": 11155.0, "total_p5_ns": 9842.5, "total_p25_ns": 10055.25, "total_p50_ns": 10239.0, "total_p75_ns": 10474.75, "total_p95_ns": 10687.25, "total_p99_ns": 10905.8, "total_ci_low_ns": 10205.409722222223, "total_ci_high_ns": 10324.644722222221, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 43.890208383183406}, {"serializer": "zcbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.9", "avg_time_ser_ns": 991.945054945055, "avg_time_deser_ns": 8399.846153846154, "avg_time_total_ns": 9391.791208791208, "median_size_bytes": 353.0, "avg_ops_per_sec": 106475.96158908938, "min_ops_per_sec": 98638.78477017164, "max_ops_per_sec": 116550.11655011655, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 991.945054945055, "ser_median_ns": 950.0, "ser_std_ns": 158.37335372378516, "ser_mad_ns": 80.0, "ser_cv": 0.15965940142980767, "ser_min_ns": 711.0, "ser_max_ns": 1421.0, "ser_p5_ns": 823.0, "ser_p25_ns": 877.0, "ser_p50_ns": 950.0, "ser_p75_ns": 1054.0, "ser_p95_ns": 1320.5, "ser_p99_ns": 1415.6, "ser_ci_low_ns": 959.6131868131869, "ser_ci_high_ns": 1025.58489010989, "deser_mean_ns": 8399.846153846154, "deser_median_ns": 8435.0, "deser_std_ns": 266.05634002664937, "deser_mad_ns": 159.0, "deser_cv": 0.031673953921742534, "deser_min_ns": 7671.0, "deser_max_ns": 9025.0, "deser_p5_ns": 7944.0, "deser_p25_ns": 8204.0, "deser_p50_ns": 8435.0, "deser_p75_ns": 8556.5, "deser_p95_ns": 8796.0, "deser_p99_ns": 8993.5, "deser_ci_low_ns": 8346.091483516484, "deser_ci_high_ns": 8451.871428571429, "total_mean_ns": 9391.791208791208, "total_median_ns": 9388.0, "total_std_ns": 304.39282063673784, "total_mad_ns": 189.0, "total_cv": 0.03241051827811187, "total_min_ns": 8580.0, "total_max_ns": 10138.0, "total_p5_ns": 8916.5, "total_p25_ns": 9198.5, "total_p50_ns": 9388.0, "total_p75_ns": 9576.0, "total_p95_ns": 9908.0, "total_p99_ns": 10123.6, "total_ci_low_ns": 9325.303846153845, "total_ci_high_ns": 9451.931868131867, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 38.506474348205195}, {"serializer": "msgpack-c", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "6.0.1", "avg_time_ser_ns": 818.2025316455696, "avg_time_deser_ns": 1033.9746835443038, "avg_time_total_ns": 1852.1772151898733, "median_size_bytes": 352.0, "avg_ops_per_sec": 539905.1407170488, "min_ops_per_sec": 451467.2686230248, "max_ops_per_sec": 653594.7712418301, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 818.2025316455696, "ser_median_ns": 822.0, "ser_std_ns": 71.73730205638566, "ser_mad_ns": 43.0, "ser_cv": 0.08767670507216292, "ser_min_ns": 662.0, "ser_max_ns": 1015.0, "ser_p5_ns": 706.7, "ser_p25_ns": 773.5, "ser_p50_ns": 822.0, "ser_p75_ns": 856.5, "ser_p95_ns": 915.4999999999995, "ser_p99_ns": 1014.22, "ser_ci_low_ns": 802.1139240506329, "ser_ci_high_ns": 834.9142405063292, "deser_mean_ns": 1033.9746835443038, "deser_median_ns": 1039.0, "deser_std_ns": 66.37654333201047, "deser_mad_ns": 46.0, "deser_cv": 0.06419552082695297, "deser_min_ns": 857.0, "deser_max_ns": 1201.0, "deser_p5_ns": 904.8, "deser_p25_ns": 996.0, "deser_p50_ns": 1039.0, "deser_p75_ns": 1090.0, "deser_p95_ns": 1116.1, "deser_p99_ns": 1154.98, "deser_ci_low_ns": 1019.5300632911393, "deser_ci_high_ns": 1048.8996835443038, "total_mean_ns": 1852.1772151898733, "total_median_ns": 1865.0, "total_std_ns": 114.54209387412335, "total_mad_ns": 71.0, "total_cv": 0.061841865311133976, "total_min_ns": 1530.0, "total_max_ns": 2215.0, "total_p5_ns": 1667.8, "total_p25_ns": 1793.0, "total_p50_ns": 1865.0, "total_p75_ns": 1932.0, "total_p95_ns": 1988.5, "total_p99_ns": 2044.1799999999998, "total_ci_low_ns": 1826.9946202531646, "total_ci_high_ns": 1877.4962025316456, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.045304337211169}, {"serializer": "mpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.1", "avg_time_ser_ns": 654.075, "avg_time_deser_ns": 1095.275, "avg_time_total_ns": 1749.35, "median_size_bytes": 352.0, "avg_ops_per_sec": 571640.8951896419, "min_ops_per_sec": 492610.83743842365, "max_ops_per_sec": 693962.5260235948, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 654.075, "ser_median_ns": 649.0, "ser_std_ns": 69.99742762000416, "ser_mad_ns": 46.5, "ser_cv": 0.10701743319956297, "ser_min_ns": 516.0, "ser_max_ns": 911.0, "ser_p5_ns": 559.65, "ser_p25_ns": 599.0, "ser_p50_ns": 649.0, "ser_p75_ns": 686.0, "ser_p95_ns": 769.25, "ser_p99_ns": 832.7899999999994, "ser_ci_low_ns": 639.7725, "ser_ci_high_ns": 669.0765625, "deser_mean_ns": 1095.275, "deser_median_ns": 1099.0, "deser_std_ns": 67.05126982250319, "deser_mad_ns": 40.5, "deser_cv": 0.061218661817811215, "deser_min_ns": 925.0, "deser_max_ns": 1244.0, "deser_p5_ns": 960.75, "deser_p25_ns": 1058.5, "deser_p50_ns": 1099.0, "deser_p75_ns": 1137.25, "deser_p95_ns": 1201.35, "deser_p99_ns": 1220.2999999999997, "deser_ci_low_ns": 1080.42375, "deser_ci_high_ns": 1110.4146875, "total_mean_ns": 1749.35, "total_median_ns": 1759.5, "total_std_ns": 123.15412798808786, "total_mad_ns": 76.0, "total_cv": 0.07039993596941028, "total_min_ns": 1441.0, "total_max_ns": 2030.0, "total_p5_ns": 1551.95, "total_p25_ns": 1662.0, "total_p50_ns": 1759.5, "total_p75_ns": 1828.25, "total_p95_ns": 1958.6, "total_p99_ns": 2025.26, "total_ci_low_ns": 1723.3759375, "total_ci_high_ns": 1776.4756249999998, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.948497993395831}, {"serializer": "yyjson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.10.0", "avg_time_ser_ns": 1821.1758241758241, "avg_time_deser_ns": 1418.0549450549452, "avg_time_total_ns": 3239.230769230769, "median_size_bytes": 657.0, "avg_ops_per_sec": 308715.26953217766, "min_ops_per_sec": 266311.5845539281, "max_ops_per_sec": 368867.57654002216, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 1821.1758241758241, "ser_median_ns": 1778.0, "ser_std_ns": 190.06750808925136, "ser_mad_ns": 105.0, "ser_cv": 0.1043652708135782, "ser_min_ns": 1478.0, "ser_max_ns": 2317.0, "ser_p5_ns": 1557.0, "ser_p25_ns": 1701.5, "ser_p50_ns": 1778.0, "ser_p75_ns": 1917.0, "ser_p95_ns": 2210.5, "ser_p99_ns": 2243.1999999999994, "ser_ci_low_ns": 1781.63489010989, "ser_ci_high_ns": 1859.2008241758242, "deser_mean_ns": 1418.0549450549452, "deser_median_ns": 1415.0, "deser_std_ns": 78.97768498300469, "deser_mad_ns": 56.0, "deser_cv": 0.05569437577748058, "deser_min_ns": 1225.0, "deser_max_ns": 1644.0, "deser_p5_ns": 1292.5, "deser_p25_ns": 1364.5, "deser_p50_ns": 1415.0, "deser_p75_ns": 1474.0, "deser_p95_ns": 1526.0, "deser_p99_ns": 1559.3999999999994, "deser_ci_low_ns": 1401.460164835165, "deser_ci_high_ns": 1434.2228021978021, "total_mean_ns": 3239.230769230769, "total_median_ns": 3218.0, "total_std_ns": 237.6972433310481, "total_mad_ns": 129.0, "total_cv": 0.07338076854200012, "total_min_ns": 2711.0, "total_max_ns": 3755.0, "total_p5_ns": 2892.0, "total_p25_ns": 3095.0, "total_p50_ns": 3218.0, "total_p75_ns": 3347.0, "total_p95_ns": 3689.5, "total_p99_ns": 3752.3, "total_ci_low_ns": 3191.6019230769234, "total_ci_high_ns": 3289.3752747252747, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.520645978295361}, {"serializer": "ubj", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.0-min", "avg_time_ser_ns": 514.2857142857143, "avg_time_deser_ns": 337.6373626373626, "avg_time_total_ns": 851.9230769230769, "median_size_bytes": 341.0, "avg_ops_per_sec": 1173814.8984198645, "min_ops_per_sec": 723065.7989877079, "max_ops_per_sec": 1515151.5151515151, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 514.2857142857143, "ser_median_ns": 428.0, "ser_std_ns": 184.56129880306167, "ser_mad_ns": 30.0, "ser_cv": 0.3588691921170643, "ser_min_ns": 346.0, "ser_max_ns": 1039.0, "ser_p5_ns": 371.0, "ser_p25_ns": 404.0, "ser_p50_ns": 428.0, "ser_p75_ns": 479.5, "ser_p95_ns": 915.0, "ser_p99_ns": 988.5999999999997, "ser_ci_low_ns": 479.12884615384615, "ser_ci_high_ns": 553.9340659340659, "deser_mean_ns": 337.6373626373626, "deser_median_ns": 336.0, "deser_std_ns": 19.10469196792388, "deser_mad_ns": 13.0, "deser_cv": 0.056583465226397824, "deser_min_ns": 300.0, "deser_max_ns": 390.0, "deser_p5_ns": 308.0, "deser_p25_ns": 323.5, "deser_p50_ns": 336.0, "deser_p75_ns": 349.5, "deser_p95_ns": 367.5, "deser_p99_ns": 389.1, "deser_ci_low_ns": 333.8456043956044, "deser_ci_high_ns": 341.4730769230769, "total_mean_ns": 851.9230769230769, "total_median_ns": 767.0, "total_std_ns": 190.44178059152827, "total_mad_ns": 35.0, "total_cv": 0.22354339933994288, "total_min_ns": 660.0, "total_max_ns": 1383.0, "total_p5_ns": 693.0, "total_p25_ns": 741.5, "total_p50_ns": 767.0, "total_p75_ns": 846.5, "total_p95_ns": 1267.0, "total_p99_ns": 1330.7999999999997, "total_ci_low_ns": 814.637087912088, "total_ci_high_ns": 892.3563186813186, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.9475130133024869, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.3278461188488482}, {"serializer": "tinycbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.6.0", "avg_time_ser_ns": 861.3837209302326, "avg_time_deser_ns": 7125.6511627906975, "avg_time_total_ns": 7987.03488372093, "median_size_bytes": 351.0, "avg_ops_per_sec": 125202.90878385757, "min_ops_per_sec": 117164.61628588167, "max_ops_per_sec": 135795.76317218904, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 861.3837209302326, "ser_median_ns": 842.5, "ser_std_ns": 124.86266984214873, "ser_mad_ns": 36.5, "ser_cv": 0.14495592011804684, "ser_min_ns": 642.0, "ser_max_ns": 1204.0, "ser_p5_ns": 697.75, "ser_p25_ns": 802.0, "ser_p50_ns": 842.5, "ser_p75_ns": 877.75, "ser_p95_ns": 1159.75, "ser_p99_ns": 1187.0, "ser_ci_low_ns": 836.8718023255814, "ser_ci_high_ns": 889.1767441860464, "deser_mean_ns": 7125.6511627906975, "deser_median_ns": 7119.5, "deser_std_ns": 238.8155462198369, "deser_mad_ns": 150.5, "deser_cv": 0.03351490842926795, "deser_min_ns": 6582.0, "deser_max_ns": 7657.0, "deser_p5_ns": 6710.75, "deser_p25_ns": 6968.5, "deser_p50_ns": 7119.5, "deser_p75_ns": 7263.0, "deser_p95_ns": 7527.0, "deser_p99_ns": 7621.3, "deser_ci_low_ns": 7075.788081395349, "deser_ci_high_ns": 7176.443023255814, "total_mean_ns": 7987.03488372093, "total_median_ns": 8008.5, "total_std_ns": 251.83343924457495, "total_mad_ns": 169.5, "total_cv": 0.03153027912246365, "total_min_ns": 7364.0, "total_max_ns": 8535.0, "total_p5_ns": 7603.0, "total_p25_ns": 7820.0, "total_p50_ns": 8008.5, "total_p75_ns": 8136.75, "total_p95_ns": 8413.25, "total_p99_ns": 8531.6, "total_ci_low_ns": 7935.341569767442, "total_ci_high_ns": 8042.266860465116, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 39.484454411196104}, {"serializer": "jansson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "2.14", "avg_time_ser_ns": 13363.42857142857, "avg_time_deser_ns": 13320.296703296703, "avg_time_total_ns": 26683.725274725275, "median_size_bytes": 688.0, "avg_ops_per_sec": 37476.0266681053, "min_ops_per_sec": 35701.53516601214, "max_ops_per_sec": 39280.38337654176, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 13363.42857142857, "ser_median_ns": 13374.0, "ser_std_ns": 422.6092532734949, "ser_mad_ns": 295.0, "ser_cv": 0.03162431340240384, "ser_min_ns": 12478.0, "ser_max_ns": 14548.0, "ser_p5_ns": 12756.0, "ser_p25_ns": 13069.0, "ser_p50_ns": 13374.0, "ser_p75_ns": 13651.5, "ser_p95_ns": 14073.5, "ser_p99_ns": 14540.8, "ser_ci_low_ns": 13280.55989010989, "ser_ci_high_ns": 13449.101373626374, "deser_mean_ns": 13320.296703296703, "deser_median_ns": 13353.0, "deser_std_ns": 255.56132095211274, "deser_mad_ns": 184.0, "deser_cv": 0.0191858579913511, "deser_min_ns": 12849.0, "deser_max_ns": 13773.0, "deser_p5_ns": 12902.0, "deser_p25_ns": 13127.0, "deser_p50_ns": 13353.0, "deser_p75_ns": 13513.0, "deser_p95_ns": 13752.0, "deser_p99_ns": 13765.8, "deser_ci_low_ns": 13268.261263736264, "deser_ci_high_ns": 13369.661538461538, "total_mean_ns": 26683.725274725275, "total_median_ns": 26674.0, "total_std_ns": 559.3224088312188, "total_mad_ns": 378.0, "total_cv": 0.020961181509427655, "total_min_ns": 25458.0, "total_max_ns": 28010.0, "total_p5_ns": 25751.5, "total_p25_ns": 26284.0, "total_p50_ns": 26674.0, "total_p75_ns": 27036.0, "total_p95_ns": 27583.5, "total_p99_ns": 27974.0, "total_ci_low_ns": 26567.967857142856, "total_ci_high_ns": 26794.447252747254, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 62.634657781016195}, {"serializer": "protobuf-wire", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "wire-v2", "avg_time_ser_ns": 401.94871794871796, "avg_time_deser_ns": 384.6923076923077, "avg_time_total_ns": 786.6410256410256, "median_size_bytes": 326.0, "avg_ops_per_sec": 1271227.875745624, "min_ops_per_sec": 1104972.3756906078, "max_ops_per_sec": 1426533.5235378032, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 401.94871794871796, "ser_median_ns": 398.5, "ser_std_ns": 28.349350039915336, "ser_mad_ns": 18.0, "ser_cv": 0.07052976853513002, "ser_min_ns": 333.0, "ser_max_ns": 469.0, "ser_p5_ns": 360.85, "ser_p25_ns": 381.0, "ser_p50_ns": 398.5, "ser_p75_ns": 419.5, "ser_p95_ns": 456.74999999999994, "ser_p99_ns": 466.69, "ser_ci_low_ns": 395.75608974358977, "ser_ci_high_ns": 408.3474358974359, "deser_mean_ns": 384.6923076923077, "deser_median_ns": 386.0, "deser_std_ns": 17.207901909061665, "deser_mad_ns": 13.5, "deser_cv": 0.04473159864383156, "deser_min_ns": 345.0, "deser_max_ns": 436.0, "deser_p5_ns": 359.7, "deser_p25_ns": 370.5, "deser_p50_ns": 386.0, "deser_p75_ns": 396.75, "deser_p95_ns": 409.59999999999997, "deser_p99_ns": 423.68000000000006, "deser_ci_low_ns": 380.8198717948718, "deser_ci_high_ns": 388.7836538461538, "total_mean_ns": 786.6410256410256, "total_median_ns": 781.0, "total_std_ns": 40.56835640978744, "total_mad_ns": 30.0, "total_cv": 0.05157162554130546, "total_min_ns": 701.0, "total_max_ns": 905.0, "total_p5_ns": 731.1, "total_p25_ns": 755.75, "total_p50_ns": 781.0, "total_p75_ns": 815.0, "total_p95_ns": 859.3, "total_p99_ns": 880.3600000000001, "total_ci_low_ns": 778.2935897435898, "total_ci_high_ns": 795.9493589743589, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.9957827260458839, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.490995820644585}, {"serializer": "qcbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.5.1", "avg_time_ser_ns": 1564.8157894736842, "avg_time_deser_ns": 7089.618421052632, "avg_time_total_ns": 8654.434210526315, "median_size_bytes": 351.0, "avg_ops_per_sec": 115547.7037174433, "min_ops_per_sec": 109673.17394165388, "max_ops_per_sec": 123107.22639418933, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 1564.8157894736842, "ser_median_ns": 1556.0, "ser_std_ns": 75.7296437821308, "ser_mad_ns": 45.0, "ser_cv": 0.048395245172981015, "ser_min_ns": 1354.0, "ser_max_ns": 1867.0, "ser_p5_ns": 1437.25, "ser_p25_ns": 1523.0, "ser_p50_ns": 1556.0, "ser_p75_ns": 1608.75, "ser_p95_ns": 1662.5, "ser_p99_ns": 1751.5, "ser_ci_low_ns": 1548.0384868421054, "ser_ci_high_ns": 1582.6190789473685, "deser_mean_ns": 7089.618421052632, "deser_median_ns": 7110.0, "deser_std_ns": 204.54508660962833, "deser_mad_ns": 134.5, "deser_cv": 0.02885135341025286, "deser_min_ns": 6560.0, "deser_max_ns": 7563.0, "deser_p5_ns": 6760.25, "deser_p25_ns": 6943.5, "deser_p50_ns": 7110.0, "deser_p75_ns": 7203.75, "deser_p95_ns": 7444.5, "deser_p99_ns": 7523.25, "deser_ci_low_ns": 7045.959539473684, "deser_ci_high_ns": 7134.831907894737, "total_mean_ns": 8654.434210526315, "total_median_ns": 8662.0, "total_std_ns": 208.34819161050672, "total_mad_ns": 152.0, "total_cv": 0.024074155114275936, "total_min_ns": 8123.0, "total_max_ns": 9118.0, "total_p5_ns": 8299.75, "total_p25_ns": 8502.0, "total_p50_ns": 8662.0, "total_p75_ns": 8801.25, "total_p95_ns": 8986.25, "total_p99_ns": 9104.5, "total_ci_low_ns": 8606.167105263157, "total_ci_high_ns": 8701.238815789475, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 53.45573687832705}, {"serializer": "jansson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "2.14", "avg_time_ser_ns": 1234634.4831460675, "avg_time_deser_ns": 1180522.8426966292, "avg_time_total_ns": 2415157.3258426967, "median_size_bytes": 68605.0, "avg_ops_per_sec": 414.0517014356736, "min_ops_per_sec": 398.3363879095346, "max_ops_per_sec": 427.7981528531356, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 1234634.4831460675, "ser_median_ns": 1229310.0, "ser_std_ns": 24667.80186807397, "ser_mad_ns": 12846.0, "ser_cv": 0.01997984197332318, "ser_min_ns": 1189798.0, "ser_max_ns": 1303398.0, "ser_p5_ns": 1199614.6, "ser_p25_ns": 1220398.0, "ser_p50_ns": 1229310.0, "ser_p75_ns": 1248220.0, "ser_p95_ns": 1285599.4, "ser_p99_ns": 1298194.56, "ser_ci_low_ns": 1229671.2488764045, "ser_ci_high_ns": 1239797.5778089887, "deser_mean_ns": 1180522.8426966292, "deser_median_ns": 1180113.0, "deser_std_ns": 18676.235886998016, "deser_mad_ns": 10663.0, "deser_cv": 0.015820308774658277, "deser_min_ns": 1139010.0, "deser_max_ns": 1229564.0, "deser_p5_ns": 1146298.0, "deser_p25_ns": 1170832.0, "deser_p50_ns": 1180113.0, "deser_p75_ns": 1192332.0, "deser_p95_ns": 1210942.4, "deser_p99_ns": 1223107.44, "deser_ci_low_ns": 1176760.7238764046, "deser_ci_high_ns": 1184487.9584269663, "total_mean_ns": 2415157.3258426967, "total_median_ns": 2413166.0, "total_std_ns": 33755.53084841844, "total_mad_ns": 18262.0, "total_cv": 0.013976534980652022, "total_min_ns": 2337551.0, "total_max_ns": 2510441.0, "total_p5_ns": 2355642.2, "total_p25_ns": 2394904.0, "total_p50_ns": 2413166.0, "total_p75_ns": 2431388.0, "total_p95_ns": 2472812.1999999997, "total_p99_ns": 2494806.04, "total_ci_low_ns": 2408215.1578651685, "total_ci_high_ns": 2422201.279775281, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 98.98487885156476}, {"serializer": "cJSON", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.7.18", "avg_time_ser_ns": 2388323.4269662923, "avg_time_deser_ns": 527143.0674157303, "avg_time_total_ns": 2915466.4943820224, "median_size_bytes": 66887.0, "avg_ops_per_sec": 342.9982824110504, "min_ops_per_sec": 333.19072770187694, "max_ops_per_sec": 351.80509434884925, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 2388323.4269662923, "ser_median_ns": 2388377.0, "ser_std_ns": 29003.5007216557, "ser_mad_ns": 18275.0, "ser_cv": 0.012143874817866131, "ser_min_ns": 2324242.0, "ser_max_ns": 2458852.0, "ser_p5_ns": 2335236.4, "ser_p25_ns": 2368893.0, "ser_p50_ns": 2388377.0, "ser_p75_ns": 2406205.0, "ser_p95_ns": 2432966.8, "ser_p99_ns": 2456937.12, "ser_ci_low_ns": 2382243.2146067414, "ser_ci_high_ns": 2394059.495224719, "deser_mean_ns": 527143.0674157303, "deser_median_ns": 527564.0, "deser_std_ns": 8022.243855223811, "deser_mad_ns": 4710.0, "deser_cv": 0.01521834270637782, "deser_min_ns": 512869.0, "deser_max_ns": 550471.0, "deser_p5_ns": 515292.6, "deser_p25_ns": 522187.0, "deser_p50_ns": 527564.0, "deser_p75_ns": 531473.0, "deser_p95_ns": 539927.8, "deser_p99_ns": 549011.08, "deser_ci_low_ns": 525457.3834269663, "deser_ci_high_ns": 528778.1005617977, "total_mean_ns": 2915466.4943820224, "total_median_ns": 2919781.0, "total_std_ns": 32766.31023007806, "total_mad_ns": 21264.0, "total_cv": 0.011238788129864404, "total_min_ns": 2842483.0, "total_max_ns": 3001284.0, "total_p5_ns": 2857460.2, "total_p25_ns": 2892833.0, "total_p50_ns": 2919781.0, "total_p75_ns": 2936455.0, "total_p95_ns": 2962596.6, "total_p99_ns": 2985737.92, "total_ci_low_ns": 2908912.1980337077, "total_ci_high_ns": 2922419.779775281, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 123.34735317150599}, {"serializer": "cbor-encode", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.11.0", "avg_time_ser_ns": 133586.2947368421, "avg_time_deser_ns": 635799.1684210526, "avg_time_total_ns": 769385.4631578948, "median_size_bytes": 34922.0, "avg_ops_per_sec": 1299.738619827261, "min_ops_per_sec": 1204.307083854698, "max_ops_per_sec": 1390.5672262772707, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 133586.2947368421, "ser_median_ns": 133023.0, "ser_std_ns": 3290.0612258213155, "ser_mad_ns": 2206.0, "ser_cv": 0.024628733301590267, "ser_min_ns": 126790.0, "ser_max_ns": 141934.0, "ser_p5_ns": 128561.6, "ser_p25_ns": 131138.5, "ser_p50_ns": 133023.0, "ser_p75_ns": 135604.5, "ser_p95_ns": 139487.9, "ser_p99_ns": 141730.96, "ser_ci_low_ns": 132935.99763157894, "ser_ci_high_ns": 134235.49710526314, "deser_mean_ns": 635799.1684210526, "deser_median_ns": 634457.0, "deser_std_ns": 24986.75114027033, "deser_mad_ns": 19820.0, "deser_cv": 0.03929975435847545, "deser_min_ns": 589225.0, "deser_max_ns": 691789.0, "deser_p5_ns": 598403.6, "deser_p25_ns": 615244.5, "deser_p50_ns": 634457.0, "deser_p75_ns": 656603.0, "deser_p95_ns": 675120.9, "deser_p99_ns": 686258.98, "deser_ci_low_ns": 630786.1992105263, "deser_ci_high_ns": 640967.1939473684, "total_mean_ns": 769385.4631578948, "total_median_ns": 769504.0, "total_std_ns": 25514.988536073626, "total_mad_ns": 20384.0, "total_cv": 0.03316281598478472, "total_min_ns": 719131.0, "total_max_ns": 830353.0, "total_p5_ns": 731871.7, "total_p25_ns": 748849.0, "total_p50_ns": 769504.0, "total_p75_ns": 788898.0, "total_p95_ns": 815115.8, "total_p99_ns": 827990.78, "total_ci_low_ns": 764102.23, "total_ci_high_ns": 774538.8002631579, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 40.01322095266339}, {"serializer": "mpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.1", "avg_time_ser_ns": 16207.752688172042, "avg_time_deser_ns": 68056.86021505376, "avg_time_total_ns": 84264.6129032258, "median_size_bytes": 35022.0, "avg_ops_per_sec": 11867.377841614913, "min_ops_per_sec": 10886.723640520386, "max_ops_per_sec": 12545.162585307105, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 16207.752688172042, "ser_median_ns": 16154.0, "ser_std_ns": 809.3802198880054, "ser_mad_ns": 550.0, "ser_cv": 0.04993784366407985, "ser_min_ns": 14905.0, "ser_max_ns": 18411.0, "ser_p5_ns": 15184.6, "ser_p25_ns": 15564.0, "ser_p50_ns": 16154.0, "ser_p75_ns": 16643.0, "ser_p95_ns": 17610.8, "ser_p99_ns": 18295.079999999998, "ser_ci_low_ns": 16047.396505376344, "ser_ci_high_ns": 16371.731720430107, "deser_mean_ns": 68056.86021505376, "deser_median_ns": 67594.0, "deser_std_ns": 1890.4987356193112, "deser_mad_ns": 1308.0, "deser_cv": 0.027778224408906017, "deser_min_ns": 64807.0, "deser_max_ns": 73444.0, "deser_p5_ns": 65434.4, "deser_p25_ns": 66841.0, "deser_p50_ns": 67594.0, "deser_p75_ns": 69413.0, "deser_p95_ns": 71365.59999999999, "deser_p99_ns": 72874.52, "deser_ci_low_ns": 67666.25430107527, "deser_ci_high_ns": 68446.31962365592, "total_mean_ns": 84264.6129032258, "total_median_ns": 83679.0, "total_std_ns": 2488.0980077869594, "total_mad_ns": 1836.0, "total_cv": 0.02952719916537717, "total_min_ns": 79712.0, "total_max_ns": 91855.0, "total_p5_ns": 80630.4, "total_p25_ns": 82661.0, "total_p50_ns": 83679.0, "total_p75_ns": 86045.0, "total_p95_ns": 88413.2, "total_p99_ns": 90424.4, "total_ci_low_ns": 83758.65376344086, "total_ci_high_ns": 84790.19596774194, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.42546184143981}, {"serializer": "yyjson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.10.0", "avg_time_ser_ns": 126242.70652173914, "avg_time_deser_ns": 127136.67391304347, "avg_time_total_ns": 253379.38043478262, "median_size_bytes": 66315.0, "avg_ops_per_sec": 3946.6510585196975, "min_ops_per_sec": 3741.1848332366862, "max_ops_per_sec": 4128.9384912032965, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 126242.70652173914, "ser_median_ns": 126197.5, "ser_std_ns": 2963.041233679422, "ser_mad_ns": 1968.0, "ser_cv": 0.023470989456085393, "ser_min_ns": 119354.0, "ser_max_ns": 133967.0, "ser_p5_ns": 121920.55, "ser_p25_ns": 124233.25, "ser_p50_ns": 126197.5, "ser_p75_ns": 128062.25, "ser_p95_ns": 131096.85, "ser_p99_ns": 133481.97, "ser_ci_low_ns": 125658.52201086956, "ser_ci_high_ns": 126810.28668478261, "deser_mean_ns": 127136.67391304347, "deser_median_ns": 126542.0, "deser_std_ns": 2943.7762475764875, "deser_mad_ns": 2003.5, "deser_cv": 0.023154422378470554, "deser_min_ns": 122321.0, "deser_max_ns": 135317.0, "deser_p5_ns": 122688.4, "deser_p25_ns": 124997.25, "deser_p50_ns": 126542.0, "deser_p75_ns": 128940.5, "deser_p95_ns": 133034.1, "deser_p99_ns": 134242.29, "deser_ci_low_ns": 126535.82880434782, "deser_ci_high_ns": 127732.45434782609, "total_mean_ns": 253379.38043478262, "total_median_ns": 253223.0, "total_std_ns": 5275.676549171787, "total_mad_ns": 3385.0, "total_cv": 0.020821254437196377, "total_min_ns": 242193.0, "total_max_ns": 267295.0, "total_p5_ns": 245416.9, "total_p25_ns": 249874.5, "total_p50_ns": 253223.0, "total_p75_ns": 256659.75, "total_p95_ns": 262735.4, "total_p99_ns": 265235.67, "total_ci_low_ns": 252222.00108695653, "total_ci_high_ns": 254456.3679347826, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 58.92692256289795}, {"serializer": "nanopb", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.4.9", "avg_time_ser_ns": 7761.4625, "avg_time_deser_ns": 28488.6, "avg_time_total_ns": 36250.0625, "median_size_bytes": 32422.0, "avg_ops_per_sec": 27586.159334208045, "min_ops_per_sec": 26090.586516384887, "max_ops_per_sec": 28890.879149452518, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 7761.4625, "ser_median_ns": 7687.5, "ser_std_ns": 360.979537403508, "ser_mad_ns": 163.0, "ser_cv": 0.04650921619520909, "ser_min_ns": 7014.0, "ser_max_ns": 8790.0, "ser_p5_ns": 7243.5, "ser_p25_ns": 7534.0, "ser_p50_ns": 7687.5, "ser_p75_ns": 7857.0, "ser_p95_ns": 8521.8, "ser_p99_ns": 8751.289999999999, "ser_ci_low_ns": 7683.7212500000005, "ser_ci_high_ns": 7844.4275, "deser_mean_ns": 28488.6, "deser_median_ns": 28489.0, "deser_std_ns": 467.50464967565233, "deser_mad_ns": 314.0, "deser_cv": 0.01641023601284908, "deser_min_ns": 27572.0, "deser_max_ns": 29772.0, "deser_p5_ns": 27766.15, "deser_p25_ns": 28204.75, "deser_p50_ns": 28489.0, "deser_p75_ns": 28801.0, "deser_p95_ns": 29227.3, "deser_p99_ns": 29568.179999999997, "deser_ci_low_ns": 28387.6134375, "deser_ci_high_ns": 28589.539999999997, "total_mean_ns": 36250.0625, "total_median_ns": 36165.0, "total_std_ns": 713.6788864792969, "total_mad_ns": 433.5, "total_cv": 0.01968765947587806, "total_min_ns": 34613.0, "total_max_ns": 38328.0, "total_p5_ns": 35242.1, "total_p25_ns": 35816.25, "total_p50_ns": 36165.0, "total_p75_ns": 36792.75, "total_p95_ns": 37356.05, "total_p99_ns": 38123.39, "total_ci_low_ns": 36090.1875, "total_ci_high_ns": 36407.3065625, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.360870163114724}, {"serializer": "libbson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.27.5", "avg_time_ser_ns": 229821.25, "avg_time_deser_ns": 723803.4673913043, "avg_time_total_ns": 953624.7173913043, "median_size_bytes": 46722.0, "avg_ops_per_sec": 1048.6305375300653, "min_ops_per_sec": 1010.7891635315356, "max_ops_per_sec": 1083.2464028095078, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 229821.25, "ser_median_ns": 229970.5, "ser_std_ns": 4595.447940296791, "ser_mad_ns": 2849.0, "ser_cv": 0.019995748610264676, "ser_min_ns": 220862.0, "ser_max_ns": 242628.0, "ser_p5_ns": 222582.3, "ser_p25_ns": 226640.0, "ser_p50_ns": 229970.5, "ser_p75_ns": 232485.75, "ser_p95_ns": 237594.45, "ser_p99_ns": 240750.67, "ser_ci_low_ns": 228903.17934782608, "ser_ci_high_ns": 230782.9043478261, "deser_mean_ns": 723803.4673913043, "deser_median_ns": 725004.5, "deser_std_ns": 11972.656235296965, "deser_mad_ns": 6537.0, "deser_cv": 0.016541308206837146, "deser_min_ns": 701250.0, "deser_max_ns": 751912.0, "deser_p5_ns": 705436.55, "deser_p25_ns": 715910.25, "deser_p50_ns": 725004.5, "deser_p75_ns": 729496.75, "deser_p95_ns": 746677.4, "deser_p99_ns": 751182.18, "deser_ci_low_ns": 721402.0942934783, "deser_ci_high_ns": 726163.6304347826, "total_mean_ns": 953624.7173913043, "total_median_ns": 955470.0, "total_std_ns": 15048.127512535917, "total_mad_ns": 8108.5, "total_cv": 0.015779926042291503, "total_min_ns": 923151.0, "total_max_ns": 989326.0, "total_p5_ns": 930749.6, "total_p25_ns": 942033.25, "total_p50_ns": 955470.0, "total_p75_ns": 961718.25, "total_p95_ns": 982515.4, "total_p99_ns": 987919.14, "total_ci_low_ns": 950519.1951086957, "total_ci_high_ns": 956837.9529891305, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 85.33486809884025}, {"serializer": "tinycbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.6.0", "avg_time_ser_ns": 32677.21052631579, "avg_time_deser_ns": 633484.1157894736, "avg_time_total_ns": 666161.3263157895, "median_size_bytes": 34922.0, "avg_ops_per_sec": 1501.1378783132127, "min_ops_per_sec": 1385.8208355390982, "max_ops_per_sec": 1617.6884526162876, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 32677.21052631579, "ser_median_ns": 32522.0, "ser_std_ns": 971.1665270654016, "ser_mad_ns": 662.0, "ser_cv": 0.02971999480443095, "ser_min_ns": 30643.0, "ser_max_ns": 35097.0, "ser_p5_ns": 31455.0, "ser_p25_ns": 31878.0, "ser_p50_ns": 32522.0, "ser_p75_ns": 33213.0, "ser_p95_ns": 34528.1, "ser_p99_ns": 35042.48, "ser_ci_low_ns": 32486.342631578947, "ser_ci_high_ns": 32875.71605263158, "deser_mean_ns": 633484.1157894736, "deser_median_ns": 632451.0, "deser_std_ns": 24358.023869057997, "deser_mad_ns": 20388.0, "deser_cv": 0.038450883395398226, "deser_min_ns": 585967.0, "deser_max_ns": 687648.0, "deser_p5_ns": 597448.2, "deser_p25_ns": 613610.0, "deser_p50_ns": 632451.0, "deser_p75_ns": 653452.0, "deser_p95_ns": 674665.5, "deser_p99_ns": 687642.36, "deser_ci_low_ns": 628410.9034210526, "deser_ci_high_ns": 638166.8681578947, "total_mean_ns": 666161.3263157895, "total_median_ns": 664751.0, "total_std_ns": 24649.084372292316, "total_mad_ns": 20884.0, "total_cv": 0.03700167421698626, "total_min_ns": 618166.0, "total_max_ns": 721594.0, "total_p5_ns": 628971.9, "total_p25_ns": 646448.0, "total_p50_ns": 664751.0, "total_p75_ns": 686801.5, "total_p95_ns": 707875.8, "total_p99_ns": 719973.4400000001, "total_ci_low_ns": 661281.7268421053, "total_ci_high_ns": 671136.7076315789, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 35.64874066855454}, {"serializer": "avro-c", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.11.3", "avg_time_ser_ns": 18806.52688172043, "avg_time_deser_ns": 34952.279569892475, "avg_time_total_ns": 53758.8064516129, "median_size_bytes": 30522.0, "avg_ops_per_sec": 18601.6034582181, "min_ops_per_sec": 17075.62795621809, "max_ops_per_sec": 19733.207040808273, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 18806.52688172043, "ser_median_ns": 18555.0, "ser_std_ns": 971.8028135937088, "ser_mad_ns": 641.0, "ser_cv": 0.05167369922717, "ser_min_ns": 17186.0, "ser_max_ns": 21428.0, "ser_p5_ns": 17481.6, "ser_p25_ns": 18106.0, "ser_p50_ns": 18555.0, "ser_p75_ns": 19531.0, "ser_p95_ns": 20461.0, "ser_p99_ns": 21202.6, "ser_ci_low_ns": 18605.740860215054, "ser_ci_high_ns": 18995.82768817204, "deser_mean_ns": 34952.279569892475, "deser_median_ns": 34637.0, "deser_std_ns": 1097.6986733675396, "deser_mad_ns": 533.0, "deser_cv": 0.03140563897048608, "deser_min_ns": 33319.0, "deser_max_ns": 38021.0, "deser_p5_ns": 33530.4, "deser_p25_ns": 34257.0, "deser_p50_ns": 34637.0, "deser_p75_ns": 35504.0, "deser_p95_ns": 37162.2, "deser_p99_ns": 37981.44, "deser_ci_low_ns": 34730.54623655914, "deser_ci_high_ns": 35160.31559139785, "total_mean_ns": 53758.8064516129, "total_median_ns": 53396.0, "total_std_ns": 1821.657542257126, "total_mad_ns": 1345.0, "total_cv": 0.03388575123773924, "total_min_ns": 50676.0, "total_max_ns": 58563.0, "total_p5_ns": 51258.8, "total_p25_ns": 52465.0, "total_p50_ns": 53396.0, "total_p75_ns": 55218.0, "total_p95_ns": 56944.6, "total_p99_ns": 58173.84, "total_ci_low_ns": 53386.51989247312, "total_ci_high_ns": 54125.09865591398, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.529493822998113}, {"serializer": "json-c", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.15", "avg_time_ser_ns": 1255444.3736263737, "avg_time_deser_ns": 838894.6703296703, "avg_time_total_ns": 2094339.043956044, "median_size_bytes": 68605.0, "avg_ops_per_sec": 477.4776094089702, "min_ops_per_sec": 457.3803813088763, "max_ops_per_sec": 493.7172017491413, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 1255444.3736263737, "ser_median_ns": 1254921.0, "ser_std_ns": 31824.555235313484, "ser_mad_ns": 19445.0, "ser_cv": 0.0253492356203626, "ser_min_ns": 1191536.0, "ser_max_ns": 1326060.0, "ser_p5_ns": 1206736.5, "ser_p25_ns": 1237264.0, "ser_p50_ns": 1254921.0, "ser_p75_ns": 1273808.0, "ser_p95_ns": 1311363.5, "ser_p99_ns": 1323823.5, "ser_ci_low_ns": 1248657.887087912, "ser_ci_high_ns": 1262058.483241758, "deser_mean_ns": 838894.6703296703, "deser_median_ns": 838593.0, "deser_std_ns": 15101.130605984401, "deser_mad_ns": 10347.0, "deser_cv": 0.01800122368169288, "deser_min_ns": 805954.0, "deser_max_ns": 879331.0, "deser_p5_ns": 816142.5, "deser_p25_ns": 827724.0, "deser_p50_ns": 838593.0, "deser_p75_ns": 848475.5, "deser_p95_ns": 864741.5, "deser_p99_ns": 878796.4, "deser_ci_low_ns": 835907.5717032967, "deser_ci_high_ns": 841800.3804945055, "total_mean_ns": 2094339.043956044, "total_median_ns": 2094728.0, "total_std_ns": 39931.587218060864, "total_mad_ns": 33936.0, "total_cv": 0.019066438804785493, "total_min_ns": 2025451.0, "total_max_ns": 2186364.0, "total_p5_ns": 2034350.5, "total_p25_ns": 2060492.5, "total_p50_ns": 2094728.0, "total_p75_ns": 2117748.5, "total_p95_ns": 2161399.5, "total_p99_ns": 2174350.8, "total_ci_low_ns": 2086562.5098901098, "total_ci_high_ns": 2102273.307142857, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 72.03577517441043}, {"serializer": "ubj", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.0-min", "avg_time_ser_ns": 9040.525, "avg_time_deser_ns": 24232.45, "avg_time_total_ns": 33272.975, "median_size_bytes": 33922.0, "avg_ops_per_sec": 30054.42104290344, "min_ops_per_sec": 28206.357713028516, "max_ops_per_sec": 31353.859660124162, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 9040.525, "ser_median_ns": 8999.0, "ser_std_ns": 340.3341238001044, "ser_mad_ns": 221.5, "ser_cv": 0.03764539380180956, "ser_min_ns": 8402.0, "ser_max_ns": 9872.0, "ser_p5_ns": 8549.6, "ser_p25_ns": 8788.0, "ser_p50_ns": 8999.0, "ser_p75_ns": 9267.75, "ser_p95_ns": 9596.55, "ser_p99_ns": 9778.779999999999, "ser_ci_low_ns": 8968.2090625, "ser_ci_high_ns": 9112.725625, "deser_mean_ns": 24232.45, "deser_median_ns": 24251.5, "deser_std_ns": 484.9381769288102, "deser_mad_ns": 314.5, "deser_cv": 0.020011933458185624, "deser_min_ns": 23344.0, "deser_max_ns": 25581.0, "deser_p5_ns": 23462.3, "deser_p25_ns": 23912.75, "deser_p50_ns": 24251.5, "deser_p75_ns": 24539.5, "deser_p95_ns": 24964.649999999998, "deser_p99_ns": 25567.57, "deser_ci_low_ns": 24135.7115625, "deser_ci_high_ns": 24342.91, "total_mean_ns": 33272.975, "total_median_ns": 33396.0, "total_std_ns": 722.1115306226787, "total_mad_ns": 557.0, "total_cv": 0.02170264398126945, "total_min_ns": 31894.0, "total_max_ns": 35453.0, "total_p5_ns": 32032.85, "total_p25_ns": 32731.25, "total_p50_ns": 33396.0, "total_p75_ns": 33785.75, "total_p95_ns": 34302.15, "total_p99_ns": 34626.659999999996, "total_ci_low_ns": 33118.1746875, "total_ci_high_ns": 33432.908125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.6454749601051954}, {"serializer": "zcbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.9", "avg_time_ser_ns": 50867.19387755102, "avg_time_deser_ns": 727855.9591836735, "avg_time_total_ns": 778723.1530612245, "median_size_bytes": 35122.0, "avg_ops_per_sec": 1284.1534196959703, "min_ops_per_sec": 1184.4608215894043, "max_ops_per_sec": 1378.5934762199518, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 50867.19387755102, "ser_median_ns": 49507.0, "ser_std_ns": 9998.997552495324, "ser_mad_ns": 8083.0, "ser_cv": 0.19657065370197538, "ser_min_ns": 36498.0, "ser_max_ns": 79105.0, "ser_p5_ns": 37553.55, "ser_p25_ns": 41678.5, "ser_p50_ns": 49507.0, "ser_p75_ns": 58405.25, "ser_p95_ns": 68576.9, "ser_p99_ns": 73234.56000000001, "ser_ci_low_ns": 48848.84617346939, "ser_ci_high_ns": 52915.091326530615, "deser_mean_ns": 727855.9591836735, "deser_median_ns": 726377.0, "deser_std_ns": 24642.41842417524, "deser_mad_ns": 19240.0, "deser_cv": 0.03385617458131817, "deser_min_ns": 677478.0, "deser_max_ns": 789536.0, "deser_p5_ns": 692251.05, "deser_p25_ns": 707265.0, "deser_p50_ns": 726377.0, "deser_p75_ns": 745786.25, "deser_p95_ns": 765227.3, "deser_p99_ns": 777218.9400000001, "deser_ci_low_ns": 723051.4839285715, "deser_ci_high_ns": 732593.5117346938, "total_mean_ns": 778723.1530612245, "total_median_ns": 780805.0, "total_std_ns": 27109.38004301347, "total_mad_ns": 21112.0, "total_cv": 0.03481260308807344, "total_min_ns": 725377.0, "total_max_ns": 844266.0, "total_p5_ns": 737243.1, "total_p25_ns": 756366.75, "total_p50_ns": 780805.0, "total_p75_ns": 798823.0, "total_p95_ns": 822237.0499999999, "total_p99_ns": 833806.49, "total_ci_low_ns": 773304.5900510204, "total_ci_high_ns": 784097.8931122449, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 37.85542677494981}, {"serializer": "flatcc", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.6.1", "avg_time_ser_ns": 18569.188235294117, "avg_time_deser_ns": 23428.4, "avg_time_total_ns": 41997.58823529412, "median_size_bytes": 33160.0, "avg_ops_per_sec": 23810.891101589867, "min_ops_per_sec": 22441.14808913624, "max_ops_per_sec": 24832.381425378695, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 18569.188235294117, "ser_median_ns": 18417.0, "ser_std_ns": 714.4890697640692, "ser_mad_ns": 447.0, "ser_cv": 0.03847713000216417, "ser_min_ns": 17454.0, "ser_max_ns": 20510.0, "ser_p5_ns": 17742.8, "ser_p25_ns": 17987.0, "ser_p50_ns": 18417.0, "ser_p75_ns": 19082.0, "ser_p95_ns": 20038.6, "ser_p99_ns": 20420.12, "ser_ci_low_ns": 18422.94911764706, "ser_ci_high_ns": 18723.89794117647, "deser_mean_ns": 23428.4, "deser_median_ns": 23385.0, "deser_std_ns": 410.63914178010936, "deser_mad_ns": 200.0, "deser_cv": 0.01752740869116582, "deser_min_ns": 22739.0, "deser_max_ns": 24671.0, "deser_p5_ns": 22790.8, "deser_p25_ns": 23255.0, "deser_p50_ns": 23385.0, "deser_p75_ns": 23627.0, "deser_p95_ns": 24050.2, "deser_p99_ns": 24624.8, "deser_ci_low_ns": 23343.499117647058, "deser_ci_high_ns": 23518.188529411767, "total_mean_ns": 41997.58823529412, "total_median_ns": 41752.0, "total_std_ns": 983.4109528782444, "total_mad_ns": 504.0, "total_cv": 0.0234158911070946, "total_min_ns": 40270.0, "total_max_ns": 44561.0, "total_p5_ns": 40650.0, "total_p25_ns": 41463.0, "total_p50_ns": 41752.0, "total_p75_ns": 42466.0, "total_p95_ns": 43950.8, "total_p99_ns": 44359.4, "total_ci_low_ns": 41795.074705882354, "total_ci_high_ns": 42208.739411764705, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.064351404031964}, {"serializer": "qcbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.5.1", "avg_time_ser_ns": 95625.88043478261, "avg_time_deser_ns": 637119.1304347826, "avg_time_total_ns": 732745.0108695652, "median_size_bytes": 34922.0, "avg_ops_per_sec": 1364.7312300540636, "min_ops_per_sec": 1257.6828702335392, "max_ops_per_sec": 1456.0406759523235, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 95625.88043478261, "ser_median_ns": 95838.5, "ser_std_ns": 2290.8563869319833, "ser_mad_ns": 1343.5, "ser_cv": 0.023956447527762742, "ser_min_ns": 90346.0, "ser_max_ns": 100964.0, "ser_p5_ns": 92077.3, "ser_p25_ns": 94081.75, "ser_p50_ns": 95838.5, "ser_p75_ns": 97076.75, "ser_p95_ns": 99702.0, "ser_p99_ns": 100741.96, "ser_ci_low_ns": 95162.89293478262, "ser_ci_high_ns": 96080.43152173913, "deser_mean_ns": 637119.1304347826, "deser_median_ns": 641327.0, "deser_std_ns": 22401.009199311422, "deser_mad_ns": 16161.5, "deser_cv": 0.03515984394319557, "deser_min_ns": 596448.0, "deser_max_ns": 694149.0, "deser_p5_ns": 601846.05, "deser_p25_ns": 616120.5, "deser_p50_ns": 641327.0, "deser_p75_ns": 653260.5, "deser_p95_ns": 665616.25, "deser_p99_ns": 689080.3, "deser_ci_low_ns": 632509.5410326087, "deser_ci_high_ns": 641692.4277173914, "total_mean_ns": 732745.0108695652, "total_median_ns": 736297.5, "total_std_ns": 22935.461882619922, "total_mad_ns": 16097.0, "total_cv": 0.03130074110692598, "total_min_ns": 686794.0, "total_max_ns": 795113.0, "total_p5_ns": 696530.2, "total_p25_ns": 711582.25, "total_p50_ns": 736297.5, "total_p75_ns": 747835.5, "total_p95_ns": 762805.4, "total_p99_ns": 788550.99, "total_ci_low_ns": 728103.5489130436, "total_ci_high_ns": 737321.8581521739, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 42.638815205976044}, {"serializer": "custom-binary", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "v2-1.0", "avg_time_ser_ns": 4926.666666666667, "avg_time_deser_ns": 23427.850574712644, "avg_time_total_ns": 28354.51724137931, "median_size_bytes": 30222.0, "avg_ops_per_sec": 35267.749102800626, "min_ops_per_sec": 33634.92650768558, "max_ops_per_sec": 36497.68239716778, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 4926.666666666667, "ser_median_ns": 4878.0, "ser_std_ns": 275.0030302863346, "ser_mad_ns": 164.0, "ser_cv": 0.05581928896204355, "ser_min_ns": 4422.0, "ser_max_ns": 5707.0, "ser_p5_ns": 4563.1, "ser_p25_ns": 4725.0, "ser_p50_ns": 4878.0, "ser_p75_ns": 5059.0, "ser_p95_ns": 5458.0, "ser_p99_ns": 5597.78, "ser_ci_low_ns": 4869.136206896552, "ser_ci_high_ns": 4982.679310344828, "deser_mean_ns": 23427.850574712644, "deser_median_ns": 23346.0, "deser_std_ns": 414.42884565402903, "deser_mad_ns": 188.0, "deser_cv": 0.01768958037069571, "deser_min_ns": 22696.0, "deser_max_ns": 24544.0, "deser_p5_ns": 22733.6, "deser_p25_ns": 23249.0, "deser_p50_ns": 23346.0, "deser_p75_ns": 23693.0, "deser_p95_ns": 24039.1, "deser_p99_ns": 24539.7, "deser_ci_low_ns": 23341.12068965517, "deser_ci_high_ns": 23512.681896551723, "total_mean_ns": 28354.51724137931, "total_median_ns": 28240.0, "total_std_ns": 554.8069193174632, "total_mad_ns": 330.0, "total_cv": 0.01956679123098604, "total_min_ns": 27399.0, "total_max_ns": 29731.0, "total_p5_ns": 27516.6, "total_p25_ns": 28003.0, "total_p50_ns": 28240.0, "total_p75_ns": 28654.0, "total_p95_ns": 29460.7, "total_p99_ns": 29646.72, "total_ci_low_ns": 28237.135057471263, "total_ci_high_ns": 28471.810057471266, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "parson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.5.3", "avg_time_ser_ns": 3081192.1948051946, "avg_time_deser_ns": 565833.7142857143, "avg_time_total_ns": 3647025.909090909, "median_size_bytes": 68605.0, "avg_ops_per_sec": 274.19602298610187, "min_ops_per_sec": 264.9954288288527, "max_ops_per_sec": 283.4386780420056, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 3081192.1948051946, "ser_median_ns": 3078957.0, "ser_std_ns": 56165.54463675333, "ser_mad_ns": 31036.0, "ser_cv": 0.018228510617236696, "ser_min_ns": 2970410.0, "ser_max_ns": 3208348.0, "ser_p5_ns": 2988295.6, "ser_p25_ns": 3048042.0, "ser_p50_ns": 3078957.0, "ser_p75_ns": 3111739.0, "ser_p95_ns": 3177644.0, "ser_p99_ns": 3206106.0, "ser_ci_low_ns": 3069144.1665584417, "ser_ci_high_ns": 3093723.0392857143, "deser_mean_ns": 565833.7142857143, "deser_median_ns": 565074.0, "deser_std_ns": 4986.986496074566, "deser_mad_ns": 2367.0, "deser_cv": 0.008813519537926327, "deser_min_ns": 552355.0, "deser_max_ns": 577839.0, "deser_p5_ns": 556350.4, "deser_p25_ns": 563560.0, "deser_p50_ns": 565074.0, "deser_p75_ns": 568519.0, "deser_p95_ns": 574293.4, "deser_p99_ns": 576977.92, "deser_ci_low_ns": 564742.6012987014, "deser_ci_high_ns": 566909.7711038961, "total_mean_ns": 3647025.909090909, "total_median_ns": 3648189.0, "total_std_ns": 58546.62222698244, "total_mad_ns": 31436.0, "total_cv": 0.0160532509739083, "total_min_ns": 3528100.0, "total_max_ns": 3773650.0, "total_p5_ns": 3548695.2, "total_p25_ns": 3611804.0, "total_p50_ns": 3648189.0, "total_p75_ns": 3676735.0, "total_p95_ns": 3750554.2, "total_p99_ns": 3773208.44, "total_ci_low_ns": 3634745.0996753247, "total_ci_high_ns": 3659531.825, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 89.81679135610818}, {"serializer": "protobuf-wire", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "wire-v2", "avg_time_ser_ns": 7766.474358974359, "avg_time_deser_ns": 28551.24358974359, "avg_time_total_ns": 36317.717948717946, "median_size_bytes": 32422.0, "avg_ops_per_sec": 27534.76970695239, "min_ops_per_sec": 25837.12277800744, "max_ops_per_sec": 28516.839193543787, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 7766.474358974359, "ser_median_ns": 7753.0, "ser_std_ns": 227.21359733633642, "ser_mad_ns": 116.0, "ser_cv": 0.02925569400403483, "ser_min_ns": 7259.0, "ser_max_ns": 8350.0, "ser_p5_ns": 7387.35, "ser_p25_ns": 7647.0, "ser_p50_ns": 7753.0, "ser_p75_ns": 7870.75, "ser_p95_ns": 8202.5, "ser_p99_ns": 8346.92, "ser_ci_low_ns": 7715.126282051282, "ser_ci_high_ns": 7817.145192307692, "deser_mean_ns": 28551.24358974359, "deser_median_ns": 28506.0, "deser_std_ns": 547.8482391503993, "deser_mad_ns": 232.5, "deser_cv": 0.019188244372907167, "deser_min_ns": 27590.0, "deser_max_ns": 30358.0, "deser_p5_ns": 27775.15, "deser_p25_ns": 28350.25, "deser_p50_ns": 28506.0, "deser_p75_ns": 28738.75, "deser_p95_ns": 29518.75, "deser_p99_ns": 30277.15, "deser_ci_low_ns": 28437.654166666667, "deser_ci_high_ns": 28672.67916666667, "total_mean_ns": 36317.717948717946, "total_median_ns": 36260.5, "total_std_ns": 703.0688185161987, "total_mad_ns": 350.0, "total_cv": 0.019358838005982634, "total_min_ns": 35067.0, "total_max_ns": 38704.0, "total_p5_ns": 35328.15, "total_p25_ns": 35843.0, "total_p50_ns": 36260.5, "total_p75_ns": 36550.5, "total_p95_ns": 37719.85, "total_p99_ns": 38449.130000000005, "total_ci_low_ns": 36168.64615384615, "total_ci_high_ns": 36480.42628205128, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.597479507115882}, {"serializer": "msgpack-c", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "6.0.1", "avg_time_ser_ns": 28031.625, "avg_time_deser_ns": 69306.175, "avg_time_total_ns": 97337.8, "median_size_bytes": 35022.0, "avg_ops_per_sec": 10273.501147550078, "min_ops_per_sec": 9770.300241326417, "max_ops_per_sec": 10626.42792625259, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 28031.625, "ser_median_ns": 28020.0, "ser_std_ns": 512.8156669095125, "ser_mad_ns": 293.5, "ser_cv": 0.018294182620861705, "ser_min_ns": 26869.0, "ser_max_ns": 29506.0, "ser_p5_ns": 27234.4, "ser_p25_ns": 27725.75, "ser_p50_ns": 28020.0, "ser_p75_ns": 28297.0, "ser_p95_ns": 28792.85, "ser_p99_ns": 29505.21, "ser_ci_low_ns": 27923.936875, "ser_ci_high_ns": 28148.105625, "deser_mean_ns": 69306.175, "deser_median_ns": 69153.0, "deser_std_ns": 1359.9880097665791, "deser_mad_ns": 742.5, "deser_cv": 0.01962289810058886, "deser_min_ns": 66881.0, "deser_max_ns": 72846.0, "deser_p5_ns": 67234.5, "deser_p25_ns": 68450.5, "deser_p50_ns": 69153.0, "deser_p75_ns": 70149.75, "deser_p95_ns": 72154.4, "deser_p99_ns": 72575.03, "deser_ci_low_ns": 69004.4203125, "deser_ci_high_ns": 69607.4725, "total_mean_ns": 97337.8, "total_median_ns": 97192.5, "total_std_ns": 1697.6768743256923, "total_mad_ns": 920.5, "total_cv": 0.01744108531655423, "total_min_ns": 94105.0, "total_max_ns": 102351.0, "total_p5_ns": 94670.1, "total_p25_ns": 96315.75, "total_p50_ns": 97192.5, "total_p75_ns": 98284.5, "total_p95_ns": 100514.7, "total_p99_ns": 101856.45999999999, "total_ci_low_ns": 96979.58750000001, "total_ci_high_ns": 97723.5896875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 55.328924533677785}, {"serializer": "protobuf-c", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.5.0", "avg_time_ser_ns": 7832.170731707317, "avg_time_deser_ns": 28541.80487804878, "avg_time_total_ns": 36373.9756097561, "median_size_bytes": 32422.0, "avg_ops_per_sec": 27492.18316767617, "min_ops_per_sec": 25938.31867818328, "max_ops_per_sec": 28691.111493659264, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 7832.170731707317, "ser_median_ns": 7794.0, "ser_std_ns": 375.31141982204684, "ser_mad_ns": 230.0, "ser_cv": 0.047919208183582786, "ser_min_ns": 7190.0, "ser_max_ns": 8908.0, "ser_p5_ns": 7347.4, "ser_p25_ns": 7523.5, "ser_p50_ns": 7794.0, "ser_p75_ns": 8007.0, "ser_p95_ns": 8517.3, "ser_p99_ns": 8761.39, "ser_ci_low_ns": 7755.155792682926, "ser_ci_high_ns": 7921.134756097561, "deser_mean_ns": 28541.80487804878, "deser_median_ns": 28531.0, "deser_std_ns": 491.2401398884656, "deser_mad_ns": 245.5, "deser_cv": 0.017211250023864942, "deser_min_ns": 27618.0, "deser_max_ns": 29896.0, "deser_p5_ns": 27693.1, "deser_p25_ns": 28308.25, "deser_p50_ns": 28531.0, "deser_p75_ns": 28859.75, "deser_p95_ns": 29349.55, "deser_p99_ns": 29867.65, "deser_ci_low_ns": 28440.940243902438, "deser_ci_high_ns": 28651.126829268294, "total_mean_ns": 36373.9756097561, "total_median_ns": 36281.5, "total_std_ns": 793.0551173473747, "total_mad_ns": 496.5, "total_cv": 0.02180281654817694, "total_min_ns": 34854.0, "total_max_ns": 38553.0, "total_p5_ns": 35210.1, "total_p25_ns": 35841.75, "total_p50_ns": 36281.5, "total_p75_ns": 36794.0, "total_p95_ns": 37979.2, "total_p99_ns": 38315.67, "total_ci_low_ns": 36202.218597560975, "total_ci_high_ns": 36544.63048780488, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.725499583827606}, {"serializer": "protobuf-wire", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "wire-v2", "avg_time_ser_ns": 8931.21590909091, "avg_time_deser_ns": 30037.261363636364, "avg_time_total_ns": 38968.47727272727, "median_size_bytes": 32422.0, "avg_ops_per_sec": 25661.76740757244, "min_ops_per_sec": 23972.76693675984, "max_ops_per_sec": 27037.988373665, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 8931.21590909091, "ser_median_ns": 8937.0, "ser_std_ns": 371.7324599936857, "ser_mad_ns": 227.5, "ser_cv": 0.0416217079261634, "ser_min_ns": 8027.0, "ser_max_ns": 9766.0, "ser_p5_ns": 8338.55, "ser_p25_ns": 8706.25, "ser_p50_ns": 8937.0, "ser_p75_ns": 9127.0, "ser_p95_ns": 9498.0, "ser_p99_ns": 9747.73, "ser_ci_low_ns": 8852.805681818181, "ser_ci_high_ns": 9008.388636363637, "deser_mean_ns": 30037.261363636364, "deser_median_ns": 29767.0, "deser_std_ns": 992.5527114097542, "deser_mad_ns": 588.0, "deser_cv": 0.033044048170495194, "deser_min_ns": 28742.0, "deser_max_ns": 32882.0, "deser_p5_ns": 28860.25, "deser_p25_ns": 29268.5, "deser_p50_ns": 29767.0, "deser_p75_ns": 30673.75, "deser_p95_ns": 31832.449999999997, "deser_p99_ns": 32653.19, "deser_ci_low_ns": 29829.395454545454, "deser_ci_high_ns": 30254.473011363636, "total_mean_ns": 38968.47727272727, "total_median_ns": 38646.0, "total_std_ns": 1189.1806121078353, "total_mad_ns": 892.5, "total_cv": 0.03051647627350589, "total_min_ns": 36985.0, "total_max_ns": 41714.0, "total_p5_ns": 37378.85, "total_p25_ns": 38201.0, "total_p50_ns": 38646.0, "total_p75_ns": 40056.0, "total_p95_ns": 40974.75, "total_p99_ns": 41562.62, "total_ci_low_ns": 38718.70625, "total_ci_high_ns": 39221.832102272725, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.908951528679463}, {"serializer": "protobuf-c", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.5.0", "avg_time_ser_ns": 9005.067415730337, "avg_time_deser_ns": 29927.74157303371, "avg_time_total_ns": 38932.808988764045, "median_size_bytes": 32422.0, "avg_ops_per_sec": 25685.277429856105, "min_ops_per_sec": 23936.042893388865, "max_ops_per_sec": 26896.18074233459, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 9005.067415730337, "ser_median_ns": 8958.0, "ser_std_ns": 444.34102888314004, "ser_mad_ns": 314.0, "ser_cv": 0.04934344279388193, "ser_min_ns": 8181.0, "ser_max_ns": 10251.0, "ser_p5_ns": 8421.4, "ser_p25_ns": 8665.0, "ser_p50_ns": 8958.0, "ser_p75_ns": 9290.0, "ser_p95_ns": 9826.8, "ser_p99_ns": 9980.840000000002, "ser_ci_low_ns": 8910.958426966292, "ser_ci_high_ns": 9098.946067415729, "deser_mean_ns": 29927.74157303371, "deser_median_ns": 29648.0, "deser_std_ns": 968.1321698847111, "deser_mad_ns": 551.0, "deser_cv": 0.03234898856374259, "deser_min_ns": 28793.0, "deser_max_ns": 32538.0, "deser_p5_ns": 28851.2, "deser_p25_ns": 29124.0, "deser_p50_ns": 29648.0, "deser_p75_ns": 30419.0, "deser_p95_ns": 31976.0, "deser_p99_ns": 32441.2, "deser_ci_low_ns": 29731.558426966294, "deser_ci_high_ns": 30135.74438202247, "total_mean_ns": 38932.808988764045, "total_median_ns": 38609.0, "total_std_ns": 1272.706367231268, "total_mad_ns": 869.0, "total_cv": 0.03268981612907944, "total_min_ns": 37180.0, "total_max_ns": 41778.0, "total_p5_ns": 37359.0, "total_p25_ns": 37926.0, "total_p50_ns": 38609.0, "total_p75_ns": 39791.0, "total_p95_ns": 41420.4, "total_p99_ns": 41665.36, "total_ci_low_ns": 38677.53988764045, "total_ci_high_ns": 39197.31938202247, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.40327332615404}, {"serializer": "parson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.5.3", "avg_time_ser_ns": 3060143.087912088, "avg_time_deser_ns": 571529.2087912088, "avg_time_total_ns": 3631672.2967032967, "median_size_bytes": 68605.0, "avg_ops_per_sec": 275.3552408645914, "min_ops_per_sec": 264.37646150612625, "max_ops_per_sec": 285.9443483671434, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 3060143.087912088, "ser_median_ns": 3056326.0, "ser_std_ns": 51686.98220971835, "ser_mad_ns": 32299.0, "ser_cv": 0.01689038084980006, "ser_min_ns": 2946742.0, "ser_max_ns": 3185513.0, "ser_p5_ns": 2990082.5, "ser_p25_ns": 3021490.5, "ser_p50_ns": 3056326.0, "ser_p75_ns": 3085907.5, "ser_p95_ns": 3161785.0, "ser_p99_ns": 3182941.7, "ser_ci_low_ns": 3049467.782142857, "ser_ci_high_ns": 3071043.22554945, "deser_mean_ns": 571529.2087912088, "deser_median_ns": 571592.0, "deser_std_ns": 11171.322214110442, "deser_mad_ns": 7617.0, "deser_cv": 0.019546371457966116, "deser_min_ns": 550442.0, "deser_max_ns": 599829.0, "deser_p5_ns": 552075.0, "deser_p25_ns": 564688.5, "deser_p50_ns": 571592.0, "deser_p75_ns": 579216.5, "deser_p95_ns": 587932.0, "deser_p99_ns": 597604.2, "deser_ci_low_ns": 569274.8346153847, "deser_ci_high_ns": 573845.5914835165, "total_mean_ns": 3631672.2967032967, "total_median_ns": 3628508.0, "total_std_ns": 57672.60266741229, "total_mad_ns": 37338.0, "total_cv": 0.015880453398773187, "total_min_ns": 3497184.0, "total_max_ns": 3782485.0, "total_p5_ns": 3547172.0, "total_p25_ns": 3590970.0, "total_p50_ns": 3628508.0, "total_p75_ns": 3662829.0, "total_p95_ns": 3742446.5, "total_p99_ns": 3782395.0, "total_ci_low_ns": 3619892.6277472526, "total_ci_high_ns": 3643391.0464285715, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 86.19601854239174}, {"serializer": "yyjson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.10.0", "avg_time_ser_ns": 128010.30434782608, "avg_time_deser_ns": 129337.80434782608, "avg_time_total_ns": 257348.10869565216, "median_size_bytes": 66315.0, "avg_ops_per_sec": 3885.7872516274483, "min_ops_per_sec": 3659.3309279331365, "max_ops_per_sec": 4096.765603555992, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 128010.30434782608, "ser_median_ns": 127851.0, "ser_std_ns": 3213.6589045364103, "ser_mad_ns": 2002.5, "ser_cv": 0.025104689195991164, "ser_min_ns": 121480.0, "ser_max_ns": 136419.0, "ser_p5_ns": 123357.0, "ser_p25_ns": 125915.5, "ser_p50_ns": 127851.0, "ser_p75_ns": 129903.25, "ser_p95_ns": 134250.9, "ser_p99_ns": 136392.61, "ser_ci_low_ns": 127370.21358695652, "ser_ci_high_ns": 128675.92092391304, "deser_mean_ns": 129337.80434782608, "deser_median_ns": 128132.0, "deser_std_ns": 3992.0958092599126, "deser_mad_ns": 2576.0, "deser_cv": 0.030865653158329745, "deser_min_ns": 122615.0, "deser_max_ns": 139037.0, "deser_p5_ns": 124694.8, "deser_p25_ns": 126146.75, "deser_p50_ns": 128132.0, "deser_p75_ns": 131598.25, "deser_p95_ns": 137526.3, "deser_p99_ns": 138963.29, "deser_ci_low_ns": 128510.60326086957, "deser_ci_high_ns": 130139.88043478261, "total_mean_ns": 257348.10869565216, "total_median_ns": 256871.5, "total_std_ns": 6285.657075213084, "total_mad_ns": 4775.5, "total_cv": 0.02442472613096487, "total_min_ns": 244095.0, "total_max_ns": 273274.0, "total_p5_ns": 248525.4, "total_p25_ns": 252126.5, "total_p50_ns": 256871.5, "total_p75_ns": 261326.0, "total_p95_ns": 269672.25, "total_p99_ns": 271960.87, "total_ci_low_ns": 256099.04945652172, "total_ci_high_ns": 258704.7097826087, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 49.481162627312635}, {"serializer": "flatcc", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.6.1", "avg_time_ser_ns": 19814.897727272728, "avg_time_deser_ns": 24607.284090909092, "avg_time_total_ns": 44422.181818181816, "median_size_bytes": 33160.0, "avg_ops_per_sec": 22511.27610284788, "min_ops_per_sec": 20718.08896347401, "max_ops_per_sec": 23559.901048415595, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 19814.897727272728, "ser_median_ns": 19396.5, "ser_std_ns": 1025.8155156648213, "ser_mad_ns": 432.5, "ser_cv": 0.05176991220363023, "ser_min_ns": 18422.0, "ser_max_ns": 22889.0, "ser_p5_ns": 18715.8, "ser_p25_ns": 19103.0, "ser_p50_ns": 19396.5, "ser_p75_ns": 20406.25, "ser_p95_ns": 21806.55, "ser_p99_ns": 22627.129999999997, "ser_ci_low_ns": 19610.18011363636, "ser_ci_high_ns": 20041.361363636363, "deser_mean_ns": 24607.284090909092, "deser_median_ns": 24550.5, "deser_std_ns": 536.2031256230233, "deser_mad_ns": 370.5, "deser_cv": 0.021790422853740207, "deser_min_ns": 23875.0, "deser_max_ns": 26180.0, "deser_p5_ns": 23994.05, "deser_p25_ns": 24145.75, "deser_p50_ns": 24550.5, "deser_p75_ns": 24823.25, "deser_p95_ns": 25699.15, "deser_p99_ns": 25945.1, "deser_ci_low_ns": 24494.27897727273, "deser_ci_high_ns": 24721.83068181818, "total_mean_ns": 44422.181818181816, "total_median_ns": 43945.0, "total_std_ns": 1439.823468948394, "total_mad_ns": 699.5, "total_cv": 0.03241226364885752, "total_min_ns": 42445.0, "total_max_ns": 48267.0, "total_p5_ns": 42798.95, "total_p25_ns": 43398.75, "total_p50_ns": 43945.0, "total_p75_ns": 45085.0, "total_p95_ns": 47530.75, "total_p99_ns": 48197.4, "total_ci_low_ns": 44126.49232954546, "total_ci_high_ns": 44739.93238636364, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.442899396348881}, {"serializer": "avro-c", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.11.3", "avg_time_ser_ns": 19958.62222222222, "avg_time_deser_ns": 36251.91111111111, "avg_time_total_ns": 56210.53333333333, "median_size_bytes": 30522.0, "avg_ops_per_sec": 17790.259951278407, "min_ops_per_sec": 16144.916772954035, "max_ops_per_sec": 18999.12604020215, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 19958.62222222222, "ser_median_ns": 19595.0, "ser_std_ns": 1180.3307152037657, "ser_mad_ns": 753.0, "ser_cv": 0.05913888754753664, "ser_min_ns": 17828.0, "ser_max_ns": 22876.0, "ser_p5_ns": 18512.7, "ser_p25_ns": 19037.5, "ser_p50_ns": 19595.0, "ser_p75_ns": 20802.75, "ser_p95_ns": 22093.8, "ser_p99_ns": 22729.15, "ser_ci_low_ns": 19716.491666666665, "ser_ci_high_ns": 20220.61861111111, "deser_mean_ns": 36251.91111111111, "deser_median_ns": 35916.0, "deser_std_ns": 1191.7929995631541, "deser_mad_ns": 828.5, "deser_cv": 0.032875315067124086, "deser_min_ns": 34643.0, "deser_max_ns": 39063.0, "deser_p5_ns": 34740.1, "deser_p25_ns": 35409.5, "deser_p50_ns": 35916.0, "deser_p75_ns": 36858.0, "deser_p95_ns": 38562.2, "deser_p99_ns": 38888.56, "deser_ci_low_ns": 36017.93166666667, "deser_ci_high_ns": 36508.806666666664, "total_mean_ns": 56210.53333333333, "total_median_ns": 55561.0, "total_std_ns": 2186.950887484596, "total_mad_ns": 1707.0, "total_cv": 0.03890642478902998, "total_min_ns": 52634.0, "total_max_ns": 61939.0, "total_p5_ns": 53576.65, "total_p25_ns": 54389.5, "total_p50_ns": 55561.0, "total_p75_ns": 58189.0, "total_p95_ns": 59535.65, "total_p99_ns": 61388.98, "total_ci_low_ns": 55752.81777777778, "total_ci_high_ns": 56665.23166666667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.737122148267014}, {"serializer": "mpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.1", "avg_time_ser_ns": 17269.604395604394, "avg_time_deser_ns": 68984.0989010989, "avg_time_total_ns": 86253.7032967033, "median_size_bytes": 35022.0, "avg_ops_per_sec": 11593.70510226221, "min_ops_per_sec": 10647.359454855196, "max_ops_per_sec": 12346.593574832703, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 17269.604395604394, "ser_median_ns": 17145.0, "ser_std_ns": 873.7484112733404, "ser_mad_ns": 524.0, "ser_cv": 0.05059458174361737, "ser_min_ns": 15674.0, "ser_max_ns": 19583.0, "ser_p5_ns": 16194.5, "ser_p25_ns": 16635.0, "ser_p50_ns": 17145.0, "ser_p75_ns": 17692.0, "ser_p95_ns": 18956.0, "ser_p99_ns": 19517.3, "ser_ci_low_ns": 17100.057417582415, "ser_ci_high_ns": 17448.81978021978, "deser_mean_ns": 68984.0989010989, "deser_median_ns": 68565.0, "deser_std_ns": 2019.0123165930254, "deser_mad_ns": 1386.0, "deser_cv": 0.02926779285017033, "deser_min_ns": 65320.0, "deser_max_ns": 74337.0, "deser_p5_ns": 66471.0, "deser_p25_ns": 67295.0, "deser_p50_ns": 68565.0, "deser_p75_ns": 70066.5, "deser_p95_ns": 73143.0, "deser_p99_ns": 74294.7, "deser_ci_low_ns": 68593.63021978023, "deser_ci_high_ns": 69401.92967032967, "total_mean_ns": 86253.7032967033, "total_median_ns": 85716.0, "total_std_ns": 2623.2917891437487, "total_mad_ns": 2004.0, "total_cv": 0.030413671400518445, "total_min_ns": 80994.0, "total_max_ns": 93920.0, "total_p5_ns": 82832.5, "total_p25_ns": 84555.0, "total_p50_ns": 85716.0, "total_p75_ns": 87868.5, "total_p95_ns": 90776.0, "total_p99_ns": 93712.1, "total_ci_low_ns": 85676.41923076923, "total_ci_high_ns": 86821.37197802197, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.603456889172797}, {"serializer": "msgpack-c", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "6.0.1", "avg_time_ser_ns": 29657.382978723403, "avg_time_deser_ns": 71421.21276595745, "avg_time_total_ns": 101078.59574468085, "median_size_bytes": 35022.0, "avg_ops_per_sec": 9893.291380164666, "min_ops_per_sec": 9295.840111550082, "max_ops_per_sec": 10444.082382921837, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 29657.382978723403, "ser_median_ns": 29421.0, "ser_std_ns": 1097.4328902144152, "ser_mad_ns": 787.5, "ser_cv": 0.037003699584745156, "ser_min_ns": 27999.0, "ser_max_ns": 32995.0, "ser_p5_ns": 28397.35, "ser_p25_ns": 28716.5, "ser_p50_ns": 29421.0, "ser_p75_ns": 30328.5, "ser_p95_ns": 31774.7, "ser_p99_ns": 32398.869999999995, "ser_ci_low_ns": 29435.13590425532, "ser_ci_high_ns": 29883.717553191487, "deser_mean_ns": 71421.21276595745, "deser_median_ns": 71105.0, "deser_std_ns": 2242.231352495734, "deser_mad_ns": 1469.5, "deser_cv": 0.031394473233650855, "deser_min_ns": 67523.0, "deser_max_ns": 77208.0, "deser_p5_ns": 68125.9, "deser_p25_ns": 69740.25, "deser_p50_ns": 71105.0, "deser_p75_ns": 72839.75, "deser_p95_ns": 75199.45, "deser_p99_ns": 76845.3, "deser_ci_low_ns": 70979.18617021278, "deser_ci_high_ns": 71870.72978723404, "total_mean_ns": 101078.59574468085, "total_median_ns": 100882.5, "total_std_ns": 2916.134967152303, "total_mad_ns": 2005.0, "total_cv": 0.028850172933924653, "total_min_ns": 95748.0, "total_max_ns": 107575.0, "total_p5_ns": 96778.45, "total_p25_ns": 99117.0, "total_p50_ns": 100882.5, "total_p75_ns": 102888.25, "total_p95_ns": 106090.75, "total_p99_ns": 107126.73999999999, "total_ci_low_ns": 100529.05691489362, "total_ci_high_ns": 101658.08537234041, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 32.49686752970645}, {"serializer": "zcbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.9", "avg_time_ser_ns": 49594.54081632653, "avg_time_deser_ns": 730069.8673469388, "avg_time_total_ns": 779664.4081632653, "median_size_bytes": 35122.0, "avg_ops_per_sec": 1282.6031168407465, "min_ops_per_sec": 1162.474396501417, "max_ops_per_sec": 1383.2330028328613, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 49594.54081632653, "ser_median_ns": 48275.5, "ser_std_ns": 8463.658742083153, "ser_mad_ns": 6983.5, "ser_cv": 0.17065706432142053, "ser_min_ns": 37293.0, "ser_max_ns": 72710.0, "ser_p5_ns": 39002.75, "ser_p25_ns": 41831.5, "ser_p50_ns": 48275.5, "ser_p75_ns": 55945.5, "ser_p95_ns": 63710.44999999999, "ser_p99_ns": 66707.64000000001, "ser_ci_low_ns": 47959.808163265305, "ser_ci_high_ns": 51334.70790816326, "deser_mean_ns": 730069.8673469388, "deser_median_ns": 735501.5, "deser_std_ns": 27849.900948809685, "deser_mad_ns": 21047.0, "deser_cv": 0.03814689825511597, "deser_min_ns": 683232.0, "deser_max_ns": 798777.0, "deser_p5_ns": 686220.4, "deser_p25_ns": 704785.75, "deser_p50_ns": 735501.5, "deser_p75_ns": 747315.75, "deser_p95_ns": 772702.5499999999, "deser_p99_ns": 796021.23, "deser_ci_low_ns": 724722.2367346939, "deser_ci_high_ns": 735502.4732142857, "total_mean_ns": 779664.4081632653, "total_median_ns": 781329.0, "total_std_ns": 29773.415121144822, "total_mad_ns": 22306.0, "total_cv": 0.03818747503337376, "total_min_ns": 722944.0, "total_max_ns": 860234.0, "total_p5_ns": 732228.9, "total_p25_ns": 757652.25, "total_p50_ns": 781329.0, "total_p75_ns": 798168.5, "total_p95_ns": 828160.75, "total_p99_ns": 842796.31, "total_ci_low_ns": 773695.1795918366, "total_ci_high_ns": 785338.2209183673, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 34.13677145649913}, {"serializer": "jansson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "2.14", "avg_time_ser_ns": 1234912.211111111, "avg_time_deser_ns": 1180479.5555555555, "avg_time_total_ns": 2415391.7666666666, "median_size_bytes": 68605.0, "avg_ops_per_sec": 414.0115130805627, "min_ops_per_sec": 395.68059238132844, "max_ops_per_sec": 427.1521849261411, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 1234912.211111111, "ser_median_ns": 1230072.5, "ser_std_ns": 25773.58086220363, "ser_mad_ns": 16838.5, "ser_cv": 0.020870779825728564, "ser_min_ns": 1196351.0, "ser_max_ns": 1316263.0, "ser_p5_ns": 1202089.85, "ser_p25_ns": 1215044.5, "ser_p50_ns": 1230072.5, "ser_p75_ns": 1253678.0, "ser_p95_ns": 1279606.05, "ser_p99_ns": 1303208.48, "ser_ci_low_ns": 1229928.0652777778, "ser_ci_high_ns": 1240138.4688888888, "deser_mean_ns": 1180479.5555555555, "deser_median_ns": 1179746.5, "deser_std_ns": 20933.178075475676, "deser_mad_ns": 12618.0, "deser_cv": 0.017732774766797327, "deser_min_ns": 1138494.0, "deser_max_ns": 1234215.0, "deser_p5_ns": 1145816.0, "deser_p25_ns": 1167093.0, "deser_p50_ns": 1179746.5, "deser_p75_ns": 1191888.25, "deser_p95_ns": 1216678.65, "deser_p99_ns": 1229979.49, "deser_ci_low_ns": 1176260.3119444444, "deser_ci_high_ns": 1184700.0180555556, "total_mean_ns": 2415391.7666666666, "total_median_ns": 2412258.0, "total_std_ns": 39285.48269507953, "total_mad_ns": 25915.5, "total_cv": 0.01626464213269014, "total_min_ns": 2341086.0, "total_max_ns": 2527291.0, "total_p5_ns": 2356279.9, "total_p25_ns": 2386708.25, "total_p50_ns": 2412258.0, "total_p75_ns": 2437587.5, "total_p95_ns": 2487551.15, "total_p99_ns": 2504358.37, "total_ci_low_ns": 2407091.9091666667, "total_ci_high_ns": 2423875.46, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 84.0210070481927}, {"serializer": "cbor-encode", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.11.0", "avg_time_ser_ns": 134997.4301075269, "avg_time_deser_ns": 631723.8279569893, "avg_time_total_ns": 766721.2580645161, "median_size_bytes": 34922.0, "avg_ops_per_sec": 1304.2549550854562, "min_ops_per_sec": 1203.2912422056809, "max_ops_per_sec": 1398.0226367825348, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 134997.4301075269, "ser_median_ns": 134680.0, "ser_std_ns": 3170.895033424589, "ser_mad_ns": 2059.0, "ser_cv": 0.0234885584925501, "ser_min_ns": 127828.0, "ser_max_ns": 143437.0, "ser_p5_ns": 130490.4, "ser_p25_ns": 132861.0, "ser_p50_ns": 134680.0, "ser_p75_ns": 137066.0, "ser_p95_ns": 140668.8, "ser_p99_ns": 142820.6, "ser_ci_low_ns": 134367.94462365593, "ser_ci_high_ns": 135640.7607526882, "deser_mean_ns": 631723.8279569893, "deser_median_ns": 630799.0, "deser_std_ns": 21508.426726580634, "deser_mad_ns": 14061.0, "deser_cv": 0.0340471987516118, "deser_min_ns": 582219.0, "deser_max_ns": 691902.0, "deser_p5_ns": 597870.6, "deser_p25_ns": 617451.0, "deser_p50_ns": 630799.0, "deser_p75_ns": 646220.0, "deser_p95_ns": 665320.7999999999, "deser_p99_ns": 672399.84, "deser_ci_low_ns": 627291.1774193549, "deser_ci_high_ns": 636008.7465053763, "total_mean_ns": 766721.2580645161, "total_median_ns": 766032.0, "total_std_ns": 22348.889190323855, "total_mad_ns": 15334.0, "total_cv": 0.02914864946713568, "total_min_ns": 715296.0, "total_max_ns": 831054.0, "total_p5_ns": 732475.6, "total_p25_ns": 752113.0, "total_p50_ns": 766032.0, "total_p75_ns": 782037.0, "total_p95_ns": 801711.4, "total_p99_ns": 810978.6799999999, "total_ci_low_ns": 762203.8032258064, "total_ci_high_ns": 771368.0505376344, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 45.23436887021972}, {"serializer": "json-c", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.15", "avg_time_ser_ns": 1253855.0322580645, "avg_time_deser_ns": 842166.7419354839, "avg_time_total_ns": 2096021.7741935484, "median_size_bytes": 68605.0, "avg_ops_per_sec": 477.0942803706099, "min_ops_per_sec": 455.28612228712075, "max_ops_per_sec": 492.6348624883677, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1253855.0322580645, "ser_median_ns": 1250530.0, "ser_std_ns": 28297.20802038512, "ser_mad_ns": 16520.0, "ser_cv": 0.022568165611159006, "ser_min_ns": 1194556.0, "ser_max_ns": 1323724.0, "ser_p5_ns": 1216021.2, "ser_p25_ns": 1234958.0, "ser_p50_ns": 1250530.0, "ser_p75_ns": 1267050.0, "ser_p95_ns": 1313609.2, "ser_p99_ns": 1320527.92, "ser_ci_low_ns": 1248113.769892473, "ser_ci_high_ns": 1260023.762096774, "deser_mean_ns": 842166.7419354839, "deser_median_ns": 840709.0, "deser_std_ns": 15421.716528059036, "deser_mad_ns": 7520.0, "deser_cv": 0.01831195149385328, "deser_min_ns": 807746.0, "deser_max_ns": 878846.0, "deser_p5_ns": 816864.4, "deser_p25_ns": 833637.0, "deser_p50_ns": 840709.0, "deser_p75_ns": 848702.0, "deser_p95_ns": 870648.6, "deser_p99_ns": 877659.2, "deser_ci_low_ns": 839164.8811827957, "deser_ci_high_ns": 845189.8397849462, "total_mean_ns": 2096021.7741935484, "total_median_ns": 2094643.0, "total_std_ns": 36043.97854467361, "total_mad_ns": 25916.0, "total_cv": 0.01719637600546476, "total_min_ns": 2029901.0, "total_max_ns": 2196421.0, "total_p5_ns": 2044208.6, "total_p25_ns": 2068661.0, "total_p50_ns": 2094643.0, "total_p75_ns": 2119243.0, "total_p95_ns": 2162957.8, "total_p99_ns": 2177395.4, "total_ci_low_ns": 2089028.7672043012, "total_ci_high_ns": 2103614.861827957, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 78.69272734806968}, {"serializer": "tinycbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.6.0", "avg_time_ser_ns": 33983.14432989691, "avg_time_deser_ns": 633557.381443299, "avg_time_total_ns": 667540.5257731959, "median_size_bytes": 34922.0, "avg_ops_per_sec": 1498.036390886867, "min_ops_per_sec": 1366.1295500652327, "max_ops_per_sec": 1623.677109075381, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 33983.14432989691, "ser_median_ns": 33691.0, "ser_std_ns": 1271.9875031298684, "ser_mad_ns": 938.0, "ser_cv": 0.03742995323745921, "ser_min_ns": 31962.0, "ser_max_ns": 36824.0, "ser_p5_ns": 32360.4, "ser_p25_ns": 32885.0, "ser_p50_ns": 33691.0, "ser_p75_ns": 34929.0, "ser_p95_ns": 36249.2, "ser_p99_ns": 36798.08, "ser_ci_low_ns": 33750.890979381446, "ser_ci_high_ns": 34233.71288659794, "deser_mean_ns": 633557.381443299, "deser_median_ns": 633515.0, "deser_std_ns": 23812.774604472324, "deser_mad_ns": 18749.0, "deser_cv": 0.03758582142982021, "deser_min_ns": 582652.0, "deser_max_ns": 696027.0, "deser_p5_ns": 600480.0, "deser_p25_ns": 613386.0, "deser_p50_ns": 633515.0, "deser_p75_ns": 649818.0, "deser_p95_ns": 676815.6, "deser_p99_ns": 680984.7599999999, "deser_ci_low_ns": 628968.1948453608, "deser_ci_high_ns": 638525.4912371135, "total_mean_ns": 667540.5257731959, "total_median_ns": 667014.0, "total_std_ns": 24115.361540974936, "total_mad_ns": 17709.0, "total_cv": 0.03612568916777405, "total_min_ns": 615886.0, "total_max_ns": 731995.0, "total_p5_ns": 634702.2, "total_p25_ns": 647012.0, "total_p50_ns": 667014.0, "total_p75_ns": 683284.0, "total_p95_ns": 713045.6, "total_p99_ns": 715573.2399999999, "total_ci_low_ns": 662772.7706185566, "total_ci_high_ns": 672272.9136597938, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 35.921121294053854}, {"serializer": "libbson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.27.5", "avg_time_ser_ns": 231571.42696629214, "avg_time_deser_ns": 725362.7303370787, "avg_time_total_ns": 956934.1573033708, "median_size_bytes": 46722.0, "avg_ops_per_sec": 1045.003976885921, "min_ops_per_sec": 1007.0797707886442, "max_ops_per_sec": 1076.3694918136719, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 231571.42696629214, "ser_median_ns": 230825.0, "ser_std_ns": 4862.064773435534, "ser_mad_ns": 3270.0, "ser_cv": 0.020995961536063184, "ser_min_ns": 223212.0, "ser_max_ns": 245170.0, "ser_p5_ns": 224285.6, "ser_p25_ns": 228181.0, "ser_p50_ns": 230825.0, "ser_p75_ns": 234247.0, "ser_p95_ns": 240726.4, "ser_p99_ns": 244159.76, "ser_ci_low_ns": 230552.78146067416, "ser_ci_high_ns": 232614.70786516854, "deser_mean_ns": 725362.7303370787, "deser_median_ns": 727323.0, "deser_std_ns": 10935.293052942308, "deser_mad_ns": 5649.0, "deser_cv": 0.015075620231908853, "deser_min_ns": 705228.0, "deser_max_ns": 753711.0, "deser_p5_ns": 709222.0, "deser_p25_ns": 716328.0, "deser_p50_ns": 727323.0, "deser_p75_ns": 731177.0, "deser_p95_ns": 744312.6, "deser_p99_ns": 750053.72, "deser_ci_low_ns": 723236.331741573, "deser_ci_high_ns": 727595.8853932584, "total_mean_ns": 956934.1573033708, "total_median_ns": 958849.0, "total_std_ns": 14114.844443237504, "total_mad_ns": 9919.0, "total_cv": 0.014750068576309335, "total_min_ns": 929049.0, "total_max_ns": 992970.0, "total_p5_ns": 934943.4, "total_p25_ns": 945479.0, "total_p50_ns": 958849.0, "total_p75_ns": 966281.0, "total_p95_ns": 983629.6, "total_p99_ns": 986707.92, "total_ci_low_ns": 954035.8769662922, "total_ci_high_ns": 959803.6966292135, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 91.01772833865046}, {"serializer": "ubj", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.0-min", "avg_time_ser_ns": 10009.781609195403, "avg_time_deser_ns": 25455.701149425287, "avg_time_total_ns": 35465.48275862069, "median_size_bytes": 33922.0, "avg_ops_per_sec": 28196.429943052935, "min_ops_per_sec": 26353.93332454869, "max_ops_per_sec": 29389.290542526305, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 10009.781609195403, "ser_median_ns": 10014.0, "ser_std_ns": 385.28978599585173, "ser_mad_ns": 245.0, "ser_cv": 0.03849132788690499, "ser_min_ns": 9345.0, "ser_max_ns": 11023.0, "ser_p5_ns": 9423.0, "ser_p25_ns": 9710.5, "ser_p50_ns": 10014.0, "ser_p75_ns": 10219.0, "ser_p95_ns": 10738.6, "ser_p99_ns": 10961.08, "ser_ci_low_ns": 9928.434770114944, "ser_ci_high_ns": 10089.352586206896, "deser_mean_ns": 25455.701149425287, "deser_median_ns": 25354.0, "deser_std_ns": 528.0971570878269, "deser_mad_ns": 332.0, "deser_cv": 0.02074573212452055, "deser_min_ns": 24647.0, "deser_max_ns": 27183.0, "deser_p5_ns": 24747.7, "deser_p25_ns": 25091.0, "deser_p50_ns": 25354.0, "deser_p75_ns": 25733.0, "deser_p95_ns": 26471.9, "deser_p99_ns": 27020.46, "deser_ci_low_ns": 25347.828735632185, "deser_ci_high_ns": 25572.724425287357, "total_mean_ns": 35465.48275862069, "total_median_ns": 35291.0, "total_std_ns": 841.5642531269605, "total_mad_ns": 487.0, "total_cv": 0.023729107505872007, "total_min_ns": 34026.0, "total_max_ns": 37945.0, "total_p5_ns": 34213.8, "total_p25_ns": 34915.5, "total_p50_ns": 35291.0, "total_p75_ns": 35907.0, "total_p95_ns": 36930.8, "total_p99_ns": 37865.88, "total_ci_low_ns": 35288.402011494254, "total_ci_high_ns": 35636.902298850575, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.7748392760689145}, {"serializer": "cJSON", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.7.18", "avg_time_ser_ns": 2389213.186813187, "avg_time_deser_ns": 533699.3516483516, "avg_time_total_ns": 2922912.5384615385, "median_size_bytes": 66887.0, "avg_ops_per_sec": 342.12450315955925, "min_ops_per_sec": 329.9051786535514, "max_ops_per_sec": 352.6078168921711, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 2389213.186813187, "ser_median_ns": 2386111.0, "ser_std_ns": 37664.765770592574, "ser_mad_ns": 16387.0, "ser_cv": 0.015764506063534293, "ser_min_ns": 2310701.0, "ser_max_ns": 2487910.0, "ser_p5_ns": 2322929.5, "ser_p25_ns": 2370626.0, "ser_p50_ns": 2386111.0, "ser_p75_ns": 2411907.5, "ser_p95_ns": 2457745.5, "ser_p99_ns": 2476448.5, "ser_ci_low_ns": 2381682.063186813, "ser_ci_high_ns": 2396368.584065934, "deser_mean_ns": 533699.3516483516, "deser_median_ns": 532761.0, "deser_std_ns": 11847.95339792548, "deser_mad_ns": 7778.0, "deser_cv": 0.022199677330190872, "deser_min_ns": 513546.0, "deser_max_ns": 565728.0, "deser_p5_ns": 516773.0, "deser_p25_ns": 525306.0, "deser_p50_ns": 532761.0, "deser_p75_ns": 540700.0, "deser_p95_ns": 554545.5, "deser_p99_ns": 561800.4, "deser_ci_low_ns": 531239.3173076923, "deser_ci_high_ns": 536102.5692307692, "total_mean_ns": 2922912.5384615385, "total_median_ns": 2919958.0, "total_std_ns": 44671.55637348066, "total_mad_ns": 22533.0, "total_cv": 0.015283234029641312, "total_min_ns": 2836012.0, "total_max_ns": 3031174.0, "total_p5_ns": 2850032.0, "total_p25_ns": 2897476.5, "total_p50_ns": 2919958.0, "total_p75_ns": 2942474.5, "total_p95_ns": 3012127.5, "total_p99_ns": 3023399.8, "total_ci_low_ns": 2914035.918131868, "total_ci_high_ns": 2932432.200274725, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 89.37800280168587}, {"serializer": "qcbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.5.1", "avg_time_ser_ns": 97442.46808510639, "avg_time_deser_ns": 630893.1702127659, "avg_time_total_ns": 728335.6382978724, "median_size_bytes": 34922.0, "avg_ops_per_sec": 1372.9933665432188, "min_ops_per_sec": 1251.9624511421653, "max_ops_per_sec": 1459.7730344885977, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 97442.46808510639, "ser_median_ns": 97248.5, "ser_std_ns": 2659.5754196767916, "ser_mad_ns": 2136.0, "ser_cv": 0.027293801890915927, "ser_min_ns": 92678.0, "ser_max_ns": 105723.0, "ser_p5_ns": 93686.4, "ser_p25_ns": 95259.5, "ser_p50_ns": 97248.5, "ser_p75_ns": 99596.0, "ser_p95_ns": 101127.95, "ser_p99_ns": 103875.08999999998, "ser_ci_low_ns": 96911.96329787235, "ser_ci_high_ns": 97946.44840425531, "deser_mean_ns": 630893.1702127659, "deser_median_ns": 631048.0, "deser_std_ns": 25538.6260324754, "deser_mad_ns": 21005.5, "deser_cv": 0.04048011174992212, "deser_min_ns": 589928.0, "deser_max_ns": 699623.0, "deser_p5_ns": 596943.2, "deser_p25_ns": 610648.75, "deser_p50_ns": 631048.0, "deser_p75_ns": 652323.0, "deser_p95_ns": 667951.55, "deser_p99_ns": 690197.45, "deser_ci_low_ns": 626220.2840425533, "deser_ci_high_ns": 636081.2340425531, "total_mean_ns": 728335.6382978724, "total_median_ns": 726546.5, "total_std_ns": 26616.58879521512, "total_mad_ns": 21986.0, "total_cv": 0.036544399855838926, "total_min_ns": 685038.0, "total_max_ns": 798746.0, "total_p5_ns": 692722.45, "total_p25_ns": 706145.5, "total_p50_ns": 726546.5, "total_p75_ns": 748730.75, "total_p95_ns": 768227.7, "total_p99_ns": 787791.5299999999, "total_ci_low_ns": 723107.8587765958, "total_ci_high_ns": 733629.5257978723, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 35.915229525611025}, {"serializer": "custom-binary", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "v2-1.0", "avg_time_ser_ns": 5865.119047619048, "avg_time_deser_ns": 24402.678571428572, "avg_time_total_ns": 30267.79761904762, "median_size_bytes": 30222.0, "avg_ops_per_sec": 33038.41305489293, "min_ops_per_sec": 31435.666907673447, "max_ops_per_sec": 34312.37990667033, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 5865.119047619048, "ser_median_ns": 5857.0, "ser_std_ns": 292.68155336646987, "ser_mad_ns": 211.5, "ser_cv": 0.049902065242014876, "ser_min_ns": 5258.0, "ser_max_ns": 6593.0, "ser_p5_ns": 5453.9, "ser_p25_ns": 5639.5, "ser_p50_ns": 5857.0, "ser_p75_ns": 6061.5, "ser_p95_ns": 6372.599999999999, "ser_p99_ns": 6492.570000000001, "ser_ci_low_ns": 5801.283630952381, "ser_ci_high_ns": 5925.023809523809, "deser_mean_ns": 24402.678571428572, "deser_median_ns": 24382.5, "deser_std_ns": 506.7146522574539, "deser_mad_ns": 372.5, "deser_cv": 0.020764714446172783, "deser_min_ns": 23738.0, "deser_max_ns": 26107.0, "deser_p5_ns": 23749.95, "deser_p25_ns": 23966.0, "deser_p50_ns": 24382.5, "deser_p75_ns": 24683.5, "deser_p95_ns": 25471.85, "deser_p99_ns": 25741.8, "deser_ci_low_ns": 24298.664285714287, "deser_ci_high_ns": 24514.253869047618, "total_mean_ns": 30267.79761904762, "total_median_ns": 30183.5, "total_std_ns": 673.8106483826008, "total_mad_ns": 439.5, "total_cv": 0.022261634522049586, "total_min_ns": 29144.0, "total_max_ns": 31811.0, "total_p5_ns": 29252.8, "total_p25_ns": 29867.5, "total_p50_ns": 30183.5, "total_p75_ns": 30712.0, "total_p95_ns": 31395.2, "total_p99_ns": 31555.36, "total_ci_low_ns": 30130.83779761905, "total_ci_high_ns": 30411.986904761907, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "nanopb", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.4.9", "avg_time_ser_ns": 8867.862068965518, "avg_time_deser_ns": 29730.954022988506, "avg_time_total_ns": 38598.816091954024, "median_size_bytes": 32422.0, "avg_ops_per_sec": 25907.530366156785, "min_ops_per_sec": 24264.77724934485, "max_ops_per_sec": 27072.391575071742, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 8867.862068965518, "ser_median_ns": 8821.0, "ser_std_ns": 385.29681015627403, "ser_mad_ns": 218.0, "ser_cv": 0.04344866971991829, "ser_min_ns": 7909.0, "ser_max_ns": 9797.0, "ser_p5_ns": 8204.1, "ser_p25_ns": 8624.0, "ser_p50_ns": 8821.0, "ser_p75_ns": 9059.0, "ser_p95_ns": 9501.7, "ser_p99_ns": 9670.58, "ser_ci_low_ns": 8784.673850574713, "ser_ci_high_ns": 8944.932183908046, "deser_mean_ns": 29730.954022988506, "deser_median_ns": 29586.0, "deser_std_ns": 770.0009650861662, "deser_mad_ns": 445.0, "deser_cv": 0.025898965922546167, "deser_min_ns": 28698.0, "deser_max_ns": 31938.0, "deser_p5_ns": 28915.5, "deser_p25_ns": 29130.0, "deser_p50_ns": 29586.0, "deser_p75_ns": 29862.0, "deser_p95_ns": 31384.3, "deser_p99_ns": 31891.56, "deser_ci_low_ns": 29578.400574712643, "deser_ci_high_ns": 29886.394827586206, "total_mean_ns": 38598.816091954024, "total_median_ns": 38429.0, "total_std_ns": 1011.4312967820063, "total_mad_ns": 675.0, "total_cv": 0.026203687034661163, "total_min_ns": 36938.0, "total_max_ns": 41212.0, "total_p5_ns": 37353.5, "total_p25_ns": 37813.5, "total_p50_ns": 38429.0, "total_p75_ns": 39150.0, "total_p95_ns": 40578.0, "total_p99_ns": 41063.22, "total_ci_low_ns": 38396.01609195402, "total_ci_high_ns": 38806.31436781609, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.618479880646754}, {"serializer": "zcbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.9", "avg_time_ser_ns": 867.1734693877551, "avg_time_deser_ns": 11280.051020408164, "avg_time_total_ns": 12147.224489795919, "median_size_bytes": 316.0, "avg_ops_per_sec": 82323.33244849752, "min_ops_per_sec": 75312.54707034191, "max_ops_per_sec": 90628.96501721951, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 867.1734693877551, "ser_median_ns": 864.0, "ser_std_ns": 63.748705345285906, "ser_mad_ns": 44.0, "ser_cv": 0.07351320998126706, "ser_min_ns": 742.0, "ser_max_ns": 1034.0, "ser_p5_ns": 775.0, "ser_p25_ns": 819.0, "ser_p50_ns": 864.0, "ser_p75_ns": 903.5, "ser_p95_ns": 994.6499999999999, "ser_p99_ns": 1021.39, "ser_ci_low_ns": 854.2841836734694, "ser_ci_high_ns": 880.3280612244898, "deser_mean_ns": 11280.051020408164, "deser_median_ns": 11310.5, "deser_std_ns": 525.8935522498037, "deser_mad_ns": 389.0, "deser_cv": 0.046621557943163854, "deser_min_ns": 10280.0, "deser_max_ns": 12413.0, "deser_p5_ns": 10403.5, "deser_p25_ns": 10890.0, "deser_p50_ns": 11310.5, "deser_p75_ns": 11693.5, "deser_p95_ns": 11987.65, "deser_p99_ns": 12396.51, "deser_ci_low_ns": 11175.546938775511, "deser_ci_high_ns": 11388.827551020408, "total_mean_ns": 12147.224489795919, "total_median_ns": 12192.5, "total_std_ns": 550.6478945060662, "total_mad_ns": 420.0, "total_cv": 0.04533116968148808, "total_min_ns": 11034.0, "total_max_ns": 13278.0, "total_p5_ns": 11251.35, "total_p25_ns": 11747.25, "total_p50_ns": 12192.5, "total_p75_ns": 12583.0, "total_p95_ns": 12867.1, "total_p99_ns": 13222.710000000001, "total_ci_low_ns": 12030.731632653062, "total_ci_high_ns": 12252.43443877551, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.61649634012453}, {"serializer": "parson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.5.3", "avg_time_ser_ns": 3874.9895833333335, "avg_time_deser_ns": 3491.71875, "avg_time_total_ns": 7366.708333333333, "median_size_bytes": 381.0, "avg_ops_per_sec": 135745.8385416372, "min_ops_per_sec": 118581.76212498518, "max_ops_per_sec": 156372.1657544957, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 3874.9895833333335, "ser_median_ns": 3848.0, "ser_std_ns": 340.6777917403595, "ser_mad_ns": 256.5, "ser_cv": 0.0879170858176353, "ser_min_ns": 3236.0, "ser_max_ns": 4626.0, "ser_p5_ns": 3338.25, "ser_p25_ns": 3612.75, "ser_p50_ns": 3848.0, "ser_p75_ns": 4127.0, "ser_p95_ns": 4419.25, "ser_p99_ns": 4550.95, "ser_ci_low_ns": 3806.37890625, "ser_ci_high_ns": 3939.9489583333334, "deser_mean_ns": 3491.71875, "deser_median_ns": 3496.0, "deser_std_ns": 184.3210416137532, "deser_mad_ns": 134.0, "deser_cv": 0.052788055055623596, "deser_min_ns": 3045.0, "deser_max_ns": 3894.0, "deser_p5_ns": 3216.75, "deser_p25_ns": 3351.5, "deser_p50_ns": 3496.0, "deser_p75_ns": 3621.75, "deser_p95_ns": 3785.5, "deser_p99_ns": 3847.45, "deser_ci_low_ns": 3456.02578125, "deser_ci_high_ns": 3528.0427083333334, "total_mean_ns": 7366.708333333333, "total_median_ns": 7345.5, "total_std_ns": 486.74804714914757, "total_mad_ns": 341.5, "total_cv": 0.0660740218187654, "total_min_ns": 6395.0, "total_max_ns": 8433.0, "total_p5_ns": 6597.0, "total_p25_ns": 7014.5, "total_p50_ns": 7345.5, "total_p75_ns": 7707.75, "total_p95_ns": 8166.0, "total_p99_ns": 8317.1, "total_ci_low_ns": 7268.992447916667, "total_ci_high_ns": 7464.644010416666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.034585638734324}, {"serializer": "cJSON", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.7.18", "avg_time_ser_ns": 2707.9148936170213, "avg_time_deser_ns": 3671.446808510638, "avg_time_total_ns": 6379.36170212766, "median_size_bytes": 381.0, "avg_ops_per_sec": 156755.49478037553, "min_ops_per_sec": 135153.39910798756, "max_ops_per_sec": 191387.55980861245, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 2707.9148936170213, "ser_median_ns": 2678.5, "ser_std_ns": 273.6460966785529, "ser_mad_ns": 158.5, "ser_cv": 0.1010541717258469, "ser_min_ns": 2140.0, "ser_max_ns": 3492.0, "ser_p5_ns": 2287.35, "ser_p25_ns": 2521.0, "ser_p50_ns": 2678.5, "ser_p75_ns": 2874.5, "ser_p95_ns": 3174.05, "ser_p99_ns": 3478.0499999999997, "ser_ci_low_ns": 2652.798670212766, "ser_ci_high_ns": 2763.198404255319, "deser_mean_ns": 3671.446808510638, "deser_median_ns": 3716.0, "deser_std_ns": 253.78568627800374, "deser_mad_ns": 194.5, "deser_cv": 0.06912416262976029, "deser_min_ns": 3064.0, "deser_max_ns": 4254.0, "deser_p5_ns": 3279.35, "deser_p25_ns": 3475.75, "deser_p50_ns": 3716.0, "deser_p75_ns": 3830.75, "deser_p95_ns": 4045.65, "deser_p99_ns": 4178.669999999999, "deser_ci_low_ns": 3620.125, "deser_ci_high_ns": 3719.771542553191, "total_mean_ns": 6379.36170212766, "total_median_ns": 6396.5, "total_std_ns": 439.7496074212904, "total_mad_ns": 342.0, "total_cv": 0.06893316729080029, "total_min_ns": 5225.0, "total_max_ns": 7399.0, "total_p5_ns": 5705.3, "total_p25_ns": 6046.0, "total_p50_ns": 6396.5, "total_p75_ns": 6695.5, "total_p95_ns": 6996.15, "total_p99_ns": 7324.599999999999, "total_ci_low_ns": 6293.631648936171, "total_ci_high_ns": 6462.980319148936, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.1503610186184}, {"serializer": "ubj", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.0-min", "avg_time_ser_ns": 259.1978021978022, "avg_time_deser_ns": 158.4065934065934, "avg_time_total_ns": 417.6043956043956, "median_size_bytes": 380.0, "avg_ops_per_sec": 2394610.8099573706, "min_ops_per_sec": 1960784.3137254901, "max_ops_per_sec": 2994011.976047904, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 259.1978021978022, "ser_median_ns": 261.0, "ser_std_ns": 30.915734857555332, "ser_mad_ns": 18.0, "ser_cv": 0.11927467978282677, "ser_min_ns": 197.0, "ser_max_ns": 334.0, "ser_p5_ns": 209.0, "ser_p25_ns": 235.0, "ser_p50_ns": 261.0, "ser_p75_ns": 278.0, "ser_p95_ns": 304.5, "ser_p99_ns": 332.2, "ser_ci_low_ns": 252.86813186813185, "ser_ci_high_ns": 265.52774725274725, "deser_mean_ns": 158.4065934065934, "deser_median_ns": 156.0, "deser_std_ns": 13.263130200319331, "deser_mad_ns": 9.0, "deser_cv": 0.08372839737974742, "deser_min_ns": 135.0, "deser_max_ns": 201.0, "deser_p5_ns": 141.0, "deser_p25_ns": 148.0, "deser_p50_ns": 156.0, "deser_p75_ns": 167.0, "deser_p95_ns": 181.0, "deser_p99_ns": 194.69999999999996, "deser_ci_low_ns": 155.76895604395605, "deser_ci_high_ns": 161.15412087912088, "total_mean_ns": 417.6043956043956, "total_median_ns": 417.0, "total_std_ns": 36.33635434562261, "total_mad_ns": 20.0, "total_cv": 0.08701142691046938, "total_min_ns": 334.0, "total_max_ns": 510.0, "total_p5_ns": 360.0, "total_p25_ns": 395.0, "total_p50_ns": 417.0, "total_p75_ns": 436.0, "total_p95_ns": 481.5, "total_p99_ns": 496.4999999999999, "total_ci_low_ns": 410.0989010989011, "total_ci_high_ns": 425.2425824175824, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.9079821277623475, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.3779325218655565}, {"serializer": "nanopb", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.4.9", "avg_time_ser_ns": 332.77659574468083, "avg_time_deser_ns": 264.51063829787233, "avg_time_total_ns": 597.2872340425532, "median_size_bytes": 338.0, "avg_ops_per_sec": 1674236.352302075, "min_ops_per_sec": 1383125.8644536652, "max_ops_per_sec": 2044989.7750511249, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 332.77659574468083, "ser_median_ns": 328.5, "ser_std_ns": 38.55931173685244, "ser_mad_ns": 23.5, "ser_cv": 0.11587146521096288, "ser_min_ns": 256.0, "ser_max_ns": 437.0, "ser_p5_ns": 279.65, "ser_p25_ns": 307.0, "ser_p50_ns": 328.5, "ser_p75_ns": 355.5, "ser_p95_ns": 399.7, "ser_p99_ns": 433.28, "ser_ci_low_ns": 325.1803191489362, "ser_ci_high_ns": 340.6712765957447, "deser_mean_ns": 264.51063829787233, "deser_median_ns": 264.0, "deser_std_ns": 22.33409307687889, "deser_mad_ns": 17.0, "deser_cv": 0.08443551919347715, "deser_min_ns": 228.0, "deser_max_ns": 333.0, "deser_p5_ns": 232.3, "deser_p25_ns": 247.0, "deser_p50_ns": 264.0, "deser_p75_ns": 278.75, "deser_p95_ns": 302.75, "deser_p99_ns": 325.55999999999995, "deser_ci_low_ns": 259.96702127659574, "deser_ci_high_ns": 269.02154255319147, "total_mean_ns": 597.2872340425532, "total_median_ns": 593.5, "total_std_ns": 48.42766967464652, "total_mad_ns": 31.5, "total_cv": 0.08107936502657001, "total_min_ns": 489.0, "total_max_ns": 723.0, "total_p5_ns": 526.0, "total_p25_ns": 562.5, "total_p50_ns": 593.5, "total_p75_ns": 624.0, "total_p95_ns": 680.15, "total_p99_ns": 709.9799999999999, "total_ci_low_ns": 587.7970744680852, "total_ci_high_ns": 606.830585106383, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.30878235076037}, {"serializer": "mpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.1", "avg_time_ser_ns": 355.8510638297872, "avg_time_deser_ns": 1283.0106382978724, "avg_time_total_ns": 1638.8617021276596, "median_size_bytes": 316.0, "avg_ops_per_sec": 610179.6135096363, "min_ops_per_sec": 403551.2510088781, "max_ops_per_sec": 944287.0632672332, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 355.8510638297872, "ser_median_ns": 348.5, "ser_std_ns": 39.655765407301026, "ser_mad_ns": 27.0, "ser_cv": 0.11143922117447823, "ser_min_ns": 289.0, "ser_max_ns": 468.0, "ser_p5_ns": 305.3, "ser_p25_ns": 326.5, "ser_p50_ns": 348.5, "ser_p75_ns": 380.0, "ser_p95_ns": 425.9999999999999, "ser_p99_ns": 467.07, "ser_ci_low_ns": 348.32925531914896, "ser_ci_high_ns": 363.6191489361702, "deser_mean_ns": 1283.0106382978724, "deser_median_ns": 1277.5, "deser_std_ns": 386.82508327007446, "deser_mad_ns": 352.5, "deser_cv": 0.3014979546726615, "deser_min_ns": 730.0, "deser_max_ns": 2085.0, "deser_p5_ns": 824.65, "deser_p25_ns": 917.0, "deser_p50_ns": 1277.5, "deser_p75_ns": 1589.25, "deser_p95_ns": 1934.1, "deser_p99_ns": 2027.3399999999997, "deser_ci_low_ns": 1202.5518617021278, "deser_ci_high_ns": 1361.715159574468, "total_mean_ns": 1638.8617021276596, "total_median_ns": 1633.0, "total_std_ns": 404.00318323732154, "total_mad_ns": 358.5, "total_cv": 0.24651450620441162, "total_min_ns": 1059.0, "total_max_ns": 2478.0, "total_p5_ns": 1148.5, "total_p25_ns": 1267.0, "total_p50_ns": 1633.0, "total_p75_ns": 1946.75, "total_p95_ns": 2304.75, "total_p99_ns": 2396.1599999999994, "total_ci_low_ns": 1558.825, "total_ci_high_ns": 1724.5356382978723, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.493444834384904}, {"serializer": "custom-binary", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "v2-1.0", "avg_time_ser_ns": 216.74725274725276, "avg_time_deser_ns": 118.5934065934066, "avg_time_total_ns": 335.34065934065933, "median_size_bytes": 343.0, "avg_ops_per_sec": 2982042.2073666276, "min_ops_per_sec": 2341920.37470726, "max_ops_per_sec": 3906250.0, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 216.74725274725276, "ser_median_ns": 212.0, "ser_std_ns": 28.622676870929304, "ser_mad_ns": 21.0, "ser_cv": 0.13205554630169167, "ser_min_ns": 157.0, "ser_max_ns": 303.0, "ser_p5_ns": 174.5, "ser_p25_ns": 194.5, "ser_p50_ns": 212.0, "ser_p75_ns": 238.0, "ser_p95_ns": 261.0, "ser_p99_ns": 290.3999999999999, "ser_ci_low_ns": 211.09752747252747, "ser_ci_high_ns": 222.57142857142858, "deser_mean_ns": 118.5934065934066, "deser_median_ns": 118.0, "deser_std_ns": 10.496537018335589, "deser_mad_ns": 6.0, "deser_cv": 0.0885086053251055, "deser_min_ns": 98.0, "deser_max_ns": 146.0, "deser_p5_ns": 105.5, "deser_p25_ns": 112.0, "deser_p50_ns": 118.0, "deser_p75_ns": 125.0, "deser_p95_ns": 137.0, "deser_p99_ns": 142.39999999999998, "deser_ci_low_ns": 116.59313186813188, "deser_ci_high_ns": 120.72582417582417, "total_mean_ns": 335.34065934065933, "total_median_ns": 332.0, "total_std_ns": 32.45483007375012, "total_mad_ns": 20.0, "total_cv": 0.0967816731128346, "total_min_ns": 256.0, "total_max_ns": 427.0, "total_p5_ns": 288.0, "total_p25_ns": 316.0, "total_p50_ns": 332.0, "total_p75_ns": 355.5, "total_p95_ns": 390.5, "total_p99_ns": 422.5, "total_ci_low_ns": 328.65769230769234, "total_ci_high_ns": 342.38571428571424, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "msgpack-c", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "6.0.1", "avg_time_ser_ns": 529.959595959596, "avg_time_deser_ns": 1088.121212121212, "avg_time_total_ns": 1618.080808080808, "median_size_bytes": 316.0, "avg_ops_per_sec": 618016.1058742743, "min_ops_per_sec": 401284.1091492777, "max_ops_per_sec": 982318.2711198428, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 529.959595959596, "ser_median_ns": 526.0, "ser_std_ns": 45.893158796544846, "ser_mad_ns": 34.0, "ser_cv": 0.08659746732851636, "ser_min_ns": 443.0, "ser_max_ns": 644.0, "ser_p5_ns": 460.9, "ser_p25_ns": 492.5, "ser_p50_ns": 526.0, "ser_p75_ns": 562.0, "ser_p95_ns": 604.8999999999999, "ser_p99_ns": 639.1, "ser_ci_low_ns": 521.3906565656565, "ser_ci_high_ns": 539.3234848484849, "deser_mean_ns": 1088.121212121212, "deser_median_ns": 1052.0, "deser_std_ns": 395.3567046771936, "deser_mad_ns": 354.0, "deser_cv": 0.3633388452252253, "deser_min_ns": 562.0, "deser_max_ns": 1943.0, "deser_p5_ns": 621.6, "deser_p25_ns": 698.5, "deser_p50_ns": 1052.0, "deser_p75_ns": 1427.5, "deser_p95_ns": 1770.0, "deser_p99_ns": 1936.1399999999999, "deser_ci_low_ns": 1014.6042929292929, "deser_ci_high_ns": 1167.5275252525253, "total_mean_ns": 1618.080808080808, "total_median_ns": 1573.0, "total_std_ns": 406.42484750409653, "total_mad_ns": 363.0, "total_cv": 0.2511771015850275, "total_min_ns": 1018.0, "total_max_ns": 2492.0, "total_p5_ns": 1120.4, "total_p25_ns": 1233.0, "total_p50_ns": 1573.0, "total_p75_ns": 1952.0, "total_p95_ns": 2292.7, "total_p99_ns": 2460.64, "total_ci_low_ns": 1541.2020202020203, "total_ci_high_ns": 1698.0641414141414, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.3412824179406035}, {"serializer": "tinycbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.6.0", "avg_time_ser_ns": 507.1326530612245, "avg_time_deser_ns": 9960.061224489797, "avg_time_total_ns": 10467.19387755102, "median_size_bytes": 315.0, "avg_ops_per_sec": 95536.58905131192, "min_ops_per_sec": 88160.09873931059, "max_ops_per_sec": 103305.78512396694, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 507.1326530612245, "ser_median_ns": 505.5, "ser_std_ns": 41.44344992085372, "ser_mad_ns": 28.0, "ser_cv": 0.08172112300536559, "ser_min_ns": 414.0, "ser_max_ns": 601.0, "ser_p5_ns": 442.8, "ser_p25_ns": 479.25, "ser_p50_ns": 505.5, "ser_p75_ns": 536.5, "ser_p95_ns": 577.3, "ser_p99_ns": 595.1800000000001, "ser_ci_low_ns": 499.38750000000005, "ser_ci_high_ns": 515.081887755102, "deser_mean_ns": 9960.061224489797, "deser_median_ns": 10105.5, "deser_std_ns": 392.6917895420566, "deser_mad_ns": 259.0, "deser_cv": 0.0394266441431611, "deser_min_ns": 9192.0, "deser_max_ns": 10797.0, "deser_p5_ns": 9319.9, "deser_p25_ns": 9558.5, "deser_p50_ns": 10105.5, "deser_p75_ns": 10273.0, "deser_p95_ns": 10438.75, "deser_p99_ns": 10548.68, "deser_ci_low_ns": 9883.29030612245, "deser_ci_high_ns": 10036.055357142857, "total_mean_ns": 10467.19387755102, "total_median_ns": 10608.5, "total_std_ns": 400.3929167669937, "total_mad_ns": 255.0, "total_cv": 0.03825217354822442, "total_min_ns": 9680.0, "total_max_ns": 11343.0, "total_p5_ns": 9797.8, "total_p25_ns": 10054.25, "total_p50_ns": 10608.5, "total_p75_ns": 10787.0, "total_p95_ns": 10956.3, "total_p99_ns": 11036.48, "total_ci_low_ns": 10389.803826530611, "total_ci_high_ns": 10544.414285714287, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 34.88751423828175}, {"serializer": "protobuf-wire", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "wire-v2", "avg_time_ser_ns": 305.5578947368421, "avg_time_deser_ns": 258.17894736842106, "avg_time_total_ns": 563.7368421052631, "median_size_bytes": 338.0, "avg_ops_per_sec": 1773877.3223788629, "min_ops_per_sec": 1503759.3984962406, "max_ops_per_sec": 2178649.237472767, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 305.5578947368421, "ser_median_ns": 302.0, "ser_std_ns": 30.696425666715758, "ser_mad_ns": 20.0, "ser_cv": 0.10046026038094243, "ser_min_ns": 239.0, "ser_max_ns": 388.0, "ser_p5_ns": 260.1, "ser_p25_ns": 285.0, "ser_p50_ns": 302.0, "ser_p75_ns": 324.5, "ser_p95_ns": 356.3, "ser_p99_ns": 386.12, "ser_ci_low_ns": 299.36763157894734, "ser_ci_high_ns": 311.69657894736844, "deser_mean_ns": 258.17894736842106, "deser_median_ns": 259.0, "deser_std_ns": 21.84518981444463, "deser_mad_ns": 16.0, "deser_cv": 0.08461259152657234, "deser_min_ns": 215.0, "deser_max_ns": 321.0, "deser_p5_ns": 224.4, "deser_p25_ns": 243.5, "deser_p50_ns": 259.0, "deser_p75_ns": 274.5, "deser_p95_ns": 291.3, "deser_p99_ns": 302.20000000000005, "deser_ci_low_ns": 253.83026315789473, "deser_ci_high_ns": 262.63184210526316, "total_mean_ns": 563.7368421052631, "total_median_ns": 564.0, "total_std_ns": 43.6312425945806, "total_mad_ns": 28.0, "total_cv": 0.07739647178573722, "total_min_ns": 459.0, "total_max_ns": 665.0, "total_p5_ns": 494.1, "total_p25_ns": 536.0, "total_p50_ns": 564.0, "total_p75_ns": 591.5, "total_p95_ns": 643.6999999999999, "total_p99_ns": 662.1800000000001, "total_ci_low_ns": 554.5684210526316, "total_ci_high_ns": 572.3055263157895, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.897235992501517}, {"serializer": "libbson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.27.5", "avg_time_ser_ns": 3313.5670103092784, "avg_time_deser_ns": 8987.639175257733, "avg_time_total_ns": 12301.20618556701, "median_size_bytes": 569.0, "avg_ops_per_sec": 81292.84111775142, "min_ops_per_sec": 74844.69725319961, "max_ops_per_sec": 90277.15085311908, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 3313.5670103092784, "ser_median_ns": 3308.0, "ser_std_ns": 371.0402018654362, "ser_mad_ns": 335.0, "ser_cv": 0.11197606709357129, "ser_min_ns": 2656.0, "ser_max_ns": 4073.0, "ser_p5_ns": 2814.8, "ser_p25_ns": 2972.0, "ser_p50_ns": 3308.0, "ser_p75_ns": 3641.0, "ser_p95_ns": 3876.999999999999, "ser_p99_ns": 4048.04, "ser_ci_low_ns": 3240.1747422680414, "ser_ci_high_ns": 3389.021391752577, "deser_mean_ns": 8987.639175257733, "deser_median_ns": 9104.0, "deser_std_ns": 369.77319021166574, "deser_mad_ns": 224.0, "deser_cv": 0.041142416045096955, "deser_min_ns": 8175.0, "deser_max_ns": 9690.0, "deser_p5_ns": 8396.4, "deser_p25_ns": 8601.0, "deser_p50_ns": 9104.0, "deser_p75_ns": 9247.0, "deser_p95_ns": 9459.8, "deser_p99_ns": 9622.8, "deser_ci_low_ns": 8917.18092783505, "deser_ci_high_ns": 9061.280670103093, "total_mean_ns": 12301.20618556701, "total_median_ns": 12345.0, "total_std_ns": 567.9659969675475, "total_mad_ns": 411.0, "total_cv": 0.04617156955176813, "total_min_ns": 11077.0, "total_max_ns": 13361.0, "total_p5_ns": 11344.6, "total_p25_ns": 11925.0, "total_p50_ns": 12345.0, "total_p75_ns": 12746.0, "total_p95_ns": 13103.2, "total_p99_ns": 13296.68, "total_ci_low_ns": 12189.791752577321, "total_ci_high_ns": 12409.832216494844, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.16230429829208}, {"serializer": "qcbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.5.1", "avg_time_ser_ns": 970.2708333333334, "avg_time_deser_ns": 9941.677083333334, "avg_time_total_ns": 10911.947916666666, "median_size_bytes": 315.0, "avg_ops_per_sec": 91642.66615244948, "min_ops_per_sec": 85535.88230262595, "max_ops_per_sec": 100090.08107296567, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 970.2708333333334, "ser_median_ns": 982.5, "ser_std_ns": 57.88290887948598, "ser_mad_ns": 42.0, "ser_cv": 0.05965644528407719, "ser_min_ns": 836.0, "ser_max_ns": 1089.0, "ser_p5_ns": 870.5, "ser_p25_ns": 928.0, "ser_p50_ns": 982.5, "ser_p75_ns": 1014.0, "ser_p95_ns": 1051.5, "ser_p99_ns": 1070.95, "ser_ci_low_ns": 959.0101562499999, "ser_ci_high_ns": 981.9705729166667, "deser_mean_ns": 9941.677083333334, "deser_median_ns": 10068.0, "deser_std_ns": 393.99830335706474, "deser_mad_ns": 243.0, "deser_cv": 0.03963096971008854, "deser_min_ns": 9137.0, "deser_max_ns": 10645.0, "deser_p5_ns": 9336.0, "deser_p25_ns": 9559.75, "deser_p50_ns": 10068.0, "deser_p75_ns": 10239.5, "deser_p95_ns": 10494.0, "deser_p99_ns": 10534.8, "deser_ci_low_ns": 9862.976041666667, "deser_ci_high_ns": 10020.158072916667, "total_mean_ns": 10911.947916666666, "total_median_ns": 11048.0, "total_std_ns": 435.7162855222401, "total_mad_ns": 297.0, "total_cv": 0.039930202091300014, "total_min_ns": 9991.0, "total_max_ns": 11691.0, "total_p5_ns": 10222.75, "total_p25_ns": 10495.75, "total_p50_ns": 11048.0, "total_p75_ns": 11248.75, "total_p95_ns": 11502.0, "total_p99_ns": 11561.8, "total_ci_low_ns": 10824.77265625, "total_ci_high_ns": 11000.933072916667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 33.64818534433845}, {"serializer": "flatcc", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.6.1", "avg_time_ser_ns": 437.2083333333333, "avg_time_deser_ns": 117.61458333333333, "avg_time_total_ns": 554.8229166666666, "median_size_bytes": 372.0, "avg_ops_per_sec": 1802376.8845164562, "min_ops_per_sec": 1470588.2352941176, "max_ops_per_sec": 2288329.519450801, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 437.2083333333333, "ser_median_ns": 437.5, "ser_std_ns": 55.33209151005584, "ser_mad_ns": 42.0, "ser_cv": 0.12655772383887737, "ser_min_ns": 319.0, "ser_max_ns": 564.0, "ser_p5_ns": 355.75, "ser_p25_ns": 394.5, "ser_p50_ns": 437.5, "ser_p75_ns": 474.5, "ser_p95_ns": 540.75, "ser_p99_ns": 561.15, "ser_ci_low_ns": 425.5296875, "ser_ci_high_ns": 447.98125, "deser_mean_ns": 117.61458333333333, "deser_median_ns": 115.5, "deser_std_ns": 10.455288051776193, "deser_mad_ns": 6.5, "deser_cv": 0.0888944870224528, "deser_min_ns": 100.0, "deser_max_ns": 145.0, "deser_p5_ns": 103.5, "deser_p25_ns": 110.0, "deser_p50_ns": 115.5, "deser_p75_ns": 123.5, "deser_p95_ns": 138.0, "deser_p99_ns": 142.14999999999998, "deser_ci_low_ns": 115.625, "deser_ci_high_ns": 119.72942708333333, "total_mean_ns": 554.8229166666666, "total_median_ns": 558.0, "total_std_ns": 59.419825646197935, "total_mad_ns": 47.5, "total_cv": 0.10709692022670526, "total_min_ns": 437.0, "total_max_ns": 680.0, "total_p5_ns": 465.0, "total_p25_ns": 507.75, "total_p50_ns": 558.0, "total_p75_ns": 597.75, "total_p95_ns": 659.75, "total_p99_ns": 674.3, "total_ci_low_ns": 543.2151041666667, "total_ci_high_ns": 567.1359375, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.532889817997989}, {"serializer": "protobuf-c", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.5.0", "avg_time_ser_ns": 330.6666666666667, "avg_time_deser_ns": 240.66666666666666, "avg_time_total_ns": 571.3333333333334, "median_size_bytes": 338.0, "avg_ops_per_sec": 1750291.715285881, "min_ops_per_sec": 1438848.9208633094, "max_ops_per_sec": 2197802.1978021977, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 330.6666666666667, "ser_median_ns": 328.5, "ser_std_ns": 37.99353592296753, "ser_mad_ns": 29.5, "ser_cv": 0.1148998062186518, "ser_min_ns": 249.0, "ser_max_ns": 418.0, "ser_p5_ns": 279.5, "ser_p25_ns": 299.0, "ser_p50_ns": 328.5, "ser_p75_ns": 357.25, "ser_p95_ns": 395.25, "ser_p99_ns": 416.1, "ser_ci_low_ns": 323.17682291666665, "ser_ci_high_ns": 338.2825520833333, "deser_mean_ns": 240.66666666666666, "deser_median_ns": 238.0, "deser_std_ns": 19.87628402560868, "deser_mad_ns": 11.0, "deser_cv": 0.08258843777953745, "deser_min_ns": 203.0, "deser_max_ns": 295.0, "deser_p5_ns": 206.75, "deser_p25_ns": 228.75, "deser_p50_ns": 238.0, "deser_p75_ns": 253.0, "deser_p95_ns": 272.5, "deser_p99_ns": 288.34999999999997, "deser_ci_low_ns": 236.73932291666668, "deser_ci_high_ns": 244.64583333333334, "total_mean_ns": 571.3333333333334, "total_median_ns": 568.5, "total_std_ns": 51.35483714554661, "total_mad_ns": 35.5, "total_cv": 0.08988594599570585, "total_min_ns": 455.0, "total_max_ns": 695.0, "total_p5_ns": 495.25, "total_p25_ns": 534.5, "total_p50_ns": 568.5, "total_p75_ns": 603.5, "total_p95_ns": 657.5, "total_p99_ns": 690.25, "total_ci_low_ns": 561.1557291666667, "total_ci_high_ns": 582.1046875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.43991290662302}, {"serializer": "cbor-encode", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.11.0", "avg_time_ser_ns": 2938.31914893617, "avg_time_deser_ns": 9962.08510638298, "avg_time_total_ns": 12900.404255319148, "median_size_bytes": 315.0, "avg_ops_per_sec": 77516.9506480912, "min_ops_per_sec": 71581.96134574087, "max_ops_per_sec": 84774.499830451, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 2938.31914893617, "ser_median_ns": 2903.5, "ser_std_ns": 228.83309467988516, "ser_mad_ns": 147.5, "ser_cv": 0.07787891072443069, "ser_min_ns": 2485.0, "ser_max_ns": 3502.0, "ser_p5_ns": 2550.9, "ser_p25_ns": 2801.0, "ser_p50_ns": 2903.5, "ser_p75_ns": 3087.75, "ser_p95_ns": 3331.8999999999996, "ser_p99_ns": 3454.5699999999997, "ser_ci_low_ns": 2890.956914893617, "ser_ci_high_ns": 2983.7292553191487, "deser_mean_ns": 9962.08510638298, "deser_median_ns": 10086.5, "deser_std_ns": 403.8338490335566, "deser_mad_ns": 257.0, "deser_cv": 0.04053708081401646, "deser_min_ns": 9125.0, "deser_max_ns": 10663.0, "deser_p5_ns": 9313.6, "deser_p25_ns": 9556.5, "deser_p50_ns": 10086.5, "deser_p75_ns": 10298.25, "deser_p95_ns": 10499.5, "deser_p99_ns": 10576.51, "deser_ci_low_ns": 9879.915425531915, "deser_ci_high_ns": 10042.193882978723, "total_mean_ns": 12900.404255319148, "total_median_ns": 12991.5, "total_std_ns": 516.4084263229992, "total_mad_ns": 383.5, "total_cv": 0.04003040649753836, "total_min_ns": 11796.0, "total_max_ns": 13970.0, "total_p5_ns": 12040.05, "total_p25_ns": 12494.25, "total_p50_ns": 12991.5, "total_p75_ns": 13285.0, "total_p95_ns": 13629.5, "total_p99_ns": 13921.64, "total_ci_low_ns": 12796.157712765958, "total_ci_high_ns": 13002.749734042553, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 33.92665255735816}, {"serializer": "jansson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "2.14", "avg_time_ser_ns": 5225.18085106383, "avg_time_deser_ns": 6762.734042553191, "avg_time_total_ns": 11987.91489361702, "median_size_bytes": 381.0, "avg_ops_per_sec": 83417.34228797797, "min_ops_per_sec": 76330.05114113426, "max_ops_per_sec": 92584.01999814832, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 5225.18085106383, "ser_median_ns": 5213.0, "ser_std_ns": 296.2611810064068, "ser_mad_ns": 185.5, "ser_cv": 0.05669874200547316, "ser_min_ns": 4554.0, "ser_max_ns": 5872.0, "ser_p5_ns": 4752.75, "ser_p25_ns": 5028.0, "ser_p50_ns": 5213.0, "ser_p75_ns": 5395.25, "ser_p95_ns": 5731.349999999999, "ser_p99_ns": 5852.47, "ser_ci_low_ns": 5163.756117021277, "ser_ci_high_ns": 5280.772340425532, "deser_mean_ns": 6762.734042553191, "deser_median_ns": 6793.0, "deser_std_ns": 274.48192354966665, "deser_mad_ns": 195.5, "deser_cv": 0.04058741949964947, "deser_min_ns": 6173.0, "deser_max_ns": 7389.0, "deser_p5_ns": 6276.25, "deser_p25_ns": 6576.75, "deser_p50_ns": 6793.0, "deser_p75_ns": 6946.25, "deser_p95_ns": 7172.45, "deser_p99_ns": 7240.199999999999, "deser_ci_low_ns": 6707.244680851064, "deser_ci_high_ns": 6813.989893617021, "total_mean_ns": 11987.91489361702, "total_median_ns": 12030.5, "total_std_ns": 531.1637590381896, "total_mad_ns": 394.5, "total_cv": 0.04430826909865771, "total_min_ns": 10801.0, "total_max_ns": 13101.0, "total_p5_ns": 11079.85, "total_p25_ns": 11625.25, "total_p50_ns": 12030.5, "total_p75_ns": 12383.75, "total_p95_ns": 12781.9, "total_p99_ns": 13015.439999999999, "total_ci_low_ns": 11872.822074468086, "total_ci_high_ns": 12090.55744680851, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.592036469294356}, {"serializer": "avro-c", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.11.3", "avg_time_ser_ns": 501.08247422680415, "avg_time_deser_ns": 389.45360824742266, "avg_time_total_ns": 890.5360824742268, "median_size_bytes": 346.0, "avg_ops_per_sec": 1122919.1266699082, "min_ops_per_sec": 850340.1360544218, "max_ops_per_sec": 1519756.838905775, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 501.08247422680415, "ser_median_ns": 501.0, "ser_std_ns": 72.9562754473374, "ser_mad_ns": 55.0, "ser_cv": 0.1455973401582497, "ser_min_ns": 352.0, "ser_max_ns": 698.0, "ser_p5_ns": 391.4, "ser_p25_ns": 443.0, "ser_p50_ns": 501.0, "ser_p75_ns": 554.0, "ser_p95_ns": 627.9999999999998, "ser_p99_ns": 670.1599999999997, "ser_ci_low_ns": 486.5979381443299, "ser_ci_high_ns": 515.7226804123711, "deser_mean_ns": 389.45360824742266, "deser_median_ns": 394.0, "deser_std_ns": 50.1375235017307, "deser_mad_ns": 43.0, "deser_cv": 0.12873811524652243, "deser_min_ns": 299.0, "deser_max_ns": 511.0, "deser_p5_ns": 316.0, "deser_p25_ns": 346.0, "deser_p50_ns": 394.0, "deser_p75_ns": 425.0, "deser_p95_ns": 464.0, "deser_p99_ns": 507.15999999999997, "deser_ci_low_ns": 379.515206185567, "deser_ci_high_ns": 399.44587628865975, "total_mean_ns": 890.5360824742268, "total_median_ns": 907.0, "total_std_ns": 113.80933085059324, "total_mad_ns": 94.0, "total_cv": 0.1277986744056348, "total_min_ns": 658.0, "total_max_ns": 1176.0, "total_p5_ns": 735.4, "total_p25_ns": 786.0, "total_p50_ns": 907.0, "total_p75_ns": 967.0, "total_p95_ns": 1066.6, "total_p99_ns": 1127.0399999999995, "total_ci_low_ns": 868.3268041237113, "total_ci_high_ns": 913.980412371134, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.518947920417721}, {"serializer": "yyjson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.10.0", "avg_time_ser_ns": 752.4947368421052, "avg_time_deser_ns": 2060.1684210526314, "avg_time_total_ns": 2812.6631578947367, "median_size_bytes": 381.0, "avg_ops_per_sec": 355534.9303712908, "min_ops_per_sec": 271370.42062415194, "max_ops_per_sec": 457456.54162854527, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 752.4947368421052, "ser_median_ns": 759.0, "ser_std_ns": 59.906287398542894, "ser_mad_ns": 42.0, "ser_cv": 0.07961024106287262, "ser_min_ns": 602.0, "ser_max_ns": 914.0, "ser_p5_ns": 663.1, "ser_p25_ns": 707.5, "ser_p50_ns": 759.0, "ser_p75_ns": 787.5, "ser_p95_ns": 846.8, "ser_p99_ns": 899.9000000000001, "ser_ci_low_ns": 740.4521052631579, "ser_ci_high_ns": 764.3907894736842, "deser_mean_ns": 2060.1684210526314, "deser_median_ns": 2063.0, "deser_std_ns": 375.6025981780726, "deser_mad_ns": 334.0, "deser_cv": 0.18231645254816622, "deser_min_ns": 1531.0, "deser_max_ns": 2899.0, "deser_p5_ns": 1584.8, "deser_p25_ns": 1729.0, "deser_p50_ns": 2063.0, "deser_p75_ns": 2361.5, "deser_p95_ns": 2686.0, "deser_p99_ns": 2814.4, "deser_ci_low_ns": 1984.7905263157895, "deser_ci_high_ns": 2134.922894736842, "total_mean_ns": 2812.6631578947367, "total_median_ns": 2800.0, "total_std_ns": 399.69588467228954, "total_mad_ns": 347.0, "total_cv": 0.14210584852665392, "total_min_ns": 2186.0, "total_max_ns": 3685.0, "total_p5_ns": 2258.1, "total_p25_ns": 2461.5, "total_p50_ns": 2800.0, "total_p75_ns": 3146.5, "total_p95_ns": 3501.8, "total_p99_ns": 3672.78, "total_ci_low_ns": 2736.7536842105264, "total_ci_high_ns": 2894.875789473684, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.609047888808636}, {"serializer": "json-c", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.15", "avg_time_ser_ns": 2833.6354166666665, "avg_time_deser_ns": 5055.635416666667, "avg_time_total_ns": 7889.270833333333, "median_size_bytes": 381.0, "avg_ops_per_sec": 126754.42650223801, "min_ops_per_sec": 110204.98126515318, "max_ops_per_sec": 147080.45300779527, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 2833.6354166666665, "ser_median_ns": 2809.5, "ser_std_ns": 248.2820179083992, "ser_mad_ns": 157.0, "ser_cv": 0.08761960570088603, "ser_min_ns": 2417.0, "ser_max_ns": 3435.0, "ser_p5_ns": 2462.5, "ser_p25_ns": 2647.75, "ser_p50_ns": 2809.5, "ser_p75_ns": 2962.0, "ser_p95_ns": 3279.25, "ser_p99_ns": 3387.5, "ser_ci_low_ns": 2784.6442708333334, "ser_ci_high_ns": 2882.1468750000004, "deser_mean_ns": 5055.635416666667, "deser_median_ns": 5055.0, "deser_std_ns": 373.09606833380104, "deser_mad_ns": 264.5, "deser_cv": 0.07379805654178176, "deser_min_ns": 4277.0, "deser_max_ns": 5794.0, "deser_p5_ns": 4456.75, "deser_p25_ns": 4791.75, "deser_p50_ns": 5055.0, "deser_p75_ns": 5341.75, "deser_p95_ns": 5656.0, "deser_p99_ns": 5733.2, "deser_ci_low_ns": 4983.185156250001, "deser_ci_high_ns": 5130.177864583333, "total_mean_ns": 7889.270833333333, "total_median_ns": 7886.5, "total_std_ns": 532.2471424197927, "total_mad_ns": 362.0, "total_cv": 0.06746468129487582, "total_min_ns": 6799.0, "total_max_ns": 9074.0, "total_p5_ns": 7044.5, "total_p25_ns": 7544.75, "total_p50_ns": 7886.5, "total_p75_ns": 8265.25, "total_p95_ns": 8728.25, "total_p99_ns": 9039.8, "total_ci_low_ns": 7789.8015625, "total_ci_high_ns": 7992.821875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.690353276191587}, {"serializer": "qcbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.5.1", "avg_time_ser_ns": 1263.48, "avg_time_deser_ns": 10364.96, "avg_time_total_ns": 11628.44, "median_size_bytes": 315.0, "avg_ops_per_sec": 85996.05794070399, "min_ops_per_sec": 83920.77878482713, "max_ops_per_sec": 88097.96493700995, "runs": 75, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 24, "ser_mean_ns": 1263.48, "ser_median_ns": 1259.0, "ser_std_ns": 54.557274640658285, "ser_mad_ns": 32.0, "ser_cv": 0.04318016481515994, "ser_min_ns": 1152.0, "ser_max_ns": 1453.0, "ser_p5_ns": 1176.7, "ser_p25_ns": 1232.0, "ser_p50_ns": 1259.0, "ser_p75_ns": 1293.5, "ser_p95_ns": 1357.6, "ser_p99_ns": 1437.46, "ser_ci_low_ns": 1251.453, "ser_ci_high_ns": 1276.8136666666667, "deser_mean_ns": 10364.96, "deser_median_ns": 10345.0, "deser_std_ns": 127.95094499191605, "deser_mad_ns": 95.0, "deser_cv": 0.012344567175552637, "deser_min_ns": 10121.0, "deser_max_ns": 10714.0, "deser_p5_ns": 10185.4, "deser_p25_ns": 10270.0, "deser_p50_ns": 10345.0, "deser_p75_ns": 10457.5, "deser_p95_ns": 10587.4, "deser_p99_ns": 10682.18, "deser_ci_low_ns": 10334.796999999999, "deser_ci_high_ns": 10394.587666666666, "total_mean_ns": 11628.44, "total_median_ns": 11621.0, "total_std_ns": 134.8765441511687, "total_mad_ns": 94.0, "total_cv": 0.011598851105665824, "total_min_ns": 11351.0, "total_max_ns": 11916.0, "total_p5_ns": 11418.7, "total_p25_ns": 11527.5, "total_p50_ns": 11621.0, "total_p75_ns": 11716.5, "total_p95_ns": 11853.9, "total_p99_ns": 11899.72, "total_ci_low_ns": 11599.294333333333, "total_ci_high_ns": 11658.565666666665, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 108.22766778612502}, {"serializer": "libbson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.27.5", "avg_time_ser_ns": 3386.0860215053763, "avg_time_deser_ns": 9441.90322580645, "avg_time_total_ns": 12827.989247311827, "median_size_bytes": 569.0, "avg_ops_per_sec": 77954.53992990797, "min_ops_per_sec": 74366.02959767978, "max_ops_per_sec": 81373.58613394092, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 3386.0860215053763, "ser_median_ns": 3305.0, "ser_std_ns": 241.4055606107327, "ser_mad_ns": 139.0, "ser_cv": 0.07129339274830629, "ser_min_ns": 2998.0, "ser_max_ns": 3939.0, "ser_p5_ns": 3094.4, "ser_p25_ns": 3211.0, "ser_p50_ns": 3305.0, "ser_p75_ns": 3540.0, "ser_p95_ns": 3842.2, "ser_p99_ns": 3927.96, "ser_ci_low_ns": 3338.40376344086, "ser_ci_high_ns": 3436.8639784946236, "deser_mean_ns": 9441.90322580645, "deser_median_ns": 9431.0, "deser_std_ns": 119.74302780067143, "deser_mad_ns": 70.0, "deser_cv": 0.012682085903336925, "deser_min_ns": 9158.0, "deser_max_ns": 9732.0, "deser_p5_ns": 9252.8, "deser_p25_ns": 9362.0, "deser_p50_ns": 9431.0, "deser_p75_ns": 9508.0, "deser_p95_ns": 9664.4, "deser_p99_ns": 9723.72, "deser_ci_low_ns": 9417.00806451613, "deser_ci_high_ns": 9466.40564516129, "total_mean_ns": 12827.989247311827, "total_median_ns": 12770.0, "total_std_ns": 282.8151376023497, "total_mad_ns": 182.0, "total_cv": 0.022046723937004787, "total_min_ns": 12289.0, "total_max_ns": 13447.0, "total_p5_ns": 12401.2, "total_p25_ns": 12645.0, "total_p50_ns": 12770.0, "total_p75_ns": 13059.0, "total_p95_ns": 13313.199999999999, "total_p99_ns": 13440.56, "total_ci_low_ns": 12770.864516129033, "total_ci_high_ns": 12886.195430107527, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 56.26684285667578}, {"serializer": "protobuf-wire", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "wire-v2", "avg_time_ser_ns": 590.3026315789474, "avg_time_deser_ns": 473.8157894736842, "avg_time_total_ns": 1064.1184210526317, "median_size_bytes": 338.0, "avg_ops_per_sec": 939745.0323346481, "min_ops_per_sec": 813669.6501220504, "max_ops_per_sec": 1029866.1174047374, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 590.3026315789474, "ser_median_ns": 588.5, "ser_std_ns": 35.35082073044118, "ser_mad_ns": 21.0, "ser_cv": 0.05988592772470698, "ser_min_ns": 524.0, "ser_max_ns": 743.0, "ser_p5_ns": 544.5, "ser_p25_ns": 564.5, "ser_p50_ns": 588.5, "ser_p75_ns": 608.0, "ser_p95_ns": 646.0, "ser_p99_ns": 697.25, "ser_ci_low_ns": 582.802302631579, "ser_ci_high_ns": 598.5536184210526, "deser_mean_ns": 473.8157894736842, "deser_median_ns": 470.0, "deser_std_ns": 20.611783378327253, "deser_mad_ns": 14.0, "deser_cv": 0.04350168110949378, "deser_min_ns": 443.0, "deser_max_ns": 528.0, "deser_p5_ns": 446.0, "deser_p25_ns": 458.75, "deser_p50_ns": 470.0, "deser_p75_ns": 486.0, "deser_p95_ns": 506.25, "deser_p99_ns": 527.25, "deser_ci_low_ns": 469.5921052631579, "deser_ci_high_ns": 478.8421052631579, "total_mean_ns": 1064.1184210526317, "total_median_ns": 1065.0, "total_std_ns": 44.83301376002976, "total_mad_ns": 29.0, "total_cv": 0.042131601965578885, "total_min_ns": 971.0, "total_max_ns": 1229.0, "total_p5_ns": 1003.75, "total_p25_ns": 1032.0, "total_p50_ns": 1065.0, "total_p75_ns": 1083.0, "total_p95_ns": 1149.75, "total_p99_ns": 1187.0, "total_ci_low_ns": 1053.591447368421, "total_ci_high_ns": 1074.1592105263157, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.355238910063451}, {"serializer": "custom-binary", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "v2-1.0", "avg_time_ser_ns": 512.3866666666667, "avg_time_deser_ns": 326.6533333333333, "avg_time_total_ns": 839.04, "median_size_bytes": 343.0, "avg_ops_per_sec": 1191838.2913806255, "min_ops_per_sec": 1038421.5991692627, "max_ops_per_sec": 1298701.2987012987, "runs": 75, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 24, "ser_mean_ns": 512.3866666666667, "ser_median_ns": 506.0, "ser_std_ns": 35.169817116897775, "ser_mad_ns": 22.0, "ser_cv": 0.06863921215143078, "ser_min_ns": 451.0, "ser_max_ns": 614.0, "ser_p5_ns": 464.0, "ser_p25_ns": 490.0, "ser_p50_ns": 506.0, "ser_p75_ns": 529.0, "ser_p95_ns": 577.5999999999999, "ser_p99_ns": 611.04, "ser_ci_low_ns": 504.66633333333334, "ser_ci_high_ns": 520.8266666666667, "deser_mean_ns": 326.6533333333333, "deser_median_ns": 325.0, "deser_std_ns": 7.616648431779778, "deser_mad_ns": 5.0, "deser_cv": 0.02331722243289454, "deser_min_ns": 315.0, "deser_max_ns": 353.0, "deser_p5_ns": 316.0, "deser_p25_ns": 321.0, "deser_p50_ns": 325.0, "deser_p75_ns": 332.0, "deser_p95_ns": 338.6, "deser_p99_ns": 345.6, "deser_ci_low_ns": 324.9866666666667, "deser_ci_high_ns": 328.3333333333333, "total_mean_ns": 839.04, "total_median_ns": 832.0, "total_std_ns": 38.521471724011064, "total_mad_ns": 24.0, "total_cv": 0.045911365041012425, "total_min_ns": 770.0, "total_max_ns": 963.0, "total_p5_ns": 786.7, "total_p25_ns": 812.5, "total_p50_ns": 832.0, "total_p75_ns": 857.5, "total_p95_ns": 904.8, "total_p99_ns": 944.5000000000001, "total_ci_low_ns": 830.6786666666666, "total_ci_high_ns": 847.9073333333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "parson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.5.3", "avg_time_ser_ns": 4963.276595744681, "avg_time_deser_ns": 4522.085106382979, "avg_time_total_ns": 9485.36170212766, "median_size_bytes": 381.0, "avg_ops_per_sec": 105425.60541214682, "min_ops_per_sec": 95093.19132750096, "max_ops_per_sec": 119789.17105893628, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 4963.276595744681, "ser_median_ns": 4966.5, "ser_std_ns": 310.7348696739669, "ser_mad_ns": 214.0, "ser_cv": 0.06260680090655814, "ser_min_ns": 4351.0, "ser_max_ns": 5825.0, "ser_p5_ns": 4495.45, "ser_p25_ns": 4727.0, "ser_p50_ns": 4966.5, "ser_p75_ns": 5134.5, "ser_p95_ns": 5563.9, "ser_p99_ns": 5766.41, "ser_ci_low_ns": 4900.552127659575, "ser_ci_high_ns": 5027.082446808511, "deser_mean_ns": 4522.085106382979, "deser_median_ns": 4542.5, "deser_std_ns": 252.2682758525167, "deser_mad_ns": 163.5, "deser_cv": 0.055785831075234944, "deser_min_ns": 3964.0, "deser_max_ns": 5043.0, "deser_p5_ns": 4069.2, "deser_p25_ns": 4348.25, "deser_p50_ns": 4542.5, "deser_p75_ns": 4683.0, "deser_p95_ns": 4949.349999999999, "deser_p99_ns": 5028.12, "deser_ci_low_ns": 4470.230585106383, "deser_ci_high_ns": 4572.343617021276, "total_mean_ns": 9485.36170212766, "total_median_ns": 9551.0, "total_std_ns": 495.566404544538, "total_mad_ns": 410.0, "total_cv": 0.05224538822102878, "total_min_ns": 8348.0, "total_max_ns": 10516.0, "total_p5_ns": 8686.95, "total_p25_ns": 9088.5, "total_p50_ns": 9551.0, "total_p75_ns": 9829.5, "total_p95_ns": 10302.4, "total_p99_ns": 10476.94, "total_ci_low_ns": 9385.180851063831, "total_ci_high_ns": 9586.830319148936, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.219188142019842}, {"serializer": "cJSON", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.7.18", "avg_time_ser_ns": 3656.3894736842103, "avg_time_deser_ns": 4483.347368421053, "avg_time_total_ns": 8139.736842105263, "median_size_bytes": 381.0, "avg_ops_per_sec": 122854.09459765283, "min_ops_per_sec": 113211.81931393637, "max_ops_per_sec": 136855.0704803613, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 3656.3894736842103, "ser_median_ns": 3619.0, "ser_std_ns": 255.1473205957038, "ser_mad_ns": 180.0, "ser_cv": 0.06978122063638234, "ser_min_ns": 3180.0, "ser_max_ns": 4236.0, "ser_p5_ns": 3316.0, "ser_p25_ns": 3466.5, "ser_p50_ns": 3619.0, "ser_p75_ns": 3838.5, "ser_p95_ns": 4092.5, "ser_p99_ns": 4164.56, "ser_ci_low_ns": 3608.0444736842105, "ser_ci_high_ns": 3709.4252631578947, "deser_mean_ns": 4483.347368421053, "deser_median_ns": 4517.0, "deser_std_ns": 196.7335798885566, "deser_mad_ns": 131.0, "deser_cv": 0.04388095851645827, "deser_min_ns": 4062.0, "deser_max_ns": 4989.0, "deser_p5_ns": 4128.1, "deser_p25_ns": 4366.5, "deser_p50_ns": 4517.0, "deser_p75_ns": 4622.0, "deser_p95_ns": 4771.2, "deser_p99_ns": 4891.24, "deser_ci_low_ns": 4444.457631578947, "deser_ci_high_ns": 4523.742894736843, "total_mean_ns": 8139.736842105263, "total_median_ns": 8116.0, "total_std_ns": 406.15836997476725, "total_mad_ns": 324.0, "total_cv": 0.049898218806508535, "total_min_ns": 7307.0, "total_max_ns": 8833.0, "total_p5_ns": 7483.6, "total_p25_ns": 7819.5, "total_p50_ns": 8116.0, "total_p75_ns": 8473.5, "total_p95_ns": 8739.0, "total_p99_ns": 8790.7, "total_ci_low_ns": 8060.5763157894735, "total_ci_high_ns": 8220.319210526317, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.838629152343575}, {"serializer": "ubj", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.0-min", "avg_time_ser_ns": 668.2842105263157, "avg_time_deser_ns": 374.2, "avg_time_total_ns": 1042.4842105263158, "median_size_bytes": 380.0, "avg_ops_per_sec": 959247.1424532493, "min_ops_per_sec": 650195.0585175552, "max_ops_per_sec": 1218026.796589525, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 668.2842105263157, "ser_median_ns": 543.0, "ser_std_ns": 222.2374455280856, "ser_mad_ns": 37.0, "ser_cv": 0.3325492986779677, "ser_min_ns": 458.0, "ser_max_ns": 1156.0, "ser_p5_ns": 487.5, "ser_p25_ns": 517.0, "ser_p50_ns": 543.0, "ser_p75_ns": 888.5, "ser_p95_ns": 1089.2, "ser_p99_ns": 1153.18, "ser_ci_low_ns": 624.9186842105264, "ser_ci_high_ns": 715.1323684210525, "deser_mean_ns": 374.2, "deser_median_ns": 374.0, "deser_std_ns": 14.141834724027223, "deser_mad_ns": 11.0, "deser_cv": 0.037792182586924704, "deser_min_ns": 346.0, "deser_max_ns": 410.0, "deser_p5_ns": 354.4, "deser_p25_ns": 363.5, "deser_p50_ns": 374.0, "deser_p75_ns": 384.0, "deser_p95_ns": 398.6, "deser_p99_ns": 409.06, "deser_ci_low_ns": 371.4, "deser_ci_high_ns": 377.0531578947368, "total_mean_ns": 1042.4842105263158, "total_median_ns": 917.0, "total_std_ns": 223.57210570678976, "total_mad_ns": 44.0, "total_cv": 0.21446090353149386, "total_min_ns": 821.0, "total_max_ns": 1538.0, "total_p5_ns": 853.3, "total_p25_ns": 889.5, "total_p50_ns": 917.0, "total_p75_ns": 1270.5, "total_p95_ns": 1459.9, "total_p99_ns": 1522.02, "total_ci_low_ns": 1000.4189473684211, "total_ci_high_ns": 1088.242894736842, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.8515087719298245, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.197170082138071}, {"serializer": "jansson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "2.14", "avg_time_ser_ns": 6225.4631578947365, "avg_time_deser_ns": 7715.357894736842, "avg_time_total_ns": 13940.82105263158, "median_size_bytes": 381.0, "avg_ops_per_sec": 71731.78654432496, "min_ops_per_sec": 67677.31456415809, "max_ops_per_sec": 75483.09178743961, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 6225.4631578947365, "ser_median_ns": 6230.0, "ser_std_ns": 232.00631917871928, "ser_mad_ns": 167.0, "ser_cv": 0.03726731863869496, "ser_min_ns": 5764.0, "ser_max_ns": 6909.0, "ser_p5_ns": 5865.0, "ser_p25_ns": 6061.0, "ser_p50_ns": 6230.0, "ser_p75_ns": 6379.0, "ser_p95_ns": 6666.7, "ser_p99_ns": 6721.0, "ser_ci_low_ns": 6180.671842105264, "ser_ci_high_ns": 6270.20947368421, "deser_mean_ns": 7715.357894736842, "deser_median_ns": 7725.0, "deser_std_ns": 152.77287520949537, "deser_mad_ns": 106.0, "deser_cv": 0.019801139142710655, "deser_min_ns": 7361.0, "deser_max_ns": 8124.0, "deser_p5_ns": 7474.1, "deser_p25_ns": 7611.5, "deser_p50_ns": 7725.0, "deser_p75_ns": 7804.0, "deser_p95_ns": 7947.6, "deser_p99_ns": 8107.08, "deser_ci_low_ns": 7686.44052631579, "deser_ci_high_ns": 7747.001315789474, "total_mean_ns": 13940.82105263158, "total_median_ns": 13917.0, "total_std_ns": 337.60243454008264, "total_mad_ns": 251.0, "total_cv": 0.024216825771273646, "total_min_ns": 13248.0, "total_max_ns": 14776.0, "total_p5_ns": 13365.6, "total_p25_ns": 13697.5, "total_p50_ns": 13917.0, "total_p75_ns": 14175.0, "total_p95_ns": 14477.8, "total_p99_ns": 14617.140000000001, "total_ci_low_ns": 13872.80447368421, "total_ci_high_ns": 14009.526842105262, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 51.387220001653525}, {"serializer": "cbor-encode", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.11.0", "avg_time_ser_ns": 3959.6236559139784, "avg_time_deser_ns": 10425.150537634408, "avg_time_total_ns": 14384.774193548386, "median_size_bytes": 315.0, "avg_ops_per_sec": 69517.9490859511, "min_ops_per_sec": 65936.96426216538, "max_ops_per_sec": 72684.98328245385, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 3959.6236559139784, "ser_median_ns": 3949.0, "ser_std_ns": 272.2848537987894, "ser_mad_ns": 209.0, "ser_cv": 0.0687653366733762, "ser_min_ns": 3317.0, "ser_max_ns": 4514.0, "ser_p5_ns": 3530.2, "ser_p25_ns": 3758.0, "ser_p50_ns": 3949.0, "ser_p75_ns": 4181.0, "ser_p95_ns": 4412.6, "ser_p99_ns": 4455.12, "ser_ci_low_ns": 3905.001075268817, "ser_ci_high_ns": 4015.3924731182797, "deser_mean_ns": 10425.150537634408, "deser_median_ns": 10416.0, "deser_std_ns": 152.23501184428483, "deser_mad_ns": 96.0, "deser_cv": 0.014602667970570023, "deser_min_ns": 10077.0, "deser_max_ns": 10808.0, "deser_p5_ns": 10189.2, "deser_p25_ns": 10334.0, "deser_p50_ns": 10416.0, "deser_p75_ns": 10513.0, "deser_p95_ns": 10670.6, "deser_p99_ns": 10805.24, "deser_ci_low_ns": 10393.83817204301, "deser_ci_high_ns": 10457.487096774194, "total_mean_ns": 14384.774193548386, "total_median_ns": 14383.0, "total_std_ns": 314.6832475415715, "total_mad_ns": 220.0, "total_cv": 0.021876133980796714, "total_min_ns": 13758.0, "total_max_ns": 15166.0, "total_p5_ns": 13920.8, "total_p25_ns": 14159.0, "total_p50_ns": 14383.0, "total_p75_ns": 14564.0, "total_p95_ns": 14925.4, "total_p99_ns": 15119.08, "total_ci_low_ns": 14322.936559139784, "total_ci_high_ns": 14449.025537634408, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 57.21603941041982}, {"serializer": "zcbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.9", "avg_time_ser_ns": 1183.0123456790122, "avg_time_deser_ns": 11763.814814814816, "avg_time_total_ns": 12946.827160493827, "median_size_bytes": 316.0, "avg_ops_per_sec": 77239.00130924875, "min_ops_per_sec": 74266.61715558857, "max_ops_per_sec": 80038.41844085162, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 1183.0123456790122, "ser_median_ns": 1159.0, "ser_std_ns": 87.2190480668014, "ser_mad_ns": 45.0, "ser_cv": 0.07372623657341495, "ser_min_ns": 1042.0, "ser_max_ns": 1477.0, "ser_p5_ns": 1076.0, "ser_p25_ns": 1123.0, "ser_p50_ns": 1159.0, "ser_p75_ns": 1224.0, "ser_p95_ns": 1369.0, "ser_p99_ns": 1441.0000000000002, "ser_ci_low_ns": 1165.0703703703705, "ser_ci_high_ns": 1202.9385802469137, "deser_mean_ns": 11763.814814814816, "deser_median_ns": 11757.0, "deser_std_ns": 218.24253200917957, "deser_mad_ns": 161.0, "deser_cv": 0.01855202036454491, "deser_min_ns": 11341.0, "deser_max_ns": 12241.0, "deser_p5_ns": 11398.0, "deser_p25_ns": 11609.0, "deser_p50_ns": 11757.0, "deser_p75_ns": 11918.0, "deser_p95_ns": 12151.0, "deser_p99_ns": 12232.2, "deser_ci_low_ns": 11715.238580246914, "deser_ci_high_ns": 11812.901851851853, "total_mean_ns": 12946.827160493827, "total_median_ns": 12963.0, "total_std_ns": 235.69407025440077, "total_mad_ns": 193.0, "total_cv": 0.01820477460096183, "total_min_ns": 12494.0, "total_max_ns": 13465.0, "total_p5_ns": 12598.0, "total_p25_ns": 12763.0, "total_p50_ns": 12963.0, "total_p75_ns": 13112.0, "total_p95_ns": 13348.0, "total_p99_ns": 13381.800000000001, "total_ci_low_ns": 12897.649074074074, "total_ci_high_ns": 12999.38549382716, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 70.06604117369595}, {"serializer": "msgpack-c", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "6.0.1", "avg_time_ser_ns": 928.0309278350516, "avg_time_deser_ns": 898.8453608247422, "avg_time_total_ns": 1826.8762886597938, "median_size_bytes": 316.0, "avg_ops_per_sec": 547382.4397456083, "min_ops_per_sec": 413052.4576621231, "max_ops_per_sec": 671140.9395973154, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 928.0309278350516, "ser_median_ns": 822.0, "ser_std_ns": 218.79987305794265, "ser_mad_ns": 40.0, "ser_cv": 0.23576786774592515, "ser_min_ns": 722.0, "ser_max_ns": 1487.0, "ser_p5_ns": 755.2, "ser_p25_ns": 793.0, "ser_p50_ns": 822.0, "ser_p75_ns": 1110.0, "ser_p95_ns": 1410.3999999999996, "ser_p99_ns": 1472.6, "ser_ci_low_ns": 886.1850515463917, "ser_ci_high_ns": 973.0242268041237, "deser_mean_ns": 898.8453608247422, "deser_median_ns": 898.0, "deser_std_ns": 54.67562303527535, "deser_mad_ns": 37.0, "deser_cv": 0.060828731412828706, "deser_min_ns": 755.0, "deser_max_ns": 1030.0, "deser_p5_ns": 816.0, "deser_p25_ns": 861.0, "deser_p50_ns": 898.0, "deser_p75_ns": 934.0, "deser_p95_ns": 1004.5999999999999, "deser_p99_ns": 1025.2, "deser_ci_low_ns": 887.9146907216494, "deser_ci_high_ns": 909.5469072164948, "total_mean_ns": 1826.8762886597938, "total_median_ns": 1743.0, "total_std_ns": 224.51597278608594, "total_mad_ns": 89.0, "total_cv": 0.1228961009455063, "total_min_ns": 1490.0, "total_max_ns": 2421.0, "total_p5_ns": 1604.6, "total_p25_ns": 1672.0, "total_p50_ns": 1743.0, "total_p75_ns": 1975.0, "total_p95_ns": 2292.6, "total_p99_ns": 2376.8399999999997, "total_ci_low_ns": 1783.0958762886598, "total_ci_high_ns": 1873.0590206185566, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.764094344227995}, {"serializer": "protobuf-c", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.5.0", "avg_time_ser_ns": 607.5540540540541, "avg_time_deser_ns": 463.81081081081084, "avg_time_total_ns": 1071.3648648648648, "median_size_bytes": 338.0, "avg_ops_per_sec": 933388.8321287573, "min_ops_per_sec": 811688.3116883116, "max_ops_per_sec": 1024590.1639344263, "runs": 74, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 25, "ser_mean_ns": 607.5540540540541, "ser_median_ns": 601.5, "ser_std_ns": 38.91548337555635, "ser_mad_ns": 18.0, "ser_cv": 0.0640527095751945, "ser_min_ns": 539.0, "ser_max_ns": 727.0, "ser_p5_ns": 548.95, "ser_p25_ns": 587.5, "ser_p50_ns": 601.5, "ser_p75_ns": 620.75, "ser_p95_ns": 685.0, "ser_p99_ns": 704.3699999999999, "ser_ci_low_ns": 599.0405405405405, "ser_ci_high_ns": 616.4064189189189, "deser_mean_ns": 463.81081081081084, "deser_median_ns": 461.0, "deser_std_ns": 17.710515161304194, "deser_mad_ns": 11.5, "deser_cv": 0.03818478299447906, "deser_min_ns": 434.0, "deser_max_ns": 505.0, "deser_p5_ns": 438.65, "deser_p25_ns": 451.25, "deser_p50_ns": 461.0, "deser_p75_ns": 474.75, "deser_p95_ns": 498.4, "deser_p99_ns": 503.53999999999996, "deser_ci_low_ns": 459.86486486486484, "deser_ci_high_ns": 467.7300675675676, "total_mean_ns": 1071.3648648648648, "total_median_ns": 1067.0, "total_std_ns": 47.015757872628754, "total_mad_ns": 25.5, "total_cv": 0.04388398333238138, "total_min_ns": 976.0, "total_max_ns": 1232.0, "total_p5_ns": 999.9, "total_p25_ns": 1047.5, "total_p50_ns": 1067.0, "total_p75_ns": 1097.25, "total_p95_ns": 1147.1499999999999, "total_p99_ns": 1203.5299999999997, "total_ci_low_ns": 1060.7415540540542, "total_ci_high_ns": 1082.352027027027, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.3815212542758335}, {"serializer": "json-c", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.15", "avg_time_ser_ns": 3490.1951219512193, "avg_time_deser_ns": 4987.914634146341, "avg_time_total_ns": 8478.109756097561, "median_size_bytes": 381.0, "avg_ops_per_sec": 117950.82026164944, "min_ops_per_sec": 110448.4205875856, "max_ops_per_sec": 126710.59300557527, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 3490.1951219512193, "ser_median_ns": 3490.0, "ser_std_ns": 109.35867355671296, "ser_mad_ns": 63.5, "ser_cv": 0.03133311168447659, "ser_min_ns": 3206.0, "ser_max_ns": 3787.0, "ser_p5_ns": 3301.15, "ser_p25_ns": 3430.5, "ser_p50_ns": 3490.0, "ser_p75_ns": 3556.0, "ser_p95_ns": 3685.2000000000003, "ser_p99_ns": 3735.16, "ser_ci_low_ns": 3465.9509146341466, "ser_ci_high_ns": 3513.4881097560974, "deser_mean_ns": 4987.914634146341, "deser_median_ns": 4964.0, "deser_std_ns": 174.12108751248704, "deser_mad_ns": 116.0, "deser_cv": 0.03490859412879408, "deser_min_ns": 4683.0, "deser_max_ns": 5412.0, "deser_p5_ns": 4752.0, "deser_p25_ns": 4866.25, "deser_p50_ns": 4964.0, "deser_p75_ns": 5086.25, "deser_p95_ns": 5324.9, "deser_p99_ns": 5406.33, "deser_ci_low_ns": 4950.242682926829, "deser_ci_high_ns": 5025.696646341463, "total_mean_ns": 8478.109756097561, "total_median_ns": 8463.0, "total_std_ns": 241.09749096694696, "total_mad_ns": 159.0, "total_cv": 0.02843764682257701, "total_min_ns": 7892.0, "total_max_ns": 9054.0, "total_p5_ns": 8105.35, "total_p25_ns": 8320.25, "total_p50_ns": 8463.0, "total_p75_ns": 8640.0, "total_p95_ns": 8857.65, "total_p99_ns": 8933.31, "total_ci_low_ns": 8426.346646341464, "total_ci_high_ns": 8530.045731707316, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 43.117643539596685}, {"serializer": "flatcc", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.6.1", "avg_time_ser_ns": 741.5921052631579, "avg_time_deser_ns": 328.82894736842104, "avg_time_total_ns": 1070.421052631579, "median_size_bytes": 372.0, "avg_ops_per_sec": 934211.8202379781, "min_ops_per_sec": 769230.7692307692, "max_ops_per_sec": 1051524.7108307045, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 741.5921052631579, "ser_median_ns": 728.5, "ser_std_ns": 67.14882528266673, "ser_mad_ns": 40.5, "ser_cv": 0.09054684483033786, "ser_min_ns": 626.0, "ser_max_ns": 970.0, "ser_p5_ns": 642.25, "ser_p25_ns": 693.75, "ser_p50_ns": 728.5, "ser_p75_ns": 788.25, "ser_p95_ns": 845.25, "ser_p99_ns": 957.25, "ser_ci_low_ns": 726.9986842105263, "ser_ci_high_ns": 756.4746710526316, "deser_mean_ns": 328.82894736842104, "deser_median_ns": 327.0, "deser_std_ns": 8.035567862770682, "deser_mad_ns": 5.0, "deser_cv": 0.024436923595317187, "deser_min_ns": 315.0, "deser_max_ns": 350.0, "deser_p5_ns": 318.75, "deser_p25_ns": 323.0, "deser_p50_ns": 327.0, "deser_p75_ns": 333.25, "deser_p95_ns": 344.75, "deser_p99_ns": 347.75, "deser_ci_low_ns": 327.0263157894737, "deser_ci_high_ns": 330.57894736842104, "total_mean_ns": 1070.421052631579, "total_median_ns": 1062.5, "total_std_ns": 69.989001642238, "total_mad_ns": 42.5, "total_cv": 0.065384552620834, "total_min_ns": 951.0, "total_max_ns": 1300.0, "total_p5_ns": 967.25, "total_p25_ns": 1022.75, "total_p50_ns": 1062.5, "total_p75_ns": 1110.5, "total_p95_ns": 1171.5, "total_p99_ns": 1300.0, "total_ci_low_ns": 1054.9861842105263, "total_ci_high_ns": 1086.61875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.9989473684210526, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.067976642606744}, {"serializer": "mpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.1", "avg_time_ser_ns": 637.5316455696203, "avg_time_deser_ns": 1118.73417721519, "avg_time_total_ns": 1756.26582278481, "median_size_bytes": 316.0, "avg_ops_per_sec": 569389.8879238892, "min_ops_per_sec": 512295.08196721313, "max_ops_per_sec": 638569.6040868454, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 637.5316455696203, "ser_median_ns": 636.0, "ser_std_ns": 41.522263241462184, "ser_mad_ns": 25.0, "ser_cv": 0.06512972890053632, "ser_min_ns": 545.0, "ser_max_ns": 733.0, "ser_p5_ns": 578.7, "ser_p25_ns": 611.5, "ser_p50_ns": 636.0, "ser_p75_ns": 660.0, "ser_p95_ns": 709.5, "ser_p99_ns": 729.1, "ser_ci_low_ns": 628.8215189873417, "ser_ci_high_ns": 646.85, "deser_mean_ns": 1118.73417721519, "deser_median_ns": 1117.0, "deser_std_ns": 61.48247798351848, "deser_mad_ns": 43.0, "deser_cv": 0.05495718217580855, "deser_min_ns": 987.0, "deser_max_ns": 1247.0, "deser_p5_ns": 1010.0, "deser_p25_ns": 1080.0, "deser_p50_ns": 1117.0, "deser_p75_ns": 1162.5, "deser_p95_ns": 1236.3, "deser_p99_ns": 1247.0, "deser_ci_low_ns": 1105.6560126582278, "deser_ci_high_ns": 1131.9246835443037, "total_mean_ns": 1756.26582278481, "total_median_ns": 1755.0, "total_std_ns": 89.42203434947652, "total_mad_ns": 67.0, "total_cv": 0.0509160021161746, "total_min_ns": 1566.0, "total_max_ns": 1952.0, "total_p5_ns": 1607.8, "total_p25_ns": 1684.0, "total_p50_ns": 1755.0, "total_p75_ns": 1814.5, "total_p95_ns": 1899.7, "total_p99_ns": 1948.1, "total_ci_low_ns": 1736.9487341772153, "total_ci_high_ns": 1775.6585443037975, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.138332435593993}, {"serializer": "avro-c", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.11.3", "avg_time_ser_ns": 798.1686746987951, "avg_time_deser_ns": 617.9036144578313, "avg_time_total_ns": 1416.0722891566265, "median_size_bytes": 346.0, "avg_ops_per_sec": 706178.6376708016, "min_ops_per_sec": 602046.9596628537, "max_ops_per_sec": 868809.7306689835, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 798.1686746987951, "ser_median_ns": 793.0, "ser_std_ns": 83.89218098934481, "ser_mad_ns": 45.0, "ser_cv": 0.10510582994378123, "ser_min_ns": 625.0, "ser_max_ns": 1088.0, "ser_p5_ns": 669.3, "ser_p25_ns": 749.0, "ser_p50_ns": 793.0, "ser_p75_ns": 838.5, "ser_p95_ns": 929.9999999999998, "ser_p99_ns": 1060.1199999999997, "ser_ci_low_ns": 780.3969879518072, "ser_ci_high_ns": 816.5924698795181, "deser_mean_ns": 617.9036144578313, "deser_median_ns": 617.0, "deser_std_ns": 57.13433346025056, "deser_mad_ns": 44.0, "deser_cv": 0.09246479891589901, "deser_min_ns": 504.0, "deser_max_ns": 778.0, "deser_p5_ns": 522.4, "deser_p25_ns": 579.5, "deser_p50_ns": 617.0, "deser_p75_ns": 662.0, "deser_p95_ns": 695.9, "deser_p99_ns": 757.4999999999998, "deser_ci_low_ns": 606.1536144578313, "deser_ci_high_ns": 630.2298192771084, "total_mean_ns": 1416.0722891566265, "total_median_ns": 1421.0, "total_std_ns": 116.90310592094698, "total_mad_ns": 74.0, "total_cv": 0.08255447607873977, "total_min_ns": 1151.0, "total_max_ns": 1661.0, "total_p5_ns": 1203.2, "total_p25_ns": 1348.5, "total_p50_ns": 1421.0, "total_p75_ns": 1497.0, "total_p95_ns": 1610.6999999999998, "total_p99_ns": 1661.0, "total_ci_low_ns": 1390.6343373493976, "total_ci_high_ns": 1441.3382530120482, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.465979847094609}, {"serializer": "yyjson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.10.0", "avg_time_ser_ns": 1053.975, "avg_time_deser_ns": 1955.2625, "avg_time_total_ns": 3009.2375, "median_size_bytes": 381.0, "avg_ops_per_sec": 332310.0951653035, "min_ops_per_sec": 295595.6251847473, "max_ops_per_sec": 364697.30123997084, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 1053.975, "ser_median_ns": 1044.5, "ser_std_ns": 72.32923582086555, "ser_mad_ns": 38.0, "ser_cv": 0.06862519112964308, "ser_min_ns": 898.0, "ser_max_ns": 1305.0, "ser_p5_ns": 945.95, "ser_p25_ns": 1016.5, "ser_p50_ns": 1044.5, "ser_p75_ns": 1092.75, "ser_p95_ns": 1183.35, "ser_p99_ns": 1282.09, "ser_ci_low_ns": 1038.908125, "ser_ci_high_ns": 1069.6525000000001, "deser_mean_ns": 1955.2625, "deser_median_ns": 1950.0, "deser_std_ns": 68.6424867047564, "deser_mad_ns": 47.5, "deser_cv": 0.035106532603553946, "deser_min_ns": 1773.0, "deser_max_ns": 2131.0, "deser_p5_ns": 1856.8, "deser_p25_ns": 1906.0, "deser_p50_ns": 1950.0, "deser_p75_ns": 2000.25, "deser_p95_ns": 2078.0, "deser_p99_ns": 2102.56, "deser_ci_low_ns": 1939.874375, "deser_ci_high_ns": 1970.9128125, "total_mean_ns": 3009.2375, "total_median_ns": 3008.5, "total_std_ns": 122.81046874830018, "total_mad_ns": 83.5, "total_cv": 0.04081115855704316, "total_min_ns": 2742.0, "total_max_ns": 3383.0, "total_p5_ns": 2823.8, "total_p25_ns": 2925.5, "total_p50_ns": 3008.5, "total_p75_ns": 3091.0, "total_p95_ns": 3200.2, "total_p99_ns": 3345.08, "total_ci_low_ns": 2983.1115625, "total_ci_high_ns": 3036.0950000000003, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.41614488449366}, {"serializer": "nanopb", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.4.9", "avg_time_ser_ns": 599.4583333333334, "avg_time_deser_ns": 484.7916666666667, "avg_time_total_ns": 1084.25, "median_size_bytes": 338.0, "avg_ops_per_sec": 922296.5183306433, "min_ops_per_sec": 841750.8417508417, "max_ops_per_sec": 1012145.7489878542, "runs": 72, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 27, "ser_mean_ns": 599.4583333333334, "ser_median_ns": 596.5, "ser_std_ns": 39.57874571883318, "ser_mad_ns": 22.0, "ser_cv": 0.06602418136178469, "ser_min_ns": 518.0, "ser_max_ns": 704.0, "ser_p5_ns": 543.65, "ser_p25_ns": 575.0, "ser_p50_ns": 596.5, "ser_p75_ns": 621.0, "ser_p95_ns": 671.95, "ser_p99_ns": 696.9000000000001, "ser_ci_low_ns": 590.5277777777778, "ser_ci_high_ns": 608.3892361111111, "deser_mean_ns": 484.7916666666667, "deser_median_ns": 482.0, "deser_std_ns": 20.906187169635476, "deser_mad_ns": 12.0, "deser_cv": 0.043124064638698015, "deser_min_ns": 448.0, "deser_max_ns": 537.0, "deser_p5_ns": 456.55, "deser_p25_ns": 471.0, "deser_p50_ns": 482.0, "deser_p75_ns": 494.0, "deser_p95_ns": 531.35, "deser_p99_ns": 534.87, "deser_ci_low_ns": 479.721875, "deser_ci_high_ns": 489.68125, "total_mean_ns": 1084.25, "total_median_ns": 1080.5, "total_std_ns": 45.63997197910534, "total_mad_ns": 29.5, "total_cv": 0.042093587253036975, "total_min_ns": 988.0, "total_max_ns": 1188.0, "total_p5_ns": 1017.55, "total_p25_ns": 1053.5, "total_p50_ns": 1080.5, "total_p75_ns": 1119.5, "total_p95_ns": 1159.35, "total_p99_ns": 1178.0600000000002, "total_ci_low_ns": 1073.4583333333333, "total_ci_high_ns": 1095.1559027777778, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.786379099407317}, {"serializer": "tinycbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.6.0", "avg_time_ser_ns": 913.4565217391304, "avg_time_deser_ns": 10368.065217391304, "avg_time_total_ns": 11281.521739130434, "median_size_bytes": 315.0, "avg_ops_per_sec": 88640.52413527315, "min_ops_per_sec": 82829.45415389712, "max_ops_per_sec": 91759.95595522114, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 913.4565217391304, "ser_median_ns": 799.0, "ser_std_ns": 245.7186103076139, "ser_mad_ns": 71.0, "ser_cv": 0.2689986928330098, "ser_min_ns": 679.0, "ser_max_ns": 1477.0, "ser_p5_ns": 701.75, "ser_p25_ns": 745.75, "ser_p50_ns": 799.0, "ser_p75_ns": 1077.0, "ser_p95_ns": 1404.0500000000002, "ser_p99_ns": 1461.53, "ser_ci_low_ns": 864.8442934782609, "ser_ci_high_ns": 963.5945652173913, "deser_mean_ns": 10368.065217391304, "deser_median_ns": 10372.0, "deser_std_ns": 96.43101552351958, "deser_mad_ns": 58.0, "deser_cv": 0.009300772468306528, "deser_min_ns": 10125.0, "deser_max_ns": 10627.0, "deser_p5_ns": 10201.55, "deser_p25_ns": 10307.75, "deser_p50_ns": 10372.0, "deser_p75_ns": 10422.0, "deser_p95_ns": 10546.9, "deser_p99_ns": 10579.68, "deser_ci_low_ns": 10347.78152173913, "deser_ci_high_ns": 10387.380706521739, "total_mean_ns": 11281.521739130434, "total_median_ns": 11168.0, "total_std_ns": 279.80143973193395, "total_mad_ns": 110.0, "total_cv": 0.02480174627164267, "total_min_ns": 10898.0, "total_max_ns": 12073.0, "total_p5_ns": 10984.1, "total_p25_ns": 11093.0, "total_p50_ns": 11168.0, "total_p75_ns": 11457.5, "total_p95_ns": 11793.3, "total_p99_ns": 11975.630000000001, "total_ci_low_ns": 11228.28043478261, "total_ci_high_ns": 11341.973097826087, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 49.64460418530239}, {"serializer": "nanopb", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.4.9", "avg_time_ser_ns": 33883.054945054944, "avg_time_deser_ns": 43792.681318681316, "avg_time_total_ns": 77675.73626373627, "median_size_bytes": 37192.0, "avg_ops_per_sec": 12874.033103524767, "min_ops_per_sec": 12398.948569161335, "max_ops_per_sec": 13584.00347750489, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 33883.054945054944, "ser_median_ns": 33732.0, "ser_std_ns": 812.2613203292722, "ser_mad_ns": 542.0, "ser_cv": 0.02397249367409291, "ser_min_ns": 31715.0, "ser_max_ns": 35912.0, "ser_p5_ns": 32864.5, "ser_p25_ns": 33267.5, "ser_p50_ns": 33732.0, "ser_p75_ns": 34446.0, "ser_p95_ns": 35229.0, "ser_p99_ns": 35778.799999999996, "ser_ci_low_ns": 33721.7793956044, "ser_ci_high_ns": 34049.981043956046, "deser_mean_ns": 43792.681318681316, "deser_median_ns": 43534.0, "deser_std_ns": 887.4146704409374, "deser_mad_ns": 532.0, "deser_cv": 0.020263994889538294, "deser_min_ns": 41901.0, "deser_max_ns": 46153.0, "deser_p5_ns": 42719.5, "deser_p25_ns": 43144.5, "deser_p50_ns": 43534.0, "deser_p75_ns": 44277.5, "deser_p95_ns": 45404.5, "deser_p99_ns": 45858.7, "deser_ci_low_ns": 43622.21153846154, "deser_ci_high_ns": 43982.67912087912, "total_mean_ns": 77675.73626373627, "total_median_ns": 77546.0, "total_std_ns": 1328.9931095479335, "total_mad_ns": 961.0, "total_cv": 0.017109501286676414, "total_min_ns": 73616.0, "total_max_ns": 80652.0, "total_p5_ns": 75847.5, "total_p25_ns": 76633.0, "total_p50_ns": 77546.0, "total_p75_ns": 78611.5, "total_p95_ns": 80023.0, "total_p99_ns": 80481.0, "total_ci_low_ns": 77401.79615384615, "total_ci_high_ns": 77953.87142857142, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.889989766212967}, {"serializer": "tinycbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.6.0", "avg_time_ser_ns": 43575.14736842105, "avg_time_deser_ns": 937054.4631578948, "avg_time_total_ns": 980629.6105263158, "median_size_bytes": 34892.0, "avg_ops_per_sec": 1019.7530130293413, "min_ops_per_sec": 984.592117946259, "max_ops_per_sec": 1058.3253694349282, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 43575.14736842105, "ser_median_ns": 43549.0, "ser_std_ns": 909.2302562621725, "ser_mad_ns": 716.0, "ser_cv": 0.020865798767696023, "ser_min_ns": 41578.0, "ser_max_ns": 45716.0, "ser_p5_ns": 42370.0, "ser_p25_ns": 42822.5, "ser_p50_ns": 43549.0, "ser_p75_ns": 44123.0, "ser_p95_ns": 45126.7, "ser_p99_ns": 45492.28, "ser_ci_low_ns": 43397.02, "ser_ci_high_ns": 43756.07157894737, "deser_mean_ns": 937054.4631578948, "deser_median_ns": 936285.0, "deser_std_ns": 14202.858276020874, "deser_mad_ns": 9611.0, "deser_cv": 0.015156918657808768, "deser_min_ns": 902907.0, "deser_max_ns": 971563.0, "deser_p5_ns": 917572.8, "deser_p25_ns": 926468.0, "deser_p50_ns": 936285.0, "deser_p75_ns": 945783.0, "deser_p95_ns": 961920.5, "deser_p99_ns": 970775.28, "deser_ci_low_ns": 934229.1560526316, "deser_ci_high_ns": 939916.5689473684, "total_mean_ns": 980629.6105263158, "total_median_ns": 979657.0, "total_std_ns": 14559.092172930563, "total_mad_ns": 9889.0, "total_cv": 0.014846678110317842, "total_min_ns": 944889.0, "total_max_ns": 1015649.0, "total_p5_ns": 961073.9, "total_p25_ns": 970173.5, "total_p50_ns": 979657.0, "total_p75_ns": 989594.0, "total_p95_ns": 1006673.8, "total_p99_ns": 1015321.88, "total_ci_low_ns": 977776.2618421053, "total_ci_high_ns": 983558.034736842, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 87.81693045783702}, {"serializer": "protobuf-wire", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "wire-v2", "avg_time_ser_ns": 33888.265957446805, "avg_time_deser_ns": 43555.585106382976, "avg_time_total_ns": 77443.85106382979, "median_size_bytes": 37192.0, "avg_ops_per_sec": 12912.58100240641, "min_ops_per_sec": 12278.224568727363, "max_ops_per_sec": 13441.040874205299, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 33888.265957446805, "ser_median_ns": 33856.5, "ser_std_ns": 814.6326855565214, "ser_mad_ns": 606.0, "ser_cv": 0.02403878341191752, "ser_min_ns": 32407.0, "ser_max_ns": 36110.0, "ser_p5_ns": 32764.85, "ser_p25_ns": 33201.75, "ser_p50_ns": 33856.5, "ser_p75_ns": 34357.25, "ser_p95_ns": 35243.9, "ser_p99_ns": 35888.659999999996, "ser_ci_low_ns": 33725.8454787234, "ser_ci_high_ns": 34054.46436170213, "deser_mean_ns": 43555.585106382976, "deser_median_ns": 43274.0, "deser_std_ns": 817.20089276177, "deser_mad_ns": 526.5, "deser_cv": 0.018762252665548762, "deser_min_ns": 41974.0, "deser_max_ns": 45685.0, "deser_p5_ns": 42647.85, "deser_p25_ns": 42936.75, "deser_p50_ns": 43274.0, "deser_p75_ns": 44156.5, "deser_p95_ns": 45179.35, "deser_p99_ns": 45580.84, "deser_ci_low_ns": 43392.130319148935, "deser_ci_high_ns": 43730.83138297872, "total_mean_ns": 77443.85106382979, "total_median_ns": 77310.5, "total_std_ns": 1319.6137505716515, "total_mad_ns": 982.0, "total_cv": 0.01703961944614578, "total_min_ns": 74399.0, "total_max_ns": 81445.0, "total_p5_ns": 75706.35, "total_p25_ns": 76472.0, "total_p50_ns": 77310.5, "total_p75_ns": 78408.25, "total_p95_ns": 79556.2, "total_p99_ns": 80454.54999999999, "total_ci_low_ns": 77175.60877659575, "total_ci_high_ns": 77698.54122340425, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.746901251682353}, {"serializer": "libbson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.27.5", "avg_time_ser_ns": 250750.06315789474, "avg_time_deser_ns": 905752.4947368421, "avg_time_total_ns": 1156502.5578947368, "median_size_bytes": 60292.0, "avg_ops_per_sec": 864.6759950279493, "min_ops_per_sec": 830.4902882465692, "max_ops_per_sec": 883.755252820284, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 250750.06315789474, "ser_median_ns": 250602.0, "ser_std_ns": 4780.918069964525, "ser_mad_ns": 3874.0, "ser_cv": 0.0190664680588895, "ser_min_ns": 242630.0, "ser_max_ns": 265638.0, "ser_p5_ns": 244471.7, "ser_p25_ns": 246632.5, "ser_p50_ns": 250602.0, "ser_p75_ns": 253828.5, "ser_p95_ns": 258432.1, "ser_p99_ns": 262660.08, "ser_ci_low_ns": 249828.40605263156, "ser_ci_high_ns": 251713.9136842105, "deser_mean_ns": 905752.4947368421, "deser_median_ns": 900922.0, "deser_std_ns": 14199.785173587517, "deser_mad_ns": 9938.0, "deser_cv": 0.015677334874703415, "deser_min_ns": 884974.0, "deser_max_ns": 943040.0, "deser_p5_ns": 890335.2, "deser_p25_ns": 893020.5, "deser_p50_ns": 900922.0, "deser_p75_ns": 916014.5, "deser_p95_ns": 931644.4, "deser_p99_ns": 941466.4400000001, "deser_ci_low_ns": 903052.525, "deser_ci_high_ns": 908691.8152631578, "total_mean_ns": 1156502.5578947368, "total_median_ns": 1152333.0, "total_std_ns": 17055.66043602084, "total_mad_ns": 13252.0, "total_cv": 0.014747620158375148, "total_min_ns": 1131535.0, "total_max_ns": 1204108.0, "total_p5_ns": 1137078.0, "total_p25_ns": 1141999.0, "total_p50_ns": 1152333.0, "total_p75_ns": 1168224.0, "total_p95_ns": 1184065.9, "total_p99_ns": 1200843.3800000001, "total_ci_low_ns": 1153311.5778947368, "total_ci_high_ns": 1159798.5484210528, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 89.40310819261957}, {"serializer": "ubj", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.0-min", "avg_time_ser_ns": 30104.55172413793, "avg_time_deser_ns": 37342.08045977011, "avg_time_total_ns": 67446.63218390805, "median_size_bytes": 41392.0, "avg_ops_per_sec": 14826.537183847528, "min_ops_per_sec": 14249.073810202337, "max_ops_per_sec": 15273.471507338903, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 30104.55172413793, "ser_median_ns": 30019.0, "ser_std_ns": 613.4172251094244, "ser_mad_ns": 373.0, "ser_cv": 0.02037622850957732, "ser_min_ns": 29153.0, "ser_max_ns": 31716.0, "ser_p5_ns": 29219.7, "ser_p25_ns": 29687.5, "ser_p50_ns": 30019.0, "ser_p75_ns": 30393.0, "ser_p95_ns": 31276.7, "ser_p99_ns": 31709.98, "ser_ci_low_ns": 29982.72011494253, "ser_ci_high_ns": 30231.51235632184, "deser_mean_ns": 37342.08045977011, "deser_median_ns": 37173.0, "deser_std_ns": 765.0331687351226, "deser_mad_ns": 495.0, "deser_cv": 0.02048715977566699, "deser_min_ns": 35689.0, "deser_max_ns": 39272.0, "deser_p5_ns": 36399.5, "deser_p25_ns": 36801.5, "deser_p50_ns": 37173.0, "deser_p75_ns": 37830.5, "deser_p95_ns": 38893.2, "deser_p99_ns": 39131.82, "deser_ci_low_ns": 37175.39540229885, "deser_ci_high_ns": 37497.815804597696, "total_mean_ns": 67446.63218390805, "total_median_ns": 67200.0, "total_std_ns": 1182.374858071104, "total_mad_ns": 899.0, "total_cv": 0.017530524798437665, "total_min_ns": 65473.0, "total_max_ns": 70180.0, "total_p5_ns": 65893.2, "total_p25_ns": 66546.5, "total_p50_ns": 67200.0, "total_p75_ns": 68364.0, "total_p95_ns": 69313.0, "total_p99_ns": 70107.76, "total_ci_low_ns": 67199.38477011495, "total_ci_high_ns": 67695.77385057471, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.141088029728296}, {"serializer": "cbor-encode", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.11.0", "avg_time_ser_ns": 208213.4065934066, "avg_time_deser_ns": 938840.5714285715, "avg_time_total_ns": 1147053.978021978, "median_size_bytes": 34892.0, "avg_ops_per_sec": 871.798554523508, "min_ops_per_sec": 840.7826677697735, "max_ops_per_sec": 898.6421517087681, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 208213.4065934066, "ser_median_ns": 207337.0, "ser_std_ns": 3494.6316448010557, "ser_mad_ns": 2096.0, "ser_cv": 0.01678389351568161, "ser_min_ns": 200437.0, "ser_max_ns": 216304.0, "ser_p5_ns": 203420.5, "ser_p25_ns": 205632.0, "ser_p50_ns": 207337.0, "ser_p75_ns": 210589.5, "ser_p95_ns": 214819.5, "ser_p99_ns": 216274.3, "ser_ci_low_ns": 207464.4184065934, "ser_ci_high_ns": 208953.97967032966, "deser_mean_ns": 938840.5714285715, "deser_median_ns": 935251.0, "deser_std_ns": 14766.105491325477, "deser_mad_ns": 8079.0, "deser_cv": 0.01572802235086291, "deser_min_ns": 910227.0, "deser_max_ns": 978570.0, "deser_p5_ns": 920115.0, "deser_p25_ns": 929129.0, "deser_p50_ns": 935251.0, "deser_p75_ns": 947398.0, "deser_p95_ns": 968159.5, "deser_p99_ns": 973644.2999999999, "deser_ci_low_ns": 935886.1516483517, "deser_ci_high_ns": 941970.2744505495, "total_mean_ns": 1147053.978021978, "total_median_ns": 1141557.0, "total_std_ns": 16813.491059911794, "total_mad_ns": 9367.0, "total_cv": 0.014657977202525025, "total_min_ns": 1112790.0, "total_max_ns": 1189368.0, "total_p5_ns": 1127389.5, "total_p25_ns": 1136517.5, "total_p50_ns": 1141557.0, "total_p75_ns": 1157020.0, "total_p95_ns": 1180500.5, "total_p99_ns": 1189322.1, "total_ci_low_ns": 1143694.953846154, "total_ci_high_ns": 1150382.571978022, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 90.86009779957094}, {"serializer": "avro-c", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.11.3", "avg_time_ser_ns": 41767.489130434784, "avg_time_deser_ns": 49721.88043478261, "avg_time_total_ns": 91489.36956521739, "median_size_bytes": 37992.0, "avg_ops_per_sec": 10930.231618736412, "min_ops_per_sec": 10306.728232189973, "max_ops_per_sec": 11420.348777451663, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 41767.489130434784, "ser_median_ns": 41476.5, "ser_std_ns": 1093.0849327523567, "ser_mad_ns": 670.0, "ser_cv": 0.02617071208994119, "ser_min_ns": 39801.0, "ser_max_ns": 45041.0, "ser_p5_ns": 40573.55, "ser_p25_ns": 40974.25, "ser_p50_ns": 41476.5, "ser_p75_ns": 42528.75, "ser_p95_ns": 44073.85, "ser_p99_ns": 44425.840000000004, "ser_ci_low_ns": 41534.406793478265, "ser_ci_high_ns": 41993.10461956522, "deser_mean_ns": 49721.88043478261, "deser_median_ns": 49564.0, "deser_std_ns": 980.6514412793802, "deser_mad_ns": 661.5, "deser_cv": 0.019722734391866885, "deser_min_ns": 47762.0, "deser_max_ns": 52659.0, "deser_p5_ns": 48399.6, "deser_p25_ns": 48976.25, "deser_p50_ns": 49564.0, "deser_p75_ns": 50310.25, "deser_p95_ns": 51562.85, "deser_p99_ns": 51951.020000000004, "deser_ci_low_ns": 49526.53152173913, "deser_ci_high_ns": 49936.57690217391, "total_mean_ns": 91489.36956521739, "total_median_ns": 90925.0, "total_std_ns": 1892.0673948767928, "total_mad_ns": 1285.5, "total_cv": 0.020680734864262557, "total_min_ns": 87563.0, "total_max_ns": 97024.0, "total_p5_ns": 89266.3, "total_p25_ns": 90043.0, "total_p50_ns": 90925.0, "total_p75_ns": 92679.25, "total_p95_ns": 95231.05, "total_p99_ns": 96538.06, "total_ci_low_ns": 91119.02961956522, "total_ci_high_ns": 91873.96739130435, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.16751713978181}, {"serializer": "custom-binary", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "v2-1.0", "avg_time_ser_ns": 27325.684782608696, "avg_time_deser_ns": 35122.61956521739, "avg_time_total_ns": 62448.30434782609, "median_size_bytes": 37692.0, "avg_ops_per_sec": 16013.245042334145, "min_ops_per_sec": 15279.305708348613, "max_ops_per_sec": 16603.297414866593, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 27325.684782608696, "ser_median_ns": 27199.5, "ser_std_ns": 536.0814668560606, "ser_mad_ns": 369.0, "ser_cv": 0.01961822626297904, "ser_min_ns": 26474.0, "ser_max_ns": 28672.0, "ser_p5_ns": 26642.4, "ser_p25_ns": 26930.75, "ser_p50_ns": 27199.5, "ser_p75_ns": 27683.0, "ser_p95_ns": 28354.15, "ser_p99_ns": 28621.04, "ser_ci_low_ns": 27222.55135869565, "ser_ci_high_ns": 27430.58206521739, "deser_mean_ns": 35122.61956521739, "deser_median_ns": 34912.0, "deser_std_ns": 890.0554105777404, "deser_mad_ns": 604.0, "deser_cv": 0.025341373211785704, "deser_min_ns": 33582.0, "deser_max_ns": 37533.0, "deser_p5_ns": 33956.4, "deser_p25_ns": 34444.75, "deser_p50_ns": 34912.0, "deser_p75_ns": 35679.75, "deser_p95_ns": 36743.45, "deser_p99_ns": 37219.05, "deser_ci_low_ns": 34945.95923913043, "deser_ci_high_ns": 35304.62173913043, "total_mean_ns": 62448.30434782609, "total_median_ns": 62204.5, "total_std_ns": 1220.0396475194364, "total_mad_ns": 941.0, "total_cv": 0.019536793837091712, "total_min_ns": 60229.0, "total_max_ns": 65448.0, "total_p5_ns": 60892.6, "total_p25_ns": 61321.0, "total_p50_ns": 62204.5, "total_p75_ns": 63315.25, "total_p95_ns": 64590.35, "total_p99_ns": 65293.3, "total_ci_low_ns": 62201.07880434783, "total_ci_high_ns": 62692.87173913044, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "json-c", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.15", "avg_time_ser_ns": 242814.39361702127, "avg_time_deser_ns": 499391.8404255319, "avg_time_total_ns": 742206.2340425532, "median_size_bytes": 41492.0, "avg_ops_per_sec": 1347.334412099086, "min_ops_per_sec": 1288.034035011341, "max_ops_per_sec": 1393.380606092696, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 242814.39361702127, "ser_median_ns": 241890.0, "ser_std_ns": 4719.510381517255, "ser_mad_ns": 3449.0, "ser_cv": 0.019436699411489986, "ser_min_ns": 235245.0, "ser_max_ns": 256406.0, "ser_p5_ns": 236613.85, "ser_p25_ns": 239125.0, "ser_p50_ns": 241890.0, "ser_p75_ns": 245781.25, "ser_p95_ns": 251064.85, "ser_p99_ns": 253970.33, "ser_ci_low_ns": 241876.95611702127, "ser_ci_high_ns": 243716.60664893617, "deser_mean_ns": 499391.8404255319, "deser_median_ns": 497170.0, "deser_std_ns": 10205.143345132017, "deser_mad_ns": 5010.5, "deser_cv": 0.02043514234520975, "deser_min_ns": 481298.0, "deser_max_ns": 525798.0, "deser_p5_ns": 485549.25, "deser_p25_ns": 492848.75, "deser_p50_ns": 497170.0, "deser_p75_ns": 505893.5, "deser_p95_ns": 518843.5, "deser_p99_ns": 525774.75, "deser_ci_low_ns": 497355.30797872343, "deser_ci_high_ns": 501398.68457446806, "total_mean_ns": 742206.2340425532, "total_median_ns": 738020.5, "total_std_ns": 13552.009458923154, "total_mad_ns": 7479.5, "total_cv": 0.01825908869709948, "total_min_ns": 717679.0, "total_max_ns": 776377.0, "total_p5_ns": 725903.2, "total_p25_ns": 732164.0, "total_p50_ns": 738020.5, "total_p75_ns": 752753.25, "total_p95_ns": 767141.9, "total_p99_ns": 773321.95, "total_ci_low_ns": 739524.8755319149, "total_ci_high_ns": 744873.0824468086, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 69.98846659010698}, {"serializer": "flatcc", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.6.1", "avg_time_ser_ns": 41847.191011235955, "avg_time_deser_ns": 34665.48314606742, "avg_time_total_ns": 76512.67415730337, "median_size_bytes": 40640.0, "avg_ops_per_sec": 13069.730093919963, "min_ops_per_sec": 12363.53745533672, "max_ops_per_sec": 13703.323055841041, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 41847.191011235955, "ser_median_ns": 41400.0, "ser_std_ns": 1298.7961285569986, "ser_mad_ns": 854.0, "ser_cv": 0.03103663823476879, "ser_min_ns": 39684.0, "ser_max_ns": 45438.0, "ser_p5_ns": 40315.8, "ser_p25_ns": 40769.0, "ser_p50_ns": 41400.0, "ser_p75_ns": 42641.0, "ser_p95_ns": 43983.0, "ser_p99_ns": 44965.44, "ser_ci_low_ns": 41585.300561797754, "ser_ci_high_ns": 42119.02471910112, "deser_mean_ns": 34665.48314606742, "deser_median_ns": 34522.0, "deser_std_ns": 721.9742836071032, "deser_mad_ns": 464.0, "deser_cv": 0.020826892288359947, "deser_min_ns": 32889.0, "deser_max_ns": 36584.0, "deser_p5_ns": 33542.0, "deser_p25_ns": 34178.0, "deser_p50_ns": 34522.0, "deser_p75_ns": 35177.0, "deser_p95_ns": 35911.0, "deser_p99_ns": 36151.920000000006, "deser_ci_low_ns": 34520.58370786517, "deser_ci_high_ns": 34811.989606741576, "total_mean_ns": 76512.67415730337, "total_median_ns": 76326.0, "total_std_ns": 1836.2785846236113, "total_mad_ns": 1370.0, "total_cv": 0.023999665478275967, "total_min_ns": 72975.0, "total_max_ns": 80883.0, "total_p5_ns": 73987.4, "total_p25_ns": 75074.0, "total_p50_ns": 76326.0, "total_p75_ns": 77902.0, "total_p95_ns": 79454.0, "total_p99_ns": 80827.56, "total_ci_low_ns": 76125.86825842697, "total_ci_high_ns": 76896.91629213483, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.013373489146204}, {"serializer": "mpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.1", "avg_time_ser_ns": 41040.44086021505, "avg_time_deser_ns": 112645.48387096774, "avg_time_total_ns": 153685.9247311828, "median_size_bytes": 34992.0, "avg_ops_per_sec": 6506.776738007293, "min_ops_per_sec": 6194.750568368365, "max_ops_per_sec": 6840.038851420676, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 41040.44086021505, "ser_median_ns": 40634.0, "ser_std_ns": 1038.635292545459, "ser_mad_ns": 554.0, "ser_cv": 0.02530760563910805, "ser_min_ns": 39328.0, "ser_max_ns": 44127.0, "ser_p5_ns": 39944.8, "ser_p25_ns": 40259.0, "ser_p50_ns": 40634.0, "ser_p75_ns": 41731.0, "ser_p95_ns": 42825.0, "ser_p99_ns": 43911.72, "ser_ci_low_ns": 40845.71021505377, "ser_ci_high_ns": 41244.79247311828, "deser_mean_ns": 112645.48387096774, "deser_median_ns": 112371.0, "deser_std_ns": 2332.2721176387818, "deser_mad_ns": 1528.0, "deser_cv": 0.02070453281829154, "deser_min_ns": 106084.0, "deser_max_ns": 118048.0, "deser_p5_ns": 109584.4, "deser_p25_ns": 110880.0, "deser_p50_ns": 112371.0, "deser_p75_ns": 114208.0, "deser_p95_ns": 116418.2, "deser_p99_ns": 117951.4, "deser_ci_low_ns": 112161.64677419355, "deser_ci_high_ns": 113127.56586021505, "total_mean_ns": 153685.9247311828, "total_median_ns": 153723.0, "total_std_ns": 2989.8723080068266, "total_mad_ns": 2379.0, "total_cv": 0.019454431583350994, "total_min_ns": 146198.0, "total_max_ns": 161427.0, "total_p5_ns": 149731.4, "total_p25_ns": 151344.0, "total_p50_ns": 153723.0, "total_p75_ns": 156017.0, "total_p95_ns": 158601.8, "total_p99_ns": 160388.32, "total_ci_low_ns": 153088.84059139783, "total_ci_high_ns": 154287.38548387098, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 39.715471498173706}, {"serializer": "parson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.5.3", "avg_time_ser_ns": 356377.59139784944, "avg_time_deser_ns": 368986.6129032258, "avg_time_total_ns": 725364.2043010753, "median_size_bytes": 41492.0, "avg_ops_per_sec": 1378.6177951303098, "min_ops_per_sec": 1323.180131127151, "max_ops_per_sec": 1431.8729184147448, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 356377.59139784944, "ser_median_ns": 354659.0, "ser_std_ns": 6069.5024422473825, "ser_mad_ns": 4387.0, "ser_cv": 0.017031100127369032, "ser_min_ns": 343406.0, "ser_max_ns": 372950.0, "ser_p5_ns": 348628.8, "ser_p25_ns": 351715.0, "ser_p50_ns": 354659.0, "ser_p75_ns": 360856.0, "ser_p95_ns": 366284.8, "ser_p99_ns": 372286.68, "ser_ci_low_ns": 355206.69220430107, "ser_ci_high_ns": 357625.375, "deser_mean_ns": 368986.6129032258, "deser_median_ns": 367275.0, "deser_std_ns": 6239.118156459812, "deser_mad_ns": 4510.0, "deser_cv": 0.016908792726570126, "deser_min_ns": 354980.0, "deser_max_ns": 385331.0, "deser_p5_ns": 360990.8, "deser_p25_ns": 364287.0, "deser_p50_ns": 367275.0, "deser_p75_ns": 373963.0, "deser_p95_ns": 379671.0, "deser_p99_ns": 383768.84, "deser_ci_low_ns": 367716.5758064516, "deser_ci_high_ns": 370206.58279569895, "total_mean_ns": 725364.2043010753, "total_median_ns": 721998.0, "total_std_ns": 11181.7266668116, "total_mad_ns": 7650.0, "total_cv": 0.015415327363149597, "total_min_ns": 698386.0, "total_max_ns": 755755.0, "total_p5_ns": 710851.2, "total_p25_ns": 717257.0, "total_p50_ns": 721998.0, "total_p75_ns": 735477.0, "total_p95_ns": 741018.2, "total_p99_ns": 751664.6799999999, "total_ci_low_ns": 723125.6403225806, "total_ci_high_ns": 727616.2239247311, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 82.78527438642588}, {"serializer": "cJSON", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.7.18", "avg_time_ser_ns": 205441.78494623656, "avg_time_deser_ns": 399696.8387096774, "avg_time_total_ns": 605138.623655914, "median_size_bytes": 41492.0, "avg_ops_per_sec": 1652.513921452495, "min_ops_per_sec": 1587.8207794929772, "max_ops_per_sec": 1696.2434991467894, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 205441.78494623656, "ser_median_ns": 205236.0, "ser_std_ns": 3692.820781301795, "ser_mad_ns": 2839.0, "ser_cv": 0.01797502286240452, "ser_min_ns": 196793.0, "ser_max_ns": 213757.0, "ser_p5_ns": 200460.0, "ser_p25_ns": 202536.0, "ser_p50_ns": 205236.0, "ser_p75_ns": 208075.0, "ser_p95_ns": 211729.8, "ser_p99_ns": 212769.84, "ser_ci_low_ns": 204726.23521505378, "ser_ci_high_ns": 206196.36075268817, "deser_mean_ns": 399696.8387096774, "deser_median_ns": 397687.0, "deser_std_ns": 6946.4919537010255, "deser_mad_ns": 3886.0, "deser_cv": 0.017379401788930982, "deser_min_ns": 388920.0, "deser_max_ns": 416904.0, "deser_p5_ns": 391364.0, "deser_p25_ns": 394981.0, "deser_p50_ns": 397687.0, "deser_p75_ns": 403923.0, "deser_p95_ns": 414692.2, "deser_p99_ns": 416303.24, "deser_ci_low_ns": 398294.4849462366, "deser_ci_high_ns": 401169.74569892476, "total_mean_ns": 605138.623655914, "total_median_ns": 601618.0, "total_std_ns": 9466.255488649715, "total_mad_ns": 5498.0, "total_cv": 0.015643118979019745, "total_min_ns": 589538.0, "total_max_ns": 629794.0, "total_p5_ns": 594936.6, "total_p25_ns": 597814.0, "total_p50_ns": 601618.0, "total_p75_ns": 610887.0, "total_p95_ns": 624005.8, "total_p99_ns": 626789.28, "total_ci_low_ns": 603221.7948924731, "total_ci_high_ns": 607080.4338709677, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 79.86944909733687}, {"serializer": "zcbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.9", "avg_time_ser_ns": 91175.1888888889, "avg_time_deser_ns": 1024973.0666666667, "avg_time_total_ns": 1116148.2555555555, "median_size_bytes": 34992.0, "avg_ops_per_sec": 895.9383263133413, "min_ops_per_sec": 865.3827847671861, "max_ops_per_sec": 922.7756723112855, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 91175.1888888889, "ser_median_ns": 90734.0, "ser_std_ns": 1740.6885238186087, "ser_mad_ns": 843.0, "ser_cv": 0.01909169089783743, "ser_min_ns": 88284.0, "ser_max_ns": 96545.0, "ser_p5_ns": 88874.7, "ser_p25_ns": 90027.0, "ser_p50_ns": 90734.0, "ser_p75_ns": 92077.5, "ser_p95_ns": 94534.1, "ser_p99_ns": 96340.3, "ser_ci_low_ns": 90822.84861111111, "ser_ci_high_ns": 91527.63805555555, "deser_mean_ns": 1024973.0666666667, "deser_median_ns": 1023988.0, "deser_std_ns": 15360.522508961556, "deser_mad_ns": 8765.5, "deser_cv": 0.0149862694040496, "deser_min_ns": 994146.0, "deser_max_ns": 1063204.0, "deser_p5_ns": 1001083.4, "deser_p25_ns": 1015244.25, "deser_p50_ns": 1023988.0, "deser_p75_ns": 1032341.25, "deser_p95_ns": 1053608.55, "deser_p99_ns": 1060443.22, "deser_ci_low_ns": 1021992.2777777779, "deser_ci_high_ns": 1028101.5480555556, "total_mean_ns": 1116148.2555555555, "total_median_ns": 1115145.5, "total_std_ns": 16118.429619022932, "total_mad_ns": 8540.5, "total_cv": 0.014441118855666795, "total_min_ns": 1083687.0, "total_max_ns": 1155558.0, "total_p5_ns": 1090892.95, "total_p25_ns": 1105488.25, "total_p50_ns": 1115145.5, "total_p75_ns": 1123601.0, "total_p95_ns": 1146618.55, "total_p99_ns": 1153817.16, "total_ci_low_ns": 1113015.4047222221, "total_ci_high_ns": 1119555.6941666666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 92.31053408781625}, {"serializer": "qcbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.5.1", "avg_time_ser_ns": 84570.47368421052, "avg_time_deser_ns": 939545.0315789473, "avg_time_total_ns": 1024115.5052631579, "median_size_bytes": 34892.0, "avg_ops_per_sec": 976.4523580209235, "min_ops_per_sec": 937.752020855605, "max_ops_per_sec": 1011.5949007524243, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 84570.47368421052, "ser_median_ns": 84314.0, "ser_std_ns": 2018.6092581443468, "ser_mad_ns": 1373.0, "ser_cv": 0.023868960054331884, "ser_min_ns": 80442.0, "ser_max_ns": 89248.0, "ser_p5_ns": 81633.0, "ser_p25_ns": 83054.0, "ser_p50_ns": 84314.0, "ser_p75_ns": 85876.5, "ser_p95_ns": 88129.3, "ser_p99_ns": 88893.62, "ser_ci_low_ns": 84155.31184210526, "ser_ci_high_ns": 84969.20921052631, "deser_mean_ns": 939545.0315789473, "deser_median_ns": 935817.0, "deser_std_ns": 15358.865282812656, "deser_mad_ns": 9715.0, "deser_cv": 0.016347130543600874, "deser_min_ns": 905583.0, "deser_max_ns": 978708.0, "deser_p5_ns": 919313.5, "deser_p25_ns": 928271.0, "deser_p50_ns": 935817.0, "deser_p75_ns": 950112.0, "deser_p95_ns": 965202.5, "deser_p99_ns": 971519.8200000001, "deser_ci_low_ns": 936523.4247368422, "deser_ci_high_ns": 942549.7339473685, "total_mean_ns": 1024115.5052631579, "total_median_ns": 1020814.0, "total_std_ns": 16161.359039962852, "total_mad_ns": 10892.0, "total_cv": 0.015780797143394493, "total_min_ns": 988538.0, "total_max_ns": 1066380.0, "total_p5_ns": 1002364.5, "total_p25_ns": 1011429.5, "total_p50_ns": 1020814.0, "total_p75_ns": 1036279.5, "total_p95_ns": 1052037.0, "total_p99_ns": 1058797.02, "total_ci_low_ns": 1020983.8860526315, "total_ci_high_ns": 1027368.3697368421, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 82.91011597423297}, {"serializer": "jansson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "2.14", "avg_time_ser_ns": 417489.3125, "avg_time_deser_ns": 676207.34375, "avg_time_total_ns": 1093696.65625, "median_size_bytes": 41492.0, "avg_ops_per_sec": 914.3303074809963, "min_ops_per_sec": 874.5203256014076, "max_ops_per_sec": 946.7321174137172, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 417489.3125, "ser_median_ns": 415935.5, "ser_std_ns": 7472.04697003227, "ser_mad_ns": 4973.5, "ser_cv": 0.017897576647623214, "ser_min_ns": 401621.0, "ser_max_ns": 441222.0, "ser_p5_ns": 406901.0, "ser_p25_ns": 411930.0, "ser_p50_ns": 415935.5, "ser_p75_ns": 423126.75, "ser_p95_ns": 429799.25, "ser_p99_ns": 434010.55, "ser_ci_low_ns": 416063.79453125, "ser_ci_high_ns": 418967.93463541666, "deser_mean_ns": 676207.34375, "deser_median_ns": 674864.0, "deser_std_ns": 12575.991920136119, "deser_mad_ns": 9725.0, "deser_cv": 0.018597833987419068, "deser_min_ns": 650373.0, "deser_max_ns": 714309.0, "deser_p5_ns": 660264.5, "deser_p25_ns": 665231.0, "deser_p50_ns": 674864.0, "deser_p75_ns": 684525.25, "deser_p95_ns": 695804.5, "deser_p99_ns": 710075.7999999999, "deser_ci_low_ns": 673636.7424479167, "deser_ci_high_ns": 678760.8013020834, "total_mean_ns": 1093696.65625, "total_median_ns": 1089540.0, "total_std_ns": 18213.90301294049, "total_mad_ns": 14213.0, "total_cv": 0.01665352354225092, "total_min_ns": 1056265.0, "total_max_ns": 1143484.0, "total_p5_ns": 1070879.5, "total_p25_ns": 1078134.25, "total_p50_ns": 1089540.0, "total_p75_ns": 1107581.0, "total_p95_ns": 1123465.0, "total_p99_ns": 1135760.5, "total_ci_low_ns": 1090041.59453125, "total_ci_high_ns": 1097488.1153645834, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 78.73476558900455}, {"serializer": "yyjson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.10.0", "avg_time_ser_ns": 99597.8829787234, "avg_time_deser_ns": 211291.09574468085, "avg_time_total_ns": 310888.97872340423, "median_size_bytes": 41492.0, "avg_ops_per_sec": 3216.5823443027007, "min_ops_per_sec": 3078.4007092635234, "max_ops_per_sec": 3352.7682130751255, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 99597.8829787234, "ser_median_ns": 99661.0, "ser_std_ns": 2005.588562188773, "ser_mad_ns": 1641.5, "ser_cv": 0.020136859360928554, "ser_min_ns": 94723.0, "ser_max_ns": 104333.0, "ser_p5_ns": 96989.3, "ser_p25_ns": 98011.75, "ser_p50_ns": 99661.0, "ser_p75_ns": 101168.25, "ser_p95_ns": 102863.15, "ser_p99_ns": 103755.47, "ser_ci_low_ns": 99209.18537234043, "ser_ci_high_ns": 99992.23191489362, "deser_mean_ns": 211291.09574468085, "deser_median_ns": 210552.0, "deser_std_ns": 3989.6093889948534, "deser_mad_ns": 2451.5, "deser_cv": 0.01888205167820135, "deser_min_ns": 201297.0, "deser_max_ns": 221710.0, "deser_p5_ns": 204613.35, "deser_p25_ns": 208498.25, "deser_p50_ns": 210552.0, "deser_p75_ns": 213993.0, "deser_p95_ns": 217900.5, "deser_p99_ns": 220105.75, "deser_ci_low_ns": 210508.30452127662, "deser_ci_high_ns": 212074.9005319149, "total_mean_ns": 310888.97872340423, "total_median_ns": 310066.0, "total_std_ns": 5375.668040463703, "total_mad_ns": 3854.0, "total_cv": 0.01729127890778784, "total_min_ns": 298261.0, "total_max_ns": 324844.0, "total_p5_ns": 303683.25, "total_p25_ns": 306923.25, "total_p50_ns": 310066.0, "total_p75_ns": 315085.0, "total_p95_ns": 319270.85, "total_p99_ns": 323589.43, "total_ci_low_ns": 309822.497606383, "total_ci_high_ns": 311948.3768617021, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 63.16897327799944}, {"serializer": "msgpack-c", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "6.0.1", "avg_time_ser_ns": 47390.21875, "avg_time_deser_ns": 81107.83333333333, "avg_time_total_ns": 128498.05208333333, "median_size_bytes": 34992.0, "avg_ops_per_sec": 7782.219137076738, "min_ops_per_sec": 7462.1853756091, "max_ops_per_sec": 8138.749399767232, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 47390.21875, "ser_median_ns": 47251.5, "ser_std_ns": 1272.4510388936694, "ser_mad_ns": 901.0, "ser_cv": 0.026850499374275826, "ser_min_ns": 44360.0, "ser_max_ns": 50866.0, "ser_p5_ns": 45756.0, "ser_p25_ns": 46352.75, "ser_p50_ns": 47251.5, "ser_p75_ns": 48151.5, "ser_p95_ns": 49478.5, "ser_p99_ns": 50354.9, "ser_ci_low_ns": 47142.50989583333, "ser_ci_high_ns": 47644.32552083333, "deser_mean_ns": 81107.83333333333, "deser_median_ns": 80609.0, "deser_std_ns": 1634.0691776032563, "deser_mad_ns": 978.5, "deser_cv": 0.020146872508449737, "deser_min_ns": 78198.0, "deser_max_ns": 85044.0, "deser_p5_ns": 79184.5, "deser_p25_ns": 79848.75, "deser_p50_ns": 80609.0, "deser_p75_ns": 82218.25, "deser_p95_ns": 83984.0, "deser_p99_ns": 84843.55, "deser_ci_low_ns": 80787.05911458333, "deser_ci_high_ns": 81437.01380208333, "total_mean_ns": 128498.05208333333, "total_median_ns": 128106.5, "total_std_ns": 2472.3298892885023, "total_mad_ns": 1817.5, "total_cv": 0.019240212977587795, "total_min_ns": 122869.0, "total_max_ns": 134009.0, "total_p5_ns": 125504.25, "total_p25_ns": 126478.5, "total_p50_ns": 128106.5, "total_p75_ns": 130188.0, "total_p95_ns": 133309.75, "total_p99_ns": 133996.65, "total_ci_low_ns": 128019.68411458333, "total_ci_high_ns": 128998.12317708334, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 33.52538764762459}, {"serializer": "protobuf-c", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.5.0", "avg_time_ser_ns": 34748.044444444444, "avg_time_deser_ns": 43159.07777777778, "avg_time_total_ns": 77907.12222222223, "median_size_bytes": 37192.0, "avg_ops_per_sec": 12835.796926853498, "min_ops_per_sec": 12311.02575466588, "max_ops_per_sec": 13413.996163597098, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 34748.044444444444, "ser_median_ns": 34728.5, "ser_std_ns": 913.6152155297331, "ser_mad_ns": 608.5, "ser_cv": 0.0262925649525524, "ser_min_ns": 32589.0, "ser_max_ns": 37223.0, "ser_p5_ns": 33413.8, "ser_p25_ns": 34066.5, "ser_p50_ns": 34728.5, "ser_p75_ns": 35211.25, "ser_p95_ns": 36588.9, "ser_p99_ns": 37026.31, "ser_ci_low_ns": 34567.54138888889, "ser_ci_high_ns": 34936.79472222223, "deser_mean_ns": 43159.07777777778, "deser_median_ns": 42915.0, "deser_std_ns": 874.5206999018399, "deser_mad_ns": 600.5, "deser_cv": 0.020262729069528976, "deser_min_ns": 41445.0, "deser_max_ns": 45603.0, "deser_p5_ns": 42057.4, "deser_p25_ns": 42449.5, "deser_p50_ns": 42915.0, "deser_p75_ns": 43782.25, "deser_p95_ns": 44678.85, "deser_p99_ns": 45378.72, "deser_ci_low_ns": 42992.0875, "deser_ci_high_ns": 43345.50722222222, "total_mean_ns": 77907.12222222223, "total_median_ns": 77953.0, "total_std_ns": 1409.909773412308, "total_mad_ns": 1108.0, "total_cv": 0.018097315536706415, "total_min_ns": 74549.0, "total_max_ns": 81228.0, "total_p5_ns": 75937.4, "total_p25_ns": 76741.0, "total_p50_ns": 77953.0, "total_p75_ns": 79027.0, "total_p95_ns": 79986.2, "total_p99_ns": 81226.22, "total_ci_low_ns": 77623.16694444444, "total_ci_high_ns": 78186.9836111111, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.685868421085985}, {"serializer": "zcbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.9", "avg_time_ser_ns": 92726.39325842696, "avg_time_deser_ns": 1028231.0449438202, "avg_time_total_ns": 1120957.4382022473, "median_size_bytes": 34992.0, "avg_ops_per_sec": 892.0945309072264, "min_ops_per_sec": 858.9729603901799, "max_ops_per_sec": 926.0073802788208, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 92726.39325842696, "ser_median_ns": 91955.0, "ser_std_ns": 2411.983339014038, "ser_mad_ns": 1342.0, "ser_cv": 0.02601183173696705, "ser_min_ns": 89386.0, "ser_max_ns": 99079.0, "ser_p5_ns": 89767.6, "ser_p25_ns": 91022.0, "ser_p50_ns": 91955.0, "ser_p75_ns": 94065.0, "ser_p95_ns": 97240.2, "ser_p99_ns": 98551.88, "ser_ci_low_ns": 92248.2036516854, "ser_ci_high_ns": 93249.28764044945, "deser_mean_ns": 1028231.0449438202, "deser_median_ns": 1025169.0, "deser_std_ns": 15668.107891734982, "deser_mad_ns": 8075.0, "deser_cv": 0.015237925336703918, "deser_min_ns": 987888.0, "deser_max_ns": 1066908.0, "deser_p5_ns": 1008024.4, "deser_p25_ns": 1017998.0, "deser_p50_ns": 1025169.0, "deser_p75_ns": 1037382.0, "deser_p95_ns": 1059082.2, "deser_p99_ns": 1066871.04, "deser_ci_low_ns": 1025144.9570224718, "deser_ci_high_ns": 1031519.4179775281, "total_mean_ns": 1120957.4382022473, "total_median_ns": 1116634.0, "total_std_ns": 16698.32605515993, "total_mad_ns": 8341.0, "total_cv": 0.014896485349113815, "total_min_ns": 1079905.0, "total_max_ns": 1164181.0, "total_p5_ns": 1099070.4, "total_p25_ns": 1110313.0, "total_p50_ns": 1116634.0, "total_p75_ns": 1129613.0, "total_p95_ns": 1154617.0, "total_p99_ns": 1163217.4, "total_ci_low_ns": 1117621.9516853932, "total_ci_high_ns": 1124618.4539325843, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 88.20980088873732}, {"serializer": "cbor-encode", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.11.0", "avg_time_ser_ns": 211187.69072164947, "avg_time_deser_ns": 942698.7731958763, "avg_time_total_ns": 1153886.4639175257, "median_size_bytes": 34892.0, "avg_ops_per_sec": 866.6363903818835, "min_ops_per_sec": 826.8070695311674, "max_ops_per_sec": 897.1160410627954, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 211187.69072164947, "ser_median_ns": 209877.0, "ser_std_ns": 3954.495973363801, "ser_mad_ns": 2271.0, "ser_cv": 0.018725030610689915, "ser_min_ns": 201599.0, "ser_max_ns": 221443.0, "ser_p5_ns": 206499.0, "ser_p25_ns": 208411.0, "ser_p50_ns": 209877.0, "ser_p75_ns": 213632.0, "ser_p95_ns": 219355.8, "ser_p99_ns": 220338.03999999998, "ser_ci_low_ns": 210410.63041237113, "ser_ci_high_ns": 211984.8850515464, "deser_mean_ns": 942698.7731958763, "deser_median_ns": 940858.0, "deser_std_ns": 17458.269917449554, "deser_mad_ns": 11699.0, "deser_cv": 0.018519457555103907, "deser_min_ns": 906101.0, "deser_max_ns": 990172.0, "deser_p5_ns": 920990.2, "deser_p25_ns": 929592.0, "deser_p50_ns": 940858.0, "deser_p75_ns": 954795.0, "deser_p95_ns": 972103.2, "deser_p99_ns": 986733.28, "deser_ci_low_ns": 939064.862371134, "deser_ci_high_ns": 946391.5007731959, "total_mean_ns": 1153886.4639175257, "total_median_ns": 1150642.0, "total_std_ns": 20384.14021470995, "total_mad_ns": 13911.0, "total_cv": 0.017665637696714424, "total_min_ns": 1114683.0, "total_max_ns": 1209472.0, "total_p5_ns": 1129249.8, "total_p25_ns": 1139036.0, "total_p50_ns": 1150642.0, "total_p75_ns": 1167540.0, "total_p95_ns": 1191297.2, "total_p99_ns": 1205379.52, "total_ci_low_ns": 1149957.924484536, "total_ci_high_ns": 1157962.3920103093, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 73.07966503891404}, {"serializer": "protobuf-c", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.5.0", "avg_time_ser_ns": 36313.47368421053, "avg_time_deser_ns": 45001.10526315789, "avg_time_total_ns": 81314.57894736843, "median_size_bytes": 37192.0, "avg_ops_per_sec": 12297.917703629244, "min_ops_per_sec": 11516.491615994104, "max_ops_per_sec": 12859.255449109496, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 36313.47368421053, "ser_median_ns": 36008.0, "ser_std_ns": 1020.9933923776566, "ser_mad_ns": 599.0, "ser_cv": 0.028116103715563712, "ser_min_ns": 34575.0, "ser_max_ns": 38987.0, "ser_p5_ns": 34973.5, "ser_p25_ns": 35553.0, "ser_p50_ns": 36008.0, "ser_p75_ns": 36878.5, "ser_p95_ns": 38187.9, "ser_p99_ns": 38933.42, "ser_ci_low_ns": 36110.52868421053, "ser_ci_high_ns": 36522.05052631579, "deser_mean_ns": 45001.10526315789, "deser_median_ns": 44574.0, "deser_std_ns": 1379.4633976287796, "deser_mad_ns": 877.0, "deser_cv": 0.030653989264528957, "deser_min_ns": 42830.0, "deser_max_ns": 48423.0, "deser_p5_ns": 43311.5, "deser_p25_ns": 43909.5, "deser_p50_ns": 44574.0, "deser_p75_ns": 46123.5, "deser_p95_ns": 47689.2, "deser_p99_ns": 48289.52, "deser_ci_low_ns": 44727.77815789474, "deser_ci_high_ns": 45281.66026315789, "total_mean_ns": 81314.57894736843, "total_median_ns": 80836.0, "total_std_ns": 1989.5451612085214, "total_mad_ns": 1157.0, "total_cv": 0.024467262660196176, "total_min_ns": 77765.0, "total_max_ns": 86832.0, "total_p5_ns": 78971.7, "total_p25_ns": 79768.0, "total_p50_ns": 80836.0, "total_p75_ns": 82346.5, "total_p95_ns": 85024.3, "total_p99_ns": 85980.36, "total_ci_low_ns": 80935.22210526315, "total_ci_high_ns": 81729.78157894737, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.247269130518188}, {"serializer": "yyjson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.10.0", "avg_time_ser_ns": 101244.63636363637, "avg_time_deser_ns": 213413.45454545456, "avg_time_total_ns": 314658.0909090909, "median_size_bytes": 41492.0, "avg_ops_per_sec": 3178.052714649292, "min_ops_per_sec": 2986.4564201346893, "max_ops_per_sec": 3311.543377906707, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 101244.63636363637, "ser_median_ns": 100815.5, "ser_std_ns": 2542.579463068718, "ser_mad_ns": 1370.0, "ser_cv": 0.025113226284270856, "ser_min_ns": 95090.0, "ser_max_ns": 108617.0, "ser_p5_ns": 97941.4, "ser_p25_ns": 99511.25, "ser_p50_ns": 100815.5, "ser_p75_ns": 102247.5, "ser_p95_ns": 106638.2, "ser_p99_ns": 107717.42, "ser_ci_low_ns": 100742.42954545455, "ser_ci_high_ns": 101802.27670454545, "deser_mean_ns": 213413.45454545456, "deser_median_ns": 211543.5, "deser_std_ns": 5045.252861323379, "deser_mad_ns": 2394.5, "deser_cv": 0.023640744076183814, "deser_min_ns": 204784.0, "deser_max_ns": 227262.0, "deser_p5_ns": 207881.35, "deser_p25_ns": 209992.5, "deser_p50_ns": 211543.5, "deser_p75_ns": 215899.5, "deser_p95_ns": 223300.19999999998, "deser_p99_ns": 226519.02, "deser_ci_low_ns": 212401.89034090907, "deser_ci_high_ns": 214479.89602272728, "total_mean_ns": 314658.0909090909, "total_median_ns": 312574.5, "total_std_ns": 6568.568091543981, "total_mad_ns": 3599.0, "total_cv": 0.02087525565469007, "total_min_ns": 301974.0, "total_max_ns": 334845.0, "total_p5_ns": 307199.2, "total_p25_ns": 310089.75, "total_p50_ns": 312574.5, "total_p75_ns": 318678.75, "total_p95_ns": 326878.85, "total_p99_ns": 331117.92, "total_ci_low_ns": 313330.4213068182, "total_ci_high_ns": 316057.66505681816, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 52.11439795698405}, {"serializer": "tinycbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.6.0", "avg_time_ser_ns": 45095.693181818184, "avg_time_deser_ns": 940555.5340909091, "avg_time_total_ns": 985651.2272727273, "median_size_bytes": 34892.0, "avg_ops_per_sec": 1014.5576572424867, "min_ops_per_sec": 962.8373661776416, "max_ops_per_sec": 1063.4643627774713, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 45095.693181818184, "ser_median_ns": 44870.0, "ser_std_ns": 1332.0070273360116, "ser_mad_ns": 793.0, "ser_cv": 0.029537344552296497, "ser_min_ns": 42592.0, "ser_max_ns": 49056.0, "ser_p5_ns": 43406.45, "ser_p25_ns": 44145.5, "ser_p50_ns": 44870.0, "ser_p75_ns": 45867.25, "ser_p95_ns": 47854.2, "ser_p99_ns": 48396.53999999999, "ser_ci_low_ns": 44833.036931818184, "ser_ci_high_ns": 45371.19289772727, "deser_mean_ns": 940555.5340909091, "deser_median_ns": 939237.0, "deser_std_ns": 20418.91434174149, "deser_mad_ns": 13447.0, "deser_cv": 0.021709419169467038, "deser_min_ns": 897558.0, "deser_max_ns": 993613.0, "deser_p5_ns": 913055.1, "deser_p25_ns": 925670.25, "deser_p50_ns": 939237.0, "deser_p75_ns": 951877.25, "deser_p95_ns": 979421.75, "deser_p99_ns": 991699.87, "deser_ci_low_ns": 936250.8485795455, "deser_ci_high_ns": 944826.5991477272, "total_mean_ns": 985651.2272727273, "total_median_ns": 985003.5, "total_std_ns": 20988.23203920858, "total_mad_ns": 14287.5, "total_cv": 0.021293771527361154, "total_min_ns": 940323.0, "total_max_ns": 1038597.0, "total_p5_ns": 957424.55, "total_p25_ns": 970511.0, "total_p50_ns": 985003.5, "total_p75_ns": 998072.25, "total_p95_ns": 1024036.7, "total_p99_ns": 1038483.03, "total_ci_low_ns": 981641.9, "total_ci_high_ns": 990000.9994318181, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 61.44017732842021}, {"serializer": "nanopb", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.4.9", "avg_time_ser_ns": 35363.204545454544, "avg_time_deser_ns": 45591.21590909091, "avg_time_total_ns": 80954.42045454546, "median_size_bytes": 37192.0, "avg_ops_per_sec": 12352.629966160812, "min_ops_per_sec": 11685.792413583566, "max_ops_per_sec": 12921.56609381057, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 35363.204545454544, "ser_median_ns": 35147.0, "ser_std_ns": 1016.8010707362407, "ser_mad_ns": 701.0, "ser_cv": 0.02875308060470828, "ser_min_ns": 33539.0, "ser_max_ns": 38240.0, "ser_p5_ns": 34006.75, "ser_p25_ns": 34590.25, "ser_p50_ns": 35147.0, "ser_p75_ns": 35919.5, "ser_p95_ns": 37134.75, "ser_p99_ns": 37999.88, "ser_ci_low_ns": 35152.58664772727, "ser_ci_high_ns": 35570.52670454545, "deser_mean_ns": 45591.21590909091, "deser_median_ns": 45128.0, "deser_std_ns": 1407.351204432481, "deser_mad_ns": 841.5, "deser_cv": 0.030868911398168136, "deser_min_ns": 43262.0, "deser_max_ns": 49274.0, "deser_p5_ns": 44057.5, "deser_p25_ns": 44549.75, "deser_p50_ns": 45128.0, "deser_p75_ns": 46360.5, "deser_p95_ns": 48569.65, "deser_p99_ns": 49071.29, "deser_ci_low_ns": 45296.838920454546, "deser_ci_high_ns": 45888.16306818181, "total_mean_ns": 80954.42045454546, "total_median_ns": 80712.0, "total_std_ns": 2037.9868629041518, "total_mad_ns": 1281.0, "total_cv": 0.025174497593351892, "total_min_ns": 77390.0, "total_max_ns": 85574.0, "total_p5_ns": 78382.55, "total_p25_ns": 79428.25, "total_p50_ns": 80712.0, "total_p75_ns": 81956.0, "total_p95_ns": 84874.84999999999, "total_p99_ns": 85401.74, "total_ci_low_ns": 80525.29999999999, "total_ci_high_ns": 81390.29289772727, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.950870190021273}, {"serializer": "parson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.5.3", "avg_time_ser_ns": 359687.3333333333, "avg_time_deser_ns": 372481.688172043, "avg_time_total_ns": 732169.0215053763, "median_size_bytes": 41492.0, "avg_ops_per_sec": 1365.8048491917205, "min_ops_per_sec": 1287.69899778387, "max_ops_per_sec": 1434.8828633374515, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 359687.3333333333, "ser_median_ns": 357466.0, "ser_std_ns": 7150.583377437199, "ser_mad_ns": 4027.0, "ser_cv": 0.019879997750186364, "ser_min_ns": 343172.0, "ser_max_ns": 377619.0, "ser_p5_ns": 351908.4, "ser_p25_ns": 354719.0, "ser_p50_ns": 357466.0, "ser_p75_ns": 363637.0, "ser_p95_ns": 373991.2, "ser_p99_ns": 377448.8, "ser_ci_low_ns": 358319.12231182796, "ser_ci_high_ns": 361170.3892473118, "deser_mean_ns": 372481.688172043, "deser_median_ns": 370598.0, "deser_std_ns": 9888.83743549359, "deser_mad_ns": 6484.0, "deser_cv": 0.02654851969776861, "deser_min_ns": 353749.0, "deser_max_ns": 400688.0, "deser_p5_ns": 361933.8, "deser_p25_ns": 364314.0, "deser_p50_ns": 370598.0, "deser_p75_ns": 377444.0, "deser_p95_ns": 391913.39999999997, "deser_p99_ns": 398691.6, "deser_ci_low_ns": 370534.8940860215, "deser_ci_high_ns": 374493.4258064516, "total_mean_ns": 732169.0215053763, "total_median_ns": 728638.0, "total_std_ns": 15595.833908575725, "total_mad_ns": 9803.0, "total_cv": 0.021300865579521388, "total_min_ns": 696921.0, "total_max_ns": 776579.0, "total_p5_ns": 714084.6, "total_p25_ns": 721041.0, "total_p50_ns": 728638.0, "total_p75_ns": 741903.0, "total_p95_ns": 761758.6, "total_p99_ns": 775189.8, "total_ci_low_ns": 729214.6712365592, "total_ci_high_ns": 735452.5809139784, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 59.01107184787628}, {"serializer": "cJSON", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.7.18", "avg_time_ser_ns": 207568.7191011236, "avg_time_deser_ns": 400921.6629213483, "avg_time_total_ns": 608490.3820224719, "median_size_bytes": 41492.0, "avg_ops_per_sec": 1643.411349701612, "min_ops_per_sec": 1573.4007168413666, "max_ops_per_sec": 1713.0386221687754, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 207568.7191011236, "ser_median_ns": 207509.0, "ser_std_ns": 4004.842341661257, "ser_mad_ns": 2637.0, "ser_cv": 0.019294055284458215, "ser_min_ns": 198692.0, "ser_max_ns": 218624.0, "ser_p5_ns": 202284.4, "ser_p25_ns": 204700.0, "ser_p50_ns": 207509.0, "ser_p75_ns": 209500.0, "ser_p95_ns": 215282.0, "ser_p99_ns": 218466.48, "ser_ci_low_ns": 206752.9893258427, "ser_ci_high_ns": 208385.86235955058, "deser_mean_ns": 400921.6629213483, "deser_median_ns": 400442.0, "deser_std_ns": 7497.12688444383, "deser_mad_ns": 4931.0, "deser_cv": 0.0186997300914483, "deser_min_ns": 385066.0, "deser_max_ns": 420590.0, "deser_p5_ns": 390793.6, "deser_p25_ns": 396554.0, "deser_p50_ns": 400442.0, "deser_p75_ns": 405615.0, "deser_p95_ns": 415847.2, "deser_p99_ns": 419886.0, "deser_ci_low_ns": 399437.62415730336, "deser_ci_high_ns": 402407.4073033708, "total_mean_ns": 608490.3820224719, "total_median_ns": 608188.0, "total_std_ns": 10202.830758606362, "total_mad_ns": 6181.0, "total_cv": 0.016767447867778403, "total_min_ns": 583758.0, "total_max_ns": 635566.0, "total_p5_ns": 592975.0, "total_p25_ns": 602087.0, "total_p50_ns": 608188.0, "total_p75_ns": 614369.0, "total_p95_ns": 627123.6, "total_p99_ns": 635497.36, "total_ci_low_ns": 606516.7893258426, "total_ci_high_ns": 610613.4985955056, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 73.84944748069331}, {"serializer": "protobuf-wire", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "wire-v2", "avg_time_ser_ns": 35332.17391304348, "avg_time_deser_ns": 45454.510869565216, "avg_time_total_ns": 80786.68478260869, "median_size_bytes": 37192.0, "avg_ops_per_sec": 12378.277468507713, "min_ops_per_sec": 11616.965416293955, "max_ops_per_sec": 12899.563994736978, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 35332.17391304348, "ser_median_ns": 35221.5, "ser_std_ns": 1005.413715170353, "ser_mad_ns": 666.5, "ser_cv": 0.02845603889658166, "ser_min_ns": 33606.0, "ser_max_ns": 38357.0, "ser_p5_ns": 33921.15, "ser_p25_ns": 34573.25, "ser_p50_ns": 35221.5, "ser_p75_ns": 35881.0, "ser_p95_ns": 37257.35, "ser_p99_ns": 38015.75, "ser_ci_low_ns": 35128.52717391305, "ser_ci_high_ns": 35536.52554347826, "deser_mean_ns": 45454.510869565216, "deser_median_ns": 45053.0, "deser_std_ns": 1456.5530701057207, "deser_mad_ns": 820.5, "deser_cv": 0.032044191923776236, "deser_min_ns": 43404.0, "deser_max_ns": 49305.0, "deser_p5_ns": 43879.4, "deser_p25_ns": 44305.75, "deser_p50_ns": 45053.0, "deser_p75_ns": 46307.0, "deser_p95_ns": 48718.6, "deser_p99_ns": 49031.090000000004, "deser_ci_low_ns": 45151.91005434783, "deser_ci_high_ns": 45745.88206521739, "total_mean_ns": 80786.68478260869, "total_median_ns": 80691.5, "total_std_ns": 1965.7727442315627, "total_mad_ns": 1565.5, "total_cv": 0.024332880468128128, "total_min_ns": 77522.0, "total_max_ns": 86081.0, "total_p5_ns": 78114.55, "total_p25_ns": 79192.25, "total_p50_ns": 80691.5, "total_p75_ns": 82214.0, "total_p95_ns": 84164.8, "total_p99_ns": 85523.17, "total_ci_low_ns": 80412.65923913043, "total_ci_high_ns": 81178.3206521739, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.04041771621764}, {"serializer": "custom-binary", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "v2-1.0", "avg_time_ser_ns": 28643.55172413793, "avg_time_deser_ns": 36393.333333333336, "avg_time_total_ns": 65036.88505747126, "median_size_bytes": 37692.0, "avg_ops_per_sec": 15375.890144743682, "min_ops_per_sec": 14460.061310659958, "max_ops_per_sec": 15898.756717224713, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 28643.55172413793, "ser_median_ns": 28500.0, "ser_std_ns": 706.1872694284476, "ser_mad_ns": 395.0, "ser_cv": 0.024654319276800556, "ser_min_ns": 27612.0, "ser_max_ns": 30858.0, "ser_p5_ns": 27839.3, "ser_p25_ns": 28144.0, "ser_p50_ns": 28500.0, "ser_p75_ns": 28903.5, "ser_p95_ns": 30176.0, "ser_p99_ns": 30587.1, "ser_ci_low_ns": 28501.147126436783, "ser_ci_high_ns": 28803.191091954024, "deser_mean_ns": 36393.333333333336, "deser_median_ns": 36239.0, "deser_std_ns": 849.6928127088003, "deser_mad_ns": 434.0, "deser_cv": 0.023347485236548823, "deser_min_ns": 34875.0, "deser_max_ns": 38613.0, "deser_p5_ns": 35288.1, "deser_p25_ns": 35852.0, "deser_p50_ns": 36239.0, "deser_p75_ns": 36764.0, "deser_p95_ns": 38269.1, "deser_p99_ns": 38600.96, "deser_ci_low_ns": 36221.081034482755, "deser_ci_high_ns": 36570.13879310345, "total_mean_ns": 65036.88505747126, "total_median_ns": 64675.0, "total_std_ns": 1450.8036459813331, "total_mad_ns": 724.0, "total_cv": 0.022307397482202583, "total_min_ns": 62898.0, "total_max_ns": 69156.0, "total_p5_ns": 63258.2, "total_p25_ns": 64041.5, "total_p50_ns": 64675.0, "total_p75_ns": 65605.0, "total_p95_ns": 68252.8, "total_p99_ns": 68928.1, "total_ci_low_ns": 64745.35172413793, "total_ci_high_ns": 65361.69597701149, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "avro-c", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.11.3", "avg_time_ser_ns": 43387.406593406595, "avg_time_deser_ns": 51761.406593406595, "avg_time_total_ns": 95148.81318681319, "median_size_bytes": 37992.0, "avg_ops_per_sec": 10509.85258257106, "min_ops_per_sec": 9829.845376532227, "max_ops_per_sec": 11006.185476237646, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 43387.406593406595, "ser_median_ns": 42956.0, "ser_std_ns": 1430.019401407019, "ser_mad_ns": 736.0, "ser_cv": 0.0329593196202774, "ser_min_ns": 41213.0, "ser_max_ns": 47263.0, "ser_p5_ns": 41761.0, "ser_p25_ns": 42312.0, "ser_p50_ns": 42956.0, "ser_p75_ns": 44075.0, "ser_p95_ns": 46147.0, "ser_p99_ns": 47127.1, "ser_ci_low_ns": 43098.435164835166, "ser_ci_high_ns": 43677.397802197804, "deser_mean_ns": 51761.406593406595, "deser_median_ns": 51482.0, "deser_std_ns": 1610.947153957861, "deser_mad_ns": 1083.0, "deser_cv": 0.031122553654928393, "deser_min_ns": 47784.0, "deser_max_ns": 56141.0, "deser_p5_ns": 49821.5, "deser_p25_ns": 50442.5, "deser_p50_ns": 51482.0, "deser_p75_ns": 52920.5, "deser_p95_ns": 54513.5, "deser_p99_ns": 55485.799999999996, "deser_ci_low_ns": 51450.05192307692, "deser_ci_high_ns": 52088.92967032967, "total_mean_ns": 95148.81318681319, "total_median_ns": 94686.0, "total_std_ns": 2593.684688760965, "total_mad_ns": 1741.0, "total_cv": 0.027259243724549444, "total_min_ns": 90858.0, "total_max_ns": 101731.0, "total_p5_ns": 91663.5, "total_p25_ns": 93020.5, "total_p50_ns": 94686.0, "total_p75_ns": 97320.0, "total_p95_ns": 100102.0, "total_p99_ns": 100984.0, "total_ci_low_ns": 94651.51923076923, "total_ci_high_ns": 95671.67692307691, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.183987042141316}, {"serializer": "qcbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.5.1", "avg_time_ser_ns": 86204.08888888889, "avg_time_deser_ns": 939309.7888888889, "avg_time_total_ns": 1025513.8777777777, "median_size_bytes": 34892.0, "avg_ops_per_sec": 975.1208849235032, "min_ops_per_sec": 932.0950140373509, "max_ops_per_sec": 1011.8702499015956, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 86204.08888888889, "ser_median_ns": 85779.5, "ser_std_ns": 2253.7088116569817, "ser_mad_ns": 1273.5, "ser_cv": 0.026143873692138393, "ser_min_ns": 81673.0, "ser_max_ns": 92082.0, "ser_p5_ns": 83169.95, "ser_p25_ns": 84842.75, "ser_p50_ns": 85779.5, "ser_p75_ns": 87388.5, "ser_p95_ns": 90764.15, "ser_p99_ns": 91941.38, "ser_ci_low_ns": 85726.19861111112, "ser_ci_high_ns": 86671.20666666667, "deser_mean_ns": 939309.7888888889, "deser_median_ns": 936723.0, "deser_std_ns": 15678.181111895705, "deser_mad_ns": 9367.0, "deser_cv": 0.016691171855497695, "deser_min_ns": 904357.0, "deser_max_ns": 981667.0, "deser_p5_ns": 918524.7, "deser_p25_ns": 928992.75, "deser_p50_ns": 936723.0, "deser_p75_ns": 947210.25, "deser_p95_ns": 967689.9, "deser_p99_ns": 978641.89, "deser_ci_low_ns": 936258.5511111111, "deser_ci_high_ns": 942499.2963888888, "total_mean_ns": 1025513.8777777777, "total_median_ns": 1023149.5, "total_std_ns": 16410.771117479126, "total_mad_ns": 10143.0, "total_cv": 0.016002485654353315, "total_min_ns": 988269.0, "total_max_ns": 1072852.0, "total_p5_ns": 1003334.95, "total_p25_ns": 1015102.0, "total_p50_ns": 1023149.5, "total_p75_ns": 1036178.5, "total_p95_ns": 1053597.1, "total_p99_ns": 1066209.04, "total_ci_low_ns": 1022078.1444444444, "total_ci_high_ns": 1028880.3561111111, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 81.41047832176251}, {"serializer": "flatcc", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.6.1", "avg_time_ser_ns": 43234.52747252747, "avg_time_deser_ns": 36223.36263736264, "avg_time_total_ns": 79457.89010989011, "median_size_bytes": 40640.0, "avg_ops_per_sec": 12585.2825769348, "min_ops_per_sec": 11946.860365096052, "max_ops_per_sec": 13253.9861363305, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 43234.52747252747, "ser_median_ns": 42979.0, "ser_std_ns": 1069.6929605229857, "ser_mad_ns": 625.0, "ser_cv": 0.024741636443296414, "ser_min_ns": 41203.0, "ser_max_ns": 45755.0, "ser_p5_ns": 41888.0, "ser_p25_ns": 42452.5, "ser_p50_ns": 42979.0, "ser_p75_ns": 44009.0, "ser_p95_ns": 45372.0, "ser_p99_ns": 45620.9, "ser_ci_low_ns": 43017.557417582415, "ser_ci_high_ns": 43452.704670329666, "deser_mean_ns": 36223.36263736264, "deser_median_ns": 36055.0, "deser_std_ns": 884.4912852592917, "deser_mad_ns": 570.0, "deser_cv": 0.024417702302076776, "deser_min_ns": 34093.0, "deser_max_ns": 38550.0, "deser_p5_ns": 35067.5, "deser_p25_ns": 35602.0, "deser_p50_ns": 36055.0, "deser_p75_ns": 36758.5, "deser_p95_ns": 37689.5, "deser_p99_ns": 38437.5, "deser_ci_low_ns": 36042.9456043956, "deser_ci_high_ns": 36404.55082417582, "total_mean_ns": 79457.89010989011, "total_median_ns": 79225.0, "total_std_ns": 1636.4824909987713, "total_mad_ns": 1081.0, "total_cv": 0.020595594581425698, "total_min_ns": 75449.0, "total_max_ns": 83704.0, "total_p5_ns": 77380.5, "total_p25_ns": 78235.5, "total_p50_ns": 79225.0, "total_p75_ns": 80429.5, "total_p95_ns": 82752.5, "total_p99_ns": 83443.0, "total_ci_low_ns": 79138.21703296703, "total_ci_high_ns": 79799.66043956045, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.272922358420049}, {"serializer": "mpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.1", "avg_time_ser_ns": 42554.333333333336, "avg_time_deser_ns": 114657.6551724138, "avg_time_total_ns": 157211.98850574714, "median_size_bytes": 34992.0, "avg_ops_per_sec": 6360.838060154957, "min_ops_per_sec": 5987.342757410834, "max_ops_per_sec": 6725.673239891313, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 42554.333333333336, "ser_median_ns": 42379.0, "ser_std_ns": 1244.5268706552486, "ser_mad_ns": 879.0, "ser_cv": 0.02924559670355346, "ser_min_ns": 40412.0, "ser_max_ns": 45794.0, "ser_p5_ns": 41281.1, "ser_p25_ns": 41530.0, "ser_p50_ns": 42379.0, "ser_p75_ns": 43314.0, "ser_p95_ns": 45084.5, "ser_p99_ns": 45728.64, "ser_ci_low_ns": 42315.39109195402, "ser_ci_high_ns": 42828.79655172414, "deser_mean_ns": 114657.6551724138, "deser_median_ns": 114060.0, "deser_std_ns": 3200.931815013008, "deser_mad_ns": 1936.0, "deser_cv": 0.027917297019546414, "deser_min_ns": 108272.0, "deser_max_ns": 122679.0, "deser_p5_ns": 110891.6, "deser_p25_ns": 112208.5, "deser_p50_ns": 114060.0, "deser_p75_ns": 116374.5, "deser_p95_ns": 121151.8, "deser_p99_ns": 121901.56, "deser_ci_low_ns": 113990.02729885057, "deser_ci_high_ns": 115322.72068965518, "total_mean_ns": 157211.98850574714, "total_median_ns": 156576.0, "total_std_ns": 4008.6349079764973, "total_mad_ns": 2881.0, "total_cv": 0.025498277491922666, "total_min_ns": 148684.0, "total_max_ns": 167019.0, "total_p5_ns": 152359.8, "total_p25_ns": 153761.5, "total_p50_ns": 156576.0, "total_p75_ns": 159529.0, "total_p95_ns": 165748.3, "total_p99_ns": 166978.58, "total_ci_low_ns": 156438.375, "total_ci_high_ns": 158047.87816091953, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.444084101985062}, {"serializer": "jansson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "2.14", "avg_time_ser_ns": 421557.4421052632, "avg_time_deser_ns": 681267.6736842105, "avg_time_total_ns": 1102825.1157894738, "median_size_bytes": 41492.0, "avg_ops_per_sec": 906.7620837453771, "min_ops_per_sec": 867.3591083548366, "max_ops_per_sec": 937.5709037995998, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 421557.4421052632, "ser_median_ns": 419243.0, "ser_std_ns": 9016.209713050026, "ser_mad_ns": 5623.0, "ser_cv": 0.021387855633678204, "ser_min_ns": 401369.0, "ser_max_ns": 444240.0, "ser_p5_ns": 410598.0, "ser_p25_ns": 414842.5, "ser_p50_ns": 419243.0, "ser_p75_ns": 427216.5, "ser_p95_ns": 438079.0, "ser_p99_ns": 442176.7, "ser_ci_low_ns": 419807.50763157895, "ser_ci_high_ns": 423403.13684210525, "deser_mean_ns": 681267.6736842105, "deser_median_ns": 677013.0, "deser_std_ns": 14231.29616967411, "deser_mad_ns": 9118.0, "deser_cv": 0.020889434093816658, "deser_min_ns": 659709.0, "deser_max_ns": 717220.0, "deser_p5_ns": 664187.0, "deser_p25_ns": 669903.5, "deser_p50_ns": 677013.0, "deser_p75_ns": 691418.0, "deser_p95_ns": 707557.6, "deser_p99_ns": 717109.08, "deser_ci_low_ns": 678427.6555263158, "deser_ci_high_ns": 684131.8250000001, "total_mean_ns": 1102825.1157894738, "total_median_ns": 1095878.0, "total_std_ns": 21025.578407235094, "total_mad_ns": 15605.0, "total_cv": 0.019065197288496302, "total_min_ns": 1066586.0, "total_max_ns": 1152925.0, "total_p5_ns": 1077622.1, "total_p25_ns": 1086368.0, "total_p50_ns": 1095878.0, "total_p75_ns": 1116036.5, "total_p95_ns": 1140535.9, "total_p99_ns": 1152375.1, "total_ci_low_ns": 1098732.377631579, "total_ci_high_ns": 1107145.4284210526, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 67.86930451673919}, {"serializer": "json-c", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.15", "avg_time_ser_ns": 243801.010989011, "avg_time_deser_ns": 501551.83516483515, "avg_time_total_ns": 745352.8461538461, "median_size_bytes": 41492.0, "avg_ops_per_sec": 1341.6464499467315, "min_ops_per_sec": 1289.0568100226744, "max_ops_per_sec": 1385.423406174278, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 243801.010989011, "ser_median_ns": 242673.0, "ser_std_ns": 4919.76165749364, "ser_mad_ns": 2793.0, "ser_cv": 0.020179414505034157, "ser_min_ns": 233066.0, "ser_max_ns": 257300.0, "ser_p5_ns": 238029.5, "ser_p25_ns": 240362.0, "ser_p50_ns": 242673.0, "ser_p75_ns": 245878.0, "ser_p95_ns": 253031.5, "ser_p99_ns": 256429.69999999998, "ser_ci_low_ns": 242756.2087912088, "ser_ci_high_ns": 244807.25357142856, "deser_mean_ns": 501551.83516483515, "deser_median_ns": 500222.0, "deser_std_ns": 10060.10996655574, "deser_mad_ns": 6505.0, "deser_cv": 0.02005796661724801, "deser_min_ns": 481285.0, "deser_max_ns": 525725.0, "deser_p5_ns": 487624.0, "deser_p25_ns": 494054.5, "deser_p50_ns": 500222.0, "deser_p75_ns": 507818.0, "deser_p95_ns": 520023.5, "deser_p99_ns": 524535.2, "deser_ci_low_ns": 499549.9662087912, "deser_ci_high_ns": 503577.75412087917, "total_mean_ns": 745352.8461538461, "total_median_ns": 741840.0, "total_std_ns": 12996.18115697674, "total_mad_ns": 8885.0, "total_cv": 0.017436280312122448, "total_min_ns": 721801.0, "total_max_ns": 775761.0, "total_p5_ns": 727199.0, "total_p25_ns": 735358.5, "total_p50_ns": 741840.0, "total_p75_ns": 753181.0, "total_p95_ns": 771855.0, "total_p99_ns": 775712.4, "total_ci_low_ns": 742774.9447802198, "total_ci_high_ns": 748134.9318681319, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 72.46064011882802}, {"serializer": "libbson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.27.5", "avg_time_ser_ns": 252234.5806451613, "avg_time_deser_ns": 908256.3655913979, "avg_time_total_ns": 1160490.9462365592, "median_size_bytes": 60292.0, "avg_ops_per_sec": 861.7042668389383, "min_ops_per_sec": 824.0313922999211, "max_ops_per_sec": 899.2530803914269, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 252234.5806451613, "ser_median_ns": 251498.0, "ser_std_ns": 5297.149580758095, "ser_mad_ns": 3724.0, "ser_cv": 0.021000885632767467, "ser_min_ns": 241286.0, "ser_max_ns": 266834.0, "ser_p5_ns": 245670.6, "ser_p25_ns": 248281.0, "ser_p50_ns": 251498.0, "ser_p75_ns": 256094.0, "ser_p95_ns": 261602.8, "ser_p99_ns": 265204.68, "ser_ci_low_ns": 251208.09005376344, "ser_ci_high_ns": 253335.00779569894, "deser_mean_ns": 908256.3655913979, "deser_median_ns": 902637.0, "deser_std_ns": 15917.940004082999, "deser_mad_ns": 9030.0, "deser_cv": 0.017525822672014267, "deser_min_ns": 868967.0, "deser_max_ns": 950421.0, "deser_p5_ns": 890558.6, "deser_p25_ns": 896675.0, "deser_p50_ns": 902637.0, "deser_p75_ns": 919371.0, "deser_p95_ns": 937778.7999999999, "deser_p99_ns": 948638.04, "deser_ci_low_ns": 904973.5422043011, "deser_ci_high_ns": 911677.2056451612, "total_mean_ns": 1160490.9462365592, "total_median_ns": 1153525.0, "total_std_ns": 19855.344814522858, "total_mad_ns": 11504.0, "total_cv": 0.017109435346232733, "total_min_ns": 1112034.0, "total_max_ns": 1213546.0, "total_p5_ns": 1139445.2, "total_p25_ns": 1146680.0, "total_p50_ns": 1153525.0, "total_p75_ns": 1175669.0, "total_p95_ns": 1200592.2, "total_p99_ns": 1209093.2, "total_ci_low_ns": 1156517.2715053763, "total_ci_high_ns": 1164614.9059139783, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 76.22815887536844}, {"serializer": "msgpack-c", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "6.0.1", "avg_time_ser_ns": 48580.41758241758, "avg_time_deser_ns": 82483.0989010989, "avg_time_total_ns": 131063.51648351649, "median_size_bytes": 34992.0, "avg_ops_per_sec": 7629.888368864018, "min_ops_per_sec": 7175.402719477631, "max_ops_per_sec": 8036.259603330226, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 48580.41758241758, "ser_median_ns": 48501.0, "ser_std_ns": 1306.7394288068815, "ser_mad_ns": 853.0, "ser_cv": 0.02689848078374324, "ser_min_ns": 45724.0, "ser_max_ns": 52061.0, "ser_p5_ns": 46618.5, "ser_p25_ns": 47623.0, "ser_p50_ns": 48501.0, "ser_p75_ns": 49321.5, "ser_p95_ns": 50772.5, "ser_p99_ns": 51850.4, "ser_ci_low_ns": 48305.35879120879, "ser_ci_high_ns": 48848.71291208791, "deser_mean_ns": 82483.0989010989, "deser_median_ns": 82056.0, "deser_std_ns": 1947.7568468765123, "deser_mad_ns": 1253.0, "deser_cv": 0.023614011510551564, "deser_min_ns": 78124.0, "deser_max_ns": 87399.0, "deser_p5_ns": 80376.5, "deser_p25_ns": 80977.5, "deser_p50_ns": 82056.0, "deser_p75_ns": 83407.5, "deser_p95_ns": 85772.0, "deser_p99_ns": 87313.5, "deser_ci_low_ns": 82087.62005494506, "deser_ci_high_ns": 82882.0739010989, "total_mean_ns": 131063.51648351649, "total_median_ns": 130470.0, "total_std_ns": 2862.683291997358, "total_mad_ns": 1870.0, "total_cv": 0.021841953953352, "total_min_ns": 124436.0, "total_max_ns": 139365.0, "total_p5_ns": 127336.5, "total_p25_ns": 129224.5, "total_p50_ns": 130470.0, "total_p75_ns": 133096.0, "total_p95_ns": 135811.5, "total_p99_ns": 138175.19999999998, "total_ci_low_ns": 130497.90192307692, "total_ci_high_ns": 131649.3326923077, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.778229545367346}, {"serializer": "ubj", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.0-min", "avg_time_ser_ns": 31493.869565217392, "avg_time_deser_ns": 39139.17391304348, "avg_time_total_ns": 70633.04347826086, "median_size_bytes": 41392.0, "avg_ops_per_sec": 14157.679617865762, "min_ops_per_sec": 13360.767442481896, "max_ops_per_sec": 14752.526370140886, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 31493.869565217392, "ser_median_ns": 31295.5, "ser_std_ns": 770.0852131725825, "ser_mad_ns": 439.0, "ser_cv": 0.02445190838102294, "ser_min_ns": 30208.0, "ser_max_ns": 33538.0, "ser_p5_ns": 30537.95, "ser_p25_ns": 30992.25, "ser_p50_ns": 31295.5, "ser_p75_ns": 31863.0, "ser_p95_ns": 33026.0, "ser_p99_ns": 33516.16, "ser_ci_low_ns": 31337.71304347826, "ser_ci_high_ns": 31653.76956521739, "deser_mean_ns": 39139.17391304348, "deser_median_ns": 39077.5, "deser_std_ns": 1017.0796764870397, "deser_mad_ns": 769.5, "deser_cv": 0.025986232584947044, "deser_min_ns": 37305.0, "deser_max_ns": 42216.0, "deser_p5_ns": 37856.05, "deser_p25_ns": 38276.0, "deser_p50_ns": 39077.5, "deser_p75_ns": 39680.5, "deser_p95_ns": 41183.35, "deser_p99_ns": 41646.340000000004, "deser_ci_low_ns": 38922.14891304348, "deser_ci_high_ns": 39343.91358695652, "total_mean_ns": 70633.04347826086, "total_median_ns": 70358.5, "total_std_ns": 1559.4791460228241, "total_mad_ns": 1063.5, "total_cv": 0.022078606120134042, "total_min_ns": 67785.0, "total_max_ns": 74846.0, "total_p5_ns": 68552.65, "total_p25_ns": 69564.0, "total_p50_ns": 70358.5, "total_p75_ns": 71649.0, "total_p95_ns": 73315.05, "total_p99_ns": 74529.32, "total_ci_low_ns": 70300.44864130435, "total_ci_high_ns": 70973.30489130435, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.9892553723138431, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.6960790020061207}, {"serializer": "avro-c", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.11.3", "avg_time_ser_ns": 521.1958762886597, "avg_time_deser_ns": 457.1443298969072, "avg_time_total_ns": 978.340206185567, "median_size_bytes": 121.0, "avg_ops_per_sec": 1022139.3270740472, "min_ops_per_sec": 777604.9766718507, "max_ops_per_sec": 1658374.792703151, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 521.1958762886597, "ser_median_ns": 551.0, "ser_std_ns": 86.10901994652595, "ser_mad_ns": 39.0, "ser_cv": 0.16521431550781346, "ser_min_ns": 308.0, "ser_max_ns": 765.0, "ser_p5_ns": 371.2, "ser_p25_ns": 458.0, "ser_p50_ns": 551.0, "ser_p75_ns": 579.0, "ser_p95_ns": 622.2, "ser_p99_ns": 672.8399999999992, "ser_ci_low_ns": 504.2048969072165, "ser_ci_high_ns": 538.1876288659794, "deser_mean_ns": 457.1443298969072, "deser_median_ns": 481.0, "deser_std_ns": 63.73545417235764, "deser_mad_ns": 37.0, "deser_cv": 0.13942085683690078, "deser_min_ns": 295.0, "deser_max_ns": 571.0, "deser_p5_ns": 346.8, "deser_p25_ns": 409.0, "deser_p50_ns": 481.0, "deser_p75_ns": 503.0, "deser_p95_ns": 536.2, "deser_p99_ns": 554.6799999999998, "deser_ci_low_ns": 444.59742268041236, "deser_ci_high_ns": 469.12680412371134, "total_mean_ns": 978.340206185567, "total_median_ns": 1040.0, "total_std_ns": 143.27762143518336, "total_mad_ns": 64.0, "total_cv": 0.14644969155852838, "total_min_ns": 603.0, "total_max_ns": 1286.0, "total_p5_ns": 735.4, "total_p25_ns": 854.0, "total_p50_ns": 1040.0, "total_p75_ns": 1080.0, "total_p95_ns": 1145.1999999999998, "total_p99_ns": 1216.8799999999994, "total_ci_low_ns": 949.393556701031, "total_ci_high_ns": 1005.9028350515463, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.086397685223861}, {"serializer": "ubj", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.0-min", "avg_time_ser_ns": 250.5483870967742, "avg_time_deser_ns": 185.43010752688173, "avg_time_total_ns": 435.97849462365593, "median_size_bytes": 155.0, "avg_ops_per_sec": 2293691.1162630096, "min_ops_per_sec": 1893939.393939394, "max_ops_per_sec": 3472222.222222222, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 250.5483870967742, "ser_median_ns": 258.0, "ser_std_ns": 33.525628136330035, "ser_mad_ns": 20.0, "ser_cv": 0.13380899603788218, "ser_min_ns": 163.0, "ser_max_ns": 322.0, "ser_p5_ns": 184.8, "ser_p25_ns": 233.0, "ser_p50_ns": 258.0, "ser_p75_ns": 272.0, "ser_p95_ns": 296.4, "ser_p99_ns": 311.88, "ser_ci_low_ns": 243.42983870967743, "ser_ci_high_ns": 257.3016129032258, "deser_mean_ns": 185.43010752688173, "deser_median_ns": 187.0, "deser_std_ns": 23.263798079317763, "deser_mad_ns": 15.0, "deser_cv": 0.12545858053792705, "deser_min_ns": 122.0, "deser_max_ns": 228.0, "deser_p5_ns": 136.8, "deser_p25_ns": 174.0, "deser_p50_ns": 187.0, "deser_p75_ns": 203.0, "deser_p95_ns": 217.0, "deser_p99_ns": 222.48, "deser_ci_low_ns": 180.53602150537634, "deser_ci_high_ns": 189.91451612903225, "total_mean_ns": 435.97849462365593, "total_median_ns": 446.0, "total_std_ns": 52.467998216433266, "total_mad_ns": 32.0, "total_cv": 0.12034538139713642, "total_min_ns": 288.0, "total_max_ns": 528.0, "total_p5_ns": 324.4, "total_p25_ns": 409.0, "total_p50_ns": 446.0, "total_p75_ns": 473.0, "total_p95_ns": 501.4, "total_p99_ns": 514.1999999999999, "total_ci_low_ns": 424.55779569892474, "total_ci_high_ns": 446.38709677419354, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.8716690042075736, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.308230270800896}, {"serializer": "cJSON", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.7.18", "avg_time_ser_ns": 2930.516853932584, "avg_time_deser_ns": 2209.123595505618, "avg_time_total_ns": 5139.640449438202, "median_size_bytes": 254.0, "avg_ops_per_sec": 194566.1393705676, "min_ops_per_sec": 167869.7330871244, "max_ops_per_sec": 232180.17181332715, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 2930.516853932584, "ser_median_ns": 2933.0, "ser_std_ns": 222.2850909182513, "ser_mad_ns": 134.0, "ser_cv": 0.07585183842910086, "ser_min_ns": 2392.0, "ser_max_ns": 3467.0, "ser_p5_ns": 2557.6, "ser_p25_ns": 2803.0, "ser_p50_ns": 2933.0, "ser_p75_ns": 3070.0, "ser_p95_ns": 3264.6, "ser_p99_ns": 3440.6000000000004, "ser_ci_low_ns": 2884.905337078652, "ser_ci_high_ns": 2977.9469101123595, "deser_mean_ns": 2209.123595505618, "deser_median_ns": 2210.0, "deser_std_ns": 145.65844389473108, "deser_mad_ns": 93.0, "deser_cv": 0.06593494551009636, "deser_min_ns": 1871.0, "deser_max_ns": 2594.0, "deser_p5_ns": 1969.2, "deser_p25_ns": 2111.0, "deser_p50_ns": 2210.0, "deser_p75_ns": 2293.0, "deser_p95_ns": 2429.2, "deser_p99_ns": 2584.32, "deser_ci_low_ns": 2178.9412921348317, "deser_ci_high_ns": 2239.207584269663, "total_mean_ns": 5139.640449438202, "total_median_ns": 5141.0, "total_std_ns": 340.9483847630356, "total_mad_ns": 197.0, "total_cv": 0.0663370109479747, "total_min_ns": 4307.0, "total_max_ns": 5957.0, "total_p5_ns": 4478.8, "total_p25_ns": 4950.0, "total_p50_ns": 5141.0, "total_p75_ns": 5352.0, "total_p95_ns": 5700.4, "total_p99_ns": 5864.6, "total_ci_low_ns": 5068.166011235955, "total_ci_high_ns": 5209.202247191011, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.89309525642918}, {"serializer": "custom-binary", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "v2-1.0", "avg_time_ser_ns": 192.2608695652174, "avg_time_deser_ns": 132.29347826086956, "avg_time_total_ns": 324.55434782608694, "median_size_bytes": 118.0, "avg_ops_per_sec": 3081148.062560702, "min_ops_per_sec": 2518891.687657431, "max_ops_per_sec": 4830917.874396135, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 192.2608695652174, "ser_median_ns": 198.0, "ser_std_ns": 25.531652221695584, "ser_mad_ns": 14.5, "ser_cv": 0.13279692471709598, "ser_min_ns": 127.0, "ser_max_ns": 237.0, "ser_p5_ns": 141.1, "ser_p25_ns": 180.5, "ser_p50_ns": 198.0, "ser_p75_ns": 207.25, "ser_p95_ns": 229.0, "ser_p99_ns": 236.09, "ser_ci_low_ns": 186.8692934782609, "ser_ci_high_ns": 197.4024456521739, "deser_mean_ns": 132.29347826086956, "deser_median_ns": 133.0, "deser_std_ns": 21.909673734525768, "deser_mad_ns": 16.5, "deser_cv": 0.1656141634686033, "deser_min_ns": 74.0, "deser_max_ns": 182.0, "deser_p5_ns": 92.65, "deser_p25_ns": 119.25, "deser_p50_ns": 133.0, "deser_p75_ns": 150.0, "deser_p95_ns": 163.70000000000002, "deser_p99_ns": 175.63000000000002, "deser_ci_low_ns": 127.8358695652174, "deser_ci_high_ns": 136.8375, "total_mean_ns": 324.55434782608694, "total_median_ns": 333.0, "total_std_ns": 43.18052168994892, "total_mad_ns": 24.5, "total_cv": 0.13304558074534648, "total_min_ns": 207.0, "total_max_ns": 397.0, "total_p5_ns": 233.1, "total_p25_ns": 300.0, "total_p50_ns": 333.0, "total_p75_ns": 352.5, "total_p95_ns": 382.0, "total_p99_ns": 393.36, "total_ci_low_ns": 315.5630434782609, "total_ci_high_ns": 332.808152173913, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "libbson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.27.5", "avg_time_ser_ns": 1914.0106382978724, "avg_time_deser_ns": 1494.3191489361702, "avg_time_total_ns": 3408.3297872340427, "median_size_bytes": 288.0, "avg_ops_per_sec": 293398.838265451, "min_ops_per_sec": 249066.00249066003, "max_ops_per_sec": 352236.7030644593, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 1914.0106382978724, "ser_median_ns": 1907.0, "ser_std_ns": 140.49976043149906, "ser_mad_ns": 94.5, "ser_cv": 0.07340594541127804, "ser_min_ns": 1572.0, "ser_max_ns": 2288.0, "ser_p5_ns": 1637.05, "ser_p25_ns": 1826.25, "ser_p50_ns": 1907.0, "ser_p75_ns": 2013.5, "ser_p95_ns": 2113.45, "ser_p99_ns": 2230.3399999999997, "ser_ci_low_ns": 1885.941489361702, "ser_ci_high_ns": 1941.6047872340425, "deser_mean_ns": 1494.3191489361702, "deser_median_ns": 1505.5, "deser_std_ns": 115.64649628282609, "deser_mad_ns": 70.5, "deser_cv": 0.07739076111361932, "deser_min_ns": 1221.0, "deser_max_ns": 1786.0, "deser_p5_ns": 1302.35, "deser_p25_ns": 1431.0, "deser_p50_ns": 1505.5, "deser_p75_ns": 1572.75, "deser_p95_ns": 1652.1999999999998, "deser_p99_ns": 1745.0799999999997, "deser_ci_low_ns": 1470.9005319148937, "deser_ci_high_ns": 1517.2672872340424, "total_mean_ns": 3408.3297872340427, "total_median_ns": 3416.0, "total_std_ns": 242.8558308689561, "total_mad_ns": 157.0, "total_cv": 0.07125361864294258, "total_min_ns": 2839.0, "total_max_ns": 4015.0, "total_p5_ns": 2951.65, "total_p25_ns": 3283.25, "total_p50_ns": 3416.0, "total_p75_ns": 3573.5, "total_p95_ns": 3734.5499999999997, "total_p99_ns": 4012.21, "total_ci_low_ns": 3363.00585106383, "total_ci_high_ns": 3456.4345744680854, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.519025383942104}, {"serializer": "json-c", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.15", "avg_time_ser_ns": 3167.093023255814, "avg_time_deser_ns": 4565.197674418605, "avg_time_total_ns": 7732.290697674419, "median_size_bytes": 254.0, "avg_ops_per_sec": 129327.78126160754, "min_ops_per_sec": 114902.9070435482, "max_ops_per_sec": 151080.22359873093, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 3167.093023255814, "ser_median_ns": 3166.0, "ser_std_ns": 192.10111479034566, "ser_mad_ns": 122.5, "ser_cv": 0.06065534336369544, "ser_min_ns": 2697.0, "ser_max_ns": 3734.0, "ser_p5_ns": 2872.25, "ser_p25_ns": 3037.5, "ser_p50_ns": 3166.0, "ser_p75_ns": 3281.25, "ser_p95_ns": 3498.5, "ser_p99_ns": 3719.55, "ser_ci_low_ns": 3127.9238372093023, "ser_ci_high_ns": 3207.595348837209, "deser_mean_ns": 4565.197674418605, "deser_median_ns": 4633.0, "deser_std_ns": 319.69966861442805, "deser_mad_ns": 240.0, "deser_cv": 0.07002975367438892, "deser_min_ns": 3734.0, "deser_max_ns": 5075.0, "deser_p5_ns": 3974.75, "deser_p25_ns": 4345.5, "deser_p50_ns": 4633.0, "deser_p75_ns": 4804.0, "deser_p95_ns": 5018.5, "deser_p99_ns": 5068.2, "deser_ci_low_ns": 4497.379360465116, "deser_ci_high_ns": 4628.353488372093, "total_mean_ns": 7732.290697674419, "total_median_ns": 7791.0, "total_std_ns": 434.0564578696314, "total_mad_ns": 284.5, "total_cv": 0.05613555863855186, "total_min_ns": 6619.0, "total_max_ns": 8703.0, "total_p5_ns": 6953.25, "total_p25_ns": 7473.75, "total_p50_ns": 7791.0, "total_p75_ns": 8033.75, "total_p95_ns": 8311.75, "total_p99_ns": 8657.95, "total_ci_low_ns": 7640.522093023256, "total_ci_high_ns": 7821.889244186047, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.324296186642037}, {"serializer": "yyjson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.10.0", "avg_time_ser_ns": 1308.8651685393259, "avg_time_deser_ns": 944.2359550561798, "avg_time_total_ns": 2253.1011235955057, "median_size_bytes": 254.0, "avg_ops_per_sec": 443832.7199465406, "min_ops_per_sec": 393855.8487593541, "max_ops_per_sec": 532481.3631522896, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 1308.8651685393259, "ser_median_ns": 1332.0, "ser_std_ns": 94.79621576298621, "ser_mad_ns": 57.0, "ser_cv": 0.0724262651658592, "ser_min_ns": 1103.0, "ser_max_ns": 1505.0, "ser_p5_ns": 1128.8, "ser_p25_ns": 1265.0, "ser_p50_ns": 1332.0, "ser_p75_ns": 1373.0, "ser_p95_ns": 1432.1999999999998, "ser_p99_ns": 1460.1200000000003, "ser_ci_low_ns": 1289.864606741573, "ser_ci_high_ns": 1327.607584269663, "deser_mean_ns": 944.2359550561798, "deser_median_ns": 940.0, "deser_std_ns": 73.86843686765468, "deser_mad_ns": 50.0, "deser_cv": 0.0782309087809092, "deser_min_ns": 774.0, "deser_max_ns": 1141.0, "deser_p5_ns": 814.2, "deser_p25_ns": 894.0, "deser_p50_ns": 940.0, "deser_p75_ns": 995.0, "deser_p95_ns": 1065.6, "deser_p99_ns": 1088.2000000000003, "deser_ci_low_ns": 929.4693820224719, "deser_ci_high_ns": 958.2587078651686, "total_mean_ns": 2253.1011235955057, "total_median_ns": 2271.0, "total_std_ns": 156.02032537634759, "total_mad_ns": 96.0, "total_cv": 0.06924692537872862, "total_min_ns": 1878.0, "total_max_ns": 2539.0, "total_p5_ns": 1946.0, "total_p25_ns": 2177.0, "total_p50_ns": 2271.0, "total_p75_ns": 2367.0, "total_p95_ns": 2474.8, "total_p99_ns": 2531.08, "total_ci_low_ns": 2219.853370786517, "total_ci_high_ns": 2284.3606741573035, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.898783331555553}, {"serializer": "zcbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.9", "avg_time_ser_ns": 859.0224719101124, "avg_time_deser_ns": 2720.8314606741574, "avg_time_total_ns": 3579.85393258427, "median_size_bytes": 202.0, "avg_ops_per_sec": 279341.0063181286, "min_ops_per_sec": 259000.259000259, "max_ops_per_sec": 301659.12518853694, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 859.0224719101124, "ser_median_ns": 859.0, "ser_std_ns": 60.44230485800072, "ser_mad_ns": 31.0, "ser_cv": 0.07036172723584508, "ser_min_ns": 706.0, "ser_max_ns": 993.0, "ser_p5_ns": 750.4, "ser_p25_ns": 825.0, "ser_p50_ns": 859.0, "ser_p75_ns": 885.0, "ser_p95_ns": 966.5999999999999, "ser_p99_ns": 987.72, "ser_ci_low_ns": 847.1682584269663, "ser_ci_high_ns": 871.4047752808989, "deser_mean_ns": 2720.8314606741574, "deser_median_ns": 2717.0, "deser_std_ns": 79.42538464654281, "deser_mad_ns": 45.0, "deser_cv": 0.029191585658474812, "deser_min_ns": 2540.0, "deser_max_ns": 2910.0, "deser_p5_ns": 2562.8, "deser_p25_ns": 2678.0, "deser_p50_ns": 2717.0, "deser_p75_ns": 2766.0, "deser_p95_ns": 2842.0, "deser_p99_ns": 2897.6800000000003, "deser_ci_low_ns": 2704.5932584269663, "deser_ci_high_ns": 2736.3266853932582, "total_mean_ns": 3579.85393258427, "total_median_ns": 3589.0, "total_std_ns": 108.20504006092467, "total_mad_ns": 67.0, "total_cv": 0.030226104779312115, "total_min_ns": 3315.0, "total_max_ns": 3861.0, "total_p5_ns": 3398.8, "total_p25_ns": 3519.0, "total_p50_ns": 3589.0, "total_p75_ns": 3648.0, "total_p95_ns": 3749.6, "total_p99_ns": 3825.8, "total_ci_low_ns": 3557.4249999999997, "total_ci_high_ns": 3602.2733146067417, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 39.59126609434557}, {"serializer": "parson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.5.3", "avg_time_ser_ns": 5231.923076923077, "avg_time_deser_ns": 3357.6593406593406, "avg_time_total_ns": 8589.582417582418, "median_size_bytes": 254.0, "avg_ops_per_sec": 116420.0948759806, "min_ops_per_sec": 100969.30533117932, "max_ops_per_sec": 142795.9445951735, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 5231.923076923077, "ser_median_ns": 5230.0, "ser_std_ns": 371.31146646475264, "ser_mad_ns": 240.0, "ser_cv": 0.07097036042110981, "ser_min_ns": 4326.0, "ser_max_ns": 6162.0, "ser_p5_ns": 4656.0, "ser_p25_ns": 5009.0, "ser_p50_ns": 5230.0, "ser_p75_ns": 5472.0, "ser_p95_ns": 5877.0, "ser_p99_ns": 6121.5, "ser_ci_low_ns": 5155.943131868132, "ser_ci_high_ns": 5306.568131868132, "deser_mean_ns": 3357.6593406593406, "deser_median_ns": 3320.0, "deser_std_ns": 311.7001129925372, "deser_mad_ns": 199.0, "deser_cv": 0.09283256023564586, "deser_min_ns": 2677.0, "deser_max_ns": 4046.0, "deser_p5_ns": 2844.5, "deser_p25_ns": 3173.0, "deser_p50_ns": 3320.0, "deser_p75_ns": 3561.0, "deser_p95_ns": 3911.0, "deser_p99_ns": 4025.2999999999997, "deser_ci_low_ns": 3291.7173076923077, "deser_ci_high_ns": 3423.0554945054946, "total_mean_ns": 8589.582417582418, "total_median_ns": 8629.0, "total_std_ns": 599.5316888285772, "total_mad_ns": 361.0, "total_cv": 0.06979753609457984, "total_min_ns": 7003.0, "total_max_ns": 9904.0, "total_p5_ns": 7510.5, "total_p25_ns": 8278.5, "total_p50_ns": 8629.0, "total_p75_ns": 8999.0, "total_p95_ns": 9598.5, "total_p99_ns": 9705.999999999998, "total_ci_low_ns": 8468.382142857143, "total_ci_high_ns": 8712.122527472528, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.41817667118825}, {"serializer": "protobuf-wire", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "wire-v2", "avg_time_ser_ns": 361.68817204301075, "avg_time_deser_ns": 207.6021505376344, "avg_time_total_ns": 569.2903225806451, "median_size_bytes": 120.0, "avg_ops_per_sec": 1756572.982774252, "min_ops_per_sec": 1426533.5235378032, "max_ops_per_sec": 2369668.2464454975, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 361.68817204301075, "ser_median_ns": 367.0, "ser_std_ns": 37.0214328330706, "ser_mad_ns": 21.0, "ser_cv": 0.10235732239722822, "ser_min_ns": 270.0, "ser_max_ns": 444.0, "ser_p5_ns": 296.4, "ser_p25_ns": 340.0, "ser_p50_ns": 367.0, "ser_p75_ns": 385.0, "ser_p95_ns": 418.2, "ser_p99_ns": 442.15999999999997, "ser_ci_low_ns": 354.51182795698924, "ser_ci_high_ns": 369.4204301075269, "deser_mean_ns": 207.6021505376344, "deser_median_ns": 207.0, "deser_std_ns": 28.29777214496569, "deser_mad_ns": 19.0, "deser_cv": 0.1363077023608955, "deser_min_ns": 137.0, "deser_max_ns": 284.0, "deser_p5_ns": 159.6, "deser_p25_ns": 191.0, "deser_p50_ns": 207.0, "deser_p75_ns": 227.0, "deser_p95_ns": 246.79999999999998, "deser_p99_ns": 282.15999999999997, "deser_ci_low_ns": 201.88010752688172, "deser_ci_high_ns": 213.31209677419355, "total_mean_ns": 569.2903225806451, "total_median_ns": 571.0, "total_std_ns": 58.7134864599788, "total_mad_ns": 36.0, "total_cv": 0.10313452404008064, "total_min_ns": 422.0, "total_max_ns": 701.0, "total_p5_ns": 448.8, "total_p25_ns": 535.0, "total_p50_ns": 571.0, "total_p75_ns": 607.0, "total_p95_ns": 659.4, "total_p99_ns": 680.76, "total_ci_low_ns": 557.1717741935483, "total_ci_high_ns": 581.0446236559139, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.725539732299159}, {"serializer": "jansson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "2.14", "avg_time_ser_ns": 4881.70652173913, "avg_time_deser_ns": 4945.521739130435, "avg_time_total_ns": 9827.228260869566, "median_size_bytes": 254.0, "avg_ops_per_sec": 101758.09225698342, "min_ops_per_sec": 92131.93292795283, "max_ops_per_sec": 111061.75033318525, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 4881.70652173913, "ser_median_ns": 4898.0, "ser_std_ns": 260.8775359209917, "ser_mad_ns": 176.5, "ser_cv": 0.053439823709036265, "ser_min_ns": 4257.0, "ser_max_ns": 5565.0, "ser_p5_ns": 4428.9, "ser_p25_ns": 4714.5, "ser_p50_ns": 4898.0, "ser_p75_ns": 5056.5, "ser_p95_ns": 5312.95, "ser_p99_ns": 5460.35, "ser_ci_low_ns": 4830.366032608696, "ser_ci_high_ns": 4934.0467391304355, "deser_mean_ns": 4945.521739130435, "deser_median_ns": 4935.0, "deser_std_ns": 168.3529441617556, "deser_mad_ns": 116.0, "deser_cv": 0.03404149310065653, "deser_min_ns": 4567.0, "deser_max_ns": 5404.0, "deser_p5_ns": 4703.0, "deser_p25_ns": 4824.5, "deser_p50_ns": 4935.0, "deser_p75_ns": 5059.25, "deser_p95_ns": 5228.3, "deser_p99_ns": 5316.64, "deser_ci_low_ns": 4911.798641304348, "deser_ci_high_ns": 4979.869836956522, "total_mean_ns": 9827.228260869566, "total_median_ns": 9837.0, "total_std_ns": 390.32899910741315, "total_mad_ns": 242.5, "total_cv": 0.039719134301748144, "total_min_ns": 9004.0, "total_max_ns": 10854.0, "total_p5_ns": 9061.15, "total_p25_ns": 9592.75, "total_p50_ns": 9837.0, "total_p75_ns": 10074.75, "total_p95_ns": 10493.3, "total_p99_ns": 10680.19, "total_ci_low_ns": 9748.98804347826, "total_ci_high_ns": 9902.670108695651, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 34.07946913630025}, {"serializer": "cbor-encode", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.11.0", "avg_time_ser_ns": 3168.9655172413795, "avg_time_deser_ns": 2023.0804597701149, "avg_time_total_ns": 5192.045977011494, "median_size_bytes": 196.0, "avg_ops_per_sec": 192602.3006012734, "min_ops_per_sec": 176553.67231638418, "max_ops_per_sec": 213995.2921035737, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 3168.9655172413795, "ser_median_ns": 3186.0, "ser_std_ns": 187.83388555996743, "ser_mad_ns": 120.0, "ser_cv": 0.059272934507497876, "ser_min_ns": 2677.0, "ser_max_ns": 3510.0, "ser_p5_ns": 2793.6, "ser_p25_ns": 3066.0, "ser_p50_ns": 3186.0, "ser_p75_ns": 3304.5, "ser_p95_ns": 3438.0, "ser_p99_ns": 3502.26, "ser_ci_low_ns": 3128.3525862068964, "ser_ci_high_ns": 3208.716091954023, "deser_mean_ns": 2023.0804597701149, "deser_median_ns": 2019.0, "deser_std_ns": 58.08658701011644, "deser_mad_ns": 42.0, "deser_cv": 0.028711950990183005, "deser_min_ns": 1906.0, "deser_max_ns": 2163.0, "deser_p5_ns": 1946.3, "deser_p25_ns": 1978.5, "deser_p50_ns": 2019.0, "deser_p75_ns": 2062.5, "deser_p95_ns": 2117.7, "deser_p99_ns": 2155.26, "deser_ci_low_ns": 2011.3902298850576, "deser_ci_high_ns": 2035.1387931034483, "total_mean_ns": 5192.045977011494, "total_median_ns": 5197.0, "total_std_ns": 207.63468075500305, "total_mad_ns": 126.0, "total_cv": 0.039990917198024535, "total_min_ns": 4673.0, "total_max_ns": 5664.0, "total_p5_ns": 4796.2, "total_p25_ns": 5084.5, "total_p50_ns": 5197.0, "total_p75_ns": 5335.0, "total_p95_ns": 5504.6, "total_p99_ns": 5596.06, "total_ci_low_ns": 5148.085344827587, "total_ci_high_ns": 5233.946551724138, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 32.747582030124235}, {"serializer": "tinycbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.6.0", "avg_time_ser_ns": 679.2222222222222, "avg_time_deser_ns": 2021.0666666666666, "avg_time_total_ns": 2700.288888888889, "median_size_bytes": 196.0, "avg_ops_per_sec": 370330.7465044893, "min_ops_per_sec": 342817.9636612958, "max_ops_per_sec": 411015.20756267983, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 679.2222222222222, "ser_median_ns": 679.5, "ser_std_ns": 66.49183066789513, "ser_mad_ns": 40.0, "ser_cv": 0.09789407426976218, "ser_min_ns": 529.0, "ser_max_ns": 834.0, "ser_p5_ns": 562.25, "ser_p25_ns": 638.25, "ser_p50_ns": 679.5, "ser_p75_ns": 718.0, "ser_p95_ns": 783.3, "ser_p99_ns": 825.1, "ser_ci_low_ns": 665.7938888888889, "ser_ci_high_ns": 692.5908333333333, "deser_mean_ns": 2021.0666666666666, "deser_median_ns": 2015.0, "deser_std_ns": 62.40008643036365, "deser_mad_ns": 41.0, "deser_cv": 0.03087482835649343, "deser_min_ns": 1873.0, "deser_max_ns": 2155.0, "deser_p5_ns": 1919.8, "deser_p25_ns": 1979.25, "deser_p50_ns": 2015.0, "deser_p75_ns": 2071.5, "deser_p95_ns": 2111.2, "deser_p99_ns": 2138.98, "deser_ci_low_ns": 2007.9977777777779, "deser_ci_high_ns": 2033.8447222222221, "total_mean_ns": 2700.288888888889, "total_median_ns": 2705.0, "total_std_ns": 98.09835060799945, "total_mad_ns": 64.0, "total_cv": 0.03632883541151955, "total_min_ns": 2433.0, "total_max_ns": 2917.0, "total_p5_ns": 2532.4, "total_p25_ns": 2638.25, "total_p50_ns": 2705.0, "total_p75_ns": 2763.25, "total_p95_ns": 2863.2, "total_p99_ns": 2896.53, "total_ci_low_ns": 2680.1219444444446, "total_ci_high_ns": 2720.3011111111114, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 31.333828395185037}, {"serializer": "qcbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.5.1", "avg_time_ser_ns": 1445.0108695652175, "avg_time_deser_ns": 2016.1304347826087, "avg_time_total_ns": 3461.141304347826, "median_size_bytes": 196.0, "avg_ops_per_sec": 288922.0381565518, "min_ops_per_sec": 265392.7813163482, "max_ops_per_sec": 316355.5836760519, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 1445.0108695652175, "ser_median_ns": 1444.5, "ser_std_ns": 76.139763703455, "ser_mad_ns": 47.0, "ser_cv": 0.05269148164010997, "ser_min_ns": 1273.0, "ser_max_ns": 1626.0, "ser_p5_ns": 1303.4, "ser_p25_ns": 1398.5, "ser_p50_ns": 1444.5, "ser_p75_ns": 1492.0, "ser_p95_ns": 1558.45, "ser_p99_ns": 1602.3400000000001, "ser_ci_low_ns": 1429.8222826086956, "ser_ci_high_ns": 1460.8057065217392, "deser_mean_ns": 2016.1304347826087, "deser_median_ns": 2013.5, "deser_std_ns": 71.83087850988038, "deser_mad_ns": 46.0, "deser_cv": 0.03562809095614174, "deser_min_ns": 1862.0, "deser_max_ns": 2170.0, "deser_p5_ns": 1910.4, "deser_p25_ns": 1966.75, "deser_p50_ns": 2013.5, "deser_p75_ns": 2058.25, "deser_p95_ns": 2144.9, "deser_p99_ns": 2168.18, "deser_ci_low_ns": 2002.096195652174, "deser_ci_high_ns": 2030.945652173913, "total_mean_ns": 3461.141304347826, "total_median_ns": 3448.0, "total_std_ns": 121.63524842667294, "total_mad_ns": 72.5, "total_cv": 0.03514310388711286, "total_min_ns": 3161.0, "total_max_ns": 3768.0, "total_p5_ns": 3270.8, "total_p25_ns": 3389.75, "total_p50_ns": 3448.0, "total_p75_ns": 3539.5, "total_p95_ns": 3684.8, "total_p99_ns": 3718.86, "total_ci_low_ns": 3437.292663043478, "total_ci_high_ns": 3485.79375, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 34.22496501211412}, {"serializer": "msgpack-c", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "6.0.1", "avg_time_ser_ns": 647.8297872340426, "avg_time_deser_ns": 1156.468085106383, "avg_time_total_ns": 1804.2978723404256, "median_size_bytes": 196.0, "avg_ops_per_sec": 554232.2115044456, "min_ops_per_sec": 402738.62263391056, "max_ops_per_sec": 932835.8208955224, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 647.8297872340426, "ser_median_ns": 650.0, "ser_std_ns": 70.96184622252356, "ser_mad_ns": 42.0, "ser_cv": 0.10953779468137834, "ser_min_ns": 497.0, "ser_max_ns": 811.0, "ser_p5_ns": 532.65, "ser_p25_ns": 614.5, "ser_p50_ns": 650.0, "ser_p75_ns": 693.5, "ser_p95_ns": 756.7, "ser_p99_ns": 808.21, "ser_ci_low_ns": 633.5630319148936, "ser_ci_high_ns": 661.9792553191489, "deser_mean_ns": 1156.468085106383, "deser_median_ns": 1171.5, "deser_std_ns": 266.2971378688738, "deser_mad_ns": 162.5, "deser_cv": 0.23026760642891175, "deser_min_ns": 551.0, "deser_max_ns": 1791.0, "deser_p5_ns": 688.45, "deser_p25_ns": 1022.75, "deser_p50_ns": 1171.5, "deser_p75_ns": 1337.25, "deser_p95_ns": 1535.8999999999999, "deser_p99_ns": 1639.409999999999, "deser_ci_low_ns": 1101.6268617021276, "deser_ci_high_ns": 1211.0021276595744, "total_mean_ns": 1804.2978723404256, "total_median_ns": 1819.5, "total_std_ns": 294.5105226514218, "total_mad_ns": 194.0, "total_cv": 0.16322721828042763, "total_min_ns": 1072.0, "total_max_ns": 2483.0, "total_p5_ns": 1300.2, "total_p25_ns": 1624.75, "total_p50_ns": 1819.5, "total_p75_ns": 2011.75, "total_p95_ns": 2217.35, "total_p99_ns": 2371.399999999999, "total_ci_low_ns": 1744.5651595744682, "total_ci_high_ns": 1864.0268617021277, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.965568997678956}, {"serializer": "mpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.1", "avg_time_ser_ns": 467.1595744680851, "avg_time_deser_ns": 1284.3085106382978, "avg_time_total_ns": 1751.468085106383, "median_size_bytes": 196.0, "avg_ops_per_sec": 570949.5985131015, "min_ops_per_sec": 394477.31755424064, "max_ops_per_sec": 1002004.008016032, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 467.1595744680851, "ser_median_ns": 476.0, "ser_std_ns": 48.53317304523249, "ser_mad_ns": 37.0, "ser_cv": 0.10388992476605684, "ser_min_ns": 335.0, "ser_max_ns": 560.0, "ser_p5_ns": 387.65, "ser_p25_ns": 433.75, "ser_p50_ns": 476.0, "ser_p75_ns": 503.0, "ser_p95_ns": 532.75, "ser_p99_ns": 551.6299999999999, "ser_ci_low_ns": 457.5311170212766, "ser_ci_high_ns": 477.0875, "deser_mean_ns": 1284.3085106382978, "deser_median_ns": 1292.5, "deser_std_ns": 294.63989417357953, "deser_mad_ns": 207.5, "deser_cv": 0.22941520026768672, "deser_min_ns": 663.0, "deser_max_ns": 2056.0, "deser_p5_ns": 788.85, "deser_p25_ns": 1089.25, "deser_p50_ns": 1292.5, "deser_p75_ns": 1492.25, "deser_p95_ns": 1774.05, "deser_p99_ns": 1847.6799999999985, "deser_ci_low_ns": 1226.083244680851, "deser_ci_high_ns": 1343.1813829787234, "total_mean_ns": 1751.468085106383, "total_median_ns": 1775.0, "total_std_ns": 314.60334138617714, "total_mad_ns": 231.5, "total_cv": 0.17962265145531806, "total_min_ns": 998.0, "total_max_ns": 2535.0, "total_p5_ns": 1220.35, "total_p25_ns": 1517.5, "total_p50_ns": 1775.0, "total_p75_ns": 1963.0, "total_p95_ns": 2257.75, "total_p99_ns": 2393.639999999999, "total_ci_low_ns": 1688.8058510638298, "total_ci_high_ns": 1816.7715425531915, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.2959204410437755}, {"serializer": "flatcc", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.6.1", "avg_time_ser_ns": 501.94505494505495, "avg_time_deser_ns": 135.15384615384616, "avg_time_total_ns": 637.0989010989011, "median_size_bytes": 148.0, "avg_ops_per_sec": 1569615.0131088726, "min_ops_per_sec": 1329787.2340425532, "max_ops_per_sec": 2066115.7024793387, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 501.94505494505495, "ser_median_ns": 507.0, "ser_std_ns": 45.022553024348596, "ser_mad_ns": 31.0, "ser_cv": 0.08969617805932356, "ser_min_ns": 386.0, "ser_max_ns": 595.0, "ser_p5_ns": 417.5, "ser_p25_ns": 474.5, "ser_p50_ns": 507.0, "ser_p75_ns": 530.0, "ser_p95_ns": 571.5, "ser_p99_ns": 593.2, "ser_ci_low_ns": 492.6354395604396, "ser_ci_high_ns": 510.82554945054943, "deser_mean_ns": 135.15384615384616, "deser_median_ns": 136.0, "deser_std_ns": 15.519824653164008, "deser_mad_ns": 10.0, "deser_cv": 0.11483080278379744, "deser_min_ns": 94.0, "deser_max_ns": 169.0, "deser_p5_ns": 109.5, "deser_p25_ns": 125.0, "deser_p50_ns": 136.0, "deser_p75_ns": 144.5, "deser_p95_ns": 158.5, "deser_p99_ns": 164.49999999999997, "deser_ci_low_ns": 131.97802197802199, "deser_ci_high_ns": 138.31895604395604, "total_mean_ns": 637.0989010989011, "total_median_ns": 639.0, "total_std_ns": 55.18233512538328, "total_mad_ns": 37.0, "total_cv": 0.08661502167120667, "total_min_ns": 484.0, "total_max_ns": 752.0, "total_p5_ns": 530.0, "total_p25_ns": 606.5, "total_p50_ns": 639.0, "total_p75_ns": 679.0, "total_p95_ns": 716.5, "total_p99_ns": 744.8, "total_ci_low_ns": 625.8442307692308, "total_ci_high_ns": 648.8925824175824, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.286148504599679}, {"serializer": "nanopb", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "0.4.9", "avg_time_ser_ns": 360.9347826086956, "avg_time_deser_ns": 214.27173913043478, "avg_time_total_ns": 575.2065217391304, "median_size_bytes": 120.0, "avg_ops_per_sec": 1738506.0186322494, "min_ops_per_sec": 1483679.525222552, "max_ops_per_sec": 2257336.3431151244, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 360.9347826086956, "ser_median_ns": 365.5, "ser_std_ns": 34.44275529425476, "ser_mad_ns": 20.5, "ser_cv": 0.09542653397191586, "ser_min_ns": 269.0, "ser_max_ns": 427.0, "ser_p5_ns": 293.05, "ser_p25_ns": 342.75, "ser_p50_ns": 365.5, "ser_p75_ns": 383.5, "ser_p95_ns": 412.45, "ser_p99_ns": 421.54, "ser_ci_low_ns": 353.3364130434783, "ser_ci_high_ns": 367.5991847826087, "deser_mean_ns": 214.27173913043478, "deser_median_ns": 217.0, "deser_std_ns": 22.225667401625596, "deser_mad_ns": 16.0, "deser_cv": 0.1037265459823241, "deser_min_ns": 168.0, "deser_max_ns": 262.0, "deser_p5_ns": 173.1, "deser_p25_ns": 199.75, "deser_p50_ns": 217.0, "deser_p75_ns": 228.5, "deser_p95_ns": 246.45, "deser_p99_ns": 254.72000000000003, "deser_ci_low_ns": 209.71684782608693, "deser_ci_high_ns": 218.67391304347825, "total_mean_ns": 575.2065217391304, "total_median_ns": 581.0, "total_std_ns": 50.74663157629462, "total_mad_ns": 26.0, "total_cv": 0.08822332442070155, "total_min_ns": 443.0, "total_max_ns": 674.0, "total_p5_ns": 474.1, "total_p25_ns": 555.75, "total_p50_ns": 581.0, "total_p75_ns": 608.25, "total_p95_ns": 640.35, "total_p99_ns": 655.8000000000001, "total_ci_low_ns": 564.6519021739131, "total_ci_high_ns": 585.2940217391305, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.297976138456973}, {"serializer": "protobuf-c", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "c", "serializer_version": "1.5.0", "avg_time_ser_ns": 362.4255319148936, "avg_time_deser_ns": 220.40425531914894, "avg_time_total_ns": 582.8297872340426, "median_size_bytes": 120.0, "avg_ops_per_sec": 1715766.80173767, "min_ops_per_sec": 1436781.6091954024, "max_ops_per_sec": 2283105.02283105, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 362.4255319148936, "ser_median_ns": 367.0, "ser_std_ns": 36.41413212656905, "ser_mad_ns": 24.5, "ser_cv": 0.10047341845419429, "ser_min_ns": 276.0, "ser_max_ns": 433.0, "ser_p5_ns": 291.65, "ser_p25_ns": 340.25, "ser_p50_ns": 367.0, "ser_p75_ns": 387.5, "ser_p95_ns": 413.7, "ser_p99_ns": 424.62999999999994, "ser_ci_low_ns": 354.83909574468083, "ser_ci_high_ns": 369.4380319148936, "deser_mean_ns": 220.40425531914894, "deser_median_ns": 223.0, "deser_std_ns": 25.381950724043396, "deser_mad_ns": 15.0, "deser_cv": 0.11516089236702766, "deser_min_ns": 155.0, "deser_max_ns": 270.0, "deser_p5_ns": 173.25, "deser_p25_ns": 205.0, "deser_p50_ns": 223.0, "deser_p75_ns": 237.75, "deser_p95_ns": 263.35, "deser_p99_ns": 269.07, "deser_ci_low_ns": 215.2656914893617, "deser_ci_high_ns": 225.5534574468085, "total_mean_ns": 582.8297872340426, "total_median_ns": 596.5, "total_std_ns": 57.047732946742464, "total_mad_ns": 36.0, "total_cv": 0.09788060630441703, "total_min_ns": 438.0, "total_max_ns": 696.0, "total_p5_ns": 488.95, "total_p25_ns": 546.75, "total_p50_ns": 596.5, "total_p75_ns": 623.0, "total_p95_ns": 669.9499999999999, "total_p99_ns": 691.3499999999999, "total_ci_low_ns": 571.8077127659575, "total_ci_high_ns": 594.0859042553192, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.076791377698767}, {"serializer": "ubj", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.0-min", "avg_time_ser_ns": 515.7012987012987, "avg_time_deser_ns": 375.2597402597403, "avg_time_total_ns": 890.961038961039, "median_size_bytes": 155.0, "avg_ops_per_sec": 1122383.5344877848, "min_ops_per_sec": 834724.5409015025, "max_ops_per_sec": 1328021.2483399734, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 515.7012987012987, "ser_median_ns": 498.0, "ser_std_ns": 87.86548704742185, "ser_mad_ns": 20.0, "ser_cv": 0.17038058129520972, "ser_min_ns": 392.0, "ser_max_ns": 801.0, "ser_p5_ns": 432.8, "ser_p25_ns": 471.0, "ser_p50_ns": 498.0, "ser_p75_ns": 516.0, "ser_p95_ns": 748.8000000000001, "ser_p99_ns": 789.5999999999999, "ser_ci_low_ns": 497.99577922077924, "ser_ci_high_ns": 534.9386363636363, "deser_mean_ns": 375.2597402597403, "deser_median_ns": 379.0, "deser_std_ns": 19.909930474780534, "deser_mad_ns": 12.0, "deser_cv": 0.05305639891185676, "deser_min_ns": 331.0, "deser_max_ns": 429.0, "deser_p5_ns": 339.4, "deser_p25_ns": 363.0, "deser_p50_ns": 379.0, "deser_p75_ns": 386.0, "deser_p95_ns": 406.0, "deser_p99_ns": 414.5599999999999, "deser_ci_low_ns": 371.01266233766233, "deser_ci_high_ns": 379.7016233766234, "total_mean_ns": 890.961038961039, "total_median_ns": 874.0, "total_std_ns": 91.05817133748849, "total_mad_ns": 35.0, "total_cv": 0.10220219218976465, "total_min_ns": 753.0, "total_max_ns": 1198.0, "total_p5_ns": 784.4, "total_p25_ns": 835.0, "total_p50_ns": 874.0, "total_p75_ns": 905.0, "total_p95_ns": 1107.8, "total_p99_ns": 1172.9199999999998, "total_ci_low_ns": 871.2717532467532, "total_ci_high_ns": 911.299025974026, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.8905627705627706, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.7201354136996185}, {"serializer": "jansson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "2.14", "avg_time_ser_ns": 5345.4838709677415, "avg_time_deser_ns": 5158.354838709677, "avg_time_total_ns": 10503.838709677419, "median_size_bytes": 254.0, "avg_ops_per_sec": 95203.28973432141, "min_ops_per_sec": 88386.070355312, "max_ops_per_sec": 104069.10188365074, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 5345.4838709677415, "ser_median_ns": 5375.0, "ser_std_ns": 239.35840930828368, "ser_mad_ns": 129.0, "ser_cv": 0.04477768806080982, "ser_min_ns": 4806.0, "ser_max_ns": 5879.0, "ser_p5_ns": 4909.6, "ser_p25_ns": 5191.0, "ser_p50_ns": 5375.0, "ser_p75_ns": 5476.0, "ser_p95_ns": 5753.4, "ser_p99_ns": 5840.36, "ser_ci_low_ns": 5295.681989247312, "ser_ci_high_ns": 5393.675268817205, "deser_mean_ns": 5158.354838709677, "deser_median_ns": 5158.0, "deser_std_ns": 159.29625429978287, "deser_mad_ns": 105.0, "deser_cv": 0.030881212960454194, "deser_min_ns": 4797.0, "deser_max_ns": 5496.0, "deser_p5_ns": 4904.0, "deser_p25_ns": 5050.0, "deser_p50_ns": 5158.0, "deser_p75_ns": 5253.0, "deser_p95_ns": 5408.2, "deser_p99_ns": 5493.24, "deser_ci_low_ns": 5126.567204301075, "deser_ci_high_ns": 5190.852688172043, "total_mean_ns": 10503.838709677419, "total_median_ns": 10554.0, "total_std_ns": 359.375765869054, "total_mad_ns": 220.0, "total_cv": 0.0342137551615252, "total_min_ns": 9609.0, "total_max_ns": 11314.0, "total_p5_ns": 9823.0, "total_p25_ns": 10293.0, "total_p50_ns": 10554.0, "total_p75_ns": 10759.0, "total_p95_ns": 11044.0, "total_p99_ns": 11226.6, "total_ci_low_ns": 10430.77069892473, "total_ci_high_ns": 10574.463172043012, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 36.032587585822384}, {"serializer": "msgpack-c", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "6.0.1", "avg_time_ser_ns": 948.2840909090909, "avg_time_deser_ns": 898.3863636363636, "avg_time_total_ns": 1846.6704545454545, "median_size_bytes": 196.0, "avg_ops_per_sec": 541515.1347326577, "min_ops_per_sec": 453926.4639128461, "max_ops_per_sec": 622277.5357809582, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 948.2840909090909, "ser_median_ns": 911.5, "ser_std_ns": 124.58860567295821, "ser_mad_ns": 50.5, "ser_cv": 0.13138320769835854, "ser_min_ns": 769.0, "ser_max_ns": 1294.0, "ser_p5_ns": 810.45, "ser_p25_ns": 867.5, "ser_p50_ns": 911.5, "ser_p75_ns": 977.0, "ser_p95_ns": 1211.6, "ser_p99_ns": 1267.8999999999999, "ser_ci_low_ns": 922.0786931818183, "ser_ci_high_ns": 975.1943181818182, "deser_mean_ns": 898.3863636363636, "deser_median_ns": 902.0, "deser_std_ns": 46.54016478644019, "deser_mad_ns": 31.0, "deser_cv": 0.05180417543078166, "deser_min_ns": 793.0, "deser_max_ns": 989.0, "deser_p5_ns": 819.35, "deser_p25_ns": 869.0, "deser_p50_ns": 902.0, "deser_p75_ns": 929.75, "deser_p95_ns": 970.9499999999999, "deser_p99_ns": 984.65, "deser_ci_low_ns": 888.5784090909091, "deser_ci_high_ns": 907.7741477272727, "total_mean_ns": 1846.6704545454545, "total_median_ns": 1827.0, "total_std_ns": 143.99383141248964, "total_mad_ns": 93.0, "total_cv": 0.07797483901800592, "total_min_ns": 1607.0, "total_max_ns": 2203.0, "total_p5_ns": 1633.05, "total_p25_ns": 1735.0, "total_p50_ns": 1827.0, "total_p75_ns": 1919.0, "total_p95_ns": 2132.5499999999997, "total_p99_ns": 2187.34, "total_ci_low_ns": 1817.1224431818182, "total_ci_high_ns": 1877.6954545454544, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.801930248367007}, {"serializer": "cbor-encode", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.11.0", "avg_time_ser_ns": 3794.695652173913, "avg_time_deser_ns": 2207.8695652173915, "avg_time_total_ns": 6002.565217391304, "median_size_bytes": 196.0, "avg_ops_per_sec": 166595.44107953846, "min_ops_per_sec": 149812.73408239702, "max_ops_per_sec": 188075.9826970096, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 3794.695652173913, "ser_median_ns": 3791.5, "ser_std_ns": 266.46426225258006, "ser_mad_ns": 172.0, "ser_cv": 0.07022019331113616, "ser_min_ns": 3151.0, "ser_max_ns": 4482.0, "ser_p5_ns": 3371.25, "ser_p25_ns": 3620.0, "ser_p50_ns": 3791.5, "ser_p75_ns": 3970.0, "ser_p95_ns": 4286.3, "ser_p99_ns": 4381.900000000001, "ser_ci_low_ns": 3738.9021739130435, "ser_ci_high_ns": 3848.229619565217, "deser_mean_ns": 2207.8695652173915, "deser_median_ns": 2196.0, "deser_std_ns": 63.579182679070016, "deser_mad_ns": 38.5, "deser_cv": 0.028796620815238184, "deser_min_ns": 2096.0, "deser_max_ns": 2381.0, "deser_p5_ns": 2126.05, "deser_p25_ns": 2164.25, "deser_p50_ns": 2196.0, "deser_p75_ns": 2238.25, "deser_p95_ns": 2337.2, "deser_p99_ns": 2374.63, "deser_ci_low_ns": 2194.5108695652175, "deser_ci_high_ns": 2220.7720108695653, "total_mean_ns": 6002.565217391304, "total_median_ns": 6019.0, "total_std_ns": 285.03696711659904, "total_mad_ns": 172.5, "total_cv": 0.04748585926076372, "total_min_ns": 5317.0, "total_max_ns": 6675.0, "total_p5_ns": 5559.75, "total_p25_ns": 5840.5, "total_p50_ns": 6019.0, "total_p75_ns": 6169.5, "total_p95_ns": 6508.25, "total_p99_ns": 6630.41, "total_ci_low_ns": 5948.097010869566, "total_ci_high_ns": 6057.457608695652, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.406299670708968}, {"serializer": "flatcc", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.6.1", "avg_time_ser_ns": 745.8333333333334, "avg_time_deser_ns": 328.6794871794872, "avg_time_total_ns": 1074.5128205128206, "median_size_bytes": 148.0, "avg_ops_per_sec": 930654.3215768625, "min_ops_per_sec": 800640.5124099279, "max_ops_per_sec": 1070663.8115631691, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 745.8333333333334, "ser_median_ns": 748.0, "ser_std_ns": 59.35068937261241, "ser_mad_ns": 30.5, "ser_cv": 0.07957634329288814, "ser_min_ns": 629.0, "ser_max_ns": 933.0, "ser_p5_ns": 649.4, "ser_p25_ns": 715.5, "ser_p50_ns": 748.0, "ser_p75_ns": 778.0, "ser_p95_ns": 838.05, "ser_p99_ns": 889.1100000000002, "ser_ci_low_ns": 732.9551282051282, "ser_ci_high_ns": 758.7983974358974, "deser_mean_ns": 328.6794871794872, "deser_median_ns": 327.0, "deser_std_ns": 16.210060680517742, "deser_mad_ns": 13.0, "deser_cv": 0.04931874763351343, "deser_min_ns": 291.0, "deser_max_ns": 362.0, "deser_p5_ns": 304.95, "deser_p25_ns": 316.25, "deser_p50_ns": 327.0, "deser_p75_ns": 342.0, "deser_p95_ns": 354.15, "deser_p99_ns": 358.15000000000003, "deser_ci_low_ns": 325.25576923076926, "deser_ci_high_ns": 332.21794871794873, "total_mean_ns": 1074.5128205128206, "total_median_ns": 1083.0, "total_std_ns": 66.66756909146132, "total_mad_ns": 30.5, "total_cv": 0.06204446128399254, "total_min_ns": 934.0, "total_max_ns": 1249.0, "total_p5_ns": 962.25, "total_p25_ns": 1034.0, "total_p50_ns": 1083.0, "total_p75_ns": 1109.75, "total_p95_ns": 1187.1, "total_p99_ns": 1218.2000000000003, "total_ci_low_ns": 1058.7435897435898, "total_ci_high_ns": 1089.1939102564102, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.467221334102662}, {"serializer": "json-c", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.15", "avg_time_ser_ns": 3611.7976190476193, "avg_time_deser_ns": 4286.8452380952385, "avg_time_total_ns": 7898.642857142857, "median_size_bytes": 254.0, "avg_ops_per_sec": 126604.02781671354, "min_ops_per_sec": 116090.08590666357, "max_ops_per_sec": 140193.46698443854, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 3611.7976190476193, "ser_median_ns": 3590.5, "ser_std_ns": 170.86419462927557, "ser_mad_ns": 104.5, "ser_cv": 0.04730724493758598, "ser_min_ns": 3308.0, "ser_max_ns": 4115.0, "ser_p5_ns": 3352.9, "ser_p25_ns": 3499.5, "ser_p50_ns": 3590.5, "ser_p75_ns": 3710.25, "ser_p95_ns": 3936.25, "ser_p99_ns": 4063.54, "ser_ci_low_ns": 3575.8532738095237, "ser_ci_high_ns": 3649.5627976190476, "deser_mean_ns": 4286.8452380952385, "deser_median_ns": 4320.0, "deser_std_ns": 217.61873889722762, "deser_mad_ns": 142.0, "deser_cv": 0.05076430960542945, "deser_min_ns": 3788.0, "deser_max_ns": 4674.0, "deser_p5_ns": 3834.0, "deser_p25_ns": 4148.75, "deser_p50_ns": 4320.0, "deser_p75_ns": 4458.0, "deser_p95_ns": 4564.65, "deser_p99_ns": 4669.85, "deser_ci_low_ns": 4238.189583333333, "deser_ci_high_ns": 4330.770833333333, "total_mean_ns": 7898.642857142857, "total_median_ns": 7914.0, "total_std_ns": 316.44058209489765, "total_mad_ns": 181.0, "total_cv": 0.04006265225787945, "total_min_ns": 7133.0, "total_max_ns": 8614.0, "total_p5_ns": 7335.4, "total_p25_ns": 7749.0, "total_p50_ns": 7914.0, "total_p75_ns": 8108.5, "total_p95_ns": 8364.65, "total_p99_ns": 8466.26, "total_ci_low_ns": 7829.077380952382, "total_ci_high_ns": 7963.190773809523, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.609477080745517}, {"serializer": "protobuf-c", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.5.0", "avg_time_ser_ns": 676.3191489361702, "avg_time_deser_ns": 420.8829787234043, "avg_time_total_ns": 1097.2021276595744, "median_size_bytes": 120.0, "avg_ops_per_sec": 911409.0966384518, "min_ops_per_sec": 676589.9864682002, "max_ops_per_sec": 1137656.4277588169, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 676.3191489361702, "ser_median_ns": 611.5, "ser_std_ns": 146.96420548518458, "ser_mad_ns": 34.0, "ser_cv": 0.21730008046697313, "ser_min_ns": 482.0, "ser_max_ns": 1084.0, "ser_p5_ns": 518.6, "ser_p25_ns": 588.75, "ser_p50_ns": 611.5, "ser_p75_ns": 816.5, "ser_p95_ns": 948.4, "ser_p99_ns": 1014.2499999999995, "ser_ci_low_ns": 648.4343085106383, "ser_ci_high_ns": 707.9058510638297, "deser_mean_ns": 420.8829787234043, "deser_median_ns": 422.0, "deser_std_ns": 22.575015394547545, "deser_mad_ns": 14.0, "deser_cv": 0.053637273388961126, "deser_min_ns": 371.0, "deser_max_ns": 470.0, "deser_p5_ns": 377.6, "deser_p25_ns": 409.25, "deser_p50_ns": 422.0, "deser_p75_ns": 436.75, "deser_p95_ns": 455.04999999999995, "deser_p99_ns": 462.55999999999995, "deser_ci_low_ns": 416.3404255319149, "deser_ci_high_ns": 425.405585106383, "total_mean_ns": 1097.2021276595744, "total_median_ns": 1041.0, "total_std_ns": 151.55889446036497, "total_mad_ns": 44.5, "total_cv": 0.13813215508764368, "total_min_ns": 879.0, "total_max_ns": 1478.0, "total_p5_ns": 894.0, "total_p25_ns": 1012.25, "total_p50_ns": 1041.0, "total_p75_ns": 1203.25, "total_p95_ns": 1385.1499999999999, "total_p99_ns": 1470.56, "total_ci_low_ns": 1066.7015957446808, "total_ci_high_ns": 1129.341755319149, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.8140120635773167}, {"serializer": "cJSON", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.7.18", "avg_time_ser_ns": 3561.2127659574467, "avg_time_deser_ns": 2582.7872340425533, "avg_time_total_ns": 6144.0, "median_size_bytes": 254.0, "avg_ops_per_sec": 162760.41666666666, "min_ops_per_sec": 149365.19790888723, "max_ops_per_sec": 185735.51263001485, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 3561.2127659574467, "ser_median_ns": 3580.0, "ser_std_ns": 192.60739902158122, "ser_mad_ns": 125.5, "ser_cv": 0.05408477720364398, "ser_min_ns": 3062.0, "ser_max_ns": 4032.0, "ser_p5_ns": 3225.7, "ser_p25_ns": 3434.25, "ser_p50_ns": 3580.0, "ser_p75_ns": 3687.75, "ser_p95_ns": 3826.45, "ser_p99_ns": 3880.409999999999, "ser_ci_low_ns": 3525.201329787234, "ser_ci_high_ns": 3603.513829787234, "deser_mean_ns": 2582.7872340425533, "deser_median_ns": 2578.0, "deser_std_ns": 144.15619309388333, "deser_mad_ns": 111.5, "deser_cv": 0.055814196072299566, "deser_min_ns": 2320.0, "deser_max_ns": 2893.0, "deser_p5_ns": 2339.9, "deser_p25_ns": 2477.5, "deser_p50_ns": 2578.0, "deser_p75_ns": 2692.75, "deser_p95_ns": 2828.2999999999997, "deser_p99_ns": 2877.19, "deser_ci_low_ns": 2553.9779255319145, "deser_ci_high_ns": 2610.9159574468085, "total_mean_ns": 6144.0, "total_median_ns": 6210.0, "total_std_ns": 305.1857886458638, "total_mad_ns": 236.0, "total_cv": 0.04967216612074606, "total_min_ns": 5384.0, "total_max_ns": 6695.0, "total_p5_ns": 5590.1, "total_p25_ns": 5937.5, "total_p50_ns": 6210.0, "total_p75_ns": 6398.0, "total_p95_ns": 6545.45, "total_p99_ns": 6605.719999999999, "total_ci_low_ns": 6078.559308510638, "total_ci_high_ns": 6202.2821808510635, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.327925823834175}, {"serializer": "mpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.1", "avg_time_ser_ns": 723.078947368421, "avg_time_deser_ns": 1039.4605263157894, "avg_time_total_ns": 1762.5394736842106, "median_size_bytes": 196.0, "avg_ops_per_sec": 567363.1796227035, "min_ops_per_sec": 504032.2580645161, "max_ops_per_sec": 657462.1959237343, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 723.078947368421, "ser_median_ns": 723.0, "ser_std_ns": 41.71163327990397, "ser_mad_ns": 28.0, "ser_cv": 0.057686139849195725, "ser_min_ns": 620.0, "ser_max_ns": 841.0, "ser_p5_ns": 653.5, "ser_p25_ns": 698.0, "ser_p50_ns": 723.0, "ser_p75_ns": 752.25, "ser_p95_ns": 780.5, "ser_p99_ns": 829.0, "ser_ci_low_ns": 713.4736842105264, "ser_ci_high_ns": 732.6582236842105, "deser_mean_ns": 1039.4605263157894, "deser_median_ns": 1044.0, "deser_std_ns": 56.46791201841359, "deser_mad_ns": 37.5, "deser_cv": 0.05432424857782293, "deser_min_ns": 887.0, "deser_max_ns": 1143.0, "deser_p5_ns": 941.75, "deser_p25_ns": 1004.5, "deser_p50_ns": 1044.0, "deser_p75_ns": 1079.0, "deser_p95_ns": 1113.5, "deser_p99_ns": 1137.75, "deser_ci_low_ns": 1027.0259868421053, "deser_ci_high_ns": 1051.9365131578948, "total_mean_ns": 1762.5394736842106, "total_median_ns": 1770.5, "total_std_ns": 89.60899371372253, "total_mad_ns": 60.0, "total_cv": 0.05084084359620846, "total_min_ns": 1521.0, "total_max_ns": 1984.0, "total_p5_ns": 1611.0, "total_p25_ns": 1708.75, "total_p50_ns": 1770.5, "total_p75_ns": 1823.5, "total_p95_ns": 1883.75, "total_p99_ns": 1966.75, "total_ci_low_ns": 1743.5, "total_ci_high_ns": 1781.2161184210524, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.139610476920994}, {"serializer": "libbson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.27.5", "avg_time_ser_ns": 2235.5913978494623, "avg_time_deser_ns": 1697.8494623655913, "avg_time_total_ns": 3933.440860215054, "median_size_bytes": 288.0, "avg_ops_per_sec": 254230.33815368635, "min_ops_per_sec": 219635.40522732266, "max_ops_per_sec": 303674.46097783174, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 2235.5913978494623, "ser_median_ns": 2218.0, "ser_std_ns": 195.50170890830663, "ser_mad_ns": 107.0, "ser_cv": 0.0874496605669401, "ser_min_ns": 1823.0, "ser_max_ns": 2701.0, "ser_p5_ns": 1912.8, "ser_p25_ns": 2117.0, "ser_p50_ns": 2218.0, "ser_p75_ns": 2347.0, "ser_p95_ns": 2575.2, "ser_p99_ns": 2688.12, "ser_ci_low_ns": 2196.6115591397847, "ser_ci_high_ns": 2272.3559139784948, "deser_mean_ns": 1697.8494623655913, "deser_median_ns": 1719.0, "deser_std_ns": 99.04071914430372, "deser_mad_ns": 55.0, "deser_cv": 0.05833303914135685, "deser_min_ns": 1464.0, "deser_max_ns": 1906.0, "deser_p5_ns": 1506.0, "deser_p25_ns": 1639.0, "deser_p50_ns": 1719.0, "deser_p75_ns": 1759.0, "deser_p95_ns": 1842.4, "deser_p99_ns": 1887.6, "deser_ci_low_ns": 1677.8478494623655, "deser_ci_high_ns": 1717.4091397849463, "total_mean_ns": 3933.440860215054, "total_median_ns": 3949.0, "total_std_ns": 266.9254684431589, "total_mad_ns": 144.0, "total_cv": 0.06786055210413541, "total_min_ns": 3293.0, "total_max_ns": 4553.0, "total_p5_ns": 3450.0, "total_p25_ns": 3754.0, "total_p50_ns": 3949.0, "total_p75_ns": 4075.0, "total_p95_ns": 4331.6, "total_p99_ns": 4438.0, "total_ci_low_ns": 3880.1247311827956, "total_ci_high_ns": 3984.1182795698924, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.705144743282503}, {"serializer": "custom-binary", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "v2-1.0", "avg_time_ser_ns": 440.25333333333333, "avg_time_deser_ns": 327.85333333333335, "avg_time_total_ns": 768.1066666666667, "median_size_bytes": 118.0, "avg_ops_per_sec": 1301902.5135397862, "min_ops_per_sec": 1156069.3641618497, "max_ops_per_sec": 1519756.838905775, "runs": 75, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 24, "ser_mean_ns": 440.25333333333333, "ser_median_ns": 441.0, "ser_std_ns": 29.98111718044188, "ser_mad_ns": 18.0, "ser_cv": 0.06809969376822862, "ser_min_ns": 347.0, "ser_max_ns": 502.0, "ser_p5_ns": 380.5, "ser_p25_ns": 424.0, "ser_p50_ns": 441.0, "ser_p75_ns": 460.5, "ser_p95_ns": 485.9, "ser_p99_ns": 499.78000000000003, "ser_ci_low_ns": 433.6913333333333, "ser_ci_high_ns": 447.01366666666667, "deser_mean_ns": 327.85333333333335, "deser_median_ns": 329.0, "deser_std_ns": 16.374579287628947, "deser_mad_ns": 11.0, "deser_cv": 0.04994483088259673, "deser_min_ns": 292.0, "deser_max_ns": 366.0, "deser_p5_ns": 302.0, "deser_p25_ns": 317.0, "deser_p50_ns": 329.0, "deser_p75_ns": 339.0, "deser_p95_ns": 353.5, "deser_p99_ns": 366.0, "deser_ci_low_ns": 324.34633333333335, "deser_ci_high_ns": 331.74666666666667, "total_mean_ns": 768.1066666666667, "total_median_ns": 772.0, "total_std_ns": 41.483495035500084, "total_mad_ns": 25.0, "total_cv": 0.0540074664571328, "total_min_ns": 658.0, "total_max_ns": 865.0, "total_p5_ns": 694.0, "total_p25_ns": 746.0, "total_p50_ns": 772.0, "total_p75_ns": 795.0, "total_p95_ns": 824.6999999999999, "total_p99_ns": 856.1200000000001, "total_ci_low_ns": 759.066, "total_ci_high_ns": 776.9606666666667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "nanopb", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.4.9", "avg_time_ser_ns": 602.4025974025974, "avg_time_deser_ns": 415.16883116883116, "avg_time_total_ns": 1017.5714285714286, "median_size_bytes": 120.0, "avg_ops_per_sec": 982731.9949459498, "min_ops_per_sec": 820344.5447087777, "max_ops_per_sec": 1201923.076923077, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 602.4025974025974, "ser_median_ns": 599.0, "ser_std_ns": 52.98293164592073, "ser_mad_ns": 29.0, "ser_cv": 0.08795269455073615, "ser_min_ns": 471.0, "ser_max_ns": 804.0, "ser_p5_ns": 521.2, "ser_p25_ns": 569.0, "ser_p50_ns": 599.0, "ser_p75_ns": 627.0, "ser_p95_ns": 679.4, "ser_p99_ns": 785.7599999999999, "ser_ci_low_ns": 591.2831168831169, "ser_ci_high_ns": 614.5334415584416, "deser_mean_ns": 415.16883116883116, "deser_median_ns": 416.0, "deser_std_ns": 25.09424477812151, "deser_mad_ns": 18.0, "deser_cv": 0.06044346996732221, "deser_min_ns": 348.0, "deser_max_ns": 469.0, "deser_p5_ns": 376.4, "deser_p25_ns": 398.0, "deser_p50_ns": 416.0, "deser_p75_ns": 434.0, "deser_p95_ns": 452.40000000000003, "deser_p99_ns": 469.0, "deser_ci_low_ns": 409.63603896103893, "deser_ci_high_ns": 420.6243506493506, "total_mean_ns": 1017.5714285714286, "total_median_ns": 1018.0, "total_std_ns": 68.77469481296549, "total_mad_ns": 44.0, "total_cv": 0.06758709303534444, "total_min_ns": 832.0, "total_max_ns": 1219.0, "total_p5_ns": 900.0, "total_p25_ns": 978.0, "total_p50_ns": 1018.0, "total_p75_ns": 1062.0, "total_p95_ns": 1108.8, "total_p99_ns": 1187.0799999999997, "total_ci_low_ns": 1002.3876623376624, "total_ci_high_ns": 1033.5853896103897, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.9989610389610389, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.357016204716812}, {"serializer": "qcbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.5.1", "avg_time_ser_ns": 1766.3258426966293, "avg_time_deser_ns": 2199.5842696629215, "avg_time_total_ns": 3965.9101123595506, "median_size_bytes": 196.0, "avg_ops_per_sec": 252148.93219176919, "min_ops_per_sec": 225275.96305474205, "max_ops_per_sec": 276931.59789531986, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 1766.3258426966293, "ser_median_ns": 1741.0, "ser_std_ns": 146.7763276120954, "ser_mad_ns": 76.0, "ser_cv": 0.08309697116134228, "ser_min_ns": 1490.0, "ser_max_ns": 2136.0, "ser_p5_ns": 1580.0, "ser_p25_ns": 1671.0, "ser_p50_ns": 1741.0, "ser_p75_ns": 1822.0, "ser_p95_ns": 2065.4, "ser_p99_ns": 2109.6000000000004, "ser_ci_low_ns": 1737.0205056179777, "ser_ci_high_ns": 1797.452808988764, "deser_mean_ns": 2199.5842696629215, "deser_median_ns": 2189.0, "deser_std_ns": 71.9636601772608, "deser_mad_ns": 43.0, "deser_cv": 0.03271693709115722, "deser_min_ns": 2077.0, "deser_max_ns": 2373.0, "deser_p5_ns": 2095.8, "deser_p25_ns": 2151.0, "deser_p50_ns": 2189.0, "deser_p75_ns": 2239.0, "deser_p95_ns": 2342.6, "deser_p99_ns": 2371.24, "deser_ci_low_ns": 2185.0205056179775, "deser_ci_high_ns": 2213.483988764045, "total_mean_ns": 3965.9101123595506, "total_median_ns": 3916.0, "total_std_ns": 181.0560963077866, "total_mad_ns": 86.0, "total_cv": 0.04565310135081851, "total_min_ns": 3611.0, "total_max_ns": 4439.0, "total_p5_ns": 3751.8, "total_p25_ns": 3850.0, "total_p50_ns": 3916.0, "total_p75_ns": 4055.0, "total_p95_ns": 4295.2, "total_p99_ns": 4373.88, "total_ci_low_ns": 3929.7960674157302, "total_ci_high_ns": 4004.7109550561795, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.342971308474482}, {"serializer": "zcbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.9", "avg_time_ser_ns": 1156.1797752808989, "avg_time_deser_ns": 2887.191011235955, "avg_time_total_ns": 4043.370786516854, "median_size_bytes": 202.0, "avg_ops_per_sec": 247318.40160062246, "min_ops_per_sec": 227324.39190725164, "max_ops_per_sec": 265674.8140276302, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 1156.1797752808989, "ser_median_ns": 1116.0, "ser_std_ns": 118.13528087033342, "ser_mad_ns": 58.0, "ser_cv": 0.10217725945053134, "ser_min_ns": 972.0, "ser_max_ns": 1441.0, "ser_p5_ns": 1015.8, "ser_p25_ns": 1080.0, "ser_p50_ns": 1116.0, "ser_p75_ns": 1205.0, "ser_p95_ns": 1390.2, "ser_p99_ns": 1433.08, "ser_ci_low_ns": 1131.123033707865, "ser_ci_high_ns": 1181.4525280898877, "deser_mean_ns": 2887.191011235955, "deser_median_ns": 2896.0, "deser_std_ns": 66.41003422342659, "deser_mad_ns": 46.0, "deser_cv": 0.023001607432615843, "deser_min_ns": 2738.0, "deser_max_ns": 3037.0, "deser_p5_ns": 2771.4, "deser_p25_ns": 2844.0, "deser_p50_ns": 2896.0, "deser_p75_ns": 2927.0, "deser_p95_ns": 2983.4, "deser_p99_ns": 3028.2, "deser_ci_low_ns": 2873.1348314606744, "deser_ci_high_ns": 2900.5862359550565, "total_mean_ns": 4043.370786516854, "total_median_ns": 4028.0, "total_std_ns": 145.6183041396607, "total_mad_ns": 92.0, "total_cv": 0.03601408622361419, "total_min_ns": 3764.0, "total_max_ns": 4399.0, "total_p5_ns": 3839.4, "total_p25_ns": 3941.0, "total_p50_ns": 4028.0, "total_p75_ns": 4132.0, "total_p95_ns": 4305.8, "total_p99_ns": 4380.52, "total_ci_low_ns": 4013.7137640449437, "total_ci_high_ns": 4073.640730337079, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.389539385992233}, {"serializer": "avro-c", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.11.3", "avg_time_ser_ns": 771.1518987341772, "avg_time_deser_ns": 677.632911392405, "avg_time_total_ns": 1448.7848101265822, "median_size_bytes": 121.0, "avg_ops_per_sec": 690233.6309783844, "min_ops_per_sec": 611246.9437652811, "max_ops_per_sec": 888099.4671403198, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 771.1518987341772, "ser_median_ns": 777.0, "ser_std_ns": 72.97928905493649, "ser_mad_ns": 47.0, "ser_cv": 0.09463672354918637, "ser_min_ns": 597.0, "ser_max_ns": 961.0, "ser_p5_ns": 639.6, "ser_p25_ns": 724.5, "ser_p50_ns": 777.0, "ser_p75_ns": 817.5, "ser_p95_ns": 860.8999999999999, "ser_p99_ns": 959.44, "ser_ci_low_ns": 755.8588607594937, "ser_ci_high_ns": 786.6598101265823, "deser_mean_ns": 677.632911392405, "deser_median_ns": 691.0, "deser_std_ns": 52.24723700587868, "deser_mad_ns": 35.0, "deser_cv": 0.07710256707945409, "deser_min_ns": 522.0, "deser_max_ns": 758.0, "deser_p5_ns": 585.7, "deser_p25_ns": 640.0, "deser_p50_ns": 691.0, "deser_p75_ns": 714.0, "deser_p95_ns": 746.1, "deser_p99_ns": 757.22, "deser_ci_low_ns": 665.8844936708861, "deser_ci_high_ns": 689.2164556962025, "total_mean_ns": 1448.7848101265822, "total_median_ns": 1475.0, "total_std_ns": 110.28362861580413, "total_mad_ns": 62.0, "total_cv": 0.07612146941695815, "total_min_ns": 1126.0, "total_max_ns": 1636.0, "total_p5_ns": 1255.0, "total_p25_ns": 1369.5, "total_p50_ns": 1475.0, "total_p75_ns": 1523.0, "total_p95_ns": 1590.4, "total_p99_ns": 1612.6, "total_ci_low_ns": 1424.3161392405063, "total_ci_high_ns": 1471.811392405063, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.050113069716465}, {"serializer": "parson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "1.5.3", "avg_time_ser_ns": 5964.40625, "avg_time_deser_ns": 4166.9375, "avg_time_total_ns": 10131.34375, "median_size_bytes": 254.0, "avg_ops_per_sec": 98703.5900346388, "min_ops_per_sec": 86400.55296353897, "max_ops_per_sec": 113843.35154826958, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 5964.40625, "ser_median_ns": 6022.0, "ser_std_ns": 273.12278241903545, "ser_mad_ns": 171.5, "ser_cv": 0.045792115924202084, "ser_min_ns": 5295.0, "ser_max_ns": 6543.0, "ser_p5_ns": 5494.25, "ser_p25_ns": 5796.5, "ser_p50_ns": 6022.0, "ser_p75_ns": 6153.0, "ser_p95_ns": 6319.25, "ser_p99_ns": 6534.45, "ser_ci_low_ns": 5908.446875, "ser_ci_high_ns": 6019.236979166667, "deser_mean_ns": 4166.9375, "deser_median_ns": 4068.0, "deser_std_ns": 466.1899051154786, "deser_mad_ns": 315.5, "deser_cv": 0.1118783051378809, "deser_min_ns": 3367.0, "deser_max_ns": 5306.0, "deser_p5_ns": 3507.25, "deser_p25_ns": 3821.0, "deser_p50_ns": 4068.0, "deser_p75_ns": 4479.0, "deser_p95_ns": 5001.0, "deser_p99_ns": 5288.9, "deser_ci_low_ns": 4077.6661458333333, "deser_ci_high_ns": 4257.8625, "total_mean_ns": 10131.34375, "total_median_ns": 10153.5, "total_std_ns": 643.6502945270335, "total_mad_ns": 526.5, "total_cv": 0.06353059479667082, "total_min_ns": 8784.0, "total_max_ns": 11574.0, "total_p5_ns": 9091.75, "total_p25_ns": 9622.25, "total_p50_ns": 10153.5, "total_p75_ns": 10667.25, "total_p95_ns": 11156.25, "total_p99_ns": 11338.4, "total_ci_low_ns": 10007.751822916667, "total_ci_high_ns": 10255.569791666665, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.285087951163266}, {"serializer": "protobuf-wire", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "wire-v2", "avg_time_ser_ns": 603.7948717948718, "avg_time_deser_ns": 403.5, "avg_time_total_ns": 1007.2948717948718, "median_size_bytes": 120.0, "avg_ops_per_sec": 992757.9579732465, "min_ops_per_sec": 900090.0090009001, "max_ops_per_sec": 1170960.18735363, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 603.7948717948718, "ser_median_ns": 614.0, "ser_std_ns": 41.042062356208206, "ser_mad_ns": 27.0, "ser_cv": 0.0679735192751877, "ser_min_ns": 501.0, "ser_max_ns": 677.0, "ser_p5_ns": 524.35, "ser_p25_ns": 571.5, "ser_p50_ns": 614.0, "ser_p75_ns": 633.75, "ser_p95_ns": 657.15, "ser_p99_ns": 668.5300000000001, "ser_ci_low_ns": 594.5884615384615, "ser_ci_high_ns": 613.0025641025641, "deser_mean_ns": 403.5, "deser_median_ns": 406.0, "deser_std_ns": 25.185416311929306, "deser_mad_ns": 14.5, "deser_cv": 0.06241738862931674, "deser_min_ns": 346.0, "deser_max_ns": 455.0, "deser_p5_ns": 358.7, "deser_p25_ns": 391.0, "deser_p50_ns": 406.0, "deser_p75_ns": 419.0, "deser_p95_ns": 444.0, "deser_p99_ns": 454.23, "deser_ci_low_ns": 397.9865384615385, "deser_ci_high_ns": 409.02596153846156, "total_mean_ns": 1007.2948717948718, "total_median_ns": 1022.5, "total_std_ns": 59.815975144194404, "total_mad_ns": 30.0, "total_cv": 0.0593827853383289, "total_min_ns": 854.0, "total_max_ns": 1111.0, "total_p5_ns": 878.8, "total_p25_ns": 973.25, "total_p50_ns": 1022.5, "total_p75_ns": 1042.0, "total_p95_ns": 1086.45, "total_p99_ns": 1099.45, "total_ci_low_ns": 994.011217948718, "total_ci_high_ns": 1020.2955128205128, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.9993162393162394, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.607781834945532}, {"serializer": "yyjson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.10.0", "avg_time_ser_ns": 1571.9615384615386, "avg_time_deser_ns": 1160.7307692307693, "avg_time_total_ns": 2732.6923076923076, "median_size_bytes": 254.0, "avg_ops_per_sec": 365939.47923997184, "min_ops_per_sec": 336473.7550471063, "max_ops_per_sec": 411015.20756267983, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 1571.9615384615386, "ser_median_ns": 1574.5, "ser_std_ns": 82.76997421389372, "ser_mad_ns": 49.0, "ser_cv": 0.052653943616775625, "ser_min_ns": 1368.0, "ser_max_ns": 1813.0, "ser_p5_ns": 1446.3, "ser_p25_ns": 1528.5, "ser_p50_ns": 1574.5, "ser_p75_ns": 1626.75, "ser_p95_ns": 1695.2499999999995, "ser_p99_ns": 1805.3, "ser_ci_low_ns": 1553.5878205128206, "ser_ci_high_ns": 1590.3858974358975, "deser_mean_ns": 1160.7307692307693, "deser_median_ns": 1168.0, "deser_std_ns": 56.90974241040615, "deser_mad_ns": 35.5, "deser_cv": 0.04902923564964246, "deser_min_ns": 1023.0, "deser_max_ns": 1303.0, "deser_p5_ns": 1055.55, "deser_p25_ns": 1126.0, "deser_p50_ns": 1168.0, "deser_p75_ns": 1198.0, "deser_p95_ns": 1243.8999999999999, "deser_p99_ns": 1263.7300000000002, "deser_ci_low_ns": 1147.8317307692307, "deser_ci_high_ns": 1173.2067307692307, "total_mean_ns": 2732.6923076923076, "total_median_ns": 2748.0, "total_std_ns": 119.96453022243078, "total_mad_ns": 76.0, "total_cv": 0.043899757716864184, "total_min_ns": 2433.0, "total_max_ns": 2972.0, "total_p5_ns": 2495.05, "total_p25_ns": 2672.0, "total_p50_ns": 2748.0, "total_p75_ns": 2821.75, "total_p95_ns": 2893.7, "total_p99_ns": 2958.91, "total_ci_low_ns": 2706.535576923077, "total_ci_high_ns": 2757.4759615384614, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.61094718253307}, {"serializer": "tinycbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "c", "serializer_version": "0.6.0", "avg_time_ser_ns": 935.6309523809524, "avg_time_deser_ns": 2191.5119047619046, "avg_time_total_ns": 3127.1428571428573, "median_size_bytes": 196.0, "avg_ops_per_sec": 319780.72179077205, "min_ops_per_sec": 291545.1895043732, "max_ops_per_sec": 338753.38753387536, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 935.6309523809524, "ser_median_ns": 940.0, "ser_std_ns": 76.81926524209311, "ser_mad_ns": 48.5, "ser_cv": 0.08210423676836132, "ser_min_ns": 772.0, "ser_max_ns": 1169.0, "ser_p5_ns": 811.15, "ser_p25_ns": 885.5, "ser_p50_ns": 940.0, "ser_p75_ns": 984.0, "ser_p95_ns": 1055.85, "ser_p99_ns": 1104.2600000000002, "ser_ci_low_ns": 919.4991071428572, "ser_ci_high_ns": 951.6077380952381, "deser_mean_ns": 2191.5119047619046, "deser_median_ns": 2188.5, "deser_std_ns": 58.92623406759005, "deser_mad_ns": 43.5, "deser_cv": 0.02688839332314376, "deser_min_ns": 2072.0, "deser_max_ns": 2300.0, "deser_p5_ns": 2105.3, "deser_p25_ns": 2146.75, "deser_p50_ns": 2188.5, "deser_p75_ns": 2233.25, "deser_p95_ns": 2288.0, "deser_p99_ns": 2294.19, "deser_ci_low_ns": 2178.640178571429, "deser_ci_high_ns": 2204.5476190476193, "total_mean_ns": 3127.1428571428573, "total_median_ns": 3125.5, "total_std_ns": 101.75497890274174, "total_mad_ns": 74.0, "total_cv": 0.03253928059932353, "total_min_ns": 2952.0, "total_max_ns": 3430.0, "total_p5_ns": 2963.0, "total_p25_ns": 3051.75, "total_p50_ns": 3125.5, "total_p75_ns": 3200.5, "total_p95_ns": 3286.4, "total_p99_ns": 3388.5, "total_ci_low_ns": 3106.070833333333, "total_ci_high_ns": 3149.073214285714, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.614305825773734}, {"serializer": "tinycbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.6.0", "avg_time_ser_ns": 34868.34042553192, "avg_time_deser_ns": 186703.60638297873, "avg_time_total_ns": 221571.94680851063, "median_size_bytes": 20157.0, "avg_ops_per_sec": 4513.206723160812, "min_ops_per_sec": 4308.172171792674, "max_ops_per_sec": 4707.499517481299, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 34868.34042553192, "ser_median_ns": 34817.5, "ser_std_ns": 838.0435043137065, "ser_mad_ns": 572.5, "ser_cv": 0.02403451079363844, "ser_min_ns": 32970.0, "ser_max_ns": 36783.0, "ser_p5_ns": 33558.2, "ser_p25_ns": 34399.0, "ser_p50_ns": 34817.5, "ser_p75_ns": 35477.25, "ser_p95_ns": 36265.4, "ser_p99_ns": 36690.0, "ser_ci_low_ns": 34704.14335106383, "ser_ci_high_ns": 35043.07526595744, "deser_mean_ns": 186703.60638297873, "deser_median_ns": 185927.0, "deser_std_ns": 4290.032594352167, "deser_mad_ns": 3328.0, "deser_cv": 0.022977770368035468, "deser_min_ns": 178900.0, "deser_max_ns": 197177.0, "deser_p5_ns": 180432.6, "deser_p25_ns": 183335.25, "deser_p50_ns": 185927.0, "deser_p75_ns": 189742.0, "deser_p95_ns": 194296.8, "deser_p99_ns": 196867.31, "deser_ci_low_ns": 185864.2018617021, "deser_ci_high_ns": 187562.0534574468, "total_mean_ns": 221571.94680851063, "total_median_ns": 221321.5, "total_std_ns": 4616.968470474462, "total_mad_ns": 3355.5, "total_cv": 0.020837333141566834, "total_min_ns": 212427.0, "total_max_ns": 232117.0, "total_p5_ns": 214737.25, "total_p25_ns": 217884.25, "total_p50_ns": 221321.5, "total_p75_ns": 224588.25, "total_p95_ns": 229487.35, "total_p99_ns": 232019.35, "total_ci_low_ns": 220663.13218085107, "total_ci_high_ns": 222517.2808510638, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 54.872718267288136}, {"serializer": "json-c", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.15", "avg_time_ser_ns": 232745.25531914894, "avg_time_deser_ns": 356342.2659574468, "avg_time_total_ns": 589087.5212765958, "median_size_bytes": 25957.0, "avg_ops_per_sec": 1697.5406266167831, "min_ops_per_sec": 1640.7267763328443, "max_ops_per_sec": 1763.60000141088, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 232745.25531914894, "ser_median_ns": 232531.5, "ser_std_ns": 4410.306701685087, "ser_mad_ns": 3056.5, "ser_cv": 0.01894907243388275, "ser_min_ns": 221770.0, "ser_max_ns": 244227.0, "ser_p5_ns": 225211.8, "ser_p25_ns": 229606.5, "ser_p50_ns": 232531.5, "ser_p75_ns": 235661.25, "ser_p95_ns": 240006.3, "ser_p99_ns": 241836.9, "ser_ci_low_ns": 231868.79707446808, "ser_ci_high_ns": 233627.84521276597, "deser_mean_ns": 356342.2659574468, "deser_median_ns": 356088.0, "deser_std_ns": 6577.3265595104485, "deser_mad_ns": 4857.0, "deser_cv": 0.018457890595262393, "deser_min_ns": 344660.0, "deser_max_ns": 372105.0, "deser_p5_ns": 346903.7, "deser_p25_ns": 351475.75, "deser_p50_ns": 356088.0, "deser_p75_ns": 361155.75, "deser_p95_ns": 368134.0, "deser_p99_ns": 369812.55, "deser_ci_low_ns": 355033.99281914893, "deser_ci_high_ns": 357682.5050531915, "total_mean_ns": 589087.5212765958, "total_median_ns": 588211.0, "total_std_ns": 9233.934238505699, "total_mad_ns": 6431.0, "total_cv": 0.015674978513371133, "total_min_ns": 567022.0, "total_max_ns": 609486.0, "total_p5_ns": 576450.0, "total_p25_ns": 582560.75, "total_p50_ns": 588211.0, "total_p75_ns": 595385.25, "total_p95_ns": 604394.55, "total_p99_ns": 609479.49, "total_ci_low_ns": 587109.582180851, "total_ci_high_ns": 590846.482180851, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 81.52638262018672}, {"serializer": "zcbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.9", "avg_time_ser_ns": 58229.42222222222, "avg_time_deser_ns": 239397.36666666667, "avg_time_total_ns": 297626.7888888889, "median_size_bytes": 20757.0, "avg_ops_per_sec": 3359.912606433165, "min_ops_per_sec": 3195.725397708026, "max_ops_per_sec": 3504.1857498782297, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 58229.42222222222, "ser_median_ns": 58267.0, "ser_std_ns": 1454.605842420549, "ser_mad_ns": 986.5, "ser_cv": 0.024980598929340302, "ser_min_ns": 55234.0, "ser_max_ns": 61787.0, "ser_p5_ns": 56114.25, "ser_p25_ns": 57136.25, "ser_p50_ns": 58267.0, "ser_p75_ns": 58990.25, "ser_p95_ns": 61051.0, "ser_p99_ns": 61701.56, "ser_ci_low_ns": 57925.495, "ser_ci_high_ns": 58525.462222222224, "deser_mean_ns": 239397.36666666667, "deser_median_ns": 239570.5, "deser_std_ns": 5050.174035158913, "deser_mad_ns": 3244.5, "deser_cv": 0.02109536168035925, "deser_min_ns": 228522.0, "deser_max_ns": 252664.0, "deser_p5_ns": 231740.15, "deser_p25_ns": 235451.25, "deser_p50_ns": 239570.5, "deser_p75_ns": 242213.0, "deser_p95_ns": 248243.55, "deser_p99_ns": 251543.49, "deser_ci_low_ns": 238380.98805555556, "deser_ci_high_ns": 240423.9363888889, "total_mean_ns": 297626.7888888889, "total_median_ns": 298348.0, "total_std_ns": 5715.658390996769, "total_mad_ns": 4095.0, "total_cv": 0.019204112681975544, "total_min_ns": 285373.0, "total_max_ns": 312918.0, "total_p5_ns": 289763.6, "total_p25_ns": 293016.75, "total_p50_ns": 298348.0, "total_p75_ns": 301469.0, "total_p95_ns": 307249.85, "total_p99_ns": 309341.09, "total_ci_low_ns": 296418.56083333335, "total_ci_high_ns": 298791.3547222222, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 63.04360077865676}, {"serializer": "parson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.5.3", "avg_time_ser_ns": 375584.42553191487, "avg_time_deser_ns": 264286.1170212766, "avg_time_total_ns": 639870.5425531915, "median_size_bytes": 25957.0, "avg_ops_per_sec": 1562.8161221640726, "min_ops_per_sec": 1518.7504935939105, "max_ops_per_sec": 1608.133294952552, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 375584.42553191487, "ser_median_ns": 374489.0, "ser_std_ns": 5271.000779247238, "ser_mad_ns": 3734.0, "ser_cv": 0.014034130333765238, "ser_min_ns": 365556.0, "ser_max_ns": 391414.0, "ser_p5_ns": 368828.8, "ser_p25_ns": 371454.25, "ser_p50_ns": 374489.0, "ser_p75_ns": 379265.5, "ser_p95_ns": 383915.85, "ser_p99_ns": 386468.25999999995, "ser_ci_low_ns": 374546.2609042553, "ser_ci_high_ns": 376642.83005319146, "deser_mean_ns": 264286.1170212766, "deser_median_ns": 263656.5, "deser_std_ns": 4567.631314463597, "deser_mad_ns": 3213.0, "deser_cv": 0.017282902961171718, "deser_min_ns": 250345.0, "deser_max_ns": 274242.0, "deser_p5_ns": 257803.5, "deser_p25_ns": 260799.75, "deser_p50_ns": 263656.5, "deser_p75_ns": 267855.75, "deser_p95_ns": 271927.9, "deser_p99_ns": 274015.08, "deser_ci_low_ns": 263391.76010638295, "deser_ci_high_ns": 265205.5893617021, "total_mean_ns": 639870.5425531915, "total_median_ns": 638734.5, "total_std_ns": 8707.709933953282, "total_mad_ns": 5935.0, "total_cv": 0.01360854947191044, "total_min_ns": 621839.0, "total_max_ns": 658436.0, "total_p5_ns": 627886.55, "total_p25_ns": 633103.75, "total_p50_ns": 638734.5, "total_p75_ns": 647016.0, "total_p95_ns": 653532.05, "total_p99_ns": 657495.77, "total_ci_low_ns": 638064.6715425532, "total_ci_high_ns": 641699.9484042553, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 94.34347992759014}, {"serializer": "jansson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "2.14", "avg_time_ser_ns": 339960.4731182796, "avg_time_deser_ns": 433044.623655914, "avg_time_total_ns": 773005.0967741936, "median_size_bytes": 25957.0, "avg_ops_per_sec": 1293.6525311062924, "min_ops_per_sec": 1246.3963565341705, "max_ops_per_sec": 1327.2879790182317, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 339960.4731182796, "ser_median_ns": 339035.0, "ser_std_ns": 5699.577819207691, "ser_mad_ns": 3980.0, "ser_cv": 0.016765413246217848, "ser_min_ns": 328641.0, "ser_max_ns": 355294.0, "ser_p5_ns": 332486.4, "ser_p25_ns": 335752.0, "ser_p50_ns": 339035.0, "ser_p75_ns": 343349.0, "ser_p95_ns": 349472.0, "ser_p99_ns": 354647.24, "ser_ci_low_ns": 338823.23897849466, "ser_ci_high_ns": 341152.4142473118, "deser_mean_ns": 433044.623655914, "deser_median_ns": 433354.0, "deser_std_ns": 7597.8257887056925, "deser_mad_ns": 6458.0, "deser_cv": 0.017545133627482067, "deser_min_ns": 421961.0, "deser_max_ns": 450203.0, "deser_p5_ns": 423511.6, "deser_p25_ns": 426249.0, "deser_p50_ns": 433354.0, "deser_p75_ns": 438482.0, "deser_p95_ns": 446569.2, "deser_p99_ns": 448144.04, "deser_ci_low_ns": 431504.35833333334, "deser_ci_high_ns": 434577.6, "total_mean_ns": 773005.0967741936, "total_median_ns": 772346.0, "total_std_ns": 11471.908281105554, "total_mad_ns": 9622.0, "total_cv": 0.014840663184471435, "total_min_ns": 753416.0, "total_max_ns": 802313.0, "total_p5_ns": 758648.2, "total_p25_ns": 762745.0, "total_p50_ns": 772346.0, "total_p75_ns": 781968.0, "total_p95_ns": 790426.6, "total_p99_ns": 799090.24, "total_ci_low_ns": 770651.6465053763, "total_ci_high_ns": 775301.6166666667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 87.62270912955867}, {"serializer": "flatcc", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.6.1", "avg_time_ser_ns": 23567.011627906977, "avg_time_deser_ns": 22894.883720930233, "avg_time_total_ns": 46461.895348837206, "median_size_bytes": 15292.0, "avg_ops_per_sec": 21523.013482165807, "min_ops_per_sec": 20681.66776968895, "max_ops_per_sec": 22276.180080639773, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 23567.011627906977, "ser_median_ns": 23518.0, "ser_std_ns": 564.735179878687, "ser_mad_ns": 336.0, "ser_cv": 0.023962952486090913, "ser_min_ns": 22190.0, "ser_max_ns": 24990.0, "ser_p5_ns": 22665.5, "ser_p25_ns": 23190.0, "ser_p50_ns": 23518.0, "ser_p75_ns": 23855.5, "ser_p95_ns": 24659.5, "ser_p99_ns": 24851.45, "ser_ci_low_ns": 23445.54680232558, "ser_ci_high_ns": 23698.717441860463, "deser_mean_ns": 22894.883720930233, "deser_median_ns": 22834.5, "deser_std_ns": 341.3892178801423, "deser_mad_ns": 264.0, "deser_cv": 0.014911157533770234, "deser_min_ns": 22434.0, "deser_max_ns": 24058.0, "deser_p5_ns": 22488.5, "deser_p25_ns": 22596.0, "deser_p50_ns": 22834.5, "deser_p75_ns": 23124.5, "deser_p95_ns": 23423.75, "deser_p99_ns": 24024.85, "deser_ci_low_ns": 22828.121220930232, "deser_ci_high_ns": 22966.742732558138, "total_mean_ns": 46461.895348837206, "total_median_ns": 46349.0, "total_std_ns": 776.6840076522872, "total_mad_ns": 513.0, "total_cv": 0.016716580368082747, "total_min_ns": 44891.0, "total_max_ns": 48352.0, "total_p5_ns": 45273.25, "total_p25_ns": 45916.25, "total_p50_ns": 46349.0, "total_p75_ns": 46960.0, "total_p95_ns": 47967.5, "total_p99_ns": 48207.5, "total_ci_low_ns": 46303.412209302325, "total_ci_high_ns": 46630.79069767442, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.549787578522633}, {"serializer": "qcbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.5.1", "avg_time_ser_ns": 97282.1182795699, "avg_time_deser_ns": 186027.47311827957, "avg_time_total_ns": 283309.59139784944, "median_size_bytes": 20157.0, "avg_ops_per_sec": 3529.707536783348, "min_ops_per_sec": 3399.14069723174, "max_ops_per_sec": 3666.4552344148155, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 97282.1182795699, "ser_median_ns": 97163.0, "ser_std_ns": 1662.6168533595674, "ser_mad_ns": 1105.0, "ser_cv": 0.017090672805679764, "ser_min_ns": 93888.0, "ser_max_ns": 100997.0, "ser_p5_ns": 94769.8, "ser_p25_ns": 96085.0, "ser_p50_ns": 97163.0, "ser_p75_ns": 98283.0, "ser_p95_ns": 100112.6, "ser_p99_ns": 100806.56, "ser_ci_low_ns": 96953.36021505376, "ser_ci_high_ns": 97616.48145161291, "deser_mean_ns": 186027.47311827957, "deser_median_ns": 185459.0, "deser_std_ns": 4040.945034732103, "deser_mad_ns": 2601.0, "deser_cv": 0.0217223024481056, "deser_min_ns": 177360.0, "deser_max_ns": 195949.0, "deser_p5_ns": 179650.4, "deser_p25_ns": 183359.0, "deser_p50_ns": 185459.0, "deser_p75_ns": 188335.0, "deser_p95_ns": 193770.8, "deser_p99_ns": 195538.68, "deser_ci_low_ns": 185236.9067204301, "deser_ci_high_ns": 186870.02715053764, "total_mean_ns": 283309.59139784944, "total_median_ns": 283300.0, "total_std_ns": 4879.211712964012, "total_mad_ns": 3691.0, "total_cv": 0.017222190356810663, "total_min_ns": 272743.0, "total_max_ns": 294192.0, "total_p5_ns": 276006.4, "total_p25_ns": 279423.0, "total_p50_ns": 283300.0, "total_p75_ns": 286627.0, "total_p95_ns": 291288.0, "total_p99_ns": 293805.6, "total_ci_low_ns": 282356.9887096774, "total_ci_high_ns": 284332.10241935484, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 69.21453831710923}, {"serializer": "libbson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.27.5", "avg_time_ser_ns": 129340.77894736842, "avg_time_deser_ns": 146397.02105263158, "avg_time_total_ns": 275737.8, "median_size_bytes": 29357.0, "avg_ops_per_sec": 3626.63370781953, "min_ops_per_sec": 3505.807369908253, "max_ops_per_sec": 3743.5377180142777, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 129340.77894736842, "ser_median_ns": 129115.0, "ser_std_ns": 2429.078444372222, "ser_mad_ns": 1885.0, "ser_cv": 0.018780453188399823, "ser_min_ns": 125169.0, "ser_max_ns": 135019.0, "ser_p5_ns": 126106.1, "ser_p25_ns": 127247.5, "ser_p50_ns": 129115.0, "ser_p75_ns": 131050.0, "ser_p95_ns": 133937.6, "ser_p99_ns": 134729.48, "ser_ci_low_ns": 128870.8747368421, "ser_ci_high_ns": 129836.55842105264, "deser_mean_ns": 146397.02105263158, "deser_median_ns": 145672.0, "deser_std_ns": 2517.0666690759995, "deser_mad_ns": 1709.0, "deser_cv": 0.0171934281925797, "deser_min_ns": 141163.0, "deser_max_ns": 152562.0, "deser_p5_ns": 143031.1, "deser_p25_ns": 144494.0, "deser_p50_ns": 145672.0, "deser_p75_ns": 148110.5, "deser_p95_ns": 150697.1, "deser_p99_ns": 151860.76, "deser_ci_low_ns": 145889.01026315792, "deser_ci_high_ns": 146910.76263157892, "total_mean_ns": 275737.8, "total_median_ns": 274825.0, "total_std_ns": 4622.608572306978, "total_mad_ns": 3385.0, "total_cv": 0.016764508066384, "total_min_ns": 267127.0, "total_max_ns": 285241.0, "total_p5_ns": 269104.4, "total_p25_ns": 271835.0, "total_p50_ns": 274825.0, "total_p75_ns": 278752.5, "total_p95_ns": 283739.6, "total_p99_ns": 284682.64, "total_ci_low_ns": 274789.3065789474, "total_ci_high_ns": 276668.80157894734, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 70.45680786621418}, {"serializer": "avro-c", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.11.3", "avg_time_ser_ns": 23243.5, "avg_time_deser_ns": 35619.02380952381, "avg_time_total_ns": 58862.52380952381, "median_size_bytes": 12657.0, "avg_ops_per_sec": 16988.73808462495, "min_ops_per_sec": 16196.167986654358, "max_ops_per_sec": 17866.075895090402, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 23243.5, "ser_median_ns": 23213.0, "ser_std_ns": 536.6678203484819, "ser_mad_ns": 352.5, "ser_cv": 0.02308894186970473, "ser_min_ns": 21722.0, "ser_max_ns": 24772.0, "ser_p5_ns": 22539.3, "ser_p25_ns": 22882.5, "ser_p50_ns": 23213.0, "ser_p75_ns": 23587.25, "ser_p95_ns": 24274.9, "ser_p99_ns": 24581.100000000002, "ser_ci_low_ns": 23128.99732142857, "ser_ci_high_ns": 23351.51845238095, "deser_mean_ns": 35619.02380952381, "deser_median_ns": 35566.5, "deser_std_ns": 641.217685274045, "deser_mad_ns": 479.5, "deser_cv": 0.018002112823277214, "deser_min_ns": 34250.0, "deser_max_ns": 37451.0, "deser_p5_ns": 34811.5, "deser_p25_ns": 35114.25, "deser_p50_ns": 35566.5, "deser_p75_ns": 36053.5, "deser_p95_ns": 36810.15, "deser_p99_ns": 37231.88, "deser_ci_low_ns": 35485.55952380953, "deser_ci_high_ns": 35760.70565476191, "total_mean_ns": 58862.52380952381, "total_median_ns": 58855.0, "total_std_ns": 1025.6843789438392, "total_mad_ns": 788.0, "total_cv": 0.01742508327136809, "total_min_ns": 55972.0, "total_max_ns": 61743.0, "total_p5_ns": 57536.35, "total_p25_ns": 58064.25, "total_p50_ns": 58855.0, "total_p75_ns": 59635.75, "total_p95_ns": 60420.95, "total_p99_ns": 60980.23, "total_ci_low_ns": 58640.570238095235, "total_ci_high_ns": 59078.32083333334, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.105618115430232}, {"serializer": "protobuf-c", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.5.0", "avg_time_ser_ns": 22808.103448275862, "avg_time_deser_ns": 27045.6091954023, "avg_time_total_ns": 49853.71264367816, "median_size_bytes": 12557.0, "avg_ops_per_sec": 20058.68664481115, "min_ops_per_sec": 19299.430666795328, "max_ops_per_sec": 20784.403383700872, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 22808.103448275862, "ser_median_ns": 22727.0, "ser_std_ns": 387.39977051783785, "ser_mad_ns": 279.0, "ser_cv": 0.01698518122720645, "ser_min_ns": 21897.0, "ser_max_ns": 23919.0, "ser_p5_ns": 22333.9, "ser_p25_ns": 22524.5, "ser_p50_ns": 22727.0, "ser_p75_ns": 23075.0, "ser_p95_ns": 23469.2, "ser_p99_ns": 23722.920000000002, "ser_ci_low_ns": 22722.66695402299, "ser_ci_high_ns": 22893.922701149426, "deser_mean_ns": 27045.6091954023, "deser_median_ns": 26998.0, "deser_std_ns": 415.79241679947665, "deser_mad_ns": 302.0, "deser_cv": 0.015373749350418055, "deser_min_ns": 26216.0, "deser_max_ns": 28228.0, "deser_p5_ns": 26532.3, "deser_p25_ns": 26702.0, "deser_p50_ns": 26998.0, "deser_p75_ns": 27302.5, "deser_p95_ns": 27744.5, "deser_p99_ns": 28144.58, "deser_ci_low_ns": 26961.22528735632, "deser_ci_high_ns": 27134.118390804597, "total_mean_ns": 49853.71264367816, "total_median_ns": 49629.0, "total_std_ns": 741.2638313238924, "total_mad_ns": 500.0, "total_cv": 0.014868778913658107, "total_min_ns": 48113.0, "total_max_ns": 51815.0, "total_p5_ns": 49007.8, "total_p25_ns": 49279.5, "total_p50_ns": 49629.0, "total_p75_ns": 50412.5, "total_p95_ns": 51198.2, "total_p99_ns": 51573.340000000004, "total_ci_low_ns": 49702.47931034483, "total_ci_high_ns": 50013.77068965517, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.2888468658539}, {"serializer": "nanopb", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.4.9", "avg_time_ser_ns": 22711.842696629214, "avg_time_deser_ns": 27320.224719101123, "avg_time_total_ns": 50032.06741573034, "median_size_bytes": 12557.0, "avg_ops_per_sec": 19987.181254988373, "min_ops_per_sec": 19114.61120880801, "max_ops_per_sec": 20912.627044209294, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 22711.842696629214, "ser_median_ns": 22733.0, "ser_std_ns": 512.1425116578305, "ser_mad_ns": 350.0, "ser_cv": 0.022549579904136984, "ser_min_ns": 21475.0, "ser_max_ns": 24140.0, "ser_p5_ns": 22002.0, "ser_p25_ns": 22305.0, "ser_p50_ns": 22733.0, "ser_p75_ns": 22983.0, "ser_p95_ns": 23562.0, "ser_p99_ns": 23964.0, "ser_ci_low_ns": 22609.471348314604, "ser_ci_high_ns": 22815.880617977527, "deser_mean_ns": 27320.224719101123, "deser_median_ns": 27331.0, "deser_std_ns": 499.91569181960773, "deser_mad_ns": 337.0, "deser_cv": 0.01829837407852975, "deser_min_ns": 26259.0, "deser_max_ns": 28580.0, "deser_p5_ns": 26613.2, "deser_p25_ns": 26939.0, "deser_p50_ns": 27331.0, "deser_p75_ns": 27592.0, "deser_p95_ns": 28201.199999999997, "deser_p99_ns": 28546.56, "deser_ci_low_ns": 27218.79747191011, "deser_ci_high_ns": 27418.787921348314, "total_mean_ns": 50032.06741573034, "total_median_ns": 50114.0, "total_std_ns": 916.4394638261812, "total_mad_ns": 682.0, "total_cv": 0.018317041672718245, "total_min_ns": 47818.0, "total_max_ns": 52316.0, "total_p5_ns": 48780.6, "total_p25_ns": 49328.0, "total_p50_ns": 50114.0, "total_p75_ns": 50619.0, "total_p95_ns": 51430.8, "total_p99_ns": 52231.520000000004, "total_ci_low_ns": 49839.39185393258, "total_ci_high_ns": 50218.87893258427, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.06900101484747}, {"serializer": "protobuf-wire", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "wire-v2", "avg_time_ser_ns": 22612.298850574713, "avg_time_deser_ns": 27523.16091954023, "avg_time_total_ns": 50135.45977011494, "median_size_bytes": 12557.0, "avg_ops_per_sec": 19945.962490127324, "min_ops_per_sec": 18914.318138831095, "max_ops_per_sec": 20792.61446334262, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 22612.298850574713, "ser_median_ns": 22517.0, "ser_std_ns": 409.2561350406746, "ser_mad_ns": 310.0, "ser_cv": 0.018098829214362386, "ser_min_ns": 21575.0, "ser_max_ns": 23789.0, "ser_p5_ns": 22037.9, "ser_p25_ns": 22310.5, "ser_p50_ns": 22517.0, "ser_p75_ns": 22934.0, "ser_p95_ns": 23209.0, "ser_p99_ns": 23695.26, "ser_ci_low_ns": 22529.279022988503, "ser_ci_high_ns": 22695.67988505747, "deser_mean_ns": 27523.16091954023, "deser_median_ns": 27491.0, "deser_std_ns": 572.5307927854333, "deser_mad_ns": 401.0, "deser_cv": 0.02080178197770016, "deser_min_ns": 26366.0, "deser_max_ns": 29261.0, "deser_p5_ns": 26769.7, "deser_p25_ns": 27050.0, "deser_p50_ns": 27491.0, "deser_p75_ns": 27844.5, "deser_p95_ns": 28584.8, "deser_p99_ns": 29106.2, "deser_ci_low_ns": 27402.532471264367, "deser_ci_high_ns": 27645.324712643676, "total_mean_ns": 50135.45977011494, "total_median_ns": 49993.0, "total_std_ns": 903.3154411131445, "total_mad_ns": 708.0, "total_cv": 0.018017495905195597, "total_min_ns": 48094.0, "total_max_ns": 52870.0, "total_p5_ns": 48926.6, "total_p25_ns": 49419.0, "total_p50_ns": 49993.0, "total_p75_ns": 50802.5, "total_p95_ns": 51622.0, "total_p99_ns": 52425.38, "total_ci_low_ns": 49953.777586206896, "total_ci_high_ns": 50321.89109195402, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.491118280709152}, {"serializer": "cbor-encode", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.11.0", "avg_time_ser_ns": 187576.80208333334, "avg_time_deser_ns": 187497.23958333334, "avg_time_total_ns": 375074.0416666667, "median_size_bytes": 20157.0, "avg_ops_per_sec": 2666.1402520857823, "min_ops_per_sec": 2554.2588434826807, "max_ops_per_sec": 2745.0506736354355, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 187576.80208333334, "ser_median_ns": 187426.0, "ser_std_ns": 3809.8356522635954, "ser_mad_ns": 2791.0, "ser_cv": 0.02031080394776657, "ser_min_ns": 180652.0, "ser_max_ns": 195977.0, "ser_p5_ns": 182204.5, "ser_p25_ns": 184498.75, "ser_p50_ns": 187426.0, "ser_p75_ns": 190041.0, "ser_p95_ns": 194625.0, "ser_p99_ns": 195633.1, "ser_ci_low_ns": 186795.39114583333, "ser_ci_high_ns": 188372.70911458333, "deser_mean_ns": 187497.23958333334, "deser_median_ns": 187107.0, "deser_std_ns": 3812.3190283047616, "deser_mad_ns": 2572.5, "deser_cv": 0.02033266749300793, "deser_min_ns": 179307.0, "deser_max_ns": 197382.0, "deser_p5_ns": 181712.25, "deser_p25_ns": 184920.0, "deser_p50_ns": 187107.0, "deser_p75_ns": 189961.25, "deser_p95_ns": 194371.25, "deser_p99_ns": 196876.6, "deser_ci_low_ns": 186750.58489583334, "deser_ci_high_ns": 188232.91822916668, "total_mean_ns": 375074.0416666667, "total_median_ns": 374907.5, "total_std_ns": 6356.689851796281, "total_mad_ns": 5028.5, "total_cv": 0.016947826683899273, "total_min_ns": 364292.0, "total_max_ns": 391503.0, "total_p5_ns": 365440.5, "total_p25_ns": 369779.5, "total_p50_ns": 374907.5, "total_p75_ns": 379793.25, "total_p95_ns": 385759.25, "total_p99_ns": 390198.65, "total_ci_low_ns": 373868.33046875, "total_ci_high_ns": 376346.3578125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 72.31016082531305}, {"serializer": "custom-binary", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "v2-1.0", "avg_time_ser_ns": 10890.037037037036, "avg_time_deser_ns": 23006.703703703704, "avg_time_total_ns": 33896.74074074074, "median_size_bytes": 12357.0, "avg_ops_per_sec": 29501.361433197995, "min_ops_per_sec": 28302.153793903715, "max_ops_per_sec": 30284.675953967293, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 10890.037037037036, "ser_median_ns": 10832.0, "ser_std_ns": 260.0109345991263, "ser_mad_ns": 148.0, "ser_cv": 0.02387603767689941, "ser_min_ns": 10261.0, "ser_max_ns": 11643.0, "ser_p5_ns": 10557.0, "ser_p25_ns": 10706.0, "ser_p50_ns": 10832.0, "ser_p75_ns": 11063.0, "ser_p95_ns": 11384.0, "ser_p99_ns": 11447.800000000001, "ser_ci_low_ns": 10836.889814814816, "ser_ci_high_ns": 10946.22098765432, "deser_mean_ns": 23006.703703703704, "deser_median_ns": 23063.0, "deser_std_ns": 397.2465054737563, "deser_mad_ns": 319.0, "deser_cv": 0.017266554591643047, "deser_min_ns": 22396.0, "deser_max_ns": 24238.0, "deser_p5_ns": 22514.0, "deser_p25_ns": 22626.0, "deser_p50_ns": 23063.0, "deser_p75_ns": 23247.0, "deser_p95_ns": 23480.0, "deser_p99_ns": 24193.2, "deser_ci_low_ns": 22921.919753086422, "deser_ci_high_ns": 23092.149074074074, "total_mean_ns": 33896.74074074074, "total_median_ns": 33867.0, "total_std_ns": 544.8053500512311, "total_mad_ns": 440.0, "total_cv": 0.016072499542601322, "total_min_ns": 33020.0, "total_max_ns": 35333.0, "total_p5_ns": 33148.0, "total_p25_ns": 33406.0, "total_p50_ns": 33867.0, "total_p75_ns": 34255.0, "total_p95_ns": 34805.0, "total_p99_ns": 35165.0, "total_ci_low_ns": 33779.429320987656, "total_ci_high_ns": 34023.275308641976, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "msgpack-c", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "6.0.1", "avg_time_ser_ns": 36030.57608695652, "avg_time_deser_ns": 60488.04347826087, "avg_time_total_ns": 96518.61956521739, "median_size_bytes": 20157.0, "avg_ops_per_sec": 10360.695216162954, "min_ops_per_sec": 9990.209594597294, "max_ops_per_sec": 10660.185274020063, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 36030.57608695652, "ser_median_ns": 36043.0, "ser_std_ns": 703.6462996607586, "ser_mad_ns": 529.5, "ser_cv": 0.01952914374620523, "ser_min_ns": 34402.0, "ser_max_ns": 37846.0, "ser_p5_ns": 34926.1, "ser_p25_ns": 35586.25, "ser_p50_ns": 36043.0, "ser_p75_ns": 36576.75, "ser_p95_ns": 37214.9, "ser_p99_ns": 37600.3, "ser_ci_low_ns": 35885.594293478265, "ser_ci_high_ns": 36178.1785326087, "deser_mean_ns": 60488.04347826087, "deser_median_ns": 60582.5, "deser_std_ns": 1107.8017626550406, "deser_mad_ns": 969.0, "deser_cv": 0.01831439238158165, "deser_min_ns": 58976.0, "deser_max_ns": 63346.0, "deser_p5_ns": 59174.8, "deser_p25_ns": 59466.75, "deser_p50_ns": 60582.5, "deser_p75_ns": 61182.0, "deser_p95_ns": 62698.5, "deser_p99_ns": 63303.23, "deser_ci_low_ns": 60262.577445652176, "deser_ci_high_ns": 60713.22826086957, "total_mean_ns": 96518.61956521739, "total_median_ns": 96652.0, "total_std_ns": 1559.515477322556, "total_mad_ns": 1221.5, "total_cv": 0.016157664545427892, "total_min_ns": 93807.0, "total_max_ns": 100098.0, "total_p5_ns": 94409.05, "total_p25_ns": 95289.5, "total_p50_ns": 96652.0, "total_p75_ns": 97537.75, "total_p95_ns": 99322.65, "total_p99_ns": 99982.43000000001, "total_ci_low_ns": 96211.72173913044, "total_ci_high_ns": 96846.60163043479, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 52.080079335071986}, {"serializer": "cJSON", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.7.18", "avg_time_ser_ns": 215915.47252747254, "avg_time_deser_ns": 203242.86813186813, "avg_time_total_ns": 419158.34065934067, "median_size_bytes": 25957.0, "avg_ops_per_sec": 2385.7332730800226, "min_ops_per_sec": 2318.195516609871, "max_ops_per_sec": 2472.3834765667493, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 215915.47252747254, "ser_median_ns": 215793.0, "ser_std_ns": 3117.5224149266687, "ser_mad_ns": 2590.0, "ser_cv": 0.014438624422944043, "ser_min_ns": 209328.0, "ser_max_ns": 226126.0, "ser_p5_ns": 212120.0, "ser_p25_ns": 213049.0, "ser_p50_ns": 215793.0, "ser_p75_ns": 218241.0, "ser_p95_ns": 221014.0, "ser_p99_ns": 223379.19999999998, "ser_ci_low_ns": 215273.46923076923, "ser_ci_high_ns": 216569.3997252747, "deser_mean_ns": 203242.86813186813, "deser_median_ns": 202403.0, "deser_std_ns": 3511.0377295000885, "deser_mad_ns": 2547.0, "deser_cv": 0.017275084541820456, "deser_min_ns": 195140.0, "deser_max_ns": 211650.0, "deser_p5_ns": 198876.5, "deser_p25_ns": 200264.5, "deser_p50_ns": 202403.0, "deser_p75_ns": 205343.0, "deser_p95_ns": 210001.5, "deser_p99_ns": 211554.6, "deser_ci_low_ns": 202563.99725274724, "deser_ci_high_ns": 203970.32362637363, "total_mean_ns": 419158.34065934067, "total_median_ns": 418358.0, "total_std_ns": 5718.59010055952, "total_mad_ns": 4507.0, "total_cv": 0.013643030678010879, "total_min_ns": 404468.0, "total_max_ns": 431370.0, "total_p5_ns": 411906.5, "total_p25_ns": 414330.0, "total_p50_ns": 418358.0, "total_p75_ns": 423668.0, "total_p95_ns": 428108.0, "total_p99_ns": 431357.4, "total_ci_low_ns": 417984.0997252747, "total_ci_high_ns": 420340.5521978022, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 91.8125444674419}, {"serializer": "ubj", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.0-min", "avg_time_ser_ns": 13281.738636363636, "avg_time_deser_ns": 23964.31818181818, "avg_time_total_ns": 37246.056818181816, "median_size_bytes": 16057.0, "avg_ops_per_sec": 26848.47968958276, "min_ops_per_sec": 25589.191125668516, "max_ops_per_sec": 28000.224001792016, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 13281.738636363636, "ser_median_ns": 13249.0, "ser_std_ns": 369.3717093112282, "ser_mad_ns": 255.0, "ser_cv": 0.027810493748155644, "ser_min_ns": 12371.0, "ser_max_ns": 14185.0, "ser_p5_ns": 12766.4, "ser_p25_ns": 13020.25, "ser_p50_ns": 13249.0, "ser_p75_ns": 13506.75, "ser_p95_ns": 13978.3, "ser_p99_ns": 14146.72, "ser_ci_low_ns": 13198.892897727274, "ser_ci_high_ns": 13359.225568181819, "deser_mean_ns": 23964.31818181818, "deser_median_ns": 23946.5, "deser_std_ns": 372.855848557526, "deser_mad_ns": 297.5, "deser_cv": 0.015558792273105986, "deser_min_ns": 23343.0, "deser_max_ns": 25095.0, "deser_p5_ns": 23498.2, "deser_p25_ns": 23645.25, "deser_p50_ns": 23946.5, "deser_p75_ns": 24184.5, "deser_p95_ns": 24560.35, "deser_p99_ns": 24920.129999999997, "deser_ci_low_ns": 23890.453409090907, "deser_ci_high_ns": 24041.776704545457, "total_mean_ns": 37246.056818181816, "total_median_ns": 37175.0, "total_std_ns": 650.7190074215173, "total_mad_ns": 465.5, "total_cv": 0.01747081605438206, "total_min_ns": 35714.0, "total_max_ns": 39079.0, "total_p5_ns": 36450.35, "total_p25_ns": 36721.5, "total_p50_ns": 37175.0, "total_p75_ns": 37697.0, "total_p95_ns": 38366.9, "total_p99_ns": 38709.25, "total_ci_low_ns": 37117.265625, "total_ci_high_ns": 37384.90880681818, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.535769802036803}, {"serializer": "yyjson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "0.10.0", "avg_time_ser_ns": 96036.45977011495, "avg_time_deser_ns": 102017.58620689655, "avg_time_total_ns": 198054.0459770115, "median_size_bytes": 25957.0, "avg_ops_per_sec": 5049.126843468131, "min_ops_per_sec": 4838.2804751191425, "max_ops_per_sec": 5237.74106703261, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 96036.45977011495, "ser_median_ns": 95736.0, "ser_std_ns": 1915.3550269275643, "ser_mad_ns": 1338.0, "ser_cv": 0.019944040331270032, "ser_min_ns": 90496.0, "ser_max_ns": 100382.0, "ser_p5_ns": 93419.7, "ser_p25_ns": 94745.5, "ser_p50_ns": 95736.0, "ser_p75_ns": 97423.0, "ser_p95_ns": 99479.1, "ser_p99_ns": 100232.36, "ser_ci_low_ns": 95625.675, "ser_ci_high_ns": 96429.39827586207, "deser_mean_ns": 102017.58620689655, "deser_median_ns": 101681.0, "deser_std_ns": 1911.9210572379457, "deser_mad_ns": 1268.0, "deser_cv": 0.01874109286765988, "deser_min_ns": 97620.0, "deser_max_ns": 106308.0, "deser_p5_ns": 98916.4, "deser_p25_ns": 100843.0, "deser_p50_ns": 101681.0, "deser_p75_ns": 103357.5, "deser_p95_ns": 104992.3, "deser_p99_ns": 106303.7, "deser_ci_low_ns": 101622.66264367815, "deser_ci_high_ns": 102408.13074712644, "total_mean_ns": 198054.0459770115, "total_median_ns": 197788.0, "total_std_ns": 3313.9856173918643, "total_mad_ns": 2493.0, "total_cv": 0.016732733739640567, "total_min_ns": 190922.0, "total_max_ns": 206685.0, "total_p5_ns": 193279.2, "total_p25_ns": 195427.5, "total_p50_ns": 197788.0, "total_p75_ns": 200362.5, "total_p95_ns": 202947.2, "total_p99_ns": 204542.74, "total_ci_low_ns": 197353.88908045978, "total_ci_high_ns": 198757.3301724138, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 67.66329388419747}, {"serializer": "mpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "c", "serializer_version": "1.1", "avg_time_ser_ns": 25976.725274725275, "avg_time_deser_ns": 65576.96703296703, "avg_time_total_ns": 91553.69230769231, "median_size_bytes": 20157.0, "avg_ops_per_sec": 10922.552382040634, "min_ops_per_sec": 10425.028408202412, "max_ops_per_sec": 11287.318697443423, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 25976.725274725275, "ser_median_ns": 25905.0, "ser_std_ns": 562.7363319024099, "ser_mad_ns": 372.0, "ser_cv": 0.021663097482496715, "ser_min_ns": 25056.0, "ser_max_ns": 27575.0, "ser_p5_ns": 25227.0, "ser_p25_ns": 25547.5, "ser_p50_ns": 25905.0, "ser_p75_ns": 26271.0, "ser_p95_ns": 27079.5, "ser_p99_ns": 27527.3, "ser_ci_low_ns": 25865.867032967035, "ser_ci_high_ns": 26094.67664835165, "deser_mean_ns": 65576.96703296703, "deser_median_ns": 65286.0, "deser_std_ns": 1237.9082487141088, "deser_mad_ns": 867.0, "deser_cv": 0.018877180582197162, "deser_min_ns": 63381.0, "deser_max_ns": 68739.0, "deser_p5_ns": 64042.5, "deser_p25_ns": 64580.5, "deser_p50_ns": 65286.0, "deser_p75_ns": 66470.0, "deser_p95_ns": 67802.0, "deser_p99_ns": 68650.8, "deser_ci_low_ns": 65327.57857142857, "deser_ci_high_ns": 65839.67637362638, "total_mean_ns": 91553.69230769231, "total_median_ns": 91303.0, "total_std_ns": 1641.929086926633, "total_mad_ns": 1216.0, "total_cv": 0.0179340564595523, "total_min_ns": 88595.0, "total_max_ns": 95923.0, "total_p5_ns": 89449.0, "total_p25_ns": 90206.0, "total_p50_ns": 91303.0, "total_p75_ns": 92653.0, "total_p95_ns": 94599.0, "total_p99_ns": 95866.3, "total_ci_low_ns": 91222.53763736265, "total_ci_high_ns": 91887.00164835165, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 45.85674292035208}, {"serializer": "custom-binary", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "v2-1.0", "avg_time_ser_ns": 11514.16304347826, "avg_time_deser_ns": 23536.010869565216, "avg_time_total_ns": 35050.17391304348, "median_size_bytes": 12357.0, "avg_ops_per_sec": 28530.52890638761, "min_ops_per_sec": 27688.559087385092, "max_ops_per_sec": 29319.494531914268, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 11514.16304347826, "ser_median_ns": 11537.0, "ser_std_ns": 283.74440120047035, "ser_mad_ns": 213.0, "ser_cv": 0.024643076542257763, "ser_min_ns": 10963.0, "ser_max_ns": 12199.0, "ser_p5_ns": 11077.5, "ser_p25_ns": 11304.25, "ser_p50_ns": 11537.0, "ser_p75_ns": 11695.0, "ser_p95_ns": 11959.15, "ser_p99_ns": 12199.0, "ser_ci_low_ns": 11456.428804347826, "ser_ci_high_ns": 11572.626630434783, "deser_mean_ns": 23536.010869565216, "deser_median_ns": 23484.5, "deser_std_ns": 293.4823691117668, "deser_mad_ns": 236.0, "deser_cv": 0.012469503465911184, "deser_min_ns": 23009.0, "deser_max_ns": 24420.0, "deser_p5_ns": 23167.5, "deser_p25_ns": 23275.25, "deser_p50_ns": 23484.5, "deser_p75_ns": 23739.25, "deser_p95_ns": 24009.45, "deser_p99_ns": 24320.81, "deser_ci_low_ns": 23475.36059782609, "deser_ci_high_ns": 23598.665489130435, "total_mean_ns": 35050.17391304348, "total_median_ns": 35074.0, "total_std_ns": 490.7004101269996, "total_mad_ns": 423.0, "total_cv": 0.013999942235504619, "total_min_ns": 34107.0, "total_max_ns": 36116.0, "total_p5_ns": 34378.65, "total_p25_ns": 34619.5, "total_p50_ns": 35074.0, "total_p75_ns": 35433.5, "total_p95_ns": 35873.7, "total_p99_ns": 36052.3, "total_ci_low_ns": 34950.76440217391, "total_ci_high_ns": 35149.02092391304, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "cbor-encode", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.11.0", "avg_time_ser_ns": 188957.5, "avg_time_deser_ns": 186976.03488372092, "avg_time_total_ns": 375933.5348837209, "median_size_bytes": 20157.0, "avg_ops_per_sec": 2660.044681327266, "min_ops_per_sec": 2550.3828124601505, "max_ops_per_sec": 2761.302009123342, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 188957.5, "ser_median_ns": 189027.0, "ser_std_ns": 3370.064219147236, "ser_mad_ns": 2541.0, "ser_cv": 0.017835038138984884, "ser_min_ns": 182924.0, "ser_max_ns": 197919.0, "ser_p5_ns": 184267.75, "ser_p25_ns": 186275.5, "ser_p50_ns": 189027.0, "ser_p75_ns": 190818.5, "ser_p95_ns": 195319.75, "ser_p99_ns": 197321.45, "ser_ci_low_ns": 188287.0031976744, "ser_ci_high_ns": 189657.17325581395, "deser_mean_ns": 186976.03488372092, "deser_median_ns": 186854.5, "deser_std_ns": 4014.2451123839246, "deser_mad_ns": 2798.0, "deser_cv": 0.021469302816697098, "deser_min_ns": 177975.0, "deser_max_ns": 195528.0, "deser_p5_ns": 181492.5, "deser_p25_ns": 183754.25, "deser_p50_ns": 186854.5, "deser_p75_ns": 189588.25, "deser_p95_ns": 194163.0, "deser_p99_ns": 195468.5, "deser_ci_low_ns": 186107.53226744186, "deser_ci_high_ns": 187825.10406976743, "total_mean_ns": 375933.5348837209, "total_median_ns": 376197.5, "total_std_ns": 6629.14583744112, "total_mad_ns": 5264.0, "total_cv": 0.017633824126628037, "total_min_ns": 362148.0, "total_max_ns": 392098.0, "total_p5_ns": 367148.5, "total_p25_ns": 370203.0, "total_p50_ns": 376197.5, "total_p75_ns": 380344.0, "total_p95_ns": 386642.5, "total_p99_ns": 390703.15, "total_ci_low_ns": 374482.43924418604, "total_ci_high_ns": 377348.7787790698, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 73.46284734598676}, {"serializer": "protobuf-c", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.5.0", "avg_time_ser_ns": 23445.724137931036, "avg_time_deser_ns": 27586.42528735632, "avg_time_total_ns": 51032.14942528736, "median_size_bytes": 12557.0, "avg_ops_per_sec": 19595.490514543795, "min_ops_per_sec": 18671.346950969044, "max_ops_per_sec": 20317.357118186068, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 23445.724137931036, "ser_median_ns": 23294.0, "ser_std_ns": 456.9248752474391, "ser_mad_ns": 288.0, "ser_cv": 0.019488622853333647, "ser_min_ns": 22331.0, "ser_max_ns": 24893.0, "ser_p5_ns": 22903.5, "ser_p25_ns": 23103.0, "ser_p50_ns": 23294.0, "ser_p75_ns": 23752.5, "ser_p95_ns": 24215.2, "ser_p99_ns": 24395.920000000002, "ser_ci_low_ns": 23357.998850574713, "ser_ci_high_ns": 23542.78620689655, "deser_mean_ns": 27586.42528735632, "deser_median_ns": 27447.0, "deser_std_ns": 429.25743433807816, "deser_mad_ns": 274.0, "deser_cv": 0.015560458807789772, "deser_min_ns": 26888.0, "deser_max_ns": 28830.0, "deser_p5_ns": 27082.8, "deser_p25_ns": 27275.5, "deser_p50_ns": 27447.0, "deser_p75_ns": 27876.5, "deser_p95_ns": 28285.1, "deser_p99_ns": 28817.96, "deser_ci_low_ns": 27500.55574712644, "deser_ci_high_ns": 27683.439942528734, "total_mean_ns": 51032.14942528736, "total_median_ns": 50806.0, "total_std_ns": 813.6221128562913, "total_mad_ns": 584.0, "total_cv": 0.015943324394898536, "total_min_ns": 49219.0, "total_max_ns": 53558.0, "total_p5_ns": 50088.9, "total_p25_ns": 50409.0, "total_p50_ns": 50806.0, "total_p75_ns": 51559.0, "total_p95_ns": 52308.5, "total_p99_ns": 53101.340000000004, "total_ci_low_ns": 50861.84281609195, "total_ci_high_ns": 51199.66925287356, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.84468615029031}, {"serializer": "parson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.5.3", "avg_time_ser_ns": 378448.58510638296, "avg_time_deser_ns": 264741.56382978725, "avg_time_total_ns": 643190.1489361703, "median_size_bytes": 25957.0, "avg_ops_per_sec": 1554.7501802600514, "min_ops_per_sec": 1497.091151891874, "max_ops_per_sec": 1593.2547964935648, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 378448.58510638296, "ser_median_ns": 377185.5, "ser_std_ns": 7144.312938529973, "ser_mad_ns": 5638.0, "ser_cv": 0.01887789575569872, "ser_min_ns": 368465.0, "ser_max_ns": 398723.0, "ser_p5_ns": 370125.75, "ser_p25_ns": 372623.75, "ser_p50_ns": 377185.5, "ser_p75_ns": 383484.25, "ser_p95_ns": 393371.0, "ser_p99_ns": 397564.22, "ser_ci_low_ns": 377042.03164893616, "ser_ci_high_ns": 379937.3989361702, "deser_mean_ns": 264741.56382978725, "deser_median_ns": 264344.5, "deser_std_ns": 4343.079927807317, "deser_mad_ns": 3520.5, "deser_cv": 0.016404979501441843, "deser_min_ns": 257404.0, "deser_max_ns": 276353.0, "deser_p5_ns": 258872.8, "deser_p25_ns": 261229.25, "deser_p50_ns": 264344.5, "deser_p75_ns": 268070.0, "deser_p95_ns": 272037.85, "deser_p99_ns": 272951.99, "deser_ci_low_ns": 263880.69946808513, "deser_ci_high_ns": 265648.95186170214, "total_mean_ns": 643190.1489361703, "total_median_ns": 642469.0, "total_std_ns": 9813.142149066962, "total_mad_ns": 8343.5, "total_cv": 0.015256984525179366, "total_min_ns": 627646.0, "total_max_ns": 667962.0, "total_p5_ns": 629932.25, "total_p25_ns": 634140.25, "total_p50_ns": 642469.0, "total_p75_ns": 650725.0, "total_p95_ns": 658973.65, "total_p99_ns": 666500.04, "total_ci_low_ns": 641296.4710106383, "total_ci_high_ns": 645142.3545212765, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 86.70736788446364}, {"serializer": "cJSON", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.7.18", "avg_time_ser_ns": 218217.38541666666, "avg_time_deser_ns": 204519.5625, "avg_time_total_ns": 422736.9479166667, "median_size_bytes": 25957.0, "avg_ops_per_sec": 2365.537256509521, "min_ops_per_sec": 2279.836216566202, "max_ops_per_sec": 2477.1851249987612, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 218217.38541666666, "ser_median_ns": 218263.5, "ser_std_ns": 4386.756510392308, "ser_mad_ns": 3294.0, "ser_cv": 0.020102690269229406, "ser_min_ns": 209211.0, "ser_max_ns": 230705.0, "ser_p5_ns": 212270.25, "ser_p25_ns": 214435.75, "ser_p50_ns": 218263.5, "ser_p75_ns": 220827.5, "ser_p95_ns": 225373.5, "ser_p99_ns": 229416.8, "ser_ci_low_ns": 217320.92526041667, "ser_ci_high_ns": 219053.12213541666, "deser_mean_ns": 204519.5625, "deser_median_ns": 204111.5, "deser_std_ns": 4242.128122367233, "deser_mad_ns": 3170.0, "deser_cv": 0.02074191862388339, "deser_min_ns": 194473.0, "deser_max_ns": 214606.0, "deser_p5_ns": 199147.25, "deser_p25_ns": 201257.25, "deser_p50_ns": 204111.5, "deser_p75_ns": 207431.0, "deser_p95_ns": 212121.25, "deser_p99_ns": 214522.4, "deser_ci_low_ns": 203673.52968749998, "deser_ci_high_ns": 205356.58177083335, "total_mean_ns": 422736.9479166667, "total_median_ns": 423611.5, "total_std_ns": 7254.422049408415, "total_mad_ns": 6112.5, "total_cv": 0.017160605632319758, "total_min_ns": 403684.0, "total_max_ns": 438628.0, "total_p5_ns": 412664.25, "total_p25_ns": 416195.75, "total_p50_ns": 423611.5, "total_p75_ns": 428243.75, "total_p95_ns": 432798.5, "total_p99_ns": 435004.7, "total_ci_low_ns": 421328.2481770833, "total_ci_high_ns": 424129.2322916666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 74.31322745730041}, {"serializer": "libbson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.27.5", "avg_time_ser_ns": 130576.35789473684, "avg_time_deser_ns": 151530.92631578946, "avg_time_total_ns": 282107.2842105263, "median_size_bytes": 29357.0, "avg_ops_per_sec": 3544.7507241739163, "min_ops_per_sec": 3379.120414955987, "max_ops_per_sec": 3692.5440151246603, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 130576.35789473684, "ser_median_ns": 130520.0, "ser_std_ns": 2607.553870909985, "ser_mad_ns": 2285.0, "ser_cv": 0.019969571160899167, "ser_min_ns": 126243.0, "ser_max_ns": 136960.0, "ser_p5_ns": 127021.0, "ser_p25_ns": 127984.0, "ser_p50_ns": 130520.0, "ser_p75_ns": 132334.0, "ser_p95_ns": 135022.0, "ser_p99_ns": 136357.46, "ser_ci_low_ns": 130078.62736842106, "ser_ci_high_ns": 131101.87763157894, "deser_mean_ns": 151530.92631578946, "deser_median_ns": 150853.0, "deser_std_ns": 5046.717010059041, "deser_mad_ns": 3656.0, "deser_cv": 0.033304864774215896, "deser_min_ns": 143772.0, "deser_max_ns": 164943.0, "deser_p5_ns": 144435.7, "deser_p25_ns": 148274.5, "deser_p50_ns": 150853.0, "deser_p75_ns": 154780.5, "deser_p95_ns": 160009.1, "deser_p99_ns": 162274.34, "deser_ci_low_ns": 150582.9044736842, "deser_ci_high_ns": 152527.04605263157, "total_mean_ns": 282107.2842105263, "total_median_ns": 281550.0, "total_std_ns": 6430.635747769634, "total_mad_ns": 4742.0, "total_cv": 0.02279500072380508, "total_min_ns": 270816.0, "total_max_ns": 295935.0, "total_p5_ns": 271843.1, "total_p25_ns": 277238.5, "total_p50_ns": 281550.0, "total_p75_ns": 286614.0, "total_p95_ns": 293207.8, "total_p99_ns": 295313.66, "total_ci_low_ns": 280855.95263157896, "total_ci_high_ns": 283358.07763157896, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 53.52764849658289}, {"serializer": "ubj", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.0-min", "avg_time_ser_ns": 14004.988636363636, "avg_time_deser_ns": 24723.670454545456, "avg_time_total_ns": 38728.65909090909, "median_size_bytes": 16057.0, "avg_ops_per_sec": 25820.67191256651, "min_ops_per_sec": 24863.25211337643, "max_ops_per_sec": 26620.52442433116, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 14004.988636363636, "ser_median_ns": 14008.0, "ser_std_ns": 408.6666711945636, "ser_mad_ns": 320.5, "ser_cv": 0.02918007874233256, "ser_min_ns": 13107.0, "ser_max_ns": 14814.0, "ser_p5_ns": 13344.25, "ser_p25_ns": 13690.25, "ser_p50_ns": 14008.0, "ser_p75_ns": 14330.25, "ser_p95_ns": 14649.35, "ser_p99_ns": 14810.52, "ser_ci_low_ns": 13923.713920454546, "ser_ci_high_ns": 14090.051704545454, "deser_mean_ns": 24723.670454545456, "deser_median_ns": 24767.5, "deser_std_ns": 381.3496215150555, "deser_mad_ns": 313.0, "deser_cv": 0.015424474380378429, "deser_min_ns": 24173.0, "deser_max_ns": 25887.0, "deser_p5_ns": 24216.45, "deser_p25_ns": 24397.75, "deser_p50_ns": 24767.5, "deser_p75_ns": 25000.75, "deser_p95_ns": 25342.55, "deser_p99_ns": 25612.079999999998, "deser_ci_low_ns": 24643.96931818182, "deser_ci_high_ns": 24801.687215909093, "total_mean_ns": 38728.65909090909, "total_median_ns": 38746.0, "total_std_ns": 700.1598485200532, "total_mad_ns": 551.5, "total_cv": 0.01807859773498856, "total_min_ns": 37565.0, "total_max_ns": 40220.0, "total_p5_ns": 37740.7, "total_p25_ns": 38087.0, "total_p50_ns": 38746.0, "total_p75_ns": 39203.0, "total_p95_ns": 39918.35, "total_p99_ns": 40100.81, "total_ci_low_ns": 38581.58920454545, "total_ci_high_ns": 38872.171875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.082152127106836}, {"serializer": "yyjson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.10.0", "avg_time_ser_ns": 97335.84042553192, "avg_time_deser_ns": 103545.17021276595, "avg_time_total_ns": 200881.01063829788, "median_size_bytes": 25957.0, "avg_ops_per_sec": 4978.071330995935, "min_ops_per_sec": 4786.8877570558725, "max_ops_per_sec": 5160.3314996955405, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 97335.84042553192, "ser_median_ns": 97161.5, "ser_std_ns": 1890.6747404728776, "ser_mad_ns": 1423.5, "ser_cv": 0.01942424015868403, "ser_min_ns": 94004.0, "ser_max_ns": 101802.0, "ser_p5_ns": 94676.65, "ser_p25_ns": 95787.75, "ser_p50_ns": 97161.5, "ser_p75_ns": 98795.5, "ser_p95_ns": 100823.4, "ser_p99_ns": 101387.22, "ser_ci_low_ns": 96976.71675531914, "ser_ci_high_ns": 97693.15319148936, "deser_mean_ns": 103545.17021276595, "deser_median_ns": 103311.5, "deser_std_ns": 2278.4942756707705, "deser_mad_ns": 1452.0, "deser_cv": 0.022004833938549632, "deser_min_ns": 98839.0, "deser_max_ns": 109672.0, "deser_p5_ns": 100518.05, "deser_p25_ns": 101891.75, "deser_p50_ns": 103311.5, "deser_p75_ns": 104768.75, "deser_p95_ns": 107892.65, "deser_p99_ns": 108804.31, "deser_ci_low_ns": 103098.70531914894, "deser_ci_high_ns": 104021.49654255318, "total_mean_ns": 200881.01063829788, "total_median_ns": 200938.0, "total_std_ns": 3498.6887051864996, "total_mad_ns": 2645.5, "total_cv": 0.0174167219393682, "total_min_ns": 193786.0, "total_max_ns": 208904.0, "total_p5_ns": 195444.15, "total_p25_ns": 198243.5, "total_p50_ns": 200938.0, "total_p75_ns": 203514.0, "total_p95_ns": 206757.4, "total_p99_ns": 208620.35, "total_ci_low_ns": 200196.64015957445, "total_ci_high_ns": 201578.46781914894, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 65.76749203190383}, {"serializer": "jansson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "2.14", "avg_time_ser_ns": 343009.7916666667, "avg_time_deser_ns": 434012.8229166667, "avg_time_total_ns": 777022.6145833334, "median_size_bytes": 25957.0, "avg_ops_per_sec": 1286.9638299217777, "min_ops_per_sec": 1242.0894428607803, "max_ops_per_sec": 1318.259475649111, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 343009.7916666667, "ser_median_ns": 342259.0, "ser_std_ns": 6249.944258979505, "ser_mad_ns": 4116.0, "ser_cv": 0.018220891679538803, "ser_min_ns": 332123.0, "ser_max_ns": 357763.0, "ser_p5_ns": 334351.5, "ser_p25_ns": 338770.75, "ser_p50_ns": 342259.0, "ser_p75_ns": 346947.25, "ser_p95_ns": 353585.0, "ser_p99_ns": 356938.4, "ser_ci_low_ns": 341739.08307291666, "ser_ci_high_ns": 344269.72369791666, "deser_mean_ns": 434012.8229166667, "deser_median_ns": 432768.5, "deser_std_ns": 7438.49834448748, "deser_mad_ns": 5428.5, "deser_cv": 0.017138890723317916, "deser_min_ns": 424197.0, "deser_max_ns": 452358.0, "deser_p5_ns": 424970.5, "deser_p25_ns": 427395.25, "deser_p50_ns": 432768.5, "deser_p75_ns": 438503.75, "deser_p95_ns": 449196.25, "deser_p99_ns": 451883.0, "deser_ci_low_ns": 432472.77838541666, "deser_ci_high_ns": 435524.08307291666, "total_mean_ns": 777022.6145833334, "total_median_ns": 777969.5, "total_std_ns": 10534.939458642311, "total_mad_ns": 8002.5, "total_cv": 0.013558086033688367, "total_min_ns": 758576.0, "total_max_ns": 805095.0, "total_p5_ns": 761139.75, "total_p25_ns": 768042.75, "total_p50_ns": 777969.5, "total_p75_ns": 784190.0, "total_p95_ns": 794834.0, "total_p99_ns": 800893.15, "total_ci_low_ns": 774962.8916666667, "total_ci_high_ns": 779119.7934895833, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 98.0488489008979}, {"serializer": "msgpack-c", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "6.0.1", "avg_time_ser_ns": 36886.75555555556, "avg_time_deser_ns": 61202.65555555555, "avg_time_total_ns": 98089.41111111111, "median_size_bytes": 20157.0, "avg_ops_per_sec": 10194.780340430902, "min_ops_per_sec": 9687.20030224065, "max_ops_per_sec": 10514.804845222072, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 36886.75555555556, "ser_median_ns": 36892.5, "ser_std_ns": 801.0597238337253, "ser_mad_ns": 563.0, "ser_cv": 0.021716730348572952, "ser_min_ns": 35061.0, "ser_max_ns": 39005.0, "ser_p5_ns": 35685.3, "ser_p25_ns": 36357.75, "ser_p50_ns": 36892.5, "ser_p75_ns": 37465.25, "ser_p95_ns": 38261.35, "ser_p99_ns": 38593.82, "ser_ci_low_ns": 36720.806388888894, "ser_ci_high_ns": 37055.49083333334, "deser_mean_ns": 61202.65555555555, "deser_median_ns": 60969.5, "deser_std_ns": 1067.8225998470298, "deser_mad_ns": 743.0, "deser_cv": 0.01744732463247014, "deser_min_ns": 59385.0, "deser_max_ns": 64224.0, "deser_p5_ns": 59951.25, "deser_p25_ns": 60318.5, "deser_p50_ns": 60969.5, "deser_p75_ns": 61812.75, "deser_p95_ns": 63218.049999999996, "deser_p99_ns": 64202.64, "deser_ci_low_ns": 60997.05333333333, "deser_ci_high_ns": 61438.264444444445, "total_mean_ns": 98089.41111111111, "total_median_ns": 97935.0, "total_std_ns": 1618.9156163645046, "total_mad_ns": 1186.5, "total_cv": 0.016504489098529425, "total_min_ns": 95104.0, "total_max_ns": 103229.0, "total_p5_ns": 96034.1, "total_p25_ns": 96906.0, "total_p50_ns": 97935.0, "total_p75_ns": 99121.75, "total_p95_ns": 100833.05, "total_p99_ns": 102093.36, "total_ci_low_ns": 97762.76972222222, "total_ci_high_ns": 98410.815, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 52.72492859633729}, {"serializer": "nanopb", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.4.9", "avg_time_ser_ns": 23243.341463414636, "avg_time_deser_ns": 27825.98780487805, "avg_time_total_ns": 51069.329268292684, "median_size_bytes": 12557.0, "avg_ops_per_sec": 19581.224471277088, "min_ops_per_sec": 18771.23495954799, "max_ops_per_sec": 20207.735521157498, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 23243.341463414636, "ser_median_ns": 23276.0, "ser_std_ns": 432.2255989445988, "ser_mad_ns": 267.0, "ser_cv": 0.018595673932034613, "ser_min_ns": 22218.0, "ser_max_ns": 24382.0, "ser_p5_ns": 22641.15, "ser_p25_ns": 22943.5, "ser_p50_ns": 23276.0, "ser_p75_ns": 23497.0, "ser_p95_ns": 23937.1, "ser_p99_ns": 24317.2, "ser_ci_low_ns": 23153.93048780488, "ser_ci_high_ns": 23335.311890243902, "deser_mean_ns": 27825.98780487805, "deser_median_ns": 27804.5, "deser_std_ns": 417.636988508478, "deser_mad_ns": 336.0, "deser_cv": 0.015008882755107941, "deser_min_ns": 27164.0, "deser_max_ns": 29202.0, "deser_p5_ns": 27297.4, "deser_p25_ns": 27468.25, "deser_p50_ns": 27804.5, "deser_p75_ns": 28097.25, "deser_p95_ns": 28447.7, "deser_p99_ns": 29014.89, "deser_ci_low_ns": 27735.677743902437, "deser_ci_high_ns": 27917.465853658534, "total_mean_ns": 51069.329268292684, "total_median_ns": 51041.0, "total_std_ns": 766.9063241341728, "total_mad_ns": 574.5, "total_cv": 0.015016964881313224, "total_min_ns": 49486.0, "total_max_ns": 53273.0, "total_p5_ns": 50030.05, "total_p25_ns": 50490.0, "total_p50_ns": 51041.0, "total_p75_ns": 51617.75, "total_p95_ns": 52287.0, "total_p99_ns": 52607.18, "total_ci_low_ns": 50905.225, "total_ci_high_ns": 51233.391768292684, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.08131681255314}, {"serializer": "flatcc", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.6.1", "avg_time_ser_ns": 24555.79761904762, "avg_time_deser_ns": 23608.60714285714, "avg_time_total_ns": 48164.40476190476, "median_size_bytes": 15292.0, "avg_ops_per_sec": 20762.220667801997, "min_ops_per_sec": 19989.20582885242, "max_ops_per_sec": 21856.490284790067, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 24555.79761904762, "ser_median_ns": 24384.0, "ser_std_ns": 777.9756210719039, "ser_mad_ns": 527.5, "ser_cv": 0.031681952797511174, "ser_min_ns": 22560.0, "ser_max_ns": 26593.0, "ser_p5_ns": 23526.5, "ser_p25_ns": 24056.75, "ser_p50_ns": 24384.0, "ser_p75_ns": 24989.5, "ser_p95_ns": 25851.05, "ser_p99_ns": 26271.79, "ser_ci_low_ns": 24396.60505952381, "ser_ci_high_ns": 24731.441964285714, "deser_mean_ns": 23608.60714285714, "deser_median_ns": 23476.0, "deser_std_ns": 321.7745232360489, "deser_mad_ns": 246.0, "deser_cv": 0.013629542873451675, "deser_min_ns": 23180.0, "deser_max_ns": 24449.0, "deser_p5_ns": 23218.15, "deser_p25_ns": 23343.25, "deser_p50_ns": 23476.0, "deser_p75_ns": 23886.75, "deser_p95_ns": 24102.65, "deser_p99_ns": 24306.24, "deser_ci_low_ns": 23542.912500000002, "deser_ci_high_ns": 23672.5375, "total_mean_ns": 48164.40476190476, "total_median_ns": 48185.5, "total_std_ns": 927.8931196117546, "total_mad_ns": 732.0, "total_cv": 0.01926512170551444, "total_min_ns": 45753.0, "total_max_ns": 50027.0, "total_p5_ns": 46913.95, "total_p25_ns": 47440.5, "total_p50_ns": 48185.5, "total_p75_ns": 48871.75, "total_p95_ns": 49719.049999999996, "total_p99_ns": 49960.6, "total_ci_low_ns": 47967.31101190476, "total_ci_high_ns": 48361.66458333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.824900563035044}, {"serializer": "zcbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.9", "avg_time_ser_ns": 59220.45054945055, "avg_time_deser_ns": 241080.62637362638, "avg_time_total_ns": 300301.07692307694, "median_size_bytes": 20757.0, "avg_ops_per_sec": 3329.991388129964, "min_ops_per_sec": 3151.0552884160907, "max_ops_per_sec": 3475.1664604734565, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 59220.45054945055, "ser_median_ns": 58944.0, "ser_std_ns": 1382.6346047691886, "ser_mad_ns": 927.0, "ser_cv": 0.023347248998294167, "ser_min_ns": 56723.0, "ser_max_ns": 63259.0, "ser_p5_ns": 57576.0, "ser_p25_ns": 58080.5, "ser_p50_ns": 58944.0, "ser_p75_ns": 60052.5, "ser_p95_ns": 61489.5, "ser_p99_ns": 63160.0, "ser_ci_low_ns": 58950.03104395604, "ser_ci_high_ns": 59525.614285714284, "deser_mean_ns": 241080.62637362638, "deser_median_ns": 240702.0, "deser_std_ns": 5764.933600173364, "deser_mad_ns": 4206.0, "deser_cv": 0.023912886269172366, "deser_min_ns": 229957.0, "deser_max_ns": 257318.0, "deser_p5_ns": 232735.0, "deser_p25_ns": 236515.0, "deser_p50_ns": 240702.0, "deser_p75_ns": 244831.5, "deser_p95_ns": 250923.5, "deser_p99_ns": 252565.09999999998, "deser_ci_low_ns": 239958.7296703297, "deser_ci_high_ns": 242243.80604395602, "total_mean_ns": 300301.07692307694, "total_median_ns": 299850.0, "total_std_ns": 6460.375763462076, "total_mad_ns": 4335.0, "total_cv": 0.021512995656412254, "total_min_ns": 287756.0, "total_max_ns": 317354.0, "total_p5_ns": 290780.5, "total_p25_ns": 295702.5, "total_p50_ns": 299850.0, "total_p75_ns": 305089.5, "total_p95_ns": 311213.0, "total_p99_ns": 315133.7, "total_ci_low_ns": 299058.9851648352, "total_ci_high_ns": 301674.9260989011, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 57.816036187498156}, {"serializer": "avro-c", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.11.3", "avg_time_ser_ns": 23809.024390243903, "avg_time_deser_ns": 36280.79268292683, "avg_time_total_ns": 60089.81707317073, "median_size_bytes": 12657.0, "avg_ops_per_sec": 16641.75477156655, "min_ops_per_sec": 16041.837111185972, "max_ops_per_sec": 17067.759003242874, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 23809.024390243903, "ser_median_ns": 23730.5, "ser_std_ns": 483.7222949761888, "ser_mad_ns": 280.5, "ser_cv": 0.02031676254548259, "ser_min_ns": 22984.0, "ser_max_ns": 25147.0, "ser_p5_ns": 23075.8, "ser_p25_ns": 23483.5, "ser_p50_ns": 23730.5, "ser_p75_ns": 24054.5, "ser_p95_ns": 24688.25, "ser_p99_ns": 25099.21, "ser_ci_low_ns": 23702.884146341465, "ser_ci_high_ns": 23911.614329268294, "deser_mean_ns": 36280.79268292683, "deser_median_ns": 36009.0, "deser_std_ns": 737.8234212421382, "deser_mad_ns": 468.0, "deser_cv": 0.020336474665542417, "deser_min_ns": 35257.0, "deser_max_ns": 38578.0, "deser_p5_ns": 35449.05, "deser_p25_ns": 35726.75, "deser_p50_ns": 36009.0, "deser_p75_ns": 36654.5, "deser_p95_ns": 37952.4, "deser_p99_ns": 38412.76, "deser_ci_low_ns": 36124.17286585366, "deser_ci_high_ns": 36443.97103658536, "total_mean_ns": 60089.81707317073, "total_median_ns": 59864.5, "total_std_ns": 1007.4630909888997, "total_mad_ns": 764.0, "total_cv": 0.016765953701641703, "total_min_ns": 58590.0, "total_max_ns": 62337.0, "total_p5_ns": 58809.7, "total_p25_ns": 59203.75, "total_p50_ns": 59864.5, "total_p75_ns": 60960.0, "total_p95_ns": 61753.65, "total_p99_ns": 62257.62, "total_ci_low_ns": 59870.74908536585, "total_ci_high_ns": 60296.708231707315, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 32.04158015435541}, {"serializer": "protobuf-wire", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "wire-v2", "avg_time_ser_ns": 23353.44705882353, "avg_time_deser_ns": 28113.482352941177, "avg_time_total_ns": 51466.92941176471, "median_size_bytes": 12557.0, "avg_ops_per_sec": 19429.952620632004, "min_ops_per_sec": 18568.722843242842, "max_ops_per_sec": 20096.059162798174, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 23353.44705882353, "ser_median_ns": 23304.0, "ser_std_ns": 454.4990833948102, "ser_mad_ns": 301.0, "ser_cv": 0.019461755784916934, "ser_min_ns": 22473.0, "ser_max_ns": 24695.0, "ser_p5_ns": 22728.6, "ser_p25_ns": 23013.0, "ser_p50_ns": 23304.0, "ser_p75_ns": 23605.0, "ser_p95_ns": 24247.0, "ser_p99_ns": 24570.68, "ser_ci_low_ns": 23259.32029411765, "ser_ci_high_ns": 23457.439705882352, "deser_mean_ns": 28113.482352941177, "deser_median_ns": 28119.0, "deser_std_ns": 462.49804663074514, "deser_mad_ns": 317.0, "deser_cv": 0.016451111990484504, "deser_min_ns": 27225.0, "deser_max_ns": 29546.0, "deser_p5_ns": 27359.0, "deser_p25_ns": 27781.0, "deser_p50_ns": 28119.0, "deser_p75_ns": 28416.0, "deser_p95_ns": 28803.4, "deser_p99_ns": 29144.48, "deser_ci_low_ns": 28019.079705882352, "deser_ci_high_ns": 28216.597647058825, "total_mean_ns": 51466.92941176471, "total_median_ns": 51398.0, "total_std_ns": 848.602489646462, "total_mad_ns": 552.0, "total_cv": 0.016488306167581117, "total_min_ns": 49761.0, "total_max_ns": 53854.0, "total_p5_ns": 50188.2, "total_p25_ns": 50859.0, "total_p50_ns": 51398.0, "total_p75_ns": 52026.0, "total_p95_ns": 52984.2, "total_p99_ns": 53617.96, "total_ci_low_ns": 51279.03764705882, "total_ci_high_ns": 51652.20176470588, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.82149408828581}, {"serializer": "json-c", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.15", "avg_time_ser_ns": 233764.37894736842, "avg_time_deser_ns": 357036.18947368424, "avg_time_total_ns": 590800.5684210527, "median_size_bytes": 25957.0, "avg_ops_per_sec": 1692.6185475287466, "min_ops_per_sec": 1624.6003483143147, "max_ops_per_sec": 1758.9406955555087, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 233764.37894736842, "ser_median_ns": 233241.0, "ser_std_ns": 4181.854177934653, "ser_mad_ns": 2961.0, "ser_cv": 0.01788918481406523, "ser_min_ns": 224146.0, "ser_max_ns": 245838.0, "ser_p5_ns": 228394.3, "ser_p25_ns": 230657.5, "ser_p50_ns": 233241.0, "ser_p75_ns": 236861.5, "ser_p95_ns": 240776.4, "ser_p99_ns": 244014.4, "ser_ci_low_ns": 233006.57157894736, "ser_ci_high_ns": 234571.96815789473, "deser_mean_ns": 357036.18947368424, "deser_median_ns": 356551.0, "deser_std_ns": 6363.99028325939, "deser_mad_ns": 3942.0, "deser_cv": 0.017824496426092556, "deser_min_ns": 342933.0, "deser_max_ns": 374279.0, "deser_p5_ns": 347406.1, "deser_p25_ns": 352504.5, "deser_p50_ns": 356551.0, "deser_p75_ns": 360369.5, "deser_p95_ns": 368113.9, "deser_p99_ns": 370923.2, "deser_ci_low_ns": 355794.1268421053, "deser_ci_high_ns": 358326.0542105263, "total_mean_ns": 590800.5684210527, "total_median_ns": 590519.0, "total_std_ns": 8741.528769423101, "total_mad_ns": 6424.0, "total_cv": 0.01479607372888168, "total_min_ns": 568524.0, "total_max_ns": 615536.0, "total_p5_ns": 579055.1, "total_p25_ns": 584376.5, "total_p50_ns": 590519.0, "total_p75_ns": 597066.5, "total_p95_ns": 606319.2, "total_p99_ns": 609031.2000000001, "total_ci_low_ns": 589099.4178947369, "total_ci_high_ns": 592666.0621052632, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 88.6923784671523}, {"serializer": "tinycbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "0.6.0", "avg_time_ser_ns": 35741.307692307695, "avg_time_deser_ns": 187423.3956043956, "avg_time_total_ns": 223164.7032967033, "median_size_bytes": 20157.0, "avg_ops_per_sec": 4480.9953600524095, "min_ops_per_sec": 4258.163964861631, "max_ops_per_sec": 4664.396660291991, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 35741.307692307695, "ser_median_ns": 35692.0, "ser_std_ns": 995.1772113806073, "ser_mad_ns": 702.0, "ser_cv": 0.0278438947994841, "ser_min_ns": 33681.0, "ser_max_ns": 38521.0, "ser_p5_ns": 34341.0, "ser_p25_ns": 34988.0, "ser_p50_ns": 35692.0, "ser_p75_ns": 36339.0, "ser_p95_ns": 37301.0, "ser_p99_ns": 38462.5, "ser_ci_low_ns": 35539.39587912088, "ser_ci_high_ns": 35949.679945054944, "deser_mean_ns": 187423.3956043956, "deser_median_ns": 186925.0, "deser_std_ns": 3988.334015542833, "deser_mad_ns": 2867.0, "deser_cv": 0.02127980875963436, "deser_min_ns": 179292.0, "deser_max_ns": 197142.0, "deser_p5_ns": 181279.0, "deser_p25_ns": 184423.0, "deser_p50_ns": 186925.0, "deser_p75_ns": 190157.0, "deser_p95_ns": 194448.5, "deser_p99_ns": 196464.3, "deser_ci_low_ns": 186603.4271978022, "deser_ci_high_ns": 188214.76071428572, "total_mean_ns": 223164.7032967033, "total_median_ns": 222530.0, "total_std_ns": 4245.343714640012, "total_mad_ns": 3086.0, "total_cv": 0.019023365487129552, "total_min_ns": 214390.0, "total_max_ns": 234843.0, "total_p5_ns": 217278.0, "total_p25_ns": 219973.5, "total_p50_ns": 222530.0, "total_p75_ns": 226313.5, "total_p95_ns": 230634.0, "total_p99_ns": 232412.09999999998, "total_ci_low_ns": 222328.21950549452, "total_ci_high_ns": 224032.04395604396, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 62.15957327306235}, {"serializer": "mpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.1", "avg_time_ser_ns": 26817.662921348314, "avg_time_deser_ns": 66470.30337078651, "avg_time_total_ns": 93287.96629213484, "median_size_bytes": 20157.0, "avg_ops_per_sec": 10719.496198131941, "min_ops_per_sec": 10218.157666172789, "max_ops_per_sec": 11066.231394898467, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 26817.662921348314, "ser_median_ns": 26653.0, "ser_std_ns": 699.7151359306583, "ser_mad_ns": 444.0, "ser_cv": 0.026091577703202733, "ser_min_ns": 25814.0, "ser_max_ns": 28585.0, "ser_p5_ns": 26044.8, "ser_p25_ns": 26309.0, "ser_p50_ns": 26653.0, "ser_p75_ns": 27147.0, "ser_p95_ns": 28352.4, "ser_p99_ns": 28522.52, "ser_ci_low_ns": 26670.502528089888, "ser_ci_high_ns": 26960.709831460674, "deser_mean_ns": 66470.30337078651, "deser_median_ns": 66486.0, "deser_std_ns": 1335.0091283693223, "deser_mad_ns": 1035.0, "deser_cv": 0.020084294198603803, "deser_min_ns": 64385.0, "deser_max_ns": 69515.0, "deser_p5_ns": 64777.2, "deser_p25_ns": 65416.0, "deser_p50_ns": 66486.0, "deser_p75_ns": 67177.0, "deser_p95_ns": 69049.8, "deser_p99_ns": 69499.16, "deser_ci_low_ns": 66195.57078651687, "deser_ci_high_ns": 66750.82162921347, "total_mean_ns": 93287.96629213484, "total_median_ns": 93279.0, "total_std_ns": 1767.0206335256569, "total_mad_ns": 1412.0, "total_cv": 0.018941570963098973, "total_min_ns": 90365.0, "total_max_ns": 97865.0, "total_p5_ns": 90906.0, "total_p25_ns": 91863.0, "total_p50_ns": 93279.0, "total_p75_ns": 94532.0, "total_p95_ns": 96500.8, "total_p99_ns": 97135.48000000001, "total_ci_low_ns": 92933.84803370787, "total_ci_high_ns": 93669.02780898877, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 45.04656026463204}, {"serializer": "qcbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "c", "serializer_version": "1.5.1", "avg_time_ser_ns": 98239.57777777778, "avg_time_deser_ns": 186224.13333333333, "avg_time_total_ns": 284463.7111111111, "median_size_bytes": 20157.0, "avg_ops_per_sec": 3515.3868874662944, "min_ops_per_sec": 3354.8603539377673, "max_ops_per_sec": 3635.002162826287, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 98239.57777777778, "ser_median_ns": 97954.5, "ser_std_ns": 2054.3491545837155, "ser_mad_ns": 1332.5, "ser_cv": 0.02091162442931853, "ser_min_ns": 93971.0, "ser_max_ns": 103708.0, "ser_p5_ns": 95636.1, "ser_p25_ns": 96770.75, "ser_p50_ns": 97954.5, "ser_p75_ns": 99720.25, "ser_p95_ns": 101878.1, "ser_p99_ns": 103284.36, "ser_ci_low_ns": 97821.7925, "ser_ci_high_ns": 98679.6075, "deser_mean_ns": 186224.13333333333, "deser_median_ns": 185902.5, "deser_std_ns": 4374.692873200524, "deser_mad_ns": 3528.0, "deser_cv": 0.02349154642255743, "deser_min_ns": 178679.0, "deser_max_ns": 200138.0, "deser_p5_ns": 180422.75, "deser_p25_ns": 182868.5, "deser_p50_ns": 185902.5, "deser_p75_ns": 189900.5, "deser_p95_ns": 192967.5, "deser_p99_ns": 196356.38999999998, "deser_ci_low_ns": 185264.7861111111, "deser_ci_high_ns": 187127.49055555556, "total_mean_ns": 284463.7111111111, "total_median_ns": 284680.0, "total_std_ns": 5324.1669501771175, "total_mad_ns": 3765.0, "total_cv": 0.01871650668333405, "total_min_ns": 275103.0, "total_max_ns": 298075.0, "total_p5_ns": 276366.85, "total_p25_ns": 279951.25, "total_p50_ns": 284680.0, "total_p75_ns": 288217.5, "total_p95_ns": 293422.75, "total_p99_ns": 294335.22, "total_ci_low_ns": 283368.2911111111, "total_ci_high_ns": 285534.78055555554, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "custom-binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 66.05655318898518}], "pareto_front": [{"serializer": "custom-binary", "test_data": "message", "mode": "bytes", "time": 112.90816326530613, "size": 55.0}, {"serializer": "nanopb", "test_data": "message", "mode": "bytes", "time": 197.25274725274724, "size": 51.0}, {"serializer": "nanopb", "test_data": "message", "mode": "stream", "time": 605.9462365591398, "size": 51.0}, {"serializer": "custom-binary", "test_data": "message", "mode": "stream", "time": 522.2272727272727, "size": 55.0}, {"serializer": "nanopb", "test_data": "document", "mode": "bytes", "time": 745.6888888888889, "size": 154.0}, {"serializer": "custom-binary", "test_data": "document", "mode": "bytes", "time": 264.5164835164835, "size": 196.0}, {"serializer": "nanopb", "test_data": "document", "mode": "stream", "time": 1247.6986301369864, "size": 154.0}, {"serializer": "custom-binary", "test_data": "document", "mode": "stream", "time": 732.7837837837837, "size": 196.0}, {"serializer": "custom-binary", "test_data": "telemetry", "mode": "bytes", "time": 195.35106382978722, "size": 304.0}, {"serializer": "custom-binary", "test_data": "telemetry", "mode": "stream", "time": 662.4868421052631, "size": 304.0}, {"serializer": "custom-binary", "test_data": "strings", "mode": "bytes", "time": 335.34065934065933, "size": 343.0}, {"serializer": "msgpack-c", "test_data": "strings", "mode": "bytes", "time": 1618.080808080808, "size": 316.0}, {"serializer": "tinycbor", "test_data": "strings", "mode": "bytes", "time": 10467.19387755102, "size": 315.0}, {"serializer": "protobuf-wire", "test_data": "strings", "mode": "bytes", "time": 563.7368421052631, "size": 338.0}, {"serializer": "protobuf-wire", "test_data": "strings", "mode": "stream", "time": 1064.1184210526317, "size": 338.0}, {"serializer": "custom-binary", "test_data": "strings", "mode": "stream", "time": 839.04, "size": 343.0}, {"serializer": "mpack", "test_data": "strings", "mode": "stream", "time": 1756.26582278481, "size": 316.0}, {"serializer": "tinycbor", "test_data": "strings", "mode": "stream", "time": 11281.521739130434, "size": 315.0}, {"serializer": "custom-binary", "test_data": "event", "mode": "bytes", "time": 324.55434782608694, "size": 118.0}, {"serializer": "custom-binary", "test_data": "event", "mode": "stream", "time": 768.1066666666667, "size": 118.0}]} \ No newline at end of file diff --git a/dashboard/public/data/stats_c_latest.json.gz b/dashboard/public/data/stats_c_latest.json.gz new file mode 100644 index 00000000..a4b26824 Binary files /dev/null and b/dashboard/public/data/stats_c_latest.json.gz differ diff --git a/dashboard/public/data/stats_cpp_latest.json b/dashboard/public/data/stats_cpp_latest.json deleted file mode 100644 index 236f2878..00000000 --- a/dashboard/public/data/stats_cpp_latest.json +++ /dev/null @@ -1 +0,0 @@ -{"schema_version": "2.0", "generated": "2026-07-24T20:24:16.093527", "language": "cpp", "questions": {"Q1": "How fast?", "Q2": "How compact?", "Q3": "How stable?", "Q4": "Under which workloads does it win?"}, "groups": [{"serializer": "nlohmann_ubjson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 634.5483870967741, "avg_time_deser_ns": 2461.7849462365593, "avg_time_total_ns": 3096.3333333333335, "median_size_bytes": 137.0, "avg_ops_per_sec": 322962.6439875121, "min_ops_per_sec": 277161.8625277162, "max_ops_per_sec": 394788.7879984208, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 634.5483870967741, "ser_median_ns": 636.0, "ser_std_ns": 55.59529932604802, "ser_mad_ns": 35.0, "ser_cv": 0.08761396365754098, "ser_min_ns": 516.0, "ser_max_ns": 753.0, "ser_p5_ns": 542.0, "ser_p25_ns": 601.0, "ser_p50_ns": 636.0, "ser_p75_ns": 668.0, "ser_p95_ns": 733.8, "ser_p99_ns": 753.0, "ser_ci_low_ns": 623.3438172043011, "ser_ci_high_ns": 645.4631720430108, "deser_mean_ns": 2461.7849462365593, "deser_median_ns": 2465.0, "deser_std_ns": 196.16246868029336, "deser_mad_ns": 137.0, "deser_cv": 0.07968302388889642, "deser_min_ns": 1984.0, "deser_max_ns": 2855.0, "deser_p5_ns": 2110.0, "deser_p25_ns": 2334.0, "deser_p50_ns": 2465.0, "deser_p75_ns": 2602.0, "deser_p95_ns": 2800.4, "deser_p99_ns": 2830.16, "deser_ci_low_ns": 2419.9637096774195, "deser_ci_high_ns": 2501.6677419354837, "total_mean_ns": 3096.3333333333335, "total_median_ns": 3104.0, "total_std_ns": 231.06075491906478, "total_mad_ns": 160.0, "total_cv": 0.0746239923304117, "total_min_ns": 2533.0, "total_max_ns": 3608.0, "total_p5_ns": 2696.0, "total_p25_ns": 2942.0, "total_p50_ns": 3104.0, "total_p75_ns": 3261.0, "total_p95_ns": 3461.7999999999997, "total_p99_ns": 3571.2, "total_ci_low_ns": 3049.6217741935484, "total_ci_high_ns": 3142.5422043010753, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.00357622201689}, {"serializer": "rapidjson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "1.1.0", "avg_time_ser_ns": 604.0309278350516, "avg_time_deser_ns": 4128.340206185567, "avg_time_total_ns": 4732.371134020618, "median_size_bytes": 168.0, "avg_ops_per_sec": 211310.5611711398, "min_ops_per_sec": 176834.6595932803, "max_ops_per_sec": 260552.37102657635, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 604.0309278350516, "ser_median_ns": 598.0, "ser_std_ns": 104.71344366176271, "ser_mad_ns": 70.0, "ser_cv": 0.17335775179107682, "ser_min_ns": 325.0, "ser_max_ns": 820.0, "ser_p5_ns": 430.0, "ser_p25_ns": 542.0, "ser_p50_ns": 598.0, "ser_p75_ns": 685.0, "ser_p95_ns": 778.5999999999998, "ser_p99_ns": 811.3599999999999, "ser_ci_low_ns": 583.9680412371134, "ser_ci_high_ns": 624.7219072164949, "deser_mean_ns": 4128.340206185567, "deser_median_ns": 4118.0, "deser_std_ns": 317.1265483012374, "deser_mad_ns": 202.0, "deser_cv": 0.07681696092441243, "deser_min_ns": 3481.0, "deser_max_ns": 4927.0, "deser_p5_ns": 3603.0, "deser_p25_ns": 3918.0, "deser_p50_ns": 4118.0, "deser_p75_ns": 4320.0, "deser_p95_ns": 4663.599999999999, "deser_p99_ns": 4864.599999999999, "deser_ci_low_ns": 4066.3082474226803, "deser_ci_high_ns": 4193.488917525773, "total_mean_ns": 4732.371134020618, "total_median_ns": 4695.0, "total_std_ns": 377.62945681987736, "total_mad_ns": 274.0, "total_cv": 0.07979709243536098, "total_min_ns": 3838.0, "total_max_ns": 5655.0, "total_p5_ns": 4132.0, "total_p25_ns": 4445.0, "total_p50_ns": 4695.0, "total_p75_ns": 5026.0, "total_p95_ns": 5328.599999999999, "total_p99_ns": 5585.879999999999, "total_ci_low_ns": 4659.3845360824735, "total_ci_high_ns": 4805.277835051546, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.236588628001943}, {"serializer": "arduinojson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "7.2.1", "avg_time_ser_ns": 985.2234042553191, "avg_time_deser_ns": 4064.0, "avg_time_total_ns": 5049.223404255319, "median_size_bytes": 162.0, "avg_ops_per_sec": 198050.25841344887, "min_ops_per_sec": 168861.87098953055, "max_ops_per_sec": 240905.80582992051, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 985.2234042553191, "ser_median_ns": 972.0, "ser_std_ns": 57.930279611040326, "ser_mad_ns": 39.0, "ser_cv": 0.05879913059396606, "ser_min_ns": 861.0, "ser_max_ns": 1136.0, "ser_p5_ns": 898.95, "ser_p25_ns": 950.0, "ser_p50_ns": 972.0, "ser_p75_ns": 1023.5, "ser_p95_ns": 1090.05, "ser_p99_ns": 1108.1, "ser_ci_low_ns": 973.7707446808511, "ser_ci_high_ns": 997.670744680851, "deser_mean_ns": 4064.0, "deser_median_ns": 4029.0, "deser_std_ns": 332.08931302882513, "deser_mad_ns": 194.5, "deser_cv": 0.08171489001693531, "deser_min_ns": 3265.0, "deser_max_ns": 4910.0, "deser_p5_ns": 3546.3, "deser_p25_ns": 3849.0, "deser_p50_ns": 4029.0, "deser_p75_ns": 4260.25, "deser_p95_ns": 4739.0, "deser_p99_ns": 4893.26, "deser_ci_low_ns": 3996.858244680851, "deser_ci_high_ns": 4134.642021276596, "total_mean_ns": 5049.223404255319, "total_median_ns": 5017.5, "total_std_ns": 362.750874383103, "total_mad_ns": 203.5, "total_cv": 0.07184290441127808, "total_min_ns": 4151.0, "total_max_ns": 5922.0, "total_p5_ns": 4515.0, "total_p25_ns": 4833.75, "total_p50_ns": 5017.5, "total_p75_ns": 5266.5, "total_p95_ns": 5768.5, "total_p99_ns": 5920.14, "total_ci_low_ns": 4978.548404255319, "total_ci_high_ns": 5119.771808510639, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.22894997905876}, {"serializer": "cereal", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "1.3.2", "avg_time_ser_ns": 729.0625, "avg_time_deser_ns": 583.475, "avg_time_total_ns": 1312.5375, "median_size_bytes": 65.0, "avg_ops_per_sec": 761882.9938192243, "min_ops_per_sec": 662251.655629139, "max_ops_per_sec": 881834.2151675485, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 729.0625, "ser_median_ns": 724.5, "ser_std_ns": 55.96005441270959, "ser_mad_ns": 34.5, "ser_cv": 0.07675618264923732, "ser_min_ns": 606.0, "ser_max_ns": 867.0, "ser_p5_ns": 645.65, "ser_p25_ns": 691.75, "ser_p50_ns": 724.5, "ser_p75_ns": 764.25, "ser_p95_ns": 819.15, "ser_p99_ns": 864.63, "ser_ci_low_ns": 717.4084375, "ser_ci_high_ns": 741.425625, "deser_mean_ns": 583.475, "deser_median_ns": 582.5, "deser_std_ns": 29.386975070555806, "deser_mad_ns": 14.5, "deser_cv": 0.050365439942681015, "deser_min_ns": 511.0, "deser_max_ns": 657.0, "deser_p5_ns": 530.95, "deser_p25_ns": 568.0, "deser_p50_ns": 582.5, "deser_p75_ns": 596.5, "deser_p95_ns": 635.0, "deser_p99_ns": 648.31, "deser_ci_low_ns": 577.0859375, "deser_ci_high_ns": 589.7134374999999, "total_mean_ns": 1312.5375, "total_median_ns": 1304.5, "total_std_ns": 76.58154316259602, "total_mad_ns": 48.5, "total_cv": 0.0583461753760148, "total_min_ns": 1134.0, "total_max_ns": 1510.0, "total_p5_ns": 1187.6, "total_p25_ns": 1268.75, "total_p50_ns": 1304.5, "total_p75_ns": 1360.0, "total_p95_ns": 1440.3, "total_p99_ns": 1468.1299999999997, "total_ci_low_ns": 1296.6740625, "total_ci_high_ns": 1329.875625, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.459880864244898}, {"serializer": "jsoncons_cbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 961.3076923076923, "avg_time_deser_ns": 5224.120879120879, "avg_time_total_ns": 6185.428571428572, "median_size_bytes": 124.0, "avg_ops_per_sec": 161670.2850016167, "min_ops_per_sec": 143143.429716576, "max_ops_per_sec": 182815.35648994514, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 961.3076923076923, "ser_median_ns": 952.0, "ser_std_ns": 86.27690463562234, "ser_mad_ns": 49.0, "ser_cv": 0.08974952070601669, "ser_min_ns": 745.0, "ser_max_ns": 1205.0, "ser_p5_ns": 854.5, "ser_p25_ns": 906.0, "ser_p50_ns": 952.0, "ser_p75_ns": 1007.5, "ser_p95_ns": 1115.0, "ser_p99_ns": 1161.7999999999997, "ser_ci_low_ns": 942.8456043956044, "ser_ci_high_ns": 978.8590659340659, "deser_mean_ns": 5224.120879120879, "deser_median_ns": 5216.0, "deser_std_ns": 293.05118381776987, "deser_mad_ns": 232.0, "deser_cv": 0.056095789243507096, "deser_min_ns": 4646.0, "deser_max_ns": 5911.0, "deser_p5_ns": 4713.5, "deser_p25_ns": 5003.5, "deser_p50_ns": 5216.0, "deser_p75_ns": 5498.0, "deser_p95_ns": 5642.0, "deser_p99_ns": 5793.999999999999, "deser_ci_low_ns": 5167.205769230769, "deser_ci_high_ns": 5284.956593406593, "total_mean_ns": 6185.428571428572, "total_median_ns": 6219.0, "total_std_ns": 343.99774362493656, "total_mad_ns": 265.0, "total_cv": 0.05561421325175657, "total_min_ns": 5470.0, "total_max_ns": 6986.0, "total_p5_ns": 5625.5, "total_p25_ns": 5917.5, "total_p50_ns": 6219.0, "total_p75_ns": 6463.5, "total_p95_ns": 6676.0, "total_p99_ns": 6903.2, "total_ci_low_ns": 6112.590934065935, "total_ci_high_ns": 6253.273901098901, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.950803488088216}, {"serializer": "custom_binary", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "harness", "avg_time_ser_ns": 319.741935483871, "avg_time_deser_ns": 122.0752688172043, "avg_time_total_ns": 441.81720430107526, "median_size_bytes": 57.0, "avg_ops_per_sec": 2263379.4932950423, "min_ops_per_sec": 1851851.851851852, "max_ops_per_sec": 2967359.050445104, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 319.741935483871, "ser_median_ns": 320.0, "ser_std_ns": 32.52788209528078, "ser_mad_ns": 21.0, "ser_cv": 0.1017316732197038, "ser_min_ns": 251.0, "ser_max_ns": 397.0, "ser_p5_ns": 268.6, "ser_p25_ns": 298.0, "ser_p50_ns": 320.0, "ser_p75_ns": 341.0, "ser_p95_ns": 370.4, "ser_p99_ns": 386.88, "ser_ci_low_ns": 312.9970430107527, "ser_ci_high_ns": 326.3774193548387, "deser_mean_ns": 122.0752688172043, "deser_median_ns": 124.0, "deser_std_ns": 17.52652434550198, "deser_mad_ns": 12.0, "deser_cv": 0.14357145812839636, "deser_min_ns": 77.0, "deser_max_ns": 164.0, "deser_p5_ns": 95.0, "deser_p25_ns": 112.0, "deser_p50_ns": 124.0, "deser_p75_ns": 134.0, "deser_p95_ns": 148.79999999999995, "deser_p99_ns": 162.16, "deser_ci_low_ns": 118.39758064516128, "deser_ci_high_ns": 125.5486559139785, "total_mean_ns": 441.81720430107526, "total_median_ns": 442.0, "total_std_ns": 42.68411430307817, "total_mad_ns": 27.0, "total_cv": 0.09661034900304874, "total_min_ns": 337.0, "total_max_ns": 540.0, "total_p5_ns": 372.6, "total_p25_ns": 416.0, "total_p50_ns": 442.0, "total_p75_ns": 469.0, "total_p95_ns": 508.59999999999997, "total_p99_ns": 529.88, "total_ci_low_ns": 432.9561827956989, "total_ci_high_ns": 450.344623655914, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.945106497159008}, {"serializer": "nlohmann_bson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 673.680412371134, "avg_time_deser_ns": 2166.257731958763, "avg_time_total_ns": 2839.938144329897, "median_size_bytes": 140.0, "avg_ops_per_sec": 352120.3452957448, "min_ops_per_sec": 291715.28588098014, "max_ops_per_sec": 430292.59896729776, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 673.680412371134, "ser_median_ns": 668.0, "ser_std_ns": 68.59278181044158, "ser_mad_ns": 47.0, "ser_cv": 0.10181798453812467, "ser_min_ns": 506.0, "ser_max_ns": 835.0, "ser_p5_ns": 583.0, "ser_p25_ns": 622.0, "ser_p50_ns": 668.0, "ser_p75_ns": 715.0, "ser_p95_ns": 797.8, "ser_p99_ns": 828.28, "ser_ci_low_ns": 660.6177835051546, "ser_ci_high_ns": 688.0829896907217, "deser_mean_ns": 2166.257731958763, "deser_median_ns": 2177.0, "deser_std_ns": 195.25252230287768, "deser_mad_ns": 139.0, "deser_cv": 0.09013356048189491, "deser_min_ns": 1741.0, "deser_max_ns": 2639.0, "deser_p5_ns": 1863.8, "deser_p25_ns": 2038.0, "deser_p50_ns": 2177.0, "deser_p75_ns": 2313.0, "deser_p95_ns": 2447.799999999999, "deser_p99_ns": 2636.12, "deser_ci_low_ns": 2126.813144329897, "deser_ci_high_ns": 2205.0005154639175, "total_mean_ns": 2839.938144329897, "total_median_ns": 2824.0, "total_std_ns": 235.6928091832402, "total_mad_ns": 174.0, "total_cv": 0.08299223335332662, "total_min_ns": 2324.0, "total_max_ns": 3428.0, "total_p5_ns": 2506.4, "total_p25_ns": 2685.0, "total_p50_ns": 2824.0, "total_p75_ns": 3035.0, "total_p95_ns": 3199.3999999999996, "total_p99_ns": 3372.3199999999997, "total_ci_low_ns": 2795.617525773196, "total_ci_high_ns": 2885.897164948454, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.023038078244326}, {"serializer": "protobuf-wire", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "wire-v2", "avg_time_ser_ns": 334.6914893617021, "avg_time_deser_ns": 193.30851063829786, "avg_time_total_ns": 528.0, "median_size_bytes": 50.0, "avg_ops_per_sec": 1893939.393939394, "min_ops_per_sec": 1474926.2536873156, "max_ops_per_sec": 2702702.7027027025, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 334.6914893617021, "ser_median_ns": 336.0, "ser_std_ns": 34.51383596511358, "ser_mad_ns": 22.5, "ser_cv": 0.10312134327328046, "ser_min_ns": 246.0, "ser_max_ns": 424.0, "ser_p5_ns": 272.2, "ser_p25_ns": 313.0, "ser_p50_ns": 336.0, "ser_p75_ns": 357.5, "ser_p95_ns": 385.0, "ser_p99_ns": 409.1199999999999, "ser_ci_low_ns": 327.45585106382975, "ser_ci_high_ns": 341.7776595744681, "deser_mean_ns": 193.30851063829786, "deser_median_ns": 197.5, "deser_std_ns": 36.75083982530844, "deser_mad_ns": 27.5, "deser_cv": 0.19011496029822209, "deser_min_ns": 95.0, "deser_max_ns": 259.0, "deser_p5_ns": 134.65, "deser_p25_ns": 161.5, "deser_p50_ns": 197.5, "deser_p75_ns": 221.75, "deser_p95_ns": 247.04999999999998, "deser_p99_ns": 258.07, "deser_ci_low_ns": 186.0210106382979, "deser_ci_high_ns": 200.56436170212766, "total_mean_ns": 528.0, "total_median_ns": 534.5, "total_std_ns": 57.378576797170716, "total_mad_ns": 36.5, "total_cv": 0.10867154696433848, "total_min_ns": 370.0, "total_max_ns": 678.0, "total_p5_ns": 436.6, "total_p25_ns": 484.0, "total_p50_ns": 534.5, "total_p75_ns": 564.25, "total_p95_ns": 611.05, "total_p99_ns": 645.4499999999998, "total_ci_low_ns": 515.8510638297872, "total_ci_high_ns": 538.8406914893617, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.539447750053859}, {"serializer": "flexbuffers", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "flatbuffers-flex", "avg_time_ser_ns": 1461.8, "avg_time_deser_ns": 1664.4444444444443, "avg_time_total_ns": 3126.2444444444445, "median_size_bytes": 211.0, "avg_ops_per_sec": 319872.619614589, "min_ops_per_sec": 270124.2571582928, "max_ops_per_sec": 386847.19535783364, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 1461.8, "ser_median_ns": 1471.0, "ser_std_ns": 109.65832533194524, "ser_mad_ns": 78.0, "ser_cv": 0.07501595658225833, "ser_min_ns": 1186.0, "ser_max_ns": 1748.0, "ser_p5_ns": 1275.95, "ser_p25_ns": 1388.75, "ser_p50_ns": 1471.0, "ser_p75_ns": 1531.0, "ser_p95_ns": 1651.85, "ser_p99_ns": 1682.1399999999999, "ser_ci_low_ns": 1439.5530555555556, "ser_ci_high_ns": 1484.8908333333334, "deser_mean_ns": 1664.4444444444443, "deser_median_ns": 1656.5, "deser_std_ns": 145.32838530559192, "deser_mad_ns": 94.0, "deser_cv": 0.08731344911550917, "deser_min_ns": 1335.0, "deser_max_ns": 2045.0, "deser_p5_ns": 1453.05, "deser_p25_ns": 1568.0, "deser_p50_ns": 1656.5, "deser_p75_ns": 1751.5, "deser_p95_ns": 1915.8999999999999, "deser_p99_ns": 2037.88, "deser_ci_low_ns": 1634.8608333333332, "deser_ci_high_ns": 1695.0027777777777, "total_mean_ns": 3126.2444444444445, "total_median_ns": 3125.5, "total_std_ns": 221.28441768031215, "total_mad_ns": 141.0, "total_cv": 0.07078282636329032, "total_min_ns": 2585.0, "total_max_ns": 3702.0, "total_p5_ns": 2770.65, "total_p25_ns": 2981.75, "total_p50_ns": 3125.5, "total_p75_ns": 3264.25, "total_p95_ns": 3502.5, "total_p99_ns": 3634.36, "total_ci_low_ns": 3080.9183333333335, "total_ci_high_ns": 3172.936111111111, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.078093363666934}, {"serializer": "zpp_bits", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "4.4.25", "avg_time_ser_ns": 303.91764705882355, "avg_time_deser_ns": 150.65882352941176, "avg_time_total_ns": 454.5764705882353, "median_size_bytes": 57.0, "avg_ops_per_sec": 2199849.892595564, "min_ops_per_sec": 1858736.059479554, "max_ops_per_sec": 2976190.476190476, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 303.91764705882355, "ser_median_ns": 306.0, "ser_std_ns": 30.55837963352001, "ser_mad_ns": 19.0, "ser_cv": 0.10054822393253593, "ser_min_ns": 229.0, "ser_max_ns": 381.0, "ser_p5_ns": 245.4, "ser_p25_ns": 286.0, "ser_p50_ns": 306.0, "ser_p75_ns": 322.0, "ser_p95_ns": 351.4, "ser_p99_ns": 365.03999999999996, "ser_ci_low_ns": 297.4470588235294, "ser_ci_high_ns": 310.4370588235294, "deser_mean_ns": 150.65882352941176, "deser_median_ns": 154.0, "deser_std_ns": 17.85427315877102, "deser_mad_ns": 10.0, "deser_cv": 0.11850798207836456, "deser_min_ns": 100.0, "deser_max_ns": 196.0, "deser_p5_ns": 117.6, "deser_p25_ns": 140.0, "deser_p50_ns": 154.0, "deser_p75_ns": 161.0, "deser_p95_ns": 176.39999999999998, "deser_p99_ns": 186.75999999999996, "deser_ci_low_ns": 146.78794117647058, "deser_ci_high_ns": 154.27117647058824, "total_mean_ns": 454.5764705882353, "total_median_ns": 459.0, "total_std_ns": 43.364286510189636, "total_mad_ns": 27.0, "total_cv": 0.09539492102192394, "total_min_ns": 336.0, "total_max_ns": 538.0, "total_p5_ns": 363.0, "total_p25_ns": 432.0, "total_p50_ns": 459.0, "total_p75_ns": 485.0, "total_p95_ns": 508.8, "total_p99_ns": 526.24, "total_ci_low_ns": 445.1644117647059, "total_ci_high_ns": 463.69588235294117, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.3424639424496885}, {"serializer": "msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "msgpack-cxx", "avg_time_ser_ns": 582.5930232558139, "avg_time_deser_ns": 537.5581395348837, "avg_time_total_ns": 1120.1511627906978, "median_size_bytes": 124.0, "avg_ops_per_sec": 892736.6530680036, "min_ops_per_sec": 747384.1554559043, "max_ops_per_sec": 1154734.4110854503, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 582.5930232558139, "ser_median_ns": 570.5, "ser_std_ns": 86.47262442115311, "ser_mad_ns": 55.5, "ser_cv": 0.14842715406700532, "ser_min_ns": 394.0, "ser_max_ns": 787.0, "ser_p5_ns": 457.5, "ser_p25_ns": 520.0, "ser_p50_ns": 570.5, "ser_p75_ns": 642.25, "ser_p95_ns": 738.0, "ser_p99_ns": 776.8000000000001, "ser_ci_low_ns": 565.0322674418604, "ser_ci_high_ns": 600.4418604651163, "deser_mean_ns": 537.5581395348837, "deser_median_ns": 544.0, "deser_std_ns": 40.892859912117494, "deser_mad_ns": 26.5, "deser_cv": 0.07607151097646776, "deser_min_ns": 448.0, "deser_max_ns": 638.0, "deser_p5_ns": 469.5, "deser_p25_ns": 512.25, "deser_p50_ns": 544.0, "deser_p75_ns": 564.75, "deser_p95_ns": 602.75, "deser_p99_ns": 631.2, "deser_ci_low_ns": 529.0921511627906, "deser_ci_high_ns": 545.3744186046512, "total_mean_ns": 1120.1511627906978, "total_median_ns": 1110.5, "total_std_ns": 107.07595077292626, "total_mad_ns": 67.0, "total_cv": 0.09559062591709651, "total_min_ns": 866.0, "total_max_ns": 1338.0, "total_p5_ns": 939.5, "total_p25_ns": 1059.5, "total_p50_ns": 1110.5, "total_p75_ns": 1197.5, "total_p95_ns": 1281.75, "total_p99_ns": 1317.6000000000001, "total_ci_low_ns": 1097.5343023255814, "total_ci_high_ns": 1142.7459302325583, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.366032924534508}, {"serializer": "nlohmann_msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 767.53125, "avg_time_deser_ns": 2214.1041666666665, "avg_time_total_ns": 2981.6354166666665, "median_size_bytes": 124.0, "avg_ops_per_sec": 335386.41056187707, "min_ops_per_sec": 286286.859433152, "max_ops_per_sec": 403225.8064516129, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 767.53125, "ser_median_ns": 754.5, "ser_std_ns": 83.80603584907738, "ser_mad_ns": 56.0, "ser_cv": 0.10918908624121478, "ser_min_ns": 589.0, "ser_max_ns": 951.0, "ser_p5_ns": 656.75, "ser_p25_ns": 710.5, "ser_p50_ns": 754.5, "ser_p75_ns": 832.25, "ser_p95_ns": 923.5, "ser_p99_ns": 942.4499999999999, "ser_ci_low_ns": 750.0091145833333, "ser_ci_high_ns": 784.4486979166667, "deser_mean_ns": 2214.1041666666665, "deser_median_ns": 2223.5, "deser_std_ns": 172.83521078680494, "deser_mad_ns": 108.5, "deser_cv": 0.07806101148664939, "deser_min_ns": 1890.0, "deser_max_ns": 2575.0, "deser_p5_ns": 1920.25, "deser_p25_ns": 2090.0, "deser_p50_ns": 2223.5, "deser_p75_ns": 2313.0, "deser_p95_ns": 2524.25, "deser_p99_ns": 2572.15, "deser_ci_low_ns": 2179.4236979166667, "deser_ci_high_ns": 2248.8463541666665, "total_mean_ns": 2981.6354166666665, "total_median_ns": 2985.0, "total_std_ns": 227.82551586647304, "total_mad_ns": 151.0, "total_cv": 0.07640958200086437, "total_min_ns": 2480.0, "total_max_ns": 3493.0, "total_p5_ns": 2618.75, "total_p25_ns": 2806.5, "total_p50_ns": 2985.0, "total_p75_ns": 3126.0, "total_p95_ns": 3336.25, "total_p99_ns": 3489.2, "total_ci_low_ns": 2935.6026041666664, "total_ci_high_ns": 3026.9802083333334, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.426925561325586}, {"serializer": "avro", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "binary-1.11", "avg_time_ser_ns": 347.1686746987952, "avg_time_deser_ns": 147.289156626506, "avg_time_total_ns": 494.4578313253012, "median_size_bytes": 44.0, "avg_ops_per_sec": 2022417.1539961013, "min_ops_per_sec": 1727115.7167530225, "max_ops_per_sec": 2469135.8024691357, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 347.1686746987952, "ser_median_ns": 348.0, "ser_std_ns": 25.978330217800444, "ser_mad_ns": 17.0, "ser_cv": 0.07482913094143456, "ser_min_ns": 280.0, "ser_max_ns": 409.0, "ser_p5_ns": 302.5, "ser_p25_ns": 331.5, "ser_p50_ns": 348.0, "ser_p75_ns": 365.0, "ser_p95_ns": 389.29999999999995, "ser_p99_ns": 396.6999999999999, "ser_ci_low_ns": 341.61355421686744, "ser_ci_high_ns": 352.67590361445787, "deser_mean_ns": 147.289156626506, "deser_median_ns": 148.0, "deser_std_ns": 12.621632726976378, "deser_mad_ns": 8.0, "deser_cv": 0.08569288477210957, "deser_min_ns": 119.0, "deser_max_ns": 185.0, "deser_p5_ns": 127.0, "deser_p25_ns": 140.0, "deser_p50_ns": 148.0, "deser_p75_ns": 156.0, "deser_p95_ns": 165.7, "deser_p99_ns": 176.79999999999993, "deser_ci_low_ns": 144.51777108433737, "deser_ci_high_ns": 150.07259036144578, "total_mean_ns": 494.4578313253012, "total_median_ns": 492.0, "total_std_ns": 34.99313563516362, "total_mad_ns": 22.0, "total_cv": 0.07077071778066717, "total_min_ns": 405.0, "total_max_ns": 579.0, "total_p5_ns": 431.3, "total_p25_ns": 470.5, "total_p50_ns": 492.0, "total_p75_ns": 517.0, "total_p95_ns": 548.6999999999999, "total_p99_ns": 569.1599999999999, "total_ci_low_ns": 487.33734939759034, "total_ci_high_ns": 502.3734939759036, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.039370504506294}, {"serializer": "bitsery", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "5.2.4", "avg_time_ser_ns": 119.04651162790698, "avg_time_deser_ns": 125.0, "avg_time_total_ns": 244.04651162790697, "median_size_bytes": 51.0, "avg_ops_per_sec": 4097579.569277683, "min_ops_per_sec": 3558718.8612099644, "max_ops_per_sec": 5263157.894736842, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 119.04651162790698, "ser_median_ns": 119.5, "ser_std_ns": 11.120629453983456, "ser_mad_ns": 6.5, "ser_cv": 0.09341415638235762, "ser_min_ns": 90.0, "ser_max_ns": 144.0, "ser_p5_ns": 98.25, "ser_p25_ns": 114.0, "ser_p50_ns": 119.5, "ser_p75_ns": 126.0, "ser_p95_ns": 135.0, "ser_p99_ns": 138.90000000000003, "ser_ci_low_ns": 116.62790697674419, "ser_ci_high_ns": 121.32587209302325, "deser_mean_ns": 125.0, "deser_median_ns": 125.5, "deser_std_ns": 11.995097037589003, "deser_mad_ns": 8.0, "deser_cv": 0.09596077630071202, "deser_min_ns": 94.0, "deser_max_ns": 152.0, "deser_p5_ns": 105.0, "deser_p25_ns": 117.25, "deser_p50_ns": 125.5, "deser_p75_ns": 132.75, "deser_p95_ns": 144.5, "deser_p99_ns": 152.0, "deser_ci_low_ns": 122.4531976744186, "deser_ci_high_ns": 127.46511627906976, "total_mean_ns": 244.04651162790697, "total_median_ns": 245.5, "total_std_ns": 17.689416561219137, "total_mad_ns": 11.5, "total_cv": 0.07248379189369382, "total_min_ns": 190.0, "total_max_ns": 281.0, "total_p5_ns": 215.25, "total_p25_ns": 233.25, "total_p50_ns": 245.5, "total_p75_ns": 256.75, "total_p95_ns": 272.25, "total_p99_ns": 275.90000000000003, "total_ci_low_ns": 240.15116279069767, "total_ci_high_ns": 247.5581395348837, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "nlohmann_json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 1045.7666666666667, "avg_time_deser_ns": 2585.1555555555556, "avg_time_total_ns": 3630.9222222222224, "median_size_bytes": 168.0, "avg_ops_per_sec": 275412.1236416827, "min_ops_per_sec": 242365.48715462917, "max_ops_per_sec": 311720.6982543641, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 1045.7666666666667, "ser_median_ns": 1039.0, "ser_std_ns": 70.77882150074066, "ser_mad_ns": 53.5, "ser_cv": 0.0676812751417531, "ser_min_ns": 878.0, "ser_max_ns": 1230.0, "ser_p5_ns": 934.8, "ser_p25_ns": 1006.75, "ser_p50_ns": 1039.0, "ser_p75_ns": 1097.75, "ser_p95_ns": 1153.85, "ser_p99_ns": 1212.2, "ser_ci_low_ns": 1031.2277777777779, "ser_ci_high_ns": 1060.4255555555555, "deser_mean_ns": 2585.1555555555556, "deser_median_ns": 2560.0, "deser_std_ns": 138.06153253727783, "deser_mad_ns": 99.0, "deser_cv": 0.05340550290700325, "deser_min_ns": 2323.0, "deser_max_ns": 2896.0, "deser_p5_ns": 2405.35, "deser_p25_ns": 2478.75, "deser_p50_ns": 2560.0, "deser_p75_ns": 2695.75, "deser_p95_ns": 2818.5, "deser_p99_ns": 2888.88, "deser_ci_low_ns": 2558.4822222222224, "deser_ci_high_ns": 2614.4780555555553, "total_mean_ns": 3630.9222222222224, "total_median_ns": 3603.5, "total_std_ns": 189.76817482070464, "total_mad_ns": 125.0, "total_cv": 0.052264456026976366, "total_min_ns": 3208.0, "total_max_ns": 4126.0, "total_p5_ns": 3360.25, "total_p25_ns": 3502.75, "total_p50_ns": 3603.5, "total_p75_ns": 3782.0, "total_p95_ns": 3926.45, "total_p99_ns": 4051.24, "total_ci_low_ns": 3590.9847222222224, "total_ci_high_ns": 3671.1808333333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.74469981313596}, {"serializer": "yyjson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "0.10.0", "avg_time_ser_ns": 251.38823529411764, "avg_time_deser_ns": 3204.2, "avg_time_total_ns": 3455.5882352941176, "median_size_bytes": 168.0, "avg_ops_per_sec": 289386.33075155335, "min_ops_per_sec": 250941.0288582183, "max_ops_per_sec": 329815.30343007913, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 251.38823529411764, "ser_median_ns": 248.0, "ser_std_ns": 22.299954152017282, "ser_mad_ns": 14.0, "ser_cv": 0.08870723057475988, "ser_min_ns": 200.0, "ser_max_ns": 306.0, "ser_p5_ns": 214.6, "ser_p25_ns": 239.0, "ser_p50_ns": 248.0, "ser_p75_ns": 267.0, "ser_p95_ns": 288.8, "ser_p99_ns": 300.12, "ser_ci_low_ns": 246.57617647058822, "ser_ci_high_ns": 256.2470588235294, "deser_mean_ns": 3204.2, "deser_median_ns": 3189.0, "deser_std_ns": 183.8401091010493, "deser_mad_ns": 128.0, "deser_cv": 0.05737472976126625, "deser_min_ns": 2815.0, "deser_max_ns": 3717.0, "deser_p5_ns": 2922.0, "deser_p25_ns": 3064.0, "deser_p50_ns": 3189.0, "deser_p75_ns": 3319.0, "deser_p95_ns": 3504.4, "deser_p99_ns": 3672.48, "deser_ci_low_ns": 3164.8273529411767, "deser_ci_high_ns": 3242.9282352941177, "total_mean_ns": 3455.5882352941176, "total_median_ns": 3441.0, "total_std_ns": 194.32038432626126, "total_mad_ns": 130.0, "total_cv": 0.0562336630104084, "total_min_ns": 3032.0, "total_max_ns": 3985.0, "total_p5_ns": 3153.2, "total_p25_ns": 3302.0, "total_p50_ns": 3441.0, "total_p75_ns": 3571.0, "total_p95_ns": 3765.4, "total_p99_ns": 3930.3999999999996, "total_ci_low_ns": 3414.8520588235297, "total_ci_high_ns": 3496.478823529412, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.24080235069141}, {"serializer": "capnproto", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "1.0.x", "avg_time_ser_ns": 506.9764705882353, "avg_time_deser_ns": 152.2, "avg_time_total_ns": 659.1764705882352, "median_size_bytes": 96.0, "avg_ops_per_sec": 1517044.4404783153, "min_ops_per_sec": 1038421.5991692627, "max_ops_per_sec": 2392344.4976076554, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 506.9764705882353, "ser_median_ns": 510.0, "ser_std_ns": 112.23083954304991, "ser_mad_ns": 87.0, "ser_cv": 0.2213728763641251, "ser_min_ns": 301.0, "ser_max_ns": 795.0, "ser_p5_ns": 336.6, "ser_p25_ns": 423.0, "ser_p50_ns": 510.0, "ser_p75_ns": 587.0, "ser_p95_ns": 656.4, "ser_p99_ns": 795.0, "ser_ci_low_ns": 483.0232352941176, "ser_ci_high_ns": 530.9229411764705, "deser_mean_ns": 152.2, "deser_median_ns": 153.0, "deser_std_ns": 16.03775307858067, "deser_mad_ns": 10.0, "deser_cv": 0.10537288487897944, "deser_min_ns": 117.0, "deser_max_ns": 194.0, "deser_p5_ns": 120.6, "deser_p25_ns": 145.0, "deser_p50_ns": 153.0, "deser_p75_ns": 164.0, "deser_p95_ns": 176.0, "deser_p99_ns": 183.07999999999996, "deser_ci_low_ns": 148.89411764705883, "deser_ci_high_ns": 155.7885294117647, "total_mean_ns": 659.1764705882352, "total_median_ns": 650.0, "total_std_ns": 117.94068085983172, "total_mad_ns": 84.0, "total_cv": 0.17892125420463495, "total_min_ns": 418.0, "total_max_ns": 963.0, "total_p5_ns": 482.0, "total_p25_ns": 574.0, "total_p50_ns": 650.0, "total_p75_ns": 744.0, "total_p95_ns": 808.0, "total_p99_ns": 958.8, "total_ci_low_ns": 634.1144117647059, "total_ci_high_ns": 683.765, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.914756900339303}, {"serializer": "jsoncons_msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 913.9684210526316, "avg_time_deser_ns": 5083.968421052631, "avg_time_total_ns": 5997.936842105263, "median_size_bytes": 124.0, "avg_ops_per_sec": 166723.99632154213, "min_ops_per_sec": 146864.444118079, "max_ops_per_sec": 192715.35941414532, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 913.9684210526316, "ser_median_ns": 901.0, "ser_std_ns": 75.89444694618729, "ser_mad_ns": 47.0, "ser_cv": 0.08303836893924461, "ser_min_ns": 741.0, "ser_max_ns": 1108.0, "ser_p5_ns": 794.8, "ser_p25_ns": 869.5, "ser_p50_ns": 901.0, "ser_p75_ns": 956.0, "ser_p95_ns": 1055.0, "ser_p99_ns": 1090.14, "ser_ci_low_ns": 898.3976315789473, "ser_ci_high_ns": 929.2428947368421, "deser_mean_ns": 5083.968421052631, "deser_median_ns": 5070.0, "deser_std_ns": 303.68378194709896, "deser_mad_ns": 190.0, "deser_cv": 0.05973360902273691, "deser_min_ns": 4401.0, "deser_max_ns": 5832.0, "deser_p5_ns": 4615.9, "deser_p25_ns": 4885.0, "deser_p50_ns": 5070.0, "deser_p75_ns": 5279.0, "deser_p95_ns": 5670.1, "deser_p99_ns": 5744.58, "deser_ci_low_ns": 5025.241315789473, "deser_ci_high_ns": 5144.832894736842, "total_mean_ns": 5997.936842105263, "total_median_ns": 5970.0, "total_std_ns": 341.6082368122975, "total_mad_ns": 219.0, "total_cv": 0.05695429041770198, "total_min_ns": 5189.0, "total_max_ns": 6809.0, "total_p5_ns": 5495.1, "total_p25_ns": 5776.5, "total_p50_ns": 5970.0, "total_p75_ns": 6220.0, "total_p95_ns": 6574.1, "total_p99_ns": 6779.86, "total_ci_low_ns": 5925.0368421052635, "total_ci_high_ns": 6064.731315789473, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.11766164076632}, {"serializer": "nlohmann_cbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 751.8958333333334, "avg_time_deser_ns": 2066.3645833333335, "avg_time_total_ns": 2818.2604166666665, "median_size_bytes": 124.0, "avg_ops_per_sec": 354828.81357811595, "min_ops_per_sec": 289184.4997108155, "max_ops_per_sec": 460829.4930875576, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 751.8958333333334, "ser_median_ns": 757.0, "ser_std_ns": 77.99102231285026, "ser_mad_ns": 54.5, "ser_cv": 0.1037258338925719, "ser_min_ns": 562.0, "ser_max_ns": 910.0, "ser_p5_ns": 620.5, "ser_p25_ns": 698.0, "ser_p50_ns": 757.0, "ser_p75_ns": 803.25, "ser_p95_ns": 880.0, "ser_p99_ns": 899.55, "ser_ci_low_ns": 736.4028645833333, "ser_ci_high_ns": 767.34453125, "deser_mean_ns": 2066.3645833333335, "deser_median_ns": 2090.0, "deser_std_ns": 195.03117806306423, "deser_mad_ns": 129.5, "deser_cv": 0.09438372087681246, "deser_min_ns": 1589.0, "deser_max_ns": 2591.0, "deser_p5_ns": 1766.75, "deser_p25_ns": 1940.5, "deser_p50_ns": 2090.0, "deser_p75_ns": 2201.5, "deser_p95_ns": 2345.5, "deser_p99_ns": 2502.6499999999996, "deser_ci_low_ns": 2026.6315104166665, "deser_ci_high_ns": 2105.2268229166666, "total_mean_ns": 2818.2604166666665, "total_median_ns": 2839.0, "total_std_ns": 249.98531513888514, "total_mad_ns": 175.5, "total_cv": 0.08870199278268204, "total_min_ns": 2170.0, "total_max_ns": 3458.0, "total_p5_ns": 2388.0, "total_p25_ns": 2638.0, "total_p50_ns": 2839.0, "total_p75_ns": 2992.5, "total_p95_ns": 3169.25, "total_p99_ns": 3382.95, "total_ci_low_ns": 2767.1838541666666, "total_ci_high_ns": 2867.3239583333334, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.083741163017882}, {"serializer": "cista", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "0.15", "avg_time_ser_ns": 174.58139534883722, "avg_time_deser_ns": 214.53488372093022, "avg_time_total_ns": 389.1162790697674, "median_size_bytes": 64.0, "avg_ops_per_sec": 2569925.890509204, "min_ops_per_sec": 2197802.1978021977, "max_ops_per_sec": 3154574.1324921134, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 174.58139534883722, "ser_median_ns": 173.5, "ser_std_ns": 15.54005459622408, "ser_mad_ns": 10.5, "ser_cv": 0.08901323399995142, "ser_min_ns": 138.0, "ser_max_ns": 221.0, "ser_p5_ns": 150.0, "ser_p25_ns": 164.25, "ser_p50_ns": 173.5, "ser_p75_ns": 184.75, "ser_p95_ns": 201.5, "ser_p99_ns": 208.25000000000009, "ser_ci_low_ns": 171.2671511627907, "ser_ci_high_ns": 177.8139534883721, "deser_mean_ns": 214.53488372093022, "deser_median_ns": 215.0, "deser_std_ns": 19.59033235427684, "deser_mad_ns": 12.0, "deser_cv": 0.09131537032345843, "deser_min_ns": 167.0, "deser_max_ns": 261.0, "deser_p5_ns": 182.0, "deser_p25_ns": 203.25, "deser_p50_ns": 215.0, "deser_p75_ns": 226.75, "deser_p95_ns": 248.5, "deser_p99_ns": 255.90000000000003, "deser_ci_low_ns": 210.3828488372093, "deser_ci_high_ns": 218.4654069767442, "total_mean_ns": 389.1162790697674, "total_median_ns": 384.0, "total_std_ns": 30.195215283084043, "total_mad_ns": 17.0, "total_cv": 0.07759946552549689, "total_min_ns": 317.0, "total_max_ns": 455.0, "total_p5_ns": 344.75, "total_p25_ns": 370.25, "total_p50_ns": 384.0, "total_p75_ns": 408.25, "total_p95_ns": 440.25, "total_p99_ns": 448.20000000000005, "total_ci_low_ns": 382.89418604651166, "total_ci_high_ns": 395.74418604651163, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.83659982860081}, {"serializer": "jsoncons_bson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 1313.7604166666667, "avg_time_deser_ns": 4978.135416666667, "avg_time_total_ns": 6291.895833333333, "median_size_bytes": 140.0, "avg_ops_per_sec": 158934.60834208026, "min_ops_per_sec": 138657.79256794232, "max_ops_per_sec": 185322.46108228317, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 1313.7604166666667, "ser_median_ns": 1282.0, "ser_std_ns": 131.6834117988384, "ser_mad_ns": 75.0, "ser_cv": 0.10023396208948934, "ser_min_ns": 1072.0, "ser_max_ns": 1662.0, "ser_p5_ns": 1118.5, "ser_p25_ns": 1222.5, "ser_p50_ns": 1282.0, "ser_p75_ns": 1401.0, "ser_p95_ns": 1532.0, "ser_p99_ns": 1656.3, "ser_ci_low_ns": 1287.49765625, "ser_ci_high_ns": 1341.53515625, "deser_mean_ns": 4978.135416666667, "deser_median_ns": 5012.0, "deser_std_ns": 289.2581298422303, "deser_mad_ns": 209.0, "deser_cv": 0.05810571742861828, "deser_min_ns": 4279.0, "deser_max_ns": 5835.0, "deser_p5_ns": 4481.5, "deser_p25_ns": 4778.0, "deser_p50_ns": 5012.0, "deser_p75_ns": 5158.5, "deser_p95_ns": 5416.5, "deser_p99_ns": 5692.5, "deser_ci_low_ns": 4921.814583333334, "deser_ci_high_ns": 5036.398177083333, "total_mean_ns": 6291.895833333333, "total_median_ns": 6318.0, "total_std_ns": 357.503874963664, "total_mad_ns": 217.5, "total_cv": 0.05681973834812597, "total_min_ns": 5396.0, "total_max_ns": 7212.0, "total_p5_ns": 5734.25, "total_p25_ns": 6063.25, "total_p50_ns": 6318.0, "total_p75_ns": 6523.0, "total_p95_ns": 6805.5, "total_p99_ns": 7174.0, "total_ci_low_ns": 6218.520052083333, "total_ci_high_ns": 6363.5234375, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.163470611254503}, {"serializer": "yas", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "7.x", "avg_time_ser_ns": 409.26666666666665, "avg_time_deser_ns": 219.88888888888889, "avg_time_total_ns": 629.1555555555556, "median_size_bytes": 72.0, "avg_ops_per_sec": 1589432.042949986, "min_ops_per_sec": 1206272.6176115803, "max_ops_per_sec": 2197802.1978021977, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 409.26666666666665, "ser_median_ns": 410.5, "ser_std_ns": 80.47817765488782, "ser_mad_ns": 59.0, "ser_cv": 0.19663995191779074, "ser_min_ns": 259.0, "ser_max_ns": 597.0, "ser_p5_ns": 281.8, "ser_p25_ns": 354.0, "ser_p50_ns": 410.5, "ser_p75_ns": 469.75, "ser_p95_ns": 539.3, "ser_p99_ns": 572.97, "ser_ci_low_ns": 392.79833333333335, "ser_ci_high_ns": 425.7236111111111, "deser_mean_ns": 219.88888888888889, "deser_median_ns": 224.0, "deser_std_ns": 18.618249138916138, "deser_mad_ns": 13.0, "deser_cv": 0.08467116839325177, "deser_min_ns": 175.0, "deser_max_ns": 271.0, "deser_p5_ns": 185.9, "deser_p25_ns": 208.0, "deser_p50_ns": 224.0, "deser_p75_ns": 232.0, "deser_p95_ns": 244.1, "deser_p99_ns": 254.08999999999997, "deser_ci_low_ns": 215.89972222222224, "deser_ci_high_ns": 223.65611111111113, "total_mean_ns": 629.1555555555556, "total_median_ns": 628.5, "total_std_ns": 83.65981290100828, "total_mad_ns": 52.5, "total_cv": 0.13297158733206318, "total_min_ns": 455.0, "total_max_ns": 829.0, "total_p5_ns": 496.7, "total_p25_ns": 566.0, "total_p50_ns": 628.5, "total_p75_ns": 679.0, "total_p95_ns": 770.2, "total_p99_ns": 822.77, "total_ci_low_ns": 612.2433333333333, "total_ci_high_ns": 646.8230555555555, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.276075648666214}, {"serializer": "avro_c", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "avro-c", "avg_time_ser_ns": 905.8620689655172, "avg_time_deser_ns": 943.919540229885, "avg_time_total_ns": 1849.7816091954023, "median_size_bytes": 44.0, "avg_ops_per_sec": 540604.3583896204, "min_ops_per_sec": 475059.38242280285, "max_ops_per_sec": 694927.0326615706, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 905.8620689655172, "ser_median_ns": 918.0, "ser_std_ns": 92.05447987706546, "ser_mad_ns": 60.0, "ser_cv": 0.10162085711590782, "ser_min_ns": 645.0, "ser_max_ns": 1096.0, "ser_p5_ns": 750.7, "ser_p25_ns": 844.0, "ser_p50_ns": 918.0, "ser_p75_ns": 964.5, "ser_p95_ns": 1038.2, "ser_p99_ns": 1089.98, "ser_ci_low_ns": 885.6663793103448, "ser_ci_high_ns": 925.012643678161, "deser_mean_ns": 943.919540229885, "deser_median_ns": 947.0, "deser_std_ns": 65.51943052660287, "deser_mad_ns": 45.0, "deser_cv": 0.06941209259281365, "deser_min_ns": 794.0, "deser_max_ns": 1132.0, "deser_p5_ns": 838.3, "deser_p25_ns": 901.5, "deser_p50_ns": 947.0, "deser_p75_ns": 989.0, "deser_p95_ns": 1044.7, "deser_p99_ns": 1108.78, "deser_ci_low_ns": 929.9192528735632, "deser_ci_high_ns": 957.7942528735632, "total_mean_ns": 1849.7816091954023, "total_median_ns": 1853.0, "total_std_ns": 142.9179651902607, "total_mad_ns": 87.0, "total_cv": 0.07726207487403099, "total_min_ns": 1439.0, "total_max_ns": 2105.0, "total_p5_ns": 1596.7, "total_p25_ns": 1776.5, "total_p50_ns": 1853.0, "total_p75_ns": 1950.0, "total_p95_ns": 2078.9, "total_p99_ns": 2102.42, "total_ci_low_ns": 1818.792816091954, "total_ci_high_ns": 1880.5080459770115, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.655278082440025}, {"serializer": "simdjson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.10.1", "avg_time_ser_ns": 82.49450549450549, "avg_time_deser_ns": 3113.6153846153848, "avg_time_total_ns": 3196.1098901098903, "median_size_bytes": 168.0, "avg_ops_per_sec": 312880.3559271917, "min_ops_per_sec": 282565.69652444194, "max_ops_per_sec": 358422.93906810036, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 82.49450549450549, "ser_median_ns": 83.0, "ser_std_ns": 6.97674490539603, "ser_mad_ns": 4.0, "ser_cv": 0.08457223743053667, "ser_min_ns": 65.0, "ser_max_ns": 100.0, "ser_p5_ns": 71.0, "ser_p25_ns": 78.0, "ser_p50_ns": 83.0, "ser_p75_ns": 86.5, "ser_p95_ns": 94.0, "ser_p99_ns": 100.0, "ser_ci_low_ns": 81.10989010989012, "ser_ci_high_ns": 83.92307692307692, "deser_mean_ns": 3113.6153846153848, "deser_median_ns": 3124.0, "deser_std_ns": 168.82757602758628, "deser_mad_ns": 103.0, "deser_cv": 0.05422236055929593, "deser_min_ns": 2715.0, "deser_max_ns": 3451.0, "deser_p5_ns": 2852.0, "deser_p25_ns": 3001.0, "deser_p50_ns": 3124.0, "deser_p75_ns": 3211.0, "deser_p95_ns": 3379.0, "deser_p99_ns": 3429.3999999999996, "deser_ci_low_ns": 3079.746153846154, "deser_ci_high_ns": 3146.301648351648, "total_mean_ns": 3196.1098901098903, "total_median_ns": 3199.0, "total_std_ns": 171.2873771407735, "total_mad_ns": 105.0, "total_cv": 0.05359245552564033, "total_min_ns": 2790.0, "total_max_ns": 3539.0, "total_p5_ns": 2928.5, "total_p25_ns": 3085.5, "total_p50_ns": 3199.0, "total_p75_ns": 3299.0, "total_p95_ns": 3469.0, "total_p99_ns": 3524.6, "total_ci_low_ns": 3160.911813186813, "total_ci_high_ns": 3229.752747252747, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.809693283176436}, {"serializer": "thrift", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "TBinaryProtocol", "avg_time_ser_ns": 388.4367816091954, "avg_time_deser_ns": 225.183908045977, "avg_time_total_ns": 613.6206896551724, "median_size_bytes": 82.0, "avg_ops_per_sec": 1629671.2559707782, "min_ops_per_sec": 1410437.2355430184, "max_ops_per_sec": 2012072.434607646, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 388.4367816091954, "ser_median_ns": 389.0, "ser_std_ns": 30.786474359286526, "ser_mad_ns": 18.0, "ser_cv": 0.07925736134396424, "ser_min_ns": 317.0, "ser_max_ns": 456.0, "ser_p5_ns": 342.3, "ser_p25_ns": 368.5, "ser_p50_ns": 389.0, "ser_p75_ns": 407.0, "ser_p95_ns": 448.20000000000005, "ser_p99_ns": 454.28, "ser_ci_low_ns": 381.90775862068966, "ser_ci_high_ns": 394.7241379310345, "deser_mean_ns": 225.183908045977, "deser_median_ns": 228.0, "deser_std_ns": 19.447322249839967, "deser_mad_ns": 11.0, "deser_cv": 0.08636195374080329, "deser_min_ns": 168.0, "deser_max_ns": 262.0, "deser_p5_ns": 181.5, "deser_p25_ns": 215.5, "deser_p50_ns": 228.0, "deser_p75_ns": 238.5, "deser_p95_ns": 252.0, "deser_p99_ns": 255.98000000000002, "deser_ci_low_ns": 220.72413793103448, "deser_ci_high_ns": 229.26494252873562, "total_mean_ns": 613.6206896551724, "total_median_ns": 620.0, "total_std_ns": 44.38998456579371, "total_mad_ns": 26.0, "total_cv": 0.0723410818998605, "total_min_ns": 497.0, "total_max_ns": 709.0, "total_p5_ns": 525.3, "total_p25_ns": 585.5, "total_p50_ns": 620.0, "total_p75_ns": 641.5, "total_p95_ns": 684.3000000000001, "total_p99_ns": 706.42, "total_ci_low_ns": 604.4936781609196, "total_ci_high_ns": 623.1735632183909, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.866639790516894}, {"serializer": "flatbuffers", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "flatbuffers", "avg_time_ser_ns": 346.57575757575756, "avg_time_deser_ns": 244.989898989899, "avg_time_total_ns": 591.5656565656566, "median_size_bytes": 76.0, "avg_ops_per_sec": 1690429.437377273, "min_ops_per_sec": 1169590.6432748537, "max_ops_per_sec": 2666666.6666666665, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 346.57575757575756, "ser_median_ns": 345.0, "ser_std_ns": 96.70944183998715, "ser_mad_ns": 73.0, "ser_cv": 0.27904271930747365, "ser_min_ns": 184.0, "ser_max_ns": 588.0, "ser_p5_ns": 201.9, "ser_p25_ns": 276.0, "ser_p50_ns": 345.0, "ser_p75_ns": 420.5, "ser_p95_ns": 541.0, "ser_p99_ns": 570.3599999999999, "ser_ci_low_ns": 328.34974747474746, "ser_ci_high_ns": 364.6164141414141, "deser_mean_ns": 244.989898989899, "deser_median_ns": 253.0, "deser_std_ns": 36.68495074569656, "deser_mad_ns": 24.0, "deser_cv": 0.14974066643951348, "deser_min_ns": 153.0, "deser_max_ns": 318.0, "deser_p5_ns": 185.4, "deser_p25_ns": 219.5, "deser_p50_ns": 253.0, "deser_p75_ns": 270.5, "deser_p95_ns": 292.4, "deser_p99_ns": 316.03999999999996, "deser_ci_low_ns": 237.93939393939394, "deser_ci_high_ns": 252.0909090909091, "total_mean_ns": 591.5656565656566, "total_median_ns": 582.0, "total_std_ns": 98.68370020446191, "total_mad_ns": 74.0, "total_cv": 0.16681783181493604, "total_min_ns": 375.0, "total_max_ns": 855.0, "total_p5_ns": 465.0, "total_p25_ns": 515.0, "total_p50_ns": 582.0, "total_p75_ns": 660.0, "total_p95_ns": 763.0, "total_p99_ns": 842.26, "total_ci_low_ns": 571.694696969697, "total_ci_high_ns": 611.9494949494949, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.727056917423003}, {"serializer": "jsoncons_msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 1208.287234042553, "avg_time_deser_ns": 5509.489361702128, "avg_time_total_ns": 6717.776595744681, "median_size_bytes": 124.0, "avg_ops_per_sec": 148858.7757790936, "min_ops_per_sec": 129634.43090484833, "max_ops_per_sec": 178922.8842368939, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 1208.287234042553, "ser_median_ns": 1206.5, "ser_std_ns": 144.04237894471254, "ser_mad_ns": 92.5, "ser_cv": 0.11921203409787882, "ser_min_ns": 902.0, "ser_max_ns": 1551.0, "ser_p5_ns": 980.0500000000001, "ser_p25_ns": 1114.0, "ser_p50_ns": 1206.5, "ser_p75_ns": 1289.75, "ser_p95_ns": 1461.85, "ser_p99_ns": 1525.8899999999999, "ser_ci_low_ns": 1179.5074468085108, "ser_ci_high_ns": 1237.901329787234, "deser_mean_ns": 5509.489361702128, "deser_median_ns": 5514.0, "deser_std_ns": 391.1045770739462, "deser_mad_ns": 313.5, "deser_cv": 0.07098744573183394, "deser_min_ns": 4658.0, "deser_max_ns": 6190.0, "deser_p5_ns": 4883.4, "deser_p25_ns": 5194.5, "deser_p50_ns": 5514.0, "deser_p75_ns": 5805.75, "deser_p95_ns": 6127.45, "deser_p99_ns": 6172.33, "deser_ci_low_ns": 5433.755319148937, "deser_ci_high_ns": 5584.590691489361, "total_mean_ns": 6717.776595744681, "total_median_ns": 6731.5, "total_std_ns": 475.78162412492674, "total_mad_ns": 345.0, "total_cv": 0.07082427010542545, "total_min_ns": 5589.0, "total_max_ns": 7714.0, "total_p5_ns": 5973.05, "total_p25_ns": 6343.25, "total_p50_ns": 6731.5, "total_p75_ns": 7056.0, "total_p95_ns": 7497.75, "total_p99_ns": 7616.349999999999, "total_ci_low_ns": 6619.344414893618, "total_ci_high_ns": 6810.0787234042555, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.631846735399}, {"serializer": "jsoncons_cbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 1213.6, "avg_time_deser_ns": 5686.555555555556, "avg_time_total_ns": 6900.155555555555, "median_size_bytes": 124.0, "avg_ops_per_sec": 144924.26901808978, "min_ops_per_sec": 122910.52114060964, "max_ops_per_sec": 174581.0055865922, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 1213.6, "ser_median_ns": 1230.5, "ser_std_ns": 113.16208917727833, "ser_mad_ns": 70.5, "ser_cv": 0.09324496471430319, "ser_min_ns": 983.0, "ser_max_ns": 1487.0, "ser_p5_ns": 1024.35, "ser_p25_ns": 1133.0, "ser_p50_ns": 1230.5, "ser_p75_ns": 1277.75, "ser_p95_ns": 1419.0, "ser_p99_ns": 1462.08, "ser_ci_low_ns": 1190.165, "ser_ci_high_ns": 1236.2252777777778, "deser_mean_ns": 5686.555555555556, "deser_median_ns": 5692.5, "deser_std_ns": 380.09691582309273, "deser_mad_ns": 273.5, "deser_cv": 0.06684132637229791, "deser_min_ns": 4740.0, "deser_max_ns": 6649.0, "deser_p5_ns": 5180.0, "deser_p25_ns": 5397.5, "deser_p50_ns": 5692.5, "deser_p75_ns": 5929.5, "deser_p95_ns": 6279.099999999999, "deser_p99_ns": 6640.99, "deser_ci_low_ns": 5610.016666666666, "deser_ci_high_ns": 5759.787222222221, "total_mean_ns": 6900.155555555555, "total_median_ns": 6930.0, "total_std_ns": 438.2850109363605, "total_mad_ns": 309.0, "total_cv": 0.06351813483153752, "total_min_ns": 5728.0, "total_max_ns": 8136.0, "total_p5_ns": 6276.1, "total_p25_ns": 6553.75, "total_p50_ns": 6930.0, "total_p75_ns": 7198.5, "total_p95_ns": 7577.75, "total_p99_ns": 7941.98, "total_ci_low_ns": 6811.435277777778, "total_ci_high_ns": 6981.715833333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.012248260890217}, {"serializer": "avro", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "binary-1.11", "avg_time_ser_ns": 358.15384615384613, "avg_time_deser_ns": 153.1868131868132, "avg_time_total_ns": 511.34065934065933, "median_size_bytes": 44.0, "avg_ops_per_sec": 1955643.4281784578, "min_ops_per_sec": 1680672.268907563, "max_ops_per_sec": 2421307.506053269, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 358.15384615384613, "ser_median_ns": 357.0, "ser_std_ns": 25.516845449808283, "ser_mad_ns": 17.0, "ser_cv": 0.07124548772498017, "ser_min_ns": 296.0, "ser_max_ns": 414.0, "ser_p5_ns": 313.0, "ser_p25_ns": 343.0, "ser_p50_ns": 357.0, "ser_p75_ns": 375.0, "ser_p95_ns": 399.0, "ser_p99_ns": 406.79999999999995, "ser_ci_low_ns": 352.98846153846154, "ser_ci_high_ns": 363.45082417582415, "deser_mean_ns": 153.1868131868132, "deser_median_ns": 153.0, "deser_std_ns": 16.40183735501205, "deser_mad_ns": 10.0, "deser_cv": 0.10707081774075297, "deser_min_ns": 114.0, "deser_max_ns": 194.0, "deser_p5_ns": 126.5, "deser_p25_ns": 143.5, "deser_p50_ns": 153.0, "deser_p75_ns": 164.0, "deser_p95_ns": 181.0, "deser_p99_ns": 188.59999999999997, "deser_ci_low_ns": 149.96703296703296, "deser_ci_high_ns": 156.48406593406594, "total_mean_ns": 511.34065934065933, "total_median_ns": 513.0, "total_std_ns": 37.31255963113635, "total_mad_ns": 22.0, "total_cv": 0.07297006203114863, "total_min_ns": 413.0, "total_max_ns": 595.0, "total_p5_ns": 448.0, "total_p25_ns": 488.5, "total_p50_ns": 513.0, "total_p75_ns": 534.0, "total_p95_ns": 564.5, "total_p99_ns": 587.8, "total_ci_low_ns": 503.9774725274725, "total_ci_high_ns": 519.560989010989, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.3750601542360625}, {"serializer": "protobuf-wire", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "wire-v2", "avg_time_ser_ns": 352.314606741573, "avg_time_deser_ns": 201.82022471910113, "avg_time_total_ns": 554.1348314606741, "median_size_bytes": 50.0, "avg_ops_per_sec": 1804614.9478892088, "min_ops_per_sec": 1499250.3748125937, "max_ops_per_sec": 2336448.5981308413, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 352.314606741573, "ser_median_ns": 351.0, "ser_std_ns": 24.714550142862098, "ser_mad_ns": 16.0, "ser_cv": 0.07014909308313327, "ser_min_ns": 297.0, "ser_max_ns": 416.0, "ser_p5_ns": 311.8, "ser_p25_ns": 335.0, "ser_p50_ns": 351.0, "ser_p75_ns": 367.0, "ser_p95_ns": 398.6, "ser_p99_ns": 411.6, "ser_ci_low_ns": 347.13455056179777, "ser_ci_high_ns": 357.3825842696629, "deser_mean_ns": 201.82022471910113, "deser_median_ns": 207.0, "deser_std_ns": 38.519346319194185, "deser_mad_ns": 26.0, "deser_cv": 0.19085969393209454, "deser_min_ns": 117.0, "deser_max_ns": 276.0, "deser_p5_ns": 133.6, "deser_p25_ns": 176.0, "deser_p50_ns": 207.0, "deser_p75_ns": 230.0, "deser_p95_ns": 260.0, "deser_p99_ns": 265.44000000000005, "deser_ci_low_ns": 193.26544943820227, "deser_ci_high_ns": 209.7988764044944, "total_mean_ns": 554.1348314606741, "total_median_ns": 554.0, "total_std_ns": 52.543746062260944, "total_mad_ns": 36.0, "total_cv": 0.09482122956205086, "total_min_ns": 428.0, "total_max_ns": 667.0, "total_p5_ns": 469.8, "total_p25_ns": 521.0, "total_p50_ns": 554.0, "total_p75_ns": 591.0, "total_p95_ns": 636.4, "total_p99_ns": 665.24, "total_ci_low_ns": 543.6278089887641, "total_ci_high_ns": 565.1488764044944, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.721294083000174}, {"serializer": "bitsery", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "5.2.4", "avg_time_ser_ns": 133.77906976744185, "avg_time_deser_ns": 141.1627906976744, "avg_time_total_ns": 274.9418604651163, "median_size_bytes": 51.0, "avg_ops_per_sec": 3637132.5861704377, "min_ops_per_sec": 2941176.470588235, "max_ops_per_sec": 4464285.714285715, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 133.77906976744185, "ser_median_ns": 134.0, "ser_std_ns": 13.239336364024489, "ser_mad_ns": 7.0, "ser_cv": 0.09896418316437254, "ser_min_ns": 98.0, "ser_max_ns": 167.0, "ser_p5_ns": 114.0, "ser_p25_ns": 125.5, "ser_p50_ns": 134.0, "ser_p75_ns": 139.75, "ser_p95_ns": 156.75, "ser_p99_ns": 164.45000000000002, "ser_ci_low_ns": 130.97674418604652, "ser_ci_high_ns": 136.58139534883722, "deser_mean_ns": 141.1627906976744, "deser_median_ns": 142.0, "deser_std_ns": 17.427402671800778, "deser_mad_ns": 10.0, "deser_cv": 0.12345606505559036, "deser_min_ns": 100.0, "deser_max_ns": 183.0, "deser_p5_ns": 109.25, "deser_p25_ns": 130.5, "deser_p50_ns": 142.0, "deser_p75_ns": 152.0, "deser_p95_ns": 168.25, "deser_p99_ns": 174.50000000000006, "deser_ci_low_ns": 137.59244186046513, "deser_ci_high_ns": 144.6860465116279, "total_mean_ns": 274.9418604651163, "total_median_ns": 274.0, "total_std_ns": 24.961784745374647, "total_mad_ns": 14.5, "total_cv": 0.09078932070637427, "total_min_ns": 224.0, "total_max_ns": 340.0, "total_p5_ns": 233.25, "total_p25_ns": 264.0, "total_p50_ns": 274.0, "total_p75_ns": 291.75, "total_p95_ns": 317.75, "total_p99_ns": 337.45000000000005, "total_ci_low_ns": 269.94127906976746, "total_ci_high_ns": 280.2218023255814, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "capnproto", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "1.0.x", "avg_time_ser_ns": 605.2209302325581, "avg_time_deser_ns": 286.0813953488372, "avg_time_total_ns": 891.3023255813954, "median_size_bytes": 96.0, "avg_ops_per_sec": 1121953.7650680998, "min_ops_per_sec": 871080.1393728222, "max_ops_per_sec": 1680672.268907563, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 605.2209302325581, "ser_median_ns": 603.5, "ser_std_ns": 103.47701093511381, "ser_mad_ns": 74.5, "ser_cv": 0.1709739464815806, "ser_min_ns": 376.0, "ser_max_ns": 818.0, "ser_p5_ns": 441.5, "ser_p25_ns": 532.0, "ser_p50_ns": 603.5, "ser_p75_ns": 678.75, "ser_p95_ns": 782.75, "ser_p99_ns": 816.3, "ser_ci_low_ns": 582.6703488372093, "ser_ci_high_ns": 627.1238372093022, "deser_mean_ns": 286.0813953488372, "deser_median_ns": 284.0, "deser_std_ns": 27.682321866354506, "deser_mad_ns": 17.0, "deser_cv": 0.09676379630559231, "deser_min_ns": 219.0, "deser_max_ns": 344.0, "deser_p5_ns": 239.0, "deser_p25_ns": 271.0, "deser_p50_ns": 284.0, "deser_p75_ns": 305.0, "deser_p95_ns": 336.0, "deser_p99_ns": 343.15, "deser_ci_low_ns": 280.0691860465116, "deser_ci_high_ns": 291.79156976744184, "total_mean_ns": 891.3023255813954, "total_median_ns": 881.0, "total_std_ns": 117.13703084220653, "total_mad_ns": 85.0, "total_cv": 0.13142233278231175, "total_min_ns": 595.0, "total_max_ns": 1148.0, "total_p5_ns": 706.25, "total_p25_ns": 809.0, "total_p50_ns": 881.0, "total_p75_ns": 973.75, "total_p95_ns": 1076.0, "total_p99_ns": 1125.0500000000002, "total_ci_low_ns": 867.4872093023256, "total_ci_high_ns": 915.8526162790698, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.245842852882024}, {"serializer": "custom_binary", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "harness", "avg_time_ser_ns": 386.56666666666666, "avg_time_deser_ns": 140.38888888888889, "avg_time_total_ns": 526.9555555555555, "median_size_bytes": 57.0, "avg_ops_per_sec": 1897693.248429132, "min_ops_per_sec": 1610305.958132045, "max_ops_per_sec": 2427184.4660194176, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 386.56666666666666, "ser_median_ns": 394.0, "ser_std_ns": 35.906886447894955, "ser_mad_ns": 25.0, "ser_cv": 0.09288665977725694, "ser_min_ns": 298.0, "ser_max_ns": 465.0, "ser_p5_ns": 323.0, "ser_p25_ns": 360.75, "ser_p50_ns": 394.0, "ser_p75_ns": 411.0, "ser_p95_ns": 439.4, "ser_p99_ns": 456.99, "ser_ci_low_ns": 379.19888888888886, "ser_ci_high_ns": 393.84499999999997, "deser_mean_ns": 140.38888888888889, "deser_median_ns": 140.0, "deser_std_ns": 18.32521100293588, "deser_mad_ns": 13.0, "deser_cv": 0.13053177603990734, "deser_min_ns": 105.0, "deser_max_ns": 187.0, "deser_p5_ns": 113.0, "deser_p25_ns": 126.5, "deser_p50_ns": 140.0, "deser_p75_ns": 152.75, "deser_p95_ns": 170.84999999999997, "deser_p99_ns": 186.11, "deser_ci_low_ns": 136.56583333333333, "deser_ci_high_ns": 144.04472222222222, "total_mean_ns": 526.9555555555555, "total_median_ns": 529.5, "total_std_ns": 46.895272062572815, "total_mad_ns": 29.0, "total_cv": 0.08899284117639172, "total_min_ns": 412.0, "total_max_ns": 621.0, "total_p5_ns": 443.25, "total_p25_ns": 498.0, "total_p50_ns": 529.5, "total_p75_ns": 556.0, "total_p95_ns": 603.55, "total_p99_ns": 611.21, "total_ci_low_ns": 517.0772222222222, "total_ci_high_ns": 536.8113888888889, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.637311147267947}, {"serializer": "cista", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "0.15", "avg_time_ser_ns": 184.54444444444445, "avg_time_deser_ns": 219.16666666666666, "avg_time_total_ns": 403.7111111111111, "median_size_bytes": 64.0, "avg_ops_per_sec": 2477018.7702977927, "min_ops_per_sec": 2000000.0, "max_ops_per_sec": 3154574.1324921134, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 184.54444444444445, "ser_median_ns": 186.5, "ser_std_ns": 19.95228077475997, "ser_mad_ns": 12.5, "ser_cv": 0.10811639892398081, "ser_min_ns": 140.0, "ser_max_ns": 237.0, "ser_p5_ns": 150.9, "ser_p25_ns": 170.5, "ser_p50_ns": 186.5, "ser_p75_ns": 194.75, "ser_p95_ns": 217.0, "ser_p99_ns": 236.11, "ser_ci_low_ns": 180.57694444444445, "ser_ci_high_ns": 188.71138888888888, "deser_mean_ns": 219.16666666666666, "deser_median_ns": 221.0, "deser_std_ns": 24.236313176811656, "deser_mad_ns": 18.5, "deser_cv": 0.11058393844933076, "deser_min_ns": 165.0, "deser_max_ns": 283.0, "deser_p5_ns": 181.45, "deser_p25_ns": 201.0, "deser_p50_ns": 221.0, "deser_p75_ns": 237.0, "deser_p95_ns": 250.29999999999998, "deser_p99_ns": 274.1, "deser_ci_low_ns": 214.1, "deser_ci_high_ns": 223.95583333333332, "total_mean_ns": 403.7111111111111, "total_median_ns": 406.5, "total_std_ns": 39.37239221097039, "total_mad_ns": 28.5, "total_cv": 0.09752615453810026, "total_min_ns": 317.0, "total_max_ns": 500.0, "total_p5_ns": 338.8, "total_p25_ns": 377.25, "total_p50_ns": 406.5, "total_p75_ns": 431.0, "total_p95_ns": 466.4, "total_p99_ns": 498.22, "total_ci_low_ns": 395.1983333333333, "total_ci_high_ns": 411.4683333333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.9958656330749354, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.8705431015127028}, {"serializer": "arduinojson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "7.2.1", "avg_time_ser_ns": 1854.7717391304348, "avg_time_deser_ns": 5072.717391304348, "avg_time_total_ns": 6927.489130434783, "median_size_bytes": 162.0, "avg_ops_per_sec": 144352.4459109816, "min_ops_per_sec": 127129.41774726672, "max_ops_per_sec": 171086.3986313088, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 1854.7717391304348, "ser_median_ns": 1845.0, "ser_std_ns": 106.92927756857704, "ser_mad_ns": 86.5, "ser_cv": 0.057650909442208916, "ser_min_ns": 1639.0, "ser_max_ns": 2085.0, "ser_p5_ns": 1695.1, "ser_p25_ns": 1772.5, "ser_p50_ns": 1845.0, "ser_p75_ns": 1950.5, "ser_p95_ns": 2033.45, "ser_p99_ns": 2051.33, "ser_ci_low_ns": 1833.2054347826088, "ser_ci_high_ns": 1877.1089673913045, "deser_mean_ns": 5072.717391304348, "deser_median_ns": 5085.5, "deser_std_ns": 333.13431030923226, "deser_mad_ns": 235.0, "deser_cv": 0.0656717661583693, "deser_min_ns": 4206.0, "deser_max_ns": 5781.0, "deser_p5_ns": 4565.85, "deser_p25_ns": 4833.5, "deser_p50_ns": 5085.5, "deser_p75_ns": 5306.5, "deser_p95_ns": 5660.8, "deser_p99_ns": 5777.36, "deser_ci_low_ns": 5005.640489130435, "deser_ci_high_ns": 5140.363858695652, "total_mean_ns": 6927.489130434783, "total_median_ns": 6952.0, "total_std_ns": 411.85497006114997, "total_mad_ns": 304.5, "total_cv": 0.0594522722889211, "total_min_ns": 5845.0, "total_max_ns": 7866.0, "total_p5_ns": 6333.3, "total_p25_ns": 6617.5, "total_p50_ns": 6952.0, "total_p75_ns": 7172.25, "total_p95_ns": 7614.0, "total_p99_ns": 7825.05, "total_ci_low_ns": 6845.048913043478, "total_ci_high_ns": 7012.463586956521, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.329459993798654}, {"serializer": "nlohmann_msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 968.7113402061856, "avg_time_deser_ns": 2236.082474226804, "avg_time_total_ns": 3204.7938144329896, "median_size_bytes": 124.0, "avg_ops_per_sec": 312032.55432422436, "min_ops_per_sec": 257864.87880350696, "max_ops_per_sec": 398883.1272437176, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 968.7113402061856, "ser_median_ns": 981.0, "ser_std_ns": 118.34896834176519, "ser_mad_ns": 77.0, "ser_cv": 0.12217155248391659, "ser_min_ns": 692.0, "ser_max_ns": 1236.0, "ser_p5_ns": 748.8, "ser_p25_ns": 899.0, "ser_p50_ns": 981.0, "ser_p75_ns": 1044.0, "ser_p95_ns": 1163.6, "ser_p99_ns": 1185.1199999999997, "ser_ci_low_ns": 945.1845360824742, "ser_ci_high_ns": 992.6020618556701, "deser_mean_ns": 2236.082474226804, "deser_median_ns": 2195.0, "deser_std_ns": 202.57846577021564, "deser_mad_ns": 121.0, "deser_cv": 0.09059525670682765, "deser_min_ns": 1810.0, "deser_max_ns": 2767.0, "deser_p5_ns": 1954.0, "deser_p25_ns": 2086.0, "deser_p50_ns": 2195.0, "deser_p75_ns": 2365.0, "deser_p95_ns": 2592.2, "deser_p99_ns": 2721.8799999999997, "deser_ci_low_ns": 2197.0072164948456, "deser_ci_high_ns": 2275.563917525773, "total_mean_ns": 3204.7938144329896, "total_median_ns": 3178.0, "total_std_ns": 279.0712998106521, "total_mad_ns": 167.0, "total_cv": 0.0870793305184992, "total_min_ns": 2507.0, "total_max_ns": 3878.0, "total_p5_ns": 2767.8, "total_p25_ns": 3021.0, "total_p50_ns": 3178.0, "total_p75_ns": 3380.0, "total_p95_ns": 3705.3999999999996, "total_p99_ns": 3760.879999999999, "total_ci_low_ns": 3151.335567010309, "total_ci_high_ns": 3262.9621134020617, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.305253481449762}, {"serializer": "rapidjson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "1.1.0", "avg_time_ser_ns": 1879.9468085106382, "avg_time_deser_ns": 6512.04255319149, "avg_time_total_ns": 8391.989361702128, "median_size_bytes": 168.0, "avg_ops_per_sec": 119161.25687237195, "min_ops_per_sec": 104854.77613505295, "max_ops_per_sec": 133940.5304045004, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 1879.9468085106382, "ser_median_ns": 1854.0, "ser_std_ns": 130.5481715583629, "ser_mad_ns": 82.5, "ser_cv": 0.06944248154647943, "ser_min_ns": 1660.0, "ser_max_ns": 2215.0, "ser_p5_ns": 1704.25, "ser_p25_ns": 1776.75, "ser_p50_ns": 1854.0, "ser_p75_ns": 1951.25, "ser_p95_ns": 2136.4999999999995, "ser_p99_ns": 2205.7, "ser_ci_low_ns": 1853.1896276595746, "ser_ci_high_ns": 1906.2880319148935, "deser_mean_ns": 6512.04255319149, "deser_median_ns": 6471.0, "deser_std_ns": 379.6477403750821, "deser_mad_ns": 307.0, "deser_cv": 0.058299333469346015, "deser_min_ns": 5779.0, "deser_max_ns": 7487.0, "deser_p5_ns": 5987.4, "deser_p25_ns": 6198.0, "deser_p50_ns": 6471.0, "deser_p75_ns": 6810.25, "deser_p95_ns": 7134.349999999999, "deser_p99_ns": 7345.639999999999, "deser_ci_low_ns": 6439.900531914894, "deser_ci_high_ns": 6586.951063829787, "total_mean_ns": 8391.989361702128, "total_median_ns": 8353.5, "total_std_ns": 454.0494619136822, "total_mad_ns": 369.5, "total_cv": 0.05410510456385855, "total_min_ns": 7466.0, "total_max_ns": 9537.0, "total_p5_ns": 7771.5, "total_p25_ns": 8007.75, "total_p50_ns": 8353.5, "total_p75_ns": 8759.5, "total_p95_ns": 9118.949999999999, "total_p99_ns": 9260.789999999997, "total_ci_low_ns": 8307.402925531915, "total_ci_high_ns": 8480.383244680852, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.593939095471303}, {"serializer": "cereal", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "1.3.2", "avg_time_ser_ns": 350.60714285714283, "avg_time_deser_ns": 441.5952380952381, "avg_time_total_ns": 792.202380952381, "median_size_bytes": 65.0, "avg_ops_per_sec": 1262303.704260275, "min_ops_per_sec": 1074113.8560687434, "max_ops_per_sec": 1477104.8744460857, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 350.60714285714283, "ser_median_ns": 352.0, "ser_std_ns": 26.279781892487147, "ser_mad_ns": 15.0, "ser_cv": 0.07495506702553124, "ser_min_ns": 292.0, "ser_max_ns": 414.0, "ser_p5_ns": 306.65, "ser_p25_ns": 332.75, "ser_p50_ns": 352.0, "ser_p75_ns": 364.25, "ser_p95_ns": 399.85, "ser_p99_ns": 413.17, "ser_ci_low_ns": 344.9166666666667, "ser_ci_high_ns": 356.25, "deser_mean_ns": 441.5952380952381, "deser_median_ns": 437.0, "deser_std_ns": 32.06736848619441, "deser_mad_ns": 19.0, "deser_cv": 0.07261710661671242, "deser_min_ns": 364.0, "deser_max_ns": 520.0, "deser_p5_ns": 397.45, "deser_p25_ns": 421.0, "deser_p50_ns": 437.0, "deser_p75_ns": 459.25, "deser_p95_ns": 498.79999999999995, "deser_p99_ns": 518.34, "deser_ci_low_ns": 434.5473214285714, "deser_ci_high_ns": 448.6193452380952, "total_mean_ns": 792.202380952381, "total_median_ns": 788.5, "total_std_ns": 52.62638940429644, "total_mad_ns": 30.5, "total_cv": 0.06643048628688708, "total_min_ns": 677.0, "total_max_ns": 931.0, "total_p5_ns": 718.05, "total_p25_ns": 758.0, "total_p50_ns": 788.5, "total_p75_ns": 818.0, "total_p95_ns": 895.7, "total_p99_ns": 921.04, "total_ci_low_ns": 781.473511904762, "total_ci_high_ns": 803.1556547619048, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.550236257201389}, {"serializer": "simdjson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.10.1", "avg_time_ser_ns": 98.11494252873563, "avg_time_deser_ns": 3157.287356321839, "avg_time_total_ns": 3255.402298850575, "median_size_bytes": 168.0, "avg_ops_per_sec": 307181.6962078949, "min_ops_per_sec": 261096.60574412532, "max_ops_per_sec": 366972.4770642202, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 98.11494252873563, "ser_median_ns": 98.0, "ser_std_ns": 8.394939349554896, "ser_mad_ns": 5.0, "ser_cv": 0.0855622918710492, "ser_min_ns": 77.0, "ser_max_ns": 120.0, "ser_p5_ns": 86.6, "ser_p25_ns": 92.5, "ser_p50_ns": 98.0, "ser_p75_ns": 103.0, "ser_p95_ns": 113.4, "ser_p99_ns": 115.7, "ser_ci_low_ns": 96.31005747126437, "ser_ci_high_ns": 99.79425287356321, "deser_mean_ns": 3157.287356321839, "deser_median_ns": 3144.0, "deser_std_ns": 226.87979134775196, "deser_mad_ns": 145.0, "deser_cv": 0.07185908843345233, "deser_min_ns": 2648.0, "deser_max_ns": 3726.0, "deser_p5_ns": 2849.2, "deser_p25_ns": 2995.5, "deser_p50_ns": 3144.0, "deser_p75_ns": 3267.0, "deser_p95_ns": 3612.7000000000003, "deser_p99_ns": 3726.0, "deser_ci_low_ns": 3107.7497126436783, "deser_ci_high_ns": 3203.9117816091957, "total_mean_ns": 3255.402298850575, "total_median_ns": 3242.0, "total_std_ns": 231.54905350853917, "total_mad_ns": 150.0, "total_cv": 0.07112763101208568, "total_min_ns": 2725.0, "total_max_ns": 3830.0, "total_p5_ns": 2946.3, "total_p25_ns": 3091.5, "total_p50_ns": 3242.0, "total_p75_ns": 3370.0, "total_p95_ns": 3715.6000000000004, "total_p99_ns": 3827.42, "total_ci_low_ns": 3210.709195402299, "total_ci_high_ns": 3304.778735632184, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.967901411736648}, {"serializer": "flexbuffers", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "flatbuffers-flex", "avg_time_ser_ns": 1442.6774193548388, "avg_time_deser_ns": 1650.5483870967741, "avg_time_total_ns": 3093.2258064516127, "median_size_bytes": 211.0, "avg_ops_per_sec": 323287.0998018563, "min_ops_per_sec": 260824.2044861763, "max_ops_per_sec": 400320.25620496395, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1442.6774193548388, "ser_median_ns": 1423.0, "ser_std_ns": 157.50950014759792, "ser_mad_ns": 96.0, "ser_cv": 0.10917859948070423, "ser_min_ns": 1146.0, "ser_max_ns": 1891.0, "ser_p5_ns": 1238.4, "ser_p25_ns": 1340.0, "ser_p50_ns": 1423.0, "ser_p75_ns": 1523.0, "ser_p95_ns": 1749.8, "ser_p99_ns": 1876.28, "ser_ci_low_ns": 1411.440053763441, "ser_ci_high_ns": 1476.1293010752688, "deser_mean_ns": 1650.5483870967741, "deser_median_ns": 1655.0, "deser_std_ns": 150.37702733672833, "deser_mad_ns": 108.0, "deser_cv": 0.0911073122801528, "deser_min_ns": 1352.0, "deser_max_ns": 2050.0, "deser_p5_ns": 1421.4, "deser_p25_ns": 1528.0, "deser_p50_ns": 1655.0, "deser_p75_ns": 1748.0, "deser_p95_ns": 1891.2, "deser_p99_ns": 2015.04, "deser_ci_low_ns": 1621.4750000000001, "deser_ci_high_ns": 1680.1508064516129, "total_mean_ns": 3093.2258064516127, "total_median_ns": 3079.0, "total_std_ns": 275.3085671621484, "total_mad_ns": 183.0, "total_cv": 0.08900370822845553, "total_min_ns": 2498.0, "total_max_ns": 3834.0, "total_p5_ns": 2717.0, "total_p25_ns": 2897.0, "total_p50_ns": 3079.0, "total_p75_ns": 3309.0, "total_p95_ns": 3567.3999999999996, "total_p99_ns": 3811.92, "total_ci_low_ns": 3039.632258064516, "total_ci_high_ns": 3149.756451612903, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.085359194963925}, {"serializer": "thrift", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "TBinaryProtocol", "avg_time_ser_ns": 413.2386363636364, "avg_time_deser_ns": 229.51136363636363, "avg_time_total_ns": 642.75, "median_size_bytes": 82.0, "avg_ops_per_sec": 1555814.8580318943, "min_ops_per_sec": 1246882.7930174563, "max_ops_per_sec": 2024291.4979757085, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 413.2386363636364, "ser_median_ns": 406.0, "ser_std_ns": 45.25991205800595, "ser_mad_ns": 22.0, "ser_cv": 0.1095248799973745, "ser_min_ns": 317.0, "ser_max_ns": 532.0, "ser_p5_ns": 349.0, "ser_p25_ns": 385.0, "ser_p50_ns": 406.0, "ser_p75_ns": 434.5, "ser_p95_ns": 498.65, "ser_p99_ns": 524.17, "ser_ci_low_ns": 404.2034090909091, "ser_ci_high_ns": 422.6258522727273, "deser_mean_ns": 229.51136363636363, "deser_median_ns": 232.0, "deser_std_ns": 22.23644844615328, "deser_mad_ns": 14.0, "deser_cv": 0.09688604561377871, "deser_min_ns": 177.0, "deser_max_ns": 283.0, "deser_p5_ns": 190.75, "deser_p25_ns": 214.75, "deser_p50_ns": 232.0, "deser_p75_ns": 242.25, "deser_p95_ns": 264.29999999999995, "deser_p99_ns": 277.78, "deser_ci_low_ns": 225.05625, "deser_ci_high_ns": 234.2278409090909, "total_mean_ns": 642.75, "total_median_ns": 643.0, "total_std_ns": 62.55613570979691, "total_mad_ns": 37.5, "total_cv": 0.09732576539836159, "total_min_ns": 494.0, "total_max_ns": 802.0, "total_p5_ns": 546.0, "total_p25_ns": 604.0, "total_p50_ns": 643.0, "total_p75_ns": 678.5, "total_p95_ns": 752.8, "total_p99_ns": 800.26, "total_ci_low_ns": 630.1565340909091, "total_ci_high_ns": 655.3977272727273, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.65699295108574}, {"serializer": "nlohmann_json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 1324.421052631579, "avg_time_deser_ns": 3083.9684210526316, "avg_time_total_ns": 4408.38947368421, "median_size_bytes": 168.0, "avg_ops_per_sec": 226840.21136732117, "min_ops_per_sec": 189681.3353566009, "max_ops_per_sec": 257003.34104343355, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1324.421052631579, "ser_median_ns": 1313.0, "ser_std_ns": 107.40305662944729, "ser_mad_ns": 73.0, "ser_cv": 0.08109434414081619, "ser_min_ns": 1052.0, "ser_max_ns": 1587.0, "ser_p5_ns": 1173.4, "ser_p25_ns": 1255.5, "ser_p50_ns": 1313.0, "ser_p75_ns": 1403.0, "ser_p95_ns": 1512.6, "ser_p99_ns": 1585.12, "ser_ci_low_ns": 1302.8278947368422, "ser_ci_high_ns": 1345.398947368421, "deser_mean_ns": 3083.9684210526316, "deser_median_ns": 3035.0, "deser_std_ns": 210.40166514143587, "deser_mad_ns": 132.0, "deser_cv": 0.06822432541952579, "deser_min_ns": 2719.0, "deser_max_ns": 3685.0, "deser_p5_ns": 2829.6, "deser_p25_ns": 2920.5, "deser_p50_ns": 3035.0, "deser_p75_ns": 3227.5, "deser_p95_ns": 3461.0, "deser_p99_ns": 3633.3, "deser_ci_low_ns": 3042.795, "deser_ci_high_ns": 3125.297894736842, "total_mean_ns": 4408.38947368421, "total_median_ns": 4347.0, "total_std_ns": 292.5335148915871, "total_mad_ns": 202.0, "total_cv": 0.06635836435003302, "total_min_ns": 3891.0, "total_max_ns": 5272.0, "total_p5_ns": 4045.1, "total_p25_ns": 4203.0, "total_p50_ns": 4347.0, "total_p75_ns": 4582.5, "total_p95_ns": 4918.0, "total_p99_ns": 5189.280000000001, "total_ci_low_ns": 4352.659736842105, "total_ci_high_ns": 4469.827894736842, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.35300163927543}, {"serializer": "jsoncons_bson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 1632.4888888888888, "avg_time_deser_ns": 5355.044444444445, "avg_time_total_ns": 6987.533333333334, "median_size_bytes": 140.0, "avg_ops_per_sec": 143112.0185473176, "min_ops_per_sec": 120148.98474107894, "max_ops_per_sec": 161264.31220770843, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 1632.4888888888888, "ser_median_ns": 1623.5, "ser_std_ns": 156.28253329222272, "ser_mad_ns": 91.5, "ser_cv": 0.095732678094117, "ser_min_ns": 1323.0, "ser_max_ns": 2038.0, "ser_p5_ns": 1386.25, "ser_p25_ns": 1533.0, "ser_p50_ns": 1623.5, "ser_p75_ns": 1713.75, "ser_p95_ns": 1911.3, "ser_p99_ns": 2024.65, "ser_ci_low_ns": 1599.9827777777778, "ser_ci_high_ns": 1663.7322222222222, "deser_mean_ns": 5355.044444444445, "deser_median_ns": 5313.5, "deser_std_ns": 340.49029127412, "deser_mad_ns": 215.0, "deser_cv": 0.06358309343769489, "deser_min_ns": 4736.0, "deser_max_ns": 6285.0, "deser_p5_ns": 4841.15, "deser_p25_ns": 5108.25, "deser_p50_ns": 5313.5, "deser_p75_ns": 5554.75, "deser_p95_ns": 5965.7, "deser_p99_ns": 6183.54, "deser_ci_low_ns": 5287.761111111111, "deser_ci_high_ns": 5426.1002777777785, "total_mean_ns": 6987.533333333334, "total_median_ns": 6952.0, "total_std_ns": 448.17014225012167, "total_mad_ns": 308.5, "total_cv": 0.06413853371005337, "total_min_ns": 6201.0, "total_max_ns": 8323.0, "total_p5_ns": 6351.8, "total_p25_ns": 6645.0, "total_p50_ns": 6952.0, "total_p75_ns": 7265.0, "total_p95_ns": 7820.85, "total_p99_ns": 7922.5, "total_ci_low_ns": 6896.096388888889, "total_ci_high_ns": 7080.108055555555, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.821202448872103}, {"serializer": "nlohmann_cbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 945.3369565217391, "avg_time_deser_ns": 2253.0978260869565, "avg_time_total_ns": 3198.4347826086955, "median_size_bytes": 124.0, "avg_ops_per_sec": 312652.9280626394, "min_ops_per_sec": 250689.39583855603, "max_ops_per_sec": 367376.9287288758, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 945.3369565217391, "ser_median_ns": 949.0, "ser_std_ns": 86.67423881495547, "ser_mad_ns": 52.0, "ser_cv": 0.09168607893408037, "ser_min_ns": 740.0, "ser_max_ns": 1160.0, "ser_p5_ns": 811.85, "ser_p25_ns": 896.0, "ser_p50_ns": 949.0, "ser_p75_ns": 1000.25, "ser_p95_ns": 1081.8500000000001, "ser_p99_ns": 1141.8000000000002, "ser_ci_low_ns": 927.6695652173913, "ser_ci_high_ns": 963.2024456521739, "deser_mean_ns": 2253.0978260869565, "deser_median_ns": 2243.5, "deser_std_ns": 203.82377972659458, "deser_mad_ns": 149.5, "deser_cv": 0.09046379494341945, "deser_min_ns": 1812.0, "deser_max_ns": 2849.0, "deser_p5_ns": 1944.7, "deser_p25_ns": 2112.0, "deser_p50_ns": 2243.5, "deser_p75_ns": 2404.0, "deser_p95_ns": 2572.5, "deser_p99_ns": 2703.4000000000005, "deser_ci_low_ns": 2211.4646739130435, "deser_ci_high_ns": 2293.9176630434786, "total_mean_ns": 3198.4347826086955, "total_median_ns": 3182.5, "total_std_ns": 256.12751393058085, "total_mad_ns": 198.5, "total_cv": 0.08007901718780056, "total_min_ns": 2722.0, "total_max_ns": 3989.0, "total_p5_ns": 2840.8, "total_p25_ns": 2984.0, "total_p50_ns": 3182.5, "total_p75_ns": 3382.25, "total_p95_ns": 3605.3, "total_p99_ns": 3829.7500000000005, "total_ci_low_ns": 3147.488858695652, "total_ci_high_ns": 3251.840217391304, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.736427810444997}, {"serializer": "nlohmann_bson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 857.6421052631579, "avg_time_deser_ns": 2193.0421052631577, "avg_time_total_ns": 3050.684210526316, "median_size_bytes": 140.0, "avg_ops_per_sec": 327795.3177026724, "min_ops_per_sec": 275938.1898454746, "max_ops_per_sec": 396982.9297340214, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 857.6421052631579, "ser_median_ns": 850.0, "ser_std_ns": 100.37397261491367, "ser_mad_ns": 59.0, "ser_cv": 0.11703480041259756, "ser_min_ns": 632.0, "ser_max_ns": 1137.0, "ser_p5_ns": 672.7, "ser_p25_ns": 799.5, "ser_p50_ns": 850.0, "ser_p75_ns": 927.0, "ser_p95_ns": 1009.1, "ser_p99_ns": 1094.7, "ser_ci_low_ns": 837.9557894736843, "ser_ci_high_ns": 878.8950000000001, "deser_mean_ns": 2193.0421052631577, "deser_median_ns": 2182.0, "deser_std_ns": 178.1803363192467, "deser_mad_ns": 143.0, "deser_cv": 0.0812480234153396, "deser_min_ns": 1745.0, "deser_max_ns": 2574.0, "deser_p5_ns": 1938.0, "deser_p25_ns": 2045.0, "deser_p50_ns": 2182.0, "deser_p75_ns": 2322.0, "deser_p95_ns": 2503.3, "deser_p99_ns": 2557.08, "deser_ci_low_ns": 2157.2599999999998, "deser_ci_high_ns": 2227.954736842105, "total_mean_ns": 3050.684210526316, "total_median_ns": 3020.0, "total_std_ns": 231.80114658161415, "total_mad_ns": 165.0, "total_cv": 0.07598333048756394, "total_min_ns": 2519.0, "total_max_ns": 3624.0, "total_p5_ns": 2726.1, "total_p25_ns": 2873.5, "total_p50_ns": 3020.0, "total_p75_ns": 3198.0, "total_p95_ns": 3450.5, "total_p99_ns": 3522.4800000000005, "total_ci_low_ns": 3004.8192105263156, "total_ci_high_ns": 3097.051052631579, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.36948268789356}, {"serializer": "zpp_bits", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "4.4.25", "avg_time_ser_ns": 322.61538461538464, "avg_time_deser_ns": 150.30769230769232, "avg_time_total_ns": 472.9230769230769, "median_size_bytes": 57.0, "avg_ops_per_sec": 2114508.783344177, "min_ops_per_sec": 1686340.6408094435, "max_ops_per_sec": 2832861.1898017, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 322.61538461538464, "ser_median_ns": 321.0, "ser_std_ns": 31.24518424432057, "ser_mad_ns": 20.0, "ser_cv": 0.09684964119603419, "ser_min_ns": 244.0, "ser_max_ns": 395.0, "ser_p5_ns": 277.5, "ser_p25_ns": 301.5, "ser_p50_ns": 321.0, "ser_p75_ns": 341.5, "ser_p95_ns": 384.0, "ser_p99_ns": 391.4, "ser_ci_low_ns": 316.26153846153846, "ser_ci_high_ns": 329.2857142857143, "deser_mean_ns": 150.30769230769232, "deser_median_ns": 149.0, "deser_std_ns": 18.72947309438155, "deser_mad_ns": 12.0, "deser_cv": 0.12460754873437059, "deser_min_ns": 99.0, "deser_max_ns": 198.0, "deser_p5_ns": 122.0, "deser_p25_ns": 137.5, "deser_p50_ns": 149.0, "deser_p75_ns": 162.0, "deser_p95_ns": 180.5, "deser_p99_ns": 189.89999999999995, "deser_ci_low_ns": 146.8131868131868, "deser_ci_high_ns": 154.00027472527472, "total_mean_ns": 472.9230769230769, "total_median_ns": 474.0, "total_std_ns": 45.46579441226626, "total_mad_ns": 29.0, "total_cv": 0.09613782162645762, "total_min_ns": 353.0, "total_max_ns": 593.0, "total_p5_ns": 399.5, "total_p25_ns": 444.5, "total_p50_ns": 474.0, "total_p75_ns": 502.0, "total_p95_ns": 547.5, "total_p99_ns": 571.3999999999999, "total_ci_low_ns": 463.40576923076924, "total_ci_high_ns": 482.2766483516483, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.3342261990651725}, {"serializer": "avro_c", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "avro-c", "avg_time_ser_ns": 949.6404494382023, "avg_time_deser_ns": 969.370786516854, "avg_time_total_ns": 1919.0112359550562, "median_size_bytes": 44.0, "avg_ops_per_sec": 521101.69094571174, "min_ops_per_sec": 439560.43956043955, "max_ops_per_sec": 649772.579597141, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 949.6404494382023, "ser_median_ns": 964.0, "ser_std_ns": 97.45631272885714, "ser_mad_ns": 58.0, "ser_cv": 0.10262443305412203, "ser_min_ns": 709.0, "ser_max_ns": 1138.0, "ser_p5_ns": 763.2, "ser_p25_ns": 891.0, "ser_p50_ns": 964.0, "ser_p75_ns": 1011.0, "ser_p95_ns": 1086.0, "ser_p99_ns": 1125.68, "ser_ci_low_ns": 928.3794943820225, "ser_ci_high_ns": 968.4494382022472, "deser_mean_ns": 969.370786516854, "deser_median_ns": 969.0, "deser_std_ns": 84.42363171186024, "deser_mad_ns": 54.0, "deser_cv": 0.087091165616009, "deser_min_ns": 794.0, "deser_max_ns": 1167.0, "deser_p5_ns": 831.2, "deser_p25_ns": 913.0, "deser_p50_ns": 969.0, "deser_p75_ns": 1011.0, "deser_p95_ns": 1116.9999999999998, "deser_p99_ns": 1159.96, "deser_ci_low_ns": 952.1879213483146, "deser_ci_high_ns": 986.7991573033707, "total_mean_ns": 1919.0112359550562, "total_median_ns": 1935.0, "total_std_ns": 166.13408429105624, "total_mad_ns": 102.0, "total_cv": 0.08657275224778681, "total_min_ns": 1539.0, "total_max_ns": 2275.0, "total_p5_ns": 1604.0, "total_p25_ns": 1833.0, "total_p50_ns": 1935.0, "total_p75_ns": 2035.0, "total_p95_ns": 2146.4, "total_p99_ns": 2253.0, "total_ci_low_ns": 1885.2539325842697, "total_ci_high_ns": 1953.1890449438201, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.666878813417876}, {"serializer": "nlohmann_ubjson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 871.0851063829788, "avg_time_deser_ns": 2543.531914893617, "avg_time_total_ns": 3414.6170212765956, "median_size_bytes": 137.0, "avg_ops_per_sec": 292858.61160093965, "min_ops_per_sec": 246244.7672986949, "max_ops_per_sec": 343406.5934065934, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 871.0851063829788, "ser_median_ns": 868.5, "ser_std_ns": 89.41742867019025, "ser_mad_ns": 59.0, "ser_cv": 0.10265062278642294, "ser_min_ns": 676.0, "ser_max_ns": 1086.0, "ser_p5_ns": 708.95, "ser_p25_ns": 812.25, "ser_p50_ns": 868.5, "ser_p75_ns": 929.75, "ser_p95_ns": 1011.35, "ser_p99_ns": 1061.8199999999997, "ser_ci_low_ns": 853.7212765957446, "ser_ci_high_ns": 889.1188829787234, "deser_mean_ns": 2543.531914893617, "deser_median_ns": 2525.5, "deser_std_ns": 193.68979201193616, "deser_mad_ns": 127.0, "deser_cv": 0.0761499357950998, "deser_min_ns": 2205.0, "deser_max_ns": 3060.0, "deser_p5_ns": 2266.9, "deser_p25_ns": 2400.0, "deser_p50_ns": 2525.5, "deser_p75_ns": 2653.0, "deser_p95_ns": 2906.4, "deser_p99_ns": 2981.879999999999, "deser_ci_low_ns": 2505.9215425531916, "deser_ci_high_ns": 2583.5446808510637, "total_mean_ns": 3414.6170212765956, "total_median_ns": 3376.5, "total_std_ns": 249.20527904723502, "total_mad_ns": 160.5, "total_cv": 0.07298191202539799, "total_min_ns": 2912.0, "total_max_ns": 4061.0, "total_p5_ns": 3060.85, "total_p25_ns": 3249.75, "total_p50_ns": 3376.5, "total_p75_ns": 3586.0, "total_p95_ns": 3838.8, "total_p99_ns": 4053.56, "total_ci_low_ns": 3363.123670212766, "total_ci_high_ns": 3467.9837765957445, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.277363941275574}, {"serializer": "msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "msgpack-cxx", "avg_time_ser_ns": 421.6263736263736, "avg_time_deser_ns": 918.7472527472528, "avg_time_total_ns": 1340.3736263736264, "median_size_bytes": 124.0, "avg_ops_per_sec": 746060.6358732189, "min_ops_per_sec": 622665.0062266501, "max_ops_per_sec": 1029866.1174047374, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 421.6263736263736, "ser_median_ns": 424.0, "ser_std_ns": 49.28593406544404, "ser_mad_ns": 34.0, "ser_cv": 0.11689480817231568, "ser_min_ns": 282.0, "ser_max_ns": 536.0, "ser_p5_ns": 332.5, "ser_p25_ns": 389.0, "ser_p50_ns": 424.0, "ser_p75_ns": 452.5, "ser_p95_ns": 498.0, "ser_p99_ns": 533.3, "ser_ci_low_ns": 411.8675824175824, "ser_ci_high_ns": 430.9137362637362, "deser_mean_ns": 918.7472527472528, "deser_median_ns": 914.0, "deser_std_ns": 111.3075412645915, "deser_mad_ns": 80.0, "deser_cv": 0.1211514275898599, "deser_min_ns": 666.0, "deser_max_ns": 1180.0, "deser_p5_ns": 728.5, "deser_p25_ns": 854.0, "deser_p50_ns": 914.0, "deser_p75_ns": 1006.0, "deser_p95_ns": 1099.0, "deser_p99_ns": 1129.5999999999997, "deser_ci_low_ns": 895.8873626373627, "deser_ci_high_ns": 941.4403846153846, "total_mean_ns": 1340.3736263736264, "total_median_ns": 1339.0, "total_std_ns": 131.0622963285991, "total_mad_ns": 87.0, "total_cv": 0.09778042013791889, "total_min_ns": 971.0, "total_max_ns": 1606.0, "total_p5_ns": 1139.0, "total_p25_ns": 1267.0, "total_p50_ns": 1339.0, "total_p75_ns": 1426.5, "total_p95_ns": 1555.0, "total_p99_ns": 1588.0, "total_ci_low_ns": 1312.2247252747254, "total_ci_high_ns": 1366.4989010989011, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.098469413104459}, {"serializer": "yas", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "7.x", "avg_time_ser_ns": 430.7529411764706, "avg_time_deser_ns": 233.8470588235294, "avg_time_total_ns": 664.6, "median_size_bytes": 72.0, "avg_ops_per_sec": 1504664.459825459, "min_ops_per_sec": 1154734.4110854503, "max_ops_per_sec": 2083333.3333333333, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 430.7529411764706, "ser_median_ns": 440.0, "ser_std_ns": 82.130834341189, "ser_mad_ns": 57.0, "ser_cv": 0.1906680755722146, "ser_min_ns": 272.0, "ser_max_ns": 605.0, "ser_p5_ns": 303.6, "ser_p25_ns": 369.0, "ser_p50_ns": 440.0, "ser_p75_ns": 488.0, "ser_p95_ns": 569.6, "ser_p99_ns": 600.8, "ser_ci_low_ns": 413.0585294117647, "ser_ci_high_ns": 447.8129411764706, "deser_mean_ns": 233.8470588235294, "deser_median_ns": 233.0, "deser_std_ns": 23.2565944986593, "deser_mad_ns": 16.0, "deser_cv": 0.09945215738723351, "deser_min_ns": 170.0, "deser_max_ns": 277.0, "deser_p5_ns": 194.2, "deser_p25_ns": 218.0, "deser_p50_ns": 233.0, "deser_p75_ns": 249.0, "deser_p95_ns": 269.4, "deser_p99_ns": 276.15999999999997, "deser_ci_low_ns": 229.035, "deser_ci_high_ns": 238.73029411764705, "total_mean_ns": 664.6, "total_median_ns": 670.0, "total_std_ns": 90.17340437813611, "total_mad_ns": 64.0, "total_cv": 0.13568071678925084, "total_min_ns": 480.0, "total_max_ns": 866.0, "total_p5_ns": 508.2, "total_p25_ns": 591.0, "total_p50_ns": 670.0, "total_p75_ns": 725.0, "total_p95_ns": 809.8, "total_p99_ns": 837.4399999999998, "total_ci_low_ns": 645.41, "total_ci_high_ns": 683.2605882352941, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.878377891277015}, {"serializer": "flatbuffers", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "flatbuffers", "avg_time_ser_ns": 371.29473684210524, "avg_time_deser_ns": 252.93684210526317, "avg_time_total_ns": 624.2315789473685, "median_size_bytes": 76.0, "avg_ops_per_sec": 1601969.5794408282, "min_ops_per_sec": 1121076.2331838566, "max_ops_per_sec": 2336448.5981308413, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 371.29473684210524, "ser_median_ns": 374.0, "ser_std_ns": 86.47824393529358, "ser_mad_ns": 60.0, "ser_cv": 0.2329099643878573, "ser_min_ns": 212.0, "ser_max_ns": 587.0, "ser_p5_ns": 230.0, "ser_p25_ns": 302.0, "ser_p50_ns": 374.0, "ser_p75_ns": 427.5, "ser_p95_ns": 505.0, "ser_p99_ns": 573.84, "ser_ci_low_ns": 354.2197368421053, "ser_ci_high_ns": 388.1271052631579, "deser_mean_ns": 252.93684210526317, "deser_median_ns": 261.0, "deser_std_ns": 48.64937744814239, "deser_mad_ns": 32.0, "deser_cv": 0.19233804392914922, "deser_min_ns": 150.0, "deser_max_ns": 374.0, "deser_p5_ns": 161.1, "deser_p25_ns": 212.5, "deser_p50_ns": 261.0, "deser_p75_ns": 286.5, "deser_p95_ns": 320.6, "deser_p99_ns": 337.3400000000001, "deser_ci_low_ns": 243.31526315789475, "deser_ci_high_ns": 262.4528947368421, "total_mean_ns": 624.2315789473685, "total_median_ns": 624.0, "total_std_ns": 99.35338311724522, "total_mad_ns": 73.0, "total_cv": 0.1591610973683568, "total_min_ns": 428.0, "total_max_ns": 892.0, "total_p5_ns": 474.4, "total_p25_ns": 544.0, "total_p50_ns": 624.0, "total_p75_ns": 695.0, "total_p95_ns": 780.8, "total_p99_ns": 858.1600000000001, "total_ci_low_ns": 603.7252631578947, "total_ci_high_ns": 644.7084210526315, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.6987889865891495}, {"serializer": "yyjson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "0.10.0", "avg_time_ser_ns": 265.8478260869565, "avg_time_deser_ns": 3080.913043478261, "avg_time_total_ns": 3346.7608695652175, "median_size_bytes": 168.0, "avg_ops_per_sec": 298796.3702736585, "min_ops_per_sec": 250626.5664160401, "max_ops_per_sec": 368459.83787767135, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 265.8478260869565, "ser_median_ns": 264.0, "ser_std_ns": 36.18904417498606, "ser_mad_ns": 23.0, "ser_cv": 0.13612691406078656, "ser_min_ns": 185.0, "ser_max_ns": 361.0, "ser_p5_ns": 207.1, "ser_p25_ns": 244.25, "ser_p50_ns": 264.0, "ser_p75_ns": 287.25, "ser_p95_ns": 331.25, "ser_p99_ns": 359.18, "ser_ci_low_ns": 258.6277173913044, "ser_ci_high_ns": 272.94972826086956, "deser_mean_ns": 3080.913043478261, "deser_median_ns": 3062.5, "deser_std_ns": 220.6581390601593, "deser_mad_ns": 150.5, "deser_cv": 0.07162102141352315, "deser_min_ns": 2528.0, "deser_max_ns": 3702.0, "deser_p5_ns": 2749.05, "deser_p25_ns": 2922.75, "deser_p50_ns": 3062.5, "deser_p75_ns": 3223.5, "deser_p95_ns": 3440.05, "deser_p99_ns": 3632.84, "deser_ci_low_ns": 3035.6179347826087, "deser_ci_high_ns": 3126.561141304348, "total_mean_ns": 3346.7608695652175, "total_median_ns": 3338.0, "total_std_ns": 235.42364757304688, "total_mad_ns": 156.5, "total_cv": 0.0703437313714114, "total_min_ns": 2714.0, "total_max_ns": 3990.0, "total_p5_ns": 3006.9, "total_p25_ns": 3191.0, "total_p50_ns": 3338.0, "total_p75_ns": 3498.0, "total_p95_ns": 3725.1500000000005, "total_p99_ns": 3953.6000000000004, "total_ci_low_ns": 3300.2902173913044, "total_ci_high_ns": 3393.2972826086957, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.974446627522497}, {"serializer": "jsoncons_cbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 61055.54255319149, "avg_time_deser_ns": 368777.8829787234, "avg_time_total_ns": 429833.42553191487, "median_size_bytes": 12030.0, "avg_ops_per_sec": 2326.482633970379, "min_ops_per_sec": 2199.2038881924746, "max_ops_per_sec": 2449.2515087389293, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 61055.54255319149, "ser_median_ns": 60573.5, "ser_std_ns": 4353.645523883648, "ser_mad_ns": 3452.5, "ser_cv": 0.07130631129992432, "ser_min_ns": 53602.0, "ser_max_ns": 70501.0, "ser_p5_ns": 54959.15, "ser_p25_ns": 57387.5, "ser_p50_ns": 60573.5, "ser_p75_ns": 64740.25, "ser_p95_ns": 68365.9, "ser_p99_ns": 70421.02, "ser_ci_low_ns": 60186.81063829787, "ser_ci_high_ns": 61934.24547872341, "deser_mean_ns": 368777.8829787234, "deser_median_ns": 367842.5, "deser_std_ns": 8429.294030129322, "deser_mad_ns": 5792.0, "deser_cv": 0.02285737409750153, "deser_min_ns": 350872.0, "deser_max_ns": 391994.0, "deser_p5_ns": 356642.95, "deser_p25_ns": 363249.5, "deser_p50_ns": 367842.5, "deser_p75_ns": 374922.0, "deser_p95_ns": 384256.2, "deser_p99_ns": 387867.58999999997, "deser_ci_low_ns": 367125.15664893616, "deser_ci_high_ns": 370457.79468085105, "total_mean_ns": 429833.42553191487, "total_median_ns": 428464.0, "total_std_ns": 9695.814897503611, "total_mad_ns": 6585.5, "total_cv": 0.02255714498123344, "total_min_ns": 408288.0, "total_max_ns": 454710.0, "total_p5_ns": 416022.1, "total_p25_ns": 422956.0, "total_p50_ns": 428464.0, "total_p75_ns": 435248.0, "total_p95_ns": 447891.5, "total_p99_ns": 452025.08999999997, "total_ci_low_ns": 427939.7268617021, "total_ci_high_ns": 431767.70585106383, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "capnproto", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 55.954222118265825}, {"serializer": "cista", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "0.15", "avg_time_ser_ns": 5129.292682926829, "avg_time_deser_ns": 13972.390243902439, "avg_time_total_ns": 19101.682926829268, "median_size_bytes": 6696.0, "avg_ops_per_sec": 52351.40818903711, "min_ops_per_sec": 36971.310263235726, "max_ops_per_sec": 62088.66261020738, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 5129.292682926829, "ser_median_ns": 3338.0, "ser_std_ns": 3360.0943897963434, "ser_mad_ns": 271.5, "ser_cv": 0.6550794812276218, "ser_min_ns": 2943.0, "ser_max_ns": 13194.0, "ser_p5_ns": 3040.35, "ser_p25_ns": 3188.25, "ser_p50_ns": 3338.0, "ser_p75_ns": 5841.0, "ser_p95_ns": 12529.900000000001, "ser_p99_ns": 13083.84, "ser_ci_low_ns": 4424.628048780488, "ser_ci_high_ns": 5839.538414634147, "deser_mean_ns": 13972.390243902439, "deser_median_ns": 13892.0, "deser_std_ns": 428.33469537461957, "deser_mad_ns": 279.5, "deser_cv": 0.030655792451942512, "deser_min_ns": 13138.0, "deser_max_ns": 15162.0, "deser_p5_ns": 13409.75, "deser_p25_ns": 13656.0, "deser_p50_ns": 13892.0, "deser_p75_ns": 14203.75, "deser_p95_ns": 14787.7, "deser_p99_ns": 15136.08, "deser_ci_low_ns": 13885.958841463415, "deser_ci_high_ns": 14072.115853658537, "total_mean_ns": 19101.682926829268, "total_median_ns": 17561.5, "total_std_ns": 3407.035193801742, "total_mad_ns": 736.5, "total_cv": 0.17836309014513013, "total_min_ns": 16106.0, "total_max_ns": 27048.0, "total_p5_ns": 16609.0, "total_p25_ns": 16930.75, "total_p50_ns": 17561.5, "total_p75_ns": 19475.75, "total_p95_ns": 26595.4, "total_p99_ns": 26890.86, "total_ci_low_ns": 18397.716158536587, "total_ci_high_ns": 19867.368292682928, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "capnproto", "effect_vs_fastest_cliffs_delta": 0.9969929836284664, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.280350460415694}, {"serializer": "simdjson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.10.1", "avg_time_ser_ns": 3492.3972602739727, "avg_time_deser_ns": 222748.1780821918, "avg_time_total_ns": 226240.57534246575, "median_size_bytes": 16546.0, "avg_ops_per_sec": 4420.073625105824, "min_ops_per_sec": 4089.9293669198332, "max_ops_per_sec": 4708.408275498385, "runs": 73, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 26, "ser_mean_ns": 3492.3972602739727, "ser_median_ns": 3109.0, "ser_std_ns": 931.8794888069253, "ser_mad_ns": 137.0, "ser_cv": 0.26683089561633117, "ser_min_ns": 2897.0, "ser_max_ns": 6449.0, "ser_p5_ns": 2931.0, "ser_p25_ns": 2987.0, "ser_p50_ns": 3109.0, "ser_p75_ns": 3482.0, "ser_p95_ns": 5912.8, "ser_p99_ns": 6363.32, "ser_ci_low_ns": 3297.8729452054795, "ser_ci_high_ns": 3719.8232876712327, "deser_mean_ns": 222748.1780821918, "deser_median_ns": 222889.0, "deser_std_ns": 6872.3900345724505, "deser_mad_ns": 4012.0, "deser_cv": 0.03085273286516673, "deser_min_ns": 209139.0, "deser_max_ns": 240579.0, "deser_p5_ns": 210799.8, "deser_p25_ns": 218340.0, "deser_p50_ns": 222889.0, "deser_p75_ns": 226867.0, "deser_p95_ns": 234106.99999999997, "deser_p99_ns": 240452.28, "deser_ci_low_ns": 221141.45273972602, "deser_ci_high_ns": 224273.2167808219, "total_mean_ns": 226240.57534246575, "total_median_ns": 226526.0, "total_std_ns": 6838.934933562, "total_mad_ns": 4290.0, "total_cv": 0.030228595923652252, "total_min_ns": 212386.0, "total_max_ns": 244503.0, "total_p5_ns": 215410.0, "total_p25_ns": 221385.0, "total_p50_ns": 226526.0, "total_p75_ns": 230059.0, "total_p95_ns": 237417.8, "total_p99_ns": 243738.36000000002, "total_ci_low_ns": 224764.43184931506, "total_ci_high_ns": 227762.876369863, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "capnproto", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 41.6670521854523}, {"serializer": "flexbuffers", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "flatbuffers-flex", "avg_time_ser_ns": 63574.32608695652, "avg_time_deser_ns": 120096.75, "avg_time_total_ns": 183671.0760869565, "median_size_bytes": 14490.0, "avg_ops_per_sec": 5444.515387532025, "min_ops_per_sec": 5046.70727583788, "max_ops_per_sec": 5724.295053064215, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 63574.32608695652, "ser_median_ns": 61995.0, "ser_std_ns": 4707.148662392282, "ser_mad_ns": 2295.0, "ser_cv": 0.07404166040161994, "ser_min_ns": 55313.0, "ser_max_ns": 75291.0, "ser_p5_ns": 57837.7, "ser_p25_ns": 60131.0, "ser_p50_ns": 61995.0, "ser_p75_ns": 65783.0, "ser_p95_ns": 72768.15000000001, "ser_p99_ns": 74492.93000000001, "ser_ci_low_ns": 62630.476358695654, "ser_ci_high_ns": 64563.15326086956, "deser_mean_ns": 120096.75, "deser_median_ns": 119769.0, "deser_std_ns": 2368.127691022807, "deser_mad_ns": 1576.0, "deser_cv": 0.019718499385060855, "deser_min_ns": 114928.0, "deser_max_ns": 126488.0, "deser_p5_ns": 116587.9, "deser_p25_ns": 118535.0, "deser_p50_ns": 119769.0, "deser_p75_ns": 121526.0, "deser_p95_ns": 124177.05, "deser_p99_ns": 125852.82, "deser_ci_low_ns": 119630.89048913043, "deser_ci_high_ns": 120565.20516304347, "total_mean_ns": 183671.0760869565, "total_median_ns": 182356.5, "total_std_ns": 5377.074874217242, "total_mad_ns": 3257.5, "total_cv": 0.029275566892587597, "total_min_ns": 174694.0, "total_max_ns": 198149.0, "total_p5_ns": 176298.85, "total_p25_ns": 179809.25, "total_p50_ns": 182356.5, "total_p75_ns": 187599.25, "total_p95_ns": 193690.6, "total_p99_ns": 198010.68, "total_ci_low_ns": 182553.12989130436, "total_ci_high_ns": 184791.05326086958, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "capnproto", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 39.63151930583034}, {"serializer": "nlohmann_ubjson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 29425.0, "avg_time_deser_ns": 201548.5, "avg_time_total_ns": 230973.5, "median_size_bytes": 13340.0, "avg_ops_per_sec": 4329.501003361857, "min_ops_per_sec": 4045.8311755567065, "max_ops_per_sec": 4563.813522579468, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 29425.0, "ser_median_ns": 28159.5, "ser_std_ns": 4135.584385613031, "ser_mad_ns": 2551.0, "ser_cv": 0.14054662313043437, "ser_min_ns": 24589.0, "ser_max_ns": 40059.0, "ser_p5_ns": 24992.5, "ser_p25_ns": 25917.5, "ser_p50_ns": 28159.5, "ser_p75_ns": 33819.75, "ser_p95_ns": 36291.5, "ser_p99_ns": 38930.399999999994, "ser_ci_low_ns": 28648.080729166668, "ser_ci_high_ns": 30307.19947916667, "deser_mean_ns": 201548.5, "deser_median_ns": 201175.5, "deser_std_ns": 4159.342708700625, "deser_mad_ns": 2950.5, "deser_cv": 0.02063693209674408, "deser_min_ns": 192935.0, "deser_max_ns": 211370.0, "deser_p5_ns": 194898.0, "deser_p25_ns": 198404.0, "deser_p50_ns": 201175.5, "deser_p75_ns": 204435.0, "deser_p95_ns": 208749.5, "deser_p99_ns": 210884.55, "deser_ci_low_ns": 200710.73723958334, "deser_ci_high_ns": 202404.746875, "total_mean_ns": 230973.5, "total_median_ns": 229866.5, "total_std_ns": 6307.284910908054, "total_mad_ns": 3847.0, "total_cv": 0.027307396350265526, "total_min_ns": 219115.0, "total_max_ns": 247168.0, "total_p5_ns": 222843.25, "total_p25_ns": 226476.5, "total_p50_ns": 229866.5, "total_p75_ns": 234295.0, "total_p95_ns": 243437.75, "total_p99_ns": 246496.35, "total_ci_low_ns": 229768.05390625, "total_ci_high_ns": 232321.3453125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "capnproto", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 43.62279588451118}, {"serializer": "zpp_bits", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "4.4.25", "avg_time_ser_ns": 8427.455555555556, "avg_time_deser_ns": 4234.722222222223, "avg_time_total_ns": 12662.177777777777, "median_size_bytes": 5362.0, "avg_ops_per_sec": 78975.35617885637, "min_ops_per_sec": 46287.7244954638, "max_ops_per_sec": 110668.43736166446, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 8427.455555555556, "ser_median_ns": 5980.0, "ser_std_ns": 4126.546569213794, "ser_mad_ns": 376.0, "ser_cv": 0.4896550972011342, "ser_min_ns": 5243.0, "ser_max_ns": 17292.0, "ser_p5_ns": 5473.15, "ser_p25_ns": 5694.5, "ser_p50_ns": 5980.0, "ser_p75_ns": 12840.75, "ser_p95_ns": 16062.0, "ser_p99_ns": 17214.57, "ser_ci_low_ns": 7653.385833333333, "ser_ci_high_ns": 9325.482222222223, "deser_mean_ns": 4234.722222222223, "deser_median_ns": 4218.0, "deser_std_ns": 170.01077479256435, "deser_mad_ns": 99.0, "deser_cv": 0.04014685400152388, "deser_min_ns": 3793.0, "deser_max_ns": 4764.0, "deser_p5_ns": 3984.9, "deser_p25_ns": 4125.0, "deser_p50_ns": 4218.0, "deser_p75_ns": 4336.0, "deser_p95_ns": 4491.65, "deser_p99_ns": 4746.2, "deser_ci_low_ns": 4199.4141666666665, "deser_ci_high_ns": 4269.425, "total_mean_ns": 12662.177777777777, "total_median_ns": 10228.0, "total_std_ns": 4141.722307917941, "total_mad_ns": 496.0, "total_cv": 0.3270939944617344, "total_min_ns": 9036.0, "total_max_ns": 21604.0, "total_p5_ns": 9600.25, "total_p25_ns": 9843.75, "total_p50_ns": 10228.0, "total_p75_ns": 17302.0, "total_p95_ns": 20381.65, "total_p99_ns": 21443.8, "total_ci_low_ns": 11880.072777777777, "total_ci_high_ns": 13542.734722222223, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "capnproto", "effect_vs_fastest_cliffs_delta": 0.7028919330289193, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.0363081541799832}, {"serializer": "thrift", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "TBinaryProtocol", "avg_time_ser_ns": 13609.633333333333, "avg_time_deser_ns": 7878.622222222222, "avg_time_total_ns": 21488.255555555555, "median_size_bytes": 7860.0, "avg_ops_per_sec": 46537.0489202629, "min_ops_per_sec": 29831.155658970227, "max_ops_per_sec": 65159.314524011206, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 13609.633333333333, "ser_median_ns": 12144.0, "ser_std_ns": 5045.664570097044, "ser_mad_ns": 3525.0, "ser_cv": 0.3707421387862796, "ser_min_ns": 7705.0, "ser_max_ns": 25965.0, "ser_p5_ns": 7961.7, "ser_p25_ns": 9086.25, "ser_p50_ns": 12144.0, "ser_p75_ns": 16893.25, "ser_p95_ns": 23765.8, "ser_p99_ns": 25325.09, "ser_ci_low_ns": 12604.996666666668, "ser_ci_high_ns": 14648.390277777778, "deser_mean_ns": 7878.622222222222, "deser_median_ns": 7872.0, "deser_std_ns": 269.70956404774836, "deser_mad_ns": 162.0, "deser_cv": 0.03423308751713124, "deser_min_ns": 7216.0, "deser_max_ns": 8572.0, "deser_p5_ns": 7477.85, "deser_p25_ns": 7711.0, "deser_p50_ns": 7872.0, "deser_p75_ns": 8033.75, "deser_p95_ns": 8422.6, "deser_p99_ns": 8558.65, "deser_ci_low_ns": 7822.8997222222215, "deser_ci_high_ns": 7932.781944444444, "total_mean_ns": 21488.255555555555, "total_median_ns": 20074.5, "total_std_ns": 5036.363920597788, "total_mad_ns": 3374.5, "total_cv": 0.23437751415310634, "total_min_ns": 15347.0, "total_max_ns": 33522.0, "total_p5_ns": 15786.7, "total_p25_ns": 17067.25, "total_p50_ns": 20074.5, "total_p75_ns": 24657.75, "total_p95_ns": 31639.05, "total_p99_ns": 33249.659999999996, "total_ci_low_ns": 20524.69277777778, "total_ci_high_ns": 22567.222777777777, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "capnproto", "effect_vs_fastest_cliffs_delta": 0.9843226788432268, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.00872416735642}, {"serializer": "msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "msgpack-cxx", "avg_time_ser_ns": 20858.73404255319, "avg_time_deser_ns": 20584.31914893617, "avg_time_total_ns": 41443.05319148936, "median_size_bytes": 12031.0, "avg_ops_per_sec": 24129.496332701605, "min_ops_per_sec": 19261.51356973631, "max_ops_per_sec": 28280.54298642534, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 20858.73404255319, "ser_median_ns": 18601.0, "ser_std_ns": 4311.880938706603, "ser_mad_ns": 1405.0, "ser_cv": 0.2067182471337945, "ser_min_ns": 16602.0, "ser_max_ns": 31077.0, "ser_p5_ns": 16932.35, "ser_p25_ns": 17485.0, "ser_p50_ns": 18601.0, "ser_p75_ns": 25735.0, "ser_p95_ns": 28486.65, "ser_p99_ns": 29520.17999999999, "ser_ci_low_ns": 19968.8085106383, "ser_ci_high_ns": 21780.270212765958, "deser_mean_ns": 20584.31914893617, "deser_median_ns": 20576.5, "deser_std_ns": 842.7686606230088, "deser_mad_ns": 433.5, "deser_cv": 0.040942265543262545, "deser_min_ns": 18758.0, "deser_max_ns": 22460.0, "deser_p5_ns": 19042.5, "deser_p25_ns": 20182.75, "deser_p50_ns": 20576.5, "deser_p75_ns": 21045.75, "deser_p95_ns": 22196.6, "deser_p99_ns": 22395.829999999998, "deser_ci_low_ns": 20413.957180851063, "deser_ci_high_ns": 20764.25744680851, "total_mean_ns": 41443.05319148936, "total_median_ns": 39675.0, "total_std_ns": 4463.504133265464, "total_mad_ns": 2039.0, "total_cv": 0.10770210661462747, "total_min_ns": 35360.0, "total_max_ns": 51917.0, "total_p5_ns": 36425.4, "total_p25_ns": 38052.25, "total_p50_ns": 39675.0, "total_p75_ns": 45944.75, "total_p95_ns": 49270.1, "total_p99_ns": 51133.009999999995, "total_ci_low_ns": 40524.435106382974, "total_ci_high_ns": 42337.19707446808, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "capnproto", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.549016177024608}, {"serializer": "cereal", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "1.3.2", "avg_time_ser_ns": 14545.097826086956, "avg_time_deser_ns": 11098.326086956522, "avg_time_total_ns": 25643.42391304348, "median_size_bytes": 6162.0, "avg_ops_per_sec": 38996.352569414565, "min_ops_per_sec": 28463.268152449265, "max_ops_per_sec": 48626.30683199611, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 14545.097826086956, "ser_median_ns": 12155.5, "ser_std_ns": 4267.429128169707, "ser_mad_ns": 1414.5, "ser_cv": 0.29339294786426107, "ser_min_ns": 10170.0, "ser_max_ns": 22858.0, "ser_p5_ns": 10586.6, "ser_p25_ns": 11172.0, "ser_p50_ns": 12155.5, "ser_p75_ns": 19197.75, "ser_p95_ns": 22015.05, "ser_p99_ns": 22857.09, "ser_ci_low_ns": 13659.622826086956, "ser_ci_high_ns": 15416.88152173913, "deser_mean_ns": 11098.326086956522, "deser_median_ns": 10985.5, "deser_std_ns": 500.23618836221476, "deser_mad_ns": 229.0, "deser_cv": 0.04507312043661476, "deser_min_ns": 10337.0, "deser_max_ns": 12607.0, "deser_p5_ns": 10545.05, "deser_p25_ns": 10773.5, "deser_p50_ns": 10985.5, "deser_p75_ns": 11220.25, "deser_p95_ns": 12172.15, "deser_p99_ns": 12593.35, "deser_ci_low_ns": 11004.376086956521, "deser_ci_high_ns": 11197.370923913044, "total_mean_ns": 25643.42391304348, "total_median_ns": 23211.0, "total_std_ns": 4354.622745759203, "total_mad_ns": 1518.0, "total_cv": 0.16981440390041802, "total_min_ns": 20565.0, "total_max_ns": 35133.0, "total_p5_ns": 21462.45, "total_p25_ns": 22173.25, "total_p50_ns": 23211.0, "total_p75_ns": 29963.75, "total_p95_ns": 33285.15, "total_p99_ns": 34744.43, "total_ci_low_ns": 24738.352445652174, "total_ci_high_ns": 26522.33206521739, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "capnproto", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.486277721100991}, {"serializer": "bitsery", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "5.2.4", "avg_time_ser_ns": 5451.212765957447, "avg_time_deser_ns": 4504.755319148936, "avg_time_total_ns": 9955.968085106382, "median_size_bytes": 4755.0, "avg_ops_per_sec": 100442.26653317106, "min_ops_per_sec": 53157.55900489049, "max_ops_per_sec": 158328.05573147562, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 5451.212765957447, "ser_median_ns": 2496.0, "ser_std_ns": 4469.163472932297, "ser_mad_ns": 296.5, "ser_cv": 0.8198475577475164, "ser_min_ns": 2098.0, "ser_max_ns": 14020.0, "ser_p5_ns": 2167.45, "ser_p25_ns": 2276.0, "ser_p50_ns": 2496.0, "ser_p75_ns": 10724.75, "ser_p95_ns": 13404.55, "ser_p99_ns": 13640.559999999998, "ser_ci_low_ns": 4595.003457446808, "ser_ci_high_ns": 6401.31835106383, "deser_mean_ns": 4504.755319148936, "deser_median_ns": 4519.0, "deser_std_ns": 200.29133008417088, "deser_mad_ns": 127.0, "deser_cv": 0.04446219958557284, "deser_min_ns": 4037.0, "deser_max_ns": 5007.0, "deser_p5_ns": 4202.45, "deser_p25_ns": 4369.75, "deser_p50_ns": 4519.0, "deser_p75_ns": 4623.75, "deser_p95_ns": 4860.849999999999, "deser_p99_ns": 4974.45, "deser_ci_low_ns": 4466.376329787235, "deser_ci_high_ns": 4545.256382978723, "total_mean_ns": 9955.968085106382, "total_median_ns": 7071.5, "total_std_ns": 4494.921871776982, "total_mad_ns": 492.0, "total_cv": 0.4514801406908038, "total_min_ns": 6316.0, "total_max_ns": 18812.0, "total_p5_ns": 6429.45, "total_p25_ns": 6803.0, "total_p50_ns": 7071.5, "total_p75_ns": 15189.75, "total_p95_ns": 17956.8, "total_p99_ns": 18333.979999999996, "total_ci_low_ns": 9046.438031914895, "total_ci_high_ns": 10834.34175531915, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "capnproto", "effect_vs_fastest_cliffs_delta": -0.27382687263188576, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.26034067341023165}, {"serializer": "jsoncons_msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 60082.17894736842, "avg_time_deser_ns": 358459.4421052632, "avg_time_total_ns": 418541.6210526316, "median_size_bytes": 12031.0, "avg_ops_per_sec": 2389.248642667846, "min_ops_per_sec": 2243.732134282881, "max_ops_per_sec": 2517.2431153400794, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 60082.17894736842, "ser_median_ns": 59264.0, "ser_std_ns": 5389.1803939653955, "ser_mad_ns": 3809.0, "ser_cv": 0.08969682006184032, "ser_min_ns": 51250.0, "ser_max_ns": 73012.0, "ser_p5_ns": 53069.9, "ser_p25_ns": 56135.0, "ser_p50_ns": 59264.0, "ser_p75_ns": 63821.0, "ser_p95_ns": 70417.1, "ser_p99_ns": 71580.38, "ser_ci_low_ns": 58996.35815789474, "ser_ci_high_ns": 61104.26631578947, "deser_mean_ns": 358459.4421052632, "deser_median_ns": 358359.0, "deser_std_ns": 9161.130033097154, "deser_mad_ns": 5869.0, "deser_cv": 0.025556949983777937, "deser_min_ns": 335082.0, "deser_max_ns": 381168.0, "deser_p5_ns": 343037.0, "deser_p25_ns": 352071.5, "deser_p50_ns": 358359.0, "deser_p75_ns": 363373.0, "deser_p95_ns": 373799.3, "deser_p99_ns": 377314.0, "deser_ci_low_ns": 356741.69684210524, "deser_ci_high_ns": 360321.6263157895, "total_mean_ns": 418541.6210526316, "total_median_ns": 416616.0, "total_std_ns": 11369.492111618172, "total_mad_ns": 6398.0, "total_cv": 0.0271645435955065, "total_min_ns": 397260.0, "total_max_ns": 445686.0, "total_p5_ns": 402762.7, "total_p25_ns": 411029.5, "total_p50_ns": 416616.0, "total_p75_ns": 425233.0, "total_p95_ns": 439328.89999999997, "total_p99_ns": 442646.98, "total_ci_low_ns": 416403.58894736844, "total_ci_high_ns": 420780.88657894736, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "capnproto", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 46.6910765676621}, {"serializer": "avro_c", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "avro-c", "avg_time_ser_ns": 37992.7191011236, "avg_time_deser_ns": 45833.12359550562, "avg_time_total_ns": 83825.84269662922, "median_size_bytes": 4051.0, "avg_ops_per_sec": 11929.495342135246, "min_ops_per_sec": 10926.69281788481, "max_ops_per_sec": 12848.185836159933, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 37992.7191011236, "ser_median_ns": 36623.0, "ser_std_ns": 3314.2198588011493, "ser_mad_ns": 1071.0, "ser_cv": 0.08723302614850577, "ser_min_ns": 33959.0, "ser_max_ns": 46047.0, "ser_p5_ns": 34847.4, "ser_p25_ns": 35834.0, "ser_p50_ns": 36623.0, "ser_p75_ns": 39053.0, "ser_p95_ns": 44985.399999999994, "ser_p99_ns": 45629.880000000005, "ser_ci_low_ns": 37361.08483146067, "ser_ci_high_ns": 38686.625, "deser_mean_ns": 45833.12359550562, "deser_median_ns": 45705.0, "deser_std_ns": 1017.030054756414, "deser_mad_ns": 621.0, "deser_cv": 0.022189848192152098, "deser_min_ns": 43716.0, "deser_max_ns": 48624.0, "deser_p5_ns": 44493.4, "deser_p25_ns": 45130.0, "deser_p50_ns": 45705.0, "deser_p75_ns": 46326.0, "deser_p95_ns": 47597.6, "deser_p99_ns": 48476.16, "deser_ci_low_ns": 45614.79466292135, "deser_ci_high_ns": 46047.4393258427, "total_mean_ns": 83825.84269662922, "total_median_ns": 82809.0, "total_std_ns": 3671.967870659584, "total_mad_ns": 1825.0, "total_cv": 0.043804723609503785, "total_min_ns": 77832.0, "total_max_ns": 91519.0, "total_p5_ns": 79553.8, "total_p25_ns": 81243.0, "total_p50_ns": 82809.0, "total_p75_ns": 85496.0, "total_p95_ns": 90830.0, "total_p99_ns": 91207.48, "total_ci_low_ns": 83070.43848314608, "total_ci_high_ns": 84571.73005617977, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "capnproto", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.899980066148476}, {"serializer": "yyjson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "0.10.0", "avg_time_ser_ns": 13379.142857142857, "avg_time_deser_ns": 226089.32467532466, "avg_time_total_ns": 239468.46753246753, "median_size_bytes": 16546.0, "avg_ops_per_sec": 4175.915143668835, "min_ops_per_sec": 3820.322588039334, "max_ops_per_sec": 4414.465319960446, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 13379.142857142857, "ser_median_ns": 13057.0, "ser_std_ns": 1160.7407425556196, "ser_mad_ns": 389.0, "ser_cv": 0.08675748177215428, "ser_min_ns": 10918.0, "ser_max_ns": 17546.0, "ser_p5_ns": 12273.4, "ser_p25_ns": 12691.0, "ser_p50_ns": 13057.0, "ser_p75_ns": 13758.0, "ser_p95_ns": 15901.400000000001, "ser_p99_ns": 17187.28, "ser_ci_low_ns": 13127.387987012988, "ser_ci_high_ns": 13643.992207792207, "deser_mean_ns": 226089.32467532466, "deser_median_ns": 225030.0, "deser_std_ns": 7597.896388997138, "deser_mad_ns": 5187.0, "deser_cv": 0.033605728178046836, "deser_min_ns": 213461.0, "deser_max_ns": 244684.0, "deser_p5_ns": 216236.6, "deser_p25_ns": 220025.0, "deser_p50_ns": 225030.0, "deser_p75_ns": 231553.0, "deser_p95_ns": 240953.8, "deser_p99_ns": 244057.76, "deser_ci_low_ns": 224420.88214285715, "deser_ci_high_ns": 227756.5483766234, "total_mean_ns": 239468.46753246753, "total_median_ns": 238122.0, "total_std_ns": 7957.885229831405, "total_mad_ns": 5339.0, "total_cv": 0.033231453442831516, "total_min_ns": 226528.0, "total_max_ns": 261758.0, "total_p5_ns": 228800.6, "total_p25_ns": 233615.0, "total_p50_ns": 238122.0, "total_p75_ns": 244735.0, "total_p95_ns": 254227.2, "total_p99_ns": 259232.52, "total_ci_low_ns": 237717.78084415584, "total_ci_high_ns": 241206.76720779223, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "capnproto", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 38.250160457540176}, {"serializer": "avro", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "binary-1.11", "avg_time_ser_ns": 8157.555555555556, "avg_time_deser_ns": 5984.055555555556, "avg_time_total_ns": 14141.611111111111, "median_size_bytes": 4051.0, "avg_ops_per_sec": 70713.30077902487, "min_ops_per_sec": 43153.67021965218, "max_ops_per_sec": 96190.84263178146, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 8157.555555555556, "ser_median_ns": 5650.5, "ser_std_ns": 4174.655736626772, "ser_mad_ns": 423.5, "ser_cv": 0.5117532707189101, "ser_min_ns": 5007.0, "ser_max_ns": 16868.0, "ser_p5_ns": 5119.6, "ser_p25_ns": 5358.25, "ser_p50_ns": 5650.5, "ser_p75_ns": 13444.25, "ser_p95_ns": 15989.75, "ser_p99_ns": 16792.35, "ser_ci_low_ns": 7371.419444444445, "ser_ci_high_ns": 9025.896111111111, "deser_mean_ns": 5984.055555555556, "deser_median_ns": 5970.5, "deser_std_ns": 246.69793935782226, "deser_mad_ns": 142.5, "deser_cv": 0.04122587717769258, "deser_min_ns": 5386.0, "deser_max_ns": 6649.0, "deser_p5_ns": 5627.85, "deser_p25_ns": 5828.25, "deser_p50_ns": 5970.5, "deser_p75_ns": 6111.75, "deser_p95_ns": 6449.3, "deser_p99_ns": 6563.5599999999995, "deser_ci_low_ns": 5933.1866666666665, "deser_ci_high_ns": 6036.689722222222, "total_mean_ns": 14141.611111111111, "total_median_ns": 11726.0, "total_std_ns": 4214.404996708273, "total_mad_ns": 680.0, "total_cv": 0.2980144881368574, "total_min_ns": 10396.0, "total_max_ns": 23173.0, "total_p5_ns": 10787.25, "total_p25_ns": 11275.25, "total_p50_ns": 11726.0, "total_p75_ns": 19409.75, "total_p95_ns": 22084.899999999998, "total_p99_ns": 23040.39, "total_ci_low_ns": 13294.976666666667, "total_ci_high_ns": 15077.883333333331, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "capnproto", "effect_vs_fastest_cliffs_delta": 0.8386605783866058, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.4316818566632579}, {"serializer": "arduinojson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "7.2.1", "avg_time_ser_ns": 68254.48936170213, "avg_time_deser_ns": 431634.52127659577, "avg_time_total_ns": 499889.0106382979, "median_size_bytes": 15916.0, "avg_ops_per_sec": 2000.4440560177964, "min_ops_per_sec": 1868.7746444656239, "max_ops_per_sec": 2106.0922931764717, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 68254.48936170213, "ser_median_ns": 66304.5, "ser_std_ns": 4992.797956594026, "ser_mad_ns": 2600.0, "ser_cv": 0.07314973715700385, "ser_min_ns": 60309.0, "ser_max_ns": 81749.0, "ser_p5_ns": 62588.35, "ser_p25_ns": 64398.0, "ser_p50_ns": 66304.5, "ser_p75_ns": 73058.0, "ser_p95_ns": 77137.8, "ser_p99_ns": 78397.27999999997, "ser_ci_low_ns": 67246.18617021276, "ser_ci_high_ns": 69328.08962765957, "deser_mean_ns": 431634.52127659577, "deser_median_ns": 429699.0, "deser_std_ns": 10732.649014846544, "deser_mad_ns": 7372.5, "deser_cv": 0.024865131229781675, "deser_min_ns": 408651.0, "deser_max_ns": 461677.0, "deser_p5_ns": 417716.65, "deser_p25_ns": 424392.0, "deser_p50_ns": 429699.0, "deser_p75_ns": 438408.25, "deser_p95_ns": 452013.45, "deser_p99_ns": 459042.31, "deser_ci_low_ns": 429557.85478723404, "deser_ci_high_ns": 433873.61303191487, "total_mean_ns": 499889.0106382979, "total_median_ns": 498206.0, "total_std_ns": 12785.257267982048, "total_mad_ns": 8833.0, "total_cv": 0.025576191906393018, "total_min_ns": 474813.0, "total_max_ns": 535110.0, "total_p5_ns": 483415.95, "total_p25_ns": 490100.25, "total_p50_ns": 498206.0, "total_p75_ns": 507714.5, "total_p95_ns": 525592.6, "total_p99_ns": 534286.02, "total_ci_low_ns": 497482.7436170213, "total_ci_high_ns": 502457.65771276597, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "capnproto", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 50.08372249880807}, {"serializer": "nlohmann_cbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 42475.989130434784, "avg_time_deser_ns": 163900.75, "avg_time_total_ns": 206376.73913043478, "median_size_bytes": 12030.0, "avg_ops_per_sec": 4845.50731934948, "min_ops_per_sec": 4478.160013613607, "max_ops_per_sec": 5100.401401590305, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 42475.989130434784, "ser_median_ns": 40615.0, "ser_std_ns": 5093.2934928468585, "ser_mad_ns": 3360.0, "ser_cv": 0.11990994435012287, "ser_min_ns": 35972.0, "ser_max_ns": 59384.0, "ser_p5_ns": 36955.1, "ser_p25_ns": 37887.0, "ser_p50_ns": 40615.0, "ser_p75_ns": 46736.75, "ser_p95_ns": 50125.0, "ser_p99_ns": 56098.90000000001, "ser_ci_low_ns": 41490.05190217392, "ser_ci_high_ns": 43570.78858695652, "deser_mean_ns": 163900.75, "deser_median_ns": 163467.5, "deser_std_ns": 2727.899987794016, "deser_mad_ns": 1744.5, "deser_cv": 0.016643608938909774, "deser_min_ns": 156725.0, "deser_max_ns": 170982.0, "deser_p5_ns": 160243.05, "deser_p25_ns": 162075.75, "deser_p50_ns": 163467.5, "deser_p75_ns": 165665.0, "deser_p95_ns": 168358.25, "deser_p99_ns": 170211.23, "deser_ci_low_ns": 163349.48695652175, "deser_ci_high_ns": 164430.92364130437, "total_mean_ns": 206376.73913043478, "total_median_ns": 206154.5, "total_std_ns": 6014.770111287613, "total_mad_ns": 4565.5, "total_cv": 0.029144612598448614, "total_min_ns": 196063.0, "total_max_ns": 223306.0, "total_p5_ns": 198507.5, "total_p25_ns": 201351.5, "total_p50_ns": 206154.5, "total_p75_ns": 210507.75, "total_p95_ns": 216015.65, "total_p99_ns": 221435.04, "total_ci_low_ns": 205162.64048913046, "total_ci_high_ns": 207599.84836956524, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "capnproto", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 40.700423158061824}, {"serializer": "protobuf-wire", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "wire-v2", "avg_time_ser_ns": 27995.440860215054, "avg_time_deser_ns": 12519.505376344086, "avg_time_total_ns": 40514.94623655914, "median_size_bytes": 4841.0, "avg_ops_per_sec": 24682.249216404936, "min_ops_per_sec": 19662.58995634905, "max_ops_per_sec": 28319.787035201494, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 27995.440860215054, "ser_median_ns": 25934.0, "ser_std_ns": 4363.396581499638, "ser_mad_ns": 1737.0, "ser_cv": 0.15586097048039554, "ser_min_ns": 22855.0, "ser_max_ns": 37976.0, "ser_p5_ns": 23793.6, "ser_p25_ns": 24702.0, "ser_p50_ns": 25934.0, "ser_p75_ns": 32115.0, "ser_p95_ns": 35790.0, "ser_p99_ns": 37754.28, "ser_ci_low_ns": 27110.267204301075, "ser_ci_high_ns": 28868.874731182797, "deser_mean_ns": 12519.505376344086, "deser_median_ns": 12590.0, "deser_std_ns": 436.5657882505004, "deser_mad_ns": 253.0, "deser_cv": 0.03487084953654816, "deser_min_ns": 11334.0, "deser_max_ns": 13261.0, "deser_p5_ns": 11656.0, "deser_p25_ns": 12271.0, "deser_p50_ns": 12590.0, "deser_p75_ns": 12812.0, "deser_p95_ns": 13177.0, "deser_p99_ns": 13229.72, "deser_ci_low_ns": 12431.469086021505, "deser_ci_high_ns": 12606.595161290323, "total_mean_ns": 40514.94623655914, "total_median_ns": 38421.0, "total_std_ns": 4455.443896212303, "total_mad_ns": 1743.0, "total_cv": 0.10997037661602228, "total_min_ns": 35311.0, "total_max_ns": 50858.0, "total_p5_ns": 36127.0, "total_p25_ns": 37116.0, "total_p50_ns": 38421.0, "total_p75_ns": 44602.0, "total_p95_ns": 48783.2, "total_p99_ns": 50777.04, "total_ci_low_ns": 39676.76478494623, "total_ci_high_ns": 41448.715053763444, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "capnproto", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.326245942493957}, {"serializer": "jsoncons_bson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 76942.86666666667, "avg_time_deser_ns": 362520.14444444445, "avg_time_total_ns": 439463.0111111111, "median_size_bytes": 14061.0, "avg_ops_per_sec": 2275.504364910398, "min_ops_per_sec": 2135.077834262448, "max_ops_per_sec": 2388.173763523034, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 76942.86666666667, "ser_median_ns": 75956.0, "ser_std_ns": 5135.138782847171, "ser_mad_ns": 3528.5, "ser_cv": 0.06673963429376391, "ser_min_ns": 69251.0, "ser_max_ns": 93090.0, "ser_p5_ns": 70341.5, "ser_p25_ns": 73242.5, "ser_p50_ns": 75956.0, "ser_p75_ns": 79967.25, "ser_p95_ns": 85502.65, "ser_p99_ns": 91996.19, "ser_ci_low_ns": 75905.3788888889, "ser_ci_high_ns": 77980.06222222222, "deser_mean_ns": 362520.14444444445, "deser_median_ns": 363158.0, "deser_std_ns": 9187.176283143426, "deser_mad_ns": 6692.5, "deser_cv": 0.025342526267671573, "deser_min_ns": 346847.0, "deser_max_ns": 385049.0, "deser_p5_ns": 349047.75, "deser_p25_ns": 354874.0, "deser_p50_ns": 363158.0, "deser_p75_ns": 368271.5, "deser_p95_ns": 378857.1, "deser_p99_ns": 384298.73, "deser_ci_low_ns": 360591.6252777778, "deser_ci_high_ns": 364349.3222222222, "total_mean_ns": 439463.0111111111, "total_median_ns": 439366.5, "total_std_ns": 10388.244689021158, "total_mad_ns": 7434.0, "total_cv": 0.023638496133624905, "total_min_ns": 418730.0, "total_max_ns": 468367.0, "total_p5_ns": 423596.75, "total_p25_ns": 431522.0, "total_p50_ns": 439366.5, "total_p75_ns": 446438.5, "total_p95_ns": 455442.3, "total_p99_ns": 467249.16, "total_ci_low_ns": 437313.87055555556, "total_ci_high_ns": 441591.47777777776, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "capnproto", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 54.06785311470607}, {"serializer": "nlohmann_json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 55618.43820224719, "avg_time_deser_ns": 182105.23595505618, "avg_time_total_ns": 237723.67415730338, "median_size_bytes": 16546.0, "avg_ops_per_sec": 4206.5646324240015, "min_ops_per_sec": 3852.9261047302375, "max_ops_per_sec": 4446.203164807413, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 55618.43820224719, "ser_median_ns": 54836.0, "ser_std_ns": 3312.050161411482, "ser_mad_ns": 1834.0, "ser_cv": 0.05954949956285653, "ser_min_ns": 50804.0, "ser_max_ns": 63801.0, "ser_p5_ns": 52175.6, "ser_p25_ns": 53078.0, "ser_p50_ns": 54836.0, "ser_p75_ns": 56886.0, "ser_p95_ns": 63054.4, "ser_p99_ns": 63795.72, "ser_ci_low_ns": 54943.71039325842, "ser_ci_high_ns": 56303.09775280899, "deser_mean_ns": 182105.23595505618, "deser_median_ns": 181011.0, "deser_std_ns": 5237.40130959844, "deser_mad_ns": 4003.0, "deser_cv": 0.02876030050498404, "deser_min_ns": 174107.0, "deser_max_ns": 195752.0, "deser_p5_ns": 175303.2, "deser_p25_ns": 178089.0, "deser_p50_ns": 181011.0, "deser_p75_ns": 185833.0, "deser_p95_ns": 191532.6, "deser_p99_ns": 195724.72, "deser_ci_low_ns": 181038.17219101125, "deser_ci_high_ns": 183229.3081460674, "total_mean_ns": 237723.67415730338, "total_median_ns": 237137.0, "total_std_ns": 7082.119498130615, "total_mad_ns": 5432.0, "total_cv": 0.029791393403436665, "total_min_ns": 224911.0, "total_max_ns": 259543.0, "total_p5_ns": 228052.4, "total_p25_ns": 232044.0, "total_p50_ns": 237137.0, "total_p75_ns": 243251.0, "total_p95_ns": 249808.0, "total_p99_ns": 253211.40000000002, "total_ci_low_ns": 236218.95533707866, "total_ci_high_ns": 239139.09073033708, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "capnproto", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 41.054786947653}, {"serializer": "nlohmann_bson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 38208.03333333333, "avg_time_deser_ns": 228993.84444444443, "avg_time_total_ns": 267201.8777777778, "median_size_bytes": 14061.0, "avg_ops_per_sec": 3742.4886693036797, "min_ops_per_sec": 3490.511045722204, "max_ops_per_sec": 3908.6776552624483, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 38208.03333333333, "ser_median_ns": 35988.5, "ser_std_ns": 4379.1131867362365, "ser_mad_ns": 1356.5, "ser_cv": 0.11461236825596632, "ser_min_ns": 33921.0, "ser_max_ns": 50653.0, "ser_p5_ns": 34338.3, "ser_p25_ns": 35117.75, "ser_p50_ns": 35988.5, "ser_p75_ns": 40651.0, "ser_p95_ns": 46824.95, "ser_p99_ns": 49708.71, "ser_ci_low_ns": 37345.03, "ser_ci_high_ns": 39136.80888888889, "deser_mean_ns": 228993.84444444443, "deser_median_ns": 228483.5, "deser_std_ns": 3989.2551891668495, "deser_mad_ns": 2574.0, "deser_cv": 0.017420796610690868, "deser_min_ns": 221090.0, "deser_max_ns": 239062.0, "deser_p5_ns": 223340.85, "deser_p25_ns": 226049.0, "deser_p50_ns": 228483.5, "deser_p75_ns": 231549.25, "deser_p95_ns": 237292.0, "deser_p99_ns": 238180.01, "deser_ci_low_ns": 228214.21916666668, "deser_ci_high_ns": 229842.78416666668, "total_mean_ns": 267201.8777777778, "total_median_ns": 265980.0, "total_std_ns": 6157.92585434337, "total_mad_ns": 4336.0, "total_cv": 0.023045967736292243, "total_min_ns": 255841.0, "total_max_ns": 286491.0, "total_p5_ns": 259346.4, "total_p25_ns": 262412.75, "total_p50_ns": 265980.0, "total_p75_ns": 271785.0, "total_p95_ns": 277305.25, "total_p99_ns": 283898.43, "total_ci_low_ns": 266037.76694444445, "total_ci_high_ns": 268502.51277777774, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "capnproto", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 52.343029329756334}, {"serializer": "capnproto", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "1.0.x", "avg_time_ser_ns": 4540.6164383561645, "avg_time_deser_ns": 4420.726027397261, "avg_time_total_ns": 8961.342465753425, "median_size_bytes": 7600.0, "avg_ops_per_sec": 111590.42340158182, "min_ops_per_sec": 60106.99044298852, "max_ops_per_sec": 144071.45944388417, "runs": 73, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 26, "ser_mean_ns": 4540.6164383561645, "ser_median_ns": 3232.0, "ser_std_ns": 2650.957849062072, "ser_mad_ns": 253.0, "ser_cv": 0.5838321481348898, "ser_min_ns": 2790.0, "ser_max_ns": 12253.0, "ser_p5_ns": 2936.8, "ser_p25_ns": 3056.0, "ser_p50_ns": 3232.0, "ser_p75_ns": 5504.0, "ser_p95_ns": 11375.8, "ser_p99_ns": 11998.12, "ser_ci_low_ns": 3966.7212328767123, "ser_ci_high_ns": 5170.905136986301, "deser_mean_ns": 4420.726027397261, "deser_median_ns": 4408.0, "deser_std_ns": 160.4820222082673, "deser_mad_ns": 68.0, "deser_cv": 0.036302186838471064, "deser_min_ns": 4077.0, "deser_max_ns": 4870.0, "deser_p5_ns": 4143.2, "deser_p25_ns": 4361.0, "deser_p50_ns": 4408.0, "deser_p75_ns": 4517.0, "deser_p95_ns": 4678.4, "deser_p99_ns": 4858.48, "deser_ci_low_ns": 4385.396575342465, "deser_ci_high_ns": 4457.414383561644, "total_mean_ns": 8961.342465753425, "total_median_ns": 7742.0, "total_std_ns": 2654.839052556137, "total_mad_ns": 460.0, "total_cv": 0.2962546139377937, "total_min_ns": 6941.0, "total_max_ns": 16637.0, "total_p5_ns": 7162.4, "total_p25_ns": 7468.0, "total_p50_ns": 7742.0, "total_p75_ns": 9807.0, "total_p95_ns": 15821.599999999999, "total_p99_ns": 16448.36, "total_ci_low_ns": 8412.866438356165, "total_ci_high_ns": 9580.23801369863, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "capnproto", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "rapidjson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "1.1.0", "avg_time_ser_ns": 39829.204081632655, "avg_time_deser_ns": 278898.13265306124, "avg_time_total_ns": 318727.3367346939, "median_size_bytes": 16543.0, "avg_ops_per_sec": 3137.4779780260646, "min_ops_per_sec": 2704.9470777104248, "max_ops_per_sec": 3574.9780138852148, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 39829.204081632655, "ser_median_ns": 40452.0, "ser_std_ns": 9353.905407384258, "ser_mad_ns": 7906.5, "ser_cv": 0.23485042252445704, "ser_min_ns": 25260.0, "ser_max_ns": 57616.0, "ser_p5_ns": 26032.75, "ser_p25_ns": 31371.5, "ser_p50_ns": 40452.0, "ser_p75_ns": 46574.75, "ser_p95_ns": 55199.15, "ser_p99_ns": 56887.53, "ser_ci_low_ns": 37950.96556122449, "ser_ci_high_ns": 41565.347704081636, "deser_mean_ns": 278898.13265306124, "deser_median_ns": 279422.0, "deser_std_ns": 15501.413147179239, "deser_mad_ns": 10240.5, "deser_cv": 0.055580914076833965, "deser_min_ns": 249474.0, "deser_max_ns": 322497.0, "deser_p5_ns": 254170.5, "deser_p25_ns": 265360.75, "deser_p50_ns": 279422.0, "deser_p75_ns": 288775.75, "deser_p95_ns": 303444.35, "deser_p99_ns": 316273.48, "deser_ci_low_ns": 275770.90255102044, "deser_ci_high_ns": 281824.6193877551, "total_mean_ns": 318727.3367346939, "total_median_ns": 319534.5, "total_std_ns": 20430.12868943522, "total_mad_ns": 15474.0, "total_cv": 0.0640990788513415, "total_min_ns": 279722.0, "total_max_ns": 369693.0, "total_p5_ns": 284974.6, "total_p25_ns": 303542.5, "total_p50_ns": 319534.5, "total_p75_ns": 333657.0, "total_p95_ns": 349410.64999999997, "total_p99_ns": 367127.35, "total_ci_low_ns": 314536.1140306123, "total_ci_high_ns": 322753.8443877551, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "capnproto", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.8007108863288}, {"serializer": "flatbuffers", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "flatbuffers", "avg_time_ser_ns": 3784.5052631578947, "avg_time_deser_ns": 12634.063157894738, "avg_time_total_ns": 16418.56842105263, "median_size_bytes": 4868.0, "avg_ops_per_sec": 60906.64998038165, "min_ops_per_sec": 39318.99500648763, "max_ops_per_sec": 83626.02441879913, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 3784.5052631578947, "ser_median_ns": 1098.0, "ser_std_ns": 4168.298892460436, "ser_mad_ns": 361.0, "ser_cv": 1.1014118365850265, "ser_min_ns": 665.0, "ser_max_ns": 12284.0, "ser_p5_ns": 730.4, "ser_p25_ns": 827.0, "ser_p50_ns": 1098.0, "ser_p75_ns": 9096.0, "ser_p95_ns": 11032.6, "ser_p99_ns": 11869.460000000001, "ser_ci_low_ns": 2982.885, "ser_ci_high_ns": 4705.123421052631, "deser_mean_ns": 12634.063157894738, "deser_median_ns": 12679.0, "deser_std_ns": 610.7239479908219, "deser_mad_ns": 362.0, "deser_cv": 0.0483394724530243, "deser_min_ns": 11236.0, "deser_max_ns": 14104.0, "deser_p5_ns": 11565.4, "deser_p25_ns": 12306.0, "deser_p50_ns": 12679.0, "deser_p75_ns": 13017.0, "deser_p95_ns": 13583.5, "deser_p99_ns": 13928.220000000001, "deser_ci_low_ns": 12519.062105263158, "deser_ci_high_ns": 12753.369736842105, "total_mean_ns": 16418.56842105263, "total_median_ns": 14180.0, "total_std_ns": 4156.107627291485, "total_mad_ns": 1285.0, "total_cv": 0.253134592536237, "total_min_ns": 11958.0, "total_max_ns": 25433.0, "total_p5_ns": 12408.5, "total_p25_ns": 13515.5, "total_p50_ns": 14180.0, "total_p75_ns": 21358.0, "total_p95_ns": 23894.2, "total_p99_ns": 24567.260000000002, "total_ci_low_ns": 15619.790789473684, "total_ci_high_ns": 17262.73236842105, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "capnproto", "effect_vs_fastest_cliffs_delta": 0.8552271088680605, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.0718320458506634}, {"serializer": "nlohmann_msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 40221.98924731183, "avg_time_deser_ns": 177947.44086021505, "avg_time_total_ns": 218169.4301075269, "median_size_bytes": 12031.0, "avg_ops_per_sec": 4583.5935836984145, "min_ops_per_sec": 4268.396790165614, "max_ops_per_sec": 4892.6072704144035, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 40221.98924731183, "ser_median_ns": 38474.0, "ser_std_ns": 4086.0507522402513, "ser_mad_ns": 1448.0, "ser_cv": 0.10158748556955909, "ser_min_ns": 35787.0, "ser_max_ns": 49810.0, "ser_p5_ns": 36550.6, "ser_p25_ns": 37455.0, "ser_p50_ns": 38474.0, "ser_p75_ns": 41338.0, "ser_p95_ns": 48901.2, "ser_p99_ns": 49387.72, "ser_ci_low_ns": 39442.13575268818, "ser_ci_high_ns": 41128.44462365591, "deser_mean_ns": 177947.44086021505, "deser_median_ns": 176921.0, "deser_std_ns": 4205.286526613971, "deser_mad_ns": 2674.0, "deser_cv": 0.023632183223794682, "deser_min_ns": 167502.0, "deser_max_ns": 186942.0, "deser_p5_ns": 172208.0, "deser_p25_ns": 174978.0, "deser_p50_ns": 176921.0, "deser_p75_ns": 181624.0, "deser_p95_ns": 184911.0, "deser_p99_ns": 186595.16, "deser_ci_low_ns": 177114.70887096773, "deser_ci_high_ns": 178779.3196236559, "total_mean_ns": 218169.4301075269, "total_median_ns": 217184.0, "total_std_ns": 5994.160042686928, "total_mad_ns": 4370.0, "total_cv": 0.02747479351132122, "total_min_ns": 204390.0, "total_max_ns": 234280.0, "total_p5_ns": 209902.4, "total_p25_ns": 214020.0, "total_p50_ns": 217184.0, "total_p75_ns": 222239.0, "total_p95_ns": 229607.19999999998, "total_p99_ns": 231779.44, "total_ci_low_ns": 216988.05887096774, "total_ci_high_ns": 219388.6239247312, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "capnproto", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 43.188877301643736}, {"serializer": "yas", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "7.x", "avg_time_ser_ns": 6554.304347826087, "avg_time_deser_ns": 4330.086956521739, "avg_time_total_ns": 10884.391304347826, "median_size_bytes": 6169.0, "avg_ops_per_sec": 91874.6829324801, "min_ops_per_sec": 52312.19920485457, "max_ops_per_sec": 136109.97686130393, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 6554.304347826087, "ser_median_ns": 4095.5, "ser_std_ns": 4019.7220852464725, "ser_mad_ns": 707.0, "ser_cv": 0.6132950000376046, "ser_min_ns": 3189.0, "ser_max_ns": 14652.0, "ser_p5_ns": 3345.3, "ser_p25_ns": 3529.25, "ser_p50_ns": 4095.5, "ser_p75_ns": 11283.0, "ser_p95_ns": 13989.15, "ser_p99_ns": 14561.91, "ser_ci_low_ns": 5699.946467391304, "ser_ci_high_ns": 7379.310597826087, "deser_mean_ns": 4330.086956521739, "deser_median_ns": 4275.5, "deser_std_ns": 201.9996546713354, "deser_mad_ns": 106.5, "deser_cv": 0.04665025360913241, "deser_min_ns": 3969.0, "deser_max_ns": 4881.0, "deser_p5_ns": 4087.35, "deser_p25_ns": 4186.0, "deser_p50_ns": 4275.5, "deser_p75_ns": 4462.75, "deser_p95_ns": 4791.3, "deser_p99_ns": 4862.8, "deser_ci_low_ns": 4290.627717391305, "deser_ci_high_ns": 4370.644565217392, "total_mean_ns": 10884.391304347826, "total_median_ns": 8512.0, "total_std_ns": 4040.5762018554333, "total_mad_ns": 891.5, "total_cv": 0.3712266574099926, "total_min_ns": 7347.0, "total_max_ns": 19116.0, "total_p5_ns": 7560.0, "total_p25_ns": 7817.0, "total_p50_ns": 8512.0, "total_p75_ns": 15519.5, "total_p95_ns": 18315.9, "total_p99_ns": 19065.04, "total_ci_low_ns": 10095.847282608696, "total_ci_high_ns": 11759.482880434784, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "capnproto", "effect_vs_fastest_cliffs_delta": 0.42167957117331745, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.5474031811167955}, {"serializer": "custom_binary", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "harness", "avg_time_ser_ns": 14561.776315789473, "avg_time_deser_ns": 7879.539473684211, "avg_time_total_ns": 22441.315789473683, "median_size_bytes": 5358.0, "avg_ops_per_sec": 44560.667002826085, "min_ops_per_sec": 33166.39580776757, "max_ops_per_sec": 57846.9370046856, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 14561.776315789473, "ser_median_ns": 13869.0, "ser_std_ns": 2449.2694235829276, "ser_mad_ns": 1018.0, "ser_cv": 0.16819853364504447, "ser_min_ns": 9487.0, "ser_max_ns": 22524.0, "ser_p5_ns": 11999.0, "ser_p25_ns": 13116.75, "ser_p50_ns": 13869.0, "ser_p75_ns": 15416.25, "ser_p95_ns": 19387.5, "ser_p99_ns": 22212.0, "ser_ci_low_ns": 14049.125657894736, "ser_ci_high_ns": 15134.06447368421, "deser_mean_ns": 7879.539473684211, "deser_median_ns": 7866.5, "deser_std_ns": 210.76567973554415, "deser_mad_ns": 120.0, "deser_cv": 0.026748476917902553, "deser_min_ns": 7429.0, "deser_max_ns": 8492.0, "deser_p5_ns": 7585.75, "deser_p25_ns": 7749.0, "deser_p50_ns": 7866.5, "deser_p75_ns": 7991.5, "deser_p95_ns": 8270.75, "deser_p99_ns": 8480.0, "deser_ci_low_ns": 7834.417434210526, "deser_ci_high_ns": 7927.808881578948, "total_mean_ns": 22441.315789473683, "total_median_ns": 21794.5, "total_std_ns": 2425.78437739508, "total_mad_ns": 1067.5, "total_cv": 0.10809456986175996, "total_min_ns": 17287.0, "total_max_ns": 30151.0, "total_p5_ns": 19676.75, "total_p25_ns": 20914.0, "total_p50_ns": 21794.5, "total_p75_ns": 23523.25, "total_p95_ns": 27266.5, "total_p99_ns": 29882.5, "total_ci_low_ns": 21920.647368421054, "total_ci_high_ns": 22984.773355263158, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "capnproto", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.278797373963912}, {"serializer": "flatbuffers", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "flatbuffers", "avg_time_ser_ns": 4750.7052631578945, "avg_time_deser_ns": 12789.663157894736, "avg_time_total_ns": 17540.36842105263, "median_size_bytes": 4868.0, "avg_ops_per_sec": 57011.34525770629, "min_ops_per_sec": 38933.229511387966, "max_ops_per_sec": 79126.44405760405, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 4750.7052631578945, "ser_median_ns": 1899.0, "ser_std_ns": 4593.542784873279, "ser_mad_ns": 1129.0, "ser_cv": 0.9669180743534179, "ser_min_ns": 714.0, "ser_max_ns": 12726.0, "ser_p5_ns": 796.1, "ser_p25_ns": 873.0, "ser_p50_ns": 1899.0, "ser_p75_ns": 9902.5, "ser_p95_ns": 12305.3, "ser_p99_ns": 12622.6, "ser_ci_low_ns": 3800.441052631579, "ser_ci_high_ns": 5692.433684210526, "deser_mean_ns": 12789.663157894736, "deser_median_ns": 12829.0, "deser_std_ns": 474.50127481223086, "deser_mad_ns": 299.0, "deser_cv": 0.03710037308678714, "deser_min_ns": 11689.0, "deser_max_ns": 13804.0, "deser_p5_ns": 11891.4, "deser_p25_ns": 12536.0, "deser_p50_ns": 12829.0, "deser_p75_ns": 13131.0, "deser_p95_ns": 13516.9, "deser_p99_ns": 13781.44, "deser_ci_low_ns": 12694.388947368421, "deser_ci_high_ns": 12884.23394736842, "total_mean_ns": 17540.36842105263, "total_median_ns": 14836.0, "total_std_ns": 4643.870391589948, "total_mad_ns": 1591.0, "total_cv": 0.26475329822697424, "total_min_ns": 12638.0, "total_max_ns": 25685.0, "total_p5_ns": 13086.7, "total_p25_ns": 13707.0, "total_p50_ns": 14836.0, "total_p75_ns": 22600.0, "total_p95_ns": 25355.3, "total_p99_ns": 25561.86, "total_ci_low_ns": 16639.673684210527, "total_ci_high_ns": 18499.526842105264, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.46072874493927124, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 1.2187735596078597}, {"serializer": "nlohmann_msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 49179.35164835165, "avg_time_deser_ns": 168379.21978021978, "avg_time_total_ns": 217558.57142857142, "median_size_bytes": 12031.0, "avg_ops_per_sec": 4596.463349771162, "min_ops_per_sec": 4430.777955993513, "max_ops_per_sec": 4762.58513120922, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 49179.35164835165, "ser_median_ns": 48940.0, "ser_std_ns": 1501.988070478046, "ser_mad_ns": 985.0, "ser_cv": 0.030541030333578793, "ser_min_ns": 46814.0, "ser_max_ns": 53491.0, "ser_p5_ns": 47244.5, "ser_p25_ns": 48044.5, "ser_p50_ns": 48940.0, "ser_p75_ns": 50208.5, "ser_p95_ns": 52378.0, "ser_p99_ns": 52857.399999999994, "ser_ci_low_ns": 48878.58406593406, "ser_ci_high_ns": 49501.72637362637, "deser_mean_ns": 168379.21978021978, "deser_median_ns": 168201.0, "deser_std_ns": 2801.2915902101613, "deser_mad_ns": 1892.0, "deser_cv": 0.01663680110803816, "deser_min_ns": 160869.0, "deser_max_ns": 175344.0, "deser_p5_ns": 164445.0, "deser_p25_ns": 166568.0, "deser_p50_ns": 168201.0, "deser_p75_ns": 170109.0, "deser_p95_ns": 173342.5, "deser_p99_ns": 175261.2, "deser_ci_low_ns": 167798.61153846156, "deser_ci_high_ns": 168964.98214285713, "total_mean_ns": 217558.57142857142, "total_median_ns": 217230.0, "total_std_ns": 3406.874240717361, "total_mad_ns": 2442.0, "total_cv": 0.015659572584736804, "total_min_ns": 209970.0, "total_max_ns": 225694.0, "total_p5_ns": 212533.0, "total_p25_ns": 215230.5, "total_p50_ns": 217230.0, "total_p75_ns": 219951.5, "total_p95_ns": 223543.0, "total_p99_ns": 225176.5, "total_ci_low_ns": 216853.89615384614, "total_ci_high_ns": 218232.86538461538, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 49.02400320000906}, {"serializer": "nlohmann_bson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 50013.813953488374, "avg_time_deser_ns": 236718.06976744186, "avg_time_total_ns": 286731.88372093026, "median_size_bytes": 14061.0, "avg_ops_per_sec": 3487.5786641616655, "min_ops_per_sec": 3340.4596472474614, "max_ops_per_sec": 3646.7602182221312, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 50013.813953488374, "ser_median_ns": 49810.0, "ser_std_ns": 1288.3694529646461, "ser_mad_ns": 778.0, "ser_cv": 0.025760272035298053, "ser_min_ns": 47997.0, "ser_max_ns": 54179.0, "ser_p5_ns": 48419.5, "ser_p25_ns": 49038.75, "ser_p50_ns": 49810.0, "ser_p75_ns": 50668.0, "ser_p95_ns": 52635.0, "ser_p99_ns": 53906.15, "ser_ci_low_ns": 49746.08313953489, "ser_ci_high_ns": 50283.00058139535, "deser_mean_ns": 236718.06976744186, "deser_median_ns": 235982.5, "deser_std_ns": 4402.597700531164, "deser_mad_ns": 2994.0, "deser_cv": 0.018598485974714113, "deser_min_ns": 226219.0, "deser_max_ns": 247641.0, "deser_p5_ns": 230590.0, "deser_p25_ns": 233502.0, "deser_p50_ns": 235982.5, "deser_p75_ns": 239395.25, "deser_p95_ns": 245459.5, "deser_p99_ns": 247319.7, "deser_ci_low_ns": 235799.0918604651, "deser_ci_high_ns": 237650.07122093023, "total_mean_ns": 286731.88372093026, "total_median_ns": 286623.5, "total_std_ns": 4933.375502142893, "total_mad_ns": 2938.5, "total_cv": 0.0172055351435714, "total_min_ns": 274216.0, "total_max_ns": 299360.0, "total_p5_ns": 279611.0, "total_p25_ns": 283380.75, "total_p50_ns": 286623.5, "total_p75_ns": 289378.0, "total_p95_ns": 296309.75, "total_p99_ns": 297800.25, "total_ci_low_ns": 285709.64999999997, "total_ci_high_ns": 287738.3674418605, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 56.08971802789262}, {"serializer": "yyjson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "0.10.0", "avg_time_ser_ns": 16447.271739130436, "avg_time_deser_ns": 227238.04347826086, "avg_time_total_ns": 243685.3152173913, "median_size_bytes": 16546.0, "avg_ops_per_sec": 4103.65310321593, "min_ops_per_sec": 3746.412809734679, "max_ops_per_sec": 4379.299925113971, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 16447.271739130436, "ser_median_ns": 13763.5, "ser_std_ns": 4572.8819731905405, "ser_mad_ns": 1339.0, "ser_cv": 0.27803285831965635, "ser_min_ns": 11224.0, "ser_max_ns": 25381.0, "ser_p5_ns": 12410.95, "ser_p25_ns": 12808.5, "ser_p50_ns": 13763.5, "ser_p75_ns": 21770.5, "ser_p95_ns": 24212.95, "ser_p99_ns": 24696.680000000004, "ser_ci_low_ns": 15539.425000000001, "ser_ci_high_ns": 17428.71684782609, "deser_mean_ns": 227238.04347826086, "deser_median_ns": 224697.5, "deser_std_ns": 8259.394962159517, "deser_mad_ns": 4462.0, "deser_cv": 0.03634688468416455, "deser_min_ns": 215956.0, "deser_max_ns": 251191.0, "deser_p5_ns": 218111.8, "deser_p25_ns": 220790.25, "deser_p50_ns": 224697.5, "deser_p75_ns": 232726.5, "deser_p95_ns": 244414.2, "deser_p99_ns": 246851.21000000002, "deser_ci_low_ns": 225640.4410326087, "deser_ci_high_ns": 228959.72717391307, "total_mean_ns": 243685.3152173913, "total_median_ns": 241342.0, "total_std_ns": 9682.184475531718, "total_mad_ns": 6873.5, "total_cv": 0.03973232636892484, "total_min_ns": 228347.0, "total_max_ns": 266922.0, "total_p5_ns": 231776.0, "total_p25_ns": 235744.5, "total_p50_ns": 241342.0, "total_p75_ns": 249397.25, "total_p95_ns": 262192.65, "total_p99_ns": 266882.87, "total_ci_low_ns": 241774.00353260868, "total_ci_high_ns": 245717.26902173914, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.13693804084899}, {"serializer": "jsoncons_bson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 60318.760416666664, "avg_time_deser_ns": 375975.6458333333, "avg_time_total_ns": 436294.40625, "median_size_bytes": 14061.0, "avg_ops_per_sec": 2292.0303026461274, "min_ops_per_sec": 2176.0749266118733, "max_ops_per_sec": 2422.826905977356, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 60318.760416666664, "ser_median_ns": 58994.0, "ser_std_ns": 5970.051967938834, "ser_mad_ns": 4127.0, "ser_cv": 0.09897504402774913, "ser_min_ns": 49048.0, "ser_max_ns": 77760.0, "ser_p5_ns": 52965.75, "ser_p25_ns": 55298.25, "ser_p50_ns": 58994.0, "ser_p75_ns": 64889.75, "ser_p95_ns": 70702.5, "ser_p99_ns": 72080.89999999998, "ser_ci_low_ns": 59105.78359375, "ser_ci_high_ns": 61598.43255208334, "deser_mean_ns": 375975.6458333333, "deser_median_ns": 375582.5, "deser_std_ns": 8605.0682348182, "deser_mad_ns": 5633.5, "deser_cv": 0.022887302223380583, "deser_min_ns": 356646.0, "deser_max_ns": 398487.0, "deser_p5_ns": 362599.75, "deser_p25_ns": 370353.5, "deser_p50_ns": 375582.5, "deser_p75_ns": 382226.5, "deser_p95_ns": 390162.75, "deser_p99_ns": 397215.9, "deser_ci_low_ns": 374267.984375, "deser_ci_high_ns": 377612.6684895833, "total_mean_ns": 436294.40625, "total_median_ns": 436129.0, "total_std_ns": 10187.181584901195, "total_mad_ns": 6078.5, "total_cv": 0.02334932889115214, "total_min_ns": 412741.0, "total_max_ns": 459543.0, "total_p5_ns": 419987.5, "total_p25_ns": 429868.75, "total_p50_ns": 436129.0, "total_p75_ns": 441524.75, "total_p95_ns": 454073.25, "total_p99_ns": 455209.1, "total_ci_low_ns": 434152.7908854167, "total_ci_high_ns": 438389.1390625, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 52.5865142515145}, {"serializer": "thrift", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "TBinaryProtocol", "avg_time_ser_ns": 15401.222222222223, "avg_time_deser_ns": 7935.022222222222, "avg_time_total_ns": 23336.244444444445, "median_size_bytes": 7860.0, "avg_ops_per_sec": 42851.7965853784, "min_ops_per_sec": 28953.616306676704, "max_ops_per_sec": 64695.60716827327, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 15401.222222222223, "ser_median_ns": 16849.0, "ser_std_ns": 5957.241286687591, "ser_mad_ns": 6148.0, "ser_cv": 0.38680315112212105, "ser_min_ns": 7644.0, "ser_max_ns": 26347.0, "ser_p5_ns": 7928.05, "ser_p25_ns": 8918.5, "ser_p50_ns": 16849.0, "ser_p75_ns": 18791.75, "ser_p95_ns": 25029.85, "ser_p99_ns": 26338.99, "ser_ci_low_ns": 14218.695833333333, "ser_ci_high_ns": 16580.891111111112, "deser_mean_ns": 7935.022222222222, "deser_median_ns": 7881.0, "deser_std_ns": 237.25901921160644, "deser_mad_ns": 142.5, "deser_cv": 0.029900233744419368, "deser_min_ns": 7406.0, "deser_max_ns": 8561.0, "deser_p5_ns": 7647.2, "deser_p25_ns": 7771.75, "deser_p50_ns": 7881.0, "deser_p75_ns": 8070.0, "deser_p95_ns": 8393.05, "deser_p99_ns": 8559.22, "deser_ci_low_ns": 7884.845555555556, "deser_ci_high_ns": 7984.745833333333, "total_mean_ns": 23336.244444444445, "total_median_ns": 24841.5, "total_std_ns": 6002.25897046806, "total_mad_ns": 6081.0, "total_cv": 0.2572075804552601, "total_min_ns": 15457.0, "total_max_ns": 34538.0, "total_p5_ns": 15653.6, "total_p25_ns": 16763.25, "total_p50_ns": 24841.5, "total_p75_ns": 27054.25, "total_p95_ns": 32870.4, "total_p99_ns": 34444.55, "total_ci_low_ns": 22092.27361111111, "total_ci_high_ns": 24577.989722222224, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.8222222222222222, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.119947900679338}, {"serializer": "yas", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "7.x", "avg_time_ser_ns": 7591.125, "avg_time_deser_ns": 4335.454545454545, "avg_time_total_ns": 11926.579545454546, "median_size_bytes": 6169.0, "avg_ops_per_sec": 83846.33634386145, "min_ops_per_sec": 50400.68544932211, "max_ops_per_sec": 136911.28148959475, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 7591.125, "ser_median_ns": 5339.0, "ser_std_ns": 4501.341155987425, "ser_mad_ns": 1882.5, "ser_cv": 0.5929741844571688, "ser_min_ns": 3325.0, "ser_max_ns": 15449.0, "ser_p5_ns": 3388.7, "ser_p25_ns": 3571.5, "ser_p50_ns": 5339.0, "ser_p75_ns": 12459.0, "ser_p95_ns": 14186.349999999999, "ser_p99_ns": 15046.189999999999, "ser_ci_low_ns": 6639.4375, "ser_ci_high_ns": 8584.608238636363, "deser_mean_ns": 4335.454545454545, "deser_median_ns": 4352.0, "deser_std_ns": 142.80827989541632, "deser_mad_ns": 92.5, "deser_cv": 0.03293963260326231, "deser_min_ns": 3968.0, "deser_max_ns": 4719.0, "deser_p5_ns": 4108.15, "deser_p25_ns": 4249.5, "deser_p50_ns": 4352.0, "deser_p75_ns": 4421.5, "deser_p95_ns": 4528.95, "deser_p99_ns": 4703.34, "deser_ci_low_ns": 4306.101988636364, "deser_ci_high_ns": 4365.471306818182, "total_mean_ns": 11926.579545454546, "total_median_ns": 9613.5, "total_std_ns": 4523.389964971955, "total_mad_ns": 1915.5, "total_cv": 0.3792696764174862, "total_min_ns": 7304.0, "total_max_ns": 19841.0, "total_p5_ns": 7660.55, "total_p25_ns": 7852.25, "total_p50_ns": 9613.5, "total_p75_ns": 16817.75, "total_p95_ns": 18568.9, "total_p99_ns": 19504.309999999998, "total_ci_low_ns": 10984.26278409091, "total_ci_high_ns": 12846.484943181818, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.19855144855144854, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.03893708120603204}, {"serializer": "custom_binary", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "harness", "avg_time_ser_ns": 17984.477777777778, "avg_time_deser_ns": 7907.277777777777, "avg_time_total_ns": 25891.755555555555, "median_size_bytes": 5358.0, "avg_ops_per_sec": 38622.33280606697, "min_ops_per_sec": 28763.734683311282, "max_ops_per_sec": 50553.561498407566, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 17984.477777777778, "ser_median_ns": 15213.5, "ser_std_ns": 4761.320422154129, "ser_mad_ns": 2450.0, "ser_cv": 0.2647461038895094, "ser_min_ns": 12266.0, "ser_max_ns": 26595.0, "ser_p5_ns": 12668.1, "ser_p25_ns": 13782.5, "ser_p50_ns": 15213.5, "ser_p75_ns": 23093.75, "ser_p95_ns": 24464.15, "ser_p99_ns": 26084.14, "ser_ci_low_ns": 17047.155833333334, "ser_ci_high_ns": 19001.145555555555, "deser_mean_ns": 7907.277777777777, "deser_median_ns": 7898.0, "deser_std_ns": 204.5408685724067, "deser_mad_ns": 136.0, "deser_cv": 0.02586741914483367, "deser_min_ns": 7469.0, "deser_max_ns": 8477.0, "deser_p5_ns": 7567.45, "deser_p25_ns": 7775.25, "deser_p50_ns": 7898.0, "deser_p75_ns": 8047.0, "deser_p95_ns": 8196.95, "deser_p99_ns": 8428.94, "deser_ci_low_ns": 7866.2747222222215, "deser_ci_high_ns": 7950.002222222222, "total_mean_ns": 25891.755555555555, "total_median_ns": 23043.0, "total_std_ns": 4778.247970743315, "total_mad_ns": 2453.0, "total_cv": 0.18454708335596245, "total_min_ns": 19781.0, "total_max_ns": 34766.0, "total_p5_ns": 20492.3, "total_p25_ns": 21762.0, "total_p50_ns": 23043.0, "total_p75_ns": 30950.0, "total_p95_ns": 32521.0, "total_p99_ns": 34028.19, "total_ci_low_ns": 24938.689444444444, "total_ci_high_ns": 26979.65638888889, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.9826617826617826, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.931860345641051}, {"serializer": "jsoncons_cbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 46919.32608695652, "avg_time_deser_ns": 380960.2173913043, "avg_time_total_ns": 427879.54347826086, "median_size_bytes": 12030.0, "avg_ops_per_sec": 2337.1063544448384, "min_ops_per_sec": 2240.2989454912863, "max_ops_per_sec": 2450.6800637176816, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 46919.32608695652, "ser_median_ns": 45477.0, "ser_std_ns": 5540.606887671024, "ser_mad_ns": 3845.0, "ser_cv": 0.11808794690278601, "ser_min_ns": 37418.0, "ser_max_ns": 60212.0, "ser_p5_ns": 39367.6, "ser_p25_ns": 43077.5, "ser_p50_ns": 45477.0, "ser_p75_ns": 50878.5, "ser_p95_ns": 57326.8, "ser_p99_ns": 58686.840000000004, "ser_ci_low_ns": 45752.01413043478, "ser_ci_high_ns": 48027.78505434783, "deser_mean_ns": 380960.2173913043, "deser_median_ns": 382567.0, "deser_std_ns": 8240.137087873414, "deser_mad_ns": 6155.5, "deser_cv": 0.021629914914211464, "deser_min_ns": 362671.0, "deser_max_ns": 399899.0, "deser_p5_ns": 368374.1, "deser_p25_ns": 373390.75, "deser_p50_ns": 382567.0, "deser_p75_ns": 387555.75, "deser_p95_ns": 392883.6, "deser_p99_ns": 397867.88, "deser_ci_low_ns": 379284.4633152174, "deser_ci_high_ns": 382546.04701086954, "total_mean_ns": 427879.54347826086, "total_median_ns": 428040.0, "total_std_ns": 9891.72128757457, "total_mad_ns": 6649.5, "total_cv": 0.023118004677587806, "total_min_ns": 408050.0, "total_max_ns": 446369.0, "total_p5_ns": 412342.8, "total_p25_ns": 421099.75, "total_p50_ns": 428040.0, "total_p75_ns": 434498.0, "total_p95_ns": 445245.0, "total_p99_ns": 446256.16, "total_ci_low_ns": 425943.1222826087, "total_ci_high_ns": 429853.3027173913, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 53.14512780794381}, {"serializer": "rapidjson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "1.1.0", "avg_time_ser_ns": 129180.35106382979, "avg_time_deser_ns": 460650.4680851064, "avg_time_total_ns": 589830.8191489362, "median_size_bytes": 16543.0, "avg_ops_per_sec": 1695.4014058520963, "min_ops_per_sec": 1596.7706909546134, "max_ops_per_sec": 1774.2576505989894, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 129180.35106382979, "ser_median_ns": 128836.0, "ser_std_ns": 2360.518389883322, "ser_mad_ns": 1460.5, "ser_cv": 0.018273045168587267, "ser_min_ns": 123839.0, "ser_max_ns": 135598.0, "ser_p5_ns": 126126.45, "ser_p25_ns": 127587.0, "ser_p50_ns": 128836.0, "ser_p75_ns": 130640.5, "ser_p95_ns": 133365.15, "ser_p99_ns": 135539.41, "ser_ci_low_ns": 128717.27021276596, "ser_ci_high_ns": 129671.36489361702, "deser_mean_ns": 460650.4680851064, "deser_median_ns": 459563.0, "deser_std_ns": 14593.602584032875, "deser_mad_ns": 11176.5, "deser_cv": 0.031680424953647646, "deser_min_ns": 436127.0, "deser_max_ns": 498167.0, "deser_p5_ns": 439660.8, "deser_p25_ns": 449691.25, "deser_p50_ns": 459563.0, "deser_p75_ns": 470786.75, "deser_p95_ns": 487437.85, "deser_p99_ns": 497372.77999999997, "deser_ci_low_ns": 457583.94281914894, "deser_ci_high_ns": 463394.322606383, "total_mean_ns": 589830.8191489362, "total_median_ns": 588499.0, "total_std_ns": 15048.807070188604, "total_mad_ns": 11427.0, "total_cv": 0.025513768663194727, "total_min_ns": 563616.0, "total_max_ns": 626264.0, "total_p5_ns": 567831.05, "total_p25_ns": 579003.25, "total_p50_ns": 588499.0, "total_p75_ns": 600555.5, "total_p95_ns": 616537.05, "total_p99_ns": 625945.01, "total_ci_low_ns": 586941.1345744681, "total_ci_high_ns": 592752.5856382978, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 51.17246855599919}, {"serializer": "msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "msgpack-cxx", "avg_time_ser_ns": 20150.976744186046, "avg_time_deser_ns": 24904.31395348837, "avg_time_total_ns": 45055.29069767442, "median_size_bytes": 12031.0, "avg_ops_per_sec": 22194.951680815946, "min_ops_per_sec": 18351.317624605446, "max_ops_per_sec": 26248.785993647794, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 20150.976744186046, "ser_median_ns": 19951.5, "ser_std_ns": 520.9301856067987, "ser_mad_ns": 206.0, "ser_cv": 0.025851361560282546, "ser_min_ns": 19313.0, "ser_max_ns": 21910.0, "ser_p5_ns": 19572.0, "ser_p25_ns": 19832.25, "ser_p50_ns": 19951.5, "ser_p75_ns": 20362.75, "ser_p95_ns": 21256.75, "ser_p99_ns": 21732.350000000002, "ser_ci_low_ns": 20044.102906976743, "ser_ci_high_ns": 20262.449709302327, "deser_mean_ns": 24904.31395348837, "deser_median_ns": 23728.5, "deser_std_ns": 4805.197794206817, "deser_mad_ns": 4528.5, "deser_cv": 0.19294640290758736, "deser_min_ns": 18246.0, "deser_max_ns": 34526.0, "deser_p5_ns": 18918.75, "deser_p25_ns": 19881.0, "deser_p50_ns": 23728.5, "deser_p75_ns": 29175.0, "deser_p95_ns": 31264.25, "deser_p99_ns": 33426.950000000004, "deser_ci_low_ns": 23921.284011627904, "deser_ci_high_ns": 25925.890406976745, "total_mean_ns": 45055.29069767442, "total_median_ns": 45032.5, "total_std_ns": 4856.532698919791, "total_mad_ns": 4557.0, "total_cv": 0.10779050858882742, "total_min_ns": 38097.0, "total_max_ns": 54492.0, "total_p5_ns": 38822.0, "total_p25_ns": 40205.0, "total_p50_ns": 45032.5, "total_p75_ns": 49364.0, "total_p95_ns": 51863.25, "total_p99_ns": 54156.25, "total_ci_low_ns": 44062.12238372093, "total_ci_high_ns": 46065.35697674418, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.847352843078497}, {"serializer": "zpp_bits", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "4.4.25", "avg_time_ser_ns": 10593.217391304348, "avg_time_deser_ns": 4278.304347826087, "avg_time_total_ns": 14871.521739130434, "median_size_bytes": 5362.0, "avg_ops_per_sec": 67242.61427589937, "min_ops_per_sec": 44393.14569830418, "max_ops_per_sec": 107169.64955524595, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 10593.217391304348, "ser_median_ns": 8568.5, "ser_std_ns": 4618.705177066539, "ser_mad_ns": 2901.0, "ser_cv": 0.4360058900384594, "ser_min_ns": 5473.0, "ser_max_ns": 18016.0, "ser_p5_ns": 5669.25, "ser_p25_ns": 5962.5, "ser_p50_ns": 8568.5, "ser_p75_ns": 15271.5, "ser_p95_ns": 16685.6, "ser_p99_ns": 17427.230000000003, "ser_ci_low_ns": 9677.970108695654, "ser_ci_high_ns": 11474.904347826086, "deser_mean_ns": 4278.304347826087, "deser_median_ns": 4301.0, "deser_std_ns": 185.92688738699457, "deser_mad_ns": 120.5, "deser_cv": 0.04345807877867984, "deser_min_ns": 3858.0, "deser_max_ns": 4781.0, "deser_p5_ns": 3963.55, "deser_p25_ns": 4139.5, "deser_p50_ns": 4301.0, "deser_p75_ns": 4390.25, "deser_p95_ns": 4572.4, "deser_p99_ns": 4655.42, "deser_ci_low_ns": 4242.878260869566, "deser_ci_high_ns": 4316.005706521739, "total_mean_ns": 14871.521739130434, "total_median_ns": 12735.5, "total_std_ns": 4627.379486449121, "total_mad_ns": 2985.5, "total_cv": 0.31115709391550755, "total_min_ns": 9331.0, "total_max_ns": 22526.0, "total_p5_ns": 9750.4, "total_p25_ns": 10317.25, "total_p50_ns": 12735.5, "total_p75_ns": 19632.75, "total_p95_ns": 20826.0, "total_p99_ns": 21628.74, "total_ci_low_ns": 13932.489673913044, "total_ci_high_ns": 15786.871467391304, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.4586717630195891, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.6585321160763643}, {"serializer": "arduinojson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "7.2.1", "avg_time_ser_ns": 150543.05319148937, "avg_time_deser_ns": 497608.3085106383, "avg_time_total_ns": 648151.3617021276, "median_size_bytes": 15916.0, "avg_ops_per_sec": 1542.8494933249438, "min_ops_per_sec": 1480.7772896148647, "max_ops_per_sec": 1595.2372596376258, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 150543.05319148937, "ser_median_ns": 149819.0, "ser_std_ns": 2238.3825927550556, "ser_mad_ns": 1259.5, "ser_cv": 0.014868720577281329, "ser_min_ns": 144932.0, "ser_max_ns": 156049.0, "ser_p5_ns": 147631.05, "ser_p25_ns": 149134.0, "ser_p50_ns": 149819.0, "ser_p75_ns": 152394.75, "ser_p95_ns": 154571.45, "ser_p99_ns": 155268.72999999998, "ser_ci_low_ns": 150115.54574468083, "ser_ci_high_ns": 150994.377393617, "deser_mean_ns": 497608.3085106383, "deser_median_ns": 496304.5, "deser_std_ns": 11130.170249619643, "deser_mad_ns": 7594.5, "deser_cv": 0.022367332014476788, "deser_min_ns": 478450.0, "deser_max_ns": 523972.0, "deser_p5_ns": 481534.2, "deser_p25_ns": 489833.75, "deser_p50_ns": 496304.5, "deser_p75_ns": 504825.5, "deser_p95_ns": 515807.14999999997, "deser_p99_ns": 522770.44, "deser_ci_low_ns": 495428.80053191487, "deser_ci_high_ns": 499893.6744680851, "total_mean_ns": 648151.3617021276, "total_median_ns": 646462.0, "total_std_ns": 11901.026434318406, "total_mad_ns": 8762.5, "total_cv": 0.018361492604234916, "total_min_ns": 626866.0, "total_max_ns": 675321.0, "total_p5_ns": 630252.65, "total_p25_ns": 639945.5, "total_p50_ns": 646462.0, "total_p75_ns": 656049.25, "total_p95_ns": 668347.0, "total_p99_ns": 671080.2, "total_ci_low_ns": 645731.1965425531, "total_ci_high_ns": 650527.1343085106, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 69.37538717183811}, {"serializer": "nlohmann_cbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 50145.27472527473, "avg_time_deser_ns": 170149.9010989011, "avg_time_total_ns": 220295.17582417582, "median_size_bytes": 12030.0, "avg_ops_per_sec": 4539.364043078864, "min_ops_per_sec": 4338.733610433786, "max_ops_per_sec": 4712.22445267513, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 50145.27472527473, "ser_median_ns": 49923.0, "ser_std_ns": 1393.5441711767724, "ser_mad_ns": 982.0, "ser_cv": 0.02779013932641562, "ser_min_ns": 48131.0, "ser_max_ns": 53884.0, "ser_p5_ns": 48518.5, "ser_p25_ns": 48990.5, "ser_p50_ns": 49923.0, "ser_p75_ns": 50928.0, "ser_p95_ns": 52946.5, "ser_p99_ns": 53472.7, "ser_ci_low_ns": 49858.92197802198, "ser_ci_high_ns": 50436.83763736264, "deser_mean_ns": 170149.9010989011, "deser_median_ns": 169710.0, "deser_std_ns": 3274.4650591269437, "deser_mad_ns": 2201.0, "deser_cv": 0.019244589846829432, "deser_min_ns": 163887.0, "deser_max_ns": 178811.0, "deser_p5_ns": 165514.5, "deser_p25_ns": 167801.5, "deser_p50_ns": 169710.0, "deser_p75_ns": 172484.0, "deser_p95_ns": 175850.5, "deser_p99_ns": 178083.8, "deser_ci_low_ns": 169476.0, "deser_ci_high_ns": 170819.89862637362, "total_mean_ns": 220295.17582417582, "total_median_ns": 219755.0, "total_std_ns": 4104.4018581502, "total_mad_ns": 3190.0, "total_cv": 0.018631374213233094, "total_min_ns": 212214.0, "total_max_ns": 230482.0, "total_p5_ns": 214919.0, "total_p25_ns": 216751.0, "total_p50_ns": 219755.0, "total_p75_ns": 223218.5, "total_p95_ns": 227075.0, "total_p99_ns": 228997.9, "total_ci_low_ns": 219437.2142857143, "total_ci_high_ns": 221093.9912087912, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 46.32540947465014}, {"serializer": "capnproto", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "1.0.x", "avg_time_ser_ns": 7429.6551724137935, "avg_time_deser_ns": 4688.241379310345, "avg_time_total_ns": 12117.896551724138, "median_size_bytes": 7600.0, "avg_ops_per_sec": 82522.57276925835, "min_ops_per_sec": 51009.997959600085, "max_ops_per_sec": 144092.21902017292, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 7429.6551724137935, "ser_median_ns": 5792.0, "ser_std_ns": 4503.653686827407, "ser_mad_ns": 2651.0, "ser_cv": 0.6061726395525611, "ser_min_ns": 2742.0, "ser_max_ns": 14842.0, "ser_p5_ns": 3061.5, "ser_p25_ns": 3288.5, "ser_p50_ns": 5792.0, "ser_p75_ns": 12394.5, "ser_p95_ns": 14220.9, "ser_p99_ns": 14738.8, "ser_ci_low_ns": 6492.037931034483, "ser_ci_high_ns": 8378.997413793102, "deser_mean_ns": 4688.241379310345, "deser_median_ns": 4685.0, "deser_std_ns": 179.9609108407532, "deser_mad_ns": 111.0, "deser_cv": 0.0383855898791683, "deser_min_ns": 4198.0, "deser_max_ns": 5260.0, "deser_p5_ns": 4463.1, "deser_p25_ns": 4576.5, "deser_p50_ns": 4685.0, "deser_p75_ns": 4794.5, "deser_p95_ns": 4962.6, "deser_p99_ns": 5093.16, "deser_ci_low_ns": 4651.389942528735, "deser_ci_high_ns": 4725.230172413793, "total_mean_ns": 12117.896551724138, "total_median_ns": 10383.0, "total_std_ns": 4528.8802200227765, "total_mad_ns": 2612.0, "total_cv": 0.37373484752008435, "total_min_ns": 6940.0, "total_max_ns": 19604.0, "total_p5_ns": 7607.5, "total_p25_ns": 7986.0, "total_p50_ns": 10383.0, "total_p75_ns": 17136.5, "total_p95_ns": 18810.4, "total_p99_ns": 19296.98, "total_ci_low_ns": 11190.75775862069, "total_ci_high_ns": 13052.347701149425, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.2253378805102943, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.0795564485302378}, {"serializer": "nlohmann_ubjson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 45044.32608695652, "avg_time_deser_ns": 199887.51086956522, "avg_time_total_ns": 244931.83695652173, "median_size_bytes": 13340.0, "avg_ops_per_sec": 4082.7685466528865, "min_ops_per_sec": 3923.461120462027, "max_ops_per_sec": 4249.0089186697205, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 45044.32608695652, "ser_median_ns": 44730.0, "ser_std_ns": 1255.1151701342005, "ser_mad_ns": 792.0, "ser_cv": 0.02786400151067293, "ser_min_ns": 43336.0, "ser_max_ns": 48256.0, "ser_p5_ns": 43681.25, "ser_p25_ns": 44039.5, "ser_p50_ns": 44730.0, "ser_p75_ns": 45677.25, "ser_p95_ns": 47519.25, "ser_p99_ns": 47901.1, "ser_ci_low_ns": 44801.19483695652, "ser_ci_high_ns": 45310.551086956526, "deser_mean_ns": 199887.51086956522, "deser_median_ns": 199560.5, "deser_std_ns": 3681.8068470821786, "deser_mad_ns": 2097.0, "deser_cv": 0.01841939414356262, "deser_min_ns": 191590.0, "deser_max_ns": 208888.0, "deser_p5_ns": 193495.3, "deser_p25_ns": 197872.0, "deser_p50_ns": 199560.5, "deser_p75_ns": 202048.25, "deser_p95_ns": 206429.45, "deser_p99_ns": 208624.1, "deser_ci_low_ns": 199151.07282608695, "deser_ci_high_ns": 200602.09293478262, "total_mean_ns": 244931.83695652173, "total_median_ns": 244539.0, "total_std_ns": 4129.604499800562, "total_mad_ns": 2450.0, "total_cv": 0.01686021936190196, "total_min_ns": 235349.0, "total_max_ns": 254877.0, "total_p5_ns": 238437.0, "total_p25_ns": 242652.5, "total_p50_ns": 244539.0, "total_p75_ns": 247299.5, "total_p95_ns": 252001.45, "total_p99_ns": 253583.89, "total_ci_low_ns": 244105.4464673913, "total_ci_high_ns": 245724.95706521737, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 51.68819288661736}, {"serializer": "bitsery", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "5.2.4", "avg_time_ser_ns": 7209.1648351648355, "avg_time_deser_ns": 4534.2967032967035, "avg_time_total_ns": 11743.461538461539, "median_size_bytes": 4755.0, "avg_ops_per_sec": 85153.7680542364, "min_ops_per_sec": 43245.11330219685, "max_ops_per_sec": 156911.97238349286, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 7209.1648351648355, "ser_median_ns": 5085.0, "ser_std_ns": 4793.824178075918, "ser_mad_ns": 2846.0, "ser_cv": 0.6649624870127288, "ser_min_ns": 2202.0, "ser_max_ns": 18625.0, "ser_p5_ns": 2244.5, "ser_p25_ns": 2456.0, "ser_p50_ns": 5085.0, "ser_p75_ns": 11832.0, "ser_p95_ns": 13659.5, "ser_p99_ns": 17299.299999999992, "ser_ci_low_ns": 6255.168956043956, "ser_ci_high_ns": 8191.828296703295, "deser_mean_ns": 4534.2967032967035, "deser_median_ns": 4528.0, "deser_std_ns": 172.33794284650884, "deser_mad_ns": 127.0, "deser_cv": 0.038007645754899295, "deser_min_ns": 4137.0, "deser_max_ns": 4983.0, "deser_p5_ns": 4283.5, "deser_p25_ns": 4399.5, "deser_p50_ns": 4528.0, "deser_p75_ns": 4653.5, "deser_p95_ns": 4851.5, "deser_p99_ns": 4919.099999999999, "deser_ci_low_ns": 4499.691758241758, "deser_ci_high_ns": 4569.773351648351, "total_mean_ns": 11743.461538461539, "total_median_ns": 9676.0, "total_std_ns": 4832.214209075707, "total_mad_ns": 3084.0, "total_cv": 0.41148124794801816, "total_min_ns": 6373.0, "total_max_ns": 23124.0, "total_p5_ns": 6592.5, "total_p25_ns": 6949.5, "total_p50_ns": 9676.0, "total_p75_ns": 16349.5, "total_p95_ns": 18081.0, "total_p99_ns": 21956.699999999993, "total_ci_low_ns": 10796.613186813187, "total_ci_high_ns": 12746.495054945053, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "avro", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "binary-1.11", "avg_time_ser_ns": 9062.464285714286, "avg_time_deser_ns": 5992.035714285715, "avg_time_total_ns": 15054.5, "median_size_bytes": 4051.0, "avg_ops_per_sec": 66425.32133249195, "min_ops_per_sec": 42115.90296495957, "max_ops_per_sec": 90489.5484571532, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 9062.464285714286, "ser_median_ns": 6227.0, "ser_std_ns": 4382.113236829448, "ser_mad_ns": 934.5, "ser_cv": 0.4835454351789546, "ser_min_ns": 5174.0, "ser_max_ns": 17554.0, "ser_p5_ns": 5322.35, "ser_p25_ns": 5543.25, "ser_p50_ns": 6227.0, "ser_p75_ns": 14250.0, "ser_p95_ns": 16808.35, "ser_p99_ns": 17399.62, "ser_ci_low_ns": 8124.222023809524, "ser_ci_high_ns": 10069.055357142857, "deser_mean_ns": 5992.035714285715, "deser_median_ns": 5993.0, "deser_std_ns": 152.06794981101248, "deser_mad_ns": 117.0, "deser_cv": 0.02537834503363601, "deser_min_ns": 5562.0, "deser_max_ns": 6415.0, "deser_p5_ns": 5771.5, "deser_p25_ns": 5886.5, "deser_p50_ns": 5993.0, "deser_p75_ns": 6112.25, "deser_p95_ns": 6229.95, "deser_p99_ns": 6312.91, "deser_ci_low_ns": 5960.549702380952, "deser_ci_high_ns": 6024.575, "total_mean_ns": 15054.5, "total_median_ns": 12370.0, "total_std_ns": 4379.239906265299, "total_mad_ns": 1130.0, "total_cv": 0.29089241796574444, "total_min_ns": 11051.0, "total_max_ns": 23744.0, "total_p5_ns": 11274.25, "total_p25_ns": 11509.5, "total_p50_ns": 12370.0, "total_p75_ns": 20266.0, "total_p95_ns": 22669.2, "total_p99_ns": 23436.07, "total_ci_low_ns": 14139.876488095239, "total_ci_high_ns": 15994.75119047619, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.36473050758765047, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.7134961029701063}, {"serializer": "simdjson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.10.1", "avg_time_ser_ns": 8175.2474226804125, "avg_time_deser_ns": 223189.34020618556, "avg_time_total_ns": 231364.587628866, "median_size_bytes": 16546.0, "avg_ops_per_sec": 4322.182622018669, "min_ops_per_sec": 4020.2782836627953, "max_ops_per_sec": 4642.956634785031, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 8175.2474226804125, "ser_median_ns": 6119.0, "ser_std_ns": 4842.479708766057, "ser_mad_ns": 3157.0, "ser_cv": 0.592334330497652, "ser_min_ns": 2962.0, "ser_max_ns": 15496.0, "ser_p5_ns": 2978.4, "ser_p25_ns": 3050.0, "ser_p50_ns": 6119.0, "ser_p75_ns": 13018.0, "ser_p95_ns": 13899.4, "ser_p99_ns": 14518.719999999992, "ser_ci_low_ns": 7229.82293814433, "ser_ci_high_ns": 9081.086597938143, "deser_mean_ns": 223189.34020618556, "deser_median_ns": 222630.0, "deser_std_ns": 5657.881416452404, "deser_mad_ns": 4029.0, "deser_cv": 0.025350141773014655, "deser_min_ns": 212384.0, "deser_max_ns": 234745.0, "deser_p5_ns": 214823.2, "deser_p25_ns": 218760.0, "deser_p50_ns": 222630.0, "deser_p75_ns": 227490.0, "deser_p95_ns": 233060.6, "deser_p99_ns": 234519.4, "deser_ci_low_ns": 222062.92139175258, "deser_ci_high_ns": 224307.35025773195, "total_mean_ns": 231364.587628866, "total_median_ns": 231068.0, "total_std_ns": 7423.615510305296, "total_mad_ns": 4879.0, "total_cv": 0.0320862219511898, "total_min_ns": 215380.0, "total_max_ns": 248739.0, "total_p5_ns": 221009.4, "total_p25_ns": 226189.0, "total_p50_ns": 231068.0, "total_p75_ns": 235507.0, "total_p95_ns": 245613.4, "total_p99_ns": 247386.36, "total_ci_low_ns": 230061.8481958763, "total_ci_high_ns": 232824.00773195876, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 34.69682879084601}, {"serializer": "nlohmann_json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 73816.10752688172, "avg_time_deser_ns": 222451.7311827957, "avg_time_total_ns": 296267.8387096774, "median_size_bytes": 16546.0, "avg_ops_per_sec": 3375.32418083332, "min_ops_per_sec": 3186.9868951098874, "max_ops_per_sec": 3528.307611970842, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 73816.10752688172, "ser_median_ns": 73679.0, "ser_std_ns": 1371.3548795638567, "ser_mad_ns": 1020.0, "ser_cv": 0.018577989621905332, "ser_min_ns": 71108.0, "ser_max_ns": 77433.0, "ser_p5_ns": 72145.0, "ser_p25_ns": 72666.0, "ser_p50_ns": 73679.0, "ser_p75_ns": 74727.0, "ser_p95_ns": 76096.8, "ser_p99_ns": 77026.36, "ser_ci_low_ns": 73519.67392473118, "ser_ci_high_ns": 74086.73064516128, "deser_mean_ns": 222451.7311827957, "deser_median_ns": 222537.0, "deser_std_ns": 6065.71773798879, "deser_mad_ns": 4481.0, "deser_cv": 0.027267568140453786, "deser_min_ns": 211362.0, "deser_max_ns": 237840.0, "deser_p5_ns": 213461.0, "deser_p25_ns": 217624.0, "deser_p50_ns": 222537.0, "deser_p75_ns": 225659.0, "deser_p95_ns": 232324.8, "deser_p99_ns": 236793.96, "deser_ci_low_ns": 221226.38897849462, "deser_ci_high_ns": 223723.6126344086, "total_mean_ns": 296267.8387096774, "total_median_ns": 296675.0, "total_std_ns": 6636.820477441711, "total_mad_ns": 4587.0, "total_cv": 0.022401420641358746, "total_min_ns": 283422.0, "total_max_ns": 313776.0, "total_p5_ns": 286362.8, "total_p25_ns": 291227.0, "total_p50_ns": 296675.0, "total_p75_ns": 300342.0, "total_p95_ns": 306102.6, "total_p99_ns": 313538.64, "total_ci_low_ns": 294959.5424731183, "total_ci_high_ns": 297623.5518817204, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 48.72867557640048}, {"serializer": "cista", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "0.15", "avg_time_ser_ns": 7019.066666666667, "avg_time_deser_ns": 14025.322222222223, "avg_time_total_ns": 21044.38888888889, "median_size_bytes": 6696.0, "avg_ops_per_sec": 47518.60485376149, "min_ops_per_sec": 30978.934324659233, "max_ops_per_sec": 60664.887163309875, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 7019.066666666667, "ser_median_ns": 4250.5, "ser_std_ns": 4562.389990177507, "ser_mad_ns": 1093.0, "ser_cv": 0.649999523703651, "ser_min_ns": 2991.0, "ser_max_ns": 17129.0, "ser_p5_ns": 3146.35, "ser_p25_ns": 3293.5, "ser_p50_ns": 4250.5, "ser_p75_ns": 12233.0, "ser_p95_ns": 14027.1, "ser_p99_ns": 15210.159999999998, "ser_ci_low_ns": 6166.653611111112, "ser_ci_high_ns": 7992.903611111111, "deser_mean_ns": 14025.322222222223, "deser_median_ns": 13922.0, "deser_std_ns": 453.8246413743989, "deser_mad_ns": 196.0, "deser_cv": 0.03235751979055018, "deser_min_ns": 13410.0, "deser_max_ns": 15212.0, "deser_p5_ns": 13502.2, "deser_p25_ns": 13727.5, "deser_p50_ns": 13922.0, "deser_p75_ns": 14121.5, "deser_p95_ns": 15141.1, "deser_p99_ns": 15202.21, "deser_ci_low_ns": 13939.576388888889, "deser_ci_high_ns": 14120.785277777777, "total_mean_ns": 21044.38888888889, "total_median_ns": 18601.0, "total_std_ns": 4616.799345366958, "total_mad_ns": 1591.0, "total_cv": 0.2193838637815972, "total_min_ns": 16484.0, "total_max_ns": 32280.0, "total_p5_ns": 16821.95, "total_p25_ns": 17228.5, "total_p50_ns": 18601.0, "total_p75_ns": 26195.0, "total_p95_ns": 28323.65, "total_p99_ns": 29074.219999999998, "total_ci_low_ns": 20123.129166666666, "total_ci_high_ns": 22002.212222222224, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.8677655677655678, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.959636962505205}, {"serializer": "flexbuffers", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "flatbuffers-flex", "avg_time_ser_ns": 64960.15625, "avg_time_deser_ns": 120758.3125, "avg_time_total_ns": 185718.46875, "median_size_bytes": 14490.0, "avg_ops_per_sec": 5384.494104063088, "min_ops_per_sec": 5001.775630348774, "max_ops_per_sec": 5749.703890249652, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 64960.15625, "ser_median_ns": 63683.5, "ser_std_ns": 4990.844114508983, "ser_mad_ns": 3385.5, "ser_cv": 0.076829312037084, "ser_min_ns": 55638.0, "ser_max_ns": 76748.0, "ser_p5_ns": 57210.5, "ser_p25_ns": 61508.5, "ser_p50_ns": 63683.5, "ser_p75_ns": 68979.75, "ser_p95_ns": 72883.75, "ser_p99_ns": 75209.95, "ser_ci_low_ns": 63995.77890625, "ser_ci_high_ns": 65989.23177083334, "deser_mean_ns": 120758.3125, "deser_median_ns": 120663.0, "deser_std_ns": 2110.8934118170514, "deser_mad_ns": 1385.5, "deser_cv": 0.017480315583385215, "deser_min_ns": 115512.0, "deser_max_ns": 125987.0, "deser_p5_ns": 117656.5, "deser_p25_ns": 119407.0, "deser_p50_ns": 120663.0, "deser_p75_ns": 122118.25, "deser_p95_ns": 124819.0, "deser_p99_ns": 125177.59999999999, "deser_ci_low_ns": 120344.50104166666, "deser_ci_high_ns": 121214.67864583334, "total_mean_ns": 185718.46875, "total_median_ns": 185139.5, "total_std_ns": 5570.016736161429, "total_mad_ns": 3568.0, "total_cv": 0.029991722275393946, "total_min_ns": 173922.0, "total_max_ns": 199929.0, "total_p5_ns": 177379.5, "total_p25_ns": 181753.25, "total_p50_ns": 185139.5, "total_p75_ns": 188992.5, "total_p95_ns": 195490.5, "total_p99_ns": 198729.15, "total_ci_low_ns": 184645.14244791667, "total_ci_high_ns": 186861.27317708335, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 33.167084879610854}, {"serializer": "protobuf-wire", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "wire-v2", "avg_time_ser_ns": 29095.31914893617, "avg_time_deser_ns": 12532.159574468085, "avg_time_total_ns": 41627.47872340425, "median_size_bytes": 4841.0, "avg_ops_per_sec": 24022.593504750726, "min_ops_per_sec": 19440.12441679627, "max_ops_per_sec": 28913.43318105592, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 29095.31914893617, "ser_median_ns": 27073.5, "ser_std_ns": 4533.783703623529, "ser_mad_ns": 2489.5, "ser_cv": 0.15582519237598053, "ser_min_ns": 23134.0, "ser_max_ns": 38812.0, "ser_p5_ns": 24338.45, "ser_p25_ns": 24962.25, "ser_p50_ns": 27073.5, "ser_p75_ns": 33873.0, "ser_p95_ns": 35941.1, "ser_p99_ns": 37707.15999999999, "ser_ci_low_ns": 28164.207712765958, "ser_ci_high_ns": 30030.263563829787, "deser_mean_ns": 12532.159574468085, "deser_median_ns": 12561.5, "deser_std_ns": 486.89751418131726, "deser_mad_ns": 321.5, "deser_cv": 0.03885184443176731, "deser_min_ns": 11371.0, "deser_max_ns": 13583.0, "deser_p5_ns": 11708.7, "deser_p25_ns": 12244.25, "deser_p50_ns": 12561.5, "deser_p75_ns": 12880.0, "deser_p95_ns": 13307.4, "deser_p99_ns": 13548.59, "deser_ci_low_ns": 12431.772606382978, "deser_ci_high_ns": 12630.104521276597, "total_mean_ns": 41627.47872340425, "total_median_ns": 39644.5, "total_std_ns": 4617.645046894827, "total_mad_ns": 2631.0, "total_cv": 0.11092780991078002, "total_min_ns": 34586.0, "total_max_ns": 51440.0, "total_p5_ns": 36554.65, "total_p25_ns": 37700.5, "total_p50_ns": 39644.5, "total_p75_ns": 46297.75, "total_p95_ns": 48770.85, "total_p99_ns": 50851.31, "total_ci_low_ns": 40702.50132978723, "total_ci_high_ns": 42565.01675531915, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.2995183448701315}, {"serializer": "cereal", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "1.3.2", "avg_time_ser_ns": 7973.4838709677415, "avg_time_deser_ns": 13874.36559139785, "avg_time_total_ns": 21847.84946236559, "median_size_bytes": 6162.0, "avg_ops_per_sec": 45771.09530723233, "min_ops_per_sec": 32194.71362802228, "max_ops_per_sec": 60768.108896451144, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 7973.4838709677415, "ser_median_ns": 7896.0, "ser_std_ns": 472.273907556585, "ser_mad_ns": 294.0, "ser_cv": 0.05923055908800191, "ser_min_ns": 7042.0, "ser_max_ns": 9353.0, "ser_p5_ns": 7287.6, "ser_p25_ns": 7652.0, "ser_p50_ns": 7896.0, "ser_p75_ns": 8265.0, "ser_p95_ns": 8818.8, "ser_p99_ns": 9263.76, "ser_ci_low_ns": 7880.537365591398, "ser_ci_high_ns": 8072.711559139785, "deser_mean_ns": 13874.36559139785, "deser_median_ns": 12133.0, "deser_std_ns": 4613.412143307876, "deser_mad_ns": 2774.0, "deser_cv": 0.33251337604713305, "deser_min_ns": 9052.0, "deser_max_ns": 22736.0, "deser_p5_ns": 9257.0, "deser_p25_ns": 9616.0, "deser_p50_ns": 12133.0, "deser_p75_ns": 18698.0, "deser_p95_ns": 20595.8, "deser_p99_ns": 21885.0, "deser_ci_low_ns": 12936.494086021505, "deser_ci_high_ns": 14790.847043010752, "total_mean_ns": 21847.84946236559, "total_median_ns": 20060.0, "total_std_ns": 4654.088377895934, "total_mad_ns": 2908.0, "total_cv": 0.2130227227129571, "total_min_ns": 16456.0, "total_max_ns": 31061.0, "total_p5_ns": 16922.4, "total_p25_ns": 17795.0, "total_p50_ns": 20060.0, "total_p75_ns": 26649.0, "total_p95_ns": 28680.0, "total_p99_ns": 30597.32, "total_ci_low_ns": 20969.17553763441, "total_ci_high_ns": 22755.126881720433, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.9075977785655205, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.12158404360229}, {"serializer": "avro_c", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "avro-c", "avg_time_ser_ns": 40633.183673469386, "avg_time_deser_ns": 45988.62244897959, "avg_time_total_ns": 86621.80612244898, "median_size_bytes": 4051.0, "avg_ops_per_sec": 11544.437189249962, "min_ops_per_sec": 10106.318470307637, "max_ops_per_sec": 12608.114582545326, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 40633.183673469386, "ser_median_ns": 39104.5, "ser_std_ns": 4992.183978293745, "ser_mad_ns": 3544.5, "ser_cv": 0.12285977929790647, "ser_min_ns": 34446.0, "ser_max_ns": 50766.0, "ser_p5_ns": 35371.8, "ser_p25_ns": 36012.75, "ser_p50_ns": 39104.5, "ser_p75_ns": 45728.25, "ser_p95_ns": 47963.0, "ser_p99_ns": 50231.53, "ser_ci_low_ns": 39688.21479591837, "ser_ci_high_ns": 41679.9, "deser_mean_ns": 45988.62244897959, "deser_median_ns": 45696.0, "deser_std_ns": 1190.4987996920313, "deser_mad_ns": 702.0, "deser_cv": 0.025886811482835496, "deser_min_ns": 43975.0, "deser_max_ns": 49270.0, "deser_p5_ns": 44619.7, "deser_p25_ns": 45125.25, "deser_p50_ns": 45696.0, "deser_p75_ns": 46740.5, "deser_p95_ns": 48620.1, "deser_p99_ns": 49113.83, "deser_ci_low_ns": 45768.46964285714, "deser_ci_high_ns": 46224.620663265305, "total_mean_ns": 86621.80612244898, "total_median_ns": 85273.5, "total_std_ns": 5283.322544228573, "total_mad_ns": 4262.5, "total_cv": 0.060992985262395064, "total_min_ns": 79314.0, "total_max_ns": 98948.0, "total_p5_ns": 80340.2, "total_p25_ns": 81650.25, "total_p50_ns": 85273.5, "total_p75_ns": 91427.25, "total_p95_ns": 95728.4, "total_p99_ns": 98316.53, "total_ci_low_ns": 85531.8237244898, "total_ci_high_ns": 87708.86683673468, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.706043822792902}, {"serializer": "jsoncons_msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 42696.010416666664, "avg_time_deser_ns": 369170.625, "avg_time_total_ns": 411866.6354166667, "median_size_bytes": 12031.0, "avg_ops_per_sec": 2427.970401118667, "min_ops_per_sec": 2269.998115901564, "max_ops_per_sec": 2620.3047414414295, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 42696.010416666664, "ser_median_ns": 42571.0, "ser_std_ns": 6011.6625697490645, "ser_mad_ns": 4047.5, "ser_cv": 0.14080150606770447, "ser_min_ns": 32158.0, "ser_max_ns": 57903.0, "ser_p5_ns": 33281.75, "ser_p25_ns": 38550.25, "ser_p50_ns": 42571.0, "ser_p75_ns": 46579.5, "ser_p95_ns": 51342.75, "ser_p99_ns": 57363.4, "ser_ci_low_ns": 41447.38229166667, "ser_ci_high_ns": 43861.21770833334, "deser_mean_ns": 369170.625, "deser_median_ns": 367570.0, "deser_std_ns": 8848.789500621866, "deser_mad_ns": 5737.5, "deser_cv": 0.023969375950813707, "deser_min_ns": 348906.0, "deser_max_ns": 391642.0, "deser_p5_ns": 356503.5, "deser_p25_ns": 363044.5, "deser_p50_ns": 367570.0, "deser_p75_ns": 374138.75, "deser_p95_ns": 384540.5, "deser_p99_ns": 390330.05, "deser_ci_low_ns": 367408.71953125, "deser_ci_high_ns": 370935.06223958335, "total_mean_ns": 411866.6354166667, "total_median_ns": 412831.5, "total_std_ns": 11789.67770294693, "total_mad_ns": 8669.0, "total_cv": 0.028624988501483862, "total_min_ns": 381635.0, "total_max_ns": 440529.0, "total_p5_ns": 394122.25, "total_p25_ns": 403425.75, "total_p50_ns": 412831.5, "total_p75_ns": 421311.5, "total_p95_ns": 429889.0, "total_p99_ns": 438914.95, "total_ci_low_ns": 409598.6895833333, "total_ci_high_ns": 414349.3489583333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 43.81061385436442}, {"serializer": "simdjson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.10.1", "avg_time_ser_ns": 145.14736842105262, "avg_time_deser_ns": 8686.368421052632, "avg_time_total_ns": 8831.515789473684, "median_size_bytes": 458.0, "avg_ops_per_sec": 113230.845512602, "min_ops_per_sec": 101636.34515702815, "max_ops_per_sec": 125849.48401711552, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 145.14736842105262, "ser_median_ns": 143.0, "ser_std_ns": 9.162792964812281, "ser_mad_ns": 7.0, "ser_cv": 0.06312751698144657, "ser_min_ns": 127.0, "ser_max_ns": 165.0, "ser_p5_ns": 132.0, "ser_p25_ns": 138.5, "ser_p50_ns": 143.0, "ser_p75_ns": 152.0, "ser_p95_ns": 161.0, "ser_p99_ns": 164.06, "ser_ci_low_ns": 143.3578947368421, "ser_ci_high_ns": 147.00026315789472, "deser_mean_ns": 8686.368421052632, "deser_median_ns": 8663.0, "deser_std_ns": 379.081422024446, "deser_mad_ns": 272.0, "deser_cv": 0.04364095599556761, "deser_min_ns": 7811.0, "deser_max_ns": 9696.0, "deser_p5_ns": 8051.4, "deser_p25_ns": 8415.0, "deser_p50_ns": 8663.0, "deser_p75_ns": 8950.5, "deser_p95_ns": 9274.1, "deser_p99_ns": 9580.380000000001, "deser_ci_low_ns": 8611.455263157895, "deser_ci_high_ns": 8761.608421052631, "total_mean_ns": 8831.515789473684, "total_median_ns": 8828.0, "total_std_ns": 378.9176877763064, "total_mad_ns": 261.0, "total_cv": 0.04290517016659131, "total_min_ns": 7946.0, "total_max_ns": 9839.0, "total_p5_ns": 8194.5, "total_p25_ns": 8575.5, "total_p50_ns": 8828.0, "total_p75_ns": 9092.0, "total_p95_ns": 9423.699999999999, "total_p99_ns": 9720.56, "total_ci_low_ns": 8755.376578947367, "total_ci_high_ns": 8909.57447368421, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.95129178754969}, {"serializer": "nlohmann_msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 2305.7976190476193, "avg_time_deser_ns": 7903.428571428572, "avg_time_total_ns": 10209.22619047619, "median_size_bytes": 332.0, "avg_ops_per_sec": 97950.6165641489, "min_ops_per_sec": 89968.5110211426, "max_ops_per_sec": 106337.72862611654, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 2305.7976190476193, "ser_median_ns": 2307.5, "ser_std_ns": 97.65451516244481, "ser_mad_ns": 54.5, "ser_cv": 0.04235172868414175, "ser_min_ns": 2078.0, "ser_max_ns": 2518.0, "ser_p5_ns": 2136.3, "ser_p25_ns": 2248.0, "ser_p50_ns": 2307.5, "ser_p75_ns": 2360.0, "ser_p95_ns": 2478.5499999999997, "ser_p99_ns": 2517.17, "ser_ci_low_ns": 2284.737797619048, "ser_ci_high_ns": 2325.6086309523807, "deser_mean_ns": 7903.428571428572, "deser_median_ns": 7907.0, "deser_std_ns": 369.18821026073533, "deser_mad_ns": 193.5, "deser_cv": 0.04671241182534067, "deser_min_ns": 7100.0, "deser_max_ns": 8674.0, "deser_p5_ns": 7221.95, "deser_p25_ns": 7725.0, "deser_p50_ns": 7907.0, "deser_p75_ns": 8112.0, "deser_p95_ns": 8487.949999999999, "deser_p99_ns": 8658.23, "deser_ci_low_ns": 7828.846428571429, "deser_ci_high_ns": 7983.447321428572, "total_mean_ns": 10209.22619047619, "total_median_ns": 10212.0, "total_std_ns": 416.92709342702284, "total_mad_ns": 252.0, "total_cv": 0.0408382658634754, "total_min_ns": 9404.0, "total_max_ns": 11115.0, "total_p5_ns": 9462.35, "total_p25_ns": 9965.5, "total_p50_ns": 10212.0, "total_p75_ns": 10466.5, "total_p95_ns": 10895.25, "total_p99_ns": 11065.2, "total_ci_low_ns": 10123.129166666666, "total_ci_high_ns": 10299.30357142857, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 32.78369946045138}, {"serializer": "avro_c", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "avro-c", "avg_time_ser_ns": 2396.5113636363635, "avg_time_deser_ns": 2533.4772727272725, "avg_time_total_ns": 4929.988636363636, "median_size_bytes": 125.0, "avg_ops_per_sec": 202840.2241384477, "min_ops_per_sec": 180570.60310581437, "max_ops_per_sec": 229568.41138659322, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 2396.5113636363635, "ser_median_ns": 2374.0, "ser_std_ns": 143.7227530853795, "ser_mad_ns": 87.0, "ser_cv": 0.0599716551593149, "ser_min_ns": 2075.0, "ser_max_ns": 2767.0, "ser_p5_ns": 2202.5, "ser_p25_ns": 2316.5, "ser_p50_ns": 2374.0, "ser_p75_ns": 2483.5, "ser_p95_ns": 2635.7999999999997, "ser_p99_ns": 2757.43, "ser_ci_low_ns": 2368.5110795454543, "ser_ci_high_ns": 2425.625852272727, "deser_mean_ns": 2533.4772727272725, "deser_median_ns": 2547.5, "deser_std_ns": 112.26671621405868, "deser_mad_ns": 61.5, "deser_cv": 0.04431329123122713, "deser_min_ns": 2281.0, "deser_max_ns": 2788.0, "deser_p5_ns": 2338.7, "deser_p25_ns": 2468.5, "deser_p50_ns": 2547.5, "deser_p75_ns": 2586.25, "deser_p95_ns": 2733.7999999999997, "deser_p99_ns": 2782.7799999999997, "deser_ci_low_ns": 2509.453977272727, "deser_ci_high_ns": 2556.818465909091, "total_mean_ns": 4929.988636363636, "total_median_ns": 4923.0, "total_std_ns": 234.32178946655551, "total_mad_ns": 118.0, "total_cv": 0.04752988429591827, "total_min_ns": 4356.0, "total_max_ns": 5538.0, "total_p5_ns": 4554.4, "total_p25_ns": 4806.5, "total_p50_ns": 4923.0, "total_p75_ns": 5041.0, "total_p95_ns": 5357.65, "total_p99_ns": 5515.38, "total_ci_low_ns": 4881.590909090909, "total_ci_high_ns": 4979.596022727273, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.752827887945696}, {"serializer": "jsoncons_cbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 3065.2474226804125, "avg_time_deser_ns": 16232.670103092783, "avg_time_total_ns": 19297.917525773195, "median_size_bytes": 338.0, "avg_ops_per_sec": 51819.06279081446, "min_ops_per_sec": 46539.76823195421, "max_ops_per_sec": 56715.06352087115, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 3065.2474226804125, "ser_median_ns": 3072.0, "ser_std_ns": 283.911739180207, "ser_mad_ns": 244.0, "ser_cv": 0.09262278049056795, "ser_min_ns": 2610.0, "ser_max_ns": 3891.0, "ser_p5_ns": 2652.4, "ser_p25_ns": 2812.0, "ser_p50_ns": 3072.0, "ser_p75_ns": 3276.0, "ser_p95_ns": 3496.0, "ser_p99_ns": 3770.039999999999, "ser_ci_low_ns": 3008.8360824742267, "ser_ci_high_ns": 3120.5208762886596, "deser_mean_ns": 16232.670103092783, "deser_median_ns": 16193.0, "deser_std_ns": 699.6460224292217, "deser_mad_ns": 456.0, "deser_cv": 0.04310110523936043, "deser_min_ns": 14595.0, "deser_max_ns": 17983.0, "deser_p5_ns": 15058.2, "deser_p25_ns": 15737.0, "deser_p50_ns": 16193.0, "deser_p75_ns": 16642.0, "deser_p95_ns": 17449.8, "deser_p99_ns": 17764.12, "deser_ci_low_ns": 16093.219072164948, "deser_ci_high_ns": 16371.650257731959, "total_mean_ns": 19297.917525773195, "total_median_ns": 19278.0, "total_std_ns": 814.9380430195176, "total_mad_ns": 545.0, "total_cv": 0.04222932562185184, "total_min_ns": 17632.0, "total_max_ns": 21487.0, "total_p5_ns": 17950.6, "total_p25_ns": 18776.0, "total_p50_ns": 19278.0, "total_p75_ns": 19885.0, "total_p95_ns": 20525.4, "total_p99_ns": 21210.519999999997, "total_ci_low_ns": 19133.74226804124, "total_ci_high_ns": 19456.740721649487, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 31.593247501647767}, {"serializer": "capnproto", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "1.0.x", "avg_time_ser_ns": 1191.5463917525774, "avg_time_deser_ns": 588.360824742268, "avg_time_total_ns": 1779.9072164948454, "median_size_bytes": 392.0, "avg_ops_per_sec": 561827.0383606234, "min_ops_per_sec": 372162.2627465575, "max_ops_per_sec": 962463.9076034649, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 1191.5463917525774, "ser_median_ns": 1098.0, "ser_std_ns": 401.22053424048465, "ser_mad_ns": 369.0, "ser_cv": 0.3367225456076052, "ser_min_ns": 531.0, "ser_max_ns": 2141.0, "ser_p5_ns": 647.2, "ser_p25_ns": 921.0, "ser_p50_ns": 1098.0, "ser_p75_ns": 1523.0, "ser_p95_ns": 1890.1999999999998, "ser_p99_ns": 2024.839999999999, "ser_ci_low_ns": 1114.0917525773195, "ser_ci_high_ns": 1270.9853092783505, "deser_mean_ns": 588.360824742268, "deser_median_ns": 584.0, "deser_std_ns": 56.18740694597602, "deser_mad_ns": 41.0, "deser_cv": 0.09549821229275243, "deser_min_ns": 465.0, "deser_max_ns": 738.0, "deser_p5_ns": 505.2, "deser_p25_ns": 546.0, "deser_p50_ns": 584.0, "deser_p75_ns": 635.0, "deser_p95_ns": 686.0, "deser_p99_ns": 715.9199999999998, "deser_ci_low_ns": 577.8628865979381, "deser_ci_high_ns": 599.5579896907216, "total_mean_ns": 1779.9072164948454, "total_median_ns": 1710.0, "total_std_ns": 415.71803050250264, "total_mad_ns": 329.0, "total_cv": 0.23356162987033238, "total_min_ns": 1039.0, "total_max_ns": 2687.0, "total_p5_ns": 1198.6, "total_p25_ns": 1492.0, "total_p50_ns": 1710.0, "total_p75_ns": 2113.0, "total_p95_ns": 2505.6, "total_p99_ns": 2595.7999999999993, "total_ci_low_ns": 1699.7646907216495, "total_ci_high_ns": 1862.8373711340205, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.8716965256766556}, {"serializer": "flexbuffers", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "flatbuffers-flex", "avg_time_ser_ns": 3834.306818181818, "avg_time_deser_ns": 5381.477272727273, "avg_time_total_ns": 9215.78409090909, "median_size_bytes": 467.0, "avg_ops_per_sec": 108509.48656516921, "min_ops_per_sec": 99364.06995230525, "max_ops_per_sec": 120875.13598452798, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 3834.306818181818, "ser_median_ns": 3806.0, "ser_std_ns": 195.32238943614996, "ser_mad_ns": 111.5, "ser_cv": 0.050940730280100405, "ser_min_ns": 3334.0, "ser_max_ns": 4339.0, "ser_p5_ns": 3556.1, "ser_p25_ns": 3716.25, "ser_p50_ns": 3806.0, "ser_p75_ns": 3940.75, "ser_p95_ns": 4239.5, "ser_p99_ns": 4289.41, "ser_ci_low_ns": 3793.1136363636365, "ser_ci_high_ns": 3874.9340909090906, "deser_mean_ns": 5381.477272727273, "deser_median_ns": 5363.0, "deser_std_ns": 237.86705343472408, "deser_mad_ns": 172.0, "deser_cv": 0.04420106996274198, "deser_min_ns": 4927.0, "deser_max_ns": 5873.0, "deser_p5_ns": 4976.3, "deser_p25_ns": 5204.25, "deser_p50_ns": 5363.0, "deser_p75_ns": 5561.25, "deser_p95_ns": 5791.099999999999, "deser_p99_ns": 5869.52, "deser_ci_low_ns": 5335.441761363637, "deser_ci_high_ns": 5430.319886363636, "total_mean_ns": 9215.78409090909, "total_median_ns": 9167.5, "total_std_ns": 373.91969907078584, "total_mad_ns": 262.0, "total_cv": 0.040573834562773546, "total_min_ns": 8273.0, "total_max_ns": 10064.0, "total_p5_ns": 8595.5, "total_p25_ns": 8947.75, "total_p50_ns": 9167.5, "total_p75_ns": 9481.0, "total_p95_ns": 9798.0, "total_p99_ns": 9942.199999999999, "total_ci_low_ns": 9136.928125, "total_ci_high_ns": 9294.888920454545, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 32.362660886116316}, {"serializer": "rapidjson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "1.1.0", "avg_time_ser_ns": 1377.8736842105263, "avg_time_deser_ns": 11322.684210526315, "avg_time_total_ns": 12700.557894736841, "median_size_bytes": 458.0, "avg_ops_per_sec": 78736.6986779694, "min_ops_per_sec": 70601.52499293984, "max_ops_per_sec": 90009.00090009, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1377.8736842105263, "ser_median_ns": 1324.0, "ser_std_ns": 245.93820544164473, "ser_mad_ns": 160.0, "ser_cv": 0.17849111152925368, "ser_min_ns": 1008.0, "ser_max_ns": 1968.0, "ser_p5_ns": 1079.8, "ser_p25_ns": 1187.0, "ser_p50_ns": 1324.0, "ser_p75_ns": 1546.5, "ser_p95_ns": 1861.2, "ser_p99_ns": 1933.22, "ser_ci_low_ns": 1332.3934210526318, "ser_ci_high_ns": 1429.1765789473684, "deser_mean_ns": 11322.684210526315, "deser_median_ns": 11318.0, "deser_std_ns": 593.1704441489563, "deser_mad_ns": 462.0, "deser_cv": 0.05238779366446571, "deser_min_ns": 9958.0, "deser_max_ns": 12580.0, "deser_p5_ns": 10523.2, "deser_p25_ns": 10841.5, "deser_p50_ns": 11318.0, "deser_p75_ns": 11694.5, "deser_p95_ns": 12316.7, "deser_p99_ns": 12475.66, "deser_ci_low_ns": 11208.031315789473, "deser_ci_high_ns": 11446.414736842105, "total_mean_ns": 12700.557894736841, "total_median_ns": 12730.0, "total_std_ns": 710.5359337161659, "total_mad_ns": 531.0, "total_cv": 0.05594525371287939, "total_min_ns": 11110.0, "total_max_ns": 14164.0, "total_p5_ns": 11675.1, "total_p25_ns": 12146.0, "total_p50_ns": 12730.0, "total_p75_ns": 13188.5, "total_p95_ns": 13959.9, "total_p99_ns": 14144.26, "total_ci_low_ns": 12555.396578947368, "total_ci_high_ns": 12840.36894736842, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.555193694482938}, {"serializer": "avro", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "binary-1.11", "avg_time_ser_ns": 466.65934065934067, "avg_time_deser_ns": 452.1098901098901, "avg_time_total_ns": 918.7692307692307, "median_size_bytes": 125.0, "avg_ops_per_sec": 1088412.5920964503, "min_ops_per_sec": 871839.5815170009, "max_ops_per_sec": 1497005.988023952, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 466.65934065934067, "ser_median_ns": 463.0, "ser_std_ns": 43.16305513340464, "ser_mad_ns": 26.0, "ser_cv": 0.09249371302076537, "ser_min_ns": 343.0, "ser_max_ns": 571.0, "ser_p5_ns": 410.0, "ser_p25_ns": 439.0, "ser_p50_ns": 463.0, "ser_p75_ns": 493.0, "ser_p95_ns": 543.5, "ser_p99_ns": 566.5, "ser_ci_low_ns": 457.6901098901099, "ser_ci_high_ns": 475.518956043956, "deser_mean_ns": 452.1098901098901, "deser_median_ns": 451.0, "deser_std_ns": 58.26156548025476, "deser_mad_ns": 37.0, "deser_cv": 0.1288659389116519, "deser_min_ns": 317.0, "deser_max_ns": 607.0, "deser_p5_ns": 359.5, "deser_p25_ns": 415.5, "deser_p50_ns": 451.0, "deser_p75_ns": 488.5, "deser_p95_ns": 554.0, "deser_p99_ns": 596.1999999999999, "deser_ci_low_ns": 440.6263736263736, "deser_ci_high_ns": 464.7697802197802, "total_mean_ns": 918.7692307692307, "total_median_ns": 914.0, "total_std_ns": 90.62647110506546, "total_mad_ns": 59.0, "total_cv": 0.09863899232801834, "total_min_ns": 668.0, "total_max_ns": 1147.0, "total_p5_ns": 777.5, "total_p25_ns": 859.0, "total_p50_ns": 914.0, "total_p75_ns": 982.5, "total_p95_ns": 1062.5, "total_p99_ns": 1109.1999999999998, "total_ci_low_ns": 900.3601648351648, "total_ci_high_ns": 937.5494505494505, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.9987652796641561, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.474338194181697}, {"serializer": "zpp_bits", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "4.4.25", "avg_time_ser_ns": 603.934065934066, "avg_time_deser_ns": 329.3626373626374, "avg_time_total_ns": 933.2967032967033, "median_size_bytes": 227.0, "avg_ops_per_sec": 1071470.6228658895, "min_ops_per_sec": 889679.7153024911, "max_ops_per_sec": 1386962.5520110957, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 603.934065934066, "ser_median_ns": 609.0, "ser_std_ns": 67.02185418002801, "ser_mad_ns": 52.0, "ser_cv": 0.11097544907715981, "ser_min_ns": 456.0, "ser_max_ns": 754.0, "ser_p5_ns": 508.5, "ser_p25_ns": 551.0, "ser_p50_ns": 609.0, "ser_p75_ns": 642.5, "ser_p95_ns": 726.0, "ser_p99_ns": 742.3, "ser_ci_low_ns": 590.6590659340659, "ser_ci_high_ns": 618.0810439560439, "deser_mean_ns": 329.3626373626374, "deser_median_ns": 330.0, "deser_std_ns": 30.133228791675766, "deser_mad_ns": 19.0, "deser_cv": 0.09148951755113087, "deser_min_ns": 251.0, "deser_max_ns": 399.0, "deser_p5_ns": 277.0, "deser_p25_ns": 311.5, "deser_p50_ns": 330.0, "deser_p75_ns": 349.5, "deser_p95_ns": 378.0, "deser_p99_ns": 392.69999999999993, "deser_ci_low_ns": 323.0876373626374, "deser_ci_high_ns": 335.5054945054945, "total_mean_ns": 933.2967032967033, "total_median_ns": 929.0, "total_std_ns": 86.5412547100443, "total_mad_ns": 59.0, "total_cv": 0.09272641208776676, "total_min_ns": 721.0, "total_max_ns": 1124.0, "total_p5_ns": 800.0, "total_p25_ns": 875.0, "total_p50_ns": 929.0, "total_p75_ns": 995.5, "total_p95_ns": 1080.0, "total_p99_ns": 1109.6, "total_ci_low_ns": 915.2277472527473, "total_ci_high_ns": 951.5736263736263, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.875141321920626}, {"serializer": "nlohmann_json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 2390.9239130434785, "avg_time_deser_ns": 7033.434782608696, "avg_time_total_ns": 9424.358695652174, "median_size_bytes": 458.0, "avg_ops_per_sec": 106108.01565323901, "min_ops_per_sec": 98241.47755182238, "max_ops_per_sec": 113934.14606357526, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 2390.9239130434785, "ser_median_ns": 2377.0, "ser_std_ns": 81.36516976233685, "ser_mad_ns": 51.0, "ser_cv": 0.03403084862653145, "ser_min_ns": 2180.0, "ser_max_ns": 2608.0, "ser_p5_ns": 2292.1, "ser_p25_ns": 2338.5, "ser_p50_ns": 2377.0, "ser_p75_ns": 2441.5, "ser_p95_ns": 2531.8, "ser_p99_ns": 2564.32, "ser_ci_low_ns": 2374.238043478261, "ser_ci_high_ns": 2407.924184782609, "deser_mean_ns": 7033.434782608696, "deser_median_ns": 7011.0, "deser_std_ns": 244.3658896156428, "deser_mad_ns": 156.5, "deser_cv": 0.03474346420611974, "deser_min_ns": 6484.0, "deser_max_ns": 7695.0, "deser_p5_ns": 6704.75, "deser_p25_ns": 6881.0, "deser_p50_ns": 7011.0, "deser_p75_ns": 7199.5, "deser_p95_ns": 7426.35, "deser_p99_ns": 7629.4800000000005, "deser_ci_low_ns": 6988.076902173913, "deser_ci_high_ns": 7083.2331521739125, "total_mean_ns": 9424.358695652174, "total_median_ns": 9363.5, "total_std_ns": 281.14571645251624, "total_mad_ns": 172.5, "total_cv": 0.029831814082184688, "total_min_ns": 8777.0, "total_max_ns": 10179.0, "total_p5_ns": 9052.65, "total_p25_ns": 9249.25, "total_p50_ns": 9363.5, "total_p75_ns": 9627.0, "total_p95_ns": 9855.6, "total_p99_ns": 10139.87, "total_ci_low_ns": 9370.721739130435, "total_ci_high_ns": 9481.53097826087, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 43.466989680146305}, {"serializer": "arduinojson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "7.2.1", "avg_time_ser_ns": 2536.4736842105262, "avg_time_deser_ns": 11713.652631578947, "avg_time_total_ns": 14250.126315789474, "median_size_bytes": 458.0, "avg_ops_per_sec": 70174.8165482559, "min_ops_per_sec": 63155.23556902867, "max_ops_per_sec": 78889.23950773115, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 2536.4736842105262, "ser_median_ns": 2543.0, "ser_std_ns": 105.75230414523779, "ser_mad_ns": 71.0, "ser_cv": 0.04169264786918262, "ser_min_ns": 2299.0, "ser_max_ns": 2801.0, "ser_p5_ns": 2380.6, "ser_p25_ns": 2464.0, "ser_p50_ns": 2543.0, "ser_p75_ns": 2602.5, "ser_p95_ns": 2740.9, "ser_p99_ns": 2796.3, "ser_ci_low_ns": 2516.006842105263, "ser_ci_high_ns": 2557.9692105263157, "deser_mean_ns": 11713.652631578947, "deser_median_ns": 11693.0, "deser_std_ns": 680.4275371930951, "deser_mad_ns": 411.0, "deser_cv": 0.058088416875085064, "deser_min_ns": 10353.0, "deser_max_ns": 13291.0, "deser_p5_ns": 10589.0, "deser_p25_ns": 11259.5, "deser_p50_ns": 11693.0, "deser_p75_ns": 12057.5, "deser_p95_ns": 13035.3, "deser_p99_ns": 13233.66, "deser_ci_low_ns": 11576.51947368421, "deser_ci_high_ns": 11852.574210526316, "total_mean_ns": 14250.126315789474, "total_median_ns": 14167.0, "total_std_ns": 716.7518820835595, "total_mad_ns": 429.0, "total_cv": 0.05029793183583093, "total_min_ns": 12676.0, "total_max_ns": 15834.0, "total_p5_ns": 13079.8, "total_p25_ns": 13755.0, "total_p50_ns": 14167.0, "total_p75_ns": 14611.0, "total_p95_ns": 15619.699999999999, "total_p99_ns": 15784.18, "total_ci_low_ns": 14107.128157894736, "total_ci_high_ns": 14391.137631578948, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.343857818492822}, {"serializer": "custom_binary", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "harness", "avg_time_ser_ns": 783.4183673469388, "avg_time_deser_ns": 411.44897959183675, "avg_time_total_ns": 1194.8673469387754, "median_size_bytes": 223.0, "avg_ops_per_sec": 836912.9866691717, "min_ops_per_sec": 655307.994757536, "max_ops_per_sec": 1090512.5408942204, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 783.4183673469388, "ser_median_ns": 763.5, "ser_std_ns": 113.02804354776207, "ser_mad_ns": 84.0, "ser_cv": 0.14427545773599065, "ser_min_ns": 563.0, "ser_max_ns": 1046.0, "ser_p5_ns": 618.85, "ser_p25_ns": 696.25, "ser_p50_ns": 763.5, "ser_p75_ns": 860.25, "ser_p95_ns": 974.05, "ser_p99_ns": 1007.2, "ser_ci_low_ns": 761.1923469387755, "ser_ci_high_ns": 805.4841836734694, "deser_mean_ns": 411.44897959183675, "deser_median_ns": 420.5, "deser_std_ns": 48.42469388988924, "deser_mad_ns": 35.0, "deser_cv": 0.11769307081020647, "deser_min_ns": 288.0, "deser_max_ns": 520.0, "deser_p5_ns": 338.0, "deser_p25_ns": 374.0, "deser_p50_ns": 420.5, "deser_p75_ns": 446.5, "deser_p95_ns": 488.59999999999997, "deser_p99_ns": 519.03, "deser_ci_low_ns": 402.00841836734696, "deser_ci_high_ns": 420.74515306122447, "total_mean_ns": 1194.8673469387754, "total_median_ns": 1185.0, "total_std_ns": 140.75134452161114, "total_mad_ns": 103.5, "total_cv": 0.11779662812128315, "total_min_ns": 917.0, "total_max_ns": 1526.0, "total_p5_ns": 981.1, "total_p25_ns": 1090.0, "total_p50_ns": 1185.0, "total_p75_ns": 1308.25, "total_p95_ns": 1413.05, "total_p99_ns": 1495.93, "total_ci_low_ns": 1165.6313775510205, "total_ci_high_ns": 1221.5938775510206, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.5727939754059195}, {"serializer": "yyjson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "0.10.0", "avg_time_ser_ns": 1140.1290322580646, "avg_time_deser_ns": 8590.645161290322, "avg_time_total_ns": 9730.774193548386, "median_size_bytes": 458.0, "avg_ops_per_sec": 102766.74600701466, "min_ops_per_sec": 89086.859688196, "max_ops_per_sec": 119331.74224343675, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1140.1290322580646, "ser_median_ns": 1151.0, "ser_std_ns": 372.93708601616333, "ser_mad_ns": 243.0, "ser_cv": 0.32710077146053257, "ser_min_ns": 473.0, "ser_max_ns": 2095.0, "ser_p5_ns": 536.2, "ser_p25_ns": 911.0, "ser_p50_ns": 1151.0, "ser_p75_ns": 1394.0, "ser_p95_ns": 1735.9999999999995, "ser_p99_ns": 1896.2799999999997, "ser_ci_low_ns": 1064.4306451612904, "ser_ci_high_ns": 1213.3021505376344, "deser_mean_ns": 8590.645161290322, "deser_median_ns": 8569.0, "deser_std_ns": 368.2782102055482, "deser_mad_ns": 224.0, "deser_cv": 0.04286968013357363, "deser_min_ns": 7826.0, "deser_max_ns": 9512.0, "deser_p5_ns": 7957.2, "deser_p25_ns": 8367.0, "deser_p50_ns": 8569.0, "deser_p75_ns": 8805.0, "deser_p95_ns": 9189.599999999999, "deser_p99_ns": 9373.08, "deser_ci_low_ns": 8514.790860215053, "deser_ci_high_ns": 8664.349462365592, "total_mean_ns": 9730.774193548386, "total_median_ns": 9715.0, "total_std_ns": 553.438071022606, "total_mad_ns": 338.0, "total_cv": 0.05687502967539229, "total_min_ns": 8380.0, "total_max_ns": 11225.0, "total_p5_ns": 8833.2, "total_p25_ns": 9413.0, "total_p50_ns": 9715.0, "total_p75_ns": 10100.0, "total_p95_ns": 10581.0, "total_p99_ns": 10822.039999999999, "total_ci_low_ns": 9620.413978494624, "total_ci_high_ns": 9833.27123655914, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.914830679746498}, {"serializer": "nlohmann_cbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 2314.7291666666665, "avg_time_deser_ns": 7614.28125, "avg_time_total_ns": 9929.010416666666, "median_size_bytes": 338.0, "avg_ops_per_sec": 100714.97138540787, "min_ops_per_sec": 89214.0244446427, "max_ops_per_sec": 116333.17822242904, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 2314.7291666666665, "ser_median_ns": 2321.0, "ser_std_ns": 127.49699514863016, "ser_mad_ns": 88.0, "ser_cv": 0.05508073989158422, "ser_min_ns": 1996.0, "ser_max_ns": 2672.0, "ser_p5_ns": 2112.75, "ser_p25_ns": 2228.75, "ser_p50_ns": 2321.0, "ser_p75_ns": 2403.5, "ser_p95_ns": 2513.0, "ser_p99_ns": 2623.5499999999997, "ser_ci_low_ns": 2288.98828125, "ser_ci_high_ns": 2340.4395833333333, "deser_mean_ns": 7614.28125, "deser_median_ns": 7741.5, "deser_std_ns": 489.5420352495951, "deser_mad_ns": 261.0, "deser_cv": 0.06429261268088765, "deser_min_ns": 6560.0, "deser_max_ns": 8774.0, "deser_p5_ns": 6717.5, "deser_p25_ns": 7377.5, "deser_p50_ns": 7741.5, "deser_p75_ns": 7934.25, "deser_p95_ns": 8267.25, "deser_p99_ns": 8495.65, "deser_ci_low_ns": 7520.134114583334, "deser_ci_high_ns": 7711.098177083333, "total_mean_ns": 9929.010416666666, "total_median_ns": 10067.0, "total_std_ns": 566.3703548365851, "total_mad_ns": 275.0, "total_cv": 0.05704197408090997, "total_min_ns": 8596.0, "total_max_ns": 11209.0, "total_p5_ns": 8846.0, "total_p25_ns": 9612.0, "total_p50_ns": 10067.0, "total_p75_ns": 10314.0, "total_p95_ns": 10737.0, "total_p99_ns": 11107.35, "total_ci_low_ns": 9811.883854166666, "total_ci_high_ns": 10040.804947916666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.70574743592706}, {"serializer": "yas", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "7.x", "avg_time_ser_ns": 967.5670103092783, "avg_time_deser_ns": 409.77319587628864, "avg_time_total_ns": 1377.340206185567, "median_size_bytes": 274.0, "avg_ops_per_sec": 726037.035373722, "min_ops_per_sec": 457456.54162854527, "max_ops_per_sec": 1353179.9729364004, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 967.5670103092783, "ser_median_ns": 920.0, "ser_std_ns": 336.33635530573207, "ser_mad_ns": 305.0, "ser_cv": 0.3476103998194644, "ser_min_ns": 413.0, "ser_max_ns": 1704.0, "ser_p5_ns": 477.0, "ser_p25_ns": 754.0, "ser_p50_ns": 920.0, "ser_p75_ns": 1293.0, "ser_p95_ns": 1450.3999999999999, "ser_p99_ns": 1604.1599999999992, "ser_ci_low_ns": 901.6268041237113, "ser_ci_high_ns": 1032.9912371134021, "deser_mean_ns": 409.77319587628864, "deser_median_ns": 412.0, "deser_std_ns": 40.98132327522278, "deser_mad_ns": 26.0, "deser_cv": 0.10000977049654347, "deser_min_ns": 308.0, "deser_max_ns": 496.0, "deser_p5_ns": 340.6, "deser_p25_ns": 382.0, "deser_p50_ns": 412.0, "deser_p75_ns": 433.0, "deser_p95_ns": 472.0, "deser_p99_ns": 489.28, "deser_ci_low_ns": 401.4631443298969, "deser_ci_high_ns": 417.9806701030928, "total_mean_ns": 1377.340206185567, "total_median_ns": 1334.0, "total_std_ns": 348.1448718624529, "total_mad_ns": 299.0, "total_cv": 0.2527660706475796, "total_min_ns": 739.0, "total_max_ns": 2186.0, "total_p5_ns": 864.8, "total_p25_ns": 1104.0, "total_p50_ns": 1334.0, "total_p75_ns": 1681.0, "total_p95_ns": 1899.2, "total_p99_ns": 2017.9999999999986, "total_ci_low_ns": 1308.2048969072166, "total_ci_high_ns": 1445.890206185567, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.0298500762841503}, {"serializer": "bitsery", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "5.2.4", "avg_time_ser_ns": 271.0449438202247, "avg_time_deser_ns": 337.70786516853934, "avg_time_total_ns": 608.7528089887641, "median_size_bytes": 190.0, "avg_ops_per_sec": 1642702.8922645305, "min_ops_per_sec": 1459854.01459854, "max_ops_per_sec": 1930501.9305019304, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 271.0449438202247, "ser_median_ns": 271.0, "ser_std_ns": 26.172465628959774, "ser_mad_ns": 18.0, "ser_cv": 0.09656134978972018, "ser_min_ns": 211.0, "ser_max_ns": 335.0, "ser_p5_ns": 231.0, "ser_p25_ns": 252.0, "ser_p50_ns": 271.0, "ser_p75_ns": 286.0, "ser_p95_ns": 314.4, "ser_p99_ns": 327.08000000000004, "ser_ci_low_ns": 265.5390449438203, "ser_ci_high_ns": 276.5960674157304, "deser_mean_ns": 337.70786516853934, "deser_median_ns": 335.0, "deser_std_ns": 23.806608253320512, "deser_mad_ns": 18.0, "deser_cv": 0.07049468108016786, "deser_min_ns": 278.0, "deser_max_ns": 393.0, "deser_p5_ns": 300.0, "deser_p25_ns": 320.0, "deser_p50_ns": 335.0, "deser_p75_ns": 356.0, "deser_p95_ns": 374.6, "deser_p99_ns": 383.32000000000005, "deser_ci_low_ns": 332.5612359550562, "deser_ci_high_ns": 342.58539325842696, "total_mean_ns": 608.7528089887641, "total_median_ns": 609.0, "total_std_ns": 35.05815976179518, "total_mad_ns": 23.0, "total_cv": 0.057590140438172926, "total_min_ns": 518.0, "total_max_ns": 685.0, "total_p5_ns": 544.8, "total_p25_ns": 589.0, "total_p50_ns": 609.0, "total_p75_ns": 636.0, "total_p95_ns": 665.5999999999999, "total_p99_ns": 676.2, "total_ci_low_ns": 601.4261235955056, "total_ci_high_ns": 615.8651685393259, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "jsoncons_bson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 3771.3295454545455, "avg_time_deser_ns": 15525.727272727272, "avg_time_total_ns": 19297.05681818182, "median_size_bytes": 502.0, "avg_ops_per_sec": 51821.37407906646, "min_ops_per_sec": 45888.39941262849, "max_ops_per_sec": 58709.56378794106, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 3771.3295454545455, "ser_median_ns": 3766.5, "ser_std_ns": 243.59914885715213, "ser_mad_ns": 175.0, "ser_cv": 0.06459237940390382, "ser_min_ns": 3290.0, "ser_max_ns": 4467.0, "ser_p5_ns": 3433.35, "ser_p25_ns": 3600.5, "ser_p50_ns": 3766.5, "ser_p75_ns": 3943.75, "ser_p95_ns": 4198.749999999999, "ser_p99_ns": 4460.04, "ser_ci_low_ns": 3721.319034090909, "ser_ci_high_ns": 3821.024431818182, "deser_mean_ns": 15525.727272727272, "deser_median_ns": 15579.5, "deser_std_ns": 745.7177939496725, "deser_mad_ns": 572.0, "deser_cv": 0.048031102237613796, "deser_min_ns": 13696.0, "deser_max_ns": 17333.0, "deser_p5_ns": 14521.9, "deser_p25_ns": 14891.25, "deser_p50_ns": 15579.5, "deser_p75_ns": 16049.25, "deser_p95_ns": 16686.55, "deser_p99_ns": 17246.87, "deser_ci_low_ns": 15370.42159090909, "deser_ci_high_ns": 15679.799147727272, "total_mean_ns": 19297.05681818182, "total_median_ns": 19283.0, "total_std_ns": 850.6861241327841, "total_mad_ns": 669.0, "total_cv": 0.04408372386255617, "total_min_ns": 17033.0, "total_max_ns": 21792.0, "total_p5_ns": 18149.7, "total_p25_ns": 18605.0, "total_p50_ns": 19283.0, "total_p75_ns": 19901.25, "total_p95_ns": 20662.15, "total_p99_ns": 21137.759999999995, "total_ci_low_ns": 19126.595454545455, "total_ci_high_ns": 19465.44119318182, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.996972767262164}, {"serializer": "cereal", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "1.3.2", "avg_time_ser_ns": 1364.3695652173913, "avg_time_deser_ns": 1192.195652173913, "avg_time_total_ns": 2556.5652173913045, "median_size_bytes": 267.0, "avg_ops_per_sec": 391149.8103773745, "min_ops_per_sec": 347222.22222222225, "max_ops_per_sec": 431034.4827586207, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 1364.3695652173913, "ser_median_ns": 1357.5, "ser_std_ns": 81.07461187029375, "ser_mad_ns": 55.5, "ser_cv": 0.05942276487043726, "ser_min_ns": 1213.0, "ser_max_ns": 1553.0, "ser_p5_ns": 1235.65, "ser_p25_ns": 1303.75, "ser_p50_ns": 1357.5, "ser_p75_ns": 1414.5, "ser_p95_ns": 1517.35, "ser_p99_ns": 1524.7900000000002, "ser_ci_low_ns": 1348.1407608695652, "ser_ci_high_ns": 1380.511141304348, "deser_mean_ns": 1192.195652173913, "deser_median_ns": 1193.5, "deser_std_ns": 64.50576925053264, "deser_mad_ns": 47.0, "deser_cv": 0.05410669727985452, "deser_min_ns": 1057.0, "deser_max_ns": 1350.0, "deser_p5_ns": 1095.1, "deser_p25_ns": 1139.75, "deser_p50_ns": 1193.5, "deser_p75_ns": 1231.0, "deser_p95_ns": 1291.8, "deser_p99_ns": 1329.0700000000002, "deser_ci_low_ns": 1179.0269021739132, "deser_ci_high_ns": 1205.6739130434783, "total_mean_ns": 2556.5652173913045, "total_median_ns": 2557.0, "total_std_ns": 121.82714329249194, "total_mad_ns": 88.0, "total_cv": 0.047652663997675454, "total_min_ns": 2320.0, "total_max_ns": 2880.0, "total_p5_ns": 2351.85, "total_p25_ns": 2467.75, "total_p50_ns": 2557.0, "total_p75_ns": 2640.5, "total_p95_ns": 2761.45, "total_p99_ns": 2846.33, "total_ci_low_ns": 2531.835054347826, "total_ci_high_ns": 2583.006793478261, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.48595218875618}, {"serializer": "thrift", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "TBinaryProtocol", "avg_time_ser_ns": 890.9659090909091, "avg_time_deser_ns": 459.34090909090907, "avg_time_total_ns": 1350.3068181818182, "median_size_bytes": 324.0, "avg_ops_per_sec": 740572.4288250987, "min_ops_per_sec": 639795.2655150351, "max_ops_per_sec": 965250.9652509652, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 890.9659090909091, "ser_median_ns": 902.5, "ser_std_ns": 84.63599528578033, "ser_mad_ns": 49.0, "ser_cv": 0.0949935282845312, "ser_min_ns": 681.0, "ser_max_ns": 1078.0, "ser_p5_ns": 727.3, "ser_p25_ns": 845.0, "ser_p50_ns": 902.5, "ser_p75_ns": 938.25, "ser_p95_ns": 1015.25, "ser_p99_ns": 1046.6799999999998, "ser_ci_low_ns": 873.7045454545455, "ser_ci_high_ns": 908.0227272727273, "deser_mean_ns": 459.34090909090907, "deser_median_ns": 458.0, "deser_std_ns": 43.130085604152534, "deser_mad_ns": 24.0, "deser_cv": 0.09389558985615316, "deser_min_ns": 355.0, "deser_max_ns": 570.0, "deser_p5_ns": 395.75, "deser_p25_ns": 428.75, "deser_p50_ns": 458.0, "deser_p75_ns": 480.25, "deser_p95_ns": 543.1999999999999, "deser_p99_ns": 563.91, "deser_ci_low_ns": 451.04488636363635, "deser_ci_high_ns": 468.35227272727275, "total_mean_ns": 1350.3068181818182, "total_median_ns": 1363.0, "total_std_ns": 111.01530990560637, "total_mad_ns": 66.0, "total_cv": 0.08221487769356595, "total_min_ns": 1036.0, "total_max_ns": 1563.0, "total_p5_ns": 1154.75, "total_p25_ns": 1290.75, "total_p50_ns": 1363.0, "total_p75_ns": 1407.25, "total_p95_ns": 1536.25, "total_p99_ns": 1554.3, "total_ci_low_ns": 1325.8849431818182, "total_ci_high_ns": 1373.1488636363636, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.990476687433418}, {"serializer": "msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "msgpack-cxx", "avg_time_ser_ns": 1468.6144578313254, "avg_time_deser_ns": 1217.686746987952, "avg_time_total_ns": 2686.3012048192772, "median_size_bytes": 332.0, "avg_ops_per_sec": 372259.074375569, "min_ops_per_sec": 300210.1471029721, "max_ops_per_sec": 514403.29218106996, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 1468.6144578313254, "ser_median_ns": 1420.0, "ser_std_ns": 349.9163255842362, "ser_mad_ns": 300.0, "ser_cv": 0.23826289038509865, "ser_min_ns": 855.0, "ser_max_ns": 2132.0, "ser_p5_ns": 910.2, "ser_p25_ns": 1292.5, "ser_p50_ns": 1420.0, "ser_p75_ns": 1790.5, "ser_p95_ns": 2009.9999999999995, "ser_p99_ns": 2103.2999999999997, "ser_ci_low_ns": 1390.8879518072288, "ser_ci_high_ns": 1539.438253012048, "deser_mean_ns": 1217.686746987952, "deser_median_ns": 1217.0, "deser_std_ns": 56.80216581898869, "deser_mad_ns": 37.0, "deser_cv": 0.04664760124842741, "deser_min_ns": 1081.0, "deser_max_ns": 1383.0, "deser_p5_ns": 1130.0, "deser_p25_ns": 1180.0, "deser_p50_ns": 1217.0, "deser_p75_ns": 1251.5, "deser_p95_ns": 1307.7, "deser_p99_ns": 1374.8, "deser_ci_low_ns": 1205.6861445783134, "deser_ci_high_ns": 1229.7496987951808, "total_mean_ns": 2686.3012048192772, "total_median_ns": 2625.0, "total_std_ns": 363.2163144685157, "total_mad_ns": 265.0, "total_cv": 0.13521056902215525, "total_min_ns": 1944.0, "total_max_ns": 3331.0, "total_p5_ns": 2103.2, "total_p25_ns": 2465.0, "total_p50_ns": 2625.0, "total_p75_ns": 3044.5, "total_p95_ns": 3225.1, "total_p99_ns": 3312.14, "total_ci_low_ns": 2607.491265060241, "total_ci_high_ns": 2765.2798192771083, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.158681610477716}, {"serializer": "nlohmann_ubjson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 1771.372340425532, "avg_time_deser_ns": 8441.989361702128, "avg_time_total_ns": 10213.36170212766, "median_size_bytes": 409.0, "avg_ops_per_sec": 97910.95519428032, "min_ops_per_sec": 84495.14152936207, "max_ops_per_sec": 112726.86281140796, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 1771.372340425532, "ser_median_ns": 1758.0, "ser_std_ns": 120.99675495893493, "ser_mad_ns": 79.5, "ser_cv": 0.06830678801830461, "ser_min_ns": 1502.0, "ser_max_ns": 2082.0, "ser_p5_ns": 1586.25, "ser_p25_ns": 1688.25, "ser_p50_ns": 1758.0, "ser_p75_ns": 1843.0, "ser_p95_ns": 1991.85, "ser_p99_ns": 2052.24, "ser_ci_low_ns": 1747.2864361702127, "ser_ci_high_ns": 1796.1433510638299, "deser_mean_ns": 8441.989361702128, "deser_median_ns": 8546.0, "deser_std_ns": 558.019356327491, "deser_mad_ns": 412.0, "deser_cv": 0.0661004571812182, "deser_min_ns": 7280.0, "deser_max_ns": 9945.0, "deser_p5_ns": 7547.35, "deser_p25_ns": 8004.5, "deser_p50_ns": 8546.0, "deser_p75_ns": 8866.75, "deser_p95_ns": 9195.9, "deser_p99_ns": 9519.059999999998, "deser_ci_low_ns": 8323.536968085107, "deser_ci_high_ns": 8551.865691489362, "total_mean_ns": 10213.36170212766, "total_median_ns": 10265.0, "total_std_ns": 612.96104615946, "total_mad_ns": 439.0, "total_cv": 0.060015601526358084, "total_min_ns": 8871.0, "total_max_ns": 11835.0, "total_p5_ns": 9253.75, "total_p25_ns": 9716.75, "total_p50_ns": 10265.0, "total_p75_ns": 10669.0, "total_p95_ns": 11029.4, "total_p99_ns": 11557.859999999999, "total_ci_low_ns": 10092.051329787235, "total_ci_high_ns": 10334.367819148936, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.735403595794317}, {"serializer": "nlohmann_bson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 2404.197802197802, "avg_time_deser_ns": 7615.6373626373625, "avg_time_total_ns": 10019.835164835165, "median_size_bytes": 502.0, "avg_ops_per_sec": 99802.04100657486, "min_ops_per_sec": 92798.81217520416, "max_ops_per_sec": 113558.93708834886, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 2404.197802197802, "ser_median_ns": 2415.0, "ser_std_ns": 107.50878204750633, "ser_mad_ns": 71.0, "ser_cv": 0.04471711185711382, "ser_min_ns": 2126.0, "ser_max_ns": 2677.0, "ser_p5_ns": 2223.5, "ser_p25_ns": 2328.5, "ser_p50_ns": 2415.0, "ser_p75_ns": 2469.5, "ser_p95_ns": 2574.0, "ser_p99_ns": 2639.2, "ser_ci_low_ns": 2383.2994505494507, "ser_ci_high_ns": 2424.9510989010987, "deser_mean_ns": 7615.6373626373625, "deser_median_ns": 7759.0, "deser_std_ns": 475.97036594223937, "deser_mad_ns": 283.0, "deser_cv": 0.06249908487993008, "deser_min_ns": 6594.0, "deser_max_ns": 8380.0, "deser_p5_ns": 6707.0, "deser_p25_ns": 7217.0, "deser_p50_ns": 7759.0, "deser_p75_ns": 7958.0, "deser_p95_ns": 8231.0, "deser_p99_ns": 8316.1, "deser_ci_low_ns": 7515.900824175824, "deser_ci_high_ns": 7709.864560439561, "total_mean_ns": 10019.835164835165, "total_median_ns": 10131.0, "total_std_ns": 513.1387567106812, "total_mad_ns": 398.0, "total_cv": 0.05121229523930224, "total_min_ns": 8806.0, "total_max_ns": 10776.0, "total_p5_ns": 9042.5, "total_p25_ns": 9640.5, "total_p50_ns": 10131.0, "total_p75_ns": 10393.0, "total_p95_ns": 10689.5, "total_p99_ns": 10762.5, "total_ci_low_ns": 9917.503021978022, "total_ci_high_ns": 10124.660164835164, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.62526394229697}, {"serializer": "jsoncons_msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 2753.547368421053, "avg_time_deser_ns": 15504.684210526315, "avg_time_total_ns": 18258.23157894737, "median_size_bytes": 332.0, "avg_ops_per_sec": 54769.81687279335, "min_ops_per_sec": 49258.65720900448, "max_ops_per_sec": 60905.04902856447, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 2753.547368421053, "ser_median_ns": 2727.0, "ser_std_ns": 210.6381271391845, "ser_mad_ns": 107.0, "ser_cv": 0.07649700511960657, "ser_min_ns": 2323.0, "ser_max_ns": 3308.0, "ser_p5_ns": 2408.9, "ser_p25_ns": 2625.0, "ser_p50_ns": 2727.0, "ser_p75_ns": 2890.5, "ser_p95_ns": 3107.7999999999997, "ser_p99_ns": 3295.78, "ser_ci_low_ns": 2712.849210526316, "ser_ci_high_ns": 2795.980526315789, "deser_mean_ns": 15504.684210526315, "deser_median_ns": 15582.0, "deser_std_ns": 739.3000609138277, "deser_mad_ns": 522.0, "deser_cv": 0.047682368171801146, "deser_min_ns": 13989.0, "deser_max_ns": 17163.0, "deser_p5_ns": 14390.8, "deser_p25_ns": 14975.0, "deser_p50_ns": 15582.0, "deser_p75_ns": 15995.5, "deser_p95_ns": 16736.8, "deser_p99_ns": 17139.5, "deser_ci_low_ns": 15357.75552631579, "deser_ci_high_ns": 15657.067105263157, "total_mean_ns": 18258.23157894737, "total_median_ns": 18330.0, "total_std_ns": 853.7516512258613, "total_mad_ns": 638.0, "total_cv": 0.046759821592485366, "total_min_ns": 16419.0, "total_max_ns": 20301.0, "total_p5_ns": 16921.5, "total_p25_ns": 17659.0, "total_p50_ns": 18330.0, "total_p75_ns": 18835.0, "total_p95_ns": 19640.1, "total_p99_ns": 20043.440000000002, "total_ci_low_ns": 18088.01184210526, "total_ci_high_ns": 18422.80210526316, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.624224763986128}, {"serializer": "protobuf-wire", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "wire-v2", "avg_time_ser_ns": 1469.5376344086021, "avg_time_deser_ns": 744.8387096774194, "avg_time_total_ns": 2214.3763440860216, "median_size_bytes": 164.0, "avg_ops_per_sec": 451594.4196526122, "min_ops_per_sec": 403877.2213247173, "max_ops_per_sec": 501756.1465127948, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1469.5376344086021, "ser_median_ns": 1453.0, "ser_std_ns": 92.30720909476622, "ser_mad_ns": 63.0, "ser_cv": 0.06281377688698266, "ser_min_ns": 1301.0, "ser_max_ns": 1714.0, "ser_p5_ns": 1339.6, "ser_p25_ns": 1399.0, "ser_p50_ns": 1453.0, "ser_p75_ns": 1535.0, "ser_p95_ns": 1636.1999999999998, "ser_p99_ns": 1683.6399999999999, "ser_ci_low_ns": 1450.9747311827957, "ser_ci_high_ns": 1488.2817204301075, "deser_mean_ns": 744.8387096774194, "deser_median_ns": 756.0, "deser_std_ns": 64.23788844101624, "deser_mad_ns": 46.0, "deser_cv": 0.08624402519148996, "deser_min_ns": 596.0, "deser_max_ns": 866.0, "deser_p5_ns": 634.0, "deser_p25_ns": 707.0, "deser_p50_ns": 756.0, "deser_p75_ns": 794.0, "deser_p95_ns": 835.1999999999999, "deser_p99_ns": 866.0, "deser_ci_low_ns": 731.589247311828, "deser_ci_high_ns": 756.8825268817204, "total_mean_ns": 2214.3763440860216, "total_median_ns": 2203.0, "total_std_ns": 115.41229626849676, "total_mad_ns": 78.0, "total_cv": 0.05211954895414713, "total_min_ns": 1993.0, "total_max_ns": 2476.0, "total_p5_ns": 2032.2, "total_p25_ns": 2132.0, "total_p50_ns": 2203.0, "total_p75_ns": 2288.0, "total_p95_ns": 2443.4, "total_p99_ns": 2464.96, "total_ci_low_ns": 2190.7717741935485, "total_ci_high_ns": 2239.152150537634, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.575973320209844}, {"serializer": "flatbuffers", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "flatbuffers", "avg_time_ser_ns": 751.4183673469388, "avg_time_deser_ns": 788.8877551020408, "avg_time_total_ns": 1540.3061224489795, "median_size_bytes": 188.0, "avg_ops_per_sec": 649221.5965551507, "min_ops_per_sec": 429737.85990545765, "max_ops_per_sec": 1183431.952662722, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 751.4183673469388, "ser_median_ns": 695.0, "ser_std_ns": 352.45895932672516, "ser_mad_ns": 276.0, "ser_cv": 0.46905821662460195, "ser_min_ns": 213.0, "ser_max_ns": 1493.0, "ser_p5_ns": 253.8, "ser_p25_ns": 500.75, "ser_p50_ns": 695.0, "ser_p75_ns": 1075.5, "ser_p95_ns": 1340.0, "ser_p99_ns": 1442.56, "ser_ci_low_ns": 682.364030612245, "ser_ci_high_ns": 823.9966836734693, "deser_mean_ns": 788.8877551020408, "deser_median_ns": 803.5, "deser_std_ns": 81.41542732971199, "deser_mad_ns": 56.5, "deser_cv": 0.10320280268411706, "deser_min_ns": 616.0, "deser_max_ns": 991.0, "deser_p5_ns": 644.95, "deser_p25_ns": 731.5, "deser_p50_ns": 803.5, "deser_p75_ns": 854.0, "deser_p95_ns": 889.0, "deser_p99_ns": 930.8600000000001, "deser_ci_low_ns": 772.6211734693877, "deser_ci_high_ns": 803.9408163265306, "total_mean_ns": 1540.3061224489795, "total_median_ns": 1454.5, "total_std_ns": 379.0670698798351, "total_mad_ns": 289.0, "total_cv": 0.24609852830886944, "total_min_ns": 845.0, "total_max_ns": 2327.0, "total_p5_ns": 944.7, "total_p25_ns": 1304.25, "total_p50_ns": 1454.5, "total_p75_ns": 1854.0, "total_p95_ns": 2190.45, "total_p99_ns": 2297.9, "total_ci_low_ns": 1468.16556122449, "total_ci_high_ns": 1613.2178571428572, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.367026151010511}, {"serializer": "cista", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "0.15", "avg_time_ser_ns": 355.62068965517244, "avg_time_deser_ns": 874.0344827586207, "avg_time_total_ns": 1229.655172413793, "median_size_bytes": 328.0, "avg_ops_per_sec": 813236.1189007291, "min_ops_per_sec": 728862.9737609329, "max_ops_per_sec": 944287.0632672332, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 355.62068965517244, "ser_median_ns": 356.0, "ser_std_ns": 33.339075955481384, "ser_mad_ns": 23.0, "ser_cv": 0.09374897728197033, "ser_min_ns": 273.0, "ser_max_ns": 447.0, "ser_p5_ns": 301.6, "ser_p25_ns": 334.0, "ser_p50_ns": 356.0, "ser_p75_ns": 381.0, "ser_p95_ns": 410.4, "ser_p99_ns": 422.06, "ser_ci_low_ns": 348.8385057471264, "ser_ci_high_ns": 362.7586206896552, "deser_mean_ns": 874.0344827586207, "deser_median_ns": 879.0, "deser_std_ns": 41.3862824920096, "deser_mad_ns": 30.0, "deser_cv": 0.047350857784679776, "deser_min_ns": 786.0, "deser_max_ns": 972.0, "deser_p5_ns": 799.0, "deser_p25_ns": 845.5, "deser_p50_ns": 879.0, "deser_p75_ns": 904.0, "deser_p95_ns": 933.7, "deser_p99_ns": 963.4, "deser_ci_low_ns": 865.1002873563218, "deser_ci_high_ns": 882.3908045977012, "total_mean_ns": 1229.655172413793, "total_median_ns": 1238.0, "total_std_ns": 61.3989674154153, "total_mad_ns": 41.0, "total_cv": 0.049931857965424674, "total_min_ns": 1059.0, "total_max_ns": 1372.0, "total_p5_ns": 1130.6, "total_p25_ns": 1191.0, "total_p50_ns": 1238.0, "total_p75_ns": 1270.5, "total_p95_ns": 1310.7, "total_p99_ns": 1352.22, "total_ci_low_ns": 1216.262068965517, "total_ci_high_ns": 1242.242816091954, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.402075046174271}, {"serializer": "flatbuffers", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "flatbuffers", "avg_time_ser_ns": 875.3030303030303, "avg_time_deser_ns": 794.0909090909091, "avg_time_total_ns": 1669.3939393939395, "median_size_bytes": 188.0, "avg_ops_per_sec": 599019.7858050462, "min_ops_per_sec": 410004.1000410004, "max_ops_per_sec": 1194743.1302270012, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 875.3030303030303, "ser_median_ns": 828.0, "ser_std_ns": 351.7207105872921, "ser_mad_ns": 302.0, "ser_cv": 0.4018273653931328, "ser_min_ns": 239.0, "ser_max_ns": 1587.0, "ser_p5_ns": 305.9, "ser_p25_ns": 671.5, "ser_p50_ns": 828.0, "ser_p75_ns": 1157.0, "ser_p95_ns": 1430.4999999999998, "ser_p99_ns": 1498.7999999999997, "ser_ci_low_ns": 808.8555555555555, "ser_ci_high_ns": 944.1924242424242, "deser_mean_ns": 794.0909090909091, "deser_median_ns": 807.0, "deser_std_ns": 78.94884560672504, "deser_mad_ns": 55.0, "deser_cv": 0.09942041232672873, "deser_min_ns": 598.0, "deser_max_ns": 990.0, "deser_p5_ns": 653.8, "deser_p25_ns": 739.0, "deser_p50_ns": 807.0, "deser_p75_ns": 848.5, "deser_p95_ns": 901.9, "deser_p99_ns": 938.0599999999998, "deser_ci_low_ns": 778.3636363636364, "deser_ci_high_ns": 809.244191919192, "total_mean_ns": 1669.3939393939395, "total_median_ns": 1650.0, "total_std_ns": 372.7619971154604, "total_mad_ns": 305.0, "total_cv": 0.22329181166836437, "total_min_ns": 837.0, "total_max_ns": 2439.0, "total_p5_ns": 1073.6, "total_p25_ns": 1426.5, "total_p50_ns": 1650.0, "total_p75_ns": 1975.5, "total_p95_ns": 2260.4999999999995, "total_p99_ns": 2373.3399999999997, "total_ci_low_ns": 1590.8045454545454, "total_ci_high_ns": 1738.639393939394, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.8477860148793304}, {"serializer": "nlohmann_ubjson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 2653.4105263157894, "avg_time_deser_ns": 8834.305263157894, "avg_time_total_ns": 11487.715789473685, "median_size_bytes": 409.0, "avg_ops_per_sec": 87049.50734560395, "min_ops_per_sec": 78339.20877399138, "max_ops_per_sec": 99314.7283742179, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 2653.4105263157894, "ser_median_ns": 2641.0, "ser_std_ns": 129.98530970491143, "ser_mad_ns": 80.0, "ser_cv": 0.04898801313093213, "ser_min_ns": 2356.0, "ser_max_ns": 2970.0, "ser_p5_ns": 2469.8, "ser_p25_ns": 2563.0, "ser_p50_ns": 2641.0, "ser_p75_ns": 2723.5, "ser_p95_ns": 2906.7999999999997, "ser_p99_ns": 2966.24, "ser_ci_low_ns": 2627.5044736842106, "ser_ci_high_ns": 2681.16, "deser_mean_ns": 8834.305263157894, "deser_median_ns": 8914.0, "deser_std_ns": 512.4501028887865, "deser_mad_ns": 331.0, "deser_cv": 0.05800683671481, "deser_min_ns": 7713.0, "deser_max_ns": 9850.0, "deser_p5_ns": 7883.9, "deser_p25_ns": 8563.5, "deser_p50_ns": 8914.0, "deser_p75_ns": 9216.0, "deser_p95_ns": 9561.4, "deser_p99_ns": 9836.84, "deser_ci_low_ns": 8732.713157894737, "deser_ci_high_ns": 8934.918684210526, "total_mean_ns": 11487.715789473685, "total_median_ns": 11536.0, "total_std_ns": 560.8179372939078, "total_mad_ns": 371.0, "total_cv": 0.048818925152012485, "total_min_ns": 10069.0, "total_max_ns": 12765.0, "total_p5_ns": 10474.8, "total_p25_ns": 11113.0, "total_p50_ns": 11536.0, "total_p75_ns": 11888.5, "total_p95_ns": 12264.0, "total_p99_ns": 12566.66, "total_ci_low_ns": 11375.042631578946, "total_ci_high_ns": 11595.674736842104, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.128939767075337}, {"serializer": "rapidjson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "1.1.0", "avg_time_ser_ns": 4246.7444444444445, "avg_time_deser_ns": 17537.32222222222, "avg_time_total_ns": 21784.066666666666, "median_size_bytes": 458.0, "avg_ops_per_sec": 45905.1110750671, "min_ops_per_sec": 42698.54824935952, "max_ops_per_sec": 48990.78973153047, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 4246.7444444444445, "ser_median_ns": 4214.0, "ser_std_ns": 131.5822945904497, "ser_mad_ns": 74.0, "ser_cv": 0.030984274262743677, "ser_min_ns": 3969.0, "ser_max_ns": 4583.0, "ser_p5_ns": 4090.5, "ser_p25_ns": 4154.5, "ser_p50_ns": 4214.0, "ser_p75_ns": 4309.0, "ser_p95_ns": 4491.85, "ser_p99_ns": 4564.31, "ser_ci_low_ns": 4220.295833333334, "ser_ci_high_ns": 4274.269444444444, "deser_mean_ns": 17537.32222222222, "deser_median_ns": 17494.5, "deser_std_ns": 605.0749573358711, "deser_mad_ns": 400.5, "deser_cv": 0.03450212921155985, "deser_min_ns": 16219.0, "deser_max_ns": 18917.0, "deser_p5_ns": 16575.05, "deser_p25_ns": 17136.75, "deser_p50_ns": 17494.5, "deser_p75_ns": 17904.25, "deser_p95_ns": 18576.75, "deser_p99_ns": 18916.11, "deser_ci_low_ns": 17415.744166666667, "deser_ci_high_ns": 17663.655277777776, "total_mean_ns": 21784.066666666666, "total_median_ns": 21783.0, "total_std_ns": 629.8386060435811, "total_mad_ns": 392.0, "total_cv": 0.028912811169796018, "total_min_ns": 20412.0, "total_max_ns": 23420.0, "total_p5_ns": 20713.2, "total_p25_ns": 21413.0, "total_p50_ns": 21783.0, "total_p75_ns": 22181.25, "total_p95_ns": 22689.5, "total_p99_ns": 23161.01, "total_ci_low_ns": 21660.373333333337, "total_ci_high_ns": 21913.23972222222, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 47.7344114743705}, {"serializer": "jsoncons_cbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 3363.7551020408164, "avg_time_deser_ns": 17402.622448979593, "avg_time_total_ns": 20766.377551020407, "median_size_bytes": 338.0, "avg_ops_per_sec": 48154.76351343052, "min_ops_per_sec": 44640.86424713182, "max_ops_per_sec": 53030.7047780665, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 3363.7551020408164, "ser_median_ns": 3335.5, "ser_std_ns": 392.49490275039375, "ser_mad_ns": 286.5, "ser_cv": 0.11668355479037817, "ser_min_ns": 2488.0, "ser_max_ns": 4264.0, "ser_p5_ns": 2813.85, "ser_p25_ns": 3101.5, "ser_p50_ns": 3335.5, "ser_p75_ns": 3643.25, "ser_p95_ns": 4009.75, "ser_p99_ns": 4199.9800000000005, "ser_ci_low_ns": 3285.3647959183672, "ser_ci_high_ns": 3440.233418367347, "deser_mean_ns": 17402.622448979593, "deser_median_ns": 17491.0, "deser_std_ns": 634.8895433651062, "deser_mad_ns": 456.0, "deser_cv": 0.03648240632849752, "deser_min_ns": 15954.0, "deser_max_ns": 18662.0, "deser_p5_ns": 16323.0, "deser_p25_ns": 16948.25, "deser_p50_ns": 17491.0, "deser_p75_ns": 17892.0, "deser_p95_ns": 18358.95, "deser_p99_ns": 18606.71, "deser_ci_low_ns": 17277.656632653063, "deser_ci_high_ns": 17525.359693877548, "total_mean_ns": 20766.377551020407, "total_median_ns": 20912.0, "total_std_ns": 807.7357370663668, "total_mad_ns": 580.5, "total_cv": 0.03889632339977738, "total_min_ns": 18857.0, "total_max_ns": 22401.0, "total_p5_ns": 19427.85, "total_p25_ns": 20178.75, "total_p50_ns": 20912.0, "total_p75_ns": 21277.25, "total_p95_ns": 22047.35, "total_p99_ns": 22388.39, "total_ci_low_ns": 20606.830102040818, "total_ci_high_ns": 20923.133418367346, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 34.710710447357876}, {"serializer": "capnproto", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "1.0.x", "avg_time_ser_ns": 1236.625, "avg_time_deser_ns": 735.96875, "avg_time_total_ns": 1972.59375, "median_size_bytes": 392.0, "avg_ops_per_sec": 506946.7547486653, "min_ops_per_sec": 363372.0930232558, "max_ops_per_sec": 843881.8565400844, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 1236.625, "ser_median_ns": 1198.5, "ser_std_ns": 345.46646573490807, "ser_mad_ns": 278.0, "ser_cv": 0.2793623497300379, "ser_min_ns": 587.0, "ser_max_ns": 1989.0, "ser_p5_ns": 695.25, "ser_p25_ns": 986.25, "ser_p50_ns": 1198.5, "ser_p75_ns": 1564.0, "ser_p95_ns": 1753.5, "ser_p99_ns": 1935.7999999999997, "ser_ci_low_ns": 1164.8520833333334, "ser_ci_high_ns": 1310.2213541666667, "deser_mean_ns": 735.96875, "deser_median_ns": 737.5, "deser_std_ns": 63.140520499496745, "deser_mad_ns": 41.5, "deser_cv": 0.08579239335840923, "deser_min_ns": 573.0, "deser_max_ns": 884.0, "deser_p5_ns": 631.75, "deser_p25_ns": 692.75, "deser_p50_ns": 737.5, "deser_p75_ns": 777.25, "deser_p95_ns": 832.0, "deser_p99_ns": 874.5, "deser_ci_low_ns": 723.1559895833333, "deser_ci_high_ns": 747.79296875, "total_mean_ns": 1972.59375, "total_median_ns": 1936.0, "total_std_ns": 363.46807803437156, "total_mad_ns": 277.5, "total_cv": 0.1842589626142593, "total_min_ns": 1185.0, "total_max_ns": 2752.0, "total_p5_ns": 1382.0, "total_p25_ns": 1715.75, "total_p50_ns": 1936.0, "total_p75_ns": 2307.25, "total_p95_ns": 2519.5, "total_p99_ns": 2714.0, "total_ci_low_ns": 1900.6963541666667, "total_ci_high_ns": 2044.4580729166667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.137154874034774}, {"serializer": "protobuf-wire", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "wire-v2", "avg_time_ser_ns": 1428.212765957447, "avg_time_deser_ns": 776.5851063829788, "avg_time_total_ns": 2204.7978723404253, "median_size_bytes": 164.0, "avg_ops_per_sec": 453556.31577169715, "min_ops_per_sec": 403877.2213247173, "max_ops_per_sec": 508130.081300813, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 1428.212765957447, "ser_median_ns": 1428.0, "ser_std_ns": 74.05082130775618, "ser_mad_ns": 50.0, "ser_cv": 0.051848592221561546, "ser_min_ns": 1270.0, "ser_max_ns": 1616.0, "ser_p5_ns": 1319.5, "ser_p25_ns": 1378.0, "ser_p50_ns": 1428.0, "ser_p75_ns": 1476.0, "ser_p95_ns": 1551.1499999999999, "ser_p99_ns": 1600.1899999999998, "ser_ci_low_ns": 1413.6914893617022, "ser_ci_high_ns": 1443.7768617021277, "deser_mean_ns": 776.5851063829788, "deser_median_ns": 787.5, "deser_std_ns": 57.4204282659632, "deser_mad_ns": 29.5, "deser_cv": 0.07393964652941191, "deser_min_ns": 650.0, "deser_max_ns": 904.0, "deser_p5_ns": 660.0, "deser_p25_ns": 749.5, "deser_p50_ns": 787.5, "deser_p75_ns": 813.0, "deser_p95_ns": 858.05, "deser_p99_ns": 893.77, "deser_ci_low_ns": 765.2101063829787, "deser_ci_high_ns": 787.6066489361702, "total_mean_ns": 2204.7978723404253, "total_median_ns": 2208.5, "total_std_ns": 103.825803222413, "total_mad_ns": 77.5, "total_cv": 0.04709084879159484, "total_min_ns": 1968.0, "total_max_ns": 2476.0, "total_p5_ns": 2047.65, "total_p25_ns": 2128.0, "total_p50_ns": 2208.5, "total_p75_ns": 2281.0, "total_p95_ns": 2354.75, "total_p99_ns": 2444.3799999999997, "total_ci_low_ns": 2183.10585106383, "total_ci_high_ns": 2225.0781914893614, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.03409914663011}, {"serializer": "arduinojson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "7.2.1", "avg_time_ser_ns": 5202.741573033708, "avg_time_deser_ns": 14276.91011235955, "avg_time_total_ns": 19479.65168539326, "median_size_bytes": 458.0, "avg_ops_per_sec": 51335.62017178398, "min_ops_per_sec": 46670.08913987026, "max_ops_per_sec": 56989.79882601014, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 5202.741573033708, "ser_median_ns": 5193.0, "ser_std_ns": 117.34201449472079, "ser_mad_ns": 67.0, "ser_cv": 0.022553881035128735, "ser_min_ns": 4922.0, "ser_max_ns": 5484.0, "ser_p5_ns": 5022.4, "ser_p25_ns": 5133.0, "ser_p50_ns": 5193.0, "ser_p75_ns": 5280.0, "ser_p95_ns": 5419.4, "ser_p99_ns": 5472.56, "ser_ci_low_ns": 5178.435112359551, "ser_ci_high_ns": 5227.4651685393255, "deser_mean_ns": 14276.91011235955, "deser_median_ns": 14315.0, "deser_std_ns": 649.8048420391211, "deser_mad_ns": 468.0, "deser_cv": 0.045514389102764174, "deser_min_ns": 12537.0, "deser_max_ns": 15956.0, "deser_p5_ns": 13295.0, "deser_p25_ns": 13793.0, "deser_p50_ns": 14315.0, "deser_p75_ns": 14649.0, "deser_p95_ns": 15553.2, "deser_p99_ns": 15706.960000000001, "deser_ci_low_ns": 14149.608426966293, "deser_ci_high_ns": 14412.28904494382, "total_mean_ns": 19479.65168539326, "total_median_ns": 19497.0, "total_std_ns": 686.0833354683339, "total_mad_ns": 451.0, "total_cv": 0.035220513515793035, "total_min_ns": 17547.0, "total_max_ns": 21427.0, "total_p5_ns": 18416.4, "total_p25_ns": 18955.0, "total_p50_ns": 19497.0, "total_p75_ns": 19944.0, "total_p95_ns": 20735.4, "total_p99_ns": 21091.72, "total_ci_low_ns": 19335.47696629213, "total_ci_high_ns": 19619.56938202247, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 39.17004604212776}, {"serializer": "cereal", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "1.3.2", "avg_time_ser_ns": 766.6741573033707, "avg_time_deser_ns": 945.2471910112359, "avg_time_total_ns": 1711.9213483146068, "median_size_bytes": 267.0, "avg_ops_per_sec": 584138.9856984399, "min_ops_per_sec": 527426.1603375528, "max_ops_per_sec": 645994.8320413437, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 766.6741573033707, "ser_median_ns": 764.0, "ser_std_ns": 56.2586913044834, "ser_mad_ns": 34.0, "ser_cv": 0.07338018474805849, "ser_min_ns": 654.0, "ser_max_ns": 902.0, "ser_p5_ns": 682.8, "ser_p25_ns": 734.0, "ser_p50_ns": 764.0, "ser_p75_ns": 798.0, "ser_p95_ns": 867.5999999999999, "ser_p99_ns": 890.5600000000001, "ser_ci_low_ns": 755.0752808988765, "ser_ci_high_ns": 778.4609550561798, "deser_mean_ns": 945.2471910112359, "deser_median_ns": 940.0, "deser_std_ns": 49.317220139087226, "deser_mad_ns": 34.0, "deser_cv": 0.05217388700867454, "deser_min_ns": 833.0, "deser_max_ns": 1062.0, "deser_p5_ns": 862.4, "deser_p25_ns": 913.0, "deser_p50_ns": 940.0, "deser_p75_ns": 981.0, "deser_p95_ns": 1026.4, "deser_p99_ns": 1053.2, "deser_ci_low_ns": 935.111797752809, "deser_ci_high_ns": 955.2929775280899, "total_mean_ns": 1711.9213483146068, "total_median_ns": 1716.0, "total_std_ns": 73.05480892625958, "total_mad_ns": 47.0, "total_cv": 0.042674161986578606, "total_min_ns": 1548.0, "total_max_ns": 1896.0, "total_p5_ns": 1595.8, "total_p25_ns": 1661.0, "total_p50_ns": 1716.0, "total_p75_ns": 1757.0, "total_p95_ns": 1835.4, "total_p99_ns": 1878.4, "total_ci_low_ns": 1696.6283707865168, "total_ci_high_ns": 1727.0853932584268, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.617574934423224}, {"serializer": "thrift", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "TBinaryProtocol", "avg_time_ser_ns": 900.7590361445783, "avg_time_deser_ns": 446.13253012048193, "avg_time_total_ns": 1346.8915662650602, "median_size_bytes": 324.0, "avg_ops_per_sec": 742450.2647774438, "min_ops_per_sec": 665778.9613848203, "max_ops_per_sec": 848176.4206955046, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 900.7590361445783, "ser_median_ns": 898.0, "ser_std_ns": 51.289610596661916, "ser_mad_ns": 36.0, "ser_cv": 0.05694043416560249, "ser_min_ns": 770.0, "ser_max_ns": 1024.0, "ser_p5_ns": 826.2, "ser_p25_ns": 863.0, "ser_p50_ns": 898.0, "ser_p75_ns": 935.0, "ser_p95_ns": 985.1999999999999, "ser_p99_ns": 1021.54, "ser_ci_low_ns": 889.433734939759, "ser_ci_high_ns": 911.6771084337349, "deser_mean_ns": 446.13253012048193, "deser_median_ns": 444.0, "deser_std_ns": 24.508719744621974, "deser_mad_ns": 14.0, "deser_cv": 0.05493596205146301, "deser_min_ns": 382.0, "deser_max_ns": 511.0, "deser_p5_ns": 411.2, "deser_p25_ns": 431.5, "deser_p50_ns": 444.0, "deser_p75_ns": 459.5, "deser_p95_ns": 481.9, "deser_p99_ns": 508.53999999999996, "deser_ci_low_ns": 440.8433734939759, "deser_ci_high_ns": 451.5801204819277, "total_mean_ns": 1346.8915662650602, "total_median_ns": 1342.0, "total_std_ns": 61.547723313522106, "total_mad_ns": 38.0, "total_cv": 0.04569612347057334, "total_min_ns": 1179.0, "total_max_ns": 1502.0, "total_p5_ns": 1248.6, "total_p25_ns": 1307.0, "total_p50_ns": 1342.0, "total_p75_ns": 1386.5, "total_p95_ns": 1468.3999999999999, "total_p99_ns": 1483.1399999999999, "total_ci_low_ns": 1333.987951807229, "total_ci_high_ns": 1360.0515060240964, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.115363979199762}, {"serializer": "yas", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "7.x", "avg_time_ser_ns": 1073.3225806451612, "avg_time_deser_ns": 430.38709677419354, "avg_time_total_ns": 1503.7096774193549, "median_size_bytes": 274.0, "avg_ops_per_sec": 665021.9886302692, "min_ops_per_sec": 454338.93684688775, "max_ops_per_sec": 1169590.6432748537, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1073.3225806451612, "ser_median_ns": 980.0, "ser_std_ns": 332.2235091441461, "ser_mad_ns": 209.0, "ser_cv": 0.30952810938203734, "ser_min_ns": 466.0, "ser_max_ns": 1789.0, "ser_p5_ns": 574.4, "ser_p25_ns": 873.0, "ser_p50_ns": 980.0, "ser_p75_ns": 1329.0, "ser_p95_ns": 1652.1999999999998, "ser_p99_ns": 1761.3999999999999, "ser_ci_low_ns": 1004.5215053763441, "ser_ci_high_ns": 1145.1658602150537, "deser_mean_ns": 430.38709677419354, "deser_median_ns": 434.0, "deser_std_ns": 32.87394642321158, "deser_mad_ns": 22.0, "deser_cv": 0.07638227695394685, "deser_min_ns": 355.0, "deser_max_ns": 490.0, "deser_p5_ns": 372.6, "deser_p25_ns": 409.0, "deser_p50_ns": 434.0, "deser_p75_ns": 454.0, "deser_p95_ns": 480.4, "deser_p99_ns": 490.0, "deser_ci_low_ns": 423.53629032258067, "deser_ci_high_ns": 436.9263440860215, "total_mean_ns": 1503.7096774193549, "total_median_ns": 1407.0, "total_std_ns": 332.1168790025178, "total_mad_ns": 212.0, "total_cv": 0.2208650273319329, "total_min_ns": 855.0, "total_max_ns": 2201.0, "total_p5_ns": 994.2, "total_p25_ns": 1292.0, "total_p50_ns": 1407.0, "total_p75_ns": 1762.0, "total_p95_ns": 2050.6, "total_p99_ns": 2181.68, "total_ci_low_ns": 1435.283870967742, "total_ci_high_ns": 1570.8405913978493, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.678933158131823}, {"serializer": "jsoncons_bson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 3951.0103092783506, "avg_time_deser_ns": 15985.515463917525, "avg_time_total_ns": 19936.525773195877, "median_size_bytes": 502.0, "avg_ops_per_sec": 50159.190792634145, "min_ops_per_sec": 46559.269950647176, "max_ops_per_sec": 54197.60446588261, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 3951.0103092783506, "ser_median_ns": 3968.0, "ser_std_ns": 424.1483008837967, "ser_mad_ns": 296.0, "ser_cv": 0.1073518588113396, "ser_min_ns": 2980.0, "ser_max_ns": 4939.0, "ser_p5_ns": 3296.2, "ser_p25_ns": 3624.0, "ser_p50_ns": 3968.0, "ser_p75_ns": 4260.0, "ser_p95_ns": 4635.4, "ser_p99_ns": 4927.48, "ser_ci_low_ns": 3868.2332474226805, "ser_ci_high_ns": 4030.755154639175, "deser_mean_ns": 15985.515463917525, "deser_median_ns": 15990.0, "deser_std_ns": 592.0355090948595, "deser_mad_ns": 386.0, "deser_cv": 0.037035747169442294, "deser_min_ns": 14741.0, "deser_max_ns": 17233.0, "deser_p5_ns": 15066.6, "deser_p25_ns": 15604.0, "deser_p50_ns": 15990.0, "deser_p75_ns": 16352.0, "deser_p95_ns": 17073.8, "deser_p99_ns": 17209.0, "deser_ci_low_ns": 15870.481958762886, "deser_ci_high_ns": 16109.309020618555, "total_mean_ns": 19936.525773195877, "total_median_ns": 19989.0, "total_std_ns": 723.8410146109363, "total_mad_ns": 520.0, "total_cv": 0.03630727955540384, "total_min_ns": 18451.0, "total_max_ns": 21478.0, "total_p5_ns": 18756.4, "total_p25_ns": 19357.0, "total_p50_ns": 19989.0, "total_p75_ns": 20464.0, "total_p95_ns": 21069.0, "total_p99_ns": 21365.68, "total_ci_low_ns": 19790.586340206188, "total_ci_high_ns": 20075.291237113404, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 37.2209211980892}, {"serializer": "nlohmann_bson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 3036.8901098901097, "avg_time_deser_ns": 8169.923076923077, "avg_time_total_ns": 11206.813186813188, "median_size_bytes": 502.0, "avg_ops_per_sec": 89231.43299798002, "min_ops_per_sec": 82304.5267489712, "max_ops_per_sec": 97560.9756097561, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 3036.8901098901097, "ser_median_ns": 3025.0, "ser_std_ns": 140.14979688806392, "ser_mad_ns": 80.0, "ser_cv": 0.04614911696397709, "ser_min_ns": 2716.0, "ser_max_ns": 3374.0, "ser_p5_ns": 2861.0, "ser_p25_ns": 2935.5, "ser_p50_ns": 3025.0, "ser_p75_ns": 3101.0, "ser_p95_ns": 3326.5, "ser_p99_ns": 3365.0, "ser_ci_low_ns": 3008.5475274725277, "ser_ci_high_ns": 3064.628021978022, "deser_mean_ns": 8169.923076923077, "deser_median_ns": 8212.0, "deser_std_ns": 378.7091886562162, "deser_mad_ns": 228.0, "deser_cv": 0.046354070300358825, "deser_min_ns": 7330.0, "deser_max_ns": 8879.0, "deser_p5_ns": 7444.0, "deser_p25_ns": 7974.5, "deser_p50_ns": 8212.0, "deser_p75_ns": 8420.0, "deser_p95_ns": 8757.0, "deser_p99_ns": 8845.699999999999, "deser_ci_low_ns": 8091.492307692308, "deser_ci_high_ns": 8249.40467032967, "total_mean_ns": 11206.813186813188, "total_median_ns": 11225.0, "total_std_ns": 437.0860813282007, "total_mad_ns": 266.0, "total_cv": 0.03900181738038699, "total_min_ns": 10250.0, "total_max_ns": 12150.0, "total_p5_ns": 10371.5, "total_p25_ns": 10980.5, "total_p50_ns": 11225.0, "total_p75_ns": 11506.0, "total_p95_ns": 11843.5, "total_p99_ns": 12106.8, "total_ci_low_ns": 11114.439560439561, "total_ci_high_ns": 11294.25934065934, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 34.222366814284996}, {"serializer": "avro", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "binary-1.11", "avg_time_ser_ns": 508.0425531914894, "avg_time_deser_ns": 470.6170212765957, "avg_time_total_ns": 978.6595744680851, "median_size_bytes": 125.0, "avg_ops_per_sec": 1021805.769941518, "min_ops_per_sec": 867302.6886383347, "max_ops_per_sec": 1283697.0474967908, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 508.0425531914894, "ser_median_ns": 502.0, "ser_std_ns": 47.04194305419733, "ser_mad_ns": 37.0, "ser_cv": 0.09259449382474556, "ser_min_ns": 414.0, "ser_max_ns": 609.0, "ser_p5_ns": 447.65, "ser_p25_ns": 467.0, "ser_p50_ns": 502.0, "ser_p75_ns": 544.0, "ser_p95_ns": 586.05, "ser_p99_ns": 607.14, "ser_ci_low_ns": 498.47845744680853, "ser_ci_high_ns": 517.5436170212765, "deser_mean_ns": 470.6170212765957, "deser_median_ns": 467.0, "deser_std_ns": 41.9846634525674, "deser_mad_ns": 29.0, "deser_cv": 0.08921195272257643, "deser_min_ns": 360.0, "deser_max_ns": 575.0, "deser_p5_ns": 408.65, "deser_p25_ns": 444.0, "deser_p50_ns": 467.0, "deser_p75_ns": 503.0, "deser_p95_ns": 535.35, "deser_p99_ns": 573.14, "deser_ci_low_ns": 462.1906914893617, "deser_ci_high_ns": 479.28749999999997, "total_mean_ns": 978.6595744680851, "total_median_ns": 968.0, "total_std_ns": 77.58402357312664, "total_mad_ns": 58.0, "total_cv": 0.07927580294229955, "total_min_ns": 779.0, "total_max_ns": 1153.0, "total_p5_ns": 855.95, "total_p25_ns": 928.5, "total_p50_ns": 968.0, "total_p75_ns": 1036.0, "total_p95_ns": 1116.1, "total_p99_ns": 1152.07, "total_ci_low_ns": 963.2864361702128, "total_ci_high_ns": 993.4050531914893, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.6412607592118595}, {"serializer": "custom_binary", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "harness", "avg_time_ser_ns": 863.4226804123712, "avg_time_deser_ns": 407.1855670103093, "avg_time_total_ns": 1270.6082474226805, "median_size_bytes": 223.0, "avg_ops_per_sec": 787024.6411735591, "min_ops_per_sec": 613496.9325153375, "max_ops_per_sec": 1049317.9433368312, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 863.4226804123712, "ser_median_ns": 841.0, "ser_std_ns": 115.55570762006472, "ser_mad_ns": 87.0, "ser_cv": 0.13383445934600102, "ser_min_ns": 652.0, "ser_max_ns": 1187.0, "ser_p5_ns": 709.4, "ser_p25_ns": 764.0, "ser_p50_ns": 841.0, "ser_p75_ns": 943.0, "ser_p95_ns": 1062.8, "ser_p99_ns": 1143.7999999999997, "ser_ci_low_ns": 840.7092783505154, "ser_ci_high_ns": 885.7654639175258, "deser_mean_ns": 407.1855670103093, "deser_median_ns": 410.0, "deser_std_ns": 42.147145488778165, "deser_mad_ns": 30.0, "deser_cv": 0.10350844652534325, "deser_min_ns": 301.0, "deser_max_ns": 500.0, "deser_p5_ns": 339.6, "deser_p25_ns": 376.0, "deser_p50_ns": 410.0, "deser_p75_ns": 438.0, "deser_p95_ns": 475.0, "deser_p99_ns": 486.5599999999999, "deser_ci_low_ns": 398.94819587628865, "deser_ci_high_ns": 415.69123711340205, "total_mean_ns": 1270.6082474226805, "total_median_ns": 1257.0, "total_std_ns": 147.2261268636497, "total_mad_ns": 110.0, "total_cv": 0.11587058966623681, "total_min_ns": 953.0, "total_max_ns": 1630.0, "total_p5_ns": 1050.8, "total_p25_ns": 1170.0, "total_p50_ns": 1257.0, "total_p75_ns": 1371.0, "total_p95_ns": 1513.3999999999999, "total_p99_ns": 1617.52, "total_ci_low_ns": 1240.8538659793815, "total_ci_high_ns": 1299.6605670103093, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.868383147632277}, {"serializer": "yyjson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "0.10.0", "avg_time_ser_ns": 1113.494623655914, "avg_time_deser_ns": 8592.483870967742, "avg_time_total_ns": 9705.978494623656, "median_size_bytes": 458.0, "avg_ops_per_sec": 103029.28247305729, "min_ops_per_sec": 91810.5031215571, "max_ops_per_sec": 116904.37222352116, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1113.494623655914, "ser_median_ns": 1095.0, "ser_std_ns": 363.49276721635994, "ser_mad_ns": 313.0, "ser_cv": 0.32644321714182295, "ser_min_ns": 493.0, "ser_max_ns": 1905.0, "ser_p5_ns": 552.6, "ser_p25_ns": 847.0, "ser_p50_ns": 1095.0, "ser_p75_ns": 1454.0, "ser_p95_ns": 1645.1999999999996, "ser_p99_ns": 1831.3999999999999, "ser_ci_low_ns": 1042.6177419354838, "ser_ci_high_ns": 1185.1836021505376, "deser_mean_ns": 8592.483870967742, "deser_median_ns": 8601.0, "deser_std_ns": 347.20438201324674, "deser_mad_ns": 212.0, "deser_cv": 0.04040791780667518, "deser_min_ns": 7781.0, "deser_max_ns": 9428.0, "deser_p5_ns": 8024.4, "deser_p25_ns": 8376.0, "deser_p50_ns": 8601.0, "deser_p75_ns": 8763.0, "deser_p95_ns": 9260.8, "deser_p99_ns": 9374.64, "deser_ci_low_ns": 8522.340322580645, "deser_ci_high_ns": 8661.183064516128, "total_mean_ns": 9705.978494623656, "total_median_ns": 9708.0, "total_std_ns": 499.16948368819106, "total_mad_ns": 311.0, "total_cv": 0.0514290737368408, "total_min_ns": 8554.0, "total_max_ns": 10892.0, "total_p5_ns": 8880.6, "total_p25_ns": 9398.0, "total_p50_ns": 9708.0, "total_p75_ns": 10019.0, "total_p95_ns": 10565.0, "total_p99_ns": 10856.12, "total_ci_low_ns": 9610.965860215052, "total_ci_high_ns": 9806.906451612902, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.596043013325534}, {"serializer": "jsoncons_msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 3151.5833333333335, "avg_time_deser_ns": 16408.75, "avg_time_total_ns": 19560.333333333332, "median_size_bytes": 332.0, "avg_ops_per_sec": 51123.87314462944, "min_ops_per_sec": 46526.776159679895, "max_ops_per_sec": 56548.2922415743, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 3151.5833333333335, "ser_median_ns": 3182.0, "ser_std_ns": 386.5933173018594, "ser_mad_ns": 313.0, "ser_cv": 0.12266637953468659, "ser_min_ns": 2473.0, "ser_max_ns": 4254.0, "ser_p5_ns": 2614.5, "ser_p25_ns": 2834.5, "ser_p50_ns": 3182.0, "ser_p75_ns": 3439.25, "ser_p95_ns": 3804.5, "ser_p99_ns": 3941.449999999999, "ser_ci_low_ns": 3077.05625, "ser_ci_high_ns": 3228.6169270833334, "deser_mean_ns": 16408.75, "deser_median_ns": 16507.0, "deser_std_ns": 623.6156542378698, "deser_mad_ns": 465.5, "deser_cv": 0.03800506767656706, "deser_min_ns": 14813.0, "deser_max_ns": 17748.0, "deser_p5_ns": 15391.5, "deser_p25_ns": 15875.75, "deser_p50_ns": 16507.0, "deser_p75_ns": 16839.5, "deser_p95_ns": 17399.25, "deser_p99_ns": 17504.8, "deser_ci_low_ns": 16285.447916666666, "deser_ci_high_ns": 16527.136979166666, "total_mean_ns": 19560.333333333332, "total_median_ns": 19524.0, "total_std_ns": 804.9473165717992, "total_mad_ns": 545.0, "total_cv": 0.04115202450052654, "total_min_ns": 17684.0, "total_max_ns": 21493.0, "total_p5_ns": 18250.0, "total_p25_ns": 19034.0, "total_p50_ns": 19524.0, "total_p75_ns": 20212.5, "total_p95_ns": 20839.0, "total_p99_ns": 21245.05, "total_ci_low_ns": 19403.12916666667, "total_ci_high_ns": 19720.885677083334, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 32.91040726843301}, {"serializer": "nlohmann_json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 3404.425531914894, "avg_time_deser_ns": 8719.436170212766, "avg_time_total_ns": 12123.86170212766, "median_size_bytes": 458.0, "avg_ops_per_sec": 82481.97023102848, "min_ops_per_sec": 77845.24365561265, "max_ops_per_sec": 88511.2409275978, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 3404.425531914894, "ser_median_ns": 3397.5, "ser_std_ns": 118.58724743871227, "ser_mad_ns": 85.5, "ser_cv": 0.03483326227200813, "ser_min_ns": 3141.0, "ser_max_ns": 3726.0, "ser_p5_ns": 3238.3, "ser_p25_ns": 3314.5, "ser_p50_ns": 3397.5, "ser_p75_ns": 3483.5, "ser_p95_ns": 3594.15, "ser_p99_ns": 3716.7, "ser_ci_low_ns": 3380.0606382978726, "ser_ci_high_ns": 3426.308776595745, "deser_mean_ns": 8719.436170212766, "deser_median_ns": 8745.5, "deser_std_ns": 280.43501378611415, "deser_mad_ns": 178.0, "deser_cv": 0.03216205822391738, "deser_min_ns": 7996.0, "deser_max_ns": 9488.0, "deser_p5_ns": 8279.4, "deser_p25_ns": 8540.75, "deser_p50_ns": 8745.5, "deser_p75_ns": 8900.0, "deser_p95_ns": 9164.35, "deser_p99_ns": 9336.409999999998, "deser_ci_low_ns": 8662.9125, "deser_ci_high_ns": 8772.398138297873, "total_mean_ns": 12123.86170212766, "total_median_ns": 12123.0, "total_std_ns": 340.94768624242175, "total_mad_ns": 202.5, "total_cv": 0.02812203690698547, "total_min_ns": 11298.0, "total_max_ns": 12846.0, "total_p5_ns": 11578.7, "total_p25_ns": 11922.5, "total_p50_ns": 12123.0, "total_p75_ns": 12343.5, "total_p95_ns": 12738.75, "total_p99_ns": 12831.119999999999, "total_ci_low_ns": 12053.986968085106, "total_ci_high_ns": 12193.039627659573, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 47.18082186882996}, {"serializer": "avro_c", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "avro-c", "avg_time_ser_ns": 2413.3406593406594, "avg_time_deser_ns": 2580.5164835164837, "avg_time_total_ns": 4993.857142857143, "median_size_bytes": 125.0, "avg_ops_per_sec": 200246.01653459965, "min_ops_per_sec": 178253.11942959, "max_ops_per_sec": 228050.1710376283, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 2413.3406593406594, "ser_median_ns": 2411.0, "ser_std_ns": 152.13124595268388, "ser_mad_ns": 103.0, "ser_cv": 0.06303761773700325, "ser_min_ns": 2019.0, "ser_max_ns": 2811.0, "ser_p5_ns": 2190.0, "ser_p25_ns": 2308.0, "ser_p50_ns": 2411.0, "ser_p75_ns": 2506.0, "ser_p95_ns": 2684.0, "ser_p99_ns": 2755.2, "ser_ci_low_ns": 2382.0744505494504, "ser_ci_high_ns": 2445.800549450549, "deser_mean_ns": 2580.5164835164837, "deser_median_ns": 2559.0, "deser_std_ns": 127.12586611852772, "deser_mad_ns": 87.0, "deser_cv": 0.049263729540410695, "deser_min_ns": 2283.0, "deser_max_ns": 2897.0, "deser_p5_ns": 2413.0, "deser_p25_ns": 2483.0, "deser_p50_ns": 2559.0, "deser_p75_ns": 2674.5, "deser_p95_ns": 2823.5, "deser_p99_ns": 2862.7999999999997, "deser_ci_low_ns": 2553.9436813186812, "deser_ci_high_ns": 2607.759065934066, "total_mean_ns": 4993.857142857143, "total_median_ns": 4986.0, "total_std_ns": 251.1260228751281, "total_mad_ns": 189.0, "total_cv": 0.050286985728921145, "total_min_ns": 4385.0, "total_max_ns": 5610.0, "total_p5_ns": 4618.5, "total_p25_ns": 4805.5, "total_p50_ns": 4986.0, "total_p75_ns": 5163.0, "total_p95_ns": 5394.0, "total_p99_ns": 5592.9, "total_ci_low_ns": 4943.381593406593, "total_ci_high_ns": 5043.289010989011, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.37628475807166}, {"serializer": "msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "msgpack-cxx", "avg_time_ser_ns": 1104.3541666666667, "avg_time_deser_ns": 1907.7604166666667, "avg_time_total_ns": 3012.1145833333335, "median_size_bytes": 332.0, "avg_ops_per_sec": 331992.6823279603, "min_ops_per_sec": 264900.66225165565, "max_ops_per_sec": 496770.98857426725, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 1104.3541666666667, "ser_median_ns": 1103.5, "ser_std_ns": 85.27996977962665, "ser_mad_ns": 46.0, "ser_cv": 0.07722157651383876, "ser_min_ns": 905.0, "ser_max_ns": 1337.0, "ser_p5_ns": 945.0, "ser_p25_ns": 1064.5, "ser_p50_ns": 1103.5, "ser_p75_ns": 1167.25, "ser_p95_ns": 1217.75, "ser_p99_ns": 1273.35, "ser_ci_low_ns": 1086.53046875, "ser_ci_high_ns": 1122.0104166666667, "deser_mean_ns": 1907.7604166666667, "deser_median_ns": 1899.5, "deser_std_ns": 342.4952322308694, "deser_mad_ns": 243.5, "deser_cv": 0.1795273815510304, "deser_min_ns": 1071.0, "deser_max_ns": 2672.0, "deser_p5_ns": 1405.0, "deser_p25_ns": 1642.5, "deser_p50_ns": 1899.5, "deser_p75_ns": 2125.5, "deser_p95_ns": 2454.75, "deser_p99_ns": 2615.0, "deser_ci_low_ns": 1841.3973958333333, "deser_ci_high_ns": 1976.9151041666667, "total_mean_ns": 3012.1145833333335, "total_median_ns": 3001.0, "total_std_ns": 356.4637095219377, "total_mad_ns": 245.0, "total_cv": 0.11834334307676299, "total_min_ns": 2013.0, "total_max_ns": 3775.0, "total_p5_ns": 2480.75, "total_p25_ns": 2730.25, "total_p50_ns": 3001.0, "total_p75_ns": 3233.5, "total_p95_ns": 3601.0, "total_p99_ns": 3737.0, "total_ci_low_ns": 2939.902864583333, "total_ci_high_ns": 3081.2809895833334, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.300616899002888}, {"serializer": "simdjson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.10.1", "avg_time_ser_ns": 176.96842105263158, "avg_time_deser_ns": 8822.863157894737, "avg_time_total_ns": 8999.831578947369, "median_size_bytes": 458.0, "avg_ops_per_sec": 111113.1904222769, "min_ops_per_sec": 100452.03415369161, "max_ops_per_sec": 121951.21951219512, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 176.96842105263158, "ser_median_ns": 176.0, "ser_std_ns": 9.573292449908077, "ser_mad_ns": 6.0, "ser_cv": 0.05409604941358954, "ser_min_ns": 158.0, "ser_max_ns": 202.0, "ser_p5_ns": 163.7, "ser_p25_ns": 170.0, "ser_p50_ns": 176.0, "ser_p75_ns": 183.0, "ser_p95_ns": 195.89999999999998, "ser_p99_ns": 201.06, "ser_ci_low_ns": 175.14736842105262, "ser_ci_high_ns": 178.91605263157894, "deser_mean_ns": 8822.863157894737, "deser_median_ns": 8817.0, "deser_std_ns": 354.3185731623364, "deser_mad_ns": 259.0, "deser_cv": 0.040159137325539336, "deser_min_ns": 8027.0, "deser_max_ns": 9778.0, "deser_p5_ns": 8253.8, "deser_p25_ns": 8551.5, "deser_p50_ns": 8817.0, "deser_p75_ns": 9062.0, "deser_p95_ns": 9312.8, "deser_p99_ns": 9649.220000000001, "deser_ci_low_ns": 8749.220263157895, "deser_ci_high_ns": 8890.402105263158, "total_mean_ns": 8999.831578947369, "total_median_ns": 9009.0, "total_std_ns": 355.0297755757294, "total_mad_ns": 254.0, "total_cv": 0.03944849105912425, "total_min_ns": 8200.0, "total_max_ns": 9955.0, "total_p5_ns": 8428.1, "total_p25_ns": 8729.0, "total_p50_ns": 9009.0, "total_p75_ns": 9244.0, "total_p95_ns": 9481.3, "total_p99_ns": 9824.34, "total_ci_low_ns": 8927.616315789473, "total_ci_high_ns": 9068.738684210526, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 32.921625033796666}, {"serializer": "cista", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "0.15", "avg_time_ser_ns": 385.1098901098901, "avg_time_deser_ns": 902.4065934065934, "avg_time_total_ns": 1287.5164835164835, "median_size_bytes": 328.0, "avg_ops_per_sec": 776689.0853845892, "min_ops_per_sec": 694927.0326615706, "max_ops_per_sec": 888099.4671403198, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 385.1098901098901, "ser_median_ns": 383.0, "ser_std_ns": 36.32184850577788, "ser_mad_ns": 23.0, "ser_cv": 0.09431554327367063, "ser_min_ns": 304.0, "ser_max_ns": 484.0, "ser_p5_ns": 327.5, "ser_p25_ns": 361.5, "ser_p50_ns": 383.0, "ser_p75_ns": 407.5, "ser_p95_ns": 454.0, "ser_p99_ns": 468.69999999999993, "ser_ci_low_ns": 377.8901098901099, "ser_ci_high_ns": 392.7043956043956, "deser_mean_ns": 902.4065934065934, "deser_median_ns": 908.0, "deser_std_ns": 46.472686846260814, "deser_mad_ns": 28.0, "deser_cv": 0.05149861180737386, "deser_min_ns": 779.0, "deser_max_ns": 1003.0, "deser_p5_ns": 823.0, "deser_p25_ns": 876.0, "deser_p50_ns": 908.0, "deser_p75_ns": 931.0, "deser_p95_ns": 976.5, "deser_p99_ns": 1002.1, "deser_ci_low_ns": 892.657967032967, "deser_ci_high_ns": 912.2096153846154, "total_mean_ns": 1287.5164835164835, "total_median_ns": 1293.0, "total_std_ns": 70.24281104178921, "total_mad_ns": 37.0, "total_cv": 0.05455682466288978, "total_min_ns": 1126.0, "total_max_ns": 1439.0, "total_p5_ns": 1153.5, "total_p25_ns": 1255.5, "total_p50_ns": 1293.0, "total_p75_ns": 1325.0, "total_p95_ns": 1388.5, "total_p99_ns": 1412.8999999999999, "total_ci_low_ns": 1273.3162087912087, "total_ci_high_ns": 1301.0335164835165, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.606546049514787}, {"serializer": "nlohmann_cbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 2848.4505494505493, "avg_time_deser_ns": 7811.8351648351645, "avg_time_total_ns": 10660.285714285714, "median_size_bytes": 338.0, "avg_ops_per_sec": 93806.11615877356, "min_ops_per_sec": 82925.61572269675, "max_ops_per_sec": 105920.98294672175, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 2848.4505494505493, "ser_median_ns": 2848.0, "ser_std_ns": 143.8488607869202, "ser_mad_ns": 96.0, "ser_cv": 0.050500740065390244, "ser_min_ns": 2537.0, "ser_max_ns": 3195.0, "ser_p5_ns": 2619.5, "ser_p25_ns": 2744.0, "ser_p50_ns": 2848.0, "ser_p75_ns": 2930.5, "ser_p95_ns": 3105.0, "ser_p99_ns": 3174.2999999999997, "ser_ci_low_ns": 2818.1285714285714, "ser_ci_high_ns": 2877.760989010989, "deser_mean_ns": 7811.8351648351645, "deser_median_ns": 7875.0, "deser_std_ns": 463.7867628731564, "deser_mad_ns": 304.0, "deser_cv": 0.05936975794892398, "deser_min_ns": 6839.0, "deser_max_ns": 8934.0, "deser_p5_ns": 6980.0, "deser_p25_ns": 7470.5, "deser_p50_ns": 7875.0, "deser_p75_ns": 8137.5, "deser_p95_ns": 8448.0, "deser_p99_ns": 8726.099999999999, "deser_ci_low_ns": 7716.131593406593, "deser_ci_high_ns": 7908.531868131868, "total_mean_ns": 10660.285714285714, "total_median_ns": 10702.0, "total_std_ns": 524.6635807980892, "total_mad_ns": 317.0, "total_cv": 0.04921665280462364, "total_min_ns": 9441.0, "total_max_ns": 12059.0, "total_p5_ns": 9700.5, "total_p25_ns": 10286.5, "total_p50_ns": 10702.0, "total_p75_ns": 10992.5, "total_p95_ns": 11417.5, "total_p99_ns": 11828.599999999999, "total_ci_low_ns": 10560.165659340659, "total_ci_high_ns": 10767.50412087912, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.068224903326907}, {"serializer": "flexbuffers", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "flatbuffers-flex", "avg_time_ser_ns": 4051.21875, "avg_time_deser_ns": 5547.104166666667, "avg_time_total_ns": 9598.322916666666, "median_size_bytes": 467.0, "avg_ops_per_sec": 104184.86736506704, "min_ops_per_sec": 94020.3083866115, "max_ops_per_sec": 119760.47904191617, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 4051.21875, "ser_median_ns": 3954.5, "ser_std_ns": 340.76552219733304, "ser_mad_ns": 176.0, "ser_cv": 0.08411432292994128, "ser_min_ns": 3239.0, "ser_max_ns": 4863.0, "ser_p5_ns": 3627.75, "ser_p25_ns": 3814.0, "ser_p50_ns": 3954.5, "ser_p75_ns": 4272.75, "ser_p95_ns": 4721.25, "ser_p99_ns": 4800.3, "ser_ci_low_ns": 3984.6375, "ser_ci_high_ns": 4117.0625, "deser_mean_ns": 5547.104166666667, "deser_median_ns": 5524.0, "deser_std_ns": 263.4551586400143, "deser_mad_ns": 170.0, "deser_cv": 0.0474941790751206, "deser_min_ns": 5111.0, "deser_max_ns": 6210.0, "deser_p5_ns": 5173.75, "deser_p25_ns": 5355.0, "deser_p50_ns": 5524.0, "deser_p75_ns": 5686.5, "deser_p95_ns": 6077.25, "deser_p99_ns": 6188.15, "deser_ci_low_ns": 5495.790104166667, "deser_ci_high_ns": 5601.339322916667, "total_mean_ns": 9598.322916666666, "total_median_ns": 9565.5, "total_std_ns": 460.9912773416518, "total_mad_ns": 323.5, "total_cv": 0.04802831508629283, "total_min_ns": 8350.0, "total_max_ns": 10636.0, "total_p5_ns": 8956.75, "total_p25_ns": 9254.5, "total_p50_ns": 9565.5, "total_p75_ns": 9928.75, "total_p95_ns": 10422.75, "total_p99_ns": 10607.5, "total_ci_low_ns": 9503.954947916667, "total_ci_high_ns": 9690.301041666666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.159872844963594}, {"serializer": "zpp_bits", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "4.4.25", "avg_time_ser_ns": 606.6451612903226, "avg_time_deser_ns": 331.3440860215054, "avg_time_total_ns": 937.989247311828, "median_size_bytes": 227.0, "avg_ops_per_sec": 1066110.3022938566, "min_ops_per_sec": 929368.029739777, "max_ops_per_sec": 1293661.06080207, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 606.6451612903226, "ser_median_ns": 604.0, "ser_std_ns": 45.7211884001685, "ser_mad_ns": 28.0, "ser_cv": 0.07536726791477313, "ser_min_ns": 489.0, "ser_max_ns": 709.0, "ser_p5_ns": 538.0, "ser_p25_ns": 576.0, "ser_p50_ns": 604.0, "ser_p75_ns": 633.0, "ser_p95_ns": 687.0, "ser_p99_ns": 706.24, "ser_ci_low_ns": 597.2900537634408, "ser_ci_high_ns": 616.0446236559139, "deser_mean_ns": 331.3440860215054, "deser_median_ns": 334.0, "deser_std_ns": 27.672186092229047, "deser_mad_ns": 20.0, "deser_cv": 0.08351495396973231, "deser_min_ns": 262.0, "deser_max_ns": 394.0, "deser_p5_ns": 288.8, "deser_p25_ns": 314.0, "deser_p50_ns": 334.0, "deser_p75_ns": 353.0, "deser_p95_ns": 373.2, "deser_p99_ns": 390.32, "deser_ci_low_ns": 325.7177419354839, "deser_ci_high_ns": 336.81935483870967, "total_mean_ns": 937.989247311828, "total_median_ns": 935.0, "total_std_ns": 63.6603580532719, "total_mad_ns": 38.0, "total_cv": 0.06786896356830886, "total_min_ns": 773.0, "total_max_ns": 1076.0, "total_p5_ns": 835.2, "total_p25_ns": 901.0, "total_p50_ns": 935.0, "total_p75_ns": 977.0, "total_p95_ns": 1051.1999999999998, "total_p99_ns": 1074.16, "total_ci_low_ns": 925.3, "total_ci_high_ns": 950.7002688172043, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.809096089479924}, {"serializer": "nlohmann_msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 2688.561797752809, "avg_time_deser_ns": 7771.033707865168, "avg_time_total_ns": 10459.595505617977, "median_size_bytes": 332.0, "avg_ops_per_sec": 95605.99159526653, "min_ops_per_sec": 89055.1251224508, "max_ops_per_sec": 108084.73843493298, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 2688.561797752809, "ser_median_ns": 2688.0, "ser_std_ns": 116.49043611310874, "ser_mad_ns": 81.0, "ser_cv": 0.043328160137689746, "ser_min_ns": 2398.0, "ser_max_ns": 2954.0, "ser_p5_ns": 2488.0, "ser_p25_ns": 2613.0, "ser_p50_ns": 2688.0, "ser_p75_ns": 2780.0, "ser_p95_ns": 2838.2, "ser_p99_ns": 2953.12, "ser_ci_low_ns": 2665.1907303370785, "ser_ci_high_ns": 2711.0508426966294, "deser_mean_ns": 7771.033707865168, "deser_median_ns": 7858.0, "deser_std_ns": 454.0617060948625, "deser_mad_ns": 319.0, "deser_cv": 0.05843002657874209, "deser_min_ns": 6742.0, "deser_max_ns": 8506.0, "deser_p5_ns": 6950.6, "deser_p25_ns": 7526.0, "deser_p50_ns": 7858.0, "deser_p75_ns": 8136.0, "deser_p95_ns": 8397.6, "deser_p99_ns": 8447.92, "deser_ci_low_ns": 7675.66713483146, "deser_ci_high_ns": 7863.771067415731, "total_mean_ns": 10459.595505617977, "total_median_ns": 10550.0, "total_std_ns": 488.01163639025884, "total_mad_ns": 319.0, "total_cv": 0.04665683640711936, "total_min_ns": 9252.0, "total_max_ns": 11229.0, "total_p5_ns": 9592.8, "total_p25_ns": 10191.0, "total_p50_ns": 10550.0, "total_p75_ns": 10815.0, "total_p95_ns": 11109.4, "total_p99_ns": 11178.84, "total_ci_low_ns": 10356.43286516854, "total_ci_high_ns": 10561.901966292136, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.66768526836176}, {"serializer": "bitsery", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "5.2.4", "avg_time_ser_ns": 284.78723404255317, "avg_time_deser_ns": 348.1170212765957, "avg_time_total_ns": 632.9042553191489, "median_size_bytes": 190.0, "avg_ops_per_sec": 1580017.8172221943, "min_ops_per_sec": 1375515.818431912, "max_ops_per_sec": 1798561.1510791366, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 284.78723404255317, "ser_median_ns": 284.0, "ser_std_ns": 23.562259024374804, "ser_mad_ns": 18.5, "ser_cv": 0.08273635966721075, "ser_min_ns": 239.0, "ser_max_ns": 359.0, "ser_p5_ns": 247.65, "ser_p25_ns": 266.25, "ser_p50_ns": 284.0, "ser_p75_ns": 302.75, "ser_p95_ns": 318.7, "ser_p99_ns": 331.0999999999998, "ser_ci_low_ns": 280.1268617021277, "ser_ci_high_ns": 289.17047872340424, "deser_mean_ns": 348.1170212765957, "deser_median_ns": 344.5, "deser_std_ns": 27.80030802915089, "deser_mad_ns": 18.5, "deser_cv": 0.07985908855362234, "deser_min_ns": 289.0, "deser_max_ns": 427.0, "deser_p5_ns": 307.65, "deser_p25_ns": 329.25, "deser_p50_ns": 344.5, "deser_p75_ns": 366.0, "deser_p95_ns": 392.79999999999995, "deser_p99_ns": 421.41999999999996, "deser_ci_low_ns": 342.70159574468084, "deser_ci_high_ns": 354.1497340425532, "total_mean_ns": 632.9042553191489, "total_median_ns": 638.5, "total_std_ns": 37.85770447543227, "total_mad_ns": 23.5, "total_cv": 0.05981584759031539, "total_min_ns": 556.0, "total_max_ns": 727.0, "total_p5_ns": 565.0, "total_p25_ns": 605.75, "total_p50_ns": 638.5, "total_p75_ns": 656.75, "total_p95_ns": 695.0999999999999, "total_p99_ns": 725.14, "total_ci_low_ns": 625.6587765957447, "total_ci_high_ns": 640.3204787234042, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "jsoncons_cbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 189859.02150537635, "avg_time_deser_ns": 1182476.7634408602, "avg_time_total_ns": 1372335.7849462365, "median_size_bytes": 33491.0, "avg_ops_per_sec": 728.6846345985043, "min_ops_per_sec": 679.6497900561799, "max_ops_per_sec": 780.7589758003755, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 189859.02150537635, "ser_median_ns": 189749.0, "ser_std_ns": 14298.998061568856, "ser_mad_ns": 8864.0, "ser_cv": 0.07531376675279, "ser_min_ns": 156345.0, "ser_max_ns": 222096.0, "ser_p5_ns": 170087.6, "ser_p25_ns": 180075.0, "ser_p50_ns": 189749.0, "ser_p75_ns": 197498.0, "ser_p95_ns": 218037.0, "ser_p99_ns": 221668.2, "ser_ci_low_ns": 186926.4747311828, "ser_ci_high_ns": 192733.27715053761, "deser_mean_ns": 1182476.7634408602, "deser_median_ns": 1183264.0, "deser_std_ns": 36545.18005404491, "deser_mad_ns": 20272.0, "deser_cv": 0.030905622151680162, "deser_min_ns": 1102843.0, "deser_max_ns": 1258509.0, "deser_p5_ns": 1120726.4, "deser_p25_ns": 1161070.0, "deser_p50_ns": 1183264.0, "deser_p75_ns": 1202677.0, "deser_p95_ns": 1247319.8, "deser_p99_ns": 1253807.8, "deser_ci_low_ns": 1175209.763172043, "deser_ci_high_ns": 1189750.3534946237, "total_mean_ns": 1372335.7849462365, "total_median_ns": 1375652.0, "total_std_ns": 43079.581500745066, "total_mad_ns": 27752.0, "total_cv": 0.031391429104526906, "total_min_ns": 1280805.0, "total_max_ns": 1471346.0, "total_p5_ns": 1292578.2, "total_p25_ns": 1343134.0, "total_p50_ns": 1375652.0, "total_p75_ns": 1397521.0, "total_p95_ns": 1445305.4, "total_p99_ns": 1458110.88, "total_ci_low_ns": 1363093.0999999999, "total_ci_high_ns": 1380979.5161290322, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 42.883331972184514}, {"serializer": "yyjson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "0.10.0", "avg_time_ser_ns": 36894.55294117647, "avg_time_deser_ns": 661618.6588235294, "avg_time_total_ns": 698513.2117647058, "median_size_bytes": 45507.0, "avg_ops_per_sec": 1431.6121487145901, "min_ops_per_sec": 1300.5981450869256, "max_ops_per_sec": 1592.7853196162662, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 36894.55294117647, "ser_median_ns": 36970.0, "ser_std_ns": 1777.6743803410704, "ser_mad_ns": 1267.0, "ser_cv": 0.048182570017187606, "ser_min_ns": 33079.0, "ser_max_ns": 42132.0, "ser_p5_ns": 34060.2, "ser_p25_ns": 35593.0, "ser_p50_ns": 36970.0, "ser_p75_ns": 37941.0, "ser_p95_ns": 39876.2, "ser_p99_ns": 41328.119999999995, "ser_ci_low_ns": 36530.66235294117, "ser_ci_high_ns": 37281.80588235294, "deser_mean_ns": 661618.6588235294, "deser_median_ns": 662681.0, "deser_std_ns": 30543.759040476485, "deser_mad_ns": 21744.0, "deser_cv": 0.04616520201348083, "deser_min_ns": 594342.0, "deser_max_ns": 730700.0, "deser_p5_ns": 606439.2, "deser_p25_ns": 642378.0, "deser_p50_ns": 662681.0, "deser_p75_ns": 685578.0, "deser_p95_ns": 703612.8, "deser_p99_ns": 727698.6799999999, "deser_ci_low_ns": 655243.609117647, "deser_ci_high_ns": 668495.2055882353, "total_mean_ns": 698513.2117647058, "total_median_ns": 699736.0, "total_std_ns": 31360.470139323224, "total_mad_ns": 21940.0, "total_cv": 0.04489603004085626, "total_min_ns": 627831.0, "total_max_ns": 768877.0, "total_p5_ns": 641305.2, "total_p25_ns": 679182.0, "total_p50_ns": 699736.0, "total_p75_ns": 723409.0, "total_p95_ns": 741295.4, "total_p99_ns": 767342.32, "total_ci_low_ns": 691581.0582352942, "total_ci_high_ns": 705141.6776470587, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.968095816442087}, {"serializer": "flexbuffers", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "flatbuffers-flex", "avg_time_ser_ns": 231217.58241758242, "avg_time_deser_ns": 428931.35164835164, "avg_time_total_ns": 660148.934065934, "median_size_bytes": 42132.0, "avg_ops_per_sec": 1514.8096867185466, "min_ops_per_sec": 1365.3815695334217, "max_ops_per_sec": 1699.902595581273, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 231217.58241758242, "ser_median_ns": 231939.0, "ser_std_ns": 13622.492944526983, "ser_mad_ns": 8266.0, "ser_cv": 0.05891633673396237, "ser_min_ns": 200940.0, "ser_max_ns": 266649.0, "ser_p5_ns": 209847.5, "ser_p25_ns": 221648.5, "ser_p50_ns": 231939.0, "ser_p75_ns": 239350.0, "ser_p95_ns": 256690.5, "ser_p99_ns": 265838.1, "ser_ci_low_ns": 228478.62005494506, "ser_ci_high_ns": 233991.94175824174, "deser_mean_ns": 428931.35164835164, "deser_median_ns": 425525.0, "deser_std_ns": 23775.23098211135, "deser_mad_ns": 17898.0, "deser_cv": 0.05542898855666503, "deser_min_ns": 376071.0, "deser_max_ns": 485858.0, "deser_p5_ns": 390574.0, "deser_p25_ns": 413061.0, "deser_p50_ns": 425525.0, "deser_p75_ns": 448458.5, "deser_p95_ns": 467219.5, "deser_p99_ns": 477363.79999999993, "deser_ci_low_ns": 424122.74835164833, "deser_ci_high_ns": 433757.05576923076, "total_mean_ns": 660148.934065934, "total_median_ns": 661444.0, "total_std_ns": 31786.951323460526, "total_mad_ns": 21522.0, "total_cv": 0.04815118177602893, "total_min_ns": 588269.0, "total_max_ns": 732396.0, "total_p5_ns": 602301.0, "total_p25_ns": 641082.0, "total_p50_ns": 661444.0, "total_p75_ns": 684437.5, "total_p95_ns": 710550.5, "total_p99_ns": 716489.3999999999, "total_ci_low_ns": 653421.965934066, "total_ci_high_ns": 666524.4596153846, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.410413406671317}, {"serializer": "nlohmann_msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 155367.93617021278, "avg_time_deser_ns": 627185.6276595745, "avg_time_total_ns": 782553.5638297872, "median_size_bytes": 32878.0, "avg_ops_per_sec": 1277.867798730656, "min_ops_per_sec": 1191.6408775720079, "max_ops_per_sec": 1386.747134980419, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 155367.93617021278, "ser_median_ns": 150732.0, "ser_std_ns": 17281.47290044414, "ser_mad_ns": 12075.0, "ser_cv": 0.11122933937612124, "ser_min_ns": 126494.0, "ser_max_ns": 193989.0, "ser_p5_ns": 134279.7, "ser_p25_ns": 141174.0, "ser_p50_ns": 150732.0, "ser_p75_ns": 167842.25, "ser_p95_ns": 189080.9, "ser_p99_ns": 191953.22999999998, "ser_ci_low_ns": 151978.6319148936, "ser_ci_high_ns": 158962.05106382977, "deser_mean_ns": 627185.6276595745, "deser_median_ns": 627004.0, "deser_std_ns": 17846.079824934564, "deser_mad_ns": 10526.0, "deser_cv": 0.02845422318035181, "deser_min_ns": 586693.0, "deser_max_ns": 666660.0, "deser_p5_ns": 596700.05, "deser_p25_ns": 617011.75, "deser_p50_ns": 627004.0, "deser_p75_ns": 638347.75, "deser_p95_ns": 655136.45, "deser_p99_ns": 665372.88, "deser_ci_low_ns": 623669.2712765958, "deser_ci_high_ns": 630498.1151595744, "total_mean_ns": 782553.5638297872, "total_median_ns": 782119.5, "total_std_ns": 27880.070487314093, "total_mad_ns": 17399.0, "total_cv": 0.03562704430207959, "total_min_ns": 721112.0, "total_max_ns": 839179.0, "total_p5_ns": 734413.65, "total_p25_ns": 765132.5, "total_p50_ns": 782119.5, "total_p75_ns": 799551.25, "total_p95_ns": 830193.6, "total_p99_ns": 837001.87, "total_ci_low_ns": 776971.0382978724, "total_ci_high_ns": 788180.9680851063, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 37.014442952333}, {"serializer": "bitsery", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "5.2.4", "avg_time_ser_ns": 11906.964705882352, "avg_time_deser_ns": 17834.34117647059, "avg_time_total_ns": 29741.305882352943, "median_size_bytes": 18760.0, "avg_ops_per_sec": 33623.271417727214, "min_ops_per_sec": 29112.081513828238, "max_ops_per_sec": 39880.358923230306, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 11906.964705882352, "ser_median_ns": 11854.0, "ser_std_ns": 1536.7588143561763, "ser_mad_ns": 1024.0, "ser_cv": 0.12906385903680198, "ser_min_ns": 8228.0, "ser_max_ns": 15924.0, "ser_p5_ns": 9619.6, "ser_p25_ns": 10772.0, "ser_p50_ns": 11854.0, "ser_p75_ns": 12787.0, "ser_p95_ns": 14606.999999999998, "ser_p99_ns": 15478.799999999997, "ser_ci_low_ns": 11599.42911764706, "ser_ci_high_ns": 12237.235882352941, "deser_mean_ns": 17834.34117647059, "deser_median_ns": 17870.0, "deser_std_ns": 665.9551242020594, "deser_mad_ns": 424.0, "deser_cv": 0.03734116767266262, "deser_min_ns": 16181.0, "deser_max_ns": 19612.0, "deser_p5_ns": 16837.4, "deser_p25_ns": 17394.0, "deser_p50_ns": 17870.0, "deser_p75_ns": 18251.0, "deser_p95_ns": 18866.6, "deser_p99_ns": 19307.92, "deser_ci_low_ns": 17692.345588235294, "deser_ci_high_ns": 17971.421470588237, "total_mean_ns": 29741.305882352943, "total_median_ns": 29783.0, "total_std_ns": 1911.493619582101, "total_mad_ns": 1271.0, "total_cv": 0.06427066878446279, "total_min_ns": 25075.0, "total_max_ns": 34350.0, "total_p5_ns": 26755.4, "total_p25_ns": 28512.0, "total_p50_ns": 29783.0, "total_p75_ns": 30810.0, "total_p95_ns": 32899.6, "total_p99_ns": 33986.28, "total_ci_low_ns": 29334.903529411768, "total_ci_high_ns": 30124.802352941177, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "arduinojson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "7.2.1", "avg_time_ser_ns": 182570.1234567901, "avg_time_deser_ns": 5152155.8271604935, "avg_time_total_ns": 5334725.950617284, "median_size_bytes": 45507.0, "avg_ops_per_sec": 187.45105357929202, "min_ops_per_sec": 180.14960343667795, "max_ops_per_sec": 194.75357246215646, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 182570.1234567901, "ser_median_ns": 179928.0, "ser_std_ns": 9757.61461421632, "ser_mad_ns": 3948.0, "ser_cv": 0.053445845516589735, "ser_min_ns": 169647.0, "ser_max_ns": 213467.0, "ser_p5_ns": 172818.0, "ser_p25_ns": 176278.0, "ser_p50_ns": 179928.0, "ser_p75_ns": 184534.0, "ser_p95_ns": 205936.0, "ser_p99_ns": 212610.2, "ser_ci_low_ns": 180570.46944444443, "ser_ci_high_ns": 184730.10956790124, "deser_mean_ns": 5152155.8271604935, "deser_median_ns": 5144570.0, "deser_std_ns": 96094.11948446561, "deser_mad_ns": 59482.0, "deser_cv": 0.018651244781434716, "deser_min_ns": 4951730.0, "deser_max_ns": 5372572.0, "deser_p5_ns": 4980994.0, "deser_p25_ns": 5104522.0, "deser_p50_ns": 5144570.0, "deser_p75_ns": 5207441.0, "deser_p95_ns": 5301701.0, "deser_p99_ns": 5361719.2, "deser_ci_low_ns": 5131222.903395061, "deser_ci_high_ns": 5173095.732407408, "total_mean_ns": 5334725.950617284, "total_median_ns": 5331616.0, "total_std_ns": 98644.06256484741, "total_mad_ns": 52495.0, "total_cv": 0.018490933457122247, "total_min_ns": 5134694.0, "total_max_ns": 5550942.0, "total_p5_ns": 5154003.0, "total_p25_ns": 5286005.0, "total_p50_ns": 5331616.0, "total_p75_ns": 5397134.0, "total_p95_ns": 5493909.0, "total_p99_ns": 5544107.6, "total_ci_low_ns": 5313080.378395062, "total_ci_high_ns": 5355651.137345679, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 76.63211461816849}, {"serializer": "cereal", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "1.3.2", "avg_time_ser_ns": 42729.075, "avg_time_deser_ns": 44041.6875, "avg_time_total_ns": 86770.7625, "median_size_bytes": 26467.0, "avg_ops_per_sec": 11524.619251790025, "min_ops_per_sec": 9996.601155607093, "max_ops_per_sec": 13246.612178935236, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 42729.075, "ser_median_ns": 42625.0, "ser_std_ns": 3466.120925874458, "ser_mad_ns": 2033.5, "ser_cv": 0.08111855746641972, "ser_min_ns": 35740.0, "ser_max_ns": 52791.0, "ser_p5_ns": 37636.35, "ser_p25_ns": 40602.75, "ser_p50_ns": 42625.0, "ser_p75_ns": 44672.5, "ser_p95_ns": 49315.45, "ser_p99_ns": 51338.18999999999, "ser_ci_low_ns": 41973.246875, "ser_ci_high_ns": 43517.572812499995, "deser_mean_ns": 44041.6875, "deser_median_ns": 44080.0, "deser_std_ns": 2611.7857928417243, "deser_mad_ns": 1837.0, "deser_cv": 0.05930258219196811, "deser_min_ns": 39007.0, "deser_max_ns": 50026.0, "deser_p5_ns": 40358.5, "deser_p25_ns": 42018.5, "deser_p50_ns": 44080.0, "deser_p75_ns": 45263.75, "deser_p95_ns": 48629.85, "deser_p99_ns": 49360.81999999999, "deser_ci_low_ns": 43452.714374999996, "deser_ci_high_ns": 44608.145312500004, "total_mean_ns": 86770.7625, "total_median_ns": 86924.0, "total_std_ns": 4925.835132544159, "total_mad_ns": 3767.0, "total_cv": 0.05676837439966209, "total_min_ns": 75491.0, "total_max_ns": 100034.0, "total_p5_ns": 78517.1, "total_p25_ns": 83129.5, "total_p50_ns": 86924.0, "total_p75_ns": 90270.5, "total_p95_ns": 93565.59999999999, "total_p99_ns": 96618.82999999997, "total_ci_low_ns": 85731.543125, "total_ci_high_ns": 87843.69375, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.368896679522837}, {"serializer": "flatbuffers", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "flatbuffers", "avg_time_ser_ns": 2321.3846153846152, "avg_time_deser_ns": 62467.333333333336, "avg_time_total_ns": 64788.717948717946, "median_size_bytes": 16412.0, "avg_ops_per_sec": 15434.786050119521, "min_ops_per_sec": 13970.9683278148, "max_ops_per_sec": 16762.492247347334, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 2321.3846153846152, "ser_median_ns": 2214.0, "ser_std_ns": 841.0126739130139, "ser_mad_ns": 694.5, "ser_cv": 0.3622892425233343, "ser_min_ns": 1088.0, "ser_max_ns": 4188.0, "ser_p5_ns": 1259.9, "ser_p25_ns": 1558.0, "ser_p50_ns": 2214.0, "ser_p75_ns": 2980.5, "ser_p95_ns": 3747.95, "ser_p99_ns": 4157.2, "ser_ci_low_ns": 2135.542628205128, "ser_ci_high_ns": 2510.2108974358976, "deser_mean_ns": 62467.333333333336, "deser_median_ns": 62484.0, "deser_std_ns": 2532.487790084368, "deser_mad_ns": 1500.5, "deser_cv": 0.04054099406758254, "deser_min_ns": 57280.0, "deser_max_ns": 68412.0, "deser_p5_ns": 58407.0, "deser_p25_ns": 60473.5, "deser_p50_ns": 62484.0, "deser_p75_ns": 63751.5, "deser_p95_ns": 67324.0, "deser_p99_ns": 67930.75, "deser_ci_low_ns": 61925.19967948718, "deser_ci_high_ns": 63028.086217948716, "total_mean_ns": 64788.717948717946, "total_median_ns": 64911.5, "total_std_ns": 2826.403331009888, "total_mad_ns": 1752.0, "total_cv": 0.04362493070548277, "total_min_ns": 59657.0, "total_max_ns": 71577.0, "total_p5_ns": 60484.25, "total_p25_ns": 62322.75, "total_p50_ns": 64911.5, "total_p75_ns": 66355.25, "total_p95_ns": 70478.59999999999, "total_p99_ns": 71540.81, "total_ci_low_ns": 64161.561217948714, "total_ci_high_ns": 65395.85032051282, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.576838071020227}, {"serializer": "nlohmann_json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 163572.53608247422, "avg_time_deser_ns": 549914.9175257732, "avg_time_total_ns": 713487.4536082475, "median_size_bytes": 45507.0, "avg_ops_per_sec": 1401.566341416099, "min_ops_per_sec": 1283.5635832474416, "max_ops_per_sec": 1520.7020777352488, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 163572.53608247422, "ser_median_ns": 157646.0, "ser_std_ns": 17479.4554829507, "ser_mad_ns": 10141.0, "ser_cv": 0.1068605763631216, "ser_min_ns": 139594.0, "ser_max_ns": 209698.0, "ser_p5_ns": 142548.4, "ser_p25_ns": 150428.0, "ser_p50_ns": 157646.0, "ser_p75_ns": 173519.0, "ser_p95_ns": 197078.19999999998, "ser_p99_ns": 204081.99999999994, "ser_ci_low_ns": 160096.9618556701, "ser_ci_high_ns": 167064.08427835052, "deser_mean_ns": 549914.9175257732, "deser_median_ns": 547684.0, "deser_std_ns": 24934.57850542349, "deser_mad_ns": 19538.0, "deser_cv": 0.04534261157637148, "deser_min_ns": 501460.0, "deser_max_ns": 603236.0, "deser_p5_ns": 514646.8, "deser_p25_ns": 530888.0, "deser_p50_ns": 547684.0, "deser_p75_ns": 568910.0, "deser_p95_ns": 589165.0, "deser_p99_ns": 599313.44, "deser_ci_low_ns": 545023.4087628867, "deser_ci_high_ns": 554903.5399484535, "total_mean_ns": 713487.4536082475, "total_median_ns": 718433.0, "total_std_ns": 32112.42696729097, "total_mad_ns": 27631.0, "total_cv": 0.04500769677853768, "total_min_ns": 657591.0, "total_max_ns": 779081.0, "total_p5_ns": 663044.2, "total_p25_ns": 684701.0, "total_p50_ns": 718433.0, "total_p75_ns": 739034.0, "total_p95_ns": 762545.0, "total_p99_ns": 778068.2, "total_ci_low_ns": 706964.6100515464, "total_ci_high_ns": 719582.3481958763, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.989074135202678}, {"serializer": "jsoncons_bson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 264320.01075268816, "avg_time_deser_ns": 1120042.5806451612, "avg_time_total_ns": 1384362.5913978494, "median_size_bytes": 50366.0, "avg_ops_per_sec": 722.3541044909757, "min_ops_per_sec": 680.0861261070102, "max_ops_per_sec": 773.0376824948709, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 264320.01075268816, "ser_median_ns": 259345.0, "ser_std_ns": 19277.52778073059, "ser_mad_ns": 10834.0, "ser_cv": 0.07293253252311521, "ser_min_ns": 228913.0, "ser_max_ns": 321849.0, "ser_p5_ns": 241483.2, "ser_p25_ns": 250105.0, "ser_p50_ns": 259345.0, "ser_p75_ns": 275646.0, "ser_p95_ns": 300021.8, "ser_p99_ns": 311022.44, "ser_ci_low_ns": 260496.15161290325, "ser_ci_high_ns": 268385.010483871, "deser_mean_ns": 1120042.5806451612, "deser_median_ns": 1121833.0, "deser_std_ns": 30781.283806010157, "deser_mad_ns": 21976.0, "deser_cv": 0.02748224428064126, "deser_min_ns": 1035317.0, "deser_max_ns": 1182263.0, "deser_p5_ns": 1070546.8, "deser_p25_ns": 1099680.0, "deser_p50_ns": 1121833.0, "deser_p75_ns": 1140445.0, "deser_p95_ns": 1168612.4, "deser_p99_ns": 1180422.08, "deser_ci_low_ns": 1113423.6387096774, "deser_ci_high_ns": 1126451.3352150538, "total_mean_ns": 1384362.5913978494, "total_median_ns": 1385960.0, "total_std_ns": 40644.0776554428, "total_mad_ns": 30142.0, "total_cv": 0.02935941631765906, "total_min_ns": 1293598.0, "total_max_ns": 1470402.0, "total_p5_ns": 1323333.6, "total_p25_ns": 1347787.0, "total_p50_ns": 1385960.0, "total_p75_ns": 1411313.0, "total_p95_ns": 1456799.8, "total_p99_ns": 1468086.36, "total_ci_low_ns": 1375921.724731183, "total_ci_high_ns": 1392800.0502688172, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 45.855102955173805}, {"serializer": "avro", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "binary-1.11", "avg_time_ser_ns": 22397.394736842107, "avg_time_deser_ns": 31554.065789473683, "avg_time_total_ns": 53951.46052631579, "median_size_bytes": 12104.0, "avg_ops_per_sec": 18535.179404684182, "min_ops_per_sec": 17172.09877391215, "max_ops_per_sec": 19745.67569702235, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 22397.394736842107, "ser_median_ns": 22294.5, "ser_std_ns": 1249.5343781206116, "ser_mad_ns": 984.5, "ser_cv": 0.055789273386570144, "ser_min_ns": 20406.0, "ser_max_ns": 25824.0, "ser_p5_ns": 20752.5, "ser_p25_ns": 21271.0, "ser_p50_ns": 22294.5, "ser_p75_ns": 23205.0, "ser_p95_ns": 24483.25, "ser_p99_ns": 25371.0, "ser_ci_low_ns": 22137.899671052633, "ser_ci_high_ns": 22676.844736842104, "deser_mean_ns": 31554.065789473683, "deser_median_ns": 31468.5, "deser_std_ns": 1009.1711098457826, "deser_mad_ns": 723.5, "deser_cv": 0.031982284520127933, "deser_min_ns": 29428.0, "deser_max_ns": 33823.0, "deser_p5_ns": 29900.5, "deser_p25_ns": 30844.0, "deser_p50_ns": 31468.5, "deser_p75_ns": 32306.0, "deser_p95_ns": 33036.25, "deser_p99_ns": 33658.0, "deser_ci_low_ns": 31329.181907894737, "deser_ci_high_ns": 31765.171710526312, "total_mean_ns": 53951.46052631579, "total_median_ns": 53945.5, "total_std_ns": 1911.2106699910712, "total_mad_ns": 1312.5, "total_cv": 0.03542463264843116, "total_min_ns": 50644.0, "total_max_ns": 58234.0, "total_p5_ns": 50962.0, "total_p25_ns": 52535.25, "total_p50_ns": 53945.5, "total_p75_ns": 55225.75, "total_p95_ns": 57261.5, "total_p99_ns": 57967.0, "total_ci_low_ns": 53558.17302631579, "total_ci_high_ns": 54384.017105263156, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.606612029443838}, {"serializer": "simdjson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.10.1", "avg_time_ser_ns": 8704.74358974359, "avg_time_deser_ns": 687752.858974359, "avg_time_total_ns": 696457.6025641026, "median_size_bytes": 45507.0, "avg_ops_per_sec": 1435.837581955262, "min_ops_per_sec": 1322.2878223902997, "max_ops_per_sec": 1558.1833452014964, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 8704.74358974359, "ser_median_ns": 8565.0, "ser_std_ns": 953.0059134455939, "ser_mad_ns": 679.0, "ser_cv": 0.10948121603127726, "ser_min_ns": 7464.0, "ser_max_ns": 12368.0, "ser_p5_ns": 7564.8, "ser_p25_ns": 7909.5, "ser_p50_ns": 8565.0, "ser_p75_ns": 9339.25, "ser_p95_ns": 10293.399999999998, "ser_p99_ns": 11176.040000000006, "ser_ci_low_ns": 8504.001282051282, "ser_ci_high_ns": 8913.490064102565, "deser_mean_ns": 687752.858974359, "deser_median_ns": 683401.0, "deser_std_ns": 23367.161089218, "deser_mad_ns": 14691.5, "deser_cv": 0.033976101711980206, "deser_min_ns": 634242.0, "deser_max_ns": 746958.0, "deser_p5_ns": 650371.3, "deser_p25_ns": 673772.5, "deser_p50_ns": 683401.0, "deser_p75_ns": 702769.25, "deser_p95_ns": 730964.7999999999, "deser_p99_ns": 741005.13, "deser_ci_low_ns": 682550.2326923077, "deser_ci_high_ns": 692963.4576923077, "total_mean_ns": 696457.6025641026, "total_median_ns": 691919.0, "total_std_ns": 23509.496871513045, "total_mad_ns": 15034.0, "total_cv": 0.03375581914097809, "total_min_ns": 641773.0, "total_max_ns": 756265.0, "total_p5_ns": 658032.95, "total_p25_ns": 682484.5, "total_p50_ns": 691919.0, "total_p75_ns": 711483.75, "total_p95_ns": 740836.35, "total_p99_ns": 749817.02, "total_ci_low_ns": 691712.521474359, "total_ci_high_ns": 701721.9955128204, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 40.66997410069319}, {"serializer": "rapidjson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "1.1.0", "avg_time_ser_ns": 94041.23469387754, "avg_time_deser_ns": 802418.2959183673, "avg_time_total_ns": 896459.5306122449, "median_size_bytes": 45507.0, "avg_ops_per_sec": 1115.4993235634868, "min_ops_per_sec": 932.5609242051784, "max_ops_per_sec": 1296.7275782834438, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 94041.23469387754, "ser_median_ns": 82792.0, "ser_std_ns": 30295.10784493271, "ser_mad_ns": 22729.5, "ser_cv": 0.32214706605617377, "ser_min_ns": 55171.0, "ser_max_ns": 160123.0, "ser_p5_ns": 57272.6, "ser_p25_ns": 66415.5, "ser_p50_ns": 82792.0, "ser_p75_ns": 124256.75, "ser_p95_ns": 141180.75, "ser_p99_ns": 154621.16, "ser_ci_low_ns": 87815.35561224491, "ser_ci_high_ns": 99888.67117346938, "deser_mean_ns": 802418.2959183673, "deser_median_ns": 797710.0, "deser_std_ns": 45843.91165576101, "deser_mad_ns": 34484.0, "deser_cv": 0.057132186403218384, "deser_min_ns": 713023.0, "deser_max_ns": 934290.0, "deser_p5_ns": 739363.5, "deser_p25_ns": 767734.0, "deser_p50_ns": 797710.0, "deser_p75_ns": 837031.25, "deser_p95_ns": 870812.0499999999, "deser_p99_ns": 923793.63, "deser_ci_low_ns": 793502.8681122449, "deser_ci_high_ns": 811979.9357142857, "total_mean_ns": 896459.5306122449, "total_median_ns": 883567.0, "total_std_ns": 64948.18147739553, "total_mad_ns": 45479.5, "total_cv": 0.07244965250471329, "total_min_ns": 771172.0, "total_max_ns": 1072316.0, "total_p5_ns": 805531.4, "total_p25_ns": 850967.25, "total_p50_ns": 883567.0, "total_p75_ns": 941074.25, "total_p95_ns": 994640.2999999998, "total_p99_ns": 1059030.8800000001, "total_ci_low_ns": 884097.5533163265, "total_ci_high_ns": 908798.2489795919, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.146619437330955}, {"serializer": "protobuf-wire", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "wire-v2", "avg_time_ser_ns": 105201.61904761905, "avg_time_deser_ns": 62126.40476190476, "avg_time_total_ns": 167328.02380952382, "median_size_bytes": 16385.0, "avg_ops_per_sec": 5976.2852463873, "min_ops_per_sec": 5324.076538924323, "max_ops_per_sec": 6526.946498619551, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 105201.61904761905, "ser_median_ns": 104864.0, "ser_std_ns": 4626.539561157791, "ser_mad_ns": 3097.5, "ser_cv": 0.043977836111662956, "ser_min_ns": 95900.0, "ser_max_ns": 121681.0, "ser_p5_ns": 99475.9, "ser_p25_ns": 101738.5, "ser_p50_ns": 104864.0, "ser_p75_ns": 107534.75, "ser_p95_ns": 113473.34999999999, "ser_p99_ns": 118181.72, "ser_ci_low_ns": 104257.78273809524, "ser_ci_high_ns": 106252.48452380951, "deser_mean_ns": 62126.40476190476, "deser_median_ns": 61975.0, "deser_std_ns": 2177.4117337541616, "deser_mad_ns": 1301.0, "deser_cv": 0.03504808852369527, "deser_min_ns": 57311.0, "deser_max_ns": 68164.0, "deser_p5_ns": 58269.3, "deser_p25_ns": 60789.75, "deser_p50_ns": 61975.0, "deser_p75_ns": 63499.25, "deser_p95_ns": 65868.15, "deser_p99_ns": 67153.06, "deser_ci_low_ns": 61666.92916666667, "deser_ci_high_ns": 62572.46875, "total_mean_ns": 167328.02380952382, "total_median_ns": 167232.0, "total_std_ns": 6246.298649496627, "total_mad_ns": 4373.5, "total_cv": 0.03732966246351561, "total_min_ns": 153211.0, "total_max_ns": 187826.0, "total_p5_ns": 158004.95, "total_p25_ns": 162764.0, "total_p50_ns": 167232.0, "total_p75_ns": 171416.25, "total_p95_ns": 176977.1, "total_p99_ns": 181911.42, "total_ci_low_ns": 166014.09791666668, "total_ci_high_ns": 168666.6988095238, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.727092558215954}, {"serializer": "cista", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "0.15", "avg_time_ser_ns": 11523.847058823529, "avg_time_deser_ns": 62380.18823529412, "avg_time_total_ns": 73904.03529411765, "median_size_bytes": 32824.0, "avg_ops_per_sec": 13531.060868601777, "min_ops_per_sec": 12700.993217669622, "max_ops_per_sec": 14574.072724622896, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 11523.847058823529, "ser_median_ns": 11352.0, "ser_std_ns": 1111.8248460235516, "ser_mad_ns": 872.0, "ser_cv": 0.09648035420361245, "ser_min_ns": 9831.0, "ser_max_ns": 14661.0, "ser_p5_ns": 10092.4, "ser_p25_ns": 10592.0, "ser_p50_ns": 11352.0, "ser_p75_ns": 12285.0, "ser_p95_ns": 13447.2, "ser_p99_ns": 14097.359999999997, "ser_ci_low_ns": 11298.093235294118, "ser_ci_high_ns": 11763.913235294118, "deser_mean_ns": 62380.18823529412, "deser_median_ns": 62136.0, "deser_std_ns": 2107.0451466117056, "deser_mad_ns": 1369.0, "deser_cv": 0.033777473364845656, "deser_min_ns": 58023.0, "deser_max_ns": 67159.0, "deser_p5_ns": 59041.4, "deser_p25_ns": 61054.0, "deser_p50_ns": 62136.0, "deser_p75_ns": 63573.0, "deser_p95_ns": 66122.0, "deser_p99_ns": 66828.04, "deser_ci_low_ns": 61944.65882352941, "deser_ci_high_ns": 62823.54, "total_mean_ns": 73904.03529411765, "total_median_ns": 73455.0, "total_std_ns": 2604.4556302021883, "total_mad_ns": 1885.0, "total_cv": 0.03524104766183841, "total_min_ns": 68615.0, "total_max_ns": 78734.0, "total_p5_ns": 69994.8, "total_p25_ns": 71864.0, "total_p50_ns": 73455.0, "total_p75_ns": 75993.0, "total_p95_ns": 78094.0, "total_p99_ns": 78515.6, "total_ci_low_ns": 73341.05235294117, "total_ci_high_ns": 74454.06647058824, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.245848711745364}, {"serializer": "custom_binary", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "harness", "avg_time_ser_ns": 53230.23863636364, "avg_time_deser_ns": 26190.579545454544, "avg_time_total_ns": 79420.81818181818, "median_size_bytes": 22063.0, "avg_ops_per_sec": 12591.157115892445, "min_ops_per_sec": 10962.988949307139, "max_ops_per_sec": 14391.181084231583, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 53230.23863636364, "ser_median_ns": 53093.5, "ser_std_ns": 4164.778958118224, "ser_mad_ns": 2595.5, "ser_cv": 0.07824084702248738, "ser_min_ns": 45313.0, "ser_max_ns": 63880.0, "ser_p5_ns": 46126.5, "ser_p25_ns": 50507.0, "ser_p50_ns": 53093.5, "ser_p75_ns": 55542.25, "ser_p95_ns": 60777.45, "ser_p99_ns": 63395.409999999996, "ser_ci_low_ns": 52375.793750000004, "ser_ci_high_ns": 54095.695738636365, "deser_mean_ns": 26190.579545454544, "deser_median_ns": 25996.0, "deser_std_ns": 1289.8667196727463, "deser_mad_ns": 1005.5, "deser_cv": 0.049249262217895697, "deser_min_ns": 23388.0, "deser_max_ns": 29822.0, "deser_p5_ns": 24353.9, "deser_p25_ns": 25267.5, "deser_p50_ns": 25996.0, "deser_p75_ns": 27138.0, "deser_p95_ns": 28274.549999999996, "deser_p99_ns": 29507.059999999998, "deser_ci_low_ns": 25922.361931818185, "deser_ci_high_ns": 26454.048011363637, "total_mean_ns": 79420.81818181818, "total_median_ns": 78916.0, "total_std_ns": 4650.143447411564, "total_mad_ns": 2984.5, "total_cv": 0.05855068675779674, "total_min_ns": 69487.0, "total_max_ns": 91216.0, "total_p5_ns": 72267.6, "total_p25_ns": 76292.5, "total_p50_ns": 78916.0, "total_p75_ns": 81989.5, "total_p95_ns": 88463.69999999998, "total_p99_ns": 90399.06999999999, "total_ci_low_ns": 78490.0190340909, "total_ci_high_ns": 80362.76590909091, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.826769837791959}, {"serializer": "yas", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "7.x", "avg_time_ser_ns": 14368.592105263158, "avg_time_deser_ns": 17703.42105263158, "avg_time_total_ns": 32072.013157894737, "median_size_bytes": 26474.0, "avg_ops_per_sec": 31179.832556093956, "min_ops_per_sec": 26895.45735725236, "max_ops_per_sec": 35515.147210285184, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 14368.592105263158, "ser_median_ns": 14385.0, "ser_std_ns": 1294.839142417637, "ser_mad_ns": 949.0, "ser_cv": 0.09011593710307515, "ser_min_ns": 12143.0, "ser_max_ns": 18487.0, "ser_p5_ns": 12603.5, "ser_p25_ns": 13121.25, "ser_p50_ns": 14385.0, "ser_p75_ns": 15269.75, "ser_p95_ns": 16532.5, "ser_p99_ns": 17157.25, "ser_ci_low_ns": 14086.315131578947, "ser_ci_high_ns": 14662.671052631578, "deser_mean_ns": 17703.42105263158, "deser_median_ns": 17655.5, "deser_std_ns": 840.0404159032333, "deser_mad_ns": 503.0, "deser_cv": 0.04745073923315872, "deser_min_ns": 16014.0, "deser_max_ns": 19757.0, "deser_p5_ns": 16370.5, "deser_p25_ns": 17297.75, "deser_p50_ns": 17655.5, "deser_p75_ns": 18169.25, "deser_p95_ns": 19147.75, "deser_p99_ns": 19656.5, "deser_ci_low_ns": 17509.786842105266, "deser_ci_high_ns": 17891.342763157892, "total_mean_ns": 32072.013157894737, "total_median_ns": 31945.0, "total_std_ns": 1890.3821235818684, "total_mad_ns": 1324.0, "total_cv": 0.058941798080315966, "total_min_ns": 28157.0, "total_max_ns": 37181.0, "total_p5_ns": 29178.5, "total_p25_ns": 30670.25, "total_p50_ns": 31945.0, "total_p75_ns": 33269.25, "total_p95_ns": 35441.0, "total_p99_ns": 36321.5, "total_ci_low_ns": 31668.752631578947, "total_ci_high_ns": 32513.069407894734, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.6154798761609908, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.2198881360109282}, {"serializer": "nlohmann_ubjson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 114324.94623655915, "avg_time_deser_ns": 683826.247311828, "avg_time_total_ns": 798151.1935483871, "median_size_bytes": 40526.0, "avg_ops_per_sec": 1252.8954514923944, "min_ops_per_sec": 1162.982725054602, "max_ops_per_sec": 1342.2548539291156, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 114324.94623655915, "ser_median_ns": 110418.0, "ser_std_ns": 14549.43046873208, "ser_mad_ns": 7555.0, "ser_cv": 0.12726382952874218, "ser_min_ns": 94655.0, "ser_max_ns": 153494.0, "ser_p5_ns": 98517.8, "ser_p25_ns": 103562.0, "ser_p50_ns": 110418.0, "ser_p75_ns": 122113.0, "ser_p95_ns": 148009.19999999998, "ser_p99_ns": 153067.12, "ser_ci_low_ns": 111565.05268817204, "ser_ci_high_ns": 117379.66962365591, "deser_mean_ns": 683826.247311828, "deser_median_ns": 685477.0, "deser_std_ns": 22859.324802524294, "deser_mad_ns": 13129.0, "deser_cv": 0.03342855716987467, "deser_min_ns": 631362.0, "deser_max_ns": 736521.0, "deser_p5_ns": 648324.2, "deser_p25_ns": 669454.0, "deser_p50_ns": 685477.0, "deser_p75_ns": 696374.0, "deser_p95_ns": 726676.3999999999, "deser_p99_ns": 735900.0, "deser_ci_low_ns": 679294.65, "deser_ci_high_ns": 688165.7989247312, "total_mean_ns": 798151.1935483871, "total_median_ns": 798092.0, "total_std_ns": 28120.365908567, "total_mad_ns": 19362.0, "total_cv": 0.03523187854114539, "total_min_ns": 745015.0, "total_max_ns": 859858.0, "total_p5_ns": 754550.0, "total_p25_ns": 775996.0, "total_p50_ns": 798092.0, "total_p75_ns": 814025.0, "total_p95_ns": 845717.7999999999, "total_p99_ns": 858731.92, "total_ci_low_ns": 792655.6327956988, "total_ci_high_ns": 803816.1443548386, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 37.554581383223955}, {"serializer": "thrift", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "TBinaryProtocol", "avg_time_ser_ns": 29424.144736842107, "avg_time_deser_ns": 29110.513157894737, "avg_time_total_ns": 58534.65789473684, "median_size_bytes": 32165.0, "avg_ops_per_sec": 17083.89586556233, "min_ops_per_sec": 13538.39488790209, "max_ops_per_sec": 19057.05682814346, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 29424.144736842107, "ser_median_ns": 28905.0, "ser_std_ns": 3056.7463168275185, "ser_mad_ns": 1266.5, "ser_cv": 0.10388564711619816, "ser_min_ns": 25873.0, "ser_max_ns": 43388.0, "ser_p5_ns": 26370.75, "ser_p25_ns": 27689.25, "ser_p50_ns": 28905.0, "ser_p75_ns": 30209.0, "ser_p95_ns": 33225.5, "ser_p99_ns": 42551.75, "ser_ci_low_ns": 28792.23519736842, "ser_ci_high_ns": 30153.470065789475, "deser_mean_ns": 29110.513157894737, "deser_median_ns": 28967.0, "deser_std_ns": 1465.2453855325944, "deser_mad_ns": 990.0, "deser_cv": 0.05033389063205922, "deser_min_ns": 26601.0, "deser_max_ns": 33167.0, "deser_p5_ns": 26979.75, "deser_p25_ns": 28007.75, "deser_p50_ns": 28967.0, "deser_p75_ns": 29960.25, "deser_p95_ns": 31618.5, "deser_p99_ns": 32699.75, "deser_ci_low_ns": 28779.363157894735, "deser_ci_high_ns": 29447.48717105263, "total_mean_ns": 58534.65789473684, "total_median_ns": 58195.0, "total_std_ns": 3826.529893790218, "total_mad_ns": 2168.0, "total_cv": 0.06537203823197336, "total_min_ns": 52474.0, "total_max_ns": 73864.0, "total_p5_ns": 53768.75, "total_p25_ns": 55961.0, "total_p50_ns": 58195.0, "total_p75_ns": 60307.75, "total_p95_ns": 65939.0, "total_p99_ns": 70941.25, "total_ci_low_ns": 57749.316118421055, "total_ci_high_ns": 59430.398026315794, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.640095716906325}, {"serializer": "msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "msgpack-cxx", "avg_time_ser_ns": 51651.425, "avg_time_deser_ns": 67739.9625, "avg_time_total_ns": 119391.3875, "median_size_bytes": 32878.0, "avg_ops_per_sec": 8375.813540151714, "min_ops_per_sec": 7500.7500750075005, "max_ops_per_sec": 9308.040285198354, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 51651.425, "ser_median_ns": 51323.5, "ser_std_ns": 3266.1572154948562, "ser_mad_ns": 1906.0, "ser_cv": 0.06323460031344452, "ser_min_ns": 45421.0, "ser_max_ns": 64712.0, "ser_p5_ns": 47669.85, "ser_p25_ns": 49369.25, "ser_p50_ns": 51323.5, "ser_p75_ns": 53143.0, "ser_p95_ns": 57042.15, "ser_p99_ns": 60729.60999999997, "ser_ci_low_ns": 50955.956875, "ser_ci_high_ns": 52319.7940625, "deser_mean_ns": 67739.9625, "deser_median_ns": 67845.5, "deser_std_ns": 2816.4673422064016, "deser_mad_ns": 2126.5, "deser_cv": 0.04157763361924509, "deser_min_ns": 61716.0, "deser_max_ns": 73549.0, "deser_p5_ns": 63217.4, "deser_p25_ns": 65601.25, "deser_p50_ns": 67845.5, "deser_p75_ns": 69835.25, "deser_p95_ns": 72239.1, "deser_p99_ns": 73090.8, "deser_ci_low_ns": 67128.255625, "deser_ci_high_ns": 68389.81937499999, "total_mean_ns": 119391.3875, "total_median_ns": 119266.5, "total_std_ns": 5602.717113193801, "total_mad_ns": 3696.5, "total_cv": 0.04692731385832836, "total_min_ns": 107434.0, "total_max_ns": 133320.0, "total_p5_ns": 110918.75, "total_p25_ns": 115576.75, "total_p50_ns": 119266.5, "total_p75_ns": 122941.5, "total_p95_ns": 128860.6, "total_p99_ns": 132277.99, "total_ci_low_ns": 118173.70531250001, "total_ci_high_ns": 120646.82843750001, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.58183513043237}, {"serializer": "nlohmann_bson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 203470.75555555554, "avg_time_deser_ns": 865421.6666666666, "avg_time_total_ns": 1068892.4222222222, "median_size_bytes": 50366.0, "avg_ops_per_sec": 935.5478429915378, "min_ops_per_sec": 869.7595897517967, "max_ops_per_sec": 1002.1345465842244, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 203470.75555555554, "ser_median_ns": 200896.5, "ser_std_ns": 15776.379152883294, "ser_mad_ns": 9663.0, "ser_cv": 0.07753634722497366, "ser_min_ns": 172936.0, "ser_max_ns": 240104.0, "ser_p5_ns": 182614.5, "ser_p25_ns": 192559.0, "ser_p50_ns": 200896.5, "ser_p75_ns": 210657.0, "ser_p95_ns": 233640.85, "ser_p99_ns": 240070.18, "ser_ci_low_ns": 200271.29750000002, "ser_ci_high_ns": 206747.55166666667, "deser_mean_ns": 865421.6666666666, "deser_median_ns": 867718.0, "deser_std_ns": 25412.86169763101, "deser_mad_ns": 15483.0, "deser_cv": 0.029364716272373213, "deser_min_ns": 806712.0, "deser_max_ns": 922369.0, "deser_p5_ns": 818031.8, "deser_p25_ns": 850497.25, "deser_p50_ns": 867718.0, "deser_p75_ns": 882836.5, "deser_p95_ns": 906312.7, "deser_p99_ns": 916880.37, "deser_ci_low_ns": 859962.1108333333, "deser_ci_high_ns": 870512.7705555556, "total_mean_ns": 1068892.4222222222, "total_median_ns": 1070210.5, "total_std_ns": 31377.989133219555, "total_mad_ns": 18504.0, "total_cv": 0.029355610050995466, "total_min_ns": 997870.0, "total_max_ns": 1149743.0, "total_p5_ns": 1014748.9, "total_p25_ns": 1051155.5, "total_p50_ns": 1070210.5, "total_p75_ns": 1088604.5, "total_p95_ns": 1121981.35, "total_p99_ns": 1130504.76, "total_ci_low_ns": 1062520.4902777777, "total_ci_high_ns": 1075611.391388889, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 45.89155761154493}, {"serializer": "zpp_bits", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "4.4.25", "avg_time_ser_ns": 39819.9358974359, "avg_time_deser_ns": 17620.628205128207, "avg_time_total_ns": 57440.5641025641, "median_size_bytes": 22467.0, "avg_ops_per_sec": 17409.29978010715, "min_ops_per_sec": 15179.80478771043, "max_ops_per_sec": 19424.26479157764, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 39819.9358974359, "ser_median_ns": 39884.5, "ser_std_ns": 1919.7401971123393, "ser_mad_ns": 1182.5, "ser_cv": 0.048210529571343586, "ser_min_ns": 35297.0, "ser_max_ns": 48524.0, "ser_p5_ns": 37208.25, "ser_p25_ns": 38593.5, "ser_p50_ns": 39884.5, "ser_p75_ns": 40785.25, "ser_p95_ns": 42648.149999999994, "ser_p99_ns": 44782.57000000002, "ser_ci_low_ns": 39397.65288461539, "ser_ci_high_ns": 40241.5875, "deser_mean_ns": 17620.628205128207, "deser_median_ns": 17479.5, "deser_std_ns": 686.7594733668216, "deser_mad_ns": 404.0, "deser_cv": 0.03897474399731963, "deser_min_ns": 16185.0, "deser_max_ns": 19345.0, "deser_p5_ns": 16578.65, "deser_p25_ns": 17194.75, "deser_p50_ns": 17479.5, "deser_p75_ns": 18055.25, "deser_p95_ns": 18846.899999999998, "deser_p99_ns": 19318.05, "deser_ci_low_ns": 17472.52467948718, "deser_ci_high_ns": 17770.709294871795, "total_mean_ns": 57440.5641025641, "total_median_ns": 57395.0, "total_std_ns": 2367.590525921849, "total_mad_ns": 1497.5, "total_cv": 0.04121809322231502, "total_min_ns": 51482.0, "total_max_ns": 65877.0, "total_p5_ns": 53799.2, "total_p25_ns": 55949.0, "total_p50_ns": 57395.0, "total_p75_ns": 58926.0, "total_p95_ns": 61186.75, "total_p99_ns": 62875.540000000015, "total_ci_low_ns": 56932.16762820513, "total_ci_high_ns": 57975.28846153846, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.872485785302704}, {"serializer": "avro_c", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "avro-c", "avg_time_ser_ns": 140773.13953488372, "avg_time_deser_ns": 171490.72093023255, "avg_time_total_ns": 312263.8604651163, "median_size_bytes": 12104.0, "avg_ops_per_sec": 3202.4198974242563, "min_ops_per_sec": 2993.1158335827595, "max_ops_per_sec": 3482.0275149814233, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 140773.13953488372, "ser_median_ns": 140001.0, "ser_std_ns": 5379.176243873581, "ser_mad_ns": 2709.0, "ser_cv": 0.0382116663849826, "ser_min_ns": 128615.0, "ser_max_ns": 156430.0, "ser_p5_ns": 133120.25, "ser_p25_ns": 137775.0, "ser_p50_ns": 140001.0, "ser_p75_ns": 143561.75, "ser_p95_ns": 150390.25, "ser_p99_ns": 151951.35000000003, "ser_ci_low_ns": 139670.75116279072, "ser_ci_high_ns": 141986.24331395348, "deser_mean_ns": 171490.72093023255, "deser_median_ns": 171377.0, "deser_std_ns": 5951.37106625546, "deser_mad_ns": 3692.0, "deser_cv": 0.03470374976542697, "deser_min_ns": 158574.0, "deser_max_ns": 185132.0, "deser_p5_ns": 161500.0, "deser_p25_ns": 167852.5, "deser_p50_ns": 171377.0, "deser_p75_ns": 174945.75, "deser_p95_ns": 181518.0, "deser_p99_ns": 184668.75, "deser_ci_low_ns": 170257.51918604653, "deser_ci_high_ns": 172723.5988372093, "total_mean_ns": 312263.8604651163, "total_median_ns": 311503.5, "total_std_ns": 10655.663118640154, "total_mad_ns": 6569.5, "total_cv": 0.034123907591383035, "total_min_ns": 287189.0, "total_max_ns": 334100.0, "total_p5_ns": 295770.5, "total_p25_ns": 305279.5, "total_p50_ns": 311503.5, "total_p75_ns": 319674.75, "total_p95_ns": 330210.25, "total_p99_ns": 332163.7, "total_ci_low_ns": 310131.07877906977, "total_ci_high_ns": 314459.5973837209, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 36.64156322927989}, {"serializer": "capnproto", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "1.0.x", "avg_time_ser_ns": 21060.535714285714, "avg_time_deser_ns": 39935.27380952381, "avg_time_total_ns": 60995.80952380953, "median_size_bytes": 38896.0, "avg_ops_per_sec": 16394.56886968035, "min_ops_per_sec": 13711.778417660771, "max_ops_per_sec": 18517.83267286397, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 21060.535714285714, "ser_median_ns": 20200.5, "ser_std_ns": 3261.162578001119, "ser_mad_ns": 1577.0, "ser_cv": 0.15484708566976374, "ser_min_ns": 16769.0, "ser_max_ns": 31581.0, "ser_p5_ns": 17699.85, "ser_p25_ns": 18719.25, "ser_p50_ns": 20200.5, "ser_p75_ns": 22299.0, "ser_p95_ns": 28115.75, "ser_p99_ns": 31198.37, "ser_ci_low_ns": 20412.650892857142, "ser_ci_high_ns": 21769.095535714285, "deser_mean_ns": 39935.27380952381, "deser_median_ns": 39531.0, "deser_std_ns": 2006.825818023106, "deser_mad_ns": 1113.5, "deser_cv": 0.05025196090040369, "deser_min_ns": 35826.0, "deser_max_ns": 44630.0, "deser_p5_ns": 36908.1, "deser_p25_ns": 38667.0, "deser_p50_ns": 39531.0, "deser_p75_ns": 41010.25, "deser_p95_ns": 43608.35, "deser_p99_ns": 44588.5, "deser_ci_low_ns": 39519.26130952381, "deser_ci_high_ns": 40359.482738095234, "total_mean_ns": 60995.80952380953, "total_median_ns": 60153.5, "total_std_ns": 4342.876206664683, "total_mad_ns": 2812.5, "total_cv": 0.0711995830626603, "total_min_ns": 54002.0, "total_max_ns": 72930.0, "total_p5_ns": 55497.4, "total_p25_ns": 57722.0, "total_p50_ns": 60153.5, "total_p75_ns": 63732.75, "total_p95_ns": 69298.84999999999, "total_p99_ns": 71939.81, "total_ci_low_ns": 60098.48273809524, "total_ci_high_ns": 61947.93511904762, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.292228095234496}, {"serializer": "nlohmann_cbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 157793.97872340426, "avg_time_deser_ns": 602257.0638297872, "avg_time_total_ns": 760051.0425531915, "median_size_bytes": 33491.0, "avg_ops_per_sec": 1315.7011095475418, "min_ops_per_sec": 1217.6441508027929, "max_ops_per_sec": 1440.088018179671, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 157793.97872340426, "ser_median_ns": 154931.5, "ser_std_ns": 15082.949770667827, "ser_mad_ns": 11074.0, "ser_cv": 0.09558634551643191, "ser_min_ns": 132134.0, "ser_max_ns": 191679.0, "ser_p5_ns": 139453.3, "ser_p25_ns": 145333.75, "ser_p50_ns": 154931.5, "ser_p75_ns": 166832.5, "ser_p95_ns": 186681.7, "ser_p99_ns": 191602.74, "ser_ci_low_ns": 154795.17819148937, "ser_ci_high_ns": 160737.0539893617, "deser_mean_ns": 602257.0638297872, "deser_median_ns": 604034.0, "deser_std_ns": 19023.030445468336, "deser_mad_ns": 11399.0, "deser_cv": 0.03158623051176817, "deser_min_ns": 557327.0, "deser_max_ns": 645829.0, "deser_p5_ns": 569271.2, "deser_p25_ns": 591638.25, "deser_p50_ns": 604034.0, "deser_p75_ns": 612591.75, "deser_p95_ns": 636355.5, "deser_p99_ns": 640673.08, "deser_ci_low_ns": 598346.6859042553, "deser_ci_high_ns": 605940.8877659575, "total_mean_ns": 760051.0425531915, "total_median_ns": 757076.0, "total_std_ns": 27768.070580463645, "total_mad_ns": 18319.0, "total_cv": 0.03653448127271047, "total_min_ns": 694402.0, "total_max_ns": 821258.0, "total_p5_ns": 720098.7, "total_p25_ns": 742369.0, "total_p50_ns": 757076.0, "total_p75_ns": 777788.0, "total_p95_ns": 807678.25, "total_p99_ns": 815644.5199999999, "total_ci_low_ns": 754178.3848404255, "total_ci_high_ns": 765650.830319149, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 36.052249581115966}, {"serializer": "jsoncons_msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 179609.94897959183, "avg_time_deser_ns": 1134067.9285714286, "avg_time_total_ns": 1313677.8775510204, "median_size_bytes": 32878.0, "avg_ops_per_sec": 761.2216183956879, "min_ops_per_sec": 700.2212699212952, "max_ops_per_sec": 817.4502744998022, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 179609.94897959183, "ser_median_ns": 175461.5, "ser_std_ns": 15902.272610310383, "ser_mad_ns": 8295.5, "ser_cv": 0.08853781597653745, "ser_min_ns": 155350.0, "ser_max_ns": 220392.0, "ser_p5_ns": 159678.8, "ser_p25_ns": 168570.5, "ser_p50_ns": 175461.5, "ser_p75_ns": 188507.75, "ser_p95_ns": 213306.65, "ser_p99_ns": 218251.21, "ser_ci_low_ns": 176586.35382653063, "ser_ci_high_ns": 182815.98852040814, "deser_mean_ns": 1134067.9285714286, "deser_median_ns": 1131679.0, "deser_std_ns": 35294.687772726174, "deser_mad_ns": 22576.5, "deser_cv": 0.03112219901781938, "deser_min_ns": 1055848.0, "deser_max_ns": 1214594.0, "deser_p5_ns": 1072859.85, "deser_p25_ns": 1111123.0, "deser_p50_ns": 1131679.0, "deser_p75_ns": 1156401.0, "deser_p95_ns": 1196175.9, "deser_p99_ns": 1207933.98, "deser_ci_low_ns": 1127203.5038265307, "deser_ci_high_ns": 1141300.5573979593, "total_mean_ns": 1313677.8775510204, "total_median_ns": 1309986.5, "total_std_ns": 42764.221220829306, "total_mad_ns": 27427.5, "total_cv": 0.032553049687150906, "total_min_ns": 1223316.0, "total_max_ns": 1428120.0, "total_p5_ns": 1244100.75, "total_p25_ns": 1285603.75, "total_p50_ns": 1309986.5, "total_p75_ns": 1341051.25, "total_p95_ns": 1387028.3499999999, "total_p99_ns": 1403117.28, "total_ci_low_ns": 1305551.0579081632, "total_ci_high_ns": 1321754.181887755, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 40.80705388925824}, {"serializer": "jsoncons_bson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 215133.22340425532, "avg_time_deser_ns": 1172130.8085106383, "avg_time_total_ns": 1387264.0319148935, "median_size_bytes": 50366.0, "avg_ops_per_sec": 720.8433124440355, "min_ops_per_sec": 664.5706109596998, "max_ops_per_sec": 782.9774439857937, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 215133.22340425532, "ser_median_ns": 215365.0, "ser_std_ns": 25027.102405173, "ser_mad_ns": 19385.5, "ser_cv": 0.11633304242434349, "ser_min_ns": 174501.0, "ser_max_ns": 283223.0, "ser_p5_ns": 181093.35, "ser_p25_ns": 192998.0, "ser_p50_ns": 215365.0, "ser_p75_ns": 233064.0, "ser_p95_ns": 256721.84999999998, "ser_p99_ns": 280026.58999999997, "ser_ci_low_ns": 209935.23297872342, "ser_ci_high_ns": 220119.31808510638, "deser_mean_ns": 1172130.8085106383, "deser_median_ns": 1169938.0, "deser_std_ns": 31989.891215576878, "deser_mad_ns": 20062.0, "deser_cv": 0.027292082917114567, "deser_min_ns": 1097121.0, "deser_max_ns": 1261785.0, "deser_p5_ns": 1119797.9, "deser_p25_ns": 1151903.25, "deser_p50_ns": 1169938.0, "deser_p75_ns": 1191876.0, "deser_p95_ns": 1223413.75, "deser_p99_ns": 1241569.5899999999, "deser_ci_low_ns": 1165502.6925531914, "deser_ci_high_ns": 1178778.2712765958, "total_mean_ns": 1387264.0319148935, "total_median_ns": 1390604.0, "total_std_ns": 46569.664580368226, "total_mad_ns": 29486.5, "total_cv": 0.033569431275520305, "total_min_ns": 1277176.0, "total_max_ns": 1504731.0, "total_p5_ns": 1306724.45, "total_p25_ns": 1359632.0, "total_p50_ns": 1390604.0, "total_p75_ns": 1417017.5, "total_p95_ns": 1463968.85, "total_p99_ns": 1492236.45, "total_ci_low_ns": 1378305.9454787234, "total_ci_high_ns": 1396587.9438829785, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 38.42418337276301}, {"serializer": "cereal", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "1.3.2", "avg_time_ser_ns": 32075.905263157896, "avg_time_deser_ns": 55281.16842105263, "avg_time_total_ns": 87357.07368421053, "median_size_bytes": 26467.0, "avg_ops_per_sec": 11447.269898427772, "min_ops_per_sec": 7950.832054574511, "max_ops_per_sec": 15646.26914712187, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 32075.905263157896, "ser_median_ns": 31769.0, "ser_std_ns": 1874.9479883491588, "ser_mad_ns": 1135.0, "ser_cv": 0.058453470696046346, "ser_min_ns": 28551.0, "ser_max_ns": 36968.0, "ser_p5_ns": 29080.2, "ser_p25_ns": 30866.5, "ser_p50_ns": 31769.0, "ser_p75_ns": 33044.5, "ser_p95_ns": 35423.4, "ser_p99_ns": 36297.78, "ser_ci_low_ns": 31709.36842105263, "ser_ci_high_ns": 32461.43, "deser_mean_ns": 55281.16842105263, "deser_median_ns": 44159.0, "deser_std_ns": 18828.27300565795, "deser_mad_ns": 7064.0, "deser_cv": 0.34059108270380933, "deser_min_ns": 34424.0, "deser_max_ns": 96128.0, "deser_p5_ns": 35565.6, "deser_p25_ns": 38849.5, "deser_p50_ns": 44159.0, "deser_p75_ns": 74887.0, "deser_p95_ns": 84953.29999999999, "deser_p99_ns": 88059.98000000003, "deser_ci_low_ns": 51531.15447368421, "deser_ci_high_ns": 59063.37657894737, "total_mean_ns": 87357.07368421053, "total_median_ns": 77757.0, "total_std_ns": 19047.26678066073, "total_mad_ns": 9402.0, "total_cv": 0.21803920366558086, "total_min_ns": 63913.0, "total_max_ns": 125773.0, "total_p5_ns": 65215.1, "total_p25_ns": 71314.0, "total_p50_ns": 77757.0, "total_p75_ns": 106281.5, "total_p95_ns": 118011.2, "total_p99_ns": 120724.26000000001, "total_ci_low_ns": 83650.57263157895, "total_ci_high_ns": 91480.67105263159, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.9326315789473684, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.5994532618469943}, {"serializer": "flexbuffers", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "flatbuffers-flex", "avg_time_ser_ns": 241313.52688172043, "avg_time_deser_ns": 416206.70967741933, "avg_time_total_ns": 657520.2365591398, "median_size_bytes": 42132.0, "avg_ops_per_sec": 1520.865738266987, "min_ops_per_sec": 1349.9503218281568, "max_ops_per_sec": 1683.0964936050748, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 241313.52688172043, "ser_median_ns": 233807.0, "ser_std_ns": 22113.6666465861, "ser_mad_ns": 14124.0, "ser_cv": 0.09163873626290785, "ser_min_ns": 207026.0, "ser_max_ns": 293702.0, "ser_p5_ns": 214046.6, "ser_p25_ns": 225089.0, "ser_p50_ns": 233807.0, "ser_p75_ns": 253128.0, "ser_p95_ns": 284983.99999999994, "ser_p99_ns": 292846.4, "ser_ci_low_ns": 237026.97688172042, "ser_ci_high_ns": 245625.57096774192, "deser_mean_ns": 416206.70967741933, "deser_median_ns": 416164.0, "deser_std_ns": 16007.206660683809, "deser_mad_ns": 9188.0, "deser_cv": 0.03845975158134808, "deser_min_ns": 382161.0, "deser_max_ns": 451352.0, "deser_p5_ns": 389520.8, "deser_p25_ns": 408693.0, "deser_p50_ns": 416164.0, "deser_p75_ns": 425767.0, "deser_p95_ns": 443419.2, "deser_p99_ns": 451261.84, "deser_ci_low_ns": 413184.08387096773, "deser_ci_high_ns": 419376.6994623656, "total_mean_ns": 657520.2365591398, "total_median_ns": 654967.0, "total_std_ns": 30149.93944236396, "total_mad_ns": 20636.0, "total_cv": 0.04585400990871581, "total_min_ns": 594143.0, "total_max_ns": 740768.0, "total_p5_ns": 608593.4, "total_p25_ns": 638158.0, "total_p50_ns": 654967.0, "total_p75_ns": 678361.0, "total_p95_ns": 702659.7999999999, "total_p99_ns": 739585.8, "total_ci_low_ns": 651606.8663978495, "total_ci_high_ns": 663644.2983870968, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.289721060087807}, {"serializer": "nlohmann_msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 193398.44329896907, "avg_time_deser_ns": 605209.0206185566, "avg_time_total_ns": 798607.4639175257, "median_size_bytes": 32878.0, "avg_ops_per_sec": 1252.1796316485124, "min_ops_per_sec": 1160.1641400225303, "max_ops_per_sec": 1365.2212614098366, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 193398.44329896907, "ser_median_ns": 190974.0, "ser_std_ns": 13447.449004496068, "ser_mad_ns": 7267.0, "ser_cv": 0.06953235390684115, "ser_min_ns": 169912.0, "ser_max_ns": 227932.0, "ser_p5_ns": 175677.4, "ser_p25_ns": 184270.0, "ser_p50_ns": 190974.0, "ser_p75_ns": 201355.0, "ser_p95_ns": 221382.4, "ser_p99_ns": 226311.52, "ser_ci_low_ns": 190701.67757731958, "ser_ci_high_ns": 196159.0244845361, "deser_mean_ns": 605209.0206185566, "deser_median_ns": 603430.0, "deser_std_ns": 21904.173964385656, "deser_mad_ns": 13648.0, "deser_cv": 0.03619274204141636, "deser_min_ns": 551618.0, "deser_max_ns": 657431.0, "deser_p5_ns": 571513.2, "deser_p25_ns": 594594.0, "deser_p50_ns": 603430.0, "deser_p75_ns": 622817.0, "deser_p95_ns": 640799.2, "deser_p99_ns": 650540.12, "deser_ci_low_ns": 600733.9317010309, "deser_ci_high_ns": 609614.3530927836, "total_mean_ns": 798607.4639175257, "total_median_ns": 797789.0, "total_std_ns": 29855.007365481513, "total_mad_ns": 21115.0, "total_cv": 0.037383832125772266, "total_min_ns": 732482.0, "total_max_ns": 861947.0, "total_p5_ns": 745658.4, "total_p25_ns": 781928.0, "total_p50_ns": 797789.0, "total_p75_ns": 823246.0, "total_p95_ns": 843233.6, "total_p99_ns": 855882.6799999999, "total_ci_low_ns": 792777.8293814433, "total_ci_high_ns": 804594.3889175258, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 31.135234508604363}, {"serializer": "yas", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "7.x", "avg_time_ser_ns": 25255.305263157894, "avg_time_deser_ns": 18198.02105263158, "avg_time_total_ns": 43453.326315789476, "median_size_bytes": 26474.0, "avg_ops_per_sec": 23013.197947901026, "min_ops_per_sec": 11544.144809752494, "max_ops_per_sec": 34746.35163307853, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 25255.305263157894, "ser_median_ns": 15168.0, "ser_std_ns": 17168.64282859993, "ser_mad_ns": 1973.0, "ser_cv": 0.6798034175276955, "ser_min_ns": 12495.0, "ser_max_ns": 68871.0, "ser_p5_ns": 12888.6, "ser_p25_ns": 13432.5, "ser_p50_ns": 15168.0, "ser_p75_ns": 46843.5, "ser_p95_ns": 54874.99999999999, "ser_p99_ns": 60963.720000000016, "ser_ci_low_ns": 21899.353157894737, "ser_ci_high_ns": 28753.303684210525, "deser_mean_ns": 18198.02105263158, "deser_median_ns": 18073.0, "deser_std_ns": 909.2207088624918, "deser_mad_ns": 581.0, "deser_cv": 0.049962614409164635, "deser_min_ns": 16285.0, "deser_max_ns": 20684.0, "deser_p5_ns": 16886.6, "deser_p25_ns": 17561.5, "deser_p50_ns": 18073.0, "deser_p75_ns": 18804.5, "deser_p95_ns": 19878.6, "deser_p99_ns": 20511.04, "deser_ci_low_ns": 18027.609736842103, "deser_ci_high_ns": 18373.116315789473, "total_mean_ns": 43453.326315789476, "total_median_ns": 33487.0, "total_std_ns": 17365.10421484378, "total_mad_ns": 2707.0, "total_cv": 0.39962658068213036, "total_min_ns": 28780.0, "total_max_ns": 86624.0, "total_p5_ns": 30099.4, "total_p25_ns": 31333.5, "total_p50_ns": 33487.0, "total_p75_ns": 64308.5, "total_p95_ns": 73263.5, "total_p99_ns": 81471.86000000002, "total_ci_low_ns": 40169.72552631579, "total_ci_high_ns": 47007.831052631576, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.2916343490304709, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.16492071426625451}, {"serializer": "capnproto", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "1.0.x", "avg_time_ser_ns": 39066.1875, "avg_time_deser_ns": 41915.583333333336, "avg_time_total_ns": 80981.77083333333, "median_size_bytes": 38896.0, "avg_ops_per_sec": 12348.458050615816, "min_ops_per_sec": 8546.497218115155, "max_ops_per_sec": 18328.445747800586, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 39066.1875, "ser_median_ns": 27412.5, "ser_std_ns": 19369.119871487517, "ser_mad_ns": 7623.0, "ser_cv": 0.4958026649385102, "ser_min_ns": 17706.0, "ser_max_ns": 70618.0, "ser_p5_ns": 19555.5, "ser_p25_ns": 21340.75, "ser_p50_ns": 27412.5, "ser_p75_ns": 59654.25, "ser_p95_ns": 66394.25, "ser_p99_ns": 67386.09999999999, "ser_ci_low_ns": 35344.6328125, "ser_ci_high_ns": 42860.57135416666, "deser_mean_ns": 41915.583333333336, "deser_median_ns": 41488.0, "deser_std_ns": 2688.141293540034, "deser_mad_ns": 1678.0, "deser_cv": 0.06413226489448118, "deser_min_ns": 36761.0, "deser_max_ns": 49055.0, "deser_p5_ns": 38443.5, "deser_p25_ns": 40154.75, "deser_p50_ns": 41488.0, "deser_p75_ns": 43761.5, "deser_p95_ns": 46412.75, "deser_p99_ns": 48885.9, "deser_ci_low_ns": 41373.3765625, "deser_ci_high_ns": 42493.536458333336, "total_mean_ns": 80981.77083333333, "total_median_ns": 71659.0, "total_std_ns": 20141.266372395057, "total_mad_ns": 11752.5, "total_cv": 0.24871358288579934, "total_min_ns": 54560.0, "total_max_ns": 117007.0, "total_p5_ns": 59147.0, "total_p25_ns": 63207.75, "total_p50_ns": 71659.0, "total_p75_ns": 100440.75, "total_p95_ns": 111051.25, "total_p99_ns": 115017.7, "total_ci_low_ns": 77104.60494791667, "total_ci_high_ns": 85002.7421875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.7945175438596491, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.1722320443247245}, {"serializer": "thrift", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "TBinaryProtocol", "avg_time_ser_ns": 37518.142857142855, "avg_time_deser_ns": 28849.10989010989, "avg_time_total_ns": 66367.25274725274, "median_size_bytes": 32165.0, "avg_ops_per_sec": 15067.672061224423, "min_ops_per_sec": 10267.889230010987, "max_ops_per_sec": 19462.82600233554, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 37518.142857142855, "ser_median_ns": 29712.0, "ser_std_ns": 14781.00017557933, "ser_mad_ns": 2563.0, "ser_cv": 0.3939693985350147, "ser_min_ns": 25089.0, "ser_max_ns": 68464.0, "ser_p5_ns": 26684.5, "ser_p25_ns": 27631.0, "ser_p50_ns": 29712.0, "ser_p75_ns": 40860.0, "ser_p95_ns": 67157.0, "ser_p99_ns": 67572.09999999999, "ser_ci_low_ns": 34453.10494505495, "ser_ci_high_ns": 40654.996978021976, "deser_mean_ns": 28849.10989010989, "deser_median_ns": 28816.0, "deser_std_ns": 1190.7083088140757, "deser_mad_ns": 723.0, "deser_cv": 0.04127365847160078, "deser_min_ns": 26291.0, "deser_max_ns": 31832.0, "deser_p5_ns": 26976.0, "deser_p25_ns": 28137.5, "deser_p50_ns": 28816.0, "deser_p75_ns": 29534.5, "deser_p95_ns": 30995.5, "deser_p99_ns": 31807.7, "deser_ci_low_ns": 28602.256043956044, "deser_ci_high_ns": 29089.972252747255, "total_mean_ns": 66367.25274725274, "total_median_ns": 59403.0, "total_std_ns": 14880.235725129123, "total_mad_ns": 4253.0, "total_cv": 0.22421051209996162, "total_min_ns": 51380.0, "total_max_ns": 97391.0, "total_p5_ns": 53931.5, "total_p25_ns": 55961.5, "total_p50_ns": 59403.0, "total_p75_ns": 69690.0, "total_p95_ns": 95822.5, "total_p99_ns": 97071.5, "total_ci_low_ns": 63303.7706043956, "total_ci_high_ns": 69608.53516483516, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.6434933487565067, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.6194936953081813}, {"serializer": "zpp_bits", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "4.4.25", "avg_time_ser_ns": 53546.82795698925, "avg_time_deser_ns": 17996.935483870966, "avg_time_total_ns": 71543.76344086022, "median_size_bytes": 22467.0, "avg_ops_per_sec": 13977.458717650825, "min_ops_per_sec": 8542.700689395946, "max_ops_per_sec": 19108.40196434372, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 53546.82795698925, "ser_median_ns": 41299.0, "ser_std_ns": 18271.48728663684, "ser_mad_ns": 2838.0, "ser_cv": 0.34122445686816705, "ser_min_ns": 36008.0, "ser_max_ns": 100275.0, "ser_p5_ns": 37617.8, "ser_p25_ns": 39569.0, "ser_p50_ns": 41299.0, "ser_p75_ns": 74874.0, "ser_p95_ns": 80384.2, "ser_p99_ns": 90236.87999999998, "ser_ci_low_ns": 50000.60349462366, "ser_ci_high_ns": 57345.89327956989, "deser_mean_ns": 17996.935483870966, "deser_median_ns": 18026.0, "deser_std_ns": 744.3307587364114, "deser_mad_ns": 396.0, "deser_cv": 0.04135875018296799, "deser_min_ns": 16325.0, "deser_max_ns": 19711.0, "deser_p5_ns": 16761.8, "deser_p25_ns": 17592.0, "deser_p50_ns": 18026.0, "deser_p75_ns": 18368.0, "deser_p95_ns": 19366.0, "deser_p99_ns": 19552.76, "deser_ci_low_ns": 17850.819623655916, "deser_ci_high_ns": 18147.80833333333, "total_mean_ns": 71543.76344086022, "total_median_ns": 59617.0, "total_std_ns": 18296.754257421588, "total_mad_ns": 3814.0, "total_cv": 0.2557421273001122, "total_min_ns": 52333.0, "total_max_ns": 117059.0, "total_p5_ns": 54808.2, "total_p25_ns": 57632.0, "total_p50_ns": 59617.0, "total_p75_ns": 92842.0, "total_p95_ns": 98856.19999999998, "total_p99_ns": 106990.51999999997, "total_ci_low_ns": 68071.16586021506, "total_ci_high_ns": 75277.11478494624, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.6896434634974533, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.7593441696024181}, {"serializer": "arduinojson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "7.2.1", "avg_time_ser_ns": 452269.05102040817, "avg_time_deser_ns": 5388768.367346939, "avg_time_total_ns": 5841037.418367347, "median_size_bytes": 45507.0, "avg_ops_per_sec": 171.2024642840782, "min_ops_per_sec": 162.57371092053137, "max_ops_per_sec": 179.17033741895455, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 452269.05102040817, "ser_median_ns": 449535.5, "ser_std_ns": 16242.722876435128, "ser_mad_ns": 11044.5, "ser_cv": 0.03591385004078511, "ser_min_ns": 419449.0, "ser_max_ns": 491316.0, "ser_p5_ns": 427670.2, "ser_p25_ns": 440640.25, "ser_p50_ns": 449535.5, "ser_p75_ns": 464523.5, "ser_p95_ns": 478698.55, "ser_p99_ns": 485743.35000000003, "ser_ci_low_ns": 448918.5573979592, "ser_ci_high_ns": 455633.6301020408, "deser_mean_ns": 5388768.367346939, "deser_median_ns": 5397439.5, "deser_std_ns": 112627.41531319854, "deser_mad_ns": 73003.5, "deser_cv": 0.020900400172265816, "deser_min_ns": 5159355.0, "deser_max_ns": 5674619.0, "deser_p5_ns": 5188420.2, "deser_p25_ns": 5316603.25, "deser_p50_ns": 5397439.5, "deser_p75_ns": 5462742.75, "deser_p95_ns": 5564682.05, "deser_p99_ns": 5661978.93, "deser_ci_low_ns": 5366587.503316326, "deser_ci_high_ns": 5411065.925510204, "total_mean_ns": 5841037.418367347, "total_median_ns": 5852275.0, "total_std_ns": 119037.90453498792, "total_mad_ns": 79074.5, "total_cv": 0.020379582599602777, "total_min_ns": 5581281.0, "total_max_ns": 6151056.0, "total_p5_ns": 5641775.35, "total_p25_ns": 5759465.75, "total_p50_ns": 5852275.0, "total_p75_ns": 5923956.5, "total_p95_ns": 6011176.85, "total_p99_ns": 6122339.15, "total_ci_low_ns": 5819357.390306123, "total_ci_high_ns": 5864448.494387755, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 67.46839546313583}, {"serializer": "nlohmann_cbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 200314.05681818182, "avg_time_deser_ns": 608268.5340909091, "avg_time_total_ns": 808582.5909090909, "median_size_bytes": 33491.0, "avg_ops_per_sec": 1236.7320435080085, "min_ops_per_sec": 1137.7535057029895, "max_ops_per_sec": 1339.1828841713939, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 200314.05681818182, "ser_median_ns": 197341.0, "ser_std_ns": 11351.07657900702, "ser_mad_ns": 6124.5, "ser_cv": 0.05666640054776586, "ser_min_ns": 178817.0, "ser_max_ns": 231998.0, "ser_p5_ns": 185552.3, "ser_p25_ns": 193010.0, "ser_p50_ns": 197341.0, "ser_p75_ns": 205657.5, "ser_p95_ns": 222359.25, "ser_p99_ns": 230748.68, "ser_ci_low_ns": 198083.79147727272, "ser_ci_high_ns": 202633.66022727272, "deser_mean_ns": 608268.5340909091, "deser_median_ns": 608184.5, "deser_std_ns": 21244.353489674068, "deser_mad_ns": 11775.0, "deser_cv": 0.034925945201858793, "deser_min_ns": 558889.0, "deser_max_ns": 658707.0, "deser_p5_ns": 569979.0, "deser_p25_ns": 596394.25, "deser_p50_ns": 608184.5, "deser_p75_ns": 618486.75, "deser_p95_ns": 647008.25, "deser_p99_ns": 658539.96, "deser_ci_low_ns": 603866.7201704546, "deser_ci_high_ns": 612574.9173295455, "total_mean_ns": 808582.5909090909, "total_median_ns": 808310.0, "total_std_ns": 28116.228309633865, "total_mad_ns": 16592.5, "total_cv": 0.03477224049311121, "total_min_ns": 746724.0, "total_max_ns": 878925.0, "total_p5_ns": 758950.95, "total_p25_ns": 791582.5, "total_p50_ns": 808310.0, "total_p75_ns": 824039.25, "total_p95_ns": 856807.75, "total_p99_ns": 876424.62, "total_ci_low_ns": 802714.134090909, "total_ci_high_ns": 814544.3872159091, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 33.394515753840615}, {"serializer": "nlohmann_json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 250139.67021276595, "avg_time_deser_ns": 686540.4787234042, "avg_time_total_ns": 936680.1489361703, "median_size_bytes": 45507.0, "avg_ops_per_sec": 1067.6002914503365, "min_ops_per_sec": 986.8726204033941, "max_ops_per_sec": 1164.9024219486255, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 250139.67021276595, "ser_median_ns": 248840.5, "ser_std_ns": 14288.968455200917, "ser_mad_ns": 8852.5, "ser_cv": 0.05712395975834974, "ser_min_ns": 222200.0, "ser_max_ns": 291028.0, "ser_p5_ns": 226897.8, "ser_p25_ns": 240705.75, "ser_p50_ns": 248840.5, "ser_p75_ns": 258284.5, "ser_p95_ns": 277494.6, "ser_p99_ns": 281855.4099999999, "ser_ci_low_ns": 247276.23537234042, "ser_ci_high_ns": 253013.51888297874, "deser_mean_ns": 686540.4787234042, "deser_median_ns": 685815.0, "deser_std_ns": 21819.82769992424, "deser_mad_ns": 12092.0, "deser_cv": 0.031782288701312084, "deser_min_ns": 636062.0, "deser_max_ns": 736707.0, "deser_p5_ns": 648462.25, "deser_p25_ns": 673826.0, "deser_p50_ns": 685815.0, "deser_p75_ns": 697690.0, "deser_p95_ns": 724916.0499999999, "deser_p99_ns": 736457.76, "deser_ci_low_ns": 682297.2853723405, "deser_ci_high_ns": 690866.4053191489, "total_mean_ns": 936680.1489361703, "total_median_ns": 934824.5, "total_std_ns": 31421.351224156053, "total_mad_ns": 17147.0, "total_cv": 0.03354544372467239, "total_min_ns": 858441.0, "total_max_ns": 1013302.0, "total_p5_ns": 876783.0, "total_p25_ns": 920140.5, "total_p50_ns": 934824.5, "total_p75_ns": 959505.75, "total_p95_ns": 989857.45, "total_p99_ns": 1006449.7599999999, "total_ci_low_ns": 930280.0199468085, "total_ci_high_ns": 942974.0962765957, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 35.532043251247934}, {"serializer": "msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "msgpack-cxx", "avg_time_ser_ns": 76321.1978021978, "avg_time_deser_ns": 73851.0989010989, "avg_time_total_ns": 150172.2967032967, "median_size_bytes": 32878.0, "avg_ops_per_sec": 6659.0178212147375, "min_ops_per_sec": 5317.1974115883, "max_ops_per_sec": 7822.828578357363, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 76321.1978021978, "ser_median_ns": 76556.0, "ser_std_ns": 2885.5441513393016, "ser_mad_ns": 1677.0, "ser_cv": 0.03780789917393314, "ser_min_ns": 69571.0, "ser_max_ns": 82698.0, "ser_p5_ns": 71010.5, "ser_p25_ns": 74604.0, "ser_p50_ns": 76556.0, "ser_p75_ns": 78040.0, "ser_p95_ns": 80820.5, "ser_p99_ns": 82018.5, "ser_ci_low_ns": 75731.7521978022, "ser_ci_high_ns": 76885.78324175824, "deser_mean_ns": 73851.0989010989, "deser_median_ns": 65023.0, "deser_std_ns": 16913.500895277546, "deser_mad_ns": 2588.0, "deser_cv": 0.22902165501867536, "deser_min_ns": 57917.0, "deser_max_ns": 108488.0, "deser_p5_ns": 60041.5, "deser_p25_ns": 63333.0, "deser_p50_ns": 65023.0, "deser_p75_ns": 77335.5, "deser_p95_ns": 106627.0, "deser_p99_ns": 107621.29999999999, "deser_ci_low_ns": 70578.06510989011, "deser_ci_high_ns": 77415.57115384616, "total_mean_ns": 150172.2967032967, "total_median_ns": 142393.0, "total_std_ns": 17607.708364674647, "total_mad_ns": 4686.0, "total_cv": 0.11725004379112028, "total_min_ns": 127831.0, "total_max_ns": 188069.0, "total_p5_ns": 131460.0, "total_p25_ns": 139563.0, "total_p50_ns": 142393.0, "total_p75_ns": 156548.0, "total_p95_ns": 184482.5, "total_p99_ns": 187426.4, "total_ci_low_ns": 146795.06346153846, "total_ci_high_ns": 153989.10714285716, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.3648805682174965}, {"serializer": "simdjson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.10.1", "avg_time_ser_ns": 22372.319587628866, "avg_time_deser_ns": 656406.2989690722, "avg_time_total_ns": 678778.618556701, "median_size_bytes": 45507.0, "avg_ops_per_sec": 1473.2343840268832, "min_ops_per_sec": 1355.8972717990994, "max_ops_per_sec": 1606.7251086146173, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 22372.319587628866, "ser_median_ns": 9613.0, "ser_std_ns": 19029.393136313705, "ser_mad_ns": 1762.0, "ser_cv": 0.8505775658075398, "ser_min_ns": 7347.0, "ser_max_ns": 68771.0, "ser_p5_ns": 7612.400000000001, "ser_p25_ns": 8266.0, "ser_p50_ns": 9613.0, "ser_p75_ns": 44425.0, "ser_p95_ns": 52509.99999999999, "ser_p99_ns": 65227.63999999997, "ser_ci_low_ns": 18788.507216494843, "ser_ci_high_ns": 26090.742783505153, "deser_mean_ns": 656406.2989690722, "deser_median_ns": 655417.0, "deser_std_ns": 20204.43017331685, "deser_mad_ns": 13964.0, "deser_cv": 0.030780372164388416, "deser_min_ns": 614322.0, "deser_max_ns": 693573.0, "deser_p5_ns": 623215.4, "deser_p25_ns": 644925.0, "deser_p50_ns": 655417.0, "deser_p75_ns": 669837.0, "deser_p95_ns": 688770.0, "deser_p99_ns": 693255.24, "deser_ci_low_ns": 652518.8453608247, "deser_ci_high_ns": 660351.4590206185, "total_mean_ns": 678778.618556701, "total_median_ns": 676201.0, "total_std_ns": 26546.53640129101, "total_mad_ns": 18047.0, "total_cv": 0.03910927020320319, "total_min_ns": 622384.0, "total_max_ns": 737519.0, "total_p5_ns": 636155.6, "total_p25_ns": 661533.0, "total_p50_ns": 676201.0, "total_p75_ns": 697704.0, "total_p95_ns": 724359.4, "total_p99_ns": 728294.3599999999, "total_ci_low_ns": 673621.7654639175, "total_ci_high_ns": 683957.3636597939, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.606742918163807}, {"serializer": "cista", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "0.15", "avg_time_ser_ns": 25551.77894736842, "avg_time_deser_ns": 62485.6947368421, "avg_time_total_ns": 88037.47368421052, "median_size_bytes": 32824.0, "avg_ops_per_sec": 11358.799362950705, "min_ops_per_sec": 7655.502392344498, "max_ops_per_sec": 14525.383106979447, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 25551.77894736842, "ser_median_ns": 12569.0, "ser_std_ns": 18953.521688806613, "ser_mad_ns": 2098.0, "ser_cv": 0.7417691632291864, "ser_min_ns": 9387.0, "ser_max_ns": 71644.0, "ser_p5_ns": 10253.2, "ser_p25_ns": 11249.5, "ser_p50_ns": 12569.0, "ser_p75_ns": 48082.0, "ser_p95_ns": 54272.1, "ser_p99_ns": 59338.46000000003, "ser_ci_low_ns": 21895.621315789474, "ser_ci_high_ns": 29415.08342105263, "deser_mean_ns": 62485.6947368421, "deser_median_ns": 62713.0, "deser_std_ns": 2126.3624071813656, "deser_mad_ns": 1215.0, "deser_cv": 0.034029587350137024, "deser_min_ns": 57385.0, "deser_max_ns": 67103.0, "deser_p5_ns": 58962.4, "deser_p25_ns": 61171.5, "deser_p50_ns": 62713.0, "deser_p75_ns": 63708.0, "deser_p95_ns": 66186.2, "deser_p99_ns": 67011.82, "deser_ci_low_ns": 62063.969736842104, "deser_ci_high_ns": 62904.27421052631, "total_mean_ns": 88037.47368421052, "total_median_ns": 76464.0, "total_std_ns": 19015.57520339023, "total_mad_ns": 4578.0, "total_cv": 0.2159941035064102, "total_min_ns": 68845.0, "total_max_ns": 130625.0, "total_p5_ns": 70745.4, "total_p25_ns": 73212.0, "total_p50_ns": 76464.0, "total_p75_ns": 109411.5, "total_p95_ns": 117991.4, "total_p99_ns": 122283.44000000002, "total_ci_low_ns": 84054.30157894737, "total_ci_high_ns": 91810.97447368421, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.9618836565096953, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.639792790357409}, {"serializer": "jsoncons_cbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 147969.48936170212, "avg_time_deser_ns": 1251326.2872340425, "avg_time_total_ns": 1399295.7765957448, "median_size_bytes": 33491.0, "avg_ops_per_sec": 714.6451927646309, "min_ops_per_sec": 663.1651546501141, "max_ops_per_sec": 778.3888129959796, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 147969.48936170212, "ser_median_ns": 142554.5, "ser_std_ns": 24723.887265585705, "ser_mad_ns": 17692.5, "ser_cv": 0.16708773796704615, "ser_min_ns": 112674.0, "ser_max_ns": 214805.0, "ser_p5_ns": 117716.4, "ser_p25_ns": 127032.0, "ser_p50_ns": 142554.5, "ser_p75_ns": 166066.75, "ser_p95_ns": 189788.8, "ser_p99_ns": 211538.83999999997, "ser_ci_low_ns": 143141.52765957447, "ser_ci_high_ns": 152863.20478723405, "deser_mean_ns": 1251326.2872340425, "deser_median_ns": 1249478.5, "deser_std_ns": 37358.95315605898, "deser_mad_ns": 23841.0, "deser_cv": 0.029855484965985956, "deser_min_ns": 1166638.0, "deser_max_ns": 1349247.0, "deser_p5_ns": 1180139.75, "deser_p25_ns": 1232676.0, "deser_p50_ns": 1249478.5, "deser_p75_ns": 1281077.75, "deser_p95_ns": 1307005.65, "deser_p99_ns": 1322517.8699999999, "deser_ci_low_ns": 1243663.9832446808, "deser_ci_high_ns": 1258772.0795212765, "total_mean_ns": 1399295.7765957448, "total_median_ns": 1404831.5, "total_std_ns": 45643.93126725829, "total_mad_ns": 32918.5, "total_cv": 0.03261921605902537, "total_min_ns": 1284705.0, "total_max_ns": 1507920.0, "total_p5_ns": 1316236.55, "total_p25_ns": 1365898.5, "total_p50_ns": 1404831.5, "total_p75_ns": 1431088.0, "total_p95_ns": 1470899.6, "total_p99_ns": 1490786.6099999999, "total_ci_low_ns": 1389954.1992021278, "total_ci_high_ns": 1408833.1111702127, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 39.46108241739918}, {"serializer": "flatbuffers", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "flatbuffers", "avg_time_ser_ns": 16500.197916666668, "avg_time_deser_ns": 62257.1875, "avg_time_total_ns": 78757.38541666667, "median_size_bytes": 16412.0, "avg_ops_per_sec": 12697.221913976586, "min_ops_per_sec": 9104.317267248129, "max_ops_per_sec": 16997.552352461247, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 16500.197916666668, "ser_median_ns": 3095.5, "ser_std_ns": 18375.754288059947, "ser_mad_ns": 1686.0, "ser_cv": 1.1136687196641926, "ser_min_ns": 1113.0, "ser_max_ns": 46459.0, "ser_p5_ns": 1357.75, "ser_p25_ns": 1834.0, "ser_p50_ns": 3095.5, "ser_p75_ns": 38445.0, "ser_p95_ns": 44078.25, "ser_p99_ns": 45842.45, "ser_ci_low_ns": 12910.951041666667, "ser_ci_high_ns": 20293.346093749995, "deser_mean_ns": 62257.1875, "deser_median_ns": 62097.0, "deser_std_ns": 2251.7335839070165, "deser_mad_ns": 1385.0, "deser_cv": 0.03616825099763809, "deser_min_ns": 56973.0, "deser_max_ns": 67361.0, "deser_p5_ns": 57991.5, "deser_p25_ns": 60997.25, "deser_p50_ns": 62097.0, "deser_p75_ns": 63668.0, "deser_p95_ns": 66025.5, "deser_p99_ns": 67330.6, "deser_ci_low_ns": 61801.198958333334, "deser_ci_high_ns": 62738.97239583333, "total_mean_ns": 78757.38541666667, "total_median_ns": 66823.5, "total_std_ns": 18409.176003384146, "total_mad_ns": 4324.0, "total_cv": 0.23374539296842106, "total_min_ns": 58832.0, "total_max_ns": 109838.0, "total_p5_ns": 61088.5, "total_p25_ns": 64252.0, "total_p50_ns": 66823.5, "total_p75_ns": 101028.0, "total_p95_ns": 106161.0, "total_p99_ns": 107996.9, "total_ci_low_ns": 75185.41822916667, "total_ci_high_ns": 82394.79791666666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.7804824561403508, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.161172815037292}, {"serializer": "avro", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "binary-1.11", "avg_time_ser_ns": 37647.291666666664, "avg_time_deser_ns": 31962.75, "avg_time_total_ns": 69610.04166666667, "median_size_bytes": 12104.0, "avg_ops_per_sec": 14365.743448173485, "min_ops_per_sec": 8288.300235387727, "max_ops_per_sec": 20384.450740974786, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 37647.291666666664, "ser_median_ns": 24393.5, "ser_std_ns": 18719.832618413115, "ser_mad_ns": 3230.5, "ser_cv": 0.49724247853366477, "ser_min_ns": 20016.0, "ser_max_ns": 86798.0, "ser_p5_ns": 21043.75, "ser_p25_ns": 22182.5, "ser_p50_ns": 24393.5, "ser_p75_ns": 58764.75, "ser_p95_ns": 65030.25, "ser_p99_ns": 68163.74999999994, "ser_ci_low_ns": 33851.086718750004, "ser_ci_high_ns": 41334.015885416666, "deser_mean_ns": 31962.75, "deser_median_ns": 31806.0, "deser_std_ns": 1272.7838531510781, "deser_mad_ns": 725.0, "deser_cv": 0.03982084936843914, "deser_min_ns": 28977.0, "deser_max_ns": 35008.0, "deser_p5_ns": 29705.0, "deser_p25_ns": 31152.25, "deser_p50_ns": 31806.0, "deser_p75_ns": 32704.75, "deser_p95_ns": 33988.5, "deser_p99_ns": 34959.55, "deser_ci_low_ns": 31716.579166666666, "deser_ci_high_ns": 32221.170052083333, "total_mean_ns": 69610.04166666667, "total_median_ns": 57071.0, "total_std_ns": 18988.874217851975, "total_mad_ns": 4894.5, "total_cv": 0.27278929538329744, "total_min_ns": 49057.0, "total_max_ns": 120652.0, "total_p5_ns": 51670.25, "total_p25_ns": 53786.25, "total_p50_ns": 57071.0, "total_p75_ns": 90372.75, "total_p95_ns": 96882.75, "total_p99_ns": 101634.89999999994, "total_ci_low_ns": 65779.16640625, "total_ci_high_ns": 73373.24140624999, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.6951754385964912, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.6143707452333422}, {"serializer": "nlohmann_bson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 271577.8617021277, "avg_time_deser_ns": 864047.659574468, "avg_time_total_ns": 1135625.5212765958, "median_size_bytes": 50366.0, "avg_ops_per_sec": 880.5719678401252, "min_ops_per_sec": 816.6018420904354, "max_ops_per_sec": 959.6993453890765, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 271577.8617021277, "ser_median_ns": 271450.0, "ser_std_ns": 13925.508073664685, "ser_mad_ns": 9359.5, "ser_cv": 0.05127630060265544, "ser_min_ns": 233928.0, "ser_max_ns": 300075.0, "ser_p5_ns": 249140.65, "ser_p25_ns": 261959.25, "ser_p50_ns": 271450.0, "ser_p75_ns": 280299.75, "ser_p95_ns": 294590.15, "ser_p99_ns": 299491.89, "ser_ci_low_ns": 268730.164893617, "ser_ci_high_ns": 274240.16728723404, "deser_mean_ns": 864047.659574468, "deser_median_ns": 862977.5, "deser_std_ns": 28290.347434573618, "deser_mad_ns": 17875.0, "deser_cv": 0.03274165159883222, "deser_min_ns": 794630.0, "deser_max_ns": 939050.0, "deser_p5_ns": 818022.25, "deser_p25_ns": 846518.5, "deser_p50_ns": 862977.5, "deser_p75_ns": 882159.75, "deser_p95_ns": 907061.85, "deser_p99_ns": 931084.5499999999, "deser_ci_low_ns": 858264.0938829788, "deser_ci_high_ns": 869541.3795212766, "total_mean_ns": 1135625.5212765958, "total_median_ns": 1137694.5, "total_std_ns": 36634.43007234245, "total_mad_ns": 23618.5, "total_cv": 0.03225925217950406, "total_min_ns": 1041993.0, "total_max_ns": 1224587.0, "total_p5_ns": 1074134.5, "total_p25_ns": 1112867.75, "total_p50_ns": 1137694.5, "total_p75_ns": 1159560.0, "total_p95_ns": 1186146.75, "total_p99_ns": 1215226.55, "total_ci_low_ns": 1127948.3635638298, "total_ci_high_ns": 1142858.0135638297, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 38.383830702696756}, {"serializer": "nlohmann_ubjson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 195180.10344827586, "avg_time_deser_ns": 691038.5747126436, "avg_time_total_ns": 886218.6781609196, "median_size_bytes": 40526.0, "avg_ops_per_sec": 1128.3896679713403, "min_ops_per_sec": 1047.0721767792897, "max_ops_per_sec": 1223.3074318373099, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 195180.10344827586, "ser_median_ns": 194029.0, "ser_std_ns": 10574.472437260561, "ser_mad_ns": 5882.0, "ser_cv": 0.05417802455496123, "ser_min_ns": 178120.0, "ser_max_ns": 225218.0, "ser_p5_ns": 180250.1, "ser_p25_ns": 188060.0, "ser_p50_ns": 194029.0, "ser_p75_ns": 199390.5, "ser_p95_ns": 214253.2, "ser_p99_ns": 224091.4, "ser_ci_low_ns": 193034.92758620688, "ser_ci_high_ns": 197462.76235632182, "deser_mean_ns": 691038.5747126436, "deser_median_ns": 694433.0, "deser_std_ns": 24366.39647739837, "deser_mad_ns": 14188.0, "deser_cv": 0.035260544590482105, "deser_min_ns": 636508.0, "deser_max_ns": 743443.0, "deser_p5_ns": 647616.4, "deser_p25_ns": 675770.0, "deser_p50_ns": 694433.0, "deser_p75_ns": 704946.5, "deser_p95_ns": 732524.7, "deser_p99_ns": 741888.12, "deser_ci_low_ns": 685863.6959770115, "deser_ci_high_ns": 696217.2864942529, "total_mean_ns": 886218.6781609196, "total_median_ns": 888194.0, "total_std_ns": 28692.950121692134, "total_mad_ns": 15330.0, "total_cv": 0.03237682846093441, "total_min_ns": 817456.0, "total_max_ns": 955044.0, "total_p5_ns": 834559.4, "total_p25_ns": 870579.5, "total_p50_ns": 888194.0, "total_p75_ns": 902944.5, "total_p95_ns": 937578.2, "total_p99_ns": 945831.68, "total_ci_low_ns": 880105.8810344829, "total_ci_high_ns": 892311.1724137932, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 36.28262516176418}, {"serializer": "jsoncons_msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 136964.6326530612, "avg_time_deser_ns": 1173923.1326530613, "avg_time_total_ns": 1310887.7653061224, "median_size_bytes": 32878.0, "avg_ops_per_sec": 762.841813361861, "min_ops_per_sec": 700.8636743058471, "max_ops_per_sec": 842.2435684175507, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 136964.6326530612, "ser_median_ns": 125571.0, "ser_std_ns": 25406.197014304293, "ser_mad_ns": 13890.5, "ser_cv": 0.18549458003994038, "ser_min_ns": 105320.0, "ser_max_ns": 200473.0, "ser_p5_ns": 109573.15, "ser_p25_ns": 115053.0, "ser_p50_ns": 125571.0, "ser_p75_ns": 157035.0, "ser_p95_ns": 179605.54999999993, "ser_p99_ns": 200440.02, "ser_ci_low_ns": 132251.32653061225, "ser_ci_high_ns": 142169.4693877551, "deser_mean_ns": 1173923.1326530613, "deser_median_ns": 1173765.0, "deser_std_ns": 37550.958496871535, "deser_mad_ns": 26873.5, "deser_cv": 0.0319875786176958, "deser_min_ns": 1079197.0, "deser_max_ns": 1253958.0, "deser_p5_ns": 1110009.4, "deser_p25_ns": 1151060.75, "deser_p50_ns": 1173765.0, "deser_p75_ns": 1202480.75, "deser_p95_ns": 1230738.85, "deser_p99_ns": 1245569.44, "deser_ci_low_ns": 1166679.8734693879, "deser_ci_high_ns": 1181699.8464285715, "total_mean_ns": 1310887.7653061224, "total_median_ns": 1306504.5, "total_std_ns": 49095.82046519374, "total_mad_ns": 32314.0, "total_cv": 0.037452344712156756, "total_min_ns": 1187305.0, "total_max_ns": 1426811.0, "total_p5_ns": 1232224.4, "total_p25_ns": 1281672.0, "total_p50_ns": 1306504.5, "total_p75_ns": 1348832.0, "total_p95_ns": 1390785.95, "total_p99_ns": 1419850.28, "total_ci_low_ns": 1300925.6660714285, "total_ci_high_ns": 1320329.7132653063, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 34.29606337830914}, {"serializer": "bitsery", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "5.2.4", "avg_time_ser_ns": 22415.58947368421, "avg_time_deser_ns": 18218.621052631577, "avg_time_total_ns": 40634.21052631579, "median_size_bytes": 18760.0, "avg_ops_per_sec": 24609.805064438835, "min_ops_per_sec": 11376.823135907529, "max_ops_per_sec": 37198.22936428226, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 22415.58947368421, "ser_median_ns": 12855.0, "ser_std_ns": 16755.036184456338, "ser_mad_ns": 1940.0, "ser_cv": 0.7474724768726991, "ser_min_ns": 9557.0, "ser_max_ns": 69801.0, "ser_p5_ns": 9800.4, "ser_p25_ns": 11477.0, "ser_p50_ns": 12855.0, "ser_p75_ns": 35692.0, "ser_p95_ns": 52627.299999999996, "ser_p99_ns": 57891.200000000026, "ser_ci_low_ns": 19226.82552631579, "ser_ci_high_ns": 25797.91763157894, "deser_mean_ns": 18218.621052631577, "deser_median_ns": 18131.0, "deser_std_ns": 817.9439087431019, "deser_mad_ns": 536.0, "deser_cv": 0.04489603831048204, "deser_min_ns": 16254.0, "deser_max_ns": 20307.0, "deser_p5_ns": 16987.0, "deser_p25_ns": 17681.0, "deser_p50_ns": 18131.0, "deser_p75_ns": 18773.5, "deser_p95_ns": 19727.8, "deser_p99_ns": 20149.08, "deser_ci_low_ns": 18064.483947368422, "deser_ci_high_ns": 18381.684210526317, "total_mean_ns": 40634.21052631579, "total_median_ns": 31396.0, "total_std_ns": 16678.94187348337, "total_mad_ns": 2633.0, "total_cv": 0.41046550818753197, "total_min_ns": 26883.0, "total_max_ns": 87898.0, "total_p5_ns": 27334.8, "total_p25_ns": 29278.5, "total_p50_ns": 31396.0, "total_p75_ns": 53943.5, "total_p95_ns": 70458.59999999999, "total_p99_ns": 78065.60000000002, "total_ci_low_ns": 37257.04157894737, "total_ci_high_ns": 44217.50210526316, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "yyjson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "0.10.0", "avg_time_ser_ns": 48147.55789473684, "avg_time_deser_ns": 659287.252631579, "avg_time_total_ns": 707434.8105263158, "median_size_bytes": 45507.0, "avg_ops_per_sec": 1413.5578079003806, "min_ops_per_sec": 1281.6634966856182, "max_ops_per_sec": 1543.8602991692487, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 48147.55789473684, "ser_median_ns": 38354.0, "ser_std_ns": 16511.03705308728, "ser_mad_ns": 2574.0, "ser_cv": 0.34292574275905596, "ser_min_ns": 33875.0, "ser_max_ns": 88955.0, "ser_p5_ns": 35398.4, "ser_p25_ns": 36800.0, "ser_p50_ns": 38354.0, "ser_p75_ns": 56746.5, "ser_p95_ns": 79421.9, "ser_p99_ns": 84631.00000000001, "ser_ci_low_ns": 44802.189999999995, "ser_ci_high_ns": 51557.20342105263, "deser_mean_ns": 659287.252631579, "deser_median_ns": 657876.0, "deser_std_ns": 26175.255278874007, "deser_mad_ns": 16189.0, "deser_cv": 0.03970235307052295, "deser_min_ns": 594152.0, "deser_max_ns": 726501.0, "deser_p5_ns": 618984.6, "deser_p25_ns": 643494.5, "deser_p50_ns": 657876.0, "deser_p75_ns": 675665.0, "deser_p95_ns": 704162.6, "deser_p99_ns": 718160.38, "deser_ci_low_ns": 653834.7697368421, "deser_ci_high_ns": 664334.9663157894, "total_mean_ns": 707434.8105263158, "total_median_ns": 700858.0, "total_std_ns": 30390.986159216278, "total_mad_ns": 19211.0, "total_cv": 0.04295941577515257, "total_min_ns": 647727.0, "total_max_ns": 780236.0, "total_p5_ns": 663393.4, "total_p25_ns": 683633.0, "total_p50_ns": 700858.0, "total_p75_ns": 734322.5, "total_p95_ns": 757445.8, "total_p99_ns": 770716.62, "total_ci_low_ns": 701497.0442105264, "total_ci_high_ns": 713329.8639473685, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.092974976080317}, {"serializer": "custom_binary", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "harness", "avg_time_ser_ns": 66781.74736842106, "avg_time_deser_ns": 25986.315789473683, "avg_time_total_ns": 92768.06315789474, "median_size_bytes": 22063.0, "avg_ops_per_sec": 10779.571826329524, "min_ops_per_sec": 7258.105489305181, "max_ops_per_sec": 15355.086372360845, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 66781.74736842106, "ser_median_ns": 56029.0, "ser_std_ns": 18711.193087133943, "ser_mad_ns": 6501.0, "ser_cv": 0.2801842393237806, "ser_min_ns": 39190.0, "ser_max_ns": 111744.0, "ser_p5_ns": 49221.1, "ser_p25_ns": 51953.5, "ser_p50_ns": 56029.0, "ser_p75_ns": 87015.5, "ser_p95_ns": 96691.0, "ser_p99_ns": 108882.64000000001, "ser_ci_low_ns": 63044.46842105263, "ser_ci_high_ns": 70446.83657894738, "deser_mean_ns": 25986.315789473683, "deser_median_ns": 25995.0, "deser_std_ns": 917.5901748620456, "deser_mad_ns": 550.0, "deser_cv": 0.03531051428358826, "deser_min_ns": 23705.0, "deser_max_ns": 28228.0, "deser_p5_ns": 24568.2, "deser_p25_ns": 25357.0, "deser_p50_ns": 25995.0, "deser_p75_ns": 26506.0, "deser_p95_ns": 27390.4, "deser_p99_ns": 28011.8, "deser_ci_low_ns": 25802.611315789476, "deser_ci_high_ns": 26163.45763157895, "total_mean_ns": 92768.06315789474, "total_median_ns": 82378.0, "total_std_ns": 18906.278539945695, "total_mad_ns": 6981.0, "total_cv": 0.2038015874899371, "total_min_ns": 65125.0, "total_max_ns": 137777.0, "total_p5_ns": 74278.4, "total_p25_ns": 77872.5, "total_p50_ns": 82378.0, "total_p75_ns": 113012.5, "total_p95_ns": 124527.3, "total_p99_ns": 135129.96000000002, "total_ci_low_ns": 89199.56789473684, "total_ci_high_ns": 96498.31684210525, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.9793905817174515, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.912679896272712}, {"serializer": "avro_c", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "avro-c", "avg_time_ser_ns": 151828.71739130435, "avg_time_deser_ns": 171081.01086956522, "avg_time_total_ns": 322909.72826086957, "median_size_bytes": 12104.0, "avg_ops_per_sec": 3096.840734361922, "min_ops_per_sec": 2710.66620043208, "max_ops_per_sec": 3482.245769941951, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 151828.71739130435, "ser_median_ns": 143813.0, "ser_std_ns": 17014.79499918555, "ser_mad_ns": 6077.5, "ser_cv": 0.11206572308276665, "ser_min_ns": 128625.0, "ser_max_ns": 189177.0, "ser_p5_ns": 133911.1, "ser_p25_ns": 139374.0, "ser_p50_ns": 143813.0, "ser_p75_ns": 168875.5, "ser_p95_ns": 181047.9, "ser_p99_ns": 188872.15, "ser_ci_low_ns": 148463.27336956523, "ser_ci_high_ns": 155201.575, "deser_mean_ns": 171081.01086956522, "deser_median_ns": 171789.5, "deser_std_ns": 5648.172110222363, "deser_mad_ns": 3305.0, "deser_cv": 0.03301460566262737, "deser_min_ns": 158546.0, "deser_max_ns": 184535.0, "deser_p5_ns": 159960.05, "deser_p25_ns": 168347.0, "deser_p50_ns": 171789.5, "deser_p75_ns": 174717.0, "deser_p95_ns": 178421.4, "deser_p99_ns": 184105.48, "deser_ci_low_ns": 169877.2891304348, "deser_ci_high_ns": 172201.8051630435, "total_mean_ns": 322909.72826086957, "total_median_ns": 318631.0, "total_std_ns": 19148.96895115712, "total_mad_ns": 10782.0, "total_cv": 0.05930130706897506, "total_min_ns": 287171.0, "total_max_ns": 368913.0, "total_p5_ns": 294443.55, "total_p25_ns": 309796.5, "total_p50_ns": 318631.0, "total_p75_ns": 337682.75, "total_p95_ns": 355652.75, "total_p99_ns": 363361.09, "total_ci_low_ns": 319300.4861413043, "total_ci_high_ns": 326681.50570652174, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.6736170211378}, {"serializer": "rapidjson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "1.1.0", "avg_time_ser_ns": 330288.7849462366, "avg_time_deser_ns": 1328248.8279569892, "avg_time_total_ns": 1658537.6129032257, "median_size_bytes": 45507.0, "avg_ops_per_sec": 602.9408029218745, "min_ops_per_sec": 563.3053858754554, "max_ops_per_sec": 648.6051745720828, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 330288.7849462366, "ser_median_ns": 328828.0, "ser_std_ns": 10870.718430369707, "ser_mad_ns": 7530.0, "ser_cv": 0.03291276884299662, "ser_min_ns": 309692.0, "ser_max_ns": 357601.0, "ser_p5_ns": 313136.4, "ser_p25_ns": 323023.0, "ser_p50_ns": 328828.0, "ser_p75_ns": 336908.0, "ser_p95_ns": 351639.8, "ser_p99_ns": 354735.2, "ser_ci_low_ns": 328146.3392473118, "ser_ci_high_ns": 332526.72715053766, "deser_mean_ns": 1328248.8279569892, "deser_median_ns": 1325088.0, "deser_std_ns": 41564.19752221534, "deser_mad_ns": 27360.0, "deser_cv": 0.0312924782219806, "deser_min_ns": 1232078.0, "deser_max_ns": 1443546.0, "deser_p5_ns": 1272714.0, "deser_p25_ns": 1300831.0, "deser_p50_ns": 1325088.0, "deser_p75_ns": 1354846.0, "deser_p95_ns": 1393942.0, "deser_p99_ns": 1437371.88, "deser_ci_low_ns": 1319617.0091397848, "deser_ci_high_ns": 1336523.9336021505, "total_mean_ns": 1658537.6129032257, "total_median_ns": 1655979.0, "total_std_ns": 45990.472137085155, "total_mad_ns": 29744.0, "total_cv": 0.02772953219709022, "total_min_ns": 1541770.0, "total_max_ns": 1775236.0, "total_p5_ns": 1594231.0, "total_p25_ns": 1628906.0, "total_p50_ns": 1655979.0, "total_p75_ns": 1687867.0, "total_p95_ns": 1736200.0, "total_p99_ns": 1775190.92, "total_ci_low_ns": 1648990.1029569893, "total_ci_high_ns": 1668155.620967742, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 46.774646141634754}, {"serializer": "protobuf-wire", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "wire-v2", "avg_time_ser_ns": 117513.9494949495, "avg_time_deser_ns": 62451.37373737374, "avg_time_total_ns": 179965.32323232322, "median_size_bytes": 16385.0, "avg_ops_per_sec": 5556.626032388844, "min_ops_per_sec": 4509.684547565897, "max_ops_per_sec": 6584.665630679274, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 117513.9494949495, "ser_median_ns": 109354.0, "ser_std_ns": 17202.677363626135, "ser_mad_ns": 6968.0, "ser_cv": 0.14638838569854612, "ser_min_ns": 94444.0, "ser_max_ns": 160334.0, "ser_p5_ns": 100229.3, "ser_p25_ns": 104543.0, "ser_p50_ns": 109354.0, "ser_p75_ns": 133809.0, "ser_p95_ns": 147153.69999999998, "ser_p99_ns": 154758.77999999997, "ser_ci_low_ns": 114115.13636363637, "ser_ci_high_ns": 121029.59191919191, "deser_mean_ns": 62451.37373737374, "deser_median_ns": 62844.0, "deser_std_ns": 2504.722562280524, "deser_mad_ns": 1492.0, "deser_cv": 0.04010676486979476, "deser_min_ns": 56678.0, "deser_max_ns": 68092.0, "deser_p5_ns": 57868.5, "deser_p25_ns": 60854.0, "deser_p50_ns": 62844.0, "deser_p75_ns": 63881.5, "deser_p95_ns": 66356.7, "deser_p99_ns": 67191.37999999999, "deser_ci_low_ns": 61974.65883838384, "deser_ci_high_ns": 62919.91565656565, "total_mean_ns": 179965.32323232322, "total_median_ns": 173667.0, "total_std_ns": 17733.788402903218, "total_mad_ns": 9653.0, "total_cv": 0.0985400302924474, "total_min_ns": 151868.0, "total_max_ns": 221745.0, "total_p5_ns": 160185.3, "total_p25_ns": 167303.0, "total_p50_ns": 173667.0, "total_p75_ns": 194044.5, "total_p95_ns": 212787.5, "total_p99_ns": 218264.03999999998, "total_ci_low_ns": 176576.54065656563, "total_ci_high_ns": 183522.53585858585, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.057051269694961}, {"serializer": "bitsery", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "5.2.4", "avg_time_ser_ns": 426.2439024390244, "avg_time_deser_ns": 315.7073170731707, "avg_time_total_ns": 741.9512195121952, "median_size_bytes": 284.0, "avg_ops_per_sec": 1347797.5016436554, "min_ops_per_sec": 1137656.4277588169, "max_ops_per_sec": 1560062.4024961, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 426.2439024390244, "ser_median_ns": 421.0, "ser_std_ns": 31.344584652728976, "ser_mad_ns": 17.0, "ser_cv": 0.07353673442217258, "ser_min_ns": 379.0, "ser_max_ns": 522.0, "ser_p5_ns": 385.0, "ser_p25_ns": 408.0, "ser_p50_ns": 421.0, "ser_p75_ns": 439.0, "ser_p95_ns": 484.65000000000003, "ser_p99_ns": 507.41999999999996, "ser_ci_low_ns": 419.4256097560976, "ser_ci_high_ns": 433.06189024390244, "deser_mean_ns": 315.7073170731707, "deser_median_ns": 313.0, "deser_std_ns": 24.920856357716264, "deser_mad_ns": 14.0, "deser_cv": 0.07893658147916927, "deser_min_ns": 256.0, "deser_max_ns": 376.0, "deser_p5_ns": 276.35, "deser_p25_ns": 300.25, "deser_p50_ns": 313.0, "deser_p75_ns": 330.75, "deser_p95_ns": 360.70000000000005, "deser_p99_ns": 372.76, "deser_ci_low_ns": 310.16981707317075, "deser_ci_high_ns": 321.4161585365854, "total_mean_ns": 741.9512195121952, "total_median_ns": 739.0, "total_std_ns": 46.83696504675261, "total_mad_ns": 28.0, "total_cv": 0.06312674447458438, "total_min_ns": 641.0, "total_max_ns": 879.0, "total_p5_ns": 665.3, "total_p25_ns": 712.5, "total_p50_ns": 739.0, "total_p75_ns": 776.25, "total_p95_ns": 817.9, "total_p99_ns": 843.3599999999999, "total_ci_low_ns": 732.2881097560976, "total_ci_high_ns": 752.3423780487805, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 0.6104117492787831, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.2225790356790542}, {"serializer": "nlohmann_cbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 1146.4226804123712, "avg_time_deser_ns": 3262.6701030927834, "avg_time_total_ns": 4409.092783505154, "median_size_bytes": 341.0, "avg_ops_per_sec": 226804.02729130525, "min_ops_per_sec": 203873.59836901122, "max_ops_per_sec": 256016.3850486431, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 1146.4226804123712, "ser_median_ns": 1135.0, "ser_std_ns": 90.60201835632886, "ser_mad_ns": 54.0, "ser_cv": 0.07903020404632878, "ser_min_ns": 924.0, "ser_max_ns": 1369.0, "ser_p5_ns": 987.4, "ser_p25_ns": 1093.0, "ser_p50_ns": 1135.0, "ser_p75_ns": 1207.0, "ser_p95_ns": 1290.3999999999999, "ser_p99_ns": 1351.7199999999998, "ser_ci_low_ns": 1129.7927835051546, "ser_ci_high_ns": 1164.4951030927834, "deser_mean_ns": 3262.6701030927834, "deser_median_ns": 3264.0, "deser_std_ns": 148.9229192156049, "deser_mad_ns": 103.0, "deser_cv": 0.04564449193758093, "deser_min_ns": 2954.0, "deser_max_ns": 3606.0, "deser_p5_ns": 2997.0, "deser_p25_ns": 3163.0, "deser_p50_ns": 3264.0, "deser_p75_ns": 3370.0, "deser_p95_ns": 3482.4, "deser_p99_ns": 3588.72, "deser_ci_low_ns": 3234.0167525773195, "deser_ci_high_ns": 3291.763144329897, "total_mean_ns": 4409.092783505154, "total_median_ns": 4414.0, "total_std_ns": 216.18530257986177, "total_mad_ns": 146.0, "total_cv": 0.04903169726630205, "total_min_ns": 3906.0, "total_max_ns": 4905.0, "total_p5_ns": 4009.2, "total_p25_ns": 4254.0, "total_p50_ns": 4414.0, "total_p75_ns": 4543.0, "total_p95_ns": 4743.0, "total_p99_ns": 4841.639999999999, "total_ci_low_ns": 4367.8226804123715, "total_ci_high_ns": 4451.498711340207, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.092368711826893}, {"serializer": "protobuf-wire", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "wire-v2", "avg_time_ser_ns": 1097.8877551020407, "avg_time_deser_ns": 539.1632653061224, "avg_time_total_ns": 1637.0510204081634, "median_size_bytes": 316.0, "avg_ops_per_sec": 610854.5106619045, "min_ops_per_sec": 508646.998982706, "max_ops_per_sec": 783085.3563038372, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 1097.8877551020407, "ser_median_ns": 1089.0, "ser_std_ns": 151.45506513726514, "ser_mad_ns": 121.0, "ser_cv": 0.13795132009937436, "ser_min_ns": 776.0, "ser_max_ns": 1452.0, "ser_p5_ns": 887.0, "ser_p25_ns": 969.0, "ser_p50_ns": 1089.0, "ser_p75_ns": 1209.5, "ser_p95_ns": 1336.35, "ser_p99_ns": 1412.23, "ser_ci_low_ns": 1068.0099489795919, "ser_ci_high_ns": 1128.0525510204081, "deser_mean_ns": 539.1632653061224, "deser_median_ns": 541.0, "deser_std_ns": 51.8560048074346, "deser_mad_ns": 39.5, "deser_cv": 0.09617866821470517, "deser_min_ns": 407.0, "deser_max_ns": 667.0, "deser_p5_ns": 453.85, "deser_p25_ns": 500.25, "deser_p50_ns": 541.0, "deser_p75_ns": 574.5, "deser_p95_ns": 622.15, "deser_p99_ns": 661.1800000000001, "deser_ci_low_ns": 528.2525510204082, "deser_ci_high_ns": 548.8880102040816, "total_mean_ns": 1637.0510204081634, "total_median_ns": 1639.5, "total_std_ns": 168.90217826804454, "total_mad_ns": 126.0, "total_cv": 0.1031746574556561, "total_min_ns": 1277.0, "total_max_ns": 1966.0, "total_p5_ns": 1370.2, "total_p25_ns": 1512.75, "total_p50_ns": 1639.5, "total_p75_ns": 1755.25, "total_p95_ns": 1898.5, "total_p99_ns": 1959.21, "total_ci_low_ns": 1602.5704081632655, "total_ci_high_ns": 1669.9711734693876, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.432715527699838}, {"serializer": "nlohmann_json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 2760.224719101124, "avg_time_deser_ns": 7595.966292134832, "avg_time_total_ns": 10356.191011235955, "median_size_bytes": 658.0, "avg_ops_per_sec": 96560.59828512717, "min_ops_per_sec": 90834.77155054954, "max_ops_per_sec": 102019.99591920017, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 2760.224719101124, "ser_median_ns": 2749.0, "ser_std_ns": 129.56551105425294, "ser_mad_ns": 97.0, "ser_cv": 0.046940203874576696, "ser_min_ns": 2425.0, "ser_max_ns": 3030.0, "ser_p5_ns": 2573.8, "ser_p25_ns": 2676.0, "ser_p50_ns": 2749.0, "ser_p75_ns": 2852.0, "ser_p95_ns": 2969.6, "ser_p99_ns": 3000.96, "ser_ci_low_ns": 2732.4676966292136, "ser_ci_high_ns": 2786.441292134831, "deser_mean_ns": 7595.966292134832, "deser_median_ns": 7587.0, "deser_std_ns": 165.89163011368996, "deser_mad_ns": 114.0, "deser_cv": 0.021839437371577175, "deser_min_ns": 7233.0, "deser_max_ns": 8021.0, "deser_p5_ns": 7332.4, "deser_p25_ns": 7486.0, "deser_p50_ns": 7587.0, "deser_p75_ns": 7705.0, "deser_p95_ns": 7868.0, "deser_p99_ns": 7935.64, "deser_ci_low_ns": 7562.88286516854, "deser_ci_high_ns": 7628.876123595506, "total_mean_ns": 10356.191011235955, "total_median_ns": 10345.0, "total_std_ns": 256.53822488544444, "total_mad_ns": 178.0, "total_cv": 0.024771484477943015, "total_min_ns": 9802.0, "total_max_ns": 11009.0, "total_p5_ns": 9897.4, "total_p25_ns": 10183.0, "total_p50_ns": 10345.0, "total_p75_ns": 10535.0, "total_p95_ns": 10742.199999999999, "total_p99_ns": 10842.68, "total_ci_low_ns": 10304.262921348314, "total_ci_high_ns": 10409.02415730337, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 52.00181744170884}, {"serializer": "avro_c", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "avro-c", "avg_time_ser_ns": 1643.0537634408602, "avg_time_deser_ns": 1718.9569892473119, "avg_time_total_ns": 3362.010752688172, "median_size_bytes": 284.0, "avg_ops_per_sec": 297441.04750421376, "min_ops_per_sec": 250752.25677031092, "max_ops_per_sec": 380083.61839604715, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1643.0537634408602, "ser_median_ns": 1658.0, "ser_std_ns": 163.40589404458046, "ser_mad_ns": 101.0, "ser_cv": 0.09945255455450108, "ser_min_ns": 1253.0, "ser_max_ns": 1969.0, "ser_p5_ns": 1315.2, "ser_p25_ns": 1558.0, "ser_p50_ns": 1658.0, "ser_p75_ns": 1759.0, "ser_p95_ns": 1884.6, "ser_p99_ns": 1932.1999999999998, "ser_ci_low_ns": 1610.5306451612903, "ser_ci_high_ns": 1676.2067204301075, "deser_mean_ns": 1718.9569892473119, "deser_median_ns": 1736.0, "deser_std_ns": 135.85645509447403, "deser_mad_ns": 90.0, "deser_cv": 0.07903423758959913, "deser_min_ns": 1362.0, "deser_max_ns": 2019.0, "deser_p5_ns": 1466.6, "deser_p25_ns": 1627.0, "deser_p50_ns": 1736.0, "deser_p75_ns": 1819.0, "deser_p95_ns": 1900.1999999999998, "deser_p99_ns": 1942.6399999999999, "deser_ci_low_ns": 1692.8244623655914, "deser_ci_high_ns": 1746.0120967741934, "total_mean_ns": 3362.010752688172, "total_median_ns": 3397.0, "total_std_ns": 290.79917972133484, "total_mad_ns": 200.0, "total_cv": 0.08649561262967995, "total_min_ns": 2631.0, "total_max_ns": 3988.0, "total_p5_ns": 2780.4, "total_p25_ns": 3181.0, "total_p50_ns": 3397.0, "total_p75_ns": 3597.0, "total_p95_ns": 3756.4, "total_p99_ns": 3792.0399999999995, "total_ci_low_ns": 3302.856182795699, "total_ci_high_ns": 3418.8548387096776, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.71064118130265}, {"serializer": "custom_binary", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "harness", "avg_time_ser_ns": 908.5531914893617, "avg_time_deser_ns": 401.36170212765956, "avg_time_total_ns": 1309.9148936170213, "median_size_bytes": 299.0, "avg_ops_per_sec": 763408.3747522983, "min_ops_per_sec": 652315.7208088714, "max_ops_per_sec": 888099.4671403198, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 908.5531914893617, "ser_median_ns": 905.0, "ser_std_ns": 78.91885270507623, "ser_mad_ns": 55.0, "ser_cv": 0.08686211599312874, "ser_min_ns": 764.0, "ser_max_ns": 1104.0, "ser_p5_ns": 796.9, "ser_p25_ns": 844.25, "ser_p50_ns": 905.0, "ser_p75_ns": 952.5, "ser_p95_ns": 1055.1499999999999, "ser_p99_ns": 1104.0, "ser_ci_low_ns": 892.4675531914894, "ser_ci_high_ns": 924.8760638297872, "deser_mean_ns": 401.36170212765956, "deser_median_ns": 405.0, "deser_std_ns": 24.829678332670085, "deser_mad_ns": 16.5, "deser_cv": 0.061863596354722966, "deser_min_ns": 343.0, "deser_max_ns": 460.0, "deser_p5_ns": 357.65, "deser_p25_ns": 386.25, "deser_p50_ns": 405.0, "deser_p75_ns": 417.0, "deser_p95_ns": 436.4, "deser_p99_ns": 452.55999999999995, "deser_ci_low_ns": 396.5845744680851, "deser_ci_high_ns": 406.47925531914893, "total_mean_ns": 1309.9148936170213, "total_median_ns": 1311.0, "total_std_ns": 87.0657469497853, "total_mad_ns": 54.0, "total_cv": 0.06646672037553046, "total_min_ns": 1126.0, "total_max_ns": 1533.0, "total_p5_ns": 1168.5, "total_p25_ns": 1246.75, "total_p50_ns": 1311.0, "total_p75_ns": 1357.75, "total_p95_ns": 1473.5, "total_p99_ns": 1506.9599999999998, "total_ci_low_ns": 1292.6343085106382, "total_ci_high_ns": 1327.7896276595743, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.232271599288694}, {"serializer": "rapidjson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "1.1.0", "avg_time_ser_ns": 2211.840909090909, "avg_time_deser_ns": 11383.727272727272, "avg_time_total_ns": 13595.568181818182, "median_size_bytes": 658.0, "avg_ops_per_sec": 73553.38053008584, "min_ops_per_sec": 69536.19358876295, "max_ops_per_sec": 78777.3751378604, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 2211.840909090909, "ser_median_ns": 2223.5, "ser_std_ns": 143.144239317336, "ser_mad_ns": 105.5, "ser_cv": 0.06471724016361098, "ser_min_ns": 1816.0, "ser_max_ns": 2618.0, "ser_p5_ns": 1971.65, "ser_p25_ns": 2115.0, "ser_p50_ns": 2223.5, "ser_p75_ns": 2308.75, "ser_p95_ns": 2423.95, "ser_p99_ns": 2496.1999999999994, "ser_ci_low_ns": 2181.1440340909094, "ser_ci_high_ns": 2240.977840909091, "deser_mean_ns": 11383.727272727272, "deser_median_ns": 11381.0, "deser_std_ns": 322.39287545508915, "deser_mad_ns": 207.5, "deser_cv": 0.02832050239181911, "deser_min_ns": 10671.0, "deser_max_ns": 12176.0, "deser_p5_ns": 10853.15, "deser_p25_ns": 11138.25, "deser_p50_ns": 11381.0, "deser_p75_ns": 11584.25, "deser_p95_ns": 11883.6, "deser_p99_ns": 12160.34, "deser_ci_low_ns": 11315.359943181818, "deser_ci_high_ns": 11448.33153409091, "total_mean_ns": 13595.568181818182, "total_median_ns": 13629.5, "total_std_ns": 380.1836155132178, "total_mad_ns": 275.5, "total_cv": 0.02796379014314755, "total_min_ns": 12694.0, "total_max_ns": 14381.0, "total_p5_ns": 12909.05, "total_p25_ns": 13353.0, "total_p50_ns": 13629.5, "total_p75_ns": 13876.25, "total_p95_ns": 14149.4, "total_p99_ns": 14288.779999999999, "total_ci_low_ns": 13516.849999999999, "total_ci_high_ns": 13673.772727272728, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 47.80325195466776}, {"serializer": "jsoncons_bson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 2793.391304347826, "avg_time_deser_ns": 13476.880434782608, "avg_time_total_ns": 16270.271739130434, "median_size_bytes": 459.0, "avg_ops_per_sec": 61461.78847123822, "min_ops_per_sec": 53893.82915656157, "max_ops_per_sec": 67930.16778751444, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 2793.391304347826, "ser_median_ns": 2767.0, "ser_std_ns": 205.65056015140752, "ser_mad_ns": 149.5, "ser_cv": 0.07362039103913542, "ser_min_ns": 2406.0, "ser_max_ns": 3354.0, "ser_p5_ns": 2484.95, "ser_p25_ns": 2640.5, "ser_p50_ns": 2767.0, "ser_p75_ns": 2946.75, "ser_p95_ns": 3145.4, "ser_p99_ns": 3303.04, "ser_ci_low_ns": 2751.9861413043477, "ser_ci_high_ns": 2837.3828804347827, "deser_mean_ns": 13476.880434782608, "deser_median_ns": 13286.0, "deser_std_ns": 748.3553225866474, "deser_mad_ns": 391.0, "deser_cv": 0.055528824063409365, "deser_min_ns": 12290.0, "deser_max_ns": 15550.0, "deser_p5_ns": 12477.2, "deser_p25_ns": 12970.0, "deser_p50_ns": 13286.0, "deser_p75_ns": 13889.25, "deser_p95_ns": 14999.1, "deser_p99_ns": 15432.61, "deser_ci_low_ns": 13331.286141304348, "deser_ci_high_ns": 13631.53125, "total_mean_ns": 16270.271739130434, "total_median_ns": 16073.0, "total_std_ns": 825.8063139765496, "total_mad_ns": 432.5, "total_cv": 0.05075553298783963, "total_min_ns": 14721.0, "total_max_ns": 18555.0, "total_p5_ns": 15211.8, "total_p25_ns": 15704.0, "total_p50_ns": 16073.0, "total_p75_ns": 16705.5, "total_p95_ns": 17980.5, "total_p99_ns": 18255.61, "total_ci_low_ns": 16104.136413043478, "total_ci_high_ns": 16442.21875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.591888718189836}, {"serializer": "cereal", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "1.3.2", "avg_time_ser_ns": 900.8850574712644, "avg_time_deser_ns": 813.0344827586207, "avg_time_total_ns": 1713.9195402298851, "median_size_bytes": 319.0, "avg_ops_per_sec": 583457.9608479589, "min_ops_per_sec": 534759.3582887701, "max_ops_per_sec": 699790.0629811056, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 900.8850574712644, "ser_median_ns": 899.0, "ser_std_ns": 64.89695325334175, "ser_mad_ns": 38.0, "ser_cv": 0.07203688496677255, "ser_min_ns": 739.0, "ser_max_ns": 1025.0, "ser_p5_ns": 780.2, "ser_p25_ns": 862.5, "ser_p50_ns": 899.0, "ser_p75_ns": 942.5, "ser_p95_ns": 995.1, "ser_p99_ns": 1018.98, "ser_ci_low_ns": 887.4120689655173, "ser_ci_high_ns": 914.2301724137931, "deser_mean_ns": 813.0344827586207, "deser_median_ns": 818.0, "deser_std_ns": 48.17348693653699, "deser_mad_ns": 30.0, "deser_cv": 0.059251468367103766, "deser_min_ns": 688.0, "deser_max_ns": 936.0, "deser_p5_ns": 729.7, "deser_p25_ns": 788.0, "deser_p50_ns": 818.0, "deser_p75_ns": 842.5, "deser_p95_ns": 888.4000000000001, "deser_p99_ns": 925.6800000000001, "deser_ci_low_ns": 802.6666666666666, "deser_ci_high_ns": 823.0123563218391, "total_mean_ns": 1713.9195402298851, "total_median_ns": 1731.0, "total_std_ns": 101.47954523997302, "total_mad_ns": 70.0, "total_cv": 0.059209048533492854, "total_min_ns": 1429.0, "total_max_ns": 1870.0, "total_p5_ns": 1520.7, "total_p25_ns": 1655.5, "total_p50_ns": 1731.0, "total_p75_ns": 1790.5, "total_p95_ns": 1857.1, "total_p99_ns": 1870.0, "total_ci_low_ns": 1692.344540229885, "total_ci_high_ns": 1734.73908045977, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.21810954375988}, {"serializer": "thrift", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "TBinaryProtocol", "avg_time_ser_ns": 786.2808988764045, "avg_time_deser_ns": 415.92134831460675, "avg_time_total_ns": 1202.2022471910113, "median_size_bytes": 314.0, "avg_ops_per_sec": 831806.7965157576, "min_ops_per_sec": 667111.40760507, "max_ops_per_sec": 1050420.168067227, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 786.2808988764045, "ser_median_ns": 758.0, "ser_std_ns": 109.64446559469602, "ser_mad_ns": 76.0, "ser_cv": 0.13944694033821498, "ser_min_ns": 599.0, "ser_max_ns": 1037.0, "ser_p5_ns": 639.0, "ser_p25_ns": 700.0, "ser_p50_ns": 758.0, "ser_p75_ns": 849.0, "ser_p95_ns": 987.0, "ser_p99_ns": 1019.4000000000001, "ser_ci_low_ns": 764.8834269662922, "ser_ci_high_ns": 808.3626404494381, "deser_mean_ns": 415.92134831460675, "deser_median_ns": 417.0, "deser_std_ns": 24.098389572325594, "deser_mad_ns": 15.0, "deser_cv": 0.05793977556087684, "deser_min_ns": 353.0, "deser_max_ns": 475.0, "deser_p5_ns": 373.2, "deser_p25_ns": 401.0, "deser_p50_ns": 417.0, "deser_p75_ns": 430.0, "deser_p95_ns": 455.2, "deser_p99_ns": 468.84000000000003, "deser_ci_low_ns": 411.1002808988764, "deser_ci_high_ns": 420.86544943820223, "total_mean_ns": 1202.2022471910113, "total_median_ns": 1186.0, "total_std_ns": 116.80200610972564, "total_mad_ns": 75.0, "total_cv": 0.09715670252874482, "total_min_ns": 952.0, "total_max_ns": 1499.0, "total_p5_ns": 1035.4, "total_p25_ns": 1117.0, "total_p50_ns": 1186.0, "total_p75_ns": 1284.0, "total_p95_ns": 1401.8, "total_p99_ns": 1451.4800000000002, "total_ci_low_ns": 1177.8087078651686, "total_ci_high_ns": 1226.2247191011236, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.609327838991661}, {"serializer": "simdjson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.10.1", "avg_time_ser_ns": 165.8735632183908, "avg_time_deser_ns": 10434.977011494253, "avg_time_total_ns": 10600.850574712644, "median_size_bytes": 658.0, "avg_ops_per_sec": 94332.05316424403, "min_ops_per_sec": 87161.16098666434, "max_ops_per_sec": 100969.30533117932, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 165.8735632183908, "ser_median_ns": 166.0, "ser_std_ns": 5.713721952562053, "ser_mad_ns": 4.0, "ser_cv": 0.03444624834542988, "ser_min_ns": 154.0, "ser_max_ns": 179.0, "ser_p5_ns": 157.0, "ser_p25_ns": 161.0, "ser_p50_ns": 166.0, "ser_p75_ns": 170.0, "ser_p95_ns": 174.7, "ser_p99_ns": 178.14, "ser_ci_low_ns": 164.68965517241378, "ser_ci_high_ns": 167.01149425287358, "deser_mean_ns": 10434.977011494253, "deser_median_ns": 10357.0, "deser_std_ns": 342.5532033711, "deser_mad_ns": 188.0, "deser_cv": 0.03282740373972779, "deser_min_ns": 9736.0, "deser_max_ns": 11298.0, "deser_p5_ns": 9924.1, "deser_p25_ns": 10201.5, "deser_p50_ns": 10357.0, "deser_p75_ns": 10620.5, "deser_p95_ns": 11074.9, "deser_p99_ns": 11212.86, "deser_ci_low_ns": 10361.83591954023, "deser_ci_high_ns": 10510.663218390804, "total_mean_ns": 10600.850574712644, "total_median_ns": 10527.0, "total_std_ns": 345.01403843145596, "total_mad_ns": 193.0, "total_cv": 0.032545882615726635, "total_min_ns": 9904.0, "total_max_ns": 11473.0, "total_p5_ns": 10084.4, "total_p25_ns": 10365.5, "total_p50_ns": 10527.0, "total_p75_ns": 10784.0, "total_p95_ns": 11242.8, "total_p99_ns": 11390.44, "total_ci_low_ns": 10530.25632183908, "total_ci_high_ns": 10675.641954022989, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 40.44822862700823}, {"serializer": "jsoncons_msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 1724.375, "avg_time_deser_ns": 13345.15625, "avg_time_total_ns": 15069.53125, "median_size_bytes": 342.0, "avg_ops_per_sec": 66359.06475193115, "min_ops_per_sec": 57726.721699474685, "max_ops_per_sec": 74827.89583956898, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 1724.375, "ser_median_ns": 1714.5, "ser_std_ns": 181.34702121971333, "ser_mad_ns": 114.5, "ser_cv": 0.1051668118708015, "ser_min_ns": 1358.0, "ser_max_ns": 2172.0, "ser_p5_ns": 1468.5, "ser_p25_ns": 1601.0, "ser_p50_ns": 1714.5, "ser_p75_ns": 1828.0, "ser_p95_ns": 1999.25, "ser_p99_ns": 2124.5, "ser_ci_low_ns": 1686.3942708333332, "ser_ci_high_ns": 1759.2085937499999, "deser_mean_ns": 13345.15625, "deser_median_ns": 13261.5, "deser_std_ns": 826.137522999588, "deser_mad_ns": 585.0, "deser_cv": 0.06190542152697448, "deser_min_ns": 12006.0, "deser_max_ns": 15404.0, "deser_p5_ns": 12207.25, "deser_p25_ns": 12712.5, "deser_p50_ns": 13261.5, "deser_p75_ns": 13991.25, "deser_p95_ns": 14884.25, "deser_p99_ns": 15168.4, "deser_ci_low_ns": 13180.966666666665, "deser_ci_high_ns": 13520.034635416667, "total_mean_ns": 15069.53125, "total_median_ns": 14939.0, "total_std_ns": 905.2811247356434, "total_mad_ns": 641.0, "total_cv": 0.06007360877503362, "total_min_ns": 13364.0, "total_max_ns": 17323.0, "total_p5_ns": 13813.75, "total_p25_ns": 14383.75, "total_p50_ns": 14939.0, "total_p75_ns": 15630.75, "total_p95_ns": 16806.75, "total_p99_ns": 17046.55, "total_ci_low_ns": 14897.532031249999, "total_ci_high_ns": 15244.32890625, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.16833232023218}, {"serializer": "zpp_bits", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "4.4.25", "avg_time_ser_ns": 384.2903225806452, "avg_time_deser_ns": 286.6774193548387, "avg_time_total_ns": 670.9677419354839, "median_size_bytes": 299.0, "avg_ops_per_sec": 1490384.6153846153, "min_ops_per_sec": 1283697.0474967908, "max_ops_per_sec": 2044989.7750511249, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 384.2903225806452, "ser_median_ns": 386.0, "ser_std_ns": 40.10978972042298, "ser_mad_ns": 28.0, "ser_cv": 0.10437366585520963, "ser_min_ns": 284.0, "ser_max_ns": 474.0, "ser_p5_ns": 320.8, "ser_p25_ns": 357.0, "ser_p50_ns": 386.0, "ser_p75_ns": 411.0, "ser_p95_ns": 443.19999999999993, "ser_p99_ns": 466.64, "ser_ci_low_ns": 376.3755376344086, "ser_ci_high_ns": 392.1626344086022, "deser_mean_ns": 286.6774193548387, "deser_median_ns": 292.0, "deser_std_ns": 34.072544503163485, "deser_mad_ns": 19.0, "deser_cv": 0.11885325527152785, "deser_min_ns": 203.0, "deser_max_ns": 357.0, "deser_p5_ns": 222.4, "deser_p25_ns": 264.0, "deser_p50_ns": 292.0, "deser_p75_ns": 307.0, "deser_p95_ns": 342.0, "deser_p99_ns": 356.08, "deser_ci_low_ns": 279.7094086021505, "deser_ci_high_ns": 293.9034946236559, "total_mean_ns": 670.9677419354839, "total_median_ns": 682.0, "total_std_ns": 65.97454245733287, "total_mad_ns": 51.0, "total_cv": 0.09832744308544802, "total_min_ns": 489.0, "total_max_ns": 779.0, "total_p5_ns": 565.4, "total_p25_ns": 623.0, "total_p50_ns": 682.0, "total_p75_ns": 721.0, "total_p95_ns": 767.5999999999999, "total_p99_ns": 779.0, "total_ci_low_ns": 656.4034946236559, "total_ci_high_ns": 683.947311827957, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "capnproto", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "1.0.x", "avg_time_ser_ns": 577.6559139784946, "avg_time_deser_ns": 546.5483870967741, "avg_time_total_ns": 1124.2043010752689, "median_size_bytes": 344.0, "avg_ops_per_sec": 889518.0342607914, "min_ops_per_sec": 733675.7153338224, "max_ops_per_sec": 1165501.1655011654, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 577.6559139784946, "ser_median_ns": 578.0, "ser_std_ns": 78.89680858477158, "ser_mad_ns": 56.0, "ser_cv": 0.13658097610632064, "ser_min_ns": 443.0, "ser_max_ns": 770.0, "ser_p5_ns": 463.6, "ser_p25_ns": 509.0, "ser_p50_ns": 578.0, "ser_p75_ns": 621.0, "ser_p95_ns": 724.4, "ser_p99_ns": 756.1999999999999, "ser_ci_low_ns": 561.4064516129032, "ser_ci_high_ns": 593.7233870967742, "deser_mean_ns": 546.5483870967741, "deser_median_ns": 535.0, "deser_std_ns": 60.51401492881669, "deser_mad_ns": 44.0, "deser_cv": 0.11072032478270186, "deser_min_ns": 415.0, "deser_max_ns": 730.0, "deser_p5_ns": 460.2, "deser_p25_ns": 504.0, "deser_p50_ns": 535.0, "deser_p75_ns": 595.0, "deser_p95_ns": 637.8, "deser_p99_ns": 675.7199999999999, "deser_ci_low_ns": 534.5911290322581, "deser_ci_high_ns": 558.5594086021505, "total_mean_ns": 1124.2043010752689, "total_median_ns": 1119.0, "total_std_ns": 104.13082899178833, "total_mad_ns": 64.0, "total_cv": 0.09262625031072218, "total_min_ns": 858.0, "total_max_ns": 1363.0, "total_p5_ns": 951.0, "total_p25_ns": 1064.0, "total_p50_ns": 1119.0, "total_p75_ns": 1188.0, "total_p95_ns": 1299.8, "total_p99_ns": 1342.76, "total_ci_low_ns": 1102.6559139784947, "total_ci_high_ns": 1145.4145161290323, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.1784631690332485}, {"serializer": "jsoncons_cbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 1669.8172043010752, "avg_time_deser_ns": 13708.247311827958, "avg_time_total_ns": 15378.064516129032, "median_size_bytes": 341.0, "avg_ops_per_sec": 65027.689209598924, "min_ops_per_sec": 57428.358123241254, "max_ops_per_sec": 73340.66740007335, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1669.8172043010752, "ser_median_ns": 1673.0, "ser_std_ns": 140.33275255593472, "ser_mad_ns": 89.0, "ser_cv": 0.08404078733556522, "ser_min_ns": 1419.0, "ser_max_ns": 2002.0, "ser_p5_ns": 1444.2, "ser_p25_ns": 1572.0, "ser_p50_ns": 1673.0, "ser_p75_ns": 1738.0, "ser_p95_ns": 1928.2, "ser_p99_ns": 1959.6799999999998, "ser_ci_low_ns": 1641.889247311828, "ser_ci_high_ns": 1697.723387096774, "deser_mean_ns": 13708.247311827958, "deser_median_ns": 13719.0, "deser_std_ns": 787.0483336342126, "deser_mad_ns": 562.0, "deser_cv": 0.057414220485730486, "deser_min_ns": 11883.0, "deser_max_ns": 15522.0, "deser_p5_ns": 12533.8, "deser_p25_ns": 13103.0, "deser_p50_ns": 13719.0, "deser_p75_ns": 14182.0, "deser_p95_ns": 15097.8, "deser_p99_ns": 15419.88, "deser_ci_low_ns": 13554.358333333334, "deser_ci_high_ns": 13862.504838709678, "total_mean_ns": 15378.064516129032, "total_median_ns": 15354.0, "total_std_ns": 829.1889411589209, "total_mad_ns": 531.0, "total_cv": 0.05392024076171872, "total_min_ns": 13635.0, "total_max_ns": 17413.0, "total_p5_ns": 14144.6, "total_p25_ns": 14747.0, "total_p50_ns": 15354.0, "total_p75_ns": 15861.0, "total_p95_ns": 16919.0, "total_p99_ns": 17160.0, "total_ci_low_ns": 15219.695967741935, "total_ci_high_ns": 15543.723387096774, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.902436793483826}, {"serializer": "arduinojson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "7.2.1", "avg_time_ser_ns": 1837.4942528735633, "avg_time_deser_ns": 9044.655172413793, "avg_time_total_ns": 10882.149425287356, "median_size_bytes": 455.0, "avg_ops_per_sec": 91893.61043657915, "min_ops_per_sec": 83479.42232239753, "max_ops_per_sec": 99423.34460131239, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 1837.4942528735633, "ser_median_ns": 1842.0, "ser_std_ns": 62.37170526568329, "ser_mad_ns": 44.0, "ser_cv": 0.03394389134449992, "ser_min_ns": 1663.0, "ser_max_ns": 2017.0, "ser_p5_ns": 1730.6, "ser_p25_ns": 1797.5, "ser_p50_ns": 1842.0, "ser_p75_ns": 1882.0, "ser_p95_ns": 1934.4, "ser_p99_ns": 1959.38, "ser_ci_low_ns": 1824.8586206896553, "ser_ci_high_ns": 1850.1382183908047, "deser_mean_ns": 9044.655172413793, "deser_median_ns": 8972.0, "deser_std_ns": 373.8245710809621, "deser_mad_ns": 208.0, "deser_cv": 0.041330992056073886, "deser_min_ns": 8395.0, "deser_max_ns": 10162.0, "deser_p5_ns": 8547.6, "deser_p25_ns": 8819.5, "deser_p50_ns": 8972.0, "deser_p75_ns": 9203.5, "deser_p95_ns": 9786.300000000001, "deser_p99_ns": 9993.44, "deser_ci_low_ns": 8967.053735632184, "deser_ci_high_ns": 9121.197701149425, "total_mean_ns": 10882.149425287356, "total_median_ns": 10800.0, "total_std_ns": 395.5507649405001, "total_mad_ns": 217.0, "total_cv": 0.036348587901333204, "total_min_ns": 10058.0, "total_max_ns": 11979.0, "total_p5_ns": 10329.2, "total_p25_ns": 10633.0, "total_p50_ns": 10800.0, "total_p75_ns": 11115.0, "total_p95_ns": 11591.7, "total_p99_ns": 11861.18, "total_ci_low_ns": 10798.233045977011, "total_ci_high_ns": 10962.92040229885, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 36.44434333208256}, {"serializer": "flexbuffers", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "flatbuffers-flex", "avg_time_ser_ns": 1889.6236559139784, "avg_time_deser_ns": 2233.1075268817203, "avg_time_total_ns": 4122.731182795699, "median_size_bytes": 423.0, "avg_ops_per_sec": 242557.65308517683, "min_ops_per_sec": 211640.21164021164, "max_ops_per_sec": 278940.0278940028, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1889.6236559139784, "ser_median_ns": 1885.0, "ser_std_ns": 143.7116613508735, "ser_mad_ns": 89.0, "ser_cv": 0.07605306003716525, "ser_min_ns": 1550.0, "ser_max_ns": 2247.0, "ser_p5_ns": 1672.0, "ser_p25_ns": 1806.0, "ser_p50_ns": 1885.0, "ser_p75_ns": 1981.0, "ser_p95_ns": 2135.4, "ser_p99_ns": 2244.24, "ser_ci_low_ns": 1860.3975806451615, "ser_ci_high_ns": 1918.1841397849462, "deser_mean_ns": 2233.1075268817203, "deser_median_ns": 2244.0, "deser_std_ns": 104.2152311289093, "deser_mad_ns": 67.0, "deser_cv": 0.04666825483071743, "deser_min_ns": 1959.0, "deser_max_ns": 2481.0, "deser_p5_ns": 2059.6, "deser_p25_ns": 2164.0, "deser_p50_ns": 2244.0, "deser_p75_ns": 2300.0, "deser_p95_ns": 2401.3999999999996, "deser_p99_ns": 2466.2799999999997, "deser_ci_low_ns": 2211.8153225806454, "deser_ci_high_ns": 2254.108333333333, "total_mean_ns": 4122.731182795699, "total_median_ns": 4124.0, "total_std_ns": 226.73294671432228, "total_mad_ns": 147.0, "total_cv": 0.05499581143211247, "total_min_ns": 3585.0, "total_max_ns": 4725.0, "total_p5_ns": 3721.6, "total_p25_ns": 3977.0, "total_p50_ns": 4124.0, "total_p75_ns": 4266.0, "total_p95_ns": 4482.8, "total_p99_ns": 4580.5599999999995, "total_ci_low_ns": 4074.1567204301073, "total_ci_high_ns": 4168.659946236559, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.58811350892273}, {"serializer": "flatbuffers", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "flatbuffers", "avg_time_ser_ns": 294.3645833333333, "avg_time_deser_ns": 590.65625, "avg_time_total_ns": 885.0208333333334, "median_size_bytes": 340.0, "avg_ops_per_sec": 1129916.904027683, "min_ops_per_sec": 931966.4492078285, "max_ops_per_sec": 1508295.6259426847, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 294.3645833333333, "ser_median_ns": 296.5, "ser_std_ns": 64.70664487014358, "ser_mad_ns": 50.0, "ser_cv": 0.2198180369982584, "ser_min_ns": 192.0, "ser_max_ns": 474.0, "ser_p5_ns": 209.0, "ser_p25_ns": 240.25, "ser_p50_ns": 296.5, "ser_p75_ns": 340.5, "ser_p95_ns": 405.5, "ser_p99_ns": 467.34999999999997, "ser_ci_low_ns": 281.9479166666667, "ser_ci_high_ns": 307.234375, "deser_mean_ns": 590.65625, "deser_median_ns": 591.5, "deser_std_ns": 52.88514429253366, "deser_mad_ns": 38.0, "deser_cv": 0.08953624767795763, "deser_min_ns": 448.0, "deser_max_ns": 722.0, "deser_p5_ns": 512.75, "deser_p25_ns": 551.75, "deser_p50_ns": 591.5, "deser_p75_ns": 625.25, "deser_p95_ns": 676.75, "deser_p99_ns": 713.4499999999999, "deser_ci_low_ns": 579.7596354166666, "deser_ci_high_ns": 601.0080729166666, "total_mean_ns": 885.0208333333334, "total_median_ns": 884.0, "total_std_ns": 90.56709977361265, "total_mad_ns": 59.5, "total_cv": 0.10233329698296667, "total_min_ns": 663.0, "total_max_ns": 1073.0, "total_p5_ns": 742.5, "total_p25_ns": 824.75, "total_p50_ns": 884.0, "total_p75_ns": 943.75, "total_p95_ns": 1051.5, "total_p99_ns": 1069.2, "total_ci_low_ns": 866.64453125, "total_ci_high_ns": 903.7723958333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 0.953405017921147, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.6841959407329274}, {"serializer": "yas", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "7.x", "avg_time_ser_ns": 507.84615384615387, "avg_time_deser_ns": 376.04395604395603, "avg_time_total_ns": 883.8901098901099, "median_size_bytes": 326.0, "avg_ops_per_sec": 1131362.3592013328, "min_ops_per_sec": 896860.9865470852, "max_ops_per_sec": 1499250.3748125937, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 507.84615384615387, "ser_median_ns": 502.0, "ser_std_ns": 76.97502092337388, "ser_mad_ns": 51.0, "ser_cv": 0.15157153468704337, "ser_min_ns": 347.0, "ser_max_ns": 708.0, "ser_p5_ns": 390.0, "ser_p25_ns": 455.0, "ser_p50_ns": 502.0, "ser_p75_ns": 562.5, "ser_p95_ns": 634.0, "ser_p99_ns": 669.2999999999997, "ser_ci_low_ns": 492.06565934065935, "ser_ci_high_ns": 523.5195054945054, "deser_mean_ns": 376.04395604395603, "deser_median_ns": 379.0, "deser_std_ns": 29.199662131954003, "deser_mad_ns": 17.0, "deser_cv": 0.07764959830531311, "deser_min_ns": 298.0, "deser_max_ns": 444.0, "deser_p5_ns": 320.5, "deser_p25_ns": 359.5, "deser_p50_ns": 379.0, "deser_p75_ns": 393.0, "deser_p95_ns": 415.0, "deser_p99_ns": 439.5, "deser_ci_low_ns": 370.35164835164835, "deser_ci_high_ns": 382.12225274725273, "total_mean_ns": 883.8901098901099, "total_median_ns": 871.0, "total_std_ns": 84.09603644371919, "total_mad_ns": 56.0, "total_cv": 0.0951430901904474, "total_min_ns": 667.0, "total_max_ns": 1115.0, "total_p5_ns": 766.0, "total_p25_ns": 818.0, "total_p50_ns": 871.0, "total_p75_ns": 935.5, "total_p95_ns": 1022.5, "total_p99_ns": 1073.5999999999997, "total_ci_low_ns": 866.6810439560439, "total_ci_high_ns": 900.8153846153846, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 0.9760132340777502, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.8092164411987164}, {"serializer": "msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "msgpack-cxx", "avg_time_ser_ns": 653.5531914893617, "avg_time_deser_ns": 888.5957446808511, "avg_time_total_ns": 1542.1489361702127, "median_size_bytes": 342.0, "avg_ops_per_sec": 648445.7995888578, "min_ops_per_sec": 550964.1873278237, "max_ops_per_sec": 796812.749003984, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 653.5531914893617, "ser_median_ns": 662.5, "ser_std_ns": 90.89254166041249, "ser_mad_ns": 73.0, "ser_cv": 0.13907443624180055, "ser_min_ns": 470.0, "ser_max_ns": 865.0, "ser_p5_ns": 528.15, "ser_p25_ns": 577.25, "ser_p50_ns": 662.5, "ser_p75_ns": 706.5, "ser_p95_ns": 818.75, "ser_p99_ns": 858.49, "ser_ci_low_ns": 636.1047872340426, "ser_ci_high_ns": 672.181914893617, "deser_mean_ns": 888.5957446808511, "deser_median_ns": 894.5, "deser_std_ns": 53.770383811592225, "deser_mad_ns": 36.0, "deser_cv": 0.06051163775368342, "deser_min_ns": 748.0, "deser_max_ns": 1005.0, "deser_p5_ns": 794.65, "deser_p25_ns": 853.75, "deser_p50_ns": 894.5, "deser_p75_ns": 928.0, "deser_p95_ns": 967.4499999999999, "deser_p99_ns": 981.7499999999998, "deser_ci_low_ns": 877.2119680851064, "deser_ci_high_ns": 899.5859042553192, "total_mean_ns": 1542.1489361702127, "total_median_ns": 1543.0, "total_std_ns": 121.00252885003441, "total_mad_ns": 83.5, "total_cv": 0.0784635815724344, "total_min_ns": 1255.0, "total_max_ns": 1815.0, "total_p5_ns": 1344.9, "total_p25_ns": 1465.0, "total_p50_ns": 1543.0, "total_p75_ns": 1626.75, "total_p95_ns": 1739.35, "total_p99_ns": 1802.9099999999999, "total_ci_low_ns": 1518.0742021276596, "total_ci_high_ns": 1566.1037234042553, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.89018660479132}, {"serializer": "cista", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "0.15", "avg_time_ser_ns": 335.680412371134, "avg_time_deser_ns": 860.9896907216495, "avg_time_total_ns": 1196.6701030927834, "median_size_bytes": 360.0, "avg_ops_per_sec": 835652.1963868812, "min_ops_per_sec": 691085.003455425, "max_ops_per_sec": 1062699.2561105208, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 335.680412371134, "ser_median_ns": 333.0, "ser_std_ns": 45.87291012309456, "ser_mad_ns": 33.0, "ser_cv": 0.1366564995528446, "ser_min_ns": 236.0, "ser_max_ns": 464.0, "ser_p5_ns": 259.0, "ser_p25_ns": 301.0, "ser_p50_ns": 333.0, "ser_p75_ns": 366.0, "ser_p95_ns": 404.0, "ser_p99_ns": 442.8799999999998, "ser_ci_low_ns": 327.2056701030928, "ser_ci_high_ns": 345.07268041237114, "deser_mean_ns": 860.9896907216495, "deser_median_ns": 867.0, "deser_std_ns": 62.21359290871798, "deser_mad_ns": 40.0, "deser_cv": 0.07225823210098237, "deser_min_ns": 705.0, "deser_max_ns": 1043.0, "deser_p5_ns": 764.8, "deser_p25_ns": 808.0, "deser_p50_ns": 867.0, "deser_p75_ns": 906.0, "deser_p95_ns": 951.5999999999999, "deser_p99_ns": 970.0399999999994, "deser_ci_low_ns": 848.4528350515465, "deser_ci_high_ns": 873.0829896907217, "total_mean_ns": 1196.6701030927834, "total_median_ns": 1200.0, "total_std_ns": 97.73430411595984, "total_mad_ns": 69.0, "total_cv": 0.08167188589684525, "total_min_ns": 941.0, "total_max_ns": 1447.0, "total_p5_ns": 1048.0, "total_p25_ns": 1131.0, "total_p50_ns": 1200.0, "total_p75_ns": 1265.0, "total_p95_ns": 1357.1999999999998, "total_p99_ns": 1383.6399999999994, "total_ci_low_ns": 1177.2051546391754, "total_ci_high_ns": 1215.3420103092783, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.254837371035224}, {"serializer": "yyjson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "0.10.0", "avg_time_ser_ns": 978.1111111111111, "avg_time_deser_ns": 9904.2, "avg_time_total_ns": 10882.31111111111, "median_size_bytes": 658.0, "avg_ops_per_sec": 91892.24511133257, "min_ops_per_sec": 84588.0561664693, "max_ops_per_sec": 99078.56930545923, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 978.1111111111111, "ser_median_ns": 970.5, "ser_std_ns": 51.80916678346125, "ser_mad_ns": 31.5, "ser_cv": 0.05296859037273103, "ser_min_ns": 841.0, "ser_max_ns": 1112.0, "ser_p5_ns": 903.9, "ser_p25_ns": 943.0, "ser_p50_ns": 970.5, "ser_p75_ns": 1013.5, "ser_p95_ns": 1067.3, "ser_p99_ns": 1100.43, "ser_ci_low_ns": 967.3325, "ser_ci_high_ns": 989.148611111111, "deser_mean_ns": 9904.2, "deser_median_ns": 9837.0, "deser_std_ns": 325.1889062054564, "deser_mad_ns": 207.0, "deser_cv": 0.032833434927147714, "deser_min_ns": 9178.0, "deser_max_ns": 10764.0, "deser_p5_ns": 9478.8, "deser_p25_ns": 9681.25, "deser_p50_ns": 9837.0, "deser_p75_ns": 10099.75, "deser_p95_ns": 10600.05, "deser_p99_ns": 10746.2, "deser_ci_low_ns": 9838.537777777778, "deser_ci_high_ns": 9969.829444444445, "total_mean_ns": 10882.31111111111, "total_median_ns": 10836.0, "total_std_ns": 347.6310081863874, "total_mad_ns": 221.0, "total_cv": 0.03194459381256317, "total_min_ns": 10093.0, "total_max_ns": 11822.0, "total_p5_ns": 10419.15, "total_p25_ns": 10623.75, "total_p50_ns": 10836.0, "total_p75_ns": 11071.0, "total_p95_ns": 11631.85, "total_p99_ns": 11699.18, "total_ci_low_ns": 10812.488888888889, "total_ci_high_ns": 10952.545555555555, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 40.96047195426612}, {"serializer": "nlohmann_ubjson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 1122.858695652174, "avg_time_deser_ns": 3474.2608695652175, "avg_time_total_ns": 4597.119565217391, "median_size_bytes": 353.0, "avg_ops_per_sec": 217527.5160485654, "min_ops_per_sec": 195694.71624266144, "max_ops_per_sec": 240153.69836695486, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 1122.858695652174, "ser_median_ns": 1133.5, "ser_std_ns": 79.40667084133521, "ser_mad_ns": 52.0, "ser_cv": 0.07071831135013348, "ser_min_ns": 947.0, "ser_max_ns": 1315.0, "ser_p5_ns": 971.35, "ser_p25_ns": 1074.75, "ser_p50_ns": 1133.5, "ser_p75_ns": 1174.25, "ser_p95_ns": 1241.9, "ser_p99_ns": 1267.6800000000003, "ser_ci_low_ns": 1106.760054347826, "ser_ci_high_ns": 1138.4782608695652, "deser_mean_ns": 3474.2608695652175, "deser_median_ns": 3482.0, "deser_std_ns": 166.2444162205464, "deser_mad_ns": 112.5, "deser_cv": 0.04785029750553846, "deser_min_ns": 3163.0, "deser_max_ns": 3883.0, "deser_p5_ns": 3214.75, "deser_p25_ns": 3346.5, "deser_p50_ns": 3482.0, "deser_p75_ns": 3577.5, "deser_p95_ns": 3776.25, "deser_p99_ns": 3877.54, "deser_ci_low_ns": 3441.3361413043476, "deser_ci_high_ns": 3507.1972826086953, "total_mean_ns": 4597.119565217391, "total_median_ns": 4606.5, "total_std_ns": 221.31653242603366, "total_mad_ns": 134.5, "total_cv": 0.04814243555911688, "total_min_ns": 4164.0, "total_max_ns": 5110.0, "total_p5_ns": 4251.85, "total_p25_ns": 4444.75, "total_p50_ns": 4606.5, "total_p75_ns": 4718.0, "total_p95_ns": 5004.5, "total_p99_ns": 5062.68, "total_ci_low_ns": 4553.091576086957, "total_ci_high_ns": 4642.677445652173, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.998861512600797}, {"serializer": "nlohmann_msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 1126.5824175824175, "avg_time_deser_ns": 3282.4065934065934, "avg_time_total_ns": 4408.989010989011, "median_size_bytes": 342.0, "avg_ops_per_sec": 226809.36548210698, "min_ops_per_sec": 204290.09193054136, "max_ops_per_sec": 255232.26135783564, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 1126.5824175824175, "ser_median_ns": 1121.0, "ser_std_ns": 81.01166801202376, "ser_mad_ns": 56.0, "ser_cv": 0.07190922452515303, "ser_min_ns": 950.0, "ser_max_ns": 1336.0, "ser_p5_ns": 1004.5, "ser_p25_ns": 1071.5, "ser_p50_ns": 1121.0, "ser_p75_ns": 1183.5, "ser_p95_ns": 1268.0, "ser_p99_ns": 1325.1999999999998, "ser_ci_low_ns": 1110.0651098901099, "ser_ci_high_ns": 1143.9686813186813, "deser_mean_ns": 3282.4065934065934, "deser_median_ns": 3277.0, "deser_std_ns": 141.95507724644423, "deser_mad_ns": 86.0, "deser_cv": 0.04324725569696057, "deser_min_ns": 2968.0, "deser_max_ns": 3665.0, "deser_p5_ns": 3052.5, "deser_p25_ns": 3196.0, "deser_p50_ns": 3277.0, "deser_p75_ns": 3363.5, "deser_p95_ns": 3518.5, "deser_p99_ns": 3647.9, "deser_ci_low_ns": 3251.9425824175823, "deser_ci_high_ns": 3312.2434065934067, "total_mean_ns": 4408.989010989011, "total_median_ns": 4410.0, "total_std_ns": 202.372236485448, "total_mad_ns": 121.0, "total_cv": 0.04589991854845936, "total_min_ns": 3918.0, "total_max_ns": 4895.0, "total_p5_ns": 4126.0, "total_p25_ns": 4277.0, "total_p50_ns": 4410.0, "total_p75_ns": 4518.5, "total_p95_ns": 4789.0, "total_p99_ns": 4877.9, "total_ci_low_ns": 4368.051373626374, "total_ci_high_ns": 4450.351648351649, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.84356076980531}, {"serializer": "nlohmann_bson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 2194.295918367347, "avg_time_deser_ns": 3900.081632653061, "avg_time_total_ns": 6094.377551020408, "median_size_bytes": 459.0, "avg_ops_per_sec": 164085.66611245897, "min_ops_per_sec": 148367.9525222552, "max_ops_per_sec": 182548.37531945965, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 2194.295918367347, "ser_median_ns": 2198.5, "ser_std_ns": 118.6392964560263, "ser_mad_ns": 80.5, "ser_cv": 0.05406713627954938, "ser_min_ns": 1895.0, "ser_max_ns": 2514.0, "ser_p5_ns": 1967.55, "ser_p25_ns": 2124.0, "ser_p50_ns": 2198.5, "ser_p75_ns": 2282.75, "ser_p95_ns": 2364.5499999999997, "ser_p99_ns": 2426.7000000000003, "ser_ci_low_ns": 2170.1905612244896, "ser_ci_high_ns": 2217.084948979592, "deser_mean_ns": 3900.081632653061, "deser_median_ns": 3896.5, "deser_std_ns": 161.64398155379834, "deser_mad_ns": 113.5, "deser_cv": 0.041446307226097406, "deser_min_ns": 3475.0, "deser_max_ns": 4246.0, "deser_p5_ns": 3657.15, "deser_p25_ns": 3788.0, "deser_p50_ns": 3896.5, "deser_p75_ns": 4011.0, "deser_p95_ns": 4194.45, "deser_p99_ns": 4241.15, "deser_ci_low_ns": 3868.006887755102, "deser_ci_high_ns": 3932.903826530612, "total_mean_ns": 6094.377551020408, "total_median_ns": 6077.5, "total_std_ns": 233.44967957337133, "total_mad_ns": 173.0, "total_cv": 0.03830574617653674, "total_min_ns": 5478.0, "total_max_ns": 6740.0, "total_p5_ns": 5715.9, "total_p25_ns": 5946.0, "total_p50_ns": 6077.5, "total_p75_ns": 6276.0, "total_p95_ns": 6447.599999999999, "total_p99_ns": 6552.79, "total_ci_low_ns": 6050.358418367347, "total_ci_high_ns": 6140.225510204082, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 31.141490743612625}, {"serializer": "avro", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "binary-1.11", "avg_time_ser_ns": 726.6421052631579, "avg_time_deser_ns": 520.6210526315789, "avg_time_total_ns": 1247.2631578947369, "median_size_bytes": 284.0, "avg_ops_per_sec": 801755.4223985146, "min_ops_per_sec": 629722.9219143577, "max_ops_per_sec": 1067235.8591248665, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 726.6421052631579, "ser_median_ns": 719.0, "ser_std_ns": 97.1553828722456, "ser_mad_ns": 70.0, "ser_cv": 0.13370458740078128, "ser_min_ns": 524.0, "ser_max_ns": 946.0, "ser_p5_ns": 576.6, "ser_p25_ns": 658.0, "ser_p50_ns": 719.0, "ser_p75_ns": 802.0, "ser_p95_ns": 887.5, "ser_p99_ns": 933.78, "ser_ci_low_ns": 707.1873684210526, "ser_ci_high_ns": 745.9931578947369, "deser_mean_ns": 520.6210526315789, "deser_median_ns": 519.0, "deser_std_ns": 58.1218783554096, "deser_mad_ns": 35.0, "deser_cv": 0.11163950835568678, "deser_min_ns": 389.0, "deser_max_ns": 659.0, "deser_p5_ns": 433.7, "deser_p25_ns": 484.5, "deser_p50_ns": 519.0, "deser_p75_ns": 554.0, "deser_p95_ns": 613.4, "deser_p99_ns": 653.36, "deser_ci_low_ns": 509.3886842105263, "deser_ci_high_ns": 532.18, "total_mean_ns": 1247.2631578947369, "total_median_ns": 1243.0, "total_std_ns": 124.00928332840142, "total_mad_ns": 88.0, "total_cv": 0.09942511533629957, "total_min_ns": 937.0, "total_max_ns": 1588.0, "total_p5_ns": 1067.4, "total_p25_ns": 1162.0, "total_p50_ns": 1243.0, "total_p75_ns": 1334.0, "total_p95_ns": 1443.8, "total_p99_ns": 1545.7, "total_ci_low_ns": 1223.6526315789474, "total_ci_high_ns": 1271.737105263158, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.761403654656365}, {"serializer": "flatbuffers", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "flatbuffers", "avg_time_ser_ns": 334.0869565217391, "avg_time_deser_ns": 624.4891304347826, "avg_time_total_ns": 958.5760869565217, "median_size_bytes": 340.0, "avg_ops_per_sec": 1043214.0062819626, "min_ops_per_sec": 820344.5447087777, "max_ops_per_sec": 1303780.964797914, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 334.0869565217391, "ser_median_ns": 336.5, "ser_std_ns": 66.33011882367559, "ser_mad_ns": 40.5, "ser_cv": 0.1985414800812778, "ser_min_ns": 207.0, "ser_max_ns": 478.0, "ser_p5_ns": 234.55, "ser_p25_ns": 282.75, "ser_p50_ns": 336.5, "ser_p75_ns": 374.25, "ser_p95_ns": 450.70000000000005, "ser_p99_ns": 472.54, "ser_ci_low_ns": 320.3788043478261, "ser_ci_high_ns": 347.95815217391305, "deser_mean_ns": 624.4891304347826, "deser_median_ns": 637.5, "deser_std_ns": 53.829297665375826, "deser_mad_ns": 37.0, "deser_cv": 0.08619733321522942, "deser_min_ns": 508.0, "deser_max_ns": 741.0, "deser_p5_ns": 531.55, "deser_p25_ns": 582.75, "deser_p50_ns": 637.5, "deser_p75_ns": 671.0, "deser_p95_ns": 690.9, "deser_p99_ns": 726.44, "deser_ci_low_ns": 613.5217391304348, "deser_ci_high_ns": 635.5010869565217, "total_mean_ns": 958.5760869565217, "total_median_ns": 952.5, "total_std_ns": 86.09274754660943, "total_mad_ns": 61.0, "total_cv": 0.08981316007992003, "total_min_ns": 767.0, "total_max_ns": 1219.0, "total_p5_ns": 821.7, "total_p25_ns": 904.0, "total_p50_ns": 952.5, "total_p75_ns": 1022.25, "total_p95_ns": 1096.9, "total_p99_ns": 1143.4700000000003, "total_ci_low_ns": 941.3255434782609, "total_ci_high_ns": 976.1429347826087, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 0.995048309178744, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.5229760814025837}, {"serializer": "rapidjson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "1.1.0", "avg_time_ser_ns": 7437.298850574713, "avg_time_deser_ns": 22402.620689655174, "avg_time_total_ns": 29839.919540229886, "median_size_bytes": 658.0, "avg_ops_per_sec": 33512.154704432425, "min_ops_per_sec": 32184.351968073122, "max_ops_per_sec": 34745.14436607484, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 7437.298850574713, "ser_median_ns": 7450.0, "ser_std_ns": 158.36065071960863, "ser_mad_ns": 98.0, "ser_cv": 0.02129276420126259, "ser_min_ns": 7097.0, "ser_max_ns": 7842.0, "ser_p5_ns": 7137.5, "ser_p25_ns": 7327.5, "ser_p50_ns": 7450.0, "ser_p75_ns": 7535.0, "ser_p95_ns": 7653.7, "ser_p99_ns": 7751.7, "ser_ci_low_ns": 7405.689367816092, "ser_ci_high_ns": 7470.945402298851, "deser_mean_ns": 22402.620689655174, "deser_median_ns": 22319.0, "deser_std_ns": 417.0810317058559, "deser_mad_ns": 189.0, "deser_cv": 0.018617510758393137, "deser_min_ns": 21583.0, "deser_max_ns": 23577.0, "deser_p5_ns": 21802.3, "deser_p25_ns": 22156.5, "deser_p50_ns": 22319.0, "deser_p75_ns": 22638.5, "deser_p95_ns": 23248.6, "deser_p99_ns": 23458.32, "deser_ci_low_ns": 22314.620689655174, "deser_ci_high_ns": 22496.142241379308, "total_mean_ns": 29839.919540229886, "total_median_ns": 29788.0, "total_std_ns": 496.1935391907777, "total_mad_ns": 271.0, "total_cv": 0.016628514648701194, "total_min_ns": 28781.0, "total_max_ns": 31071.0, "total_p5_ns": 29055.6, "total_p25_ns": 29564.0, "total_p50_ns": 29788.0, "total_p75_ns": 30070.0, "total_p95_ns": 30741.0, "total_p99_ns": 31068.42, "total_ci_low_ns": 29739.950574712642, "total_ci_high_ns": 29946.649425287356, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 82.94247886843378}, {"serializer": "nlohmann_ubjson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 1582.2209302325582, "avg_time_deser_ns": 3828.8837209302324, "avg_time_total_ns": 5411.104651162791, "median_size_bytes": 353.0, "avg_ops_per_sec": 184805.14875740025, "min_ops_per_sec": 169262.01760324984, "max_ops_per_sec": 195236.2358453729, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 1582.2209302325582, "ser_median_ns": 1579.5, "ser_std_ns": 64.61950191203721, "ser_mad_ns": 36.5, "ser_cv": 0.04084101068144718, "ser_min_ns": 1414.0, "ser_max_ns": 1758.0, "ser_p5_ns": 1474.5, "ser_p25_ns": 1545.25, "ser_p50_ns": 1579.5, "ser_p75_ns": 1629.5, "ser_p95_ns": 1664.5, "ser_p99_ns": 1750.3500000000001, "ser_ci_low_ns": 1568.1276162790698, "ser_ci_high_ns": 1595.1398255813954, "deser_mean_ns": 3828.8837209302324, "deser_median_ns": 3818.5, "deser_std_ns": 141.04078831021988, "deser_mad_ns": 101.5, "deser_cv": 0.03683600719949621, "deser_min_ns": 3520.0, "deser_max_ns": 4165.0, "deser_p5_ns": 3608.5, "deser_p25_ns": 3733.5, "deser_p50_ns": 3818.5, "deser_p75_ns": 3923.5, "deser_p95_ns": 4075.75, "deser_p99_ns": 4152.25, "deser_ci_low_ns": 3798.996511627907, "deser_ci_high_ns": 3857.501162790698, "total_mean_ns": 5411.104651162791, "total_median_ns": 5387.0, "total_std_ns": 171.75571086111313, "total_mad_ns": 127.5, "total_cv": 0.03174133969562104, "total_min_ns": 5122.0, "total_max_ns": 5908.0, "total_p5_ns": 5171.25, "total_p25_ns": 5261.25, "total_p50_ns": 5387.0, "total_p75_ns": 5515.0, "total_p95_ns": 5713.25, "total_p99_ns": 5771.150000000001, "total_ci_low_ns": 5374.761337209302, "total_ci_high_ns": 5446.618604651163, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 37.33561866540649}, {"serializer": "nlohmann_bson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 2807.265306122449, "avg_time_deser_ns": 4528.0204081632655, "avg_time_total_ns": 7335.285714285715, "median_size_bytes": 459.0, "avg_ops_per_sec": 136327.3414220889, "min_ops_per_sec": 123548.30738818878, "max_ops_per_sec": 148765.24843796488, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 2807.265306122449, "ser_median_ns": 2823.0, "ser_std_ns": 142.1581485399169, "ser_mad_ns": 89.0, "ser_cv": 0.050639370717787145, "ser_min_ns": 2465.0, "ser_max_ns": 3088.0, "ser_p5_ns": 2512.6, "ser_p25_ns": 2730.0, "ser_p50_ns": 2823.0, "ser_p75_ns": 2907.75, "ser_p95_ns": 2996.3, "ser_p99_ns": 3020.1, "ser_ci_low_ns": 2778.375510204082, "ser_ci_high_ns": 2834.808163265306, "deser_mean_ns": 4528.0204081632655, "deser_median_ns": 4531.5, "deser_std_ns": 211.1528483170639, "deser_mad_ns": 168.0, "deser_cv": 0.0466324860056705, "deser_min_ns": 4131.0, "deser_max_ns": 5026.0, "deser_p5_ns": 4226.7, "deser_p25_ns": 4358.75, "deser_p50_ns": 4531.5, "deser_p75_ns": 4667.25, "deser_p95_ns": 4870.9, "deser_p99_ns": 5006.6, "deser_ci_low_ns": 4483.863520408164, "deser_ci_high_ns": 4566.339285714285, "total_mean_ns": 7335.285714285715, "total_median_ns": 7351.0, "total_std_ns": 282.18521372559695, "total_mad_ns": 205.0, "total_cv": 0.03846955997583459, "total_min_ns": 6722.0, "total_max_ns": 8094.0, "total_p5_ns": 6844.95, "total_p25_ns": 7150.25, "total_p50_ns": 7351.0, "total_p75_ns": 7559.5, "total_p95_ns": 7769.05, "total_p99_ns": 7823.37, "total_ci_low_ns": 7277.5844387755105, "total_ci_high_ns": 7391.830357142857, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 31.91956050068301}, {"serializer": "nlohmann_json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 3361.25, "avg_time_deser_ns": 9270.097826086956, "avg_time_total_ns": 12631.347826086956, "median_size_bytes": 658.0, "avg_ops_per_sec": 79168.11521370229, "min_ops_per_sec": 70506.944934076, "max_ops_per_sec": 84990.65102838688, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 3361.25, "ser_median_ns": 3354.0, "ser_std_ns": 142.80691836905498, "ser_mad_ns": 95.0, "ser_cv": 0.04248625314066344, "ser_min_ns": 3060.0, "ser_max_ns": 3706.0, "ser_p5_ns": 3138.35, "ser_p25_ns": 3277.0, "ser_p50_ns": 3354.0, "ser_p75_ns": 3456.5, "ser_p95_ns": 3580.9, "ser_p99_ns": 3699.63, "ser_ci_low_ns": 3332.7491847826086, "ser_ci_high_ns": 3390.76875, "deser_mean_ns": 9270.097826086956, "deser_median_ns": 9119.0, "deser_std_ns": 523.5010639447318, "deser_mad_ns": 227.5, "deser_cv": 0.05647201073450907, "deser_min_ns": 8575.0, "deser_max_ns": 10605.0, "deser_p5_ns": 8743.75, "deser_p25_ns": 8905.25, "deser_p50_ns": 9119.0, "deser_p75_ns": 9477.5, "deser_p95_ns": 10404.0, "deser_p99_ns": 10561.32, "deser_ci_low_ns": 9170.314945652173, "deser_ci_high_ns": 9382.7625, "total_mean_ns": 12631.347826086956, "total_median_ns": 12507.0, "total_std_ns": 551.0420584810223, "total_mad_ns": 253.5, "total_cv": 0.043624961173421246, "total_min_ns": 11766.0, "total_max_ns": 14183.0, "total_p5_ns": 11918.05, "total_p25_ns": 12279.75, "total_p50_ns": 12507.0, "total_p75_ns": 12889.0, "total_p95_ns": 13768.7, "total_p99_ns": 13984.62, "total_ci_low_ns": 12523.660054347827, "total_ci_high_ns": 12740.891847826088, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.180094934320078}, {"serializer": "nlohmann_cbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 1637.2631578947369, "avg_time_deser_ns": 3714.442105263158, "avg_time_total_ns": 5351.7052631578945, "median_size_bytes": 341.0, "avg_ops_per_sec": 186856.32911890358, "min_ops_per_sec": 172920.62943109113, "max_ops_per_sec": 205718.98786257973, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1637.2631578947369, "ser_median_ns": 1643.0, "ser_std_ns": 77.2911338569977, "ser_mad_ns": 59.0, "ser_cv": 0.04720752035755935, "ser_min_ns": 1434.0, "ser_max_ns": 1789.0, "ser_p5_ns": 1517.4, "ser_p25_ns": 1586.0, "ser_p50_ns": 1643.0, "ser_p75_ns": 1700.0, "ser_p95_ns": 1746.3, "ser_p99_ns": 1782.42, "ser_ci_low_ns": 1621.788157894737, "ser_ci_high_ns": 1652.127894736842, "deser_mean_ns": 3714.442105263158, "deser_median_ns": 3734.0, "deser_std_ns": 123.9379319427435, "deser_mad_ns": 91.0, "deser_cv": 0.03336649984855878, "deser_min_ns": 3409.0, "deser_max_ns": 4009.0, "deser_p5_ns": 3497.6, "deser_p25_ns": 3627.0, "deser_p50_ns": 3734.0, "deser_p75_ns": 3794.5, "deser_p95_ns": 3902.9, "deser_p99_ns": 3988.32, "deser_ci_low_ns": 3689.6184210526317, "deser_ci_high_ns": 3739.5186842105263, "total_mean_ns": 5351.7052631578945, "total_median_ns": 5356.0, "total_std_ns": 161.23577777848894, "total_mad_ns": 130.0, "total_cv": 0.030127925558319727, "total_min_ns": 4861.0, "total_max_ns": 5783.0, "total_p5_ns": 5117.8, "total_p25_ns": 5230.0, "total_p50_ns": 5356.0, "total_p75_ns": 5482.0, "total_p95_ns": 5571.1, "total_p99_ns": 5657.9800000000005, "total_ci_low_ns": 5318.51447368421, "total_ci_high_ns": 5384.832105263157, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 38.261930061325764}, {"serializer": "cereal", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "1.3.2", "avg_time_ser_ns": 409.9888888888889, "avg_time_deser_ns": 653.8444444444444, "avg_time_total_ns": 1063.8333333333333, "median_size_bytes": 319.0, "avg_ops_per_sec": 939996.8666771111, "min_ops_per_sec": 836120.4013377926, "max_ops_per_sec": 1091703.056768559, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 409.9888888888889, "ser_median_ns": 410.5, "ser_std_ns": 24.691123112351804, "ser_mad_ns": 16.0, "ser_cv": 0.060223883577106764, "ser_min_ns": 346.0, "ser_max_ns": 472.0, "ser_p5_ns": 369.8, "ser_p25_ns": 393.25, "ser_p50_ns": 410.5, "ser_p75_ns": 425.75, "ser_p95_ns": 446.55, "ser_p99_ns": 471.11, "ser_ci_low_ns": 405.02222222222224, "ser_ci_high_ns": 415.18916666666667, "deser_mean_ns": 653.8444444444444, "deser_median_ns": 659.0, "deser_std_ns": 41.89283039437578, "deser_mad_ns": 29.0, "deser_cv": 0.06407155516932025, "deser_min_ns": 526.0, "deser_max_ns": 727.0, "deser_p5_ns": 576.45, "deser_p25_ns": 628.5, "deser_p50_ns": 659.0, "deser_p75_ns": 687.25, "deser_p95_ns": 707.55, "deser_p99_ns": 726.11, "deser_ci_low_ns": 645.2772222222222, "deser_ci_high_ns": 662.0, "total_mean_ns": 1063.8333333333333, "total_median_ns": 1071.5, "total_std_ns": 58.66075578837117, "total_mad_ns": 37.0, "total_cv": 0.05514092663798011, "total_min_ns": 916.0, "total_max_ns": 1196.0, "total_p5_ns": 954.4, "total_p25_ns": 1030.5, "total_p50_ns": 1071.5, "total_p75_ns": 1105.5, "total_p95_ns": 1138.7, "total_p99_ns": 1174.6399999999999, "total_ci_low_ns": 1050.6425, "total_ci_high_ns": 1075.8027777777777, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.459307658558724}, {"serializer": "nlohmann_msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 1623.1354166666667, "avg_time_deser_ns": 3687.96875, "avg_time_total_ns": 5311.104166666667, "median_size_bytes": 342.0, "avg_ops_per_sec": 188284.76501669065, "min_ops_per_sec": 174703.00489168413, "max_ops_per_sec": 208333.33333333334, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 1623.1354166666667, "ser_median_ns": 1637.0, "ser_std_ns": 87.1708087053853, "ser_mad_ns": 58.5, "ser_cv": 0.05370519785983268, "ser_min_ns": 1394.0, "ser_max_ns": 1843.0, "ser_p5_ns": 1458.0, "ser_p25_ns": 1571.25, "ser_p50_ns": 1637.0, "ser_p75_ns": 1686.0, "ser_p95_ns": 1750.25, "ser_p99_ns": 1783.1499999999999, "ser_ci_low_ns": 1605.7174479166667, "ser_ci_high_ns": 1640.3622395833333, "deser_mean_ns": 3687.96875, "deser_median_ns": 3677.5, "deser_std_ns": 158.9261631354239, "deser_mad_ns": 120.0, "deser_cv": 0.04309314256944935, "deser_min_ns": 3341.0, "deser_max_ns": 4007.0, "deser_p5_ns": 3430.0, "deser_p25_ns": 3567.0, "deser_p50_ns": 3677.5, "deser_p75_ns": 3813.0, "deser_p95_ns": 3934.25, "deser_p99_ns": 3996.55, "deser_ci_low_ns": 3655.4776041666664, "deser_ci_high_ns": 3721.27109375, "total_mean_ns": 5311.104166666667, "total_median_ns": 5318.0, "total_std_ns": 207.53310346806776, "total_mad_ns": 143.0, "total_cv": 0.03907532161966969, "total_min_ns": 4800.0, "total_max_ns": 5724.0, "total_p5_ns": 4979.5, "total_p25_ns": 5181.25, "total_p50_ns": 5318.0, "total_p75_ns": 5466.0, "total_p95_ns": 5622.75, "total_p99_ns": 5708.8, "total_ci_low_ns": 5269.34296875, "total_ci_high_ns": 5353.147916666667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.914280874234503}, {"serializer": "zpp_bits", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "4.4.25", "avg_time_ser_ns": 420.05555555555554, "avg_time_deser_ns": 287.74444444444447, "avg_time_total_ns": 707.8, "median_size_bytes": 299.0, "avg_ops_per_sec": 1412828.4826222097, "min_ops_per_sec": 1219512.1951219512, "max_ops_per_sec": 1718213.058419244, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 420.05555555555554, "ser_median_ns": 424.0, "ser_std_ns": 33.84278294633966, "ser_mad_ns": 24.0, "ser_cv": 0.08056739757097128, "ser_min_ns": 335.0, "ser_max_ns": 482.0, "ser_p5_ns": 357.9, "ser_p25_ns": 399.0, "ser_p50_ns": 424.0, "ser_p75_ns": 444.25, "ser_p95_ns": 469.65, "ser_p99_ns": 480.22, "ser_ci_low_ns": 412.855, "ser_ci_high_ns": 427.05777777777774, "deser_mean_ns": 287.74444444444447, "deser_median_ns": 289.0, "deser_std_ns": 24.45337738264854, "deser_mad_ns": 15.0, "deser_cv": 0.08498296962730696, "deser_min_ns": 222.0, "deser_max_ns": 340.0, "deser_p5_ns": 240.9, "deser_p25_ns": 275.0, "deser_p50_ns": 289.0, "deser_p75_ns": 305.5, "deser_p95_ns": 326.75, "deser_p99_ns": 332.88, "deser_ci_low_ns": 282.68805555555554, "deser_ci_high_ns": 292.9225, "total_mean_ns": 707.8, "total_median_ns": 715.5, "total_std_ns": 50.8335463862423, "total_mad_ns": 35.5, "total_cv": 0.07181908220718042, "total_min_ns": 582.0, "total_max_ns": 820.0, "total_p5_ns": 609.15, "total_p25_ns": 677.0, "total_p50_ns": 715.5, "total_p75_ns": 744.75, "total_p95_ns": 776.75, "total_p99_ns": 793.3, "total_ci_low_ns": 697.4438888888889, "total_ci_high_ns": 717.6569444444444, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "protobuf-wire", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "wire-v2", "avg_time_ser_ns": 1109.639175257732, "avg_time_deser_ns": 567.8969072164948, "avg_time_total_ns": 1677.5360824742268, "median_size_bytes": 316.0, "avg_ops_per_sec": 596112.3641078902, "min_ops_per_sec": 495540.1387512389, "max_ops_per_sec": 765696.784073507, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 1109.639175257732, "ser_median_ns": 1116.0, "ser_std_ns": 124.42301716046238, "ser_mad_ns": 85.0, "ser_cv": 0.11212925781172342, "ser_min_ns": 798.0, "ser_max_ns": 1375.0, "ser_p5_ns": 924.6, "ser_p25_ns": 1022.0, "ser_p50_ns": 1116.0, "ser_p75_ns": 1188.0, "ser_p95_ns": 1317.1999999999998, "ser_p99_ns": 1339.4799999999998, "ser_ci_low_ns": 1084.917268041237, "ser_ci_high_ns": 1133.9095360824742, "deser_mean_ns": 567.8969072164948, "deser_median_ns": 569.0, "deser_std_ns": 54.48422641311017, "deser_mad_ns": 44.0, "deser_cv": 0.09594034713124364, "deser_min_ns": 423.0, "deser_max_ns": 689.0, "deser_p5_ns": 482.2, "deser_p25_ns": 527.0, "deser_p50_ns": 569.0, "deser_p75_ns": 614.0, "deser_p95_ns": 644.0, "deser_p99_ns": 668.8399999999998, "deser_ci_low_ns": 556.9682989690722, "deser_ci_high_ns": 578.4974226804125, "total_mean_ns": 1677.5360824742268, "total_median_ns": 1671.0, "total_std_ns": 146.55090567897034, "total_mad_ns": 94.0, "total_cv": 0.08736080684644344, "total_min_ns": 1306.0, "total_max_ns": 2018.0, "total_p5_ns": 1455.8, "total_p25_ns": 1584.0, "total_p50_ns": 1671.0, "total_p75_ns": 1765.0, "total_p95_ns": 1920.0, "total_p99_ns": 2010.32, "total_ci_low_ns": 1649.566494845361, "total_ci_high_ns": 1705.6744845360824, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.677318237872436}, {"serializer": "custom_binary", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "harness", "avg_time_ser_ns": 986.2021276595744, "avg_time_deser_ns": 417.06382978723406, "avg_time_total_ns": 1403.2659574468084, "median_size_bytes": 299.0, "avg_ops_per_sec": 712623.2876193075, "min_ops_per_sec": 615763.5467980296, "max_ops_per_sec": 848896.4346349746, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 986.2021276595744, "ser_median_ns": 995.0, "ser_std_ns": 68.45178505448064, "ser_mad_ns": 51.5, "ser_cv": 0.06940948831344379, "ser_min_ns": 821.0, "ser_max_ns": 1146.0, "ser_p5_ns": 876.6, "ser_p25_ns": 939.0, "ser_p50_ns": 995.0, "ser_p75_ns": 1031.75, "ser_p95_ns": 1096.5, "ser_p99_ns": 1133.9099999999999, "ser_ci_low_ns": 972.9776595744681, "ser_ci_high_ns": 1000.0321808510638, "deser_mean_ns": 417.06382978723406, "deser_median_ns": 418.5, "deser_std_ns": 28.275833562773016, "deser_mad_ns": 18.0, "deser_cv": 0.06779737666821405, "deser_min_ns": 346.0, "deser_max_ns": 482.0, "deser_p5_ns": 370.65, "deser_p25_ns": 399.25, "deser_p50_ns": 418.5, "deser_p75_ns": 434.75, "deser_p95_ns": 469.35, "deser_p99_ns": 478.28, "deser_ci_low_ns": 411.43617021276594, "deser_ci_high_ns": 422.606914893617, "total_mean_ns": 1403.2659574468084, "total_median_ns": 1404.5, "total_std_ns": 80.5382665385246, "total_mad_ns": 58.5, "total_cv": 0.05739344427984347, "total_min_ns": 1178.0, "total_max_ns": 1624.0, "total_p5_ns": 1269.85, "total_p25_ns": 1347.0, "total_p50_ns": 1404.5, "total_p75_ns": 1465.5, "total_p95_ns": 1516.35, "total_p99_ns": 1557.0399999999995, "total_ci_low_ns": 1386.4454787234042, "total_ci_high_ns": 1419.5534574468086, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.23615207790561}, {"serializer": "jsoncons_msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 1578.0210526315789, "avg_time_deser_ns": 14419.810526315789, "avg_time_total_ns": 15997.831578947369, "median_size_bytes": 342.0, "avg_ops_per_sec": 62508.47154285383, "min_ops_per_sec": 55364.854390432956, "max_ops_per_sec": 69798.28296223913, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1578.0210526315789, "ser_median_ns": 1563.0, "ser_std_ns": 138.3035498188575, "ser_mad_ns": 101.0, "ser_cv": 0.08764366583590015, "ser_min_ns": 1265.0, "ser_max_ns": 1890.0, "ser_p5_ns": 1372.5, "ser_p25_ns": 1478.0, "ser_p50_ns": 1563.0, "ser_p75_ns": 1679.5, "ser_p95_ns": 1804.1999999999998, "ser_p99_ns": 1863.68, "ser_ci_low_ns": 1550.9755263157895, "ser_ci_high_ns": 1605.2944736842105, "deser_mean_ns": 14419.810526315789, "deser_median_ns": 14301.0, "deser_std_ns": 887.8403907586577, "deser_mad_ns": 703.0, "deser_cv": 0.06157087772674762, "deser_min_ns": 12889.0, "deser_max_ns": 16237.0, "deser_p5_ns": 13178.5, "deser_p25_ns": 13704.5, "deser_p50_ns": 14301.0, "deser_p75_ns": 15120.5, "deser_p95_ns": 16075.6, "deser_p99_ns": 16190.0, "deser_ci_low_ns": 14252.819736842106, "deser_ci_high_ns": 14602.047368421052, "total_mean_ns": 15997.831578947369, "total_median_ns": 15947.0, "total_std_ns": 935.4173110439383, "total_mad_ns": 782.0, "total_cv": 0.05847150636808287, "total_min_ns": 14327.0, "total_max_ns": 18062.0, "total_p5_ns": 14706.7, "total_p25_ns": 15205.5, "total_p50_ns": 15947.0, "total_p75_ns": 16755.0, "total_p95_ns": 17644.6, "total_p99_ns": 17726.420000000002, "total_ci_low_ns": 15807.77052631579, "total_ci_high_ns": 16180.271578947368, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.681526643537644}, {"serializer": "capnproto", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "1.0.x", "avg_time_ser_ns": 686.8387096774194, "avg_time_deser_ns": 737.0860215053764, "avg_time_total_ns": 1423.9247311827958, "median_size_bytes": 344.0, "avg_ops_per_sec": 702284.311874646, "min_ops_per_sec": 589970.5014749262, "max_ops_per_sec": 879507.4758135445, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 686.8387096774194, "ser_median_ns": 683.0, "ser_std_ns": 74.59008127361122, "ser_mad_ns": 64.0, "ser_cv": 0.10859912265085232, "ser_min_ns": 558.0, "ser_max_ns": 882.0, "ser_p5_ns": 587.6, "ser_p25_ns": 618.0, "ser_p50_ns": 683.0, "ser_p75_ns": 745.0, "ser_p95_ns": 822.8, "ser_p99_ns": 877.4, "ser_ci_low_ns": 671.3005376344086, "ser_ci_high_ns": 701.5701612903226, "deser_mean_ns": 737.0860215053764, "deser_median_ns": 747.0, "deser_std_ns": 72.78910213372819, "deser_mad_ns": 48.0, "deser_cv": 0.09875252007230917, "deser_min_ns": 535.0, "deser_max_ns": 900.0, "deser_p5_ns": 605.4, "deser_p25_ns": 690.0, "deser_p50_ns": 747.0, "deser_p75_ns": 784.0, "deser_p95_ns": 848.5999999999999, "deser_p99_ns": 877.0, "deser_ci_low_ns": 722.4497311827957, "deser_ci_high_ns": 751.6997311827957, "total_mean_ns": 1423.9247311827958, "total_median_ns": 1424.0, "total_std_ns": 125.23493023627891, "total_mad_ns": 86.0, "total_cv": 0.08795052680365444, "total_min_ns": 1137.0, "total_max_ns": 1695.0, "total_p5_ns": 1208.6, "total_p25_ns": 1341.0, "total_p50_ns": 1424.0, "total_p75_ns": 1518.0, "total_p95_ns": 1613.2, "total_p99_ns": 1672.0, "total_ci_low_ns": 1398.6233870967742, "total_ci_high_ns": 1449.016129032258, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.418030463904967}, {"serializer": "jsoncons_bson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 2527.9772727272725, "avg_time_deser_ns": 14534.65909090909, "avg_time_total_ns": 17062.636363636364, "median_size_bytes": 459.0, "avg_ops_per_sec": 58607.59021572921, "min_ops_per_sec": 54315.3549508446, "max_ops_per_sec": 64817.21545242416, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 2527.9772727272725, "ser_median_ns": 2520.5, "ser_std_ns": 123.89706306508904, "ser_mad_ns": 57.0, "ser_cv": 0.049010354800945045, "ser_min_ns": 2228.0, "ser_max_ns": 2851.0, "ser_p5_ns": 2327.65, "ser_p25_ns": 2465.0, "ser_p50_ns": 2520.5, "ser_p75_ns": 2586.5, "ser_p95_ns": 2776.6, "ser_p99_ns": 2824.0299999999997, "ser_ci_low_ns": 2502.760227272727, "ser_ci_high_ns": 2554.2178977272724, "deser_mean_ns": 14534.65909090909, "deser_median_ns": 14540.0, "deser_std_ns": 663.4020449544445, "deser_mad_ns": 472.0, "deser_cv": 0.045642766081068854, "deser_min_ns": 13153.0, "deser_max_ns": 16043.0, "deser_p5_ns": 13458.0, "deser_p25_ns": 14095.75, "deser_p50_ns": 14540.0, "deser_p75_ns": 15015.25, "deser_p95_ns": 15604.5, "deser_p99_ns": 16017.77, "deser_ci_low_ns": 14396.129829545454, "deser_ci_high_ns": 14675.675568181818, "total_mean_ns": 17062.636363636364, "total_median_ns": 17066.0, "total_std_ns": 694.8400491011588, "total_mad_ns": 488.0, "total_cv": 0.04072290086319788, "total_min_ns": 15428.0, "total_max_ns": 18411.0, "total_p5_ns": 15847.85, "total_p25_ns": 16612.5, "total_p50_ns": 17066.0, "total_p75_ns": 17587.0, "total_p95_ns": 18177.75, "total_p99_ns": 18402.3, "total_ci_low_ns": 16915.72926136364, "total_ci_high_ns": 17207.861363636363, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 33.24413955113634}, {"serializer": "bitsery", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "5.2.4", "avg_time_ser_ns": 474.94565217391306, "avg_time_deser_ns": 344.9130434782609, "avg_time_total_ns": 819.8586956521739, "median_size_bytes": 284.0, "avg_ops_per_sec": 1219722.3805798986, "min_ops_per_sec": 1038421.5991692627, "max_ops_per_sec": 1440922.190201729, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 474.94565217391306, "ser_median_ns": 472.5, "ser_std_ns": 33.24810632645519, "ser_mad_ns": 27.5, "ser_cv": 0.07000402293246087, "ser_min_ns": 411.0, "ser_max_ns": 574.0, "ser_p5_ns": 432.1, "ser_p25_ns": 443.75, "ser_p50_ns": 472.5, "ser_p75_ns": 497.0, "ser_p95_ns": 529.45, "ser_p99_ns": 557.6200000000001, "ser_ci_low_ns": 468.1948369565218, "ser_ci_high_ns": 481.6630434782609, "deser_mean_ns": 344.9130434782609, "deser_median_ns": 347.0, "deser_std_ns": 28.071984459859127, "deser_mad_ns": 18.5, "deser_cv": 0.0813885847191176, "deser_min_ns": 281.0, "deser_max_ns": 412.0, "deser_p5_ns": 299.1, "deser_p25_ns": 327.0, "deser_p50_ns": 347.0, "deser_p75_ns": 364.25, "deser_p95_ns": 388.45, "deser_p99_ns": 401.08000000000004, "deser_ci_low_ns": 338.8692934782609, "deser_ci_high_ns": 350.4698369565217, "total_mean_ns": 819.8586956521739, "total_median_ns": 824.5, "total_std_ns": 52.5218074063054, "total_mad_ns": 36.0, "total_cv": 0.06406202396197777, "total_min_ns": 694.0, "total_max_ns": 963.0, "total_p5_ns": 739.55, "total_p25_ns": 786.0, "total_p50_ns": 824.5, "total_p75_ns": 849.25, "total_p95_ns": 913.7, "total_p99_ns": 943.8900000000001, "total_ci_low_ns": 809.0975543478261, "total_ci_high_ns": 830.8483695652174, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 0.8952898550724637, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.158688585028668}, {"serializer": "yyjson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "0.10.0", "avg_time_ser_ns": 1019.3626373626373, "avg_time_deser_ns": 10140.186813186812, "avg_time_total_ns": 11159.54945054945, "median_size_bytes": 658.0, "avg_ops_per_sec": 89609.3524591859, "min_ops_per_sec": 85748.58514834505, "max_ops_per_sec": 95438.0606986066, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 1019.3626373626373, "ser_median_ns": 1020.0, "ser_std_ns": 59.25941397008702, "ser_mad_ns": 36.0, "ser_cv": 0.058133790466763535, "ser_min_ns": 873.0, "ser_max_ns": 1171.0, "ser_p5_ns": 928.0, "ser_p25_ns": 983.0, "ser_p50_ns": 1020.0, "ser_p75_ns": 1050.0, "ser_p95_ns": 1130.5, "ser_p99_ns": 1163.8, "ser_ci_low_ns": 1008.1835164835165, "ser_ci_high_ns": 1031.5057692307691, "deser_mean_ns": 10140.186813186812, "deser_median_ns": 10090.0, "deser_std_ns": 229.51920336447824, "deser_mad_ns": 154.0, "deser_cv": 0.022634612911272983, "deser_min_ns": 9599.0, "deser_max_ns": 10628.0, "deser_p5_ns": 9836.5, "deser_p25_ns": 9981.5, "deser_p50_ns": 10090.0, "deser_p75_ns": 10320.0, "deser_p95_ns": 10512.0, "deser_p99_ns": 10614.5, "deser_ci_low_ns": 10092.139285714286, "deser_ci_high_ns": 10187.67857142857, "total_mean_ns": 11159.54945054945, "total_median_ns": 11119.0, "total_std_ns": 258.16137346569633, "total_mad_ns": 164.0, "total_cv": 0.023133673506235106, "total_min_ns": 10478.0, "total_max_ns": 11662.0, "total_p5_ns": 10769.5, "total_p25_ns": 11000.5, "total_p50_ns": 11119.0, "total_p75_ns": 11350.0, "total_p95_ns": 11603.0, "total_p99_ns": 11658.4, "total_ci_low_ns": 11107.690384615385, "total_ci_high_ns": 11215.166483516483, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 55.7964919871331}, {"serializer": "arduinojson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "7.2.1", "avg_time_ser_ns": 2679.404255319149, "avg_time_deser_ns": 11334.595744680852, "avg_time_total_ns": 14014.0, "median_size_bytes": 455.0, "avg_ops_per_sec": 71357.21421435707, "min_ops_per_sec": 68064.25265450585, "max_ops_per_sec": 74799.91024010771, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 2679.404255319149, "ser_median_ns": 2677.0, "ser_std_ns": 84.39478646040615, "ser_mad_ns": 61.5, "ser_cv": 0.03149759365085196, "ser_min_ns": 2466.0, "ser_max_ns": 2889.0, "ser_p5_ns": 2542.1, "ser_p25_ns": 2623.0, "ser_p50_ns": 2677.0, "ser_p75_ns": 2741.25, "ser_p95_ns": 2806.85, "ser_p99_ns": 2879.7, "ser_ci_low_ns": 2662.6319148936172, "ser_ci_high_ns": 2696.04335106383, "deser_mean_ns": 11334.595744680852, "deser_median_ns": 11333.0, "deser_std_ns": 259.7837114907151, "deser_mad_ns": 187.0, "deser_cv": 0.022919539200383705, "deser_min_ns": 10822.0, "deser_max_ns": 12066.0, "deser_p5_ns": 10919.9, "deser_p25_ns": 11147.75, "deser_p50_ns": 11333.0, "deser_p75_ns": 11515.75, "deser_p95_ns": 11739.75, "deser_p99_ns": 11891.159999999998, "deser_ci_low_ns": 11280.262765957446, "deser_ci_high_ns": 11386.592287234043, "total_mean_ns": 14014.0, "total_median_ns": 13989.5, "total_std_ns": 293.8221611206197, "total_mad_ns": 215.5, "total_cv": 0.020966330892009395, "total_min_ns": 13369.0, "total_max_ns": 14692.0, "total_p5_ns": 13560.6, "total_p25_ns": 13829.5, "total_p50_ns": 13989.5, "total_p75_ns": 14230.75, "total_p95_ns": 14487.85, "total_p99_ns": 14667.82, "total_ci_low_ns": 13954.698670212767, "total_ci_high_ns": 14073.377127659574, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 62.2064264587679}, {"serializer": "flexbuffers", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "flatbuffers-flex", "avg_time_ser_ns": 1975.3181818181818, "avg_time_deser_ns": 2357.2386363636365, "avg_time_total_ns": 4332.556818181818, "median_size_bytes": 423.0, "avg_ops_per_sec": 230810.59105871245, "min_ops_per_sec": 209248.7968194183, "max_ops_per_sec": 260892.25150013046, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 1975.3181818181818, "ser_median_ns": 1987.0, "ser_std_ns": 114.03735478478704, "ser_mad_ns": 79.5, "ser_cv": 0.05773113204467209, "ser_min_ns": 1694.0, "ser_max_ns": 2214.0, "ser_p5_ns": 1786.05, "ser_p25_ns": 1893.0, "ser_p50_ns": 1987.0, "ser_p75_ns": 2057.5, "ser_p95_ns": 2143.5, "ser_p99_ns": 2191.38, "ser_ci_low_ns": 1951.4298295454546, "ser_ci_high_ns": 1998.0698863636362, "deser_mean_ns": 2357.2386363636365, "deser_median_ns": 2354.5, "deser_std_ns": 88.82968261263603, "deser_mad_ns": 52.5, "deser_cv": 0.03768378866794241, "deser_min_ns": 2133.0, "deser_max_ns": 2565.0, "deser_p5_ns": 2209.95, "deser_p25_ns": 2307.0, "deser_p50_ns": 2354.5, "deser_p75_ns": 2410.0, "deser_p95_ns": 2529.6, "deser_p99_ns": 2544.12, "deser_ci_low_ns": 2339.212215909091, "deser_ci_high_ns": 2375.602840909091, "total_mean_ns": 4332.556818181818, "total_median_ns": 4354.5, "total_std_ns": 175.18862464741144, "total_mad_ns": 113.5, "total_cv": 0.04043539000163195, "total_min_ns": 3833.0, "total_max_ns": 4779.0, "total_p5_ns": 4031.35, "total_p25_ns": 4232.0, "total_p50_ns": 4354.5, "total_p75_ns": 4453.0, "total_p95_ns": 4584.9, "total_p99_ns": 4694.61, "total_ci_low_ns": 4296.994886363636, "total_ci_high_ns": 4368.56875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.11714880042391}, {"serializer": "simdjson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.10.1", "avg_time_ser_ns": 199.72527472527472, "avg_time_deser_ns": 10904.296703296703, "avg_time_total_ns": 11104.021978021978, "median_size_bytes": 658.0, "avg_ops_per_sec": 90057.45863789579, "min_ops_per_sec": 83752.09380234506, "max_ops_per_sec": 94055.68096313017, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 199.72527472527472, "ser_median_ns": 199.0, "ser_std_ns": 8.098101195912717, "ser_mad_ns": 5.0, "ser_cv": 0.040546201311034785, "ser_min_ns": 180.0, "ser_max_ns": 220.0, "ser_p5_ns": 189.0, "ser_p25_ns": 195.0, "ser_p50_ns": 199.0, "ser_p75_ns": 204.0, "ser_p95_ns": 214.5, "ser_p99_ns": 219.1, "ser_ci_low_ns": 198.13186813186815, "ser_ci_high_ns": 201.47252747252747, "deser_mean_ns": 10904.296703296703, "deser_median_ns": 10900.0, "deser_std_ns": 279.55061137894927, "deser_mad_ns": 212.0, "deser_cv": 0.025636739258427604, "deser_min_ns": 10429.0, "deser_max_ns": 11734.0, "deser_p5_ns": 10482.5, "deser_p25_ns": 10697.0, "deser_p50_ns": 10900.0, "deser_p75_ns": 11113.5, "deser_p95_ns": 11358.0, "deser_p99_ns": 11694.4, "deser_ci_low_ns": 10846.211538461539, "deser_ci_high_ns": 10961.92445054945, "total_mean_ns": 11104.021978021978, "total_median_ns": 11100.0, "total_std_ns": 278.9807630971465, "total_mad_ns": 210.0, "total_cv": 0.025124298533389874, "total_min_ns": 10632.0, "total_max_ns": 11940.0, "total_p5_ns": 10691.0, "total_p25_ns": 10891.0, "total_p50_ns": 11100.0, "total_p75_ns": 11310.0, "total_p95_ns": 11554.5, "total_p99_ns": 11895.9, "total_ci_low_ns": 11049.447527472528, "total_ci_high_ns": 11163.319230769232, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 51.49506574633579}, {"serializer": "yas", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "7.x", "avg_time_ser_ns": 508.81720430107526, "avg_time_deser_ns": 386.4193548387097, "avg_time_total_ns": 895.236559139785, "median_size_bytes": 326.0, "avg_ops_per_sec": 1117023.1932450123, "min_ops_per_sec": 933706.8160597573, "max_ops_per_sec": 1410437.2355430184, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 508.81720430107526, "ser_median_ns": 505.0, "ser_std_ns": 68.3108219570438, "ser_mad_ns": 47.0, "ser_cv": 0.13425415135260088, "ser_min_ns": 368.0, "ser_max_ns": 664.0, "ser_p5_ns": 389.6, "ser_p25_ns": 466.0, "ser_p50_ns": 505.0, "ser_p75_ns": 555.0, "ser_p95_ns": 614.4, "ser_p99_ns": 659.4, "ser_ci_low_ns": 495.48387096774195, "ser_ci_high_ns": 522.785752688172, "deser_mean_ns": 386.4193548387097, "deser_median_ns": 386.0, "deser_std_ns": 26.73880203677516, "deser_mad_ns": 20.0, "deser_cv": 0.06919633217631103, "deser_min_ns": 310.0, "deser_max_ns": 451.0, "deser_p5_ns": 341.6, "deser_p25_ns": 369.0, "deser_p50_ns": 386.0, "deser_p75_ns": 406.0, "deser_p95_ns": 426.99999999999994, "deser_p99_ns": 450.08, "deser_ci_low_ns": 380.6540322580645, "deser_ci_high_ns": 391.5379032258065, "total_mean_ns": 895.236559139785, "total_median_ns": 889.0, "total_std_ns": 78.38580697969421, "total_mad_ns": 51.0, "total_cv": 0.0875587644175452, "total_min_ns": 709.0, "total_max_ns": 1071.0, "total_p5_ns": 761.2, "total_p25_ns": 848.0, "total_p50_ns": 889.0, "total_p75_ns": 948.0, "total_p95_ns": 1022.0, "total_p99_ns": 1044.32, "total_ci_low_ns": 878.8817204301075, "total_ci_high_ns": 910.7852150537634, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 0.9575866188769414, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.8160051185863297}, {"serializer": "jsoncons_cbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 1600.4375, "avg_time_deser_ns": 14486.989583333334, "avg_time_total_ns": 16087.427083333334, "median_size_bytes": 341.0, "avg_ops_per_sec": 62160.343902102635, "min_ops_per_sec": 54737.53352673929, "max_ops_per_sec": 70942.11123723042, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 1600.4375, "ser_median_ns": 1561.5, "ser_std_ns": 163.99562333697875, "ser_mad_ns": 128.0, "ser_cv": 0.10246924565125395, "ser_min_ns": 1248.0, "ser_max_ns": 2026.0, "ser_p5_ns": 1389.0, "ser_p25_ns": 1477.75, "ser_p50_ns": 1561.5, "ser_p75_ns": 1716.75, "ser_p95_ns": 1869.75, "ser_p99_ns": 1948.0999999999997, "ser_ci_low_ns": 1567.2169270833333, "ser_ci_high_ns": 1633.0874999999999, "deser_mean_ns": 14486.989583333334, "deser_median_ns": 14398.0, "deser_std_ns": 741.3767065014805, "deser_mad_ns": 500.5, "deser_cv": 0.05117534614330108, "deser_min_ns": 12763.0, "deser_max_ns": 16418.0, "deser_p5_ns": 13348.75, "deser_p25_ns": 14010.25, "deser_p50_ns": 14398.0, "deser_p75_ns": 14939.0, "deser_p95_ns": 15695.25, "deser_p99_ns": 16365.75, "deser_ci_low_ns": 14335.8953125, "deser_ci_high_ns": 14637.94453125, "total_mean_ns": 16087.427083333334, "total_median_ns": 16015.0, "total_std_ns": 788.6519310262313, "total_mad_ns": 517.5, "total_cv": 0.04902287525164786, "total_min_ns": 14096.0, "total_max_ns": 18269.0, "total_p5_ns": 14902.0, "total_p25_ns": 15572.0, "total_p50_ns": 16015.0, "total_p75_ns": 16675.25, "total_p95_ns": 17380.5, "total_p99_ns": 17909.899999999998, "total_ci_low_ns": 15932.643489583334, "total_ci_high_ns": 16249.179427083332, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.97663291732924}, {"serializer": "avro", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "binary-1.11", "avg_time_ser_ns": 769.9239130434783, "avg_time_deser_ns": 594.4239130434783, "avg_time_total_ns": 1364.3478260869565, "median_size_bytes": 284.0, "avg_ops_per_sec": 732950.924155513, "min_ops_per_sec": 615384.6153846154, "max_ops_per_sec": 906618.3136899365, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 769.9239130434783, "ser_median_ns": 764.0, "ser_std_ns": 89.74459899211814, "ser_mad_ns": 68.5, "ser_cv": 0.11656294534009387, "ser_min_ns": 566.0, "ser_max_ns": 1005.0, "ser_p5_ns": 624.25, "ser_p25_ns": 707.5, "ser_p50_ns": 764.0, "ser_p75_ns": 839.5, "ser_p95_ns": 915.0, "ser_p99_ns": 994.08, "ser_ci_low_ns": 751.841304347826, "ser_ci_high_ns": 788.2176630434783, "deser_mean_ns": 594.4239130434783, "deser_median_ns": 594.5, "deser_std_ns": 41.727065476870486, "deser_mad_ns": 28.0, "deser_cv": 0.07019748795640801, "deser_min_ns": 506.0, "deser_max_ns": 694.0, "deser_p5_ns": 526.85, "deser_p25_ns": 565.75, "deser_p50_ns": 594.5, "deser_p75_ns": 617.25, "deser_p95_ns": 663.45, "deser_p99_ns": 689.45, "deser_ci_low_ns": 586.3040760869566, "deser_ci_high_ns": 602.8592391304347, "total_mean_ns": 1364.3478260869565, "total_median_ns": 1359.5, "total_std_ns": 102.05616152448748, "total_mad_ns": 75.0, "total_cv": 0.07480215790513742, "total_min_ns": 1103.0, "total_max_ns": 1625.0, "total_p5_ns": 1221.8, "total_p25_ns": 1285.75, "total_p50_ns": 1359.5, "total_p75_ns": 1434.25, "total_p95_ns": 1528.45, "total_p99_ns": 1615.9, "total_ci_low_ns": 1344.746739130435, "total_ci_high_ns": 1384.8059782608696, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.082641645936931}, {"serializer": "cista", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "0.15", "avg_time_ser_ns": 355.6304347826087, "avg_time_deser_ns": 905.195652173913, "avg_time_total_ns": 1260.8260869565217, "median_size_bytes": 360.0, "avg_ops_per_sec": 793130.7976137109, "min_ops_per_sec": 665335.9946773121, "max_ops_per_sec": 959692.8982725528, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 355.6304347826087, "ser_median_ns": 360.0, "ser_std_ns": 45.10006393389985, "ser_mad_ns": 27.5, "ser_cv": 0.12681722238274912, "ser_min_ns": 249.0, "ser_max_ns": 461.0, "ser_p5_ns": 265.55, "ser_p25_ns": 331.0, "ser_p50_ns": 360.0, "ser_p75_ns": 384.25, "ser_p95_ns": 425.6, "ser_p99_ns": 456.45000000000005, "ser_ci_low_ns": 346.54021739130434, "ser_ci_high_ns": 364.83994565217387, "deser_mean_ns": 905.195652173913, "deser_median_ns": 907.5, "deser_std_ns": 62.8389252799507, "deser_mad_ns": 38.5, "deser_cv": 0.06942026856739433, "deser_min_ns": 777.0, "deser_max_ns": 1064.0, "deser_p5_ns": 801.1, "deser_p25_ns": 869.0, "deser_p50_ns": 907.5, "deser_p75_ns": 945.5, "deser_p95_ns": 1022.8, "deser_p99_ns": 1049.44, "deser_ci_low_ns": 892.5758152173913, "deser_ci_high_ns": 917.272554347826, "total_mean_ns": 1260.8260869565217, "total_median_ns": 1258.0, "total_std_ns": 98.28737956788767, "total_mad_ns": 58.0, "total_cv": 0.0779547477520403, "total_min_ns": 1042.0, "total_max_ns": 1503.0, "total_p5_ns": 1073.35, "total_p25_ns": 1216.5, "total_p50_ns": 1258.0, "total_p75_ns": 1317.0, "total_p95_ns": 1410.5, "total_p99_ns": 1480.25, "total_ci_low_ns": 1240.825543478261, "total_ci_high_ns": 1280.804347826087, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.0159265238335635}, {"serializer": "thrift", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "TBinaryProtocol", "avg_time_ser_ns": 812.6373626373627, "avg_time_deser_ns": 435.4835164835165, "avg_time_total_ns": 1248.1208791208792, "median_size_bytes": 314.0, "avg_ops_per_sec": 801204.4480053531, "min_ops_per_sec": 628140.703517588, "max_ops_per_sec": 1011122.3458038423, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 812.6373626373627, "ser_median_ns": 769.0, "ser_std_ns": 134.96176548963098, "ser_mad_ns": 72.0, "ser_cv": 0.1660787107445087, "ser_min_ns": 607.0, "ser_max_ns": 1127.0, "ser_p5_ns": 636.0, "ser_p25_ns": 715.0, "ser_p50_ns": 769.0, "ser_p75_ns": 918.0, "ser_p95_ns": 1043.5, "ser_p99_ns": 1105.3999999999999, "ser_ci_low_ns": 785.8653846153846, "ser_ci_high_ns": 840.1208791208791, "deser_mean_ns": 435.4835164835165, "deser_median_ns": 440.0, "deser_std_ns": 28.830679121520166, "deser_mad_ns": 16.0, "deser_cv": 0.06620383557642977, "deser_min_ns": 365.0, "deser_max_ns": 502.0, "deser_p5_ns": 375.5, "deser_p25_ns": 419.0, "deser_p50_ns": 440.0, "deser_p75_ns": 451.5, "deser_p95_ns": 478.0, "deser_p99_ns": 498.4, "deser_ci_low_ns": 429.3837912087912, "deser_ci_high_ns": 441.6818681318681, "total_mean_ns": 1248.1208791208792, "total_median_ns": 1202.0, "total_std_ns": 148.49652709480634, "total_mad_ns": 67.0, "total_cv": 0.11897607802170627, "total_min_ns": 989.0, "total_max_ns": 1592.0, "total_p5_ns": 1047.0, "total_p25_ns": 1151.0, "total_p50_ns": 1202.0, "total_p75_ns": 1354.0, "total_p95_ns": 1508.5, "total_p99_ns": 1568.6, "total_ci_low_ns": 1220.2403846153845, "total_ci_high_ns": 1278.6499999999999, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.837328076869412}, {"serializer": "msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "msgpack-cxx", "avg_time_ser_ns": 536.8085106382979, "avg_time_deser_ns": 1212.0851063829787, "avg_time_total_ns": 1748.8936170212767, "median_size_bytes": 342.0, "avg_ops_per_sec": 571790.0678848634, "min_ops_per_sec": 478697.9415988511, "max_ops_per_sec": 697350.069735007, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 536.8085106382979, "ser_median_ns": 536.0, "ser_std_ns": 48.873388452543566, "ser_mad_ns": 28.5, "ser_cv": 0.09104436215891984, "ser_min_ns": 421.0, "ser_max_ns": 652.0, "ser_p5_ns": 457.85, "ser_p25_ns": 509.0, "ser_p50_ns": 536.0, "ser_p75_ns": 566.5, "ser_p95_ns": 618.9999999999999, "ser_p99_ns": 642.6999999999999, "ser_ci_low_ns": 526.9034574468085, "ser_ci_high_ns": 546.7340425531914, "deser_mean_ns": 1212.0851063829787, "deser_median_ns": 1205.5, "deser_std_ns": 118.05080549924605, "deser_mad_ns": 79.5, "deser_cv": 0.09739481565904656, "deser_min_ns": 971.0, "deser_max_ns": 1486.0, "deser_p5_ns": 1032.2, "deser_p25_ns": 1124.5, "deser_p50_ns": 1205.5, "deser_p75_ns": 1271.25, "deser_p95_ns": 1435.0, "deser_p99_ns": 1484.1399999999999, "deser_ci_low_ns": 1188.2281914893617, "deser_ci_high_ns": 1236.7446808510638, "total_mean_ns": 1748.8936170212767, "total_median_ns": 1744.0, "total_std_ns": 143.43478290870314, "total_mad_ns": 87.5, "total_cv": 0.08201458425641801, "total_min_ns": 1434.0, "total_max_ns": 2089.0, "total_p5_ns": 1501.0, "total_p25_ns": 1662.0, "total_p50_ns": 1744.0, "total_p75_ns": 1832.75, "total_p95_ns": 2000.35, "total_p99_ns": 2045.2899999999997, "total_ci_low_ns": 1720.2747340425533, "total_ci_high_ns": 1777.6412234042552, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.554021013155944}, {"serializer": "avro_c", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "avro-c", "avg_time_ser_ns": 1753.9770114942528, "avg_time_deser_ns": 1790.0114942528735, "avg_time_total_ns": 3543.9885057471265, "median_size_bytes": 284.0, "avg_ops_per_sec": 282167.95804454363, "min_ops_per_sec": 256805.34155110427, "max_ops_per_sec": 314366.55139893113, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 1753.9770114942528, "ser_median_ns": 1757.0, "ser_std_ns": 81.14356742928567, "ser_mad_ns": 63.0, "ser_cv": 0.04626261741033745, "ser_min_ns": 1533.0, "ser_max_ns": 1951.0, "ser_p5_ns": 1636.3, "ser_p25_ns": 1691.5, "ser_p50_ns": 1757.0, "ser_p75_ns": 1818.5, "ser_p95_ns": 1860.7, "ser_p99_ns": 1941.54, "ser_ci_low_ns": 1737.5629310344827, "ser_ci_high_ns": 1770.9313218390805, "deser_mean_ns": 1790.0114942528735, "deser_median_ns": 1784.0, "deser_std_ns": 68.56494023286679, "deser_mad_ns": 46.0, "deser_cv": 0.03830418991889483, "deser_min_ns": 1606.0, "deser_max_ns": 1943.0, "deser_p5_ns": 1687.9, "deser_p25_ns": 1742.0, "deser_p50_ns": 1784.0, "deser_p75_ns": 1840.0, "deser_p95_ns": 1899.9, "deser_p99_ns": 1942.14, "deser_ci_low_ns": 1776.4698275862067, "deser_ci_high_ns": 1803.98908045977, "total_mean_ns": 3543.9885057471265, "total_median_ns": 3538.0, "total_std_ns": 130.4953437869215, "total_mad_ns": 84.0, "total_cv": 0.03682160469067636, "total_min_ns": 3181.0, "total_max_ns": 3894.0, "total_p5_ns": 3361.9, "total_p25_ns": 3457.0, "total_p50_ns": 3538.0, "total_p75_ns": 3629.0, "total_p95_ns": 3747.9, "total_p99_ns": 3883.68, "total_ci_low_ns": 3517.137643678161, "total_ci_high_ns": 3571.5879310344826, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.69910094859507}, {"serializer": "nlohmann_cbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 62777.37209302326, "avg_time_deser_ns": 265669.76744186046, "avg_time_total_ns": 328447.1395348837, "median_size_bytes": 34549.0, "avg_ops_per_sec": 3044.629956029171, "min_ops_per_sec": 2876.108739919239, "max_ops_per_sec": 3189.9045899537145, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 62777.37209302326, "ser_median_ns": 61334.5, "ser_std_ns": 4300.638880162455, "ser_mad_ns": 2311.0, "ser_cv": 0.06850619477651575, "ser_min_ns": 56996.0, "ser_max_ns": 74273.0, "ser_p5_ns": 58076.25, "ser_p25_ns": 59366.5, "ser_p50_ns": 61334.5, "ser_p75_ns": 65366.5, "ser_p95_ns": 71969.5, "ser_p99_ns": 74035.0, "ser_ci_low_ns": 61890.50174418605, "ser_ci_high_ns": 63650.33372093023, "deser_mean_ns": 265669.76744186046, "deser_median_ns": 265083.0, "deser_std_ns": 3917.0156006670013, "deser_mad_ns": 2315.0, "deser_cv": 0.014743926786943142, "deser_min_ns": 256493.0, "deser_max_ns": 275919.0, "deser_p5_ns": 260187.0, "deser_p25_ns": 263215.25, "deser_p50_ns": 265083.0, "deser_p75_ns": 267867.0, "deser_p95_ns": 272030.0, "deser_p99_ns": 275655.5, "deser_ci_low_ns": 264847.57877906977, "deser_ci_high_ns": 266495.44534883724, "total_mean_ns": 328447.1395348837, "total_median_ns": 326345.5, "total_std_ns": 6859.031110042893, "total_mad_ns": 4203.5, "total_cv": 0.020883211586972608, "total_min_ns": 313489.0, "total_max_ns": 347692.0, "total_p5_ns": 319027.5, "total_p25_ns": 323763.0, "total_p50_ns": 326345.5, "total_p75_ns": 332830.5, "total_p95_ns": 339924.5, "total_p99_ns": 347276.35, "total_ci_low_ns": 327017.0529069767, "total_ci_high_ns": 329917.6595930233, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 59.163518179907626}, {"serializer": "avro_c", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "avro-c", "avg_time_ser_ns": 106273.98901098901, "avg_time_deser_ns": 118730.75824175825, "avg_time_total_ns": 225004.74725274724, "median_size_bytes": 28850.0, "avg_ops_per_sec": 4444.350673529135, "min_ops_per_sec": 4178.540686450664, "max_ops_per_sec": 4722.617085484092, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 106273.98901098901, "ser_median_ns": 104863.0, "ser_std_ns": 5317.938505127936, "ser_mad_ns": 3401.0, "ser_cv": 0.050039887978403134, "ser_min_ns": 96307.0, "ser_max_ns": 119405.0, "ser_p5_ns": 99378.5, "ser_p25_ns": 102177.5, "ser_p50_ns": 104863.0, "ser_p75_ns": 110046.5, "ser_p95_ns": 116176.0, "ser_p99_ns": 118721.0, "ser_ci_low_ns": 105222.9239010989, "ser_ci_high_ns": 107397.81401098901, "deser_mean_ns": 118730.75824175825, "deser_median_ns": 118484.0, "deser_std_ns": 3110.7091700934598, "deser_mad_ns": 2131.0, "deser_cv": 0.026199690932314848, "deser_min_ns": 111907.0, "deser_max_ns": 126617.0, "deser_p5_ns": 114365.0, "deser_p25_ns": 116508.5, "deser_p50_ns": 118484.0, "deser_p75_ns": 120732.5, "deser_p95_ns": 123889.0, "deser_p99_ns": 126384.8, "deser_ci_low_ns": 118121.76263736264, "deser_ci_high_ns": 119372.32582417582, "total_mean_ns": 225004.74725274724, "total_median_ns": 224277.0, "total_std_ns": 6701.068257447061, "total_mad_ns": 4175.0, "total_cv": 0.029781897223349552, "total_min_ns": 211747.0, "total_max_ns": 239318.0, "total_p5_ns": 215063.0, "total_p25_ns": 220272.0, "total_p50_ns": 224277.0, "total_p75_ns": 228379.5, "total_p95_ns": 237417.0, "total_p99_ns": 239233.4, "total_ci_low_ns": 223648.28873626373, "total_ci_high_ns": 226344.9203296703, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 39.640714550711095}, {"serializer": "nlohmann_ubjson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 56647.86956521739, "avg_time_deser_ns": 285524.3152173913, "avg_time_total_ns": 342172.1847826087, "median_size_bytes": 35749.0, "avg_ops_per_sec": 2922.505231204948, "min_ops_per_sec": 2772.840581076472, "max_ops_per_sec": 3085.762599940136, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 56647.86956521739, "ser_median_ns": 56014.0, "ser_std_ns": 3826.5678973343333, "ser_mad_ns": 2749.5, "ser_cv": 0.06755007605235522, "ser_min_ns": 50771.0, "ser_max_ns": 66870.0, "ser_p5_ns": 51832.75, "ser_p25_ns": 53695.0, "ser_p50_ns": 56014.0, "ser_p75_ns": 59080.75, "ser_p95_ns": 63593.350000000006, "ser_p99_ns": 66186.59, "ser_ci_low_ns": 55901.71059782609, "ser_ci_high_ns": 57438.32771739131, "deser_mean_ns": 285524.3152173913, "deser_median_ns": 285016.5, "deser_std_ns": 5327.556708469999, "deser_mad_ns": 3811.5, "deser_cv": 0.01865885469128514, "deser_min_ns": 272723.0, "deser_max_ns": 300168.0, "deser_p5_ns": 278719.35, "deser_p25_ns": 281217.75, "deser_p50_ns": 285016.5, "deser_p75_ns": 288785.25, "deser_p95_ns": 295092.7, "deser_p99_ns": 297640.93, "deser_ci_low_ns": 284511.9972826087, "deser_ci_high_ns": 286623.32798913046, "total_mean_ns": 342172.1847826087, "total_median_ns": 341998.0, "total_std_ns": 6976.425820519876, "total_mad_ns": 4597.0, "total_cv": 0.02038864095558261, "total_min_ns": 324069.0, "total_max_ns": 360641.0, "total_p5_ns": 332286.6, "total_p25_ns": 337293.75, "total_p50_ns": 341998.0, "total_p75_ns": 346504.0, "total_p95_ns": 355672.65, "total_p99_ns": 359387.02, "total_ci_low_ns": 340726.05407608696, "total_ci_high_ns": 343625.86114130437, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 59.98231753660503}, {"serializer": "yas", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "7.x", "avg_time_ser_ns": 11196.409638554216, "avg_time_deser_ns": 11582.43373493976, "avg_time_total_ns": 22778.843373493975, "median_size_bytes": 32362.0, "avg_ops_per_sec": 43900.38526554973, "min_ops_per_sec": 35318.217136398955, "max_ops_per_sec": 49563.83822363204, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 11196.409638554216, "ser_median_ns": 10591.0, "ser_std_ns": 1658.582182027804, "ser_mad_ns": 697.0, "ser_cv": 0.14813518222096556, "ser_min_ns": 9232.0, "ser_max_ns": 17238.0, "ser_p5_ns": 9659.6, "ser_p25_ns": 10151.0, "ser_p50_ns": 10591.0, "ser_p75_ns": 11740.0, "ser_p95_ns": 15335.199999999988, "ser_p99_ns": 16181.019999999991, "ser_ci_low_ns": 10844.56234939759, "ser_ci_high_ns": 11578.703614457832, "deser_mean_ns": 11582.43373493976, "deser_median_ns": 11458.0, "deser_std_ns": 536.7519114617397, "deser_mad_ns": 366.0, "deser_cv": 0.046341893573072224, "deser_min_ns": 10542.0, "deser_max_ns": 12962.0, "deser_p5_ns": 10909.8, "deser_p25_ns": 11210.5, "deser_p50_ns": 11458.0, "deser_p75_ns": 11852.5, "deser_p95_ns": 12564.0, "deser_p99_ns": 12888.199999999999, "deser_ci_low_ns": 11472.22861445783, "deser_ci_high_ns": 11696.164457831326, "total_mean_ns": 22778.843373493975, "total_median_ns": 21987.0, "total_std_ns": 1877.2822174487928, "total_mad_ns": 808.0, "total_cv": 0.08241341259816751, "total_min_ns": 20176.0, "total_max_ns": 28314.0, "total_p5_ns": 20731.6, "total_p25_ns": 21470.5, "total_p50_ns": 21987.0, "total_p75_ns": 23765.5, "total_p95_ns": 26639.799999999996, "total_p99_ns": 28126.219999999998, "total_ci_low_ns": 22388.335542168676, "total_ci_high_ns": 23191.821987951807, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.39164878692853605, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.6462712573506372}, {"serializer": "avro", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "binary-1.11", "avg_time_ser_ns": 30547.261904761905, "avg_time_deser_ns": 33835.583333333336, "avg_time_total_ns": 64382.84523809524, "median_size_bytes": 28850.0, "avg_ops_per_sec": 15532.087721533335, "min_ops_per_sec": 13604.146543866571, "max_ops_per_sec": 17161.489617298783, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 30547.261904761905, "ser_median_ns": 29377.5, "ser_std_ns": 3196.201311267131, "ser_mad_ns": 899.5, "ser_cv": 0.10463135194349077, "ser_min_ns": 25932.0, "ser_max_ns": 39476.0, "ser_p5_ns": 27725.35, "ser_p25_ns": 28623.25, "ser_p50_ns": 29377.5, "ser_p75_ns": 30717.75, "ser_p95_ns": 38224.35, "ser_p99_ns": 38779.630000000005, "ser_ci_low_ns": 29914.197916666668, "ser_ci_high_ns": 31306.826785714286, "deser_mean_ns": 33835.583333333336, "deser_median_ns": 33615.5, "deser_std_ns": 869.6513109346997, "deser_mad_ns": 485.5, "deser_cv": 0.02570227036925228, "deser_min_ns": 32221.0, "deser_max_ns": 36169.0, "deser_p5_ns": 32726.45, "deser_p25_ns": 33180.5, "deser_p50_ns": 33615.5, "deser_p75_ns": 34232.0, "deser_p95_ns": 35416.5, "deser_p99_ns": 35942.41, "deser_ci_low_ns": 33657.00119047619, "deser_ci_high_ns": 34015.82410714286, "total_mean_ns": 64382.84523809524, "total_median_ns": 62932.0, "total_std_ns": 3498.5426965890483, "total_mad_ns": 1472.5, "total_cv": 0.05433967206095088, "total_min_ns": 58270.0, "total_max_ns": 73507.0, "total_p5_ns": 60872.2, "total_p25_ns": 62065.0, "total_p50_ns": 62932.0, "total_p75_ns": 65355.5, "total_p95_ns": 72042.95, "total_p99_ns": 73102.79, "total_ci_low_ns": 63665.12410714286, "total_ci_high_ns": 65176.049107142855, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.295082728127102}, {"serializer": "yyjson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "0.10.0", "avg_time_ser_ns": 99173.29411764706, "avg_time_deser_ns": 878359.8117647059, "avg_time_total_ns": 977533.1058823529, "median_size_bytes": 65966.0, "avg_ops_per_sec": 1022.9832565080932, "min_ops_per_sec": 972.3114858183508, "max_ops_per_sec": 1061.2038721206886, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 99173.29411764706, "ser_median_ns": 98098.0, "ser_std_ns": 2975.8615072082966, "ser_mad_ns": 1453.0, "ser_cv": 0.030006682077920076, "ser_min_ns": 93876.0, "ser_max_ns": 107593.0, "ser_p5_ns": 95793.0, "ser_p25_ns": 97091.0, "ser_p50_ns": 98098.0, "ser_p75_ns": 100774.0, "ser_p95_ns": 105745.4, "ser_p99_ns": 107025.16, "ser_ci_low_ns": 98530.77176470587, "ser_ci_high_ns": 99831.24264705881, "deser_mean_ns": 878359.8117647059, "deser_median_ns": 876424.0, "deser_std_ns": 16827.033213661565, "deser_mad_ns": 10734.0, "deser_cv": 0.019157335055954464, "deser_min_ns": 843971.0, "deser_max_ns": 926332.0, "deser_p5_ns": 854131.0, "deser_p25_ns": 865815.0, "deser_p50_ns": 876424.0, "deser_p75_ns": 888342.0, "deser_p95_ns": 904513.6, "deser_p99_ns": 921888.4, "deser_ci_low_ns": 874786.8938235295, "deser_ci_high_ns": 881969.5088235294, "total_mean_ns": 977533.1058823529, "total_median_ns": 975553.0, "total_std_ns": 17909.1060238078, "total_mad_ns": 12692.0, "total_cv": 0.01832071560138361, "total_min_ns": 942326.0, "total_max_ns": 1028477.0, "total_p5_ns": 950240.2, "total_p25_ns": 963560.0, "total_p50_ns": 975553.0, "total_p75_ns": 988683.0, "total_p95_ns": 1008498.6, "total_p99_ns": 1025208.5599999999, "total_ci_low_ns": 973875.645882353, "total_ci_high_ns": 981331.2794117647, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 72.14277268908813}, {"serializer": "jsoncons_bson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 197306.2888888889, "avg_time_deser_ns": 1145417.411111111, "avg_time_total_ns": 1342723.7, "median_size_bytes": 46754.0, "avg_ops_per_sec": 744.7548590972216, "min_ops_per_sec": 697.6010893738612, "max_ops_per_sec": 778.0333184988314, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 197306.2888888889, "ser_median_ns": 192877.5, "ser_std_ns": 15568.97410924952, "ser_mad_ns": 10359.0, "ser_cv": 0.07890764251319447, "ser_min_ns": 171916.0, "ser_max_ns": 241584.0, "ser_p5_ns": 177636.8, "ser_p25_ns": 185565.25, "ser_p50_ns": 192877.5, "ser_p75_ns": 207224.75, "ser_p95_ns": 230043.24999999997, "ser_p99_ns": 240497.31, "ser_ci_low_ns": 194137.48527777777, "ser_ci_high_ns": 200595.4436111111, "deser_mean_ns": 1145417.411111111, "deser_median_ns": 1142351.0, "deser_std_ns": 27544.754219838953, "deser_mad_ns": 20316.0, "deser_cv": 0.024047787254359257, "deser_min_ns": 1094166.0, "deser_max_ns": 1218451.0, "deser_p5_ns": 1108002.15, "deser_p25_ns": 1123995.25, "deser_p50_ns": 1142351.0, "deser_p75_ns": 1164608.75, "deser_p95_ns": 1188509.3, "deser_p99_ns": 1212841.33, "deser_ci_low_ns": 1139990.8055555555, "deser_ci_high_ns": 1151219.9536111113, "total_mean_ns": 1342723.7, "total_median_ns": 1345565.5, "total_std_ns": 34088.90336648003, "total_mad_ns": 26505.0, "total_cv": 0.02538787642348164, "total_min_ns": 1285292.0, "total_max_ns": 1433484.0, "total_p5_ns": 1294104.5, "total_p25_ns": 1312340.0, "total_p50_ns": 1345565.5, "total_p75_ns": 1366226.75, "total_p95_ns": 1398075.3, "total_p99_ns": 1422582.39, "total_ci_low_ns": 1335579.936111111, "total_ci_high_ns": 1350006.2899999998, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 51.83464991788101}, {"serializer": "capnproto", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "1.0.x", "avg_time_ser_ns": 12022.058823529413, "avg_time_deser_ns": 32705.717647058824, "avg_time_total_ns": 44727.77647058824, "median_size_bytes": 35632.0, "avg_ops_per_sec": 22357.47177500703, "min_ops_per_sec": 18219.914366402478, "max_ops_per_sec": 25483.550368237302, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 12022.058823529413, "ser_median_ns": 11113.0, "ser_std_ns": 2235.449961912117, "ser_mad_ns": 750.0, "ser_cv": 0.18594568490522806, "ser_min_ns": 9486.0, "ser_max_ns": 19748.0, "ser_p5_ns": 9794.8, "ser_p25_ns": 10580.0, "ser_p50_ns": 11113.0, "ser_p75_ns": 13183.0, "ser_p95_ns": 16871.799999999996, "ser_p99_ns": 18775.279999999995, "ser_ci_low_ns": 11549.479705882353, "ser_ci_high_ns": 12506.772352941176, "deser_mean_ns": 32705.717647058824, "deser_median_ns": 32521.0, "deser_std_ns": 1983.1918573696432, "deser_mad_ns": 1308.0, "deser_cv": 0.06063746647516199, "deser_min_ns": 29755.0, "deser_max_ns": 37821.0, "deser_p5_ns": 30110.0, "deser_p25_ns": 31259.0, "deser_p50_ns": 32521.0, "deser_p75_ns": 33843.0, "deser_p95_ns": 36649.4, "deser_p99_ns": 37701.72, "deser_ci_low_ns": 32266.464411764704, "deser_ci_high_ns": 33131.18235294118, "total_mean_ns": 44727.77647058824, "total_median_ns": 43883.0, "total_std_ns": 3494.3846327135393, "total_mad_ns": 2178.0, "total_cv": 0.07812560579691126, "total_min_ns": 39241.0, "total_max_ns": 54885.0, "total_p5_ns": 40592.2, "total_p25_ns": 41956.0, "total_p50_ns": 43883.0, "total_p75_ns": 47438.0, "total_p95_ns": 51329.399999999994, "total_p99_ns": 52800.95999999999, "total_ci_low_ns": 43970.65176470588, "total_ci_high_ns": 45460.352647058826, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.254557271132448}, {"serializer": "zpp_bits", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "4.4.25", "avg_time_ser_ns": 16278.728260869566, "avg_time_deser_ns": 11659.380434782608, "avg_time_total_ns": 27938.108695652172, "median_size_bytes": 30355.0, "avg_ops_per_sec": 35793.40358696591, "min_ops_per_sec": 25589.191125668516, "max_ops_per_sec": 44672.77194549922, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 16278.728260869566, "ser_median_ns": 14021.0, "ser_std_ns": 4422.821863136554, "ser_mad_ns": 1613.0, "ser_cv": 0.27169332838905064, "ser_min_ns": 11696.0, "ser_max_ns": 26870.0, "ser_p5_ns": 11906.35, "ser_p25_ns": 12886.25, "ser_p50_ns": 14021.0, "ser_p75_ns": 20494.0, "ser_p95_ns": 25255.45, "ser_p99_ns": 26803.57, "ser_ci_low_ns": 15419.574184782608, "ser_ci_high_ns": 17218.769021739132, "deser_mean_ns": 11659.380434782608, "deser_median_ns": 11577.0, "deser_std_ns": 490.97565666453517, "deser_mad_ns": 258.5, "deser_cv": 0.042109926801928696, "deser_min_ns": 10576.0, "deser_max_ns": 12896.0, "deser_p5_ns": 10930.25, "deser_p25_ns": 11338.0, "deser_p50_ns": 11577.0, "deser_p75_ns": 11851.75, "deser_p95_ns": 12651.0, "deser_p99_ns": 12748.58, "deser_ci_low_ns": 11557.720380434783, "deser_ci_high_ns": 11764.864673913044, "total_mean_ns": 27938.108695652172, "total_median_ns": 25950.5, "total_std_ns": 4501.848620183095, "total_mad_ns": 2166.5, "total_cv": 0.16113648454963914, "total_min_ns": 22385.0, "total_max_ns": 39079.0, "total_p5_ns": 23267.4, "total_p25_ns": 24381.0, "total_p50_ns": 25950.5, "total_p75_ns": 31995.75, "total_p95_ns": 36452.5, "total_p99_ns": 38512.98, "total_ci_low_ns": 27070.707336956522, "total_ci_high_ns": 28886.230434782607, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.9192972007147111, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.777127033701916}, {"serializer": "nlohmann_msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 62198.862068965514, "avg_time_deser_ns": 269423.8275862069, "avg_time_total_ns": 331622.6896551724, "median_size_bytes": 34650.0, "avg_ops_per_sec": 3015.475210818111, "min_ops_per_sec": 2834.876923818352, "max_ops_per_sec": 3164.336660105942, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 62198.862068965514, "ser_median_ns": 60260.0, "ser_std_ns": 5048.294713627319, "ser_mad_ns": 2570.0, "ser_cv": 0.08116377929920675, "ser_min_ns": 56232.0, "ser_max_ns": 79217.0, "ser_p5_ns": 57081.9, "ser_p25_ns": 58447.5, "ser_p50_ns": 60260.0, "ser_p75_ns": 65017.0, "ser_p95_ns": 70367.1, "ser_p99_ns": 78829.14, "ser_ci_low_ns": 61136.893103448274, "ser_ci_high_ns": 63286.70517241379, "deser_mean_ns": 269423.8275862069, "deser_median_ns": 268657.0, "deser_std_ns": 4396.803958709459, "deser_mad_ns": 2794.0, "deser_cv": 0.016319283999863092, "deser_min_ns": 259790.0, "deser_max_ns": 280134.0, "deser_p5_ns": 261992.0, "deser_p25_ns": 266718.0, "deser_p50_ns": 268657.0, "deser_p75_ns": 272440.0, "deser_p95_ns": 277590.4, "deser_p99_ns": 278871.52, "deser_ci_low_ns": 268540.25373563217, "deser_ci_high_ns": 270312.7014367816, "total_mean_ns": 331622.6896551724, "total_median_ns": 330499.0, "total_std_ns": 7450.19598666877, "total_mad_ns": 4716.0, "total_cv": 0.022465881313536256, "total_min_ns": 316022.0, "total_max_ns": 352749.0, "total_p5_ns": 321312.5, "total_p25_ns": 326663.5, "total_p50_ns": 330499.0, "total_p75_ns": 336106.5, "total_p95_ns": 347149.2, "total_p99_ns": 349861.12, "total_ci_low_ns": 330009.35086206894, "total_ci_high_ns": 333189.01666666666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 55.08311330734964}, {"serializer": "jsoncons_msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 114472.2967032967, "avg_time_deser_ns": 1119988.4945054946, "avg_time_total_ns": 1234460.7912087913, "median_size_bytes": 34650.0, "avg_ops_per_sec": 810.0702809854286, "min_ops_per_sec": 768.1046097030047, "max_ops_per_sec": 855.597403775238, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 114472.2967032967, "ser_median_ns": 113143.0, "ser_std_ns": 12344.368226032384, "ser_mad_ns": 8307.0, "ser_cv": 0.1078371674329906, "ser_min_ns": 92816.0, "ser_max_ns": 146942.0, "ser_p5_ns": 96757.0, "ser_p25_ns": 105136.0, "ser_p50_ns": 113143.0, "ser_p75_ns": 123838.5, "ser_p95_ns": 137679.0, "ser_p99_ns": 144360.8, "ser_ci_low_ns": 111948.50137362638, "ser_ci_high_ns": 116874.98818681319, "deser_mean_ns": 1119988.4945054946, "deser_median_ns": 1117784.0, "deser_std_ns": 22922.180593561738, "deser_mad_ns": 13905.0, "deser_cv": 0.02046644291973955, "deser_min_ns": 1071509.0, "deser_max_ns": 1176067.0, "deser_p5_ns": 1086708.0, "deser_p25_ns": 1103228.5, "deser_p50_ns": 1117784.0, "deser_p75_ns": 1131479.0, "deser_p95_ns": 1163870.0, "deser_p99_ns": 1173874.6, "deser_ci_low_ns": 1115259.5604395603, "deser_ci_high_ns": 1124686.297802198, "total_mean_ns": 1234460.7912087913, "total_median_ns": 1233763.0, "total_std_ns": 28170.110445693826, "total_mad_ns": 18872.0, "total_cv": 0.022819769284133755, "total_min_ns": 1168774.0, "total_max_ns": 1301906.0, "total_p5_ns": 1189820.5, "total_p25_ns": 1214875.5, "total_p50_ns": 1233763.0, "total_p75_ns": 1252491.0, "total_p95_ns": 1282809.5, "total_p99_ns": 1298704.7, "total_ci_low_ns": 1228528.4467032966, "total_ci_high_ns": 1240206.9423076923, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 57.42093150808596}, {"serializer": "thrift", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "TBinaryProtocol", "avg_time_ser_ns": 32425.34831460674, "avg_time_deser_ns": 22085.101123595505, "avg_time_total_ns": 54510.449438202246, "median_size_bytes": 31853.0, "avg_ops_per_sec": 18345.106494373824, "min_ops_per_sec": 15365.467648007867, "max_ops_per_sec": 20673.971469919372, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 32425.34831460674, "ser_median_ns": 31145.0, "ser_std_ns": 3565.533598664771, "ser_mad_ns": 1363.0, "ser_cv": 0.109961304472976, "ser_min_ns": 27861.0, "ser_max_ns": 43585.0, "ser_p5_ns": 28925.4, "ser_p25_ns": 29840.0, "ser_p50_ns": 31145.0, "ser_p75_ns": 34329.0, "ser_p95_ns": 39812.0, "ser_p99_ns": 42501.72000000001, "ser_ci_low_ns": 31731.627808988764, "ser_ci_high_ns": 33212.85758426967, "deser_mean_ns": 22085.101123595505, "deser_median_ns": 21849.0, "deser_std_ns": 1051.830439637836, "deser_mad_ns": 724.0, "deser_cv": 0.047626245121154126, "deser_min_ns": 20170.0, "deser_max_ns": 24503.0, "deser_p5_ns": 20629.2, "deser_p25_ns": 21350.0, "deser_p50_ns": 21849.0, "deser_p75_ns": 22727.0, "deser_p95_ns": 23960.199999999997, "deser_p99_ns": 24353.4, "deser_ci_low_ns": 21864.968258426965, "deser_ci_high_ns": 22308.0654494382, "total_mean_ns": 54510.449438202246, "total_median_ns": 53460.0, "total_std_ns": 3950.4819499168707, "total_mad_ns": 2416.0, "total_cv": 0.07247201207532655, "total_min_ns": 48370.0, "total_max_ns": 65081.0, "total_p5_ns": 49966.8, "total_p25_ns": 51372.0, "total_p50_ns": 53460.0, "total_p75_ns": 56829.0, "total_p95_ns": 62121.799999999996, "total_p99_ns": 64766.840000000004, "total_ci_low_ns": 53673.44747191011, "total_ci_high_ns": 55333.82162921348, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.489979042044}, {"serializer": "cereal", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "1.3.2", "avg_time_ser_ns": 21145.275862068964, "avg_time_deser_ns": 24995.137931034482, "avg_time_total_ns": 46140.41379310345, "median_size_bytes": 32355.0, "avg_ops_per_sec": 21672.974249517214, "min_ops_per_sec": 17914.084052882376, "max_ops_per_sec": 24560.369387955594, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 21145.275862068964, "ser_median_ns": 19994.0, "ser_std_ns": 2840.4068071302713, "ser_mad_ns": 1243.0, "ser_cv": 0.13432819820645986, "ser_min_ns": 17002.0, "ser_max_ns": 29514.0, "ser_p5_ns": 18263.9, "ser_p25_ns": 19234.0, "ser_p50_ns": 19994.0, "ser_p75_ns": 22531.0, "ser_p95_ns": 26903.800000000003, "ser_p99_ns": 29140.760000000002, "ser_ci_low_ns": 20560.237643678163, "ser_ci_high_ns": 21747.431034482757, "deser_mean_ns": 24995.137931034482, "deser_median_ns": 24844.0, "deser_std_ns": 1169.3804876685156, "deser_mad_ns": 629.0, "deser_cv": 0.04678431825001408, "deser_min_ns": 22613.0, "deser_max_ns": 28068.0, "deser_p5_ns": 23288.2, "deser_p25_ns": 24348.0, "deser_p50_ns": 24844.0, "deser_p75_ns": 25635.0, "deser_p95_ns": 27267.2, "deser_p99_ns": 27985.44, "deser_ci_low_ns": 24759.108333333334, "deser_ci_high_ns": 25233.97959770115, "total_mean_ns": 46140.41379310345, "total_median_ns": 45198.0, "total_std_ns": 3450.121988243463, "total_mad_ns": 2054.0, "total_cv": 0.07477440500889371, "total_min_ns": 40716.0, "total_max_ns": 55822.0, "total_p5_ns": 42130.3, "total_p25_ns": 43520.5, "total_p50_ns": 45198.0, "total_p75_ns": 48256.5, "total_p95_ns": 52677.5, "total_p99_ns": 54546.62, "total_ci_low_ns": 45427.78189655173, "total_ci_high_ns": 46849.71149425287, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.823532128500766}, {"serializer": "arduinojson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "7.2.1", "avg_time_ser_ns": 150055.6551724138, "avg_time_deser_ns": 900684.4712643678, "avg_time_total_ns": 1050740.1264367816, "median_size_bytes": 45907.0, "avg_ops_per_sec": 951.7101087508203, "min_ops_per_sec": 916.1586566915312, "max_ops_per_sec": 985.7616586031363, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 150055.6551724138, "ser_median_ns": 149555.0, "ser_std_ns": 4404.163275672358, "ser_mad_ns": 3309.0, "ser_cv": 0.029350198568737575, "ser_min_ns": 141983.0, "ser_max_ns": 164745.0, "ser_p5_ns": 144662.8, "ser_p25_ns": 146212.0, "ser_p50_ns": 149555.0, "ser_p75_ns": 152656.5, "ser_p95_ns": 158072.9, "ser_p99_ns": 160398.56, "ser_ci_low_ns": 149119.93362068964, "ser_ci_high_ns": 150994.89022988506, "deser_mean_ns": 900684.4712643678, "deser_median_ns": 900382.0, "deser_std_ns": 13853.393914479802, "deser_mad_ns": 9251.0, "deser_cv": 0.01538096231972625, "deser_min_ns": 868581.0, "deser_max_ns": 940199.0, "deser_p5_ns": 881554.2, "deser_p25_ns": 891690.0, "deser_p50_ns": 900382.0, "deser_p75_ns": 909772.0, "deser_p95_ns": 922778.3, "deser_p99_ns": 936972.28, "deser_ci_low_ns": 897901.2485632184, "deser_ci_high_ns": 903587.3574712643, "total_mean_ns": 1050740.1264367816, "total_median_ns": 1048660.0, "total_std_ns": 15552.50193198165, "total_mad_ns": 10431.0, "total_cv": 0.014801473305033596, "total_min_ns": 1014444.0, "total_max_ns": 1091514.0, "total_p5_ns": 1027703.8, "total_p25_ns": 1039822.0, "total_p50_ns": 1048660.0, "total_p75_ns": 1062297.5, "total_p95_ns": 1076747.6, "total_p99_ns": 1085909.38, "total_ci_low_ns": 1047491.3566091955, "total_ci_high_ns": 1053836.3132183908, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 88.87236907523433}, {"serializer": "nlohmann_json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 221629.0652173913, "avg_time_deser_ns": 663249.8478260869, "avg_time_total_ns": 884878.9130434783, "median_size_bytes": 65970.0, "avg_ops_per_sec": 1130.0981244547584, "min_ops_per_sec": 1067.6118590325302, "max_ops_per_sec": 1184.0639205066846, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 221629.0652173913, "ser_median_ns": 218800.0, "ser_std_ns": 11444.441017083453, "ser_mad_ns": 7615.5, "ser_cv": 0.051637816573642276, "ser_min_ns": 206278.0, "ser_max_ns": 253959.0, "ser_p5_ns": 209037.7, "ser_p25_ns": 211564.25, "ser_p50_ns": 218800.0, "ser_p75_ns": 227751.5, "ser_p95_ns": 244474.15, "ser_p99_ns": 252231.82, "ser_ci_low_ns": 219291.4804347826, "ser_ci_high_ns": 224167.68396739132, "deser_mean_ns": 663249.8478260869, "deser_median_ns": 660394.5, "deser_std_ns": 12661.916618747144, "deser_mad_ns": 6570.5, "deser_cv": 0.019090719221796594, "deser_min_ns": 638271.0, "deser_max_ns": 693494.0, "deser_p5_ns": 647339.3, "deser_p25_ns": 654799.0, "deser_p50_ns": 660394.5, "deser_p75_ns": 668362.0, "deser_p95_ns": 690191.45, "deser_p99_ns": 693290.16, "deser_ci_low_ns": 660730.9038043479, "deser_ci_high_ns": 665823.14375, "total_mean_ns": 884878.9130434783, "total_median_ns": 882055.0, "total_std_ns": 19104.91198886416, "total_mad_ns": 12998.0, "total_cv": 0.021590425206488618, "total_min_ns": 844549.0, "total_max_ns": 936670.0, "total_p5_ns": 858845.45, "total_p25_ns": 871364.5, "total_p50_ns": 882055.0, "total_p75_ns": 897407.25, "total_p95_ns": 919524.65, "total_p99_ns": 931950.74, "total_ci_low_ns": 881179.0086956521, "total_ci_high_ns": 888971.0222826087, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 60.02892410777149}, {"serializer": "custom_binary", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "harness", "avg_time_ser_ns": 69655.74712643678, "avg_time_deser_ns": 25304.287356321838, "avg_time_total_ns": 94960.03448275862, "median_size_bytes": 30351.0, "avg_ops_per_sec": 10530.745965362561, "min_ops_per_sec": 9309.513391735014, "max_ops_per_sec": 11414.482695644234, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 69655.74712643678, "ser_median_ns": 68516.0, "ser_std_ns": 3940.0735922131707, "ser_mad_ns": 2254.0, "ser_cv": 0.05656494625003851, "ser_min_ns": 63206.0, "ser_max_ns": 81986.0, "ser_p5_ns": 65448.1, "ser_p25_ns": 66843.0, "ser_p50_ns": 68516.0, "ser_p75_ns": 72020.5, "ser_p95_ns": 76214.0, "ser_p99_ns": 80926.48, "ser_ci_low_ns": 68846.8327586207, "ser_ci_high_ns": 70488.23362068966, "deser_mean_ns": 25304.287356321838, "deser_median_ns": 24965.0, "deser_std_ns": 934.8968094785447, "deser_mad_ns": 466.0, "deser_cv": 0.036946182135612564, "deser_min_ns": 23926.0, "deser_max_ns": 27906.0, "deser_p5_ns": 24134.6, "deser_p25_ns": 24644.5, "deser_p50_ns": 24965.0, "deser_p75_ns": 25972.5, "deser_p95_ns": 26941.8, "deser_p99_ns": 27765.82, "deser_ci_low_ns": 25117.87212643678, "deser_ci_high_ns": 25491.86695402299, "total_mean_ns": 94960.03448275862, "total_median_ns": 93489.0, "total_std_ns": 4228.127251743572, "total_mad_ns": 2612.0, "total_cv": 0.04452533399733811, "total_min_ns": 87608.0, "total_max_ns": 107417.0, "total_p5_ns": 90195.4, "total_p25_ns": 91733.5, "total_p50_ns": 93489.0, "total_p75_ns": 98372.5, "total_p95_ns": 102306.1, "total_p99_ns": 105216.26, "total_ci_low_ns": 94103.5893678161, "total_ci_high_ns": 95856.11522988505, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.114801108435078}, {"serializer": "jsoncons_cbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 106686.29787234042, "avg_time_deser_ns": 1142071.5638297873, "avg_time_total_ns": 1248757.8617021276, "median_size_bytes": 34549.0, "avg_ops_per_sec": 800.7957592650856, "min_ops_per_sec": 759.8362704804368, "max_ops_per_sec": 844.510428859286, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 106686.29787234042, "ser_median_ns": 107295.5, "ser_std_ns": 9659.703514929406, "ser_mad_ns": 7190.5, "ser_cv": 0.09054305667713856, "ser_min_ns": 89616.0, "ser_max_ns": 130143.0, "ser_p5_ns": 92439.45, "ser_p25_ns": 98725.75, "ser_p50_ns": 107295.5, "ser_p75_ns": 112598.0, "ser_p95_ns": 123460.74999999999, "ser_p99_ns": 128973.98999999999, "ser_ci_low_ns": 104761.32792553192, "ser_ci_high_ns": 108607.91382978723, "deser_mean_ns": 1142071.5638297873, "deser_median_ns": 1139877.5, "deser_std_ns": 25126.467030003652, "deser_mad_ns": 17952.5, "deser_cv": 0.02200078158477682, "deser_min_ns": 1091885.0, "deser_max_ns": 1200715.0, "deser_p5_ns": 1109386.25, "deser_p25_ns": 1121884.0, "deser_p50_ns": 1139877.5, "deser_p75_ns": 1156960.25, "deser_p95_ns": 1187511.2, "deser_p99_ns": 1194515.6199999999, "deser_ci_low_ns": 1136826.9656914894, "deser_ci_high_ns": 1147073.7497340427, "total_mean_ns": 1248757.8617021276, "total_median_ns": 1244503.5, "total_std_ns": 28202.435786133625, "total_mad_ns": 17582.5, "total_cv": 0.022584390978481698, "total_min_ns": 1184118.0, "total_max_ns": 1316073.0, "total_p5_ns": 1208381.25, "total_p25_ns": 1231332.25, "total_p50_ns": 1244503.5, "total_p75_ns": 1269603.25, "total_p95_ns": 1300356.15, "total_p99_ns": 1315521.51, "total_ci_low_ns": 1243190.8659574469, "total_ci_high_ns": 1254246.0449468086, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 57.62116142109494}, {"serializer": "cista", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "0.15", "avg_time_ser_ns": 9641.060975609756, "avg_time_deser_ns": 45160.829268292684, "avg_time_total_ns": 54801.89024390244, "median_size_bytes": 36024.0, "avg_ops_per_sec": 18247.545760727942, "min_ops_per_sec": 16511.458952513043, "max_ops_per_sec": 20022.024226649315, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 9641.060975609756, "ser_median_ns": 8951.0, "ser_std_ns": 1937.628462312749, "ser_mad_ns": 792.0, "ser_cv": 0.20097668370883862, "ser_min_ns": 7356.0, "ser_max_ns": 16196.0, "ser_p5_ns": 7913.3, "ser_p25_ns": 8359.75, "ser_p50_ns": 8951.0, "ser_p75_ns": 10175.25, "ser_p95_ns": 14363.900000000001, "ser_p99_ns": 16095.56, "ser_ci_low_ns": 9247.84725609756, "ser_ci_high_ns": 10119.510670731706, "deser_mean_ns": 45160.829268292684, "deser_median_ns": 44942.0, "deser_std_ns": 1857.725669158081, "deser_mad_ns": 1495.5, "deser_cv": 0.04113577406034007, "deser_min_ns": 42038.0, "deser_max_ns": 49364.0, "deser_p5_ns": 42442.05, "deser_p25_ns": 43586.0, "deser_p50_ns": 44942.0, "deser_p75_ns": 46452.25, "deser_p95_ns": 48675.65, "deser_p99_ns": 49167.17, "deser_ci_low_ns": 44755.2125, "deser_ci_high_ns": 45575.792987804874, "total_mean_ns": 54801.89024390244, "total_median_ns": 54916.5, "total_std_ns": 2847.111106801339, "total_mad_ns": 2462.0, "total_cv": 0.051952790207234215, "total_min_ns": 49945.0, "total_max_ns": 60564.0, "total_p5_ns": 50852.65, "total_p25_ns": 52112.25, "total_p50_ns": 54916.5, "total_p75_ns": 56844.0, "total_p95_ns": 59628.25, "total_p99_ns": 60323.43, "total_ci_low_ns": 54209.45182926829, "total_ci_high_ns": 55404.88231707316, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.0880908419144}, {"serializer": "rapidjson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "1.1.0", "avg_time_ser_ns": 209323.29545454544, "avg_time_deser_ns": 1025213.875, "avg_time_total_ns": 1234537.1704545454, "median_size_bytes": 65833.0, "avg_ops_per_sec": 810.020162966668, "min_ops_per_sec": 757.9966754265815, "max_ops_per_sec": 847.1517909636012, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 209323.29545454544, "ser_median_ns": 208187.0, "ser_std_ns": 7401.672757752309, "ser_mad_ns": 5150.5, "ser_cv": 0.03536000492290922, "ser_min_ns": 196519.0, "ser_max_ns": 230107.0, "ser_p5_ns": 198997.45, "ser_p25_ns": 203406.5, "ser_p50_ns": 208187.0, "ser_p75_ns": 214271.75, "ser_p95_ns": 221880.44999999998, "ser_p99_ns": 230020.0, "ser_ci_low_ns": 207781.71278409092, "ser_ci_high_ns": 210859.1099431818, "deser_mean_ns": 1025213.875, "deser_median_ns": 1022510.0, "deser_std_ns": 22928.35916843177, "deser_mad_ns": 13242.5, "deser_cv": 0.022364464359626197, "deser_min_ns": 983464.0, "deser_max_ns": 1098617.0, "deser_p5_ns": 991522.5, "deser_p25_ns": 1009845.25, "deser_p50_ns": 1022510.0, "deser_p75_ns": 1035735.0, "deser_p95_ns": 1070295.15, "deser_p99_ns": 1084208.0599999998, "deser_ci_low_ns": 1020402.2505681819, "deser_ci_high_ns": 1029917.9471590909, "total_mean_ns": 1234537.1704545454, "total_median_ns": 1228185.5, "total_std_ns": 26105.42430762151, "total_mad_ns": 14673.5, "total_cv": 0.02114592005197359, "total_min_ns": 1180426.0, "total_max_ns": 1319267.0, "total_p5_ns": 1195992.2, "total_p25_ns": 1216712.75, "total_p50_ns": 1228185.5, "total_p75_ns": 1248656.5, "total_p95_ns": 1283333.25, "total_p99_ns": 1299144.7699999998, "total_ci_low_ns": 1229278.4267045455, "total_ci_high_ns": 1240102.490625, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 62.41751498072257}, {"serializer": "flexbuffers", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "flatbuffers-flex", "avg_time_ser_ns": 82785.36263736263, "avg_time_deser_ns": 169590.97802197802, "avg_time_total_ns": 252376.34065934067, "median_size_bytes": 40918.0, "avg_ops_per_sec": 3962.3365541614176, "min_ops_per_sec": 3738.485464768513, "max_ops_per_sec": 4148.000663680106, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 82785.36263736263, "ser_median_ns": 81850.0, "ser_std_ns": 3755.835872394626, "ser_mad_ns": 2253.0, "ser_cv": 0.045368356829538665, "ser_min_ns": 76834.0, "ser_max_ns": 93831.0, "ser_p5_ns": 78575.0, "ser_p25_ns": 79965.5, "ser_p50_ns": 81850.0, "ser_p75_ns": 84826.5, "ser_p95_ns": 90376.0, "ser_p99_ns": 92209.19999999998, "ser_ci_low_ns": 82006.82225274725, "ser_ci_high_ns": 83600.19642857142, "deser_mean_ns": 169590.97802197802, "deser_median_ns": 168394.0, "deser_std_ns": 3779.7076282521057, "deser_mad_ns": 1989.0, "deser_cv": 0.02228719754043919, "deser_min_ns": 162987.0, "deser_max_ns": 178725.0, "deser_p5_ns": 165150.0, "deser_p25_ns": 166936.0, "deser_p50_ns": 168394.0, "deser_p75_ns": 171219.0, "deser_p95_ns": 177345.5, "deser_p99_ns": 178332.6, "deser_ci_low_ns": 168854.51016483517, "deser_ci_high_ns": 170387.4989010989, "total_mean_ns": 252376.34065934067, "total_median_ns": 251421.0, "total_std_ns": 5625.307652267721, "total_mad_ns": 4322.0, "total_cv": 0.022289362138984338, "total_min_ns": 241080.0, "total_max_ns": 267488.0, "total_p5_ns": 245168.5, "total_p25_ns": 247717.0, "total_p50_ns": 251421.0, "total_p75_ns": 256456.5, "total_p95_ns": 261294.5, "total_p99_ns": 264698.0, "total_ci_low_ns": 251212.36483516483, "total_ci_high_ns": 253535.75824175825, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 53.09808753634136}, {"serializer": "nlohmann_bson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 221012.11956521738, "avg_time_deser_ns": 405731.51086956525, "avg_time_total_ns": 626743.6304347826, "median_size_bytes": 46754.0, "avg_ops_per_sec": 1595.5487242946263, "min_ops_per_sec": 1521.731852586792, "max_ops_per_sec": 1663.951652220793, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 221012.11956521738, "ser_median_ns": 219876.0, "ser_std_ns": 6521.302158517877, "ser_mad_ns": 4092.0, "ser_cv": 0.02950653643495572, "ser_min_ns": 206868.0, "ser_max_ns": 239618.0, "ser_p5_ns": 212720.85, "ser_p25_ns": 216631.75, "ser_p50_ns": 219876.0, "ser_p75_ns": 224920.5, "ser_p95_ns": 230859.35, "ser_p99_ns": 239158.45, "ser_ci_low_ns": 219675.67826086955, "ser_ci_high_ns": 222379.86413043478, "deser_mean_ns": 405731.51086956525, "deser_median_ns": 405343.0, "deser_std_ns": 8362.89932569732, "deser_mad_ns": 6262.0, "deser_cv": 0.02061190492149334, "deser_min_ns": 386042.0, "deser_max_ns": 428277.0, "deser_p5_ns": 393288.1, "deser_p25_ns": 399049.25, "deser_p50_ns": 405343.0, "deser_p75_ns": 411301.75, "deser_p95_ns": 419786.85, "deser_p99_ns": 426949.31, "deser_ci_low_ns": 404017.966576087, "deser_ci_high_ns": 407438.3736413044, "total_mean_ns": 626743.6304347826, "total_median_ns": 626111.0, "total_std_ns": 11487.447866140908, "total_mad_ns": 7562.5, "total_cv": 0.018328782788222153, "total_min_ns": 600979.0, "total_max_ns": 657146.0, "total_p5_ns": 609797.65, "total_p25_ns": 618934.75, "total_p50_ns": 626111.0, "total_p75_ns": 633982.0, "total_p95_ns": 647527.1, "total_p99_ns": 656156.83, "total_ci_low_ns": 624477.2991847825, "total_ci_high_ns": 629042.33125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 69.64535811036566}, {"serializer": "bitsery", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "5.2.4", "avg_time_ser_ns": 8047.657534246576, "avg_time_deser_ns": 13594.547945205479, "avg_time_total_ns": 21642.205479452055, "median_size_bytes": 28848.0, "avg_ops_per_sec": 46206.011718604124, "min_ops_per_sec": 35294.532876857375, "max_ops_per_sec": 51554.36407691911, "runs": 73, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 26, "ser_mean_ns": 8047.657534246576, "ser_median_ns": 7659.0, "ser_std_ns": 1324.7456592281537, "ser_mad_ns": 596.0, "ser_cv": 0.16461257870265186, "ser_min_ns": 6122.0, "ser_max_ns": 14171.0, "ser_p5_ns": 6785.0, "ser_p25_ns": 7137.0, "ser_p50_ns": 7659.0, "ser_p75_ns": 8443.0, "ser_p95_ns": 10353.8, "ser_p99_ns": 12144.200000000003, "ser_ci_low_ns": 7773.655821917809, "ser_ci_high_ns": 8348.988698630137, "deser_mean_ns": 13594.547945205479, "deser_median_ns": 13578.0, "deser_std_ns": 520.3107789553355, "deser_mad_ns": 344.0, "deser_cv": 0.03827348883188415, "deser_min_ns": 12585.0, "deser_max_ns": 14874.0, "deser_p5_ns": 12718.4, "deser_p25_ns": 13280.0, "deser_p50_ns": 13578.0, "deser_p75_ns": 13926.0, "deser_p95_ns": 14430.8, "deser_p99_ns": 14796.24, "deser_ci_low_ns": 13470.244178082192, "deser_ci_high_ns": 13707.741438356165, "total_mean_ns": 21642.205479452055, "total_median_ns": 21250.0, "total_std_ns": 1593.129676305452, "total_mad_ns": 939.0, "total_cv": 0.07361216849262571, "total_min_ns": 19397.0, "total_max_ns": 28333.0, "total_p5_ns": 19856.0, "total_p25_ns": 20421.0, "total_p50_ns": 21250.0, "total_p75_ns": 22390.0, "total_p95_ns": 24435.399999999998, "total_p99_ns": 25838.920000000006, "total_ci_low_ns": 21311.8948630137, "total_ci_high_ns": 22020.441438356163, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "msgpack-cxx", "avg_time_ser_ns": 28818.285714285714, "avg_time_deser_ns": 43476.78021978022, "avg_time_total_ns": 72295.06593406593, "median_size_bytes": 34650.0, "avg_ops_per_sec": 13832.202614103891, "min_ops_per_sec": 12132.535821312013, "max_ops_per_sec": 15198.723307242191, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 28818.285714285714, "ser_median_ns": 27608.0, "ser_std_ns": 2892.8164065327, "ser_mad_ns": 1244.0, "ser_cv": 0.10038127996970624, "ser_min_ns": 25000.0, "ser_max_ns": 36266.0, "ser_p5_ns": 26036.0, "ser_p25_ns": 26703.0, "ser_p50_ns": 27608.0, "ser_p75_ns": 29836.5, "ser_p95_ns": 34763.5, "ser_p99_ns": 36171.5, "ser_ci_low_ns": 28234.310164835162, "ser_ci_high_ns": 29414.457967032966, "deser_mean_ns": 43476.78021978022, "deser_median_ns": 42987.0, "deser_std_ns": 1562.363215717337, "deser_mad_ns": 822.0, "deser_cv": 0.03593557774562439, "deser_min_ns": 40726.0, "deser_max_ns": 47932.0, "deser_p5_ns": 41407.0, "deser_p25_ns": 42469.0, "deser_p50_ns": 42987.0, "deser_p75_ns": 44280.0, "deser_p95_ns": 46506.5, "deser_p99_ns": 47721.4, "deser_ci_low_ns": 43178.72884615385, "deser_ci_high_ns": 43794.78214285714, "total_mean_ns": 72295.06593406593, "total_median_ns": 71366.0, "total_std_ns": 3570.763002192475, "total_mad_ns": 2501.0, "total_cv": 0.04939151733327221, "total_min_ns": 65795.0, "total_max_ns": 82423.0, "total_p5_ns": 67736.0, "total_p25_ns": 69391.5, "total_p50_ns": 71366.0, "total_p75_ns": 75085.5, "total_p95_ns": 77476.5, "total_p99_ns": 81666.09999999999, "total_ci_low_ns": 71565.05, "total_ci_high_ns": 73075.44038461537, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.59433561206182}, {"serializer": "flatbuffers", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "flatbuffers", "avg_time_ser_ns": 3457.0526315789475, "avg_time_deser_ns": 45482.10526315789, "avg_time_total_ns": 48939.15789473684, "median_size_bytes": 32372.0, "avg_ops_per_sec": 20433.535087606095, "min_ops_per_sec": 18891.092849721357, "max_ops_per_sec": 21657.20968510417, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 3457.0526315789475, "ser_median_ns": 3279.5, "ser_std_ns": 676.6675775639882, "ser_mad_ns": 292.5, "ser_cv": 0.19573539939278628, "ser_min_ns": 2215.0, "ser_max_ns": 5874.0, "ser_p5_ns": 2580.75, "ser_p25_ns": 3080.75, "ser_p50_ns": 3279.5, "ser_p75_ns": 3844.0, "ser_p95_ns": 4736.0, "ser_p99_ns": 5495.25, "ser_ci_low_ns": 3303.8914473684213, "ser_ci_high_ns": 3614.567105263158, "deser_mean_ns": 45482.10526315789, "deser_median_ns": 45367.5, "deser_std_ns": 1203.568201407214, "deser_mad_ns": 932.5, "deser_cv": 0.026462455826163057, "deser_min_ns": 42924.0, "deser_max_ns": 48532.0, "deser_p5_ns": 43604.5, "deser_p25_ns": 44539.25, "deser_p50_ns": 45367.5, "deser_p75_ns": 46347.0, "deser_p95_ns": 47436.75, "deser_p99_ns": 48427.75, "deser_ci_low_ns": 45205.79144736842, "deser_ci_high_ns": 45747.65789473684, "total_mean_ns": 48939.15789473684, "total_median_ns": 48768.0, "total_std_ns": 1559.5059051091068, "total_mad_ns": 1165.5, "total_cv": 0.031866218631375835, "total_min_ns": 46174.0, "total_max_ns": 52935.0, "total_p5_ns": 46814.75, "total_p25_ns": 47602.75, "total_p50_ns": 48768.0, "total_p75_ns": 49910.0, "total_p95_ns": 52098.0, "total_p99_ns": 52710.0, "total_ci_low_ns": 48586.7884868421, "total_ci_high_ns": 49291.16611842105, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.231178071717398}, {"serializer": "simdjson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.10.1", "avg_time_ser_ns": 12541.802631578947, "avg_time_deser_ns": 911184.9210526316, "avg_time_total_ns": 923726.7236842106, "median_size_bytes": 65970.0, "avg_ops_per_sec": 1082.5712565850424, "min_ops_per_sec": 1032.6087517722149, "max_ops_per_sec": 1129.177958446251, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 12541.802631578947, "ser_median_ns": 12212.0, "ser_std_ns": 1161.4344810877835, "ser_mad_ns": 381.0, "ser_cv": 0.09260506764501404, "ser_min_ns": 11107.0, "ser_max_ns": 17423.0, "ser_p5_ns": 11406.25, "ser_p25_ns": 11923.0, "ser_p50_ns": 12212.0, "ser_p75_ns": 12876.5, "ser_p95_ns": 14784.5, "ser_p99_ns": 17073.5, "ser_ci_low_ns": 12300.593421052632, "ser_ci_high_ns": 12824.224342105264, "deser_mean_ns": 911184.9210526316, "deser_median_ns": 907817.5, "deser_std_ns": 17312.53321249332, "deser_mad_ns": 9882.0, "deser_cv": 0.019000021633910815, "deser_min_ns": 873872.0, "deser_max_ns": 955691.0, "deser_p5_ns": 889517.75, "deser_p25_ns": 898377.5, "deser_p50_ns": 907817.5, "deser_p75_ns": 920593.25, "deser_p95_ns": 948019.75, "deser_p99_ns": 952382.0, "deser_ci_low_ns": 907280.1177631579, "deser_ci_high_ns": 915317.8072368421, "total_mean_ns": 923726.7236842106, "total_median_ns": 920153.0, "total_std_ns": 17453.120491647474, "total_mad_ns": 9363.5, "total_cv": 0.01889424658197296, "total_min_ns": 885600.0, "total_max_ns": 968421.0, "total_p5_ns": 901728.0, "total_p25_ns": 911086.75, "total_p50_ns": 920153.0, "total_p75_ns": 933934.25, "total_p95_ns": 961967.75, "total_p99_ns": 966015.0, "total_ci_low_ns": 919681.3450657894, "total_ci_high_ns": 927864.6095394737, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 71.70458170275558}, {"serializer": "protobuf-wire", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "wire-v2", "avg_time_ser_ns": 94266.60638297872, "avg_time_deser_ns": 44986.71276595745, "avg_time_total_ns": 139253.31914893616, "median_size_bytes": 32347.0, "avg_ops_per_sec": 7181.1573764390205, "min_ops_per_sec": 5932.570404779279, "max_ops_per_sec": 8981.7401223313, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 94266.60638297872, "ser_median_ns": 94879.5, "ser_std_ns": 11935.642604895089, "ser_mad_ns": 7083.0, "ser_cv": 0.12661580874571773, "ser_min_ns": 69242.0, "ser_max_ns": 121936.0, "ser_p5_ns": 72258.65, "ser_p25_ns": 87549.25, "ser_p50_ns": 94879.5, "ser_p75_ns": 101394.0, "ser_p95_ns": 112409.95, "ser_p99_ns": 120633.99999999999, "ser_ci_low_ns": 91820.4875, "ser_ci_high_ns": 96588.91409574468, "deser_mean_ns": 44986.71276595745, "deser_median_ns": 44994.0, "deser_std_ns": 1312.1955468483388, "deser_mad_ns": 915.0, "deser_cv": 0.02916851368258473, "deser_min_ns": 42095.0, "deser_max_ns": 48170.0, "deser_p5_ns": 42770.35, "deser_p25_ns": 44016.0, "deser_p50_ns": 44994.0, "deser_p75_ns": 45863.5, "deser_p95_ns": 47242.8, "deser_p99_ns": 47490.17, "deser_ci_low_ns": 44733.01861702128, "deser_ci_high_ns": 45239.482978723405, "total_mean_ns": 139253.31914893616, "total_median_ns": 140394.5, "total_std_ns": 12247.075677472436, "total_mad_ns": 7063.0, "total_cv": 0.08794817784108809, "total_min_ns": 111337.0, "total_max_ns": 168561.0, "total_p5_ns": 116893.1, "total_p25_ns": 132401.25, "total_p50_ns": 140394.5, "total_p75_ns": 147180.75, "total_p95_ns": 157282.15, "total_p99_ns": 166463.84999999998, "total_ci_low_ns": 136832.96675531915, "total_ci_high_ns": 141654.48510638296, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.650527187242952}, {"serializer": "thrift", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "TBinaryProtocol", "avg_time_ser_ns": 36065.73626373626, "avg_time_deser_ns": 21813.626373626375, "avg_time_total_ns": 57879.36263736264, "median_size_bytes": 31853.0, "avg_ops_per_sec": 17277.31534062322, "min_ops_per_sec": 12616.54533755567, "max_ops_per_sec": 20205.693964559214, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 36065.73626373626, "ser_median_ns": 33737.0, "ser_std_ns": 6978.453255613413, "ser_mad_ns": 3507.0, "ser_cv": 0.19349260485304934, "ser_min_ns": 29067.0, "ser_max_ns": 58208.0, "ser_p5_ns": 29393.5, "ser_p25_ns": 30420.5, "ser_p50_ns": 33737.0, "ser_p75_ns": 40973.0, "ser_p95_ns": 48551.5, "ser_p99_ns": 57494.299999999996, "ser_ci_low_ns": 34639.06675824176, "ser_ci_high_ns": 37610.34120879121, "deser_mean_ns": 21813.626373626375, "deser_median_ns": 21705.0, "deser_std_ns": 969.5007265867616, "deser_mad_ns": 685.0, "deser_cv": 0.04444472963738529, "deser_min_ns": 20284.0, "deser_max_ns": 24009.0, "deser_p5_ns": 20410.5, "deser_p25_ns": 21054.0, "deser_p50_ns": 21705.0, "deser_p75_ns": 22454.5, "deser_p95_ns": 23532.5, "deser_p99_ns": 24002.7, "deser_ci_low_ns": 21611.38653846154, "deser_ci_high_ns": 22028.932967032968, "total_mean_ns": 57879.36263736264, "total_median_ns": 56058.0, "total_std_ns": 7249.791306600156, "total_mad_ns": 4775.0, "total_cv": 0.12525693055783974, "total_min_ns": 49491.0, "total_max_ns": 79261.0, "total_p5_ns": 50159.5, "total_p25_ns": 51901.0, "total_p50_ns": 56058.0, "total_p75_ns": 63226.0, "total_p95_ns": 71035.5, "total_p99_ns": 79169.2, "total_ci_low_ns": 56477.739285714284, "total_ci_high_ns": 59335.232967032964, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.930328839963899}, {"serializer": "bitsery", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "5.2.4", "avg_time_ser_ns": 12358.247422680412, "avg_time_deser_ns": 14173.855670103092, "avg_time_total_ns": 26532.103092783505, "median_size_bytes": 28848.0, "avg_ops_per_sec": 37690.18974873466, "min_ops_per_sec": 25585.26288857618, "max_ops_per_sec": 50228.539856346375, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 12358.247422680412, "ser_median_ns": 9864.0, "ser_std_ns": 4936.678267129055, "ser_mad_ns": 2335.0, "ser_cv": 0.3994642685393271, "ser_min_ns": 7087.0, "ser_max_ns": 23368.0, "ser_p5_ns": 7302.2, "ser_p25_ns": 8114.0, "ser_p50_ns": 9864.0, "ser_p75_ns": 16172.0, "ser_p95_ns": 21212.6, "ser_p99_ns": 22982.079999999998, "ser_ci_low_ns": 11417.407216494847, "ser_ci_high_ns": 13331.046391752578, "deser_mean_ns": 14173.855670103092, "deser_median_ns": 13925.0, "deser_std_ns": 984.5093954783893, "deser_mad_ns": 690.0, "deser_cv": 0.06945953298755642, "deser_min_ns": 12561.0, "deser_max_ns": 16677.0, "deser_p5_ns": 12878.8, "deser_p25_ns": 13391.0, "deser_p50_ns": 13925.0, "deser_p75_ns": 14829.0, "deser_p95_ns": 16063.8, "deser_p99_ns": 16357.319999999998, "deser_ci_low_ns": 13974.739690721648, "deser_ci_high_ns": 14377.569072164948, "total_mean_ns": 26532.103092783505, "total_median_ns": 24904.0, "total_std_ns": 5330.782692462822, "total_mad_ns": 3606.0, "total_cv": 0.2009182111881944, "total_min_ns": 19909.0, "total_max_ns": 39085.0, "total_p5_ns": 20406.8, "total_p25_ns": 22172.0, "total_p50_ns": 24904.0, "total_p75_ns": 30797.0, "total_p95_ns": 36145.2, "total_p99_ns": 38299.719999999994, "total_ci_low_ns": 25459.50051546392, "total_ci_high_ns": 27627.549226804123, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "cereal", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "1.3.2", "avg_time_ser_ns": 10105.360824742267, "avg_time_deser_ns": 23818.721649484534, "avg_time_total_ns": 33924.0824742268, "median_size_bytes": 32355.0, "avg_ops_per_sec": 29477.584272462835, "min_ops_per_sec": 22258.82562436006, "max_ops_per_sec": 38077.8310867413, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 10105.360824742267, "ser_median_ns": 9983.0, "ser_std_ns": 922.0012335671317, "ser_mad_ns": 635.0, "ser_cv": 0.09123882358655382, "ser_min_ns": 8842.0, "ser_max_ns": 12377.0, "ser_p5_ns": 8922.8, "ser_p25_ns": 9371.0, "ser_p50_ns": 9983.0, "ser_p75_ns": 10733.0, "ser_p95_ns": 11962.4, "ser_p99_ns": 12349.16, "ser_ci_low_ns": 9929.678092783504, "ser_ci_high_ns": 10284.166237113403, "deser_mean_ns": 23818.721649484534, "deser_median_ns": 22276.0, "deser_std_ns": 4870.6186310157, "deser_mad_ns": 3461.0, "deser_cv": 0.20448698728217038, "deser_min_ns": 16976.0, "deser_max_ns": 34567.0, "deser_p5_ns": 18077.6, "deser_p25_ns": 19495.0, "deser_p50_ns": 22276.0, "deser_p75_ns": 28943.0, "deser_p95_ns": 31199.799999999996, "deser_p99_ns": 34088.92, "deser_ci_low_ns": 22868.646907216495, "deser_ci_high_ns": 24777.672164948453, "total_mean_ns": 33924.0824742268, "total_median_ns": 33215.0, "total_std_ns": 5099.827126706729, "total_mad_ns": 4377.0, "total_cv": 0.1503305839024896, "total_min_ns": 26262.0, "total_max_ns": 44926.0, "total_p5_ns": 27630.4, "total_p25_ns": 29149.0, "total_p50_ns": 33215.0, "total_p75_ns": 38586.0, "total_p95_ns": 41721.99999999999, "total_p99_ns": 44675.439999999995, "total_ci_low_ns": 32931.23298969072, "total_ci_high_ns": 34938.298711340205, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.6688277181422043, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.4114730877959054}, {"serializer": "rapidjson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "1.1.0", "avg_time_ser_ns": 648596.551724138, "avg_time_deser_ns": 1941409.1149425288, "avg_time_total_ns": 2590005.6666666665, "median_size_bytes": 65833.0, "avg_ops_per_sec": 386.09954135235483, "min_ops_per_sec": 374.7708744566291, "max_ops_per_sec": 397.02989873355403, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 648596.551724138, "ser_median_ns": 647137.0, "ser_std_ns": 11677.83662542855, "ser_mad_ns": 4985.0, "ser_cv": 0.018004777537570665, "ser_min_ns": 627960.0, "ser_max_ns": 678387.0, "ser_p5_ns": 629533.3, "ser_p25_ns": 642841.0, "ser_p50_ns": 647137.0, "ser_p75_ns": 652639.5, "ser_p95_ns": 671326.5, "ser_p99_ns": 675464.72, "ser_ci_low_ns": 646163.434770115, "ser_ci_high_ns": 651160.999137931, "deser_mean_ns": 1941409.1149425288, "deser_median_ns": 1939829.0, "deser_std_ns": 22875.74112634731, "deser_mad_ns": 16113.0, "deser_cv": 0.011783060535916202, "deser_min_ns": 1889181.0, "deser_max_ns": 1996669.0, "deser_p5_ns": 1902850.2, "deser_p25_ns": 1924427.0, "deser_p50_ns": 1939829.0, "deser_p75_ns": 1956144.0, "deser_p95_ns": 1981615.3, "deser_p99_ns": 1994582.64, "deser_ci_low_ns": 1936471.917816092, "deser_ci_high_ns": 1946112.052586207, "total_mean_ns": 2590005.6666666665, "total_median_ns": 2590404.0, "total_std_ns": 29271.045776149804, "total_mad_ns": 20014.0, "total_cv": 0.011301537349075222, "total_min_ns": 2518702.0, "total_max_ns": 2668297.0, "total_p5_ns": 2541203.8, "total_p25_ns": 2569524.0, "total_p50_ns": 2590404.0, "total_p75_ns": 2607164.0, "total_p95_ns": 2637761.8, "total_p99_ns": 2661730.9, "total_ci_low_ns": 2584045.679310345, "total_ci_high_ns": 2596405.224712644, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 124.59106974736548}, {"serializer": "flatbuffers", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "flatbuffers", "avg_time_ser_ns": 8726.702127659575, "avg_time_deser_ns": 45620.62765957447, "avg_time_total_ns": 54347.32978723404, "median_size_bytes": 32372.0, "avg_ops_per_sec": 18400.16802876847, "min_ops_per_sec": 15080.909077199174, "max_ops_per_sec": 21822.14948172395, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 8726.702127659575, "ser_median_ns": 6877.5, "ser_std_ns": 5170.378311962543, "ser_mad_ns": 3761.0, "ser_cv": 0.592477918499688, "ser_min_ns": 2963.0, "ser_max_ns": 18289.0, "ser_p5_ns": 3007.9, "ser_p25_ns": 3777.75, "ser_p50_ns": 6877.5, "ser_p75_ns": 14133.0, "ser_p95_ns": 16565.649999999998, "ser_p99_ns": 18038.829999999998, "ser_ci_low_ns": 7720.960904255319, "ser_ci_high_ns": 9752.217287234042, "deser_mean_ns": 45620.62765957447, "deser_median_ns": 45459.0, "deser_std_ns": 1374.477738422951, "deser_mad_ns": 675.5, "deser_cv": 0.03012842674325826, "deser_min_ns": 42574.0, "deser_max_ns": 49230.0, "deser_p5_ns": 43369.25, "deser_p25_ns": 44810.0, "deser_p50_ns": 45459.0, "deser_p75_ns": 46310.0, "deser_p95_ns": 48344.75, "deser_p99_ns": 49125.84, "deser_ci_low_ns": 45340.36117021277, "deser_ci_high_ns": 45898.01303191489, "total_mean_ns": 54347.32978723404, "total_median_ns": 54193.5, "total_std_ns": 5775.854392671247, "total_mad_ns": 5590.5, "total_cv": 0.1062766913348514, "total_min_ns": 45825.0, "total_max_ns": 66309.0, "total_p5_ns": 46900.8, "total_p25_ns": 48658.0, "total_p50_ns": 54193.5, "total_p75_ns": 59853.25, "total_p95_ns": 63336.3, "total_p99_ns": 64559.669999999984, "total_ci_low_ns": 53141.24414893617, "total_ci_high_ns": 55525.62898936171, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.9880231956135095}, {"serializer": "nlohmann_json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 258672.17647058822, "avg_time_deser_ns": 758245.0823529412, "avg_time_total_ns": 1016917.2588235295, "median_size_bytes": 65970.0, "avg_ops_per_sec": 983.3641737548038, "min_ops_per_sec": 939.4470039156151, "max_ops_per_sec": 1029.5999695238409, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 258672.17647058822, "ser_median_ns": 256220.0, "ser_std_ns": 9537.473872118577, "ser_mad_ns": 5509.0, "ser_cv": 0.03687089196159841, "ser_min_ns": 246157.0, "ser_max_ns": 284323.0, "ser_p5_ns": 249003.2, "ser_p25_ns": 250925.0, "ser_p50_ns": 256220.0, "ser_p75_ns": 264779.0, "ser_p95_ns": 280225.2, "ser_p99_ns": 284107.12, "ser_ci_low_ns": 256646.81529411767, "ser_ci_high_ns": 260775.27705882353, "deser_mean_ns": 758245.0823529412, "deser_median_ns": 759454.0, "deser_std_ns": 15250.653785526521, "deser_mad_ns": 8350.0, "deser_cv": 0.020113092904211916, "deser_min_ns": 720406.0, "deser_max_ns": 798897.0, "deser_p5_ns": 734746.8, "deser_p25_ns": 749218.0, "deser_p50_ns": 759454.0, "deser_p75_ns": 766509.0, "deser_p95_ns": 784990.6, "deser_p99_ns": 798700.44, "deser_ci_low_ns": 754971.6900000001, "deser_ci_high_ns": 761479.7826470588, "total_mean_ns": 1016917.2588235295, "total_median_ns": 1015751.0, "total_std_ns": 18004.897871434434, "total_mad_ns": 10358.0, "total_cv": 0.017705371518882747, "total_min_ns": 971251.0, "total_max_ns": 1064456.0, "total_p5_ns": 992866.6, "total_p25_ns": 1005289.0, "total_p50_ns": 1015751.0, "total_p75_ns": 1025183.0, "total_p95_ns": 1050390.6, "total_p99_ns": 1058771.72, "total_ci_low_ns": 1013126.2938235294, "total_ci_high_ns": 1020766.7052941177, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 76.44723860966288}, {"serializer": "protobuf-wire", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "wire-v2", "avg_time_ser_ns": 98240.51063829787, "avg_time_deser_ns": 44849.563829787236, "avg_time_total_ns": 143090.0744680851, "median_size_bytes": 32347.0, "avg_ops_per_sec": 6988.604930966338, "min_ops_per_sec": 5673.1794767059255, "max_ops_per_sec": 8816.00987393106, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 98240.51063829787, "ser_median_ns": 97483.0, "ser_std_ns": 14909.22177046679, "ser_mad_ns": 10867.5, "ser_cv": 0.15176246208002311, "ser_min_ns": 70158.0, "ser_max_ns": 132013.0, "ser_p5_ns": 74067.85, "ser_p25_ns": 88325.25, "ser_p50_ns": 97483.0, "ser_p75_ns": 109981.75, "ser_p95_ns": 122354.74999999999, "ser_p99_ns": 129223.92999999998, "ser_ci_low_ns": 95162.38297872341, "ser_ci_high_ns": 101246.7460106383, "deser_mean_ns": 44849.563829787236, "deser_median_ns": 44684.5, "deser_std_ns": 1172.0850785526704, "deser_mad_ns": 663.0, "deser_cv": 0.026133700720055157, "deser_min_ns": 42150.0, "deser_max_ns": 47695.0, "deser_p5_ns": 43296.7, "deser_p25_ns": 44179.75, "deser_p50_ns": 44684.5, "deser_p75_ns": 45594.25, "deser_p95_ns": 47150.5, "deser_p99_ns": 47436.46, "deser_ci_low_ns": 44600.93989361702, "deser_ci_high_ns": 45089.17367021276, "total_mean_ns": 143090.0744680851, "total_median_ns": 142523.5, "total_std_ns": 15111.580902075939, "total_mad_ns": 11511.0, "total_cv": 0.10560886880694464, "total_min_ns": 113430.0, "total_max_ns": 176268.0, "total_p5_ns": 119325.1, "total_p25_ns": 133073.25, "total_p50_ns": 142523.5, "total_p75_ns": 154870.0, "total_p95_ns": 169138.19999999998, "total_p99_ns": 172600.08, "total_ci_low_ns": 140119.45132978723, "total_ci_high_ns": 146102.29281914895, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.309801564426614}, {"serializer": "jsoncons_cbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 87294.45833333333, "avg_time_deser_ns": 1158552.2708333333, "avg_time_total_ns": 1245846.7291666667, "median_size_bytes": 34549.0, "avg_ops_per_sec": 802.6669546011402, "min_ops_per_sec": 767.6588401289052, "max_ops_per_sec": 841.4108777598277, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 87294.45833333333, "ser_median_ns": 92509.0, "ser_std_ns": 16378.046026322887, "ser_mad_ns": 10945.0, "ser_cv": 0.18761839341259698, "ser_min_ns": 55939.0, "ser_max_ns": 113709.0, "ser_p5_ns": 58224.25, "ser_p25_ns": 71149.0, "ser_p50_ns": 92509.0, "ser_p75_ns": 101114.5, "ser_p95_ns": 105563.75, "ser_p99_ns": 113146.59999999999, "ser_ci_low_ns": 83880.07473958333, "ser_ci_high_ns": 90657.33098958334, "deser_mean_ns": 1158552.2708333333, "deser_median_ns": 1157077.5, "deser_std_ns": 22065.12467625118, "deser_mad_ns": 14474.5, "deser_cv": 0.019045428705931403, "deser_min_ns": 1102468.0, "deser_max_ns": 1209816.0, "deser_p5_ns": 1122550.25, "deser_p25_ns": 1143015.75, "deser_p50_ns": 1157077.5, "deser_p75_ns": 1172833.25, "deser_p95_ns": 1194651.75, "deser_p99_ns": 1205452.65, "deser_ci_low_ns": 1154205.0809895834, "deser_ci_high_ns": 1162824.203125, "total_mean_ns": 1245846.7291666667, "total_median_ns": 1247257.0, "total_std_ns": 29946.992027661552, "total_mad_ns": 24707.5, "total_cv": 0.024037460890307723, "total_min_ns": 1188480.0, "total_max_ns": 1302662.0, "total_p5_ns": 1199428.0, "total_p25_ns": 1220334.25, "total_p50_ns": 1247257.0, "total_p75_ns": 1270261.75, "total_p95_ns": 1295446.75, "total_p99_ns": 1296767.25, "total_ci_low_ns": 1239712.7903645833, "total_ci_high_ns": 1251784.63046875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 56.605994673517166}, {"serializer": "nlohmann_bson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 275585.4555555555, "avg_time_deser_ns": 450432.3222222222, "avg_time_total_ns": 726017.7777777778, "median_size_bytes": 46754.0, "avg_ops_per_sec": 1377.3767400859483, "min_ops_per_sec": 1322.5693819897792, "max_ops_per_sec": 1424.2802755697478, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 275585.4555555555, "ser_median_ns": 274246.5, "ser_std_ns": 6452.821111401997, "ser_mad_ns": 3571.0, "ser_cv": 0.023414955257321866, "ser_min_ns": 262834.0, "ser_max_ns": 296295.0, "ser_p5_ns": 267176.4, "ser_p25_ns": 270932.5, "ser_p50_ns": 274246.5, "ser_p75_ns": 279548.25, "ser_p95_ns": 287005.1, "ser_p99_ns": 293761.17, "ser_ci_low_ns": 274266.5544444444, "ser_ci_high_ns": 276998.0108333333, "deser_mean_ns": 450432.3222222222, "deser_median_ns": 448563.5, "deser_std_ns": 11036.653091259326, "deser_mad_ns": 7115.0, "deser_cv": 0.02450235595174353, "deser_min_ns": 424429.0, "deser_max_ns": 476237.0, "deser_p5_ns": 436257.75, "deser_p25_ns": 442835.25, "deser_p50_ns": 448563.5, "deser_p75_ns": 457137.5, "deser_p95_ns": 473182.95, "deser_p99_ns": 475896.13, "deser_ci_low_ns": 448253.6425, "deser_ci_high_ns": 452689.31694444444, "total_mean_ns": 726017.7777777778, "total_median_ns": 723164.5, "total_std_ns": 13437.652004285, "total_mad_ns": 8997.0, "total_cv": 0.018508709312071485, "total_min_ns": 702109.0, "total_max_ns": 756104.0, "total_p5_ns": 707480.75, "total_p25_ns": 715763.75, "total_p50_ns": 723164.5, "total_p75_ns": 734212.75, "total_p95_ns": 751370.05, "total_p99_ns": 756078.19, "total_ci_low_ns": 723326.6961111111, "total_ci_high_ns": 728831.6097222222, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 69.10869054682239}, {"serializer": "nlohmann_cbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 104341.33333333333, "avg_time_deser_ns": 283831.56666666665, "avg_time_total_ns": 388172.9, "median_size_bytes": 34549.0, "avg_ops_per_sec": 2576.171597759658, "min_ops_per_sec": 2426.9488399184547, "max_ops_per_sec": 2703.6380153134055, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 104341.33333333333, "ser_median_ns": 103890.5, "ser_std_ns": 3612.7395344558436, "ser_mad_ns": 2540.0, "ser_cv": 0.0346242416024571, "ser_min_ns": 98182.0, "ser_max_ns": 115014.0, "ser_p5_ns": 99763.1, "ser_p25_ns": 101516.0, "ser_p50_ns": 103890.5, "ser_p75_ns": 106799.0, "ser_p95_ns": 110853.45, "ser_p99_ns": 113863.23, "ser_ci_low_ns": 103615.52222222222, "ser_ci_high_ns": 105067.90916666666, "deser_mean_ns": 283831.56666666665, "deser_median_ns": 283159.0, "deser_std_ns": 5736.004068624856, "deser_mad_ns": 3967.5, "deser_cv": 0.02020918298830817, "deser_min_ns": 270279.0, "deser_max_ns": 299233.0, "deser_p5_ns": 274971.0, "deser_p25_ns": 280474.5, "deser_p50_ns": 283159.0, "deser_p75_ns": 288059.0, "deser_p95_ns": 292831.55, "deser_p99_ns": 297268.77, "deser_ci_low_ns": 282678.9675, "deser_ci_high_ns": 285008.4816666667, "total_mean_ns": 388172.9, "total_median_ns": 387823.5, "total_std_ns": 7993.407151444498, "total_mad_ns": 5550.5, "total_cv": 0.02059238847288025, "total_min_ns": 369872.0, "total_max_ns": 412040.0, "total_p5_ns": 377612.95, "total_p25_ns": 382359.5, "total_p50_ns": 387823.5, "total_p75_ns": 393322.75, "total_p95_ns": 401942.39999999997, "total_p99_ns": 406269.24, "total_ci_low_ns": 386471.6558333333, "total_ci_high_ns": 389883.84722222225, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 53.404528519187814}, {"serializer": "jsoncons_bson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 140565.27835051547, "avg_time_deser_ns": 1173080.1546391752, "avg_time_total_ns": 1313645.4329896907, "median_size_bytes": 46754.0, "avg_ops_per_sec": 761.2404191320687, "min_ops_per_sec": 719.0602745084504, "max_ops_per_sec": 797.5340247953328, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 140565.27835051547, "ser_median_ns": 140195.0, "ser_std_ns": 13613.561749794355, "ser_mad_ns": 11960.0, "ser_cv": 0.09684868062401153, "ser_min_ns": 116494.0, "ser_max_ns": 176848.0, "ser_p5_ns": 121357.2, "ser_p25_ns": 128220.0, "ser_p50_ns": 140195.0, "ser_p75_ns": 150443.0, "ser_p95_ns": 162177.19999999998, "ser_p99_ns": 173894.08, "ser_ci_low_ns": 137877.54046391754, "ser_ci_high_ns": 143181.18170103093, "deser_mean_ns": 1173080.1546391752, "deser_median_ns": 1168059.0, "deser_std_ns": 26067.33316430268, "deser_mad_ns": 14616.0, "deser_cv": 0.022221271974650927, "deser_min_ns": 1117831.0, "deser_max_ns": 1237423.0, "deser_p5_ns": 1138948.0, "deser_p25_ns": 1155200.0, "deser_p50_ns": 1168059.0, "deser_p75_ns": 1189152.0, "deser_p95_ns": 1220667.2, "deser_p99_ns": 1235427.16, "deser_ci_low_ns": 1168209.330927835, "deser_ci_high_ns": 1178314.9652061856, "total_mean_ns": 1313645.4329896907, "total_median_ns": 1311706.0, "total_std_ns": 31068.088259534634, "total_mad_ns": 22300.0, "total_cv": 0.023650284528320246, "total_min_ns": 1253865.0, "total_max_ns": 1390704.0, "total_p5_ns": 1267170.8, "total_p25_ns": 1290049.0, "total_p50_ns": 1311706.0, "total_p75_ns": 1336143.0, "total_p95_ns": 1368861.8, "total_p99_ns": 1379479.68, "total_ci_low_ns": 1307573.0577319588, "total_ci_high_ns": 1319760.1469072166, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 57.51942221226398}, {"serializer": "flexbuffers", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "flatbuffers-flex", "avg_time_ser_ns": 88021.77528089887, "avg_time_deser_ns": 169868.4157303371, "avg_time_total_ns": 257890.19101123596, "median_size_bytes": 40918.0, "avg_ops_per_sec": 3877.619370007102, "min_ops_per_sec": 3550.0899947813677, "max_ops_per_sec": 4164.775164612738, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 88021.77528089887, "ser_median_ns": 86618.0, "ser_std_ns": 7324.575528738864, "ser_mad_ns": 4914.0, "ser_cv": 0.08321322201653356, "ser_min_ns": 76167.0, "ser_max_ns": 105225.0, "ser_p5_ns": 78969.4, "ser_p25_ns": 82048.0, "ser_p50_ns": 86618.0, "ser_p75_ns": 92312.0, "ser_p95_ns": 103105.4, "ser_p99_ns": 104797.32, "ser_ci_low_ns": 86570.05280898877, "ser_ci_high_ns": 89593.26825842696, "deser_mean_ns": 169868.4157303371, "deser_median_ns": 169646.0, "deser_std_ns": 2693.2817840668117, "deser_mad_ns": 1658.0, "deser_cv": 0.015855106274390324, "deser_min_ns": 163942.0, "deser_max_ns": 176471.0, "deser_p5_ns": 165329.4, "deser_p25_ns": 168561.0, "deser_p50_ns": 169646.0, "deser_p75_ns": 171608.0, "deser_p95_ns": 175398.0, "deser_p99_ns": 176459.56, "deser_ci_low_ns": 169320.83988764047, "deser_ci_high_ns": 170430.47247191012, "total_mean_ns": 257890.19101123596, "total_median_ns": 256435.0, "total_std_ns": 8786.792493018873, "total_mad_ns": 5963.0, "total_cv": 0.034071836771162975, "total_min_ns": 240109.0, "total_max_ns": 281683.0, "total_p5_ns": 246949.2, "total_p25_ns": 250728.0, "total_p50_ns": 256435.0, "total_p75_ns": 262777.0, "total_p95_ns": 273726.4, "total_p99_ns": 278682.2, "total_ci_low_ns": 256155.33146067415, "total_ci_high_ns": 259737.81994382024, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 32.029164636325525}, {"serializer": "cista", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "0.15", "avg_time_ser_ns": 14982.080808080807, "avg_time_deser_ns": 45383.47474747475, "avg_time_total_ns": 60365.555555555555, "median_size_bytes": 36024.0, "avg_ops_per_sec": 16565.738371771982, "min_ops_per_sec": 13704.074221265982, "max_ops_per_sec": 20526.29418284823, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 14982.080808080807, "ser_median_ns": 14597.0, "ser_std_ns": 5153.895373794046, "ser_mad_ns": 4853.0, "ser_cv": 0.3440039764712933, "ser_min_ns": 7954.0, "ser_max_ns": 25322.0, "ser_p5_ns": 8626.8, "ser_p25_ns": 10002.0, "ser_p50_ns": 14597.0, "ser_p75_ns": 19526.5, "ser_p95_ns": 23313.899999999998, "ser_p99_ns": 24591.899999999998, "ser_ci_low_ns": 14033.901262626263, "ser_ci_high_ns": 16002.652020202018, "deser_mean_ns": 45383.47474747475, "deser_median_ns": 45229.0, "deser_std_ns": 1999.7472459851497, "deser_mad_ns": 1682.0, "deser_cv": 0.044063334883727046, "deser_min_ns": 40764.0, "deser_max_ns": 50243.0, "deser_p5_ns": 42932.8, "deser_p25_ns": 43694.5, "deser_p50_ns": 45229.0, "deser_p75_ns": 46954.0, "deser_p95_ns": 48814.6, "deser_p99_ns": 49911.76, "deser_ci_low_ns": 44999.932070707066, "deser_ci_high_ns": 45774.73080808081, "total_mean_ns": 60365.555555555555, "total_median_ns": 59944.0, "total_std_ns": 6085.1168221513235, "total_mad_ns": 4845.0, "total_cv": 0.10080445323742736, "total_min_ns": 48718.0, "total_max_ns": 72971.0, "total_p5_ns": 51925.3, "total_p25_ns": 55177.5, "total_p50_ns": 59944.0, "total_p75_ns": 65052.0, "total_p95_ns": 70942.6, "total_p99_ns": 72103.7, "total_ci_low_ns": 59127.18863636364, "total_ci_high_ns": 61542.159343434345, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.88764152792751}, {"serializer": "zpp_bits", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "4.4.25", "avg_time_ser_ns": 18406.846153846152, "avg_time_deser_ns": 11936.835164835165, "avg_time_total_ns": 30343.68131868132, "median_size_bytes": 30355.0, "avg_ops_per_sec": 32955.790350472154, "min_ops_per_sec": 23235.820340637125, "max_ops_per_sec": 44006.3369125154, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 18406.846153846152, "ser_median_ns": 16464.0, "ser_std_ns": 4915.083494086968, "ser_mad_ns": 2693.0, "ser_cv": 0.26702475008517146, "ser_min_ns": 12190.0, "ser_max_ns": 29618.0, "ser_p5_ns": 13160.0, "ser_p25_ns": 14358.0, "ser_p50_ns": 16464.0, "ser_p75_ns": 23226.0, "ser_p95_ns": 27024.0, "ser_p99_ns": 28073.59999999999, "ser_ci_low_ns": 17425.77912087912, "ser_ci_high_ns": 19385.263736263736, "deser_mean_ns": 11936.835164835165, "deser_median_ns": 11848.0, "deser_std_ns": 599.3891383685053, "deser_mad_ns": 354.0, "deser_cv": 0.0502134049847862, "deser_min_ns": 10534.0, "deser_max_ns": 13723.0, "deser_p5_ns": 11197.0, "deser_p25_ns": 11527.5, "deser_p50_ns": 11848.0, "deser_p75_ns": 12256.0, "deser_p95_ns": 13046.0, "deser_p99_ns": 13624.9, "deser_ci_low_ns": 11811.890934065934, "deser_ci_high_ns": 12066.586813186814, "total_mean_ns": 30343.68131868132, "total_median_ns": 28612.0, "total_std_ns": 5098.676004347972, "total_mad_ns": 3221.0, "total_cv": 0.1680308974642748, "total_min_ns": 22724.0, "total_max_ns": 43037.0, "total_p5_ns": 24484.5, "total_p25_ns": 26128.0, "total_p50_ns": 28612.0, "total_p75_ns": 35303.5, "total_p95_ns": 39050.0, "total_p99_ns": 41028.19999999999, "total_ci_low_ns": 29305.10879120879, "total_ci_high_ns": 31349.620054945055, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.4331029794947321, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.7272722983071014}, {"serializer": "nlohmann_ubjson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 99560.66666666667, "avg_time_deser_ns": 296004.5777777778, "avg_time_total_ns": 395565.2444444444, "median_size_bytes": 35749.0, "avg_ops_per_sec": 2528.0279651577075, "min_ops_per_sec": 2401.1621624866434, "max_ops_per_sec": 2603.664918739618, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 99560.66666666667, "ser_median_ns": 98286.5, "ser_std_ns": 3771.312926688958, "ser_mad_ns": 2136.0, "ser_cv": 0.037879546742243836, "ser_min_ns": 92905.0, "ser_max_ns": 112983.0, "ser_p5_ns": 95176.4, "ser_p25_ns": 96722.75, "ser_p50_ns": 98286.5, "ser_p75_ns": 102664.5, "ser_p95_ns": 104953.0, "ser_p99_ns": 109484.41, "ser_ci_low_ns": 98802.2961111111, "ser_ci_high_ns": 100343.32388888889, "deser_mean_ns": 296004.5777777778, "deser_median_ns": 294996.5, "deser_std_ns": 5692.173730200223, "deser_mad_ns": 3773.5, "deser_cv": 0.019230019254883147, "deser_min_ns": 284688.0, "deser_max_ns": 309812.0, "deser_p5_ns": 288034.5, "deser_p25_ns": 291735.75, "deser_p50_ns": 294996.5, "deser_p75_ns": 299389.5, "deser_p95_ns": 305695.35, "deser_p99_ns": 309084.87, "deser_ci_low_ns": 294851.1252777778, "deser_ci_high_ns": 297128.2630555556, "total_mean_ns": 395565.2444444444, "total_median_ns": 393573.5, "total_std_ns": 7642.21156488728, "total_mad_ns": 4983.0, "total_cv": 0.01931972455168669, "total_min_ns": 384074.0, "total_max_ns": 416465.0, "total_p5_ns": 385161.3, "total_p25_ns": 389571.25, "total_p50_ns": 393573.5, "total_p75_ns": 401088.0, "total_p95_ns": 409191.9, "total_p99_ns": 413181.79, "total_ci_low_ns": 394071.22, "total_ci_high_ns": 397242.32194444444, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 56.151159902446224}, {"serializer": "yas", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "7.x", "avg_time_ser_ns": 15715.802083333334, "avg_time_deser_ns": 11913.270833333334, "avg_time_total_ns": 27629.072916666668, "median_size_bytes": 32362.0, "avg_ops_per_sec": 36193.75876331959, "min_ops_per_sec": 24094.643760691997, "max_ops_per_sec": 50602.16577269507, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 15715.802083333334, "ser_median_ns": 14387.0, "ser_std_ns": 4957.907741269797, "ser_mad_ns": 3975.0, "ser_cv": 0.3154727779708855, "ser_min_ns": 9428.0, "ser_max_ns": 27595.0, "ser_p5_ns": 10015.75, "ser_p25_ns": 10760.0, "ser_p50_ns": 14387.0, "ser_p75_ns": 19317.75, "ser_p95_ns": 24464.0, "ser_p99_ns": 25579.099999999995, "ser_ci_low_ns": 14693.788802083332, "ser_ci_high_ns": 16709.459114583333, "deser_mean_ns": 11913.270833333334, "deser_median_ns": 11699.5, "deser_std_ns": 745.0173502630543, "deser_mad_ns": 406.5, "deser_cv": 0.06253675927340589, "deser_min_ns": 10334.0, "deser_max_ns": 13908.0, "deser_p5_ns": 11014.25, "deser_p25_ns": 11361.0, "deser_p50_ns": 11699.5, "deser_p75_ns": 12369.5, "deser_p95_ns": 13320.75, "deser_p99_ns": 13845.3, "deser_ci_low_ns": 11769.380208333332, "deser_ci_high_ns": 12062.708854166667, "total_mean_ns": 27629.072916666668, "total_median_ns": 27496.0, "total_std_ns": 5374.330219703351, "total_mad_ns": 5015.0, "total_cv": 0.19451721148636142, "total_min_ns": 19762.0, "total_max_ns": 41503.0, "total_p5_ns": 21191.25, "total_p25_ns": 22338.25, "total_p50_ns": 27496.0, "total_p75_ns": 31200.75, "total_p95_ns": 37010.0, "total_p99_ns": 38394.59999999999, "total_ci_low_ns": 26604.855989583335, "total_ci_high_ns": 28730.740625, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.12199312714776632, "effect_vs_fastest_cliffs_label": "negligible", "effect_vs_fastest_hedges_g": 0.2041400114763805}, {"serializer": "jsoncons_msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 75887.17346938775, "avg_time_deser_ns": 1138484.693877551, "avg_time_total_ns": 1214371.8673469387, "median_size_bytes": 34650.0, "avg_ops_per_sec": 823.4709868441855, "min_ops_per_sec": 784.1095495133816, "max_ops_per_sec": 867.6894990481446, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 75887.17346938775, "ser_median_ns": 80137.5, "ser_std_ns": 12933.220197651408, "ser_mad_ns": 10046.5, "ser_cv": 0.1704269589493745, "ser_min_ns": 49930.0, "ser_max_ns": 97953.0, "ser_p5_ns": 53817.5, "ser_p25_ns": 64535.75, "ser_p50_ns": 80137.5, "ser_p75_ns": 85797.25, "ser_p95_ns": 93283.54999999999, "ser_p99_ns": 96673.57, "ser_ci_low_ns": 73483.27602040817, "ser_ci_high_ns": 78337.29183673469, "deser_mean_ns": 1138484.693877551, "deser_median_ns": 1136487.5, "deser_std_ns": 24709.7556966016, "deser_mad_ns": 15663.5, "deser_cv": 0.021704073695047184, "deser_min_ns": 1084298.0, "deser_max_ns": 1189588.0, "deser_p5_ns": 1102019.6, "deser_p25_ns": 1121591.25, "deser_p50_ns": 1136487.5, "deser_p75_ns": 1152088.25, "deser_p95_ns": 1184016.3, "deser_p99_ns": 1186322.01, "deser_ci_low_ns": 1133638.0989795919, "deser_ci_high_ns": 1143430.5099489796, "total_mean_ns": 1214371.8673469387, "total_median_ns": 1214059.0, "total_std_ns": 28536.67835865114, "total_mad_ns": 18682.0, "total_cv": 0.02349912668925357, "total_min_ns": 1152486.0, "total_max_ns": 1275332.0, "total_p5_ns": 1170277.6, "total_p25_ns": 1194795.5, "total_p50_ns": 1214059.0, "total_p75_ns": 1230108.0, "total_p95_ns": 1257857.05, "total_p99_ns": 1272223.15, "total_ci_low_ns": 1208779.2890306124, "total_ci_high_ns": 1220036.8602040817, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 57.501771127159756}, {"serializer": "yyjson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "0.10.0", "avg_time_ser_ns": 101850.81521739131, "avg_time_deser_ns": 882618.554347826, "avg_time_total_ns": 984469.3695652174, "median_size_bytes": 65966.0, "avg_ops_per_sec": 1015.7756360074885, "min_ops_per_sec": 971.3604096809664, "max_ops_per_sec": 1054.9758463279984, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 101850.81521739131, "ser_median_ns": 100395.0, "ser_std_ns": 4958.073032565112, "ser_mad_ns": 3014.5, "ser_cv": 0.04867975795758292, "ser_min_ns": 94752.0, "ser_max_ns": 113730.0, "ser_p5_ns": 96705.75, "ser_p25_ns": 97721.5, "ser_p50_ns": 100395.0, "ser_p75_ns": 105491.75, "ser_p95_ns": 111021.65000000001, "ser_p99_ns": 113099.37, "ser_ci_low_ns": 100872.43586956522, "ser_ci_high_ns": 102825.19239130436, "deser_mean_ns": 882618.554347826, "deser_median_ns": 878733.0, "deser_std_ns": 17223.710943561015, "deser_mad_ns": 10968.5, "deser_cv": 0.019514331370801233, "deser_min_ns": 837963.0, "deser_max_ns": 928335.0, "deser_p5_ns": 861594.9, "deser_p25_ns": 869487.5, "deser_p50_ns": 878733.0, "deser_p75_ns": 892953.25, "deser_p95_ns": 915100.95, "deser_p99_ns": 925646.86, "deser_ci_low_ns": 879212.2293478261, "deser_ci_high_ns": 886366.3635869565, "total_mean_ns": 984469.3695652174, "total_median_ns": 982873.5, "total_std_ns": 17061.598500093834, "total_mad_ns": 10546.0, "total_cv": 0.01733075606773723, "total_min_ns": 947889.0, "total_max_ns": 1029484.0, "total_p5_ns": 959175.9, "total_p25_ns": 972806.25, "total_p50_ns": 982873.5, "total_p75_ns": 995016.25, "total_p95_ns": 1017657.1, "total_p99_ns": 1024123.1900000001, "total_ci_low_ns": 980683.2228260869, "total_ci_high_ns": 987981.5603260869, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 76.32820758438439}, {"serializer": "simdjson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.10.1", "avg_time_ser_ns": 16399.94382022472, "avg_time_deser_ns": 911302.3595505618, "avg_time_total_ns": 927702.3033707865, "median_size_bytes": 65970.0, "avg_ops_per_sec": 1077.93200077926, "min_ops_per_sec": 1041.2284830133985, "max_ops_per_sec": 1117.0151567786622, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 16399.94382022472, "ser_median_ns": 13797.0, "ser_std_ns": 4771.770069804359, "ser_mad_ns": 1809.0, "ser_cv": 0.2909625863425046, "ser_min_ns": 11741.0, "ser_max_ns": 27217.0, "ser_p5_ns": 11986.4, "ser_p25_ns": 12263.0, "ser_p50_ns": 13797.0, "ser_p75_ns": 20316.0, "ser_p95_ns": 24992.6, "ser_p99_ns": 27089.4, "ser_ci_low_ns": 15467.144943820225, "ser_ci_high_ns": 17412.84915730337, "deser_mean_ns": 911302.3595505618, "deser_median_ns": 909997.0, "deser_std_ns": 12123.432751800794, "deser_mad_ns": 6244.0, "deser_cv": 0.01330341420138521, "deser_min_ns": 881451.0, "deser_max_ns": 944823.0, "deser_p5_ns": 889719.8, "deser_p25_ns": 904359.0, "deser_p50_ns": 909997.0, "deser_p75_ns": 919013.0, "deser_p95_ns": 932247.8, "deser_p99_ns": 937556.8400000001, "deser_ci_low_ns": 908783.0061797752, "deser_ci_high_ns": 913836.3564606741, "total_mean_ns": 927702.3033707865, "total_median_ns": 926074.0, "total_std_ns": 12865.521070608993, "total_mad_ns": 8883.0, "total_cv": 0.01386815686870928, "total_min_ns": 895243.0, "total_max_ns": 960404.0, "total_p5_ns": 908783.0, "total_p25_ns": 918998.0, "total_p50_ns": 926074.0, "total_p75_ns": 937874.0, "total_p95_ns": 946245.2, "total_p99_ns": 960056.4, "total_ci_low_ns": 925016.4980337078, "total_ci_high_ns": 930367.1120786517, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 92.57468905378032}, {"serializer": "avro", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "binary-1.11", "avg_time_ser_ns": 35531.60824742268, "avg_time_deser_ns": 33900.927835051545, "avg_time_total_ns": 69432.53608247422, "median_size_bytes": 28850.0, "avg_ops_per_sec": 14402.469741450428, "min_ops_per_sec": 11408.232180341334, "max_ops_per_sec": 16500.83329208125, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 35531.60824742268, "ser_median_ns": 34484.0, "ser_std_ns": 6148.990349975998, "ser_mad_ns": 4699.0, "ser_cv": 0.1730569105444874, "ser_min_ns": 27641.0, "ser_max_ns": 53996.0, "ser_p5_ns": 28302.6, "ser_p25_ns": 29890.0, "ser_p50_ns": 34484.0, "ser_p75_ns": 39233.0, "ser_p95_ns": 47440.399999999994, "ser_p99_ns": 49786.399999999965, "ser_ci_low_ns": 34317.34355670103, "ser_ci_high_ns": 36730.85, "deser_mean_ns": 33900.927835051545, "deser_median_ns": 33587.0, "deser_std_ns": 1144.5774715972582, "deser_mad_ns": 670.0, "deser_cv": 0.033762423175150776, "deser_min_ns": 31799.0, "deser_max_ns": 36796.0, "deser_p5_ns": 32440.2, "deser_p25_ns": 33009.0, "deser_p50_ns": 33587.0, "deser_p75_ns": 34570.0, "deser_p95_ns": 36154.6, "deser_p99_ns": 36409.119999999995, "deser_ci_low_ns": 33679.75953608248, "deser_ci_high_ns": 34138.21701030927, "total_mean_ns": 69432.53608247422, "total_median_ns": 69198.0, "total_std_ns": 6490.533083624333, "total_mad_ns": 5787.0, "total_cv": 0.0934797063427824, "total_min_ns": 60603.0, "total_max_ns": 87656.0, "total_p5_ns": 60962.4, "total_p25_ns": 63251.0, "total_p50_ns": 69198.0, "total_p75_ns": 73603.0, "total_p95_ns": 81100.4, "total_p99_ns": 84503.35999999997, "total_ci_low_ns": 68202.19432989691, "total_ci_high_ns": 70670.90103092784, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.19521565460743}, {"serializer": "avro_c", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "avro-c", "avg_time_ser_ns": 108884.04347826086, "avg_time_deser_ns": 120016.0, "avg_time_total_ns": 228900.04347826086, "median_size_bytes": 28850.0, "avg_ops_per_sec": 4368.71913523674, "min_ops_per_sec": 4053.0462695762135, "max_ops_per_sec": 4599.90064214613, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 108884.04347826086, "ser_median_ns": 107959.0, "ser_std_ns": 6541.324085328418, "ser_mad_ns": 4498.5, "ser_cv": 0.06007605776170885, "ser_min_ns": 99554.0, "ser_max_ns": 127355.0, "ser_p5_ns": 100857.25, "ser_p25_ns": 103470.75, "ser_p50_ns": 107959.0, "ser_p75_ns": 112378.25, "ser_p95_ns": 121272.65000000001, "ser_p99_ns": 125752.49, "ser_ci_low_ns": 107628.20923913043, "ser_ci_high_ns": 110218.96141304348, "deser_mean_ns": 120016.0, "deser_median_ns": 119827.0, "deser_std_ns": 2276.356366585054, "deser_mad_ns": 1598.0, "deser_cv": 0.01896710744055004, "deser_min_ns": 116028.0, "deser_max_ns": 125938.0, "deser_p5_ns": 117040.35, "deser_p25_ns": 118252.75, "deser_p50_ns": 119827.0, "deser_p75_ns": 121321.75, "deser_p95_ns": 124230.1, "deser_p99_ns": 125813.33, "deser_ci_low_ns": 119541.8527173913, "deser_ci_high_ns": 120471.45027173913, "total_mean_ns": 228900.04347826086, "total_median_ns": 228536.0, "total_std_ns": 7176.012702454002, "total_mad_ns": 4344.5, "total_cv": 0.03134998400791271, "total_min_ns": 217396.0, "total_max_ns": 246728.0, "total_p5_ns": 218917.35, "total_p25_ns": 223793.0, "total_p50_ns": 228536.0, "total_p75_ns": 232411.25, "total_p95_ns": 241885.25, "total_p99_ns": 245967.24, "total_ci_low_ns": 227456.63586956522, "total_ci_high_ns": 230360.8375, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 32.00996463062994}, {"serializer": "custom_binary", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "harness", "avg_time_ser_ns": 73429.15555555555, "avg_time_deser_ns": 25048.78888888889, "avg_time_total_ns": 98477.94444444444, "median_size_bytes": 30351.0, "avg_ops_per_sec": 10154.558014400292, "min_ops_per_sec": 8398.138972403714, "max_ops_per_sec": 11516.62424710069, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 73429.15555555555, "ser_median_ns": 72930.5, "ser_std_ns": 6572.748416820127, "ser_mad_ns": 5150.0, "ser_cv": 0.08951142590557602, "ser_min_ns": 62881.0, "ser_max_ns": 93510.0, "ser_p5_ns": 65619.5, "ser_p25_ns": 67587.25, "ser_p50_ns": 72930.5, "ser_p75_ns": 77906.25, "ser_p95_ns": 85621.34999999999, "ser_p99_ns": 88291.93, "ser_ci_low_ns": 72112.41777777778, "ser_ci_high_ns": 74755.70527777777, "deser_mean_ns": 25048.78888888889, "deser_median_ns": 24896.5, "deser_std_ns": 726.1808901839916, "deser_mad_ns": 457.5, "deser_cv": 0.02899065872626321, "deser_min_ns": 23757.0, "deser_max_ns": 26724.0, "deser_p5_ns": 23940.95, "deser_p25_ns": 24555.5, "deser_p50_ns": 24896.5, "deser_p75_ns": 25457.0, "deser_p95_ns": 26366.55, "deser_p99_ns": 26590.5, "deser_ci_low_ns": 24896.77611111111, "deser_ci_high_ns": 25202.705, "total_mean_ns": 98477.94444444444, "total_median_ns": 98013.5, "total_std_ns": 6741.019068029002, "total_mad_ns": 5348.0, "total_cv": 0.0684520692024791, "total_min_ns": 86831.0, "total_max_ns": 119074.0, "total_p5_ns": 90637.4, "total_p25_ns": 92589.0, "total_p50_ns": 98013.5, "total_p75_ns": 102976.25, "total_p95_ns": 110583.35, "total_p99_ns": 114740.59, "total_ci_low_ns": 97129.77055555554, "total_ci_high_ns": 99882.39611111111, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.842836532812488}, {"serializer": "capnproto", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "1.0.x", "avg_time_ser_ns": 17502.75, "avg_time_deser_ns": 34064.65625, "avg_time_total_ns": 51567.40625, "median_size_bytes": 35632.0, "avg_ops_per_sec": 19392.094206793656, "min_ops_per_sec": 14388.489208633093, "max_ops_per_sec": 23774.42822500119, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 17502.75, "ser_median_ns": 16149.5, "ser_std_ns": 5293.169117387348, "ser_mad_ns": 3808.5, "ser_cv": 0.30241928367755627, "ser_min_ns": 11681.0, "ser_max_ns": 32360.0, "ser_p5_ns": 11823.0, "ser_p25_ns": 12713.5, "ser_p50_ns": 16149.5, "ser_p75_ns": 21463.75, "ser_p95_ns": 27775.75, "ser_p99_ns": 29272.49999999999, "ser_ci_low_ns": 16470.45677083333, "ser_ci_high_ns": 18559.860416666666, "deser_mean_ns": 34064.65625, "deser_median_ns": 33474.0, "deser_std_ns": 2369.2009215994944, "deser_mad_ns": 1690.5, "deser_cv": 0.06955011975497315, "deser_min_ns": 30203.0, "deser_max_ns": 39741.0, "deser_p5_ns": 31211.5, "deser_p25_ns": 31947.75, "deser_p50_ns": 33474.0, "deser_p75_ns": 36137.0, "deser_p95_ns": 37987.0, "deser_p99_ns": 39299.25, "deser_ci_low_ns": 33611.03619791667, "deser_ci_high_ns": 34532.6484375, "total_mean_ns": 51567.40625, "total_median_ns": 51007.0, "total_std_ns": 6704.557310364386, "total_mad_ns": 5644.0, "total_cv": 0.13001540697743327, "total_min_ns": 42062.0, "total_max_ns": 69500.0, "total_p5_ns": 43352.25, "total_p25_ns": 45269.25, "total_p50_ns": 51007.0, "total_p75_ns": 56590.0, "total_p95_ns": 64029.5, "total_p99_ns": 66269.99999999999, "total_ci_low_ns": 50300.12994791666, "total_ci_high_ns": 52892.1625, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.119636875761403}, {"serializer": "nlohmann_msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 100766.71111111112, "avg_time_deser_ns": 281891.93333333335, "avg_time_total_ns": 382658.64444444445, "median_size_bytes": 34650.0, "avg_ops_per_sec": 2613.2952032269664, "min_ops_per_sec": 2474.788096269257, "max_ops_per_sec": 2740.536925994541, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 100766.71111111112, "ser_median_ns": 99716.5, "ser_std_ns": 4265.5169325794905, "ser_mad_ns": 2842.5, "ser_cv": 0.042330615791122614, "ser_min_ns": 93848.0, "ser_max_ns": 112762.0, "ser_p5_ns": 95347.9, "ser_p25_ns": 97402.75, "ser_p50_ns": 99716.5, "ser_p75_ns": 103317.5, "ser_p95_ns": 109311.4, "ser_p99_ns": 111831.06, "ser_ci_low_ns": 99941.60472222223, "ser_ci_high_ns": 101642.78972222222, "deser_mean_ns": 281891.93333333335, "deser_median_ns": 280471.5, "deser_std_ns": 5827.18305102151, "deser_mad_ns": 2938.0, "deser_cv": 0.02067169138937703, "deser_min_ns": 269543.0, "deser_max_ns": 297965.0, "deser_p5_ns": 274800.05, "deser_p25_ns": 278217.0, "deser_p50_ns": 280471.5, "deser_p75_ns": 284067.5, "deser_p95_ns": 293990.05, "deser_p99_ns": 297716.69, "deser_ci_low_ns": 280741.28833333333, "deser_ci_high_ns": 283116.21166666667, "total_mean_ns": 382658.64444444445, "total_median_ns": 381613.0, "total_std_ns": 8168.263675204506, "total_mad_ns": 5437.5, "total_cv": 0.02134608428110501, "total_min_ns": 364892.0, "total_max_ns": 404075.0, "total_p5_ns": 372174.45, "total_p25_ns": 376858.0, "total_p50_ns": 381613.0, "total_p75_ns": 387298.75, "total_p95_ns": 397747.95, "total_p99_ns": 403568.59, "total_ci_low_ns": 381034.8247222222, "total_ci_high_ns": 384390.0227777778, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 51.8214619574778}, {"serializer": "arduinojson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "7.2.1", "avg_time_ser_ns": 212016.98863636365, "avg_time_deser_ns": 1094589.4545454546, "avg_time_total_ns": 1306606.4431818181, "median_size_bytes": 45907.0, "avg_ops_per_sec": 765.3413965760209, "min_ops_per_sec": 735.13357744669, "max_ops_per_sec": 792.0654055929323, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 212016.98863636365, "ser_median_ns": 209874.5, "ser_std_ns": 5965.9835475405525, "ser_mad_ns": 3296.0, "ser_cv": 0.028139176892909182, "ser_min_ns": 201758.0, "ser_max_ns": 229884.0, "ser_p5_ns": 205482.1, "ser_p25_ns": 208134.75, "ser_p50_ns": 209874.5, "ser_p75_ns": 215251.75, "ser_p95_ns": 222563.94999999998, "ser_p99_ns": 229739.58, "ser_ci_low_ns": 210824.65, "ser_ci_high_ns": 213343.2278409091, "deser_mean_ns": 1094589.4545454546, "deser_median_ns": 1092488.5, "deser_std_ns": 20113.726110964017, "deser_mad_ns": 12750.5, "deser_cv": 0.018375589155768503, "deser_min_ns": 1056880.0, "deser_max_ns": 1138722.0, "deser_p5_ns": 1064189.6, "deser_p25_ns": 1081159.25, "deser_p50_ns": 1092488.5, "deser_p75_ns": 1108902.0, "deser_p95_ns": 1131337.05, "deser_p99_ns": 1138038.18, "deser_ci_low_ns": 1090544.2318181817, "deser_ci_high_ns": 1098887.581818182, "total_mean_ns": 1306606.4431818181, "total_median_ns": 1305471.5, "total_std_ns": 23069.01442416823, "total_mad_ns": 14427.5, "total_cv": 0.017655671717025284, "total_min_ns": 1262522.0, "total_max_ns": 1360297.0, "total_p5_ns": 1270284.9, "total_p25_ns": 1290545.75, "total_p50_ns": 1305471.5, "total_p75_ns": 1319198.5, "total_p95_ns": 1349010.0, "total_p99_ns": 1360048.18, "total_ci_low_ns": 1301855.0431818182, "total_ci_high_ns": 1311295.9059659091, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 77.88505515762901}, {"serializer": "msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "msgpack-cxx", "avg_time_ser_ns": 31050.957446808512, "avg_time_deser_ns": 47848.882978723406, "avg_time_total_ns": 78899.84042553192, "median_size_bytes": 34650.0, "avg_ops_per_sec": 12674.29686304411, "min_ops_per_sec": 10713.061364415495, "max_ops_per_sec": 14417.53171856978, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 31050.957446808512, "ser_median_ns": 30474.5, "ser_std_ns": 1437.5403643880836, "ser_mad_ns": 770.0, "ser_cv": 0.046296168704319206, "ser_min_ns": 28879.0, "ser_max_ns": 35406.0, "ser_p5_ns": 29402.15, "ser_p25_ns": 29937.0, "ser_p50_ns": 30474.5, "ser_p75_ns": 32060.0, "ser_p95_ns": 33785.35, "ser_p99_ns": 34653.63, "ser_ci_low_ns": 30771.315159574468, "ser_ci_high_ns": 31342.263563829787, "deser_mean_ns": 47848.882978723406, "deser_median_ns": 47143.0, "deser_std_ns": 5291.3447299032505, "deser_mad_ns": 4208.5, "deser_cv": 0.1105844985400414, "deser_min_ns": 40194.0, "deser_max_ns": 59738.0, "deser_p5_ns": 41718.45, "deser_p25_ns": 43105.0, "deser_p50_ns": 47143.0, "deser_p75_ns": 51501.0, "deser_p95_ns": 57369.25, "deser_p99_ns": 59617.1, "deser_ci_low_ns": 46781.6085106383, "deser_ci_high_ns": 48863.34361702128, "total_mean_ns": 78899.84042553192, "total_median_ns": 77698.0, "total_std_ns": 5744.924833264016, "total_mad_ns": 4440.0, "total_cv": 0.07281288279266232, "total_min_ns": 69360.0, "total_max_ns": 93344.0, "total_p5_ns": 71699.95, "total_p25_ns": 74499.5, "total_p50_ns": 77698.0, "total_p75_ns": 82779.75, "total_p95_ns": 89297.34999999999, "total_p99_ns": 91029.22999999998, "total_ci_low_ns": 77774.61063829786, "total_ci_high_ns": 80078.14122340427, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.417754777908984}, {"serializer": "nlohmann_json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 1958.0537634408602, "avg_time_deser_ns": 4491.537634408603, "avg_time_total_ns": 6449.591397849463, "median_size_bytes": 411.0, "avg_ops_per_sec": 155048.58188899187, "min_ops_per_sec": 139938.42709207948, "max_ops_per_sec": 168976.00540723218, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1958.0537634408602, "ser_median_ns": 1950.0, "ser_std_ns": 66.7831281725306, "ser_mad_ns": 43.0, "ser_cv": 0.03410689196560852, "ser_min_ns": 1810.0, "ser_max_ns": 2148.0, "ser_p5_ns": 1856.6, "ser_p25_ns": 1914.0, "ser_p50_ns": 1950.0, "ser_p75_ns": 2001.0, "ser_p95_ns": 2071.4, "ser_p99_ns": 2123.16, "ser_ci_low_ns": 1944.5362903225807, "ser_ci_high_ns": 1971.183870967742, "deser_mean_ns": 4491.537634408603, "deser_median_ns": 4445.0, "deser_std_ns": 242.0675237785032, "deser_mad_ns": 190.0, "deser_cv": 0.05389413236217402, "deser_min_ns": 4087.0, "deser_max_ns": 5139.0, "deser_p5_ns": 4182.0, "deser_p25_ns": 4296.0, "deser_p50_ns": 4445.0, "deser_p75_ns": 4682.0, "deser_p95_ns": 4932.4, "deser_p99_ns": 5086.5599999999995, "deser_ci_low_ns": 4440.612634408602, "deser_ci_high_ns": 4539.221505376344, "total_mean_ns": 6449.591397849463, "total_median_ns": 6423.0, "total_std_ns": 264.3810341714143, "total_mad_ns": 196.0, "total_cv": 0.040991904426622885, "total_min_ns": 5918.0, "total_max_ns": 7146.0, "total_p5_ns": 6087.2, "total_p25_ns": 6246.0, "total_p50_ns": 6423.0, "total_p75_ns": 6633.0, "total_p95_ns": 6917.8, "total_p99_ns": 7063.2, "total_ci_low_ns": 6396.511559139785, "total_ci_high_ns": 6505.895161290323, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.22263487752828}, {"serializer": "nlohmann_msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 1032.2527472527472, "avg_time_deser_ns": 5547.604395604396, "avg_time_total_ns": 6579.857142857143, "median_size_bytes": 346.0, "avg_ops_per_sec": 151978.98347771337, "min_ops_per_sec": 132678.7846623325, "max_ops_per_sec": 174794.61632581716, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 1032.2527472527472, "ser_median_ns": 1020.0, "ser_std_ns": 88.75879842541977, "ser_mad_ns": 59.0, "ser_cv": 0.0859855288945888, "ser_min_ns": 854.0, "ser_max_ns": 1257.0, "ser_p5_ns": 908.5, "ser_p25_ns": 972.5, "ser_p50_ns": 1020.0, "ser_p75_ns": 1088.5, "ser_p95_ns": 1192.5, "ser_p99_ns": 1256.1, "ser_ci_low_ns": 1014.0538461538462, "ser_ci_high_ns": 1051.26510989011, "deser_mean_ns": 5547.604395604396, "deser_median_ns": 5564.0, "deser_std_ns": 324.89837314051437, "deser_mad_ns": 208.0, "deser_cv": 0.058565526661912885, "deser_min_ns": 4798.0, "deser_max_ns": 6280.0, "deser_p5_ns": 4979.5, "deser_p25_ns": 5328.5, "deser_p50_ns": 5564.0, "deser_p75_ns": 5761.0, "deser_p95_ns": 6053.0, "deser_p99_ns": 6271.0, "deser_ci_low_ns": 5481.01510989011, "deser_ci_high_ns": 5609.863186813187, "total_mean_ns": 6579.857142857143, "total_median_ns": 6616.0, "total_std_ns": 381.8492888104931, "total_mad_ns": 238.0, "total_cv": 0.05803306675510653, "total_min_ns": 5721.0, "total_max_ns": 7537.0, "total_p5_ns": 5933.0, "total_p25_ns": 6346.5, "total_p50_ns": 6616.0, "total_p75_ns": 6839.5, "total_p95_ns": 7217.5, "total_p99_ns": 7486.599999999999, "total_ci_low_ns": 6503.956868131868, "total_ci_high_ns": 6657.176373626374, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.268267474051857}, {"serializer": "jsoncons_cbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 2665.9895833333335, "avg_time_deser_ns": 11245.09375, "avg_time_total_ns": 13911.083333333334, "median_size_bytes": 345.0, "avg_ops_per_sec": 71885.12756614928, "min_ops_per_sec": 64283.87760349704, "max_ops_per_sec": 77802.84758422158, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 2665.9895833333335, "ser_median_ns": 2650.0, "ser_std_ns": 184.28590458087936, "ser_mad_ns": 126.0, "ser_cv": 0.06912476542780166, "ser_min_ns": 2307.0, "ser_max_ns": 3142.0, "ser_p5_ns": 2369.25, "ser_p25_ns": 2557.0, "ser_p50_ns": 2650.0, "ser_p75_ns": 2790.0, "ser_p95_ns": 2983.25, "ser_p99_ns": 3125.85, "ser_ci_low_ns": 2627.6231770833333, "ser_ci_high_ns": 2702.188020833333, "deser_mean_ns": 11245.09375, "deser_median_ns": 11242.0, "deser_std_ns": 499.0060874668238, "deser_mad_ns": 397.0, "deser_cv": 0.04437544929021368, "deser_min_ns": 10206.0, "deser_max_ns": 12499.0, "deser_p5_ns": 10472.0, "deser_p25_ns": 10867.5, "deser_p50_ns": 11242.0, "deser_p75_ns": 11646.75, "deser_p95_ns": 11977.5, "deser_p99_ns": 12434.4, "deser_ci_low_ns": 11147.225260416666, "deser_ci_high_ns": 11340.53828125, "total_mean_ns": 13911.083333333334, "total_median_ns": 13950.5, "total_std_ns": 549.2936836312548, "total_mad_ns": 386.0, "total_cv": 0.0394860465191128, "total_min_ns": 12853.0, "total_max_ns": 15556.0, "total_p5_ns": 12977.0, "total_p25_ns": 13513.75, "total_p50_ns": 13950.5, "total_p75_ns": 14281.25, "total_p95_ns": 14715.5, "total_p99_ns": 15503.75, "total_ci_low_ns": 13802.371614583333, "total_ci_high_ns": 14019.564843749999, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 31.773399069075264}, {"serializer": "flatbuffers", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "flatbuffers", "avg_time_ser_ns": 679.752688172043, "avg_time_deser_ns": 672.2258064516129, "avg_time_total_ns": 1351.978494623656, "median_size_bytes": 392.0, "avg_ops_per_sec": 739656.7356482734, "min_ops_per_sec": 466635.5576294914, "max_ops_per_sec": 1126126.1261261262, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 679.752688172043, "ser_median_ns": 666.0, "ser_std_ns": 271.8424518113858, "ser_mad_ns": 222.0, "ser_cv": 0.39991375766738185, "ser_min_ns": 234.0, "ser_max_ns": 1458.0, "ser_p5_ns": 265.0, "ser_p25_ns": 485.0, "ser_p50_ns": 666.0, "ser_p75_ns": 937.0, "ser_p95_ns": 1017.5999999999998, "ser_p99_ns": 1327.3599999999997, "ser_ci_low_ns": 626.6768817204301, "ser_ci_high_ns": 735.1637096774192, "deser_mean_ns": 672.2258064516129, "deser_median_ns": 660.0, "deser_std_ns": 50.48377462810465, "deser_mad_ns": 31.0, "deser_cv": 0.07509942960176803, "deser_min_ns": 580.0, "deser_max_ns": 800.0, "deser_p5_ns": 596.4, "deser_p25_ns": 640.0, "deser_p50_ns": 660.0, "deser_p75_ns": 700.0, "deser_p95_ns": 779.0, "deser_p99_ns": 787.12, "deser_ci_low_ns": 661.9137096774193, "deser_ci_high_ns": 682.7779569892473, "total_mean_ns": 1351.978494623656, "total_median_ns": 1342.0, "total_std_ns": 271.71844356975487, "total_mad_ns": 219.0, "total_cv": 0.20097837698623444, "total_min_ns": 888.0, "total_max_ns": 2143.0, "total_p5_ns": 934.8000000000001, "total_p25_ns": 1163.0, "total_p50_ns": 1342.0, "total_p75_ns": 1577.0, "total_p95_ns": 1741.5999999999997, "total_p99_ns": 2039.9599999999998, "total_ci_low_ns": 1297.1236559139786, "total_ci_high_ns": 1405.8860215053764, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 0.35296867695184664, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.6879728826412266}, {"serializer": "jsoncons_msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 2533.8350515463917, "avg_time_deser_ns": 10910.154639175258, "avg_time_total_ns": 13443.98969072165, "median_size_bytes": 346.0, "avg_ops_per_sec": 74382.6812579415, "min_ops_per_sec": 65342.39414532149, "max_ops_per_sec": 83864.47500838645, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 2533.8350515463917, "ser_median_ns": 2514.0, "ser_std_ns": 184.63554643835803, "ser_mad_ns": 115.0, "ser_cv": 0.07286802127300099, "ser_min_ns": 2121.0, "ser_max_ns": 2997.0, "ser_p5_ns": 2292.8, "ser_p25_ns": 2403.0, "ser_p50_ns": 2514.0, "ser_p75_ns": 2638.0, "ser_p95_ns": 2934.7999999999997, "ser_p99_ns": 2992.2, "ser_ci_low_ns": 2497.051030927835, "ser_ci_high_ns": 2569.714948453608, "deser_mean_ns": 10910.154639175258, "deser_median_ns": 10901.0, "deser_std_ns": 564.9878748736963, "deser_mad_ns": 418.0, "deser_cv": 0.051785505665060495, "deser_min_ns": 9803.0, "deser_max_ns": 12338.0, "deser_p5_ns": 10028.2, "deser_p25_ns": 10532.0, "deser_p50_ns": 10901.0, "deser_p75_ns": 11454.0, "deser_p95_ns": 11735.4, "deser_p99_ns": 12303.44, "deser_ci_low_ns": 10800.224742268041, "deser_ci_high_ns": 11020.721907216495, "total_mean_ns": 13443.98969072165, "total_median_ns": 13385.0, "total_std_ns": 655.870676004509, "total_mad_ns": 478.0, "total_cv": 0.048785419439674016, "total_min_ns": 11924.0, "total_max_ns": 15304.0, "total_p5_ns": 12520.8, "total_p25_ns": 13008.0, "total_p50_ns": 13385.0, "total_p75_ns": 13967.0, "total_p95_ns": 14384.8, "total_p99_ns": 14962.239999999998, "total_ci_low_ns": 13319.375, "total_ci_high_ns": 13574.478865979383, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.675262176433616}, {"serializer": "cereal", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "1.3.2", "avg_time_ser_ns": 1569.0520833333333, "avg_time_deser_ns": 1476.7604166666667, "avg_time_total_ns": 3045.8125, "median_size_bytes": 568.0, "avg_ops_per_sec": 328319.6191492418, "min_ops_per_sec": 287604.25654299685, "max_ops_per_sec": 377643.50453172205, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 1569.0520833333333, "ser_median_ns": 1562.0, "ser_std_ns": 110.08842090186717, "ser_mad_ns": 79.0, "ser_cv": 0.0701623751507296, "ser_min_ns": 1338.0, "ser_max_ns": 1818.0, "ser_p5_ns": 1409.75, "ser_p25_ns": 1487.75, "ser_p50_ns": 1562.0, "ser_p75_ns": 1645.75, "ser_p95_ns": 1763.25, "ser_p99_ns": 1804.7, "ser_ci_low_ns": 1546.4546874999999, "ser_ci_high_ns": 1590.6791666666666, "deser_mean_ns": 1476.7604166666667, "deser_median_ns": 1493.5, "deser_std_ns": 120.07048322957003, "deser_mad_ns": 82.0, "deser_cv": 0.0813066776942683, "deser_min_ns": 1153.0, "deser_max_ns": 1784.0, "deser_p5_ns": 1256.75, "deser_p25_ns": 1399.0, "deser_p50_ns": 1493.5, "deser_p75_ns": 1564.25, "deser_p95_ns": 1636.25, "deser_p99_ns": 1702.2999999999997, "deser_ci_low_ns": 1452.8013020833332, "deser_ci_high_ns": 1502.0523437499999, "total_mean_ns": 3045.8125, "total_median_ns": 3053.5, "total_std_ns": 177.3089075151345, "total_mad_ns": 130.0, "total_cv": 0.05821399298713709, "total_min_ns": 2648.0, "total_max_ns": 3477.0, "total_p5_ns": 2754.5, "total_p25_ns": 2917.0, "total_p50_ns": 3053.5, "total_p75_ns": 3166.75, "total_p95_ns": 3346.5, "total_p99_ns": 3415.25, "total_ci_low_ns": 3013.1872395833334, "total_ci_high_ns": 3081.5296875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.785083492472232}, {"serializer": "nlohmann_cbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 997.2659574468086, "avg_time_deser_ns": 5142.606382978724, "avg_time_total_ns": 6139.872340425532, "median_size_bytes": 345.0, "avg_ops_per_sec": 162869.83581334425, "min_ops_per_sec": 144487.79078167895, "max_ops_per_sec": 193461.0176049526, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 997.2659574468086, "ser_median_ns": 993.5, "ser_std_ns": 96.27225904122847, "ser_mad_ns": 65.0, "ser_cv": 0.09653619310108995, "ser_min_ns": 779.0, "ser_max_ns": 1252.0, "ser_p5_ns": 860.2, "ser_p25_ns": 922.0, "ser_p50_ns": 993.5, "ser_p75_ns": 1057.0, "ser_p95_ns": 1158.8999999999999, "ser_p99_ns": 1237.12, "ser_ci_low_ns": 979.0087765957447, "ser_ci_high_ns": 1016.6611702127659, "deser_mean_ns": 5142.606382978724, "deser_median_ns": 5154.0, "deser_std_ns": 363.8933205982542, "deser_mad_ns": 241.5, "deser_cv": 0.07076048476171304, "deser_min_ns": 4306.0, "deser_max_ns": 5845.0, "deser_p5_ns": 4485.95, "deser_p25_ns": 4908.5, "deser_p50_ns": 5154.0, "deser_p75_ns": 5384.25, "deser_p95_ns": 5728.95, "deser_p99_ns": 5778.039999999999, "deser_ci_low_ns": 5075.943882978723, "deser_ci_high_ns": 5210.738829787234, "total_mean_ns": 6139.872340425532, "total_median_ns": 6158.0, "total_std_ns": 413.6880606021717, "total_mad_ns": 277.5, "total_cv": 0.06737730650821651, "total_min_ns": 5169.0, "total_max_ns": 6921.0, "total_p5_ns": 5437.75, "total_p25_ns": 5851.75, "total_p50_ns": 6158.0, "total_p75_ns": 6387.5, "total_p95_ns": 6785.35, "total_p99_ns": 6913.5599999999995, "total_ci_low_ns": 6060.486436170213, "total_ci_high_ns": 6224.670212765957, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.279417278050335}, {"serializer": "nlohmann_bson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 2638.557894736842, "avg_time_deser_ns": 5475.873684210526, "avg_time_total_ns": 8114.4315789473685, "median_size_bytes": 599.0, "avg_ops_per_sec": 123237.22127307941, "min_ops_per_sec": 110350.91591260207, "max_ops_per_sec": 139625.80284836638, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 2638.557894736842, "ser_median_ns": 2618.0, "ser_std_ns": 319.64633767182454, "ser_mad_ns": 269.0, "ser_cv": 0.12114433354273799, "ser_min_ns": 2060.0, "ser_max_ns": 3324.0, "ser_p5_ns": 2184.2, "ser_p25_ns": 2357.0, "ser_p50_ns": 2618.0, "ser_p75_ns": 2882.0, "ser_p95_ns": 3197.4, "ser_p99_ns": 3241.28, "ser_ci_low_ns": 2576.322894736842, "ser_ci_high_ns": 2701.622105263158, "deser_mean_ns": 5475.873684210526, "deser_median_ns": 5429.0, "deser_std_ns": 236.03106728912593, "deser_mad_ns": 160.0, "deser_cv": 0.04310381884259174, "deser_min_ns": 4978.0, "deser_max_ns": 6035.0, "deser_p5_ns": 5100.2, "deser_p25_ns": 5322.5, "deser_p50_ns": 5429.0, "deser_p75_ns": 5647.5, "deser_p95_ns": 5888.4, "deser_p99_ns": 5997.4, "deser_ci_low_ns": 5426.918421052632, "deser_ci_high_ns": 5523.944473684211, "total_mean_ns": 8114.4315789473685, "total_median_ns": 8059.0, "total_std_ns": 420.9267549523485, "total_mad_ns": 289.0, "total_cv": 0.05187384363982185, "total_min_ns": 7162.0, "total_max_ns": 9062.0, "total_p5_ns": 7522.2, "total_p25_ns": 7803.5, "total_p50_ns": 8059.0, "total_p75_ns": 8435.0, "total_p95_ns": 8816.7, "total_p99_ns": 8976.460000000001, "total_ci_low_ns": 8028.756842105263, "total_ci_high_ns": 8196.309210526315, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.374808444957125}, {"serializer": "protobuf-wire", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "wire-v2", "avg_time_ser_ns": 681.375, "avg_time_deser_ns": 618.9479166666666, "avg_time_total_ns": 1300.3229166666667, "median_size_bytes": 368.0, "avg_ops_per_sec": 769039.74173082, "min_ops_per_sec": 646830.530401035, "max_ops_per_sec": 916590.284142988, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 681.375, "ser_median_ns": 676.5, "ser_std_ns": 64.34140027597849, "ser_mad_ns": 36.5, "ser_cv": 0.09442876576918509, "ser_min_ns": 550.0, "ser_max_ns": 834.0, "ser_p5_ns": 571.75, "ser_p25_ns": 642.75, "ser_p50_ns": 676.5, "ser_p75_ns": 722.25, "ser_p95_ns": 792.5, "ser_p99_ns": 832.1, "ser_ci_low_ns": 668.1416666666668, "ser_ci_high_ns": 694.1255208333333, "deser_mean_ns": 618.9479166666666, "deser_median_ns": 615.5, "deser_std_ns": 60.69949618999566, "deser_mad_ns": 41.0, "deser_cv": 0.09806882704588742, "deser_min_ns": 517.0, "deser_max_ns": 782.0, "deser_p5_ns": 530.75, "deser_p25_ns": 568.75, "deser_p50_ns": 615.5, "deser_p75_ns": 650.25, "deser_p95_ns": 726.5, "deser_p99_ns": 763.9499999999999, "deser_ci_low_ns": 607.3002604166667, "deser_ci_high_ns": 630.8440104166667, "total_mean_ns": 1300.3229166666667, "total_median_ns": 1287.0, "total_std_ns": 107.25812395109645, "total_mad_ns": 75.0, "total_cv": 0.0824857599418835, "total_min_ns": 1091.0, "total_max_ns": 1546.0, "total_p5_ns": 1124.75, "total_p25_ns": 1219.25, "total_p50_ns": 1287.0, "total_p75_ns": 1378.25, "total_p95_ns": 1482.25, "total_p99_ns": 1525.1, "total_ci_low_ns": 1278.0041666666668, "total_ci_high_ns": 1320.7096354166665, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 0.4607110507246377, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.8774280013603645}, {"serializer": "msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "msgpack-cxx", "avg_time_ser_ns": 965.505376344086, "avg_time_deser_ns": 971.4623655913979, "avg_time_total_ns": 1936.967741935484, "median_size_bytes": 346.0, "avg_ops_per_sec": 516270.8590080938, "min_ops_per_sec": 371195.24870081665, "max_ops_per_sec": 780031.20124805, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 965.505376344086, "ser_median_ns": 968.0, "ser_std_ns": 320.3649285904759, "ser_mad_ns": 238.0, "ser_cv": 0.3318106107327408, "ser_min_ns": 425.0, "ser_max_ns": 1672.0, "ser_p5_ns": 471.8, "ser_p25_ns": 774.0, "ser_p50_ns": 968.0, "ser_p75_ns": 1227.0, "ser_p95_ns": 1444.8, "ser_p99_ns": 1581.84, "ser_ci_low_ns": 899.5672043010753, "ser_ci_high_ns": 1028.5854838709677, "deser_mean_ns": 971.4623655913979, "deser_median_ns": 982.0, "deser_std_ns": 50.38623844640453, "deser_mad_ns": 30.0, "deser_cv": 0.05186638230265448, "deser_min_ns": 837.0, "deser_max_ns": 1071.0, "deser_p5_ns": 874.4, "deser_p25_ns": 942.0, "deser_p50_ns": 982.0, "deser_p75_ns": 1004.0, "deser_p95_ns": 1041.6, "deser_p99_ns": 1069.16, "deser_ci_low_ns": 961.3548387096774, "deser_ci_high_ns": 981.3024193548387, "total_mean_ns": 1936.967741935484, "total_median_ns": 1933.0, "total_std_ns": 335.2281653756886, "total_mad_ns": 252.0, "total_cv": 0.17306853290221408, "total_min_ns": 1282.0, "total_max_ns": 2694.0, "total_p5_ns": 1412.2, "total_p25_ns": 1659.0, "total_p50_ns": 1933.0, "total_p75_ns": 2181.0, "total_p95_ns": 2439.7999999999997, "total_p99_ns": 2555.08, "total_ci_low_ns": 1870.423924731183, "total_ci_high_ns": 2003.708064516129, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 0.9898316970546984, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.928201235168276}, {"serializer": "flexbuffers", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "flatbuffers-flex", "avg_time_ser_ns": 1543.4787234042553, "avg_time_deser_ns": 2781.31914893617, "avg_time_total_ns": 4324.797872340426, "median_size_bytes": 484.0, "avg_ops_per_sec": 231224.67905276595, "min_ops_per_sec": 200440.97013429544, "max_ops_per_sec": 264200.7926023778, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 1543.4787234042553, "ser_median_ns": 1541.0, "ser_std_ns": 98.02871301152977, "ser_mad_ns": 65.5, "ser_cv": 0.06351154151015459, "ser_min_ns": 1308.0, "ser_max_ns": 1790.0, "ser_p5_ns": 1362.65, "ser_p25_ns": 1491.75, "ser_p50_ns": 1541.0, "ser_p75_ns": 1615.75, "ser_p95_ns": 1691.7, "ser_p99_ns": 1757.4499999999998, "ser_ci_low_ns": 1524.2324468085108, "ser_ci_high_ns": 1562.4585106382979, "deser_mean_ns": 2781.31914893617, "deser_median_ns": 2729.0, "deser_std_ns": 231.73539845736263, "deser_mad_ns": 154.5, "deser_cv": 0.08331852119380093, "deser_min_ns": 2373.0, "deser_max_ns": 3330.0, "deser_p5_ns": 2469.1, "deser_p25_ns": 2611.0, "deser_p50_ns": 2729.0, "deser_p75_ns": 2912.5, "deser_p95_ns": 3233.95, "deser_p99_ns": 3279.7799999999997, "deser_ci_low_ns": 2733.688829787234, "deser_ci_high_ns": 2827.501861702128, "total_mean_ns": 4324.797872340426, "total_median_ns": 4295.5, "total_std_ns": 285.30906010915714, "total_mad_ns": 166.0, "total_cv": 0.06597049585458617, "total_min_ns": 3785.0, "total_max_ns": 4989.0, "total_p5_ns": 3871.65, "total_p25_ns": 4119.5, "total_p50_ns": 4295.5, "total_p75_ns": 4449.25, "total_p95_ns": 4859.4, "total_p99_ns": 4954.59, "total_ci_low_ns": 4270.512765957447, "total_ci_high_ns": 4383.07579787234, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.527911125229316}, {"serializer": "thrift", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "TBinaryProtocol", "avg_time_ser_ns": 764.2727272727273, "avg_time_deser_ns": 587.6363636363636, "avg_time_total_ns": 1351.909090909091, "median_size_bytes": 441.0, "avg_ops_per_sec": 739694.7078205904, "min_ops_per_sec": 647249.1909385113, "max_ops_per_sec": 884173.2979664014, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 764.2727272727273, "ser_median_ns": 762.0, "ser_std_ns": 57.27684880096358, "ser_mad_ns": 33.0, "ser_cv": 0.07494294478536925, "ser_min_ns": 620.0, "ser_max_ns": 908.0, "ser_p5_ns": 665.25, "ser_p25_ns": 731.0, "ser_p50_ns": 762.0, "ser_p75_ns": 800.75, "ser_p95_ns": 861.6999999999998, "ser_p99_ns": 907.13, "ser_ci_low_ns": 752.2605113636364, "ser_ci_high_ns": 776.0352272727272, "deser_mean_ns": 587.6363636363636, "deser_median_ns": 588.0, "deser_std_ns": 52.759306379191294, "deser_mad_ns": 34.5, "deser_cv": 0.08978223548439113, "deser_min_ns": 473.0, "deser_max_ns": 726.0, "deser_p5_ns": 509.0, "deser_p25_ns": 549.5, "deser_p50_ns": 588.0, "deser_p75_ns": 617.0, "deser_p95_ns": 682.65, "deser_p99_ns": 717.3, "deser_ci_low_ns": 576.7025568181818, "deser_ci_high_ns": 598.2954545454545, "total_mean_ns": 1351.909090909091, "total_median_ns": 1360.0, "total_std_ns": 92.16459992656522, "total_mad_ns": 58.0, "total_cv": 0.06817366681408227, "total_min_ns": 1131.0, "total_max_ns": 1545.0, "total_p5_ns": 1182.8, "total_p25_ns": 1300.5, "total_p50_ns": 1360.0, "total_p75_ns": 1409.5, "total_p95_ns": 1502.65, "total_p99_ns": 1523.25, "total_ci_low_ns": 1332.646590909091, "total_ci_high_ns": 1372.2386363636363, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 0.7040513833992095, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.5012289161847332}, {"serializer": "arduinojson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "7.2.1", "avg_time_ser_ns": 2142.5, "avg_time_deser_ns": 8870.239583333334, "avg_time_total_ns": 11012.739583333334, "median_size_bytes": 411.0, "avg_ops_per_sec": 90803.92689148836, "min_ops_per_sec": 80237.50300890637, "max_ops_per_sec": 98493.05623953512, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 2142.5, "ser_median_ns": 2143.0, "ser_std_ns": 59.67173358864048, "ser_mad_ns": 39.0, "ser_cv": 0.02785145091651831, "ser_min_ns": 2010.0, "ser_max_ns": 2289.0, "ser_p5_ns": 2045.75, "ser_p25_ns": 2104.0, "ser_p50_ns": 2143.0, "ser_p75_ns": 2180.5, "ser_p95_ns": 2246.5, "ser_p99_ns": 2274.75, "ser_ci_low_ns": 2130.280208333333, "ser_ci_high_ns": 2154.315885416667, "deser_mean_ns": 8870.239583333334, "deser_median_ns": 8695.0, "deser_std_ns": 501.53412529729155, "deser_mad_ns": 305.5, "deser_cv": 0.05654121521583759, "deser_min_ns": 8143.0, "deser_max_ns": 10268.0, "deser_p5_ns": 8255.5, "deser_p25_ns": 8518.25, "deser_p50_ns": 8695.0, "deser_p75_ns": 9204.0, "deser_p95_ns": 9810.5, "deser_p99_ns": 10215.75, "deser_ci_low_ns": 8773.586979166666, "deser_ci_high_ns": 8971.3375, "total_mean_ns": 11012.739583333334, "total_median_ns": 10836.0, "total_std_ns": 520.6681991197095, "total_mad_ns": 306.5, "total_cv": 0.047278717087589, "total_min_ns": 10153.0, "total_max_ns": 12463.0, "total_p5_ns": 10403.25, "total_p25_ns": 10659.25, "total_p50_ns": 10836.0, "total_p75_ns": 11321.25, "total_p95_ns": 11918.25, "total_p99_ns": 12448.75, "total_ci_low_ns": 10913.08515625, "total_ci_high_ns": 11118.473697916666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.830152501410858}, {"serializer": "avro_c", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "avro-c", "avg_time_ser_ns": 2677.0752688172042, "avg_time_deser_ns": 3751.94623655914, "avg_time_total_ns": 6429.021505376344, "median_size_bytes": 338.0, "avg_ops_per_sec": 155544.66557060642, "min_ops_per_sec": 135116.87609782463, "max_ops_per_sec": 176335.7432551578, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 2677.0752688172042, "ser_median_ns": 2651.0, "ser_std_ns": 328.2024904046393, "ser_mad_ns": 251.0, "ser_cv": 0.12259740853294984, "ser_min_ns": 2093.0, "ser_max_ns": 3558.0, "ser_p5_ns": 2198.4, "ser_p25_ns": 2418.0, "ser_p50_ns": 2651.0, "ser_p75_ns": 2904.0, "ser_p95_ns": 3252.7999999999997, "ser_p99_ns": 3449.4399999999996, "ser_ci_low_ns": 2608.202688172043, "ser_ci_high_ns": 2743.723387096774, "deser_mean_ns": 3751.94623655914, "deser_median_ns": 3775.0, "deser_std_ns": 175.5521330713471, "deser_mad_ns": 137.0, "deser_cv": 0.04678961850805827, "deser_min_ns": 3407.0, "deser_max_ns": 4270.0, "deser_p5_ns": 3499.4, "deser_p25_ns": 3625.0, "deser_p50_ns": 3775.0, "deser_p75_ns": 3880.0, "deser_p95_ns": 4016.2, "deser_p99_ns": 4183.5199999999995, "deser_ci_low_ns": 3714.847849462366, "deser_ci_high_ns": 3788.3333333333335, "total_mean_ns": 6429.021505376344, "total_median_ns": 6365.0, "total_std_ns": 412.5919391216266, "total_mad_ns": 229.0, "total_cv": 0.06417647518780141, "total_min_ns": 5671.0, "total_max_ns": 7401.0, "total_p5_ns": 5773.2, "total_p25_ns": 6195.0, "total_p50_ns": 6365.0, "total_p75_ns": 6667.0, "total_p95_ns": 7245.8, "total_p99_ns": 7340.28, "total_ci_low_ns": 6345.999731182796, "total_ci_high_ns": 6511.129838709678, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.31941706470084}, {"serializer": "jsoncons_bson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 4716.924731182796, "avg_time_deser_ns": 11420.505376344086, "avg_time_total_ns": 16137.430107526881, "median_size_bytes": 599.0, "avg_ops_per_sec": 61967.73546573418, "min_ops_per_sec": 57129.79890310786, "max_ops_per_sec": 67109.58996040534, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 4716.924731182796, "ser_median_ns": 4647.0, "ser_std_ns": 264.94102036684467, "ser_mad_ns": 168.0, "ser_cv": 0.056168167919950926, "ser_min_ns": 4261.0, "ser_max_ns": 5490.0, "ser_p5_ns": 4372.6, "ser_p25_ns": 4533.0, "ser_p50_ns": 4647.0, "ser_p75_ns": 4888.0, "ser_p95_ns": 5219.0, "ser_p99_ns": 5427.44, "ser_ci_low_ns": 4664.30376344086, "ser_ci_high_ns": 4773.549193548388, "deser_mean_ns": 11420.505376344086, "deser_median_ns": 11387.0, "deser_std_ns": 514.5580337332966, "deser_mad_ns": 321.0, "deser_cv": 0.045055627292915484, "deser_min_ns": 10452.0, "deser_max_ns": 12594.0, "deser_p5_ns": 10640.4, "deser_p25_ns": 11040.0, "deser_p50_ns": 11387.0, "deser_p75_ns": 11690.0, "deser_p95_ns": 12387.4, "deser_p99_ns": 12479.92, "deser_ci_low_ns": 11318.532258064517, "deser_ci_high_ns": 11524.649731182795, "total_mean_ns": 16137.430107526881, "total_median_ns": 16196.0, "total_std_ns": 564.914179666285, "total_mad_ns": 358.0, "total_cv": 0.035006452446402575, "total_min_ns": 14901.0, "total_max_ns": 17504.0, "total_p5_ns": 15162.0, "total_p25_ns": 15798.0, "total_p50_ns": 16196.0, "total_p75_ns": 16452.0, "total_p95_ns": 17067.8, "total_p99_ns": 17430.4, "total_ci_low_ns": 16022.550806451613, "total_ci_high_ns": 16250.897311827955, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 36.608842226115875}, {"serializer": "yas", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "7.x", "avg_time_ser_ns": 980.8247422680413, "avg_time_deser_ns": 641.5257731958762, "avg_time_total_ns": 1622.3505154639174, "median_size_bytes": 575.0, "avg_ops_per_sec": 616389.6090691882, "min_ops_per_sec": 395726.1574990107, "max_ops_per_sec": 925069.3802035153, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 980.8247422680413, "ser_median_ns": 961.0, "ser_std_ns": 300.04930186239386, "ser_mad_ns": 267.0, "ser_cv": 0.3059153067127623, "ser_min_ns": 501.0, "ser_max_ns": 1831.0, "ser_p5_ns": 536.0, "ser_p25_ns": 769.0, "ser_p50_ns": 961.0, "ser_p75_ns": 1233.0, "ser_p95_ns": 1422.6, "ser_p99_ns": 1672.5999999999988, "ser_ci_low_ns": 920.0708762886599, "ser_ci_high_ns": 1041.372680412371, "deser_mean_ns": 641.5257731958762, "deser_median_ns": 650.0, "deser_std_ns": 61.19812306209255, "deser_mad_ns": 43.0, "deser_cv": 0.09539464448516709, "deser_min_ns": 505.0, "deser_max_ns": 813.0, "deser_p5_ns": 540.6, "deser_p25_ns": 598.0, "deser_p50_ns": 650.0, "deser_p75_ns": 686.0, "deser_p95_ns": 731.0, "deser_p99_ns": 753.4799999999996, "deser_ci_low_ns": 629.7211340206186, "deser_ci_high_ns": 654.4136597938144, "total_mean_ns": 1622.3505154639174, "total_median_ns": 1628.0, "total_std_ns": 324.1843945849952, "total_mad_ns": 264.0, "total_cv": 0.1998238922445766, "total_min_ns": 1081.0, "total_max_ns": 2527.0, "total_p5_ns": 1130.0, "total_p25_ns": 1358.0, "total_p50_ns": 1628.0, "total_p75_ns": 1883.0, "total_p95_ns": 2085.399999999999, "total_p99_ns": 2375.319999999999, "total_ci_low_ns": 1559.661855670103, "total_ci_high_ns": 1686.8863402061854, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 0.7405871806364859, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.6961925373529732}, {"serializer": "avro", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "binary-1.11", "avg_time_ser_ns": 631.9368421052632, "avg_time_deser_ns": 650.9578947368421, "avg_time_total_ns": 1282.8947368421052, "median_size_bytes": 338.0, "avg_ops_per_sec": 779487.1794871795, "min_ops_per_sec": 645577.7921239509, "max_ops_per_sec": 962463.9076034649, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 631.9368421052632, "ser_median_ns": 621.0, "ser_std_ns": 63.729449841934574, "ser_mad_ns": 41.0, "ser_cv": 0.10084781515447554, "ser_min_ns": 512.0, "ser_max_ns": 780.0, "ser_p5_ns": 546.4, "ser_p25_ns": 589.5, "ser_p50_ns": 621.0, "ser_p75_ns": 671.0, "ser_p95_ns": 761.9, "ser_p99_ns": 776.24, "ser_ci_low_ns": 618.9052631578948, "ser_ci_high_ns": 644.7002631578947, "deser_mean_ns": 650.9578947368421, "deser_median_ns": 650.0, "deser_std_ns": 59.53667130066368, "deser_mad_ns": 40.0, "deser_cv": 0.09146009562528175, "deser_min_ns": 503.0, "deser_max_ns": 796.0, "deser_p5_ns": 558.6, "deser_p25_ns": 610.5, "deser_p50_ns": 650.0, "deser_p75_ns": 689.0, "deser_p95_ns": 745.8, "deser_p99_ns": 780.96, "deser_ci_low_ns": 639.6068421052631, "deser_ci_high_ns": 662.6339473684211, "total_mean_ns": 1282.8947368421052, "total_median_ns": 1269.0, "total_std_ns": 112.85383822357004, "total_mad_ns": 74.0, "total_cv": 0.08796812005119306, "total_min_ns": 1039.0, "total_max_ns": 1549.0, "total_p5_ns": 1141.2, "total_p25_ns": 1196.0, "total_p50_ns": 1269.0, "total_p75_ns": 1348.0, "total_p95_ns": 1505.2, "total_p99_ns": 1541.48, "total_ci_low_ns": 1261.305, "total_ci_high_ns": 1305.7807894736843, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 0.36967963386727687, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.6855150995165302}, {"serializer": "zpp_bits", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "4.4.25", "avg_time_ser_ns": 627.4130434782609, "avg_time_deser_ns": 583.7391304347826, "avg_time_total_ns": 1211.1521739130435, "median_size_bytes": 436.0, "avg_ops_per_sec": 825660.0793351642, "min_ops_per_sec": 702740.6886858749, "max_ops_per_sec": 1035196.6873706004, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 627.4130434782609, "ser_median_ns": 624.5, "ser_std_ns": 54.4218670041544, "ser_mad_ns": 39.5, "ser_cv": 0.08674009501372448, "ser_min_ns": 484.0, "ser_max_ns": 765.0, "ser_p5_ns": 550.75, "ser_p25_ns": 585.0, "ser_p50_ns": 624.5, "ser_p75_ns": 664.0, "ser_p95_ns": 716.6, "ser_p99_ns": 735.8800000000001, "ser_ci_low_ns": 616.2771739130435, "ser_ci_high_ns": 638.891847826087, "deser_mean_ns": 583.7391304347826, "deser_median_ns": 573.0, "deser_std_ns": 51.733439685112074, "deser_mad_ns": 32.5, "deser_cv": 0.08862424495438535, "deser_min_ns": 444.0, "deser_max_ns": 711.0, "deser_p5_ns": 520.85, "deser_p25_ns": 547.0, "deser_p50_ns": 573.0, "deser_p75_ns": 615.0, "deser_p95_ns": 674.25, "deser_p99_ns": 710.09, "deser_ci_low_ns": 573.7255434782609, "deser_ci_high_ns": 594.3274456521739, "total_mean_ns": 1211.1521739130435, "total_median_ns": 1200.5, "total_std_ns": 94.49936737768464, "total_mad_ns": 63.5, "total_cv": 0.07802435516618192, "total_min_ns": 966.0, "total_max_ns": 1423.0, "total_p5_ns": 1099.2, "total_p25_ns": 1141.5, "total_p50_ns": 1200.5, "total_p75_ns": 1267.75, "total_p95_ns": 1381.25, "total_p99_ns": 1402.0700000000002, "total_ci_low_ns": 1192.3236413043478, "total_ci_high_ns": 1230.7426630434782, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "capnproto", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "1.0.x", "avg_time_ser_ns": 1159.9569892473119, "avg_time_deser_ns": 805.1182795698925, "avg_time_total_ns": 1965.0752688172042, "median_size_bytes": 736.0, "avg_ops_per_sec": 508886.35965680267, "min_ops_per_sec": 349162.0111731844, "max_ops_per_sec": 763941.9404125287, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1159.9569892473119, "ser_median_ns": 1100.0, "ser_std_ns": 305.13503475398414, "ser_mad_ns": 240.0, "ser_cv": 0.2630571974500401, "ser_min_ns": 653.0, "ser_max_ns": 1922.0, "ser_p5_ns": 701.0, "ser_p25_ns": 976.0, "ser_p50_ns": 1100.0, "ser_p75_ns": 1377.0, "ser_p95_ns": 1641.1999999999996, "ser_p99_ns": 1818.9599999999998, "ser_ci_low_ns": 1099.579569892473, "ser_ci_high_ns": 1220.6709677419356, "deser_mean_ns": 805.1182795698925, "deser_median_ns": 794.0, "deser_std_ns": 76.90604791369532, "deser_mad_ns": 59.0, "deser_cv": 0.09552142817423026, "deser_min_ns": 647.0, "deser_max_ns": 973.0, "deser_p5_ns": 690.4, "deser_p25_ns": 757.0, "deser_p50_ns": 794.0, "deser_p75_ns": 857.0, "deser_p95_ns": 947.1999999999999, "deser_p99_ns": 963.8, "deser_ci_low_ns": 789.266935483871, "deser_ci_high_ns": 821.0975806451613, "total_mean_ns": 1965.0752688172042, "total_median_ns": 1917.0, "total_std_ns": 329.1062414875601, "total_mad_ns": 237.0, "total_cv": 0.16747767717093706, "total_min_ns": 1309.0, "total_max_ns": 2864.0, "total_p5_ns": 1476.6, "total_p25_ns": 1756.0, "total_p50_ns": 1917.0, "total_p75_ns": 2189.0, "total_p95_ns": 2491.3999999999996, "total_p99_ns": 2598.1199999999994, "total_ci_low_ns": 1900.3422043010753, "total_ci_high_ns": 2036.5293010752687, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 0.9929873772791024, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.0939457150765297}, {"serializer": "simdjson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.10.1", "avg_time_ser_ns": 133.46052631578948, "avg_time_deser_ns": 5429.065789473684, "avg_time_total_ns": 5562.526315789473, "median_size_bytes": 411.0, "avg_ops_per_sec": 179774.43039891002, "min_ops_per_sec": 162074.55429497568, "max_ops_per_sec": 196386.48860958367, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 133.46052631578948, "ser_median_ns": 134.0, "ser_std_ns": 4.158335530709963, "ser_mad_ns": 2.0, "ser_cv": 0.031157793585128383, "ser_min_ns": 125.0, "ser_max_ns": 143.0, "ser_p5_ns": 125.0, "ser_p25_ns": 131.0, "ser_p50_ns": 134.0, "ser_p75_ns": 136.0, "ser_p95_ns": 141.0, "ser_p99_ns": 142.25, "ser_ci_low_ns": 132.53947368421052, "ser_ci_high_ns": 134.43421052631578, "deser_mean_ns": 5429.065789473684, "deser_median_ns": 5402.5, "deser_std_ns": 234.76645618011196, "deser_mad_ns": 168.0, "deser_cv": 0.04324251451056208, "deser_min_ns": 4966.0, "deser_max_ns": 6034.0, "deser_p5_ns": 5083.5, "deser_p25_ns": 5240.5, "deser_p50_ns": 5402.5, "deser_p75_ns": 5575.0, "deser_p95_ns": 5848.25, "deser_p99_ns": 5945.5, "deser_ci_low_ns": 5375.357894736842, "deser_ci_high_ns": 5482.014802631579, "total_mean_ns": 5562.526315789473, "total_median_ns": 5539.5, "total_std_ns": 235.59566909908511, "total_mad_ns": 168.5, "total_cv": 0.04235407721673811, "total_min_ns": 5092.0, "total_max_ns": 6170.0, "total_p5_ns": 5214.0, "total_p25_ns": 5373.75, "total_p50_ns": 5539.5, "total_p75_ns": 5707.5, "total_p95_ns": 5982.25, "total_p99_ns": 6078.5, "total_ci_low_ns": 5510.391447368421, "total_ci_high_ns": 5616.9003289473685, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.02019736011124}, {"serializer": "nlohmann_ubjson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 1166.6701030927834, "avg_time_deser_ns": 6332.80412371134, "avg_time_total_ns": 7499.474226804124, "median_size_bytes": 411.0, "avg_ops_per_sec": 133342.68106767623, "min_ops_per_sec": 118413.26228537597, "max_ops_per_sec": 154178.23003391922, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 1166.6701030927834, "ser_median_ns": 1152.0, "ser_std_ns": 91.8790783277905, "ser_mad_ns": 67.0, "ser_cv": 0.07875326374115846, "ser_min_ns": 920.0, "ser_max_ns": 1382.0, "ser_p5_ns": 1045.4, "ser_p25_ns": 1096.0, "ser_p50_ns": 1152.0, "ser_p75_ns": 1230.0, "ser_p95_ns": 1324.1999999999998, "ser_p99_ns": 1373.36, "ser_ci_low_ns": 1148.8649484536083, "ser_ci_high_ns": 1183.9693298969073, "deser_mean_ns": 6332.80412371134, "deser_median_ns": 6383.0, "deser_std_ns": 375.1141948120393, "deser_mad_ns": 254.0, "deser_cv": 0.059233506592685135, "deser_min_ns": 5392.0, "deser_max_ns": 7166.0, "deser_p5_ns": 5635.6, "deser_p25_ns": 6077.0, "deser_p50_ns": 6383.0, "deser_p75_ns": 6612.0, "deser_p95_ns": 6864.2, "deser_p99_ns": 7042.159999999999, "deser_ci_low_ns": 6260.901030927836, "deser_ci_high_ns": 6404.959536082475, "total_mean_ns": 7499.474226804124, "total_median_ns": 7549.0, "total_std_ns": 429.7280412458439, "total_mad_ns": 295.0, "total_cv": 0.05730108914968177, "total_min_ns": 6486.0, "total_max_ns": 8445.0, "total_p5_ns": 6698.4, "total_p25_ns": 7228.0, "total_p50_ns": 7549.0, "total_p75_ns": 7831.0, "total_p95_ns": 8201.4, "total_p99_ns": 8410.44, "total_ci_low_ns": 7410.698195876288, "total_ci_high_ns": 7582.199484536082, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.890516778502885}, {"serializer": "custom_binary", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "harness", "avg_time_ser_ns": 920.8144329896908, "avg_time_deser_ns": 658.2061855670103, "avg_time_total_ns": 1579.020618556701, "median_size_bytes": 436.0, "avg_ops_per_sec": 633303.9532530278, "min_ops_per_sec": 534473.5435595938, "max_ops_per_sec": 809061.4886731391, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 920.8144329896908, "ser_median_ns": 927.0, "ser_std_ns": 101.61624397466628, "ser_mad_ns": 71.0, "ser_cv": 0.11035474720431966, "ser_min_ns": 689.0, "ser_max_ns": 1147.0, "ser_p5_ns": 766.6, "ser_p25_ns": 839.0, "ser_p50_ns": 927.0, "ser_p75_ns": 991.0, "ser_p95_ns": 1106.8, "ser_p99_ns": 1136.4399999999998, "ser_ci_low_ns": 901.7002577319588, "ser_ci_high_ns": 940.9219072164948, "deser_mean_ns": 658.2061855670103, "deser_median_ns": 653.0, "deser_std_ns": 69.86563564924847, "deser_mad_ns": 48.0, "deser_cv": 0.10614551668040445, "deser_min_ns": 524.0, "deser_max_ns": 832.0, "deser_p5_ns": 546.8, "deser_p25_ns": 608.0, "deser_p50_ns": 653.0, "deser_p75_ns": 704.0, "deser_p95_ns": 780.8, "deser_p99_ns": 811.8399999999998, "deser_ci_low_ns": 644.8012886597938, "deser_ci_high_ns": 672.0461340206185, "total_mean_ns": 1579.020618556701, "total_median_ns": 1584.0, "total_std_ns": 137.23550161594508, "total_mad_ns": 105.0, "total_cv": 0.08691178570004031, "total_min_ns": 1236.0, "total_max_ns": 1871.0, "total_p5_ns": 1360.6, "total_p25_ns": 1482.0, "total_p50_ns": 1584.0, "total_p75_ns": 1691.0, "total_p95_ns": 1788.9999999999998, "total_p99_ns": 1849.8799999999999, "total_ci_low_ns": 1550.8835051546394, "total_ci_high_ns": 1604.5639175257731, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 0.970640968175706, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.09499427631165}, {"serializer": "rapidjson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "1.1.0", "avg_time_ser_ns": 953.5052631578948, "avg_time_deser_ns": 7851.968421052631, "avg_time_total_ns": 8805.473684210527, "median_size_bytes": 411.0, "avg_ops_per_sec": 113565.72466886626, "min_ops_per_sec": 93676.8149882904, "max_ops_per_sec": 134898.15189531902, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 953.5052631578948, "ser_median_ns": 936.0, "ser_std_ns": 158.04913548426526, "ser_mad_ns": 104.0, "ser_cv": 0.16575591304113574, "ser_min_ns": 638.0, "ser_max_ns": 1377.0, "ser_p5_ns": 771.7, "ser_p25_ns": 823.5, "ser_p50_ns": 936.0, "ser_p75_ns": 1038.5, "ser_p95_ns": 1268.1999999999998, "ser_p99_ns": 1356.3200000000002, "ser_ci_low_ns": 922.0736842105263, "ser_ci_high_ns": 983.2965789473684, "deser_mean_ns": 7851.968421052631, "deser_median_ns": 7812.0, "deser_std_ns": 723.4122225073421, "deser_mad_ns": 526.0, "deser_cv": 0.09213132092683096, "deser_min_ns": 6570.0, "deser_max_ns": 9458.0, "deser_p5_ns": 6707.9, "deser_p25_ns": 7310.0, "deser_p50_ns": 7812.0, "deser_p75_ns": 8348.5, "deser_p95_ns": 9071.1, "deser_p99_ns": 9330.16, "deser_ci_low_ns": 7705.493947368421, "deser_ci_high_ns": 7994.110000000001, "total_mean_ns": 8805.473684210527, "total_median_ns": 8844.0, "total_std_ns": 763.019308225974, "total_mad_ns": 596.0, "total_cv": 0.08665284067501976, "total_min_ns": 7413.0, "total_max_ns": 10675.0, "total_p5_ns": 7663.5, "total_p25_ns": 8157.5, "total_p50_ns": 8844.0, "total_p75_ns": 9316.0, "total_p95_ns": 10104.6, "total_p99_ns": 10299.94, "total_ci_low_ns": 8650.494210526316, "total_ci_high_ns": 8957.284736842104, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.804097819571226}, {"serializer": "cista", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "0.15", "avg_time_ser_ns": 990.9574468085107, "avg_time_deser_ns": 1281.063829787234, "avg_time_total_ns": 2272.021276595745, "median_size_bytes": 584.0, "avg_ops_per_sec": 440136.723322564, "min_ops_per_sec": 320000.0, "max_ops_per_sec": 626174.0763932373, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 990.9574468085107, "ser_median_ns": 956.5, "ser_std_ns": 299.81657169739447, "ser_mad_ns": 262.5, "ser_cv": 0.30255241803065036, "ser_min_ns": 447.0, "ser_max_ns": 1834.0, "ser_p5_ns": 547.65, "ser_p25_ns": 785.0, "ser_p50_ns": 956.5, "ser_p75_ns": 1244.25, "ser_p95_ns": 1395.4499999999996, "ser_p99_ns": 1688.919999999999, "ser_ci_low_ns": 928.3571808510638, "ser_ci_high_ns": 1051.6452127659575, "deser_mean_ns": 1281.063829787234, "deser_median_ns": 1288.0, "deser_std_ns": 80.96950288891642, "deser_mad_ns": 56.0, "deser_cv": 0.06320489346917575, "deser_min_ns": 1111.0, "deser_max_ns": 1439.0, "deser_p5_ns": 1139.5, "deser_p25_ns": 1227.25, "deser_p50_ns": 1288.0, "deser_p75_ns": 1336.5, "deser_p95_ns": 1407.4, "deser_p99_ns": 1415.7499999999998, "deser_ci_low_ns": 1265.051595744681, "deser_ci_high_ns": 1297.2135638297873, "total_mean_ns": 2272.021276595745, "total_median_ns": 2248.5, "total_std_ns": 324.5491820748429, "total_mad_ns": 279.0, "total_cv": 0.14284601355543958, "total_min_ns": 1597.0, "total_max_ns": 3125.0, "total_p5_ns": 1785.1, "total_p25_ns": 2013.75, "total_p50_ns": 2248.5, "total_p75_ns": 2533.25, "total_p95_ns": 2805.2499999999995, "total_p99_ns": 3070.1299999999997, "total_ci_low_ns": 2209.1359042553195, "total_ci_high_ns": 2336.2449468085106, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.400142806009533}, {"serializer": "yyjson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "0.10.0", "avg_time_ser_ns": 363.4269662921348, "avg_time_deser_ns": 5997.0, "avg_time_total_ns": 6360.426966292135, "median_size_bytes": 411.0, "avg_ops_per_sec": 157222.1495977586, "min_ops_per_sec": 133654.10318096765, "max_ops_per_sec": 180635.83815028903, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 363.4269662921348, "ser_median_ns": 368.0, "ser_std_ns": 24.574509909313388, "ser_mad_ns": 15.0, "ser_cv": 0.06761884006581827, "ser_min_ns": 300.0, "ser_max_ns": 421.0, "ser_p5_ns": 325.4, "ser_p25_ns": 348.0, "ser_p50_ns": 368.0, "ser_p75_ns": 380.0, "ser_p95_ns": 404.4, "ser_p99_ns": 414.84000000000003, "ser_ci_low_ns": 357.97668539325844, "ser_ci_high_ns": 368.5174157303371, "deser_mean_ns": 5997.0, "deser_median_ns": 5977.0, "deser_std_ns": 419.1291838172006, "deser_mad_ns": 317.0, "deser_cv": 0.06988980887397042, "deser_min_ns": 5180.0, "deser_max_ns": 7136.0, "deser_p5_ns": 5370.0, "deser_p25_ns": 5675.0, "deser_p50_ns": 5977.0, "deser_p75_ns": 6302.0, "deser_p95_ns": 6645.2, "deser_p99_ns": 6950.320000000001, "deser_ci_low_ns": 5914.651966292135, "deser_ci_high_ns": 6082.529494382023, "total_mean_ns": 6360.426966292135, "total_median_ns": 6352.0, "total_std_ns": 423.2732270284776, "total_mad_ns": 313.0, "total_cv": 0.06654792662059734, "total_min_ns": 5536.0, "total_max_ns": 7482.0, "total_p5_ns": 5761.6, "total_p25_ns": 6025.0, "total_p50_ns": 6352.0, "total_p75_ns": 6661.0, "total_p95_ns": 7006.8, "total_p99_ns": 7322.720000000001, "total_ci_low_ns": 6274.656179775281, "total_ci_high_ns": 6449.66488764045, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.84886901805132}, {"serializer": "bitsery", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "5.2.4", "avg_time_ser_ns": 600.1666666666666, "avg_time_deser_ns": 642.5, "avg_time_total_ns": 1242.6666666666667, "median_size_bytes": 337.0, "avg_ops_per_sec": 804721.0300429184, "min_ops_per_sec": 710732.0540156361, "max_ops_per_sec": 938967.1361502347, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 600.1666666666666, "ser_median_ns": 593.5, "ser_std_ns": 48.77285274267474, "ser_mad_ns": 30.5, "ser_cv": 0.08126551415052721, "ser_min_ns": 507.0, "ser_max_ns": 719.0, "ser_p5_ns": 527.3, "ser_p25_ns": 573.0, "ser_p50_ns": 593.5, "ser_p75_ns": 628.0, "ser_p95_ns": 689.7, "ser_p99_ns": 698.25, "ser_ci_low_ns": 590.0595238095239, "ser_ci_high_ns": 610.2627976190477, "deser_mean_ns": 642.5, "deser_median_ns": 640.5, "deser_std_ns": 47.40176906871065, "deser_mad_ns": 25.0, "deser_cv": 0.0737770724804835, "deser_min_ns": 536.0, "deser_max_ns": 766.0, "deser_p5_ns": 568.6, "deser_p25_ns": 617.75, "deser_p50_ns": 640.5, "deser_p75_ns": 667.25, "deser_p95_ns": 722.55, "deser_p99_ns": 756.04, "deser_ci_low_ns": 632.0529761904762, "deser_ci_high_ns": 652.7866071428572, "total_mean_ns": 1242.6666666666667, "total_median_ns": 1243.5, "total_std_ns": 78.1267634339132, "total_mad_ns": 55.0, "total_cv": 0.06287024954445804, "total_min_ns": 1065.0, "total_max_ns": 1407.0, "total_p5_ns": 1104.3, "total_p25_ns": 1187.25, "total_p50_ns": 1243.5, "total_p75_ns": 1296.5, "total_p95_ns": 1367.95, "total_p99_ns": 1398.7, "total_ci_low_ns": 1226.6895833333333, "total_ci_high_ns": 1259.464880952381, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 0.22075569358178054, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.3603641735042153}, {"serializer": "avro", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "binary-1.11", "avg_time_ser_ns": 652.1666666666666, "avg_time_deser_ns": 679.1777777777778, "avg_time_total_ns": 1331.3444444444444, "median_size_bytes": 338.0, "avg_ops_per_sec": 751120.4212950985, "min_ops_per_sec": 660938.5327164574, "max_ops_per_sec": 863557.8583765113, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 652.1666666666666, "ser_median_ns": 640.5, "ser_std_ns": 48.7376028604636, "ser_mad_ns": 33.5, "ser_cv": 0.07473182140628204, "ser_min_ns": 561.0, "ser_max_ns": 793.0, "ser_p5_ns": 589.15, "ser_p25_ns": 615.5, "ser_p50_ns": 640.5, "ser_p75_ns": 685.0, "ser_p95_ns": 740.55, "ser_p99_ns": 779.65, "ser_ci_low_ns": 642.2541666666667, "ser_ci_high_ns": 661.8227777777778, "deser_mean_ns": 679.1777777777778, "deser_median_ns": 683.5, "deser_std_ns": 39.27963070428067, "deser_mad_ns": 24.5, "deser_cv": 0.05783409291275824, "deser_min_ns": 574.0, "deser_max_ns": 779.0, "deser_p5_ns": 611.85, "deser_p25_ns": 650.25, "deser_p50_ns": 683.5, "deser_p75_ns": 703.5, "deser_p95_ns": 740.75, "deser_p99_ns": 770.99, "deser_ci_low_ns": 670.965, "deser_ci_high_ns": 687.2230555555554, "total_mean_ns": 1331.3444444444444, "total_median_ns": 1323.0, "total_std_ns": 75.27390599567153, "total_mad_ns": 49.0, "total_cv": 0.05653976798399644, "total_min_ns": 1158.0, "total_max_ns": 1513.0, "total_p5_ns": 1235.25, "total_p25_ns": 1280.25, "total_p50_ns": 1323.0, "total_p75_ns": 1382.0, "total_p95_ns": 1481.5, "total_p99_ns": 1497.87, "total_ci_low_ns": 1315.6661111111111, "total_ci_high_ns": 1348.0780555555555, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 0.6545679012345679, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.299637774646107}, {"serializer": "custom_binary", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "harness", "avg_time_ser_ns": 987.7578947368421, "avg_time_deser_ns": 657.3473684210526, "avg_time_total_ns": 1645.1052631578948, "median_size_bytes": 436.0, "avg_ops_per_sec": 607863.838500176, "min_ops_per_sec": 499251.12331502745, "max_ops_per_sec": 786163.5220125787, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 987.7578947368421, "ser_median_ns": 960.0, "ser_std_ns": 115.57365854169456, "ser_mad_ns": 69.0, "ser_cv": 0.11700605903280138, "ser_min_ns": 737.0, "ser_max_ns": 1256.0, "ser_p5_ns": 821.5, "ser_p25_ns": 903.0, "ser_p50_ns": 960.0, "ser_p75_ns": 1040.0, "ser_p95_ns": 1201.3, "ser_p99_ns": 1247.54, "ser_ci_low_ns": 966.2947368421053, "ser_ci_high_ns": 1011.4673684210526, "deser_mean_ns": 657.3473684210526, "deser_median_ns": 664.0, "deser_std_ns": 60.82950859033423, "deser_mad_ns": 45.0, "deser_cv": 0.09253784454396861, "deser_min_ns": 535.0, "deser_max_ns": 821.0, "deser_p5_ns": 563.7, "deser_p25_ns": 609.5, "deser_p50_ns": 664.0, "deser_p75_ns": 698.0, "deser_p95_ns": 751.6, "deser_p99_ns": 797.5, "deser_ci_low_ns": 645.5886842105263, "deser_ci_high_ns": 669.7184210526316, "total_mean_ns": 1645.1052631578948, "total_median_ns": 1614.0, "total_std_ns": 157.1071238876831, "total_mad_ns": 102.0, "total_cv": 0.09549973938208972, "total_min_ns": 1272.0, "total_max_ns": 2003.0, "total_p5_ns": 1392.2, "total_p25_ns": 1540.0, "total_p50_ns": 1614.0, "total_p75_ns": 1753.0, "total_p95_ns": 1918.6, "total_p99_ns": 1973.8600000000001, "total_ci_low_ns": 1613.8310526315788, "total_ci_high_ns": 1678.631842105263, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 0.9890058479532163, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.301264251365515}, {"serializer": "cereal", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "1.3.2", "avg_time_ser_ns": 921.7555555555556, "avg_time_deser_ns": 1180.4, "avg_time_total_ns": 2102.1555555555556, "median_size_bytes": 568.0, "avg_ops_per_sec": 475702.1892871867, "min_ops_per_sec": 421585.1602023609, "max_ops_per_sec": 559597.0900951315, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 921.7555555555556, "ser_median_ns": 899.0, "ser_std_ns": 83.64321112045987, "ser_mad_ns": 53.5, "ser_cv": 0.09074337617639514, "ser_min_ns": 737.0, "ser_max_ns": 1139.0, "ser_p5_ns": 819.9, "ser_p25_ns": 857.25, "ser_p50_ns": 899.0, "ser_p75_ns": 974.0, "ser_p95_ns": 1073.8999999999999, "ser_p99_ns": 1130.1, "ser_ci_low_ns": 905.1522222222222, "ser_ci_high_ns": 939.0802777777777, "deser_mean_ns": 1180.4, "deser_median_ns": 1180.0, "deser_std_ns": 78.1546723426614, "deser_mad_ns": 51.5, "deser_cv": 0.06621032899242747, "deser_min_ns": 979.0, "deser_max_ns": 1347.0, "deser_p5_ns": 1046.4, "deser_p25_ns": 1133.0, "deser_p50_ns": 1180.0, "deser_p75_ns": 1232.25, "deser_p95_ns": 1293.55, "deser_p99_ns": 1346.11, "deser_ci_low_ns": 1165.2880555555555, "deser_ci_high_ns": 1196.7005555555556, "total_mean_ns": 2102.1555555555556, "total_median_ns": 2104.0, "total_std_ns": 129.09581069723188, "total_mad_ns": 79.5, "total_cv": 0.061411159776477424, "total_min_ns": 1787.0, "total_max_ns": 2372.0, "total_p5_ns": 1889.0, "total_p25_ns": 2018.25, "total_p50_ns": 2104.0, "total_p75_ns": 2171.0, "total_p95_ns": 2321.9, "total_p99_ns": 2344.41, "total_ci_low_ns": 2074.9994444444446, "total_ci_high_ns": 2128.7833333333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.177521371176162}, {"serializer": "nlohmann_json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 2670.0760869565215, "avg_time_deser_ns": 5573.228260869565, "avg_time_total_ns": 8243.304347826086, "median_size_bytes": 411.0, "avg_ops_per_sec": 121310.5761724931, "min_ops_per_sec": 108108.1081081081, "max_ops_per_sec": 132978.72340425532, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 2670.0760869565215, "ser_median_ns": 2691.5, "ser_std_ns": 82.57573728956608, "ser_mad_ns": 50.0, "ser_cv": 0.030926361122423966, "ser_min_ns": 2470.0, "ser_max_ns": 2881.0, "ser_p5_ns": 2517.7, "ser_p25_ns": 2618.75, "ser_p50_ns": 2691.5, "ser_p75_ns": 2719.0, "ser_p95_ns": 2789.25, "ser_p99_ns": 2873.7200000000003, "ser_ci_low_ns": 2652.836413043478, "ser_ci_high_ns": 2685.557608695652, "deser_mean_ns": 5573.228260869565, "deser_median_ns": 5510.0, "deser_std_ns": 318.49188245942247, "deser_mad_ns": 226.5, "deser_cv": 0.0571467500614679, "deser_min_ns": 4972.0, "deser_max_ns": 6404.0, "deser_p5_ns": 5164.4, "deser_p25_ns": 5323.5, "deser_p50_ns": 5510.0, "deser_p75_ns": 5822.5, "deser_p95_ns": 6112.450000000001, "deser_p99_ns": 6372.150000000001, "deser_ci_low_ns": 5506.338858695653, "deser_ci_high_ns": 5637.981521739131, "total_mean_ns": 8243.304347826086, "total_median_ns": 8216.5, "total_std_ns": 357.82762561213514, "total_mad_ns": 251.0, "total_cv": 0.043408275433443264, "total_min_ns": 7520.0, "total_max_ns": 9250.0, "total_p5_ns": 7674.3, "total_p25_ns": 7978.5, "total_p50_ns": 8216.5, "total_p75_ns": 8479.25, "total_p95_ns": 8793.65, "total_p99_ns": 9115.32, "total_ci_low_ns": 8172.913043478261, "total_ci_high_ns": 8316.816576086956, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.85614181070311}, {"serializer": "capnproto", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "1.0.x", "avg_time_ser_ns": 1200.031914893617, "avg_time_deser_ns": 954.8191489361702, "avg_time_total_ns": 2154.851063829787, "median_size_bytes": 736.0, "avg_ops_per_sec": 464069.1956792196, "min_ops_per_sec": 333333.3333333333, "max_ops_per_sec": 668002.672010688, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 1200.031914893617, "ser_median_ns": 1175.5, "ser_std_ns": 292.19313292320294, "ser_mad_ns": 237.5, "ser_cv": 0.24348780169659562, "ser_min_ns": 702.0, "ser_max_ns": 1940.0, "ser_p5_ns": 800.55, "ser_p25_ns": 933.0, "ser_p50_ns": 1175.5, "ser_p75_ns": 1395.75, "ser_p95_ns": 1695.4499999999998, "ser_p99_ns": 1908.3799999999997, "ser_ci_low_ns": 1142.1476063829787, "ser_ci_high_ns": 1258.212234042553, "deser_mean_ns": 954.8191489361702, "deser_median_ns": 964.0, "deser_std_ns": 86.85347477785983, "deser_mad_ns": 52.5, "deser_cv": 0.09096327286128401, "deser_min_ns": 769.0, "deser_max_ns": 1191.0, "deser_p5_ns": 804.6, "deser_p25_ns": 900.0, "deser_p50_ns": 964.0, "deser_p75_ns": 1012.0, "deser_p95_ns": 1082.25, "deser_p99_ns": 1149.1499999999996, "deser_ci_low_ns": 937.7316489361701, "deser_ci_high_ns": 972.415159574468, "total_mean_ns": 2154.851063829787, "total_median_ns": 2151.5, "total_std_ns": 329.31091160821325, "total_mad_ns": 233.0, "total_cv": 0.1528230498784141, "total_min_ns": 1497.0, "total_max_ns": 3000.0, "total_p5_ns": 1645.05, "total_p25_ns": 1898.25, "total_p50_ns": 2151.5, "total_p75_ns": 2340.0, "total_p95_ns": 2706.3999999999996, "total_p99_ns": 2909.7899999999995, "total_ci_low_ns": 2087.9781914893615, "total_ci_high_ns": 2221.3351063829787, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.80564765287862}, {"serializer": "nlohmann_cbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 1236.0416666666667, "avg_time_deser_ns": 5344.510416666667, "avg_time_total_ns": 6580.552083333333, "median_size_bytes": 345.0, "avg_ops_per_sec": 151962.93370775314, "min_ops_per_sec": 132240.1481089659, "max_ops_per_sec": 175685.17217146873, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 1236.0416666666667, "ser_median_ns": 1245.0, "ser_std_ns": 67.24611773832889, "ser_mad_ns": 39.0, "ser_cv": 0.054404410103485366, "ser_min_ns": 1063.0, "ser_max_ns": 1399.0, "ser_p5_ns": 1123.5, "ser_p25_ns": 1189.75, "ser_p50_ns": 1245.0, "ser_p75_ns": 1277.75, "ser_p95_ns": 1343.75, "ser_p99_ns": 1387.6, "ser_ci_low_ns": 1223.0619791666666, "ser_ci_high_ns": 1249.3127604166666, "deser_mean_ns": 5344.510416666667, "deser_median_ns": 5353.5, "deser_std_ns": 398.9686175441468, "deser_mad_ns": 292.0, "deser_cv": 0.07465017119247766, "deser_min_ns": 4440.0, "deser_max_ns": 6258.0, "deser_p5_ns": 4655.5, "deser_p25_ns": 5110.5, "deser_p50_ns": 5353.5, "deser_p75_ns": 5641.25, "deser_p95_ns": 5932.0, "deser_p99_ns": 6179.15, "deser_ci_low_ns": 5262.579427083333, "deser_ci_high_ns": 5422.263020833334, "total_mean_ns": 6580.552083333333, "total_median_ns": 6582.0, "total_std_ns": 428.5610407862859, "total_mad_ns": 295.0, "total_cv": 0.06512539303073205, "total_min_ns": 5692.0, "total_max_ns": 7562.0, "total_p5_ns": 5816.0, "total_p25_ns": 6343.5, "total_p50_ns": 6582.0, "total_p75_ns": 6903.25, "total_p95_ns": 7222.75, "total_p99_ns": 7510.7, "total_ci_low_ns": 6494.850520833334, "total_ci_high_ns": 6664.849479166666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.04732810505962}, {"serializer": "avro_c", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "avro-c", "avg_time_ser_ns": 2731.722222222222, "avg_time_deser_ns": 3827.7, "avg_time_total_ns": 6559.422222222222, "median_size_bytes": 338.0, "avg_ops_per_sec": 152452.45177420776, "min_ops_per_sec": 134192.16317767042, "max_ops_per_sec": 170154.84090522374, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 2731.722222222222, "ser_median_ns": 2756.0, "ser_std_ns": 277.36476724228294, "ser_mad_ns": 228.0, "ser_cv": 0.10153476257064312, "ser_min_ns": 2199.0, "ser_max_ns": 3336.0, "ser_p5_ns": 2313.5, "ser_p25_ns": 2461.75, "ser_p50_ns": 2756.0, "ser_p75_ns": 2916.5, "ser_p95_ns": 3172.05, "ser_p99_ns": 3236.3199999999997, "ser_ci_low_ns": 2677.395555555556, "ser_ci_high_ns": 2787.1475, "deser_mean_ns": 3827.7, "deser_median_ns": 3805.5, "deser_std_ns": 184.26949304596172, "deser_mad_ns": 103.5, "deser_cv": 0.048141048944787136, "deser_min_ns": 3360.0, "deser_max_ns": 4277.0, "deser_p5_ns": 3546.7, "deser_p25_ns": 3715.25, "deser_p50_ns": 3805.5, "deser_p75_ns": 3934.25, "deser_p95_ns": 4172.349999999999, "deser_p99_ns": 4233.39, "deser_ci_low_ns": 3790.6955555555555, "deser_ci_high_ns": 3868.9608333333335, "total_mean_ns": 6559.422222222222, "total_median_ns": 6565.0, "total_std_ns": 347.87124628949465, "total_mad_ns": 247.5, "total_cv": 0.05303382439858273, "total_min_ns": 5877.0, "total_max_ns": 7452.0, "total_p5_ns": 5969.7, "total_p25_ns": 6293.75, "total_p50_ns": 6565.0, "total_p75_ns": 6772.75, "total_p95_ns": 7168.45, "total_p99_ns": 7397.71, "total_ci_low_ns": 6487.027222222223, "total_ci_high_ns": 6629.868333333334, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.06858329108349}, {"serializer": "flexbuffers", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "flatbuffers-flex", "avg_time_ser_ns": 1628.4893617021276, "avg_time_deser_ns": 2893.659574468085, "avg_time_total_ns": 4522.148936170212, "median_size_bytes": 484.0, "avg_ops_per_sec": 221133.80477178522, "min_ops_per_sec": 191828.1220026856, "max_ops_per_sec": 257135.51041398817, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 1628.4893617021276, "ser_median_ns": 1636.0, "ser_std_ns": 91.16188421111931, "ser_mad_ns": 56.5, "ser_cv": 0.05597941647947593, "ser_min_ns": 1388.0, "ser_max_ns": 1841.0, "ser_p5_ns": 1475.55, "ser_p25_ns": 1569.25, "ser_p50_ns": 1636.0, "ser_p75_ns": 1686.25, "ser_p95_ns": 1783.0, "ser_p99_ns": 1835.42, "ser_ci_low_ns": 1610.223404255319, "ser_ci_high_ns": 1646.6351063829786, "deser_mean_ns": 2893.659574468085, "deser_median_ns": 2877.5, "deser_std_ns": 269.0404915438187, "deser_mad_ns": 227.5, "deser_cv": 0.09297586140321083, "deser_min_ns": 2416.0, "deser_max_ns": 3478.0, "deser_p5_ns": 2530.2, "deser_p25_ns": 2669.75, "deser_p50_ns": 2877.5, "deser_p75_ns": 3133.25, "deser_p95_ns": 3306.8499999999995, "deser_p99_ns": 3429.6399999999994, "deser_ci_low_ns": 2841.8194148936172, "deser_ci_high_ns": 2947.491755319149, "total_mean_ns": 4522.148936170212, "total_median_ns": 4500.0, "total_std_ns": 308.8288998903086, "total_mad_ns": 238.5, "total_cv": 0.06829250965622871, "total_min_ns": 3889.0, "total_max_ns": 5213.0, "total_p5_ns": 4036.05, "total_p25_ns": 4277.0, "total_p50_ns": 4500.0, "total_p75_ns": 4753.25, "total_p95_ns": 5041.0, "total_p99_ns": 5120.929999999999, "total_ci_low_ns": 4462.701063829788, "total_ci_high_ns": 4586.058510638298, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.428345781629238}, {"serializer": "msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "msgpack-cxx", "avg_time_ser_ns": 617.7894736842105, "avg_time_deser_ns": 1622.378947368421, "avg_time_total_ns": 2240.1684210526314, "median_size_bytes": 346.0, "avg_ops_per_sec": 446395.00789414335, "min_ops_per_sec": 317662.0076238882, "max_ops_per_sec": 625000.0, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 617.7894736842105, "ser_median_ns": 619.0, "ser_std_ns": 39.88597970941192, "ser_mad_ns": 26.0, "ser_cv": 0.06456241391027658, "ser_min_ns": 532.0, "ser_max_ns": 708.0, "ser_p5_ns": 545.5, "ser_p25_ns": 591.5, "ser_p50_ns": 619.0, "ser_p75_ns": 644.5, "ser_p95_ns": 684.8, "ser_p99_ns": 705.1800000000001, "ser_ci_low_ns": 609.7978947368421, "ser_ci_high_ns": 626.0110526315789, "deser_mean_ns": 1622.378947368421, "deser_median_ns": 1587.0, "deser_std_ns": 322.88718071017513, "deser_mad_ns": 276.0, "deser_cv": 0.19902081522563772, "deser_min_ns": 1061.0, "deser_max_ns": 2541.0, "deser_p5_ns": 1177.1, "deser_p25_ns": 1367.0, "deser_p50_ns": 1587.0, "deser_p75_ns": 1869.5, "deser_p95_ns": 2112.4, "deser_p99_ns": 2362.4000000000005, "deser_ci_low_ns": 1555.4386842105262, "deser_ci_high_ns": 1688.1992105263157, "total_mean_ns": 2240.1684210526314, "total_median_ns": 2207.0, "total_std_ns": 333.9366309050961, "total_mad_ns": 284.0, "total_cv": 0.149067644989024, "total_min_ns": 1600.0, "total_max_ns": 3148.0, "total_p5_ns": 1783.4, "total_p25_ns": 1959.0, "total_p50_ns": 2207.0, "total_p75_ns": 2503.5, "total_p95_ns": 2775.6, "total_p99_ns": 2989.1400000000003, "total_ci_low_ns": 2171.729210526316, "total_ci_high_ns": 2310.2194736842107, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.093322946579996}, {"serializer": "yyjson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "0.10.0", "avg_time_ser_ns": 384.61538461538464, "avg_time_deser_ns": 6148.791208791209, "avg_time_total_ns": 6533.406593406594, "median_size_bytes": 411.0, "avg_ops_per_sec": 153059.50819120664, "min_ops_per_sec": 128287.36369467608, "max_ops_per_sec": 180115.27377521613, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 384.61538461538464, "ser_median_ns": 387.0, "ser_std_ns": 32.91327635899776, "ser_mad_ns": 22.0, "ser_cv": 0.08557451853339418, "ser_min_ns": 309.0, "ser_max_ns": 471.0, "ser_p5_ns": 330.0, "ser_p25_ns": 361.5, "ser_p50_ns": 387.0, "ser_p75_ns": 406.5, "ser_p95_ns": 439.5, "ser_p99_ns": 454.7999999999999, "ser_ci_low_ns": 378.2087912087912, "ser_ci_high_ns": 391.49505494505496, "deser_mean_ns": 6148.791208791209, "deser_median_ns": 6233.0, "deser_std_ns": 449.87184635635754, "deser_mad_ns": 349.0, "deser_cv": 0.07316427425819161, "deser_min_ns": 5217.0, "deser_max_ns": 7385.0, "deser_p5_ns": 5467.5, "deser_p25_ns": 5786.5, "deser_p50_ns": 6233.0, "deser_p75_ns": 6447.0, "deser_p95_ns": 6797.5, "deser_p99_ns": 7303.999999999999, "deser_ci_low_ns": 6056.66043956044, "deser_ci_high_ns": 6239.525, "total_mean_ns": 6533.406593406594, "total_median_ns": 6600.0, "total_std_ns": 462.32992015135153, "total_mad_ns": 350.0, "total_cv": 0.0707639902004457, "total_min_ns": 5552.0, "total_max_ns": 7795.0, "total_p5_ns": 5816.5, "total_p25_ns": 6152.5, "total_p50_ns": 6600.0, "total_p75_ns": 6842.0, "total_p95_ns": 7180.0, "total_p99_ns": 7726.599999999999, "total_ci_low_ns": 6440.620054945055, "total_ci_high_ns": 6624.506318681319, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.891178030972403}, {"serializer": "arduinojson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "7.2.1", "avg_time_ser_ns": 5031.382978723404, "avg_time_deser_ns": 10804.13829787234, "avg_time_total_ns": 15835.521276595744, "median_size_bytes": 411.0, "avg_ops_per_sec": 63149.16841278596, "min_ops_per_sec": 58203.829812001626, "max_ops_per_sec": 67508.26976304597, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 5031.382978723404, "ser_median_ns": 5031.5, "ser_std_ns": 132.81988016624578, "ser_mad_ns": 100.5, "ser_cv": 0.026398284672009945, "ser_min_ns": 4720.0, "ser_max_ns": 5346.0, "ser_p5_ns": 4811.1, "ser_p25_ns": 4927.5, "ser_p50_ns": 5031.5, "ser_p75_ns": 5124.5, "ser_p95_ns": 5242.7, "ser_p99_ns": 5340.42, "ser_ci_low_ns": 5005.519946808511, "ser_ci_high_ns": 5057.927393617021, "deser_mean_ns": 10804.13829787234, "deser_median_ns": 10761.0, "deser_std_ns": 445.2418359678213, "deser_mad_ns": 290.5, "deser_cv": 0.041210305134237575, "deser_min_ns": 9878.0, "deser_max_ns": 11939.0, "deser_p5_ns": 10111.9, "deser_p25_ns": 10500.25, "deser_p50_ns": 10761.0, "deser_p75_ns": 11075.0, "deser_p95_ns": 11637.55, "deser_p99_ns": 11801.359999999999, "deser_ci_low_ns": 10711.411436170212, "deser_ci_high_ns": 10890.777659574469, "total_mean_ns": 15835.521276595744, "total_median_ns": 15818.0, "total_std_ns": 520.8904850272284, "total_mad_ns": 329.0, "total_cv": 0.032893800963602206, "total_min_ns": 14813.0, "total_max_ns": 17181.0, "total_p5_ns": 15024.25, "total_p25_ns": 15479.75, "total_p50_ns": 15818.0, "total_p75_ns": 16127.5, "total_p95_ns": 16732.4, "total_p99_ns": 17038.71, "total_ci_low_ns": 15729.288563829788, "total_ci_high_ns": 15944.415159574468, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 38.665802522601815}, {"serializer": "nlohmann_ubjson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 1880.225806451613, "avg_time_deser_ns": 6629.290322580645, "avg_time_total_ns": 8509.516129032258, "median_size_bytes": 411.0, "avg_ops_per_sec": 117515.49498663736, "min_ops_per_sec": 109421.162052741, "max_ops_per_sec": 130992.92638197537, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1880.225806451613, "ser_median_ns": 1880.0, "ser_std_ns": 83.9223410468763, "ser_mad_ns": 59.0, "ser_cv": 0.04463418210669901, "ser_min_ns": 1664.0, "ser_max_ns": 2082.0, "ser_p5_ns": 1744.4, "ser_p25_ns": 1819.0, "ser_p50_ns": 1880.0, "ser_p75_ns": 1937.0, "ser_p95_ns": 2026.3999999999999, "ser_p99_ns": 2073.72, "ser_ci_low_ns": 1863.2991935483872, "ser_ci_high_ns": 1896.8303763440858, "deser_mean_ns": 6629.290322580645, "deser_median_ns": 6706.0, "deser_std_ns": 308.03096896272007, "deser_mad_ns": 200.0, "deser_cv": 0.046465149959341354, "deser_min_ns": 5852.0, "deser_max_ns": 7125.0, "deser_p5_ns": 5960.2, "deser_p25_ns": 6468.0, "deser_p50_ns": 6706.0, "deser_p75_ns": 6843.0, "deser_p95_ns": 7034.0, "deser_p99_ns": 7101.08, "deser_ci_low_ns": 6567.289247311828, "deser_ci_high_ns": 6690.155107526882, "total_mean_ns": 8509.516129032258, "total_median_ns": 8595.0, "total_std_ns": 333.27220278635616, "total_mad_ns": 209.0, "total_cv": 0.03916464787572563, "total_min_ns": 7634.0, "total_max_ns": 9139.0, "total_p5_ns": 7839.8, "total_p25_ns": 8280.0, "total_p50_ns": 8595.0, "total_p75_ns": 8754.0, "total_p95_ns": 8973.8, "total_p99_ns": 9072.76, "total_ci_low_ns": 8441.757795698924, "total_ci_high_ns": 8571.249193548387, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.762295440403616}, {"serializer": "yas", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "7.x", "avg_time_ser_ns": 1048.0102040816328, "avg_time_deser_ns": 677.795918367347, "avg_time_total_ns": 1725.8061224489795, "median_size_bytes": 575.0, "avg_ops_per_sec": 579439.3628532067, "min_ops_per_sec": 417885.49937317177, "max_ops_per_sec": 998003.9920159681, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 1048.0102040816328, "ser_median_ns": 982.0, "ser_std_ns": 361.32495283925215, "ser_mad_ns": 344.0, "ser_cv": 0.3447723614064233, "ser_min_ns": 449.0, "ser_max_ns": 1691.0, "ser_p5_ns": 553.85, "ser_p25_ns": 654.0, "ser_p50_ns": 982.0, "ser_p75_ns": 1339.75, "ser_p95_ns": 1610.1999999999998, "ser_p99_ns": 1675.48, "ser_ci_low_ns": 978.1102040816327, "ser_ci_high_ns": 1119.920663265306, "deser_mean_ns": 677.795918367347, "deser_median_ns": 670.0, "deser_std_ns": 56.58803180879564, "deser_mad_ns": 34.0, "deser_cv": 0.08348830418616723, "deser_min_ns": 540.0, "deser_max_ns": 819.0, "deser_p5_ns": 586.1, "deser_p25_ns": 643.75, "deser_p50_ns": 670.0, "deser_p75_ns": 719.5, "deser_p95_ns": 772.5999999999999, "deser_p99_ns": 804.45, "deser_ci_low_ns": 666.4864795918368, "deser_ci_high_ns": 688.8979591836735, "total_mean_ns": 1725.8061224489795, "total_median_ns": 1675.0, "total_std_ns": 374.6932121897837, "total_mad_ns": 350.0, "total_cv": 0.21711199613666968, "total_min_ns": 1002.0, "total_max_ns": 2393.0, "total_p5_ns": 1190.25, "total_p25_ns": 1409.0, "total_p50_ns": 1675.0, "total_p75_ns": 2052.75, "total_p95_ns": 2311.2, "total_p99_ns": 2378.45, "total_ci_low_ns": 1653.3770408163266, "total_ci_high_ns": 1796.8102040816325, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 0.8026077097505669, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.7817088506535848}, {"serializer": "jsoncons_bson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 4778.557894736842, "avg_time_deser_ns": 12235.105263157895, "avg_time_total_ns": 17013.663157894738, "median_size_bytes": 599.0, "avg_ops_per_sec": 58776.290015826286, "min_ops_per_sec": 52868.09410520751, "max_ops_per_sec": 63816.20931716656, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 4778.557894736842, "ser_median_ns": 4722.0, "ser_std_ns": 356.4163151395407, "ser_mad_ns": 224.0, "ser_cv": 0.0745865851143295, "ser_min_ns": 4087.0, "ser_max_ns": 5631.0, "ser_p5_ns": 4282.8, "ser_p25_ns": 4526.0, "ser_p50_ns": 4722.0, "ser_p75_ns": 5019.0, "ser_p95_ns": 5397.4, "ser_p99_ns": 5607.5, "ser_ci_low_ns": 4708.639210526316, "ser_ci_high_ns": 4853.373684210526, "deser_mean_ns": 12235.105263157895, "deser_median_ns": 12194.0, "deser_std_ns": 436.9544616636259, "deser_mad_ns": 316.0, "deser_cv": 0.03571317551140116, "deser_min_ns": 11323.0, "deser_max_ns": 13427.0, "deser_p5_ns": 11492.9, "deser_p25_ns": 11930.0, "deser_p50_ns": 12194.0, "deser_p75_ns": 12523.0, "deser_p95_ns": 12904.6, "deser_p99_ns": 13375.3, "deser_ci_low_ns": 12147.754736842106, "deser_ci_high_ns": 12320.681315789472, "total_mean_ns": 17013.663157894738, "total_median_ns": 17019.0, "total_std_ns": 666.9930557315997, "total_mad_ns": 498.0, "total_cv": 0.03920337728222269, "total_min_ns": 15670.0, "total_max_ns": 18915.0, "total_p5_ns": 15900.8, "total_p25_ns": 16486.0, "total_p50_ns": 17019.0, "total_p75_ns": 17487.0, "total_p95_ns": 18090.5, "total_p99_ns": 18456.280000000002, "total_ci_low_ns": 16883.10052631579, "total_ci_high_ns": 17146.858157894734, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 32.677226334991154}, {"serializer": "thrift", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "TBinaryProtocol", "avg_time_ser_ns": 800.1098901098901, "avg_time_deser_ns": 612.978021978022, "avg_time_total_ns": 1413.0879120879122, "median_size_bytes": 441.0, "avg_ops_per_sec": 707670.0546694559, "min_ops_per_sec": 611246.9437652811, "max_ops_per_sec": 843881.8565400844, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 800.1098901098901, "ser_median_ns": 794.0, "ser_std_ns": 53.617254799271585, "ser_mad_ns": 35.0, "ser_cv": 0.06701236350410265, "ser_min_ns": 656.0, "ser_max_ns": 913.0, "ser_p5_ns": 708.5, "ser_p25_ns": 763.5, "ser_p50_ns": 794.0, "ser_p75_ns": 838.0, "ser_p95_ns": 891.5, "ser_p99_ns": 910.3, "ser_ci_low_ns": 789.203021978022, "ser_ci_high_ns": 810.7173076923076, "deser_mean_ns": 612.978021978022, "deser_median_ns": 614.0, "deser_std_ns": 48.804821715795896, "deser_mad_ns": 33.0, "deser_cv": 0.0796192032437107, "deser_min_ns": 499.0, "deser_max_ns": 731.0, "deser_p5_ns": 531.0, "deser_p25_ns": 579.0, "deser_p50_ns": 614.0, "deser_p75_ns": 643.0, "deser_p95_ns": 706.0, "deser_p99_ns": 729.2, "deser_ci_low_ns": 602.7994505494506, "deser_ci_high_ns": 623.0442307692308, "total_mean_ns": 1413.0879120879122, "total_median_ns": 1423.0, "total_std_ns": 88.40885430162251, "total_mad_ns": 47.0, "total_cv": 0.06256429875689316, "total_min_ns": 1185.0, "total_max_ns": 1636.0, "total_p5_ns": 1249.0, "total_p25_ns": 1353.0, "total_p50_ns": 1423.0, "total_p75_ns": 1459.5, "total_p95_ns": 1554.5, "total_p99_ns": 1610.7999999999997, "total_ci_low_ns": 1395.401098901099, "total_ci_high_ns": 1431.0035714285714, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 0.8732600732600733, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.179641237476575}, {"serializer": "simdjson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.10.1", "avg_time_ser_ns": 156.63541666666666, "avg_time_deser_ns": 5629.739583333333, "avg_time_total_ns": 5786.375, "median_size_bytes": 411.0, "avg_ops_per_sec": 172819.77058175456, "min_ops_per_sec": 151561.0791148833, "max_ops_per_sec": 194401.24416796266, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 156.63541666666666, "ser_median_ns": 156.0, "ser_std_ns": 10.348780545162304, "ser_mad_ns": 7.0, "ser_cv": 0.06606922473469318, "ser_min_ns": 129.0, "ser_max_ns": 178.0, "ser_p5_ns": 143.75, "ser_p25_ns": 149.0, "ser_p50_ns": 156.0, "ser_p75_ns": 164.25, "ser_p95_ns": 173.0, "ser_p99_ns": 177.05, "ser_ci_low_ns": 154.65598958333334, "ser_ci_high_ns": 158.79166666666666, "deser_mean_ns": 5629.739583333333, "deser_median_ns": 5610.5, "deser_std_ns": 330.8333733814992, "deser_mad_ns": 241.0, "deser_cv": 0.05876530672234307, "deser_min_ns": 4975.0, "deser_max_ns": 6440.0, "deser_p5_ns": 5077.25, "deser_p25_ns": 5384.5, "deser_p50_ns": 5610.5, "deser_p75_ns": 5859.25, "deser_p95_ns": 6162.5, "deser_p99_ns": 6351.65, "deser_ci_low_ns": 5567.19375, "deser_ci_high_ns": 5694.072395833333, "total_mean_ns": 5786.375, "total_median_ns": 5768.5, "total_std_ns": 330.9264586771985, "total_mad_ns": 237.5, "total_cv": 0.05719063466802593, "total_min_ns": 5144.0, "total_max_ns": 6598.0, "total_p5_ns": 5236.5, "total_p25_ns": 5534.75, "total_p50_ns": 5768.5, "total_p75_ns": 6005.75, "total_p95_ns": 6332.5, "total_p99_ns": 6522.0, "total_ci_low_ns": 5720.910677083333, "total_ci_high_ns": 5852.844791666666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.619551229423887}, {"serializer": "nlohmann_msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 1241.2021276595744, "avg_time_deser_ns": 5371.691489361702, "avg_time_total_ns": 6612.893617021276, "median_size_bytes": 346.0, "avg_ops_per_sec": 151219.73192280714, "min_ops_per_sec": 133904.6598821639, "max_ops_per_sec": 173973.55601948503, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 1241.2021276595744, "ser_median_ns": 1245.0, "ser_std_ns": 66.52084801948062, "ser_mad_ns": 46.5, "ser_cv": 0.05359388816462402, "ser_min_ns": 1093.0, "ser_max_ns": 1366.0, "ser_p5_ns": 1136.0, "ser_p25_ns": 1197.75, "ser_p50_ns": 1245.0, "ser_p75_ns": 1289.0, "ser_p95_ns": 1350.35, "ser_p99_ns": 1360.42, "ser_ci_low_ns": 1227.6909574468086, "ser_ci_high_ns": 1254.9898936170212, "deser_mean_ns": 5371.691489361702, "deser_median_ns": 5387.0, "deser_std_ns": 371.9173230646933, "deser_mad_ns": 229.0, "deser_cv": 0.0692365382117071, "deser_min_ns": 4547.0, "deser_max_ns": 6117.0, "deser_p5_ns": 4728.55, "deser_p25_ns": 5128.5, "deser_p50_ns": 5387.0, "deser_p75_ns": 5599.0, "deser_p95_ns": 6040.05, "deser_p99_ns": 6096.54, "deser_ci_low_ns": 5295.755053191489, "deser_ci_high_ns": 5446.966755319148, "total_mean_ns": 6612.893617021276, "total_median_ns": 6628.5, "total_std_ns": 392.0049776973051, "total_mad_ns": 223.5, "total_cv": 0.05927888763979247, "total_min_ns": 5748.0, "total_max_ns": 7468.0, "total_p5_ns": 5934.95, "total_p25_ns": 6395.0, "total_p50_ns": 6628.5, "total_p75_ns": 6797.75, "total_p95_ns": 7259.799999999999, "total_p99_ns": 7450.33, "total_ci_low_ns": 6530.626063829787, "total_ci_high_ns": 6692.614361702128, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.787139299163513}, {"serializer": "protobuf-wire", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "wire-v2", "avg_time_ser_ns": 709.1111111111111, "avg_time_deser_ns": 644.8666666666667, "avg_time_total_ns": 1353.9777777777779, "median_size_bytes": 368.0, "avg_ops_per_sec": 738564.5587487074, "min_ops_per_sec": 623441.3965087282, "max_ops_per_sec": 874125.8741258741, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 709.1111111111111, "ser_median_ns": 710.5, "ser_std_ns": 52.41760670932605, "ser_mad_ns": 34.0, "ser_cv": 0.07392015988466538, "ser_min_ns": 579.0, "ser_max_ns": 818.0, "ser_p5_ns": 617.45, "ser_p25_ns": 675.25, "ser_p50_ns": 710.5, "ser_p75_ns": 738.0, "ser_p95_ns": 800.5, "ser_p99_ns": 817.11, "ser_ci_low_ns": 698.1333333333333, "ser_ci_high_ns": 719.3225, "deser_mean_ns": 644.8666666666667, "deser_median_ns": 639.0, "deser_std_ns": 62.50396841333941, "deser_mad_ns": 47.5, "deser_cv": 0.0969254136462412, "deser_min_ns": 513.0, "deser_max_ns": 803.0, "deser_p5_ns": 558.25, "deser_p25_ns": 595.75, "deser_p50_ns": 639.0, "deser_p75_ns": 689.75, "deser_p95_ns": 748.0, "deser_p99_ns": 790.54, "deser_ci_low_ns": 632.2530555555556, "deser_ci_high_ns": 658.0669444444445, "total_mean_ns": 1353.9777777777779, "total_median_ns": 1350.5, "total_std_ns": 89.30568357390109, "total_mad_ns": 55.5, "total_cv": 0.06595801278250996, "total_min_ns": 1144.0, "total_max_ns": 1604.0, "total_p5_ns": 1189.35, "total_p25_ns": 1305.75, "total_p50_ns": 1350.5, "total_p75_ns": 1409.75, "total_p95_ns": 1496.55, "total_p99_ns": 1574.6299999999999, "total_ci_low_ns": 1335.976111111111, "total_ci_high_ns": 1372.3233333333335, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 0.7043209876543209, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.4573300475902913}, {"serializer": "jsoncons_msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 2841.298969072165, "avg_time_deser_ns": 11349.515463917525, "avg_time_total_ns": 14190.814432989691, "median_size_bytes": 346.0, "avg_ops_per_sec": 70468.11898796157, "min_ops_per_sec": 64073.81303261357, "max_ops_per_sec": 76822.61657832065, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 2841.298969072165, "ser_median_ns": 2780.0, "ser_std_ns": 357.3206474626016, "ser_mad_ns": 287.0, "ser_cv": 0.1257596090211111, "ser_min_ns": 2185.0, "ser_max_ns": 3667.0, "ser_p5_ns": 2364.8, "ser_p25_ns": 2577.0, "ser_p50_ns": 2780.0, "ser_p75_ns": 3126.0, "ser_p95_ns": 3433.2, "ser_p99_ns": 3592.1199999999994, "ser_ci_low_ns": 2774.398195876289, "ser_ci_high_ns": 2913.735824742268, "deser_mean_ns": 11349.515463917525, "deser_median_ns": 11315.0, "deser_std_ns": 362.34580379688356, "deser_mad_ns": 261.0, "deser_cv": 0.031926103360875306, "deser_min_ns": 10532.0, "deser_max_ns": 12244.0, "deser_p5_ns": 10826.6, "deser_p25_ns": 11083.0, "deser_p50_ns": 11315.0, "deser_p75_ns": 11631.0, "deser_p95_ns": 11975.6, "deser_p99_ns": 12068.319999999998, "deser_ci_low_ns": 11278.50386597938, "deser_ci_high_ns": 11422.493298969071, "total_mean_ns": 14190.814432989691, "total_median_ns": 14153.0, "total_std_ns": 504.8735058139338, "total_mad_ns": 348.0, "total_cv": 0.035577486281565596, "total_min_ns": 13017.0, "total_max_ns": 15607.0, "total_p5_ns": 13479.4, "total_p25_ns": 13808.0, "total_p50_ns": 14153.0, "total_p75_ns": 14502.0, "total_p95_ns": 15067.199999999999, "total_p99_ns": 15286.359999999997, "total_ci_low_ns": 14091.103092783505, "total_ci_high_ns": 14282.63092783505, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 35.11934573416097}, {"serializer": "zpp_bits", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "4.4.25", "avg_time_ser_ns": 639.7777777777778, "avg_time_deser_ns": 592.9555555555555, "avg_time_total_ns": 1232.7333333333333, "median_size_bytes": 436.0, "avg_ops_per_sec": 811205.4513006327, "min_ops_per_sec": 704225.352112676, "max_ops_per_sec": 934579.4392523364, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 639.7777777777778, "ser_median_ns": 641.0, "ser_std_ns": 47.966930972455955, "ser_mad_ns": 29.5, "ser_cv": 0.07497436240918784, "ser_min_ns": 516.0, "ser_max_ns": 758.0, "ser_p5_ns": 559.15, "ser_p25_ns": 610.5, "ser_p50_ns": 641.0, "ser_p75_ns": 670.0, "ser_p95_ns": 720.65, "ser_p99_ns": 746.43, "ser_ci_low_ns": 629.9425, "ser_ci_high_ns": 650.4677777777778, "deser_mean_ns": 592.9555555555555, "deser_median_ns": 589.0, "deser_std_ns": 38.42076659656423, "deser_mad_ns": 26.5, "deser_cv": 0.06479535647586067, "deser_min_ns": 506.0, "deser_max_ns": 689.0, "deser_p5_ns": 534.5, "deser_p25_ns": 565.25, "deser_p50_ns": 589.0, "deser_p75_ns": 619.75, "deser_p95_ns": 659.1, "deser_p99_ns": 667.64, "deser_ci_low_ns": 584.7886111111111, "deser_ci_high_ns": 600.7783333333334, "total_mean_ns": 1232.7333333333333, "total_median_ns": 1236.0, "total_std_ns": 75.83642953715464, "total_mad_ns": 46.0, "total_cv": 0.061518925047716166, "total_min_ns": 1070.0, "total_max_ns": 1420.0, "total_p5_ns": 1106.8, "total_p25_ns": 1180.25, "total_p50_ns": 1236.0, "total_p75_ns": 1275.0, "total_p95_ns": 1363.4, "total_p99_ns": 1411.1, "total_ci_low_ns": 1216.398888888889, "total_ci_high_ns": 1247.9591666666665, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "rapidjson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "1.1.0", "avg_time_ser_ns": 3724.1304347826085, "avg_time_deser_ns": 12131.29347826087, "avg_time_total_ns": 15855.423913043478, "median_size_bytes": 411.0, "avg_ops_per_sec": 63069.8999587989, "min_ops_per_sec": 58011.370228564796, "max_ops_per_sec": 69208.94179527996, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 3724.1304347826085, "ser_median_ns": 3736.0, "ser_std_ns": 92.67255570031867, "ser_mad_ns": 65.0, "ser_cv": 0.02488434745324067, "ser_min_ns": 3498.0, "ser_max_ns": 3962.0, "ser_p5_ns": 3579.45, "ser_p25_ns": 3656.5, "ser_p50_ns": 3736.0, "ser_p75_ns": 3789.5, "ser_p95_ns": 3869.8, "ser_p99_ns": 3898.3, "ser_ci_low_ns": 3705.5978260869565, "ser_ci_high_ns": 3742.4790760869564, "deser_mean_ns": 12131.29347826087, "deser_median_ns": 12098.5, "deser_std_ns": 478.41171606356966, "deser_mad_ns": 353.5, "deser_cv": 0.03943616704359495, "deser_min_ns": 10831.0, "deser_max_ns": 13469.0, "deser_p5_ns": 11315.5, "deser_p25_ns": 11818.5, "deser_p50_ns": 12098.5, "deser_p75_ns": 12502.25, "deser_p95_ns": 12747.4, "deser_p99_ns": 12952.120000000003, "deser_ci_low_ns": 12038.51902173913, "deser_ci_high_ns": 12230.77418478261, "total_mean_ns": 15855.423913043478, "total_median_ns": 15861.5, "total_std_ns": 525.8279130544109, "total_mad_ns": 374.5, "total_cv": 0.033163913871885706, "total_min_ns": 14449.0, "total_max_ns": 17238.0, "total_p5_ns": 14882.55, "total_p25_ns": 15528.0, "total_p50_ns": 15861.5, "total_p75_ns": 16285.75, "total_p95_ns": 16531.25, "total_p99_ns": 16896.75, "total_ci_low_ns": 15751.904347826086, "total_ci_high_ns": 15962.555163043478, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 38.55762067960269}, {"serializer": "jsoncons_cbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 2930.6736842105265, "avg_time_deser_ns": 11708.621052631579, "avg_time_total_ns": 14639.294736842105, "median_size_bytes": 345.0, "avg_ops_per_sec": 68309.30164165229, "min_ops_per_sec": 61808.51721367204, "max_ops_per_sec": 76687.11656441719, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 2930.6736842105265, "ser_median_ns": 2916.0, "ser_std_ns": 330.7145855054921, "ser_mad_ns": 234.0, "ser_cv": 0.11284592593411878, "ser_min_ns": 2223.0, "ser_max_ns": 3666.0, "ser_p5_ns": 2426.0, "ser_p25_ns": 2691.5, "ser_p50_ns": 2916.0, "ser_p75_ns": 3153.5, "ser_p95_ns": 3501.0, "ser_p99_ns": 3572.0, "ser_ci_low_ns": 2863.7144736842106, "ser_ci_high_ns": 2994.0155263157894, "deser_mean_ns": 11708.621052631579, "deser_median_ns": 11672.0, "deser_std_ns": 418.53874929145405, "deser_mad_ns": 321.0, "deser_cv": 0.03574620336673934, "deser_min_ns": 10663.0, "deser_max_ns": 12696.0, "deser_p5_ns": 11101.7, "deser_p25_ns": 11379.0, "deser_p50_ns": 11672.0, "deser_p75_ns": 12068.5, "deser_p95_ns": 12293.9, "deser_p99_ns": 12664.98, "deser_ci_low_ns": 11628.15394736842, "deser_ci_high_ns": 11792.191315789474, "total_mean_ns": 14639.294736842105, "total_median_ns": 14617.0, "total_std_ns": 601.1459247506756, "total_mad_ns": 452.0, "total_cv": 0.0410638583044439, "total_min_ns": 13040.0, "total_max_ns": 16179.0, "total_p5_ns": 13694.8, "total_p25_ns": 14192.5, "total_p50_ns": 14617.0, "total_p75_ns": 15069.5, "total_p95_ns": 15543.2, "total_p99_ns": 15865.04, "total_ci_low_ns": 14511.5, "total_ci_high_ns": 14753.58552631579, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.75852659358873}, {"serializer": "cista", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "0.15", "avg_time_ser_ns": 1104.4947368421053, "avg_time_deser_ns": 1293.7368421052631, "avg_time_total_ns": 2398.2315789473682, "median_size_bytes": 584.0, "avg_ops_per_sec": 416973.9106007936, "min_ops_per_sec": 326690.6239790918, "max_ops_per_sec": 564971.7514124294, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1104.4947368421053, "ser_median_ns": 1099.0, "ser_std_ns": 308.58085852593035, "ser_mad_ns": 234.0, "ser_cv": 0.27938644543314284, "ser_min_ns": 580.0, "ser_max_ns": 1836.0, "ser_p5_ns": 617.6, "ser_p25_ns": 917.0, "ser_p50_ns": 1099.0, "ser_p75_ns": 1346.5, "ser_p95_ns": 1533.6999999999998, "ser_p99_ns": 1722.2600000000002, "ser_ci_low_ns": 1039.2076315789473, "ser_ci_high_ns": 1168.8426315789475, "deser_mean_ns": 1293.7368421052631, "deser_median_ns": 1303.0, "deser_std_ns": 67.88134367931183, "deser_mad_ns": 46.0, "deser_cv": 0.05246920507330559, "deser_min_ns": 1144.0, "deser_max_ns": 1450.0, "deser_p5_ns": 1174.4, "deser_p25_ns": 1252.0, "deser_p50_ns": 1303.0, "deser_p75_ns": 1334.5, "deser_p95_ns": 1411.6, "deser_p99_ns": 1448.12, "deser_ci_low_ns": 1279.862105263158, "deser_ci_high_ns": 1307.8021052631577, "total_mean_ns": 2398.2315789473682, "total_median_ns": 2414.0, "total_std_ns": 318.7116168840448, "total_mad_ns": 227.0, "total_cv": 0.13289442924604208, "total_min_ns": 1770.0, "total_max_ns": 3061.0, "total_p5_ns": 1907.3, "total_p25_ns": 2187.0, "total_p50_ns": 2414.0, "total_p75_ns": 2615.0, "total_p95_ns": 2926.6, "total_p99_ns": 3004.6000000000004, "total_ci_low_ns": 2336.2823684210525, "total_ci_high_ns": 2458.2865789473685, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.9505107916701325}, {"serializer": "flatbuffers", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "flatbuffers", "avg_time_ser_ns": 747.8571428571429, "avg_time_deser_ns": 690.1938775510204, "avg_time_total_ns": 1438.0510204081634, "median_size_bytes": 392.0, "avg_ops_per_sec": 695385.6197092152, "min_ops_per_sec": 433087.91684712, "max_ops_per_sec": 1157407.4074074074, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 747.8571428571429, "ser_median_ns": 715.0, "ser_std_ns": 314.6773179512462, "ser_mad_ns": 266.0, "ser_cv": 0.42077196287654695, "ser_min_ns": 234.0, "ser_max_ns": 1485.0, "ser_p5_ns": 294.2, "ser_p25_ns": 562.0, "ser_p50_ns": 715.0, "ser_p75_ns": 992.75, "ser_p95_ns": 1237.7999999999993, "ser_p99_ns": 1437.47, "ser_ci_low_ns": 682.590306122449, "ser_ci_high_ns": 809.0844387755101, "deser_mean_ns": 690.1938775510204, "deser_median_ns": 685.5, "deser_std_ns": 66.1734145021356, "deser_mad_ns": 50.5, "deser_cv": 0.09587655969498794, "deser_min_ns": 541.0, "deser_max_ns": 870.0, "deser_p5_ns": 601.1, "deser_p25_ns": 639.75, "deser_p50_ns": 685.5, "deser_p75_ns": 739.75, "deser_p95_ns": 803.5999999999998, "deser_p99_ns": 837.99, "deser_ci_low_ns": 677.5612244897959, "deser_ci_high_ns": 703.3719387755102, "total_mean_ns": 1438.0510204081634, "total_median_ns": 1408.5, "total_std_ns": 327.15800188108545, "total_mad_ns": 252.0, "total_cv": 0.2275009698809072, "total_min_ns": 864.0, "total_max_ns": 2309.0, "total_p5_ns": 965.6, "total_p25_ns": 1176.25, "total_p50_ns": 1408.5, "total_p75_ns": 1668.5, "total_p95_ns": 2001.6, "total_p99_ns": 2173.2000000000003, "total_ci_low_ns": 1374.8201530612243, "total_ci_high_ns": 1502.1903061224489, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 0.45374149659863944, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.8449523310881825}, {"serializer": "nlohmann_bson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 2696.5789473684213, "avg_time_deser_ns": 5751.115789473684, "avg_time_total_ns": 8447.694736842106, "median_size_bytes": 599.0, "avg_ops_per_sec": 118375.48954495214, "min_ops_per_sec": 105630.08344776592, "max_ops_per_sec": 132573.24671881215, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 2696.5789473684213, "ser_median_ns": 2692.0, "ser_std_ns": 93.41153272315304, "ser_mad_ns": 54.0, "ser_cv": 0.03464075576734474, "ser_min_ns": 2493.0, "ser_max_ns": 2895.0, "ser_p5_ns": 2533.0, "ser_p25_ns": 2642.0, "ser_p50_ns": 2692.0, "ser_p75_ns": 2748.5, "ser_p95_ns": 2862.0, "ser_p99_ns": 2880.9, "ser_ci_low_ns": 2677.9452631578947, "ser_ci_high_ns": 2714.523421052632, "deser_mean_ns": 5751.115789473684, "deser_median_ns": 5778.0, "deser_std_ns": 380.13723342682715, "deser_mad_ns": 246.0, "deser_cv": 0.06609799686568571, "deser_min_ns": 4957.0, "deser_max_ns": 6663.0, "deser_p5_ns": 5058.4, "deser_p25_ns": 5514.0, "deser_p50_ns": 5778.0, "deser_p75_ns": 6008.5, "deser_p95_ns": 6371.0, "deser_p99_ns": 6526.700000000001, "deser_ci_low_ns": 5677.7418421052635, "deser_ci_high_ns": 5826.768684210526, "total_mean_ns": 8447.694736842106, "total_median_ns": 8452.0, "total_std_ns": 417.7077791971221, "total_mad_ns": 266.0, "total_cv": 0.049446362849194105, "total_min_ns": 7543.0, "total_max_ns": 9467.0, "total_p5_ns": 7726.6, "total_p25_ns": 8182.5, "total_p50_ns": 8452.0, "total_p75_ns": 8711.5, "total_p95_ns": 9148.9, "total_p99_ns": 9341.04, "total_ci_low_ns": 8365.253421052632, "total_ci_high_ns": 8527.597894736842, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.63544746749318}, {"serializer": "bitsery", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "5.2.4", "avg_time_ser_ns": 614.6195652173913, "avg_time_deser_ns": 701.9130434782609, "avg_time_total_ns": 1316.5326086956522, "median_size_bytes": 337.0, "avg_ops_per_sec": 759571.0075048917, "min_ops_per_sec": 664010.6241699867, "max_ops_per_sec": 863557.8583765113, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 614.6195652173913, "ser_median_ns": 611.5, "ser_std_ns": 37.42034540672143, "ser_mad_ns": 27.0, "ser_cv": 0.060883752363929115, "ser_min_ns": 527.0, "ser_max_ns": 718.0, "ser_p5_ns": 560.1, "ser_p25_ns": 587.0, "ser_p50_ns": 611.5, "ser_p75_ns": 638.25, "ser_p95_ns": 683.15, "ser_p99_ns": 704.35, "ser_ci_low_ns": 607.3994565217391, "ser_ci_high_ns": 622.5546195652174, "deser_mean_ns": 701.9130434782609, "deser_median_ns": 708.0, "deser_std_ns": 58.88219794293939, "deser_mad_ns": 43.5, "deser_cv": 0.08388816604853853, "deser_min_ns": 563.0, "deser_max_ns": 817.0, "deser_p5_ns": 603.6, "deser_p25_ns": 658.25, "deser_p50_ns": 708.0, "deser_p75_ns": 748.25, "deser_p95_ns": 792.15, "deser_p99_ns": 814.27, "deser_ci_low_ns": 689.5421195652175, "deser_ci_high_ns": 714.2073369565217, "total_mean_ns": 1316.5326086956522, "total_median_ns": 1321.0, "total_std_ns": 77.72612542343599, "total_mad_ns": 45.0, "total_cv": 0.05903851139733086, "total_min_ns": 1158.0, "total_max_ns": 1506.0, "total_p5_ns": 1181.5, "total_p25_ns": 1275.75, "total_p50_ns": 1321.0, "total_p75_ns": 1364.5, "total_p95_ns": 1454.15, "total_p99_ns": 1499.63, "total_ci_low_ns": 1300.8801630434782, "total_ci_high_ns": 1331.6005434782608, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "zpp_bits", "effect_vs_fastest_cliffs_delta": 0.5596618357487922, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.086617805738741}, {"serializer": "yyjson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "0.10.0", "avg_time_ser_ns": 46982.21052631579, "avg_time_deser_ns": 486114.6710526316, "avg_time_total_ns": 533096.8815789474, "median_size_bytes": 41431.0, "avg_ops_per_sec": 1875.8316444060983, "min_ops_per_sec": 1600.7529942084757, "max_ops_per_sec": 2204.7167710600056, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 46982.21052631579, "ser_median_ns": 46649.5, "ser_std_ns": 3823.535185543311, "ser_mad_ns": 1883.5, "ser_cv": 0.08138261573285624, "ser_min_ns": 39885.0, "ser_max_ns": 64264.0, "ser_p5_ns": 42016.75, "ser_p25_ns": 44644.5, "ser_p50_ns": 46649.5, "ser_p75_ns": 48238.0, "ser_p95_ns": 52868.75, "ser_p99_ns": 61170.25, "ser_ci_low_ns": 46126.95559210526, "ser_ci_high_ns": 47853.846381578944, "deser_mean_ns": 486114.6710526316, "deser_median_ns": 486714.0, "deser_std_ns": 29837.83525766714, "deser_mad_ns": 22504.0, "deser_cv": 0.06138024016649479, "deser_min_ns": 412428.0, "deser_max_ns": 569987.0, "deser_p5_ns": 436574.5, "deser_p25_ns": 464228.0, "deser_p50_ns": 486714.0, "deser_p75_ns": 508069.5, "deser_p95_ns": 528864.0, "deser_p99_ns": 549292.25, "deser_ci_low_ns": 479517.5842105263, "deser_ci_high_ns": 492952.50230263156, "total_mean_ns": 533096.8815789474, "total_median_ns": 533230.5, "total_std_ns": 31381.427975143557, "total_mad_ns": 24129.0, "total_cv": 0.058866275642425074, "total_min_ns": 453573.0, "total_max_ns": 624706.0, "total_p5_ns": 480071.75, "total_p25_ns": 509432.5, "total_p50_ns": 533230.5, "total_p75_ns": 557369.25, "total_p95_ns": 577231.75, "total_p99_ns": 599062.0, "total_ci_low_ns": 525759.3342105263, "total_ci_high_ns": 540626.6651315789, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.472274366162505}, {"serializer": "flatbuffers", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "flatbuffers", "avg_time_ser_ns": 11479.717391304348, "avg_time_deser_ns": 70596.97826086957, "avg_time_total_ns": 82076.69565217392, "median_size_bytes": 37356.0, "avg_ops_per_sec": 12183.72635562496, "min_ops_per_sec": 9036.199013247067, "max_ops_per_sec": 15236.934328813042, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 11479.717391304348, "ser_median_ns": 4363.0, "ser_std_ns": 12388.965501807199, "ser_mad_ns": 1166.0, "ser_cv": 1.0792047469035768, "ser_min_ns": 2240.0, "ser_max_ns": 38698.0, "ser_p5_ns": 2545.2, "ser_p25_ns": 3419.0, "ser_p50_ns": 4363.0, "ser_p75_ns": 27577.25, "ser_p95_ns": 33377.05, "ser_p99_ns": 36506.72000000001, "ser_ci_low_ns": 8887.620380434782, "ser_ci_high_ns": 14128.404891304346, "deser_mean_ns": 70596.97826086957, "deser_median_ns": 70635.0, "deser_std_ns": 3564.5819938291515, "deser_mad_ns": 2063.0, "deser_cv": 0.050491991040428494, "deser_min_ns": 62351.0, "deser_max_ns": 78825.0, "deser_p5_ns": 63736.25, "deser_p25_ns": 68829.75, "deser_p50_ns": 70635.0, "deser_p75_ns": 73084.25, "deser_p95_ns": 75675.7, "deser_p99_ns": 78185.27, "deser_ci_low_ns": 69849.60733695651, "deser_ci_high_ns": 71302.92092391304, "total_mean_ns": 82076.69565217392, "total_median_ns": 77199.0, "total_std_ns": 12576.380622210278, "total_mad_ns": 4787.0, "total_cv": 0.1532271800451944, "total_min_ns": 65630.0, "total_max_ns": 110666.0, "total_p5_ns": 69533.95, "total_p25_ns": 73188.5, "total_p50_ns": 77199.0, "total_p75_ns": 92103.25, "total_p95_ns": 106486.05, "total_p99_ns": 110415.75, "total_ci_low_ns": 79562.53233695652, "total_ci_high_ns": 84734.06168478262, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "protobuf-wire", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "wire-v2", "avg_time_ser_ns": 81270.02105263158, "avg_time_deser_ns": 67257.68421052632, "avg_time_total_ns": 148527.7052631579, "median_size_bytes": 37330.0, "avg_ops_per_sec": 6732.750622035286, "min_ops_per_sec": 5384.652662979975, "max_ops_per_sec": 7966.540529774945, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 81270.02105263158, "ser_median_ns": 77269.0, "ser_std_ns": 12502.727805323932, "ser_mad_ns": 5538.0, "ser_cv": 0.15384181821765486, "ser_min_ns": 64438.0, "ser_max_ns": 115067.0, "ser_p5_ns": 67684.8, "ser_p25_ns": 72505.0, "ser_p50_ns": 77269.0, "ser_p75_ns": 87204.5, "ser_p95_ns": 104265.5, "ser_p99_ns": 113155.04000000001, "ser_ci_low_ns": 78879.83763157895, "ser_ci_high_ns": 83949.78868421054, "deser_mean_ns": 67257.68421052632, "deser_median_ns": 67863.0, "deser_std_ns": 4028.7194767842025, "deser_mad_ns": 2844.0, "deser_cv": 0.05989976497218854, "deser_min_ns": 58939.0, "deser_max_ns": 76246.0, "deser_p5_ns": 60540.0, "deser_p25_ns": 63925.0, "deser_p50_ns": 67863.0, "deser_p75_ns": 70297.0, "deser_p95_ns": 73296.3, "deser_p99_ns": 74639.54000000001, "deser_ci_low_ns": 66460.66105263158, "deser_ci_high_ns": 68089.95078947369, "total_mean_ns": 148527.7052631579, "total_median_ns": 146528.0, "total_std_ns": 13908.434065208367, "total_mad_ns": 8923.0, "total_cv": 0.0936420181040684, "total_min_ns": 125525.0, "total_max_ns": 185713.0, "total_p5_ns": 129455.8, "total_p25_ns": 139671.0, "total_p50_ns": 146528.0, "total_p75_ns": 156154.0, "total_p95_ns": 172920.1, "total_p99_ns": 183149.62, "total_ci_low_ns": 145779.29315789472, "total_ci_high_ns": 151270.0910526316, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.987310305778322}, {"serializer": "jsoncons_bson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 377111.5444444445, "avg_time_deser_ns": 883952.6777777778, "avg_time_total_ns": 1261064.2222222222, "median_size_bytes": 60537.0, "avg_ops_per_sec": 792.9810253738068, "min_ops_per_sec": 716.3713783844966, "max_ops_per_sec": 865.5992673567802, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 377111.5444444445, "ser_median_ns": 376760.0, "ser_std_ns": 19253.9866878111, "ser_mad_ns": 12559.5, "ser_cv": 0.05105647644962926, "ser_min_ns": 330282.0, "ser_max_ns": 427377.0, "ser_p5_ns": 347662.95, "ser_p25_ns": 365839.0, "ser_p50_ns": 376760.0, "ser_p75_ns": 389685.75, "ser_p95_ns": 409104.15, "ser_p99_ns": 423680.83, "ser_ci_low_ns": 372892.61, "ser_ci_high_ns": 380945.6933333333, "deser_mean_ns": 883952.6777777778, "deser_median_ns": 892495.0, "deser_std_ns": 42129.71904120073, "deser_mad_ns": 26139.0, "deser_cv": 0.04766060457796586, "deser_min_ns": 797417.0, "deser_max_ns": 984951.0, "deser_p5_ns": 814913.4, "deser_p25_ns": 849712.25, "deser_p50_ns": 892495.0, "deser_p75_ns": 909463.0, "deser_p95_ns": 943017.1, "deser_p99_ns": 967839.86, "deser_ci_low_ns": 875275.3505555555, "deser_ci_high_ns": 892832.0541666667, "total_mean_ns": 1261064.2222222222, "total_median_ns": 1268313.0, "total_std_ns": 52509.86520640675, "total_mad_ns": 31504.0, "total_cv": 0.041639326753616805, "total_min_ns": 1155269.0, "total_max_ns": 1395924.0, "total_p5_ns": 1164334.25, "total_p25_ns": 1232788.75, "total_p50_ns": 1268313.0, "total_p75_ns": 1296266.5, "total_p95_ns": 1333227.9, "total_p99_ns": 1373619.71, "total_ci_low_ns": 1250728.2727777776, "total_ci_high_ns": 1271845.1319444445, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.90417323483449}, {"serializer": "nlohmann_msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 72102.04301075269, "avg_time_deser_ns": 471375.32258064515, "avg_time_total_ns": 543477.3655913979, "median_size_bytes": 34833.0, "avg_ops_per_sec": 1840.0030310587565, "min_ops_per_sec": 1617.4451160436, "max_ops_per_sec": 2102.222680039606, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 72102.04301075269, "ser_median_ns": 65667.0, "ser_std_ns": 14708.819326390234, "ser_mad_ns": 6708.0, "ser_cv": 0.20400003539700928, "ser_min_ns": 51157.0, "ser_max_ns": 107004.0, "ser_p5_ns": 57039.4, "ser_p25_ns": 60628.0, "ser_p50_ns": 65667.0, "ser_p75_ns": 87050.0, "ser_p95_ns": 98850.59999999999, "ser_p99_ns": 102410.43999999999, "ser_ci_low_ns": 69113.66989247312, "ser_ci_high_ns": 75144.31129032258, "deser_mean_ns": 471375.32258064515, "deser_median_ns": 473803.0, "deser_std_ns": 27740.01580167934, "deser_mad_ns": 14089.0, "deser_cv": 0.05884910489121637, "deser_min_ns": 412871.0, "deser_max_ns": 537994.0, "deser_p5_ns": 425007.0, "deser_p25_ns": 456330.0, "deser_p50_ns": 473803.0, "deser_p75_ns": 487415.0, "deser_p95_ns": 521191.39999999997, "deser_p99_ns": 530855.72, "deser_ci_low_ns": 465970.1056451613, "deser_ci_high_ns": 477119.88360215054, "total_mean_ns": 543477.3655913979, "total_median_ns": 545347.0, "total_std_ns": 31304.596913019483, "total_mad_ns": 20765.0, "total_cv": 0.05760055320602844, "total_min_ns": 475687.0, "total_max_ns": 618259.0, "total_p5_ns": 485669.4, "total_p25_ns": 523762.0, "total_p50_ns": 545347.0, "total_p75_ns": 564629.0, "total_p95_ns": 590737.6, "total_p99_ns": 613609.32, "total_ci_low_ns": 536959.0481182797, "total_ci_high_ns": 549979.1193548387, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.224438573231012}, {"serializer": "nlohmann_bson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 235594.02380952382, "avg_time_deser_ns": 661072.9642857143, "avg_time_total_ns": 896666.9880952381, "median_size_bytes": 60537.0, "avg_ops_per_sec": 1115.2412359066202, "min_ops_per_sec": 1011.7719668341149, "max_ops_per_sec": 1224.1280535874296, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 235594.02380952382, "ser_median_ns": 229809.0, "ser_std_ns": 17148.429708556578, "ser_mad_ns": 7047.5, "ser_cv": 0.0727880505255132, "ser_min_ns": 195550.0, "ser_max_ns": 276275.0, "ser_p5_ns": 215079.2, "ser_p25_ns": 224778.75, "ser_p50_ns": 229809.0, "ser_p75_ns": 246673.25, "ser_p95_ns": 269081.25, "ser_p99_ns": 274878.11, "ser_ci_low_ns": 232081.4407738095, "ser_ci_high_ns": 239140.42351190475, "deser_mean_ns": 661072.9642857143, "deser_median_ns": 660186.0, "deser_std_ns": 24456.640764435266, "deser_mad_ns": 13633.5, "deser_cv": 0.03699537280406034, "deser_min_ns": 609397.0, "deser_max_ns": 723993.0, "deser_p5_ns": 621541.6, "deser_p25_ns": 645905.0, "deser_p50_ns": 660186.0, "deser_p75_ns": 673137.75, "deser_p95_ns": 708400.65, "deser_p99_ns": 714446.34, "deser_ci_low_ns": 655889.3089285714, "deser_ci_high_ns": 665999.6038690476, "total_mean_ns": 896666.9880952381, "total_median_ns": 891596.5, "total_std_ns": 34423.46841156168, "total_mad_ns": 20779.5, "total_cv": 0.03839047145550254, "total_min_ns": 816908.0, "total_max_ns": 988365.0, "total_p5_ns": 844290.55, "total_p25_ns": 873291.0, "total_p50_ns": 891596.5, "total_p75_ns": 917346.25, "total_p95_ns": 962153.85, "total_p99_ns": 986839.46, "total_ci_low_ns": 889639.6113095238, "total_ci_high_ns": 904240.1145833333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 31.862848508215475}, {"serializer": "avro", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "binary-1.11", "avg_time_ser_ns": 53362.48314606742, "avg_time_deser_ns": 59784.58426966292, "avg_time_total_ns": 113147.06741573034, "median_size_bytes": 34033.0, "avg_ops_per_sec": 8838.054956614584, "min_ops_per_sec": 7161.733425958419, "max_ops_per_sec": 10491.307951362296, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 53362.48314606742, "ser_median_ns": 47202.0, "ser_std_ns": 12071.574405030604, "ser_mad_ns": 2927.0, "ser_cv": 0.22621837840618228, "ser_min_ns": 40493.0, "ser_max_ns": 78224.0, "ser_p5_ns": 42315.6, "ser_p25_ns": 45226.0, "ser_p50_ns": 47202.0, "ser_p75_ns": 65686.0, "ser_p95_ns": 75316.0, "ser_p99_ns": 77382.72, "ser_ci_low_ns": 50848.78342696629, "ser_ci_high_ns": 55901.418258426966, "deser_mean_ns": 59784.58426966292, "deser_median_ns": 60270.0, "deser_std_ns": 2885.0792954637104, "deser_mad_ns": 1574.0, "deser_cv": 0.048257913485696254, "deser_min_ns": 53273.0, "deser_max_ns": 66454.0, "deser_p5_ns": 54562.4, "deser_p25_ns": 58122.0, "deser_p50_ns": 60270.0, "deser_p75_ns": 61618.0, "deser_p95_ns": 64257.399999999994, "deser_p99_ns": 66071.2, "deser_ci_low_ns": 59184.53230337079, "deser_ci_high_ns": 60392.401685393255, "total_mean_ns": 113147.06741573034, "total_median_ns": 107911.0, "total_std_ns": 12777.631657241132, "total_mad_ns": 5254.0, "total_cv": 0.1129294108020754, "total_min_ns": 95317.0, "total_max_ns": 139631.0, "total_p5_ns": 98177.6, "total_p25_ns": 104660.0, "total_p50_ns": 107911.0, "total_p75_ns": 122455.0, "total_p95_ns": 137641.4, "total_p99_ns": 139461.16, "total_ci_low_ns": 110560.48960674157, "total_ci_high_ns": 115785.9643258427, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 0.8985100146555935, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.440887702036582}, {"serializer": "cista", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "0.15", "avg_time_ser_ns": 27381.608695652172, "avg_time_deser_ns": 113555.44565217392, "avg_time_total_ns": 140937.05434782608, "median_size_bytes": 57112.0, "avg_ops_per_sec": 7095.366116649824, "min_ops_per_sec": 5537.681151394665, "max_ops_per_sec": 8468.189247093294, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 27381.608695652172, "ser_median_ns": 19452.0, "ser_std_ns": 13216.279572379974, "ser_mad_ns": 1885.0, "ser_cv": 0.4826699453373804, "ser_min_ns": 15454.0, "ser_max_ns": 55803.0, "ser_p5_ns": 16773.1, "ser_p25_ns": 17871.25, "ser_p50_ns": 19452.0, "ser_p75_ns": 42727.5, "ser_p95_ns": 49316.85, "ser_p99_ns": 54818.380000000005, "ser_ci_low_ns": 24633.87336956522, "ser_ci_high_ns": 30091.433695652173, "deser_mean_ns": 113555.44565217392, "deser_median_ns": 114475.0, "deser_std_ns": 5902.8185228327475, "deser_mad_ns": 3039.0, "deser_cv": 0.05198181812357445, "deser_min_ns": 102550.0, "deser_max_ns": 127227.0, "deser_p5_ns": 103190.3, "deser_p25_ns": 109081.75, "deser_p50_ns": 114475.0, "deser_p75_ns": 116914.5, "deser_p95_ns": 122043.35, "deser_p99_ns": 124998.41, "deser_ci_low_ns": 112300.4625, "deser_ci_high_ns": 114833.37092391304, "total_mean_ns": 140937.05434782608, "total_median_ns": 135737.0, "total_std_ns": 14806.108295738815, "total_mad_ns": 7685.0, "total_cv": 0.10505475912103307, "total_min_ns": 118089.0, "total_max_ns": 180581.0, "total_p5_ns": 120559.65, "total_p25_ns": 132016.5, "total_p50_ns": 135737.0, "total_p75_ns": 150732.5, "total_p95_ns": 168412.95, "total_p99_ns": 172400.10000000003, "total_ci_low_ns": 138063.94076086956, "total_ci_high_ns": 144015.43532608694, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.267259504043783}, {"serializer": "bitsery", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "5.2.4", "avg_time_ser_ns": 31980.0, "avg_time_deser_ns": 52572.697916666664, "avg_time_total_ns": 84552.69791666667, "median_size_bytes": 33931.0, "avg_ops_per_sec": 11826.943724321825, "min_ops_per_sec": 8532.93285435137, "max_ops_per_sec": 14616.250347135945, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 31980.0, "ser_median_ns": 25577.0, "ser_std_ns": 12240.151876422724, "ser_mad_ns": 2170.0, "ser_cv": 0.3827439611139063, "ser_min_ns": 20503.0, "ser_max_ns": 61998.0, "ser_p5_ns": 22402.75, "ser_p25_ns": 23951.0, "ser_p50_ns": 25577.0, "ser_p75_ns": 39317.0, "ser_p95_ns": 54869.0, "ser_p99_ns": 60690.799999999996, "ser_ci_low_ns": 29568.143750000003, "ser_ci_high_ns": 34502.586458333324, "deser_mean_ns": 52572.697916666664, "deser_median_ns": 53059.5, "deser_std_ns": 2900.112252345785, "deser_mad_ns": 1797.5, "deser_cv": 0.05516384677352439, "deser_min_ns": 46586.0, "deser_max_ns": 58377.0, "deser_p5_ns": 47817.0, "deser_p25_ns": 50444.5, "deser_p50_ns": 53059.5, "deser_p75_ns": 54534.5, "deser_p95_ns": 56779.75, "deser_p99_ns": 57879.2, "deser_ci_low_ns": 51996.90078125, "deser_ci_high_ns": 53130.500781250004, "total_mean_ns": 84552.69791666667, "total_median_ns": 79487.5, "total_std_ns": 12858.599377045855, "total_mad_ns": 4923.5, "total_cv": 0.15207793120592103, "total_min_ns": 68417.0, "total_max_ns": 117193.0, "total_p5_ns": 69797.25, "total_p25_ns": 76596.25, "total_p50_ns": 79487.5, "total_p75_ns": 93460.75, "total_p95_ns": 110419.0, "total_p99_ns": 112562.69999999998, "total_ci_low_ns": 82032.42265625, "total_ci_high_ns": 87135.31927083334, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 0.2056159420289855, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.19384839689780572}, {"serializer": "msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "msgpack-cxx", "avg_time_ser_ns": 32428.227848101265, "avg_time_deser_ns": 65541.20253164557, "avg_time_total_ns": 97969.43037974683, "median_size_bytes": 34833.0, "avg_ops_per_sec": 10207.26563504374, "min_ops_per_sec": 8104.384471999351, "max_ops_per_sec": 11828.160484481454, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 32428.227848101265, "ser_median_ns": 30577.0, "ser_std_ns": 7149.590635491796, "ser_mad_ns": 1926.0, "ser_cv": 0.22047429384613806, "ser_min_ns": 25817.0, "ser_max_ns": 56097.0, "ser_p5_ns": 26906.3, "ser_p25_ns": 28704.5, "ser_p50_ns": 30577.0, "ser_p75_ns": 32758.5, "ser_p95_ns": 54122.2, "ser_p99_ns": 55978.44, "ser_ci_low_ns": 30957.395253164555, "ser_ci_high_ns": 34019.52721518987, "deser_mean_ns": 65541.20253164557, "deser_median_ns": 65716.0, "deser_std_ns": 3382.784414406641, "deser_mad_ns": 1989.0, "deser_cv": 0.05161309655210118, "deser_min_ns": 58727.0, "deser_max_ns": 74532.0, "deser_p5_ns": 59986.8, "deser_p25_ns": 63118.0, "deser_p50_ns": 65716.0, "deser_p75_ns": 67479.5, "deser_p95_ns": 70698.2, "deser_p99_ns": 73606.92, "deser_ci_low_ns": 64813.424683544305, "deser_ci_high_ns": 66322.3674050633, "total_mean_ns": 97969.43037974683, "total_median_ns": 96789.0, "total_std_ns": 8159.817207736985, "total_mad_ns": 3750.0, "total_cv": 0.08328942177277229, "total_min_ns": 84544.0, "total_max_ns": 123390.0, "total_p5_ns": 87984.8, "total_p25_ns": 93008.5, "total_p50_ns": 96789.0, "total_p75_ns": 100209.0, "total_p95_ns": 116103.69999999998, "total_p99_ns": 121963.38, "total_ci_low_ns": 96237.08132911392, "total_ci_high_ns": 99808.98069620253, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 0.6213538800220143, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.4697016073826235}, {"serializer": "arduinojson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "7.2.1", "avg_time_ser_ns": 185555.8426966292, "avg_time_deser_ns": 10500733.786516855, "avg_time_total_ns": 10686289.629213484, "median_size_bytes": 41431.0, "avg_ops_per_sec": 93.57784925333345, "min_ops_per_sec": 90.43655988369858, "max_ops_per_sec": 97.97074182172088, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 185555.8426966292, "ser_median_ns": 179038.0, "ser_std_ns": 14541.405168360761, "ser_mad_ns": 6741.0, "ser_cv": 0.07836673293082418, "ser_min_ns": 161443.0, "ser_max_ns": 225377.0, "ser_p5_ns": 170051.8, "ser_p25_ns": 174345.0, "ser_p50_ns": 179038.0, "ser_p75_ns": 196984.0, "ser_p95_ns": 209351.4, "ser_p99_ns": 220943.56000000003, "ser_ci_low_ns": 182493.20224719102, "ser_ci_high_ns": 188513.02780898876, "deser_mean_ns": 10500733.786516855, "deser_median_ns": 10488579.0, "deser_std_ns": 168044.73507349112, "deser_mad_ns": 108659.0, "deser_cv": 0.01600314211272205, "deser_min_ns": 10030202.0, "deser_max_ns": 10861828.0, "deser_p5_ns": 10230086.0, "deser_p25_ns": 10412984.0, "deser_p50_ns": 10488579.0, "deser_p75_ns": 10624714.0, "deser_p95_ns": 10754086.2, "deser_p99_ns": 10842473.28, "deser_ci_low_ns": 10465480.628370786, "deser_ci_high_ns": 10533895.429494381, "total_mean_ns": 10686289.629213484, "total_median_ns": 10678657.0, "total_std_ns": 170163.63179667963, "total_mad_ns": 106733.0, "total_cv": 0.015923546684669426, "total_min_ns": 10207129.0, "total_max_ns": 11057475.0, "total_p5_ns": 10410287.0, "total_p25_ns": 10589597.0, "total_p50_ns": 10678657.0, "total_p75_ns": 10810259.0, "total_p95_ns": 10940241.6, "total_p99_ns": 11019285.64, "total_ci_low_ns": 10650016.995786516, "total_ci_high_ns": 10723219.441011237, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 88.25670517487737}, {"serializer": "flexbuffers", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "flatbuffers-flex", "avg_time_ser_ns": 98600.32258064517, "avg_time_deser_ns": 249922.9247311828, "avg_time_total_ns": 348523.24731182796, "median_size_bytes": 48096.0, "avg_ops_per_sec": 2869.2490607528625, "min_ops_per_sec": 2497.053476897261, "max_ops_per_sec": 3305.1951056670873, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 98600.32258064517, "ser_median_ns": 95375.0, "ser_std_ns": 11305.801479349566, "ser_mad_ns": 4925.0, "ser_cv": 0.11466292587534442, "ser_min_ns": 80001.0, "ser_max_ns": 124577.0, "ser_p5_ns": 84395.0, "ser_p25_ns": 91189.0, "ser_p50_ns": 95375.0, "ser_p75_ns": 103735.0, "ser_p95_ns": 121615.8, "ser_p99_ns": 123980.84, "ser_ci_low_ns": 96441.69704301076, "ser_ci_high_ns": 100990.88870967743, "deser_mean_ns": 249922.9247311828, "deser_median_ns": 247137.0, "deser_std_ns": 19087.927225500734, "deser_mad_ns": 11262.0, "deser_cv": 0.07637525547538992, "deser_min_ns": 212626.0, "deser_max_ns": 308933.0, "deser_p5_ns": 219967.2, "deser_p25_ns": 237234.0, "deser_p50_ns": 247137.0, "deser_p75_ns": 264081.0, "deser_p95_ns": 279939.6, "deser_p99_ns": 294420.92, "deser_ci_low_ns": 245980.89731182795, "deser_ci_high_ns": 253980.31263440862, "total_mean_ns": 348523.24731182796, "total_median_ns": 345723.0, "total_std_ns": 23232.01227020498, "total_mad_ns": 16496.0, "total_cv": 0.06665842938568461, "total_min_ns": 302554.0, "total_max_ns": 400472.0, "total_p5_ns": 309439.4, "total_p25_ns": 331629.0, "total_p50_ns": 345723.0, "total_p75_ns": 363809.0, "total_p95_ns": 387361.39999999997, "total_p99_ns": 396933.68, "total_ci_low_ns": 343947.09274193546, "total_ci_high_ns": 353084.21397849463, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.183953159426286}, {"serializer": "nlohmann_json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 146356.45744680852, "avg_time_deser_ns": 354175.02127659577, "avg_time_total_ns": 500531.47872340423, "median_size_bytes": 41431.0, "avg_ops_per_sec": 1997.8763424639756, "min_ops_per_sec": 1749.6465713925786, "max_ops_per_sec": 2339.991388831689, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 146356.45744680852, "ser_median_ns": 143416.5, "ser_std_ns": 15248.734315652317, "ser_mad_ns": 9171.0, "ser_cv": 0.10418900936567342, "ser_min_ns": 119831.0, "ser_max_ns": 184773.0, "ser_p5_ns": 124681.55, "ser_p25_ns": 135900.25, "ser_p50_ns": 143416.5, "ser_p75_ns": 155267.0, "ser_p95_ns": 174420.4, "ser_p99_ns": 184308.93, "ser_ci_low_ns": 143332.30186170212, "ser_ci_high_ns": 149525.80824468084, "deser_mean_ns": 354175.02127659577, "deser_median_ns": 350926.5, "deser_std_ns": 27015.69185467289, "deser_mad_ns": 18877.0, "deser_cv": 0.07627780117665263, "deser_min_ns": 298929.0, "deser_max_ns": 418780.0, "deser_p5_ns": 314290.55, "deser_p25_ns": 334382.5, "deser_p50_ns": 350926.5, "deser_p75_ns": 373102.25, "deser_p95_ns": 405819.25, "deser_p99_ns": 417266.89, "deser_ci_low_ns": 348646.46170212765, "deser_ci_high_ns": 359746.3795212766, "total_mean_ns": 500531.47872340423, "total_median_ns": 499545.0, "total_std_ns": 32058.339736499656, "total_mad_ns": 22773.5, "total_cv": 0.06404859853822546, "total_min_ns": 427352.0, "total_max_ns": 571544.0, "total_p5_ns": 449445.4, "total_p25_ns": 477804.75, "total_p50_ns": 499545.0, "total_p75_ns": 523636.25, "total_p95_ns": 552429.4, "total_p99_ns": 564106.7899999999, "total_ci_low_ns": 494314.0667553192, "total_ci_high_ns": 507444.74468085106, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.04664592453272}, {"serializer": "yas", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "7.x", "avg_time_ser_ns": 37401.01075268817, "avg_time_deser_ns": 48640.75268817204, "avg_time_total_ns": 86041.76344086022, "median_size_bytes": 57045.0, "avg_ops_per_sec": 11622.262957073608, "min_ops_per_sec": 8703.75044606721, "max_ops_per_sec": 14145.672131611334, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 37401.01075268817, "ser_median_ns": 31814.0, "ser_std_ns": 11651.792142893188, "ser_mad_ns": 2249.0, "ser_cv": 0.3115368250323482, "ser_min_ns": 26717.0, "ser_max_ns": 63008.0, "ser_p5_ns": 27785.6, "ser_p25_ns": 30307.0, "ser_p50_ns": 31814.0, "ser_p75_ns": 36631.0, "ser_p95_ns": 61550.0, "ser_p99_ns": 62767.88, "ser_ci_low_ns": 35127.04005376344, "ser_ci_high_ns": 39778.135215053764, "deser_mean_ns": 48640.75268817204, "deser_median_ns": 48903.0, "deser_std_ns": 2868.1765175801384, "deser_mad_ns": 1805.0, "deser_cv": 0.058966532363665336, "deser_min_ns": 41595.0, "deser_max_ns": 56044.0, "deser_p5_ns": 43884.8, "deser_p25_ns": 46277.0, "deser_p50_ns": 48903.0, "deser_p75_ns": 50523.0, "deser_p95_ns": 53437.799999999996, "deser_p99_ns": 55795.6, "deser_ci_low_ns": 48072.30241935484, "deser_ci_high_ns": 49245.83817204301, "total_mean_ns": 86041.76344086022, "total_median_ns": 81548.0, "total_std_ns": 12165.575730579914, "total_mad_ns": 4204.0, "total_cv": 0.14139152016499265, "total_min_ns": 70693.0, "total_max_ns": 114893.0, "total_p5_ns": 72279.4, "total_p25_ns": 78861.0, "total_p50_ns": 81548.0, "total_p75_ns": 90268.0, "total_p95_ns": 109520.59999999999, "total_p99_ns": 114135.84, "total_ci_low_ns": 83638.26102150537, "total_ci_high_ns": 88617.0940860215, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 0.3300607760635811, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.31918327007452246}, {"serializer": "jsoncons_cbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 239036.1978021978, "avg_time_deser_ns": 868543.8571428572, "avg_time_total_ns": 1107580.054945055, "median_size_bytes": 34732.0, "avg_ops_per_sec": 902.8692739050887, "min_ops_per_sec": 826.8945808636748, "max_ops_per_sec": 1006.7847222431969, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 239036.1978021978, "ser_median_ns": 237986.0, "ser_std_ns": 15949.598061267723, "ser_mad_ns": 10675.0, "ser_cv": 0.0667246141292207, "ser_min_ns": 201981.0, "ser_max_ns": 278978.0, "ser_p5_ns": 210907.5, "ser_p25_ns": 229624.5, "ser_p50_ns": 237986.0, "ser_p75_ns": 249205.5, "ser_p95_ns": 264086.0, "ser_p99_ns": 275880.19999999995, "ser_ci_low_ns": 235611.32225274725, "ser_ci_high_ns": 242259.39285714287, "deser_mean_ns": 868543.8571428572, "deser_median_ns": 869441.0, "deser_std_ns": 40295.32415183662, "deser_mad_ns": 20984.0, "deser_cv": 0.046394115645917104, "deser_min_ns": 781544.0, "deser_max_ns": 961288.0, "deser_p5_ns": 793272.5, "deser_p25_ns": 848923.0, "deser_p50_ns": 869441.0, "deser_p75_ns": 892236.0, "deser_p95_ns": 931384.0, "deser_p99_ns": 951732.7, "deser_ci_low_ns": 860441.7247252747, "deser_ci_high_ns": 877120.8351648351, "total_mean_ns": 1107580.054945055, "total_median_ns": 1114513.0, "total_std_ns": 48709.52259178045, "total_mad_ns": 27003.0, "total_cv": 0.043978331294704326, "total_min_ns": 993261.0, "total_max_ns": 1209344.0, "total_p5_ns": 1010466.0, "total_p25_ns": 1085815.5, "total_p50_ns": 1114513.0, "total_p75_ns": 1139401.0, "total_p95_ns": 1178657.0, "total_p99_ns": 1202294.3, "total_ci_low_ns": 1097600.4728021978, "total_ci_high_ns": 1117576.5148351646, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.778697474355713}, {"serializer": "cereal", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "1.3.2", "avg_time_ser_ns": 75969.3956043956, "avg_time_deser_ns": 93502.91208791209, "avg_time_total_ns": 169472.3076923077, "median_size_bytes": 57038.0, "avg_ops_per_sec": 5900.66904509019, "min_ops_per_sec": 4832.879042703319, "max_ops_per_sec": 7026.0243943566975, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 75969.3956043956, "ser_median_ns": 70877.0, "ser_std_ns": 12752.708561869531, "ser_mad_ns": 5570.0, "ser_cv": 0.1678663948872019, "ser_min_ns": 58591.0, "ser_max_ns": 111647.0, "ser_p5_ns": 63205.5, "ser_p25_ns": 67351.0, "ser_p50_ns": 70877.0, "ser_p75_ns": 80011.5, "ser_p95_ns": 102477.5, "ser_p99_ns": 105850.99999999996, "ser_ci_low_ns": 73389.67692307693, "ser_ci_high_ns": 78584.19065934066, "deser_mean_ns": 93502.91208791209, "deser_median_ns": 92640.0, "deser_std_ns": 7845.198995632582, "deser_mad_ns": 4964.0, "deser_cv": 0.08390325841676964, "deser_min_ns": 79596.0, "deser_max_ns": 113390.0, "deser_p5_ns": 82786.0, "deser_p25_ns": 87846.0, "deser_p50_ns": 92640.0, "deser_p75_ns": 97078.0, "deser_p95_ns": 107818.5, "deser_p99_ns": 113019.2, "deser_ci_low_ns": 91930.00741758241, "deser_ci_high_ns": 95071.36923076923, "total_mean_ns": 169472.3076923077, "total_median_ns": 167050.0, "total_std_ns": 15791.010032921551, "total_mad_ns": 9508.0, "total_cv": 0.09317752409196882, "total_min_ns": 142328.0, "total_max_ns": 206916.0, "total_p5_ns": 147377.0, "total_p25_ns": 159010.0, "total_p50_ns": 167050.0, "total_p75_ns": 178986.5, "total_p95_ns": 198018.0, "total_p99_ns": 205780.19999999998, "total_ci_low_ns": 166322.66813186815, "total_ci_high_ns": 172684.37032967032, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.100876968028148}, {"serializer": "nlohmann_cbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 68745.0, "avg_time_deser_ns": 438023.40860215056, "avg_time_total_ns": 506768.40860215056, "median_size_bytes": 34732.0, "avg_ops_per_sec": 1973.2879615727418, "min_ops_per_sec": 1754.4352122164833, "max_ops_per_sec": 2279.321765015602, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 68745.0, "ser_median_ns": 63925.0, "ser_std_ns": 12527.726646713783, "ser_mad_ns": 5985.0, "ser_cv": 0.18223473193270467, "ser_min_ns": 51431.0, "ser_max_ns": 100789.0, "ser_p5_ns": 55762.6, "ser_p25_ns": 58809.0, "ser_p50_ns": 63925.0, "ser_p75_ns": 74087.0, "ser_p95_ns": 93566.59999999999, "ser_p99_ns": 98388.72, "ser_ci_low_ns": 66298.9561827957, "ser_ci_high_ns": 71129.56505376344, "deser_mean_ns": 438023.40860215056, "deser_median_ns": 440596.0, "deser_std_ns": 26830.048713772463, "deser_mad_ns": 18091.0, "deser_cv": 0.06125254538197924, "deser_min_ns": 384274.0, "deser_max_ns": 510306.0, "deser_p5_ns": 394382.6, "deser_p25_ns": 418324.0, "deser_p50_ns": 440596.0, "deser_p75_ns": 454149.0, "deser_p95_ns": 476264.19999999995, "deser_p99_ns": 498252.16, "deser_ci_low_ns": 432798.21451612905, "deser_ci_high_ns": 443601.03091397847, "total_mean_ns": 506768.40860215056, "total_median_ns": 508033.0, "total_std_ns": 28936.632925214722, "total_mad_ns": 17434.0, "total_cv": 0.057100309399775645, "total_min_ns": 438727.0, "total_max_ns": 569984.0, "total_p5_ns": 456098.2, "total_p25_ns": 490599.0, "total_p50_ns": 508033.0, "total_p75_ns": 525352.0, "total_p95_ns": 553757.2, "total_p99_ns": 569564.48, "total_ci_low_ns": 500807.8569892473, "total_ci_high_ns": 512761.59193548386, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.922364826843847}, {"serializer": "zpp_bits", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "4.4.25", "avg_time_ser_ns": 40556.48888888889, "avg_time_deser_ns": 49358.42222222222, "avg_time_total_ns": 89914.91111111111, "median_size_bytes": 43838.0, "avg_ops_per_sec": 11121.62585318317, "min_ops_per_sec": 8151.354347524842, "max_ops_per_sec": 13698.254842333086, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 40556.48888888889, "ser_median_ns": 33051.5, "ser_std_ns": 12756.782122379165, "ser_mad_ns": 2619.5, "ser_cv": 0.31454355324812383, "ser_min_ns": 28364.0, "ser_max_ns": 67354.0, "ser_p5_ns": 29843.7, "ser_p25_ns": 31140.5, "ser_p50_ns": 33051.5, "ser_p75_ns": 56025.75, "ser_p95_ns": 62085.6, "ser_p99_ns": 63694.32, "ser_ci_low_ns": 38052.29027777778, "ser_ci_high_ns": 43238.008055555554, "deser_mean_ns": 49358.42222222222, "deser_median_ns": 49678.5, "deser_std_ns": 2273.6281601740816, "deser_mad_ns": 1185.5, "deser_cv": 0.04606363124691707, "deser_min_ns": 44449.0, "deser_max_ns": 55325.0, "deser_p5_ns": 45493.55, "deser_p25_ns": 48093.0, "deser_p50_ns": 49678.5, "deser_p75_ns": 50582.5, "deser_p95_ns": 53214.399999999994, "deser_p99_ns": 54945.86, "deser_ci_low_ns": 48849.480833333335, "deser_ci_high_ns": 49845.09111111111, "total_mean_ns": 89914.91111111111, "total_median_ns": 83433.0, "total_std_ns": 13026.494309368503, "total_mad_ns": 4497.0, "total_cv": 0.1448757958874162, "total_min_ns": 73002.0, "total_max_ns": 122679.0, "total_p5_ns": 76593.5, "total_p25_ns": 80103.5, "total_p50_ns": 83433.0, "total_p75_ns": 103634.5, "total_p95_ns": 111926.15, "total_p99_ns": 115571.45999999999, "total_ci_low_ns": 87332.83333333334, "total_ci_high_ns": 92689.71194444445, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 0.4940821256038647, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 0.6097619365104955}, {"serializer": "thrift", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "TBinaryProtocol", "avg_time_ser_ns": 50846.836956521736, "avg_time_deser_ns": 49765.184782608696, "avg_time_total_ns": 100612.02173913043, "median_size_bytes": 44336.0, "avg_ops_per_sec": 9939.170118187536, "min_ops_per_sec": 7323.539320082609, "max_ops_per_sec": 11722.092627975946, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 50846.836956521736, "ser_median_ns": 45029.5, "ser_std_ns": 11675.623514213372, "ser_mad_ns": 1999.0, "ser_cv": 0.2296233986825375, "ser_min_ns": 39760.0, "ser_max_ns": 81899.0, "ser_p5_ns": 40683.3, "ser_p25_ns": 43363.25, "ser_p50_ns": 45029.5, "ser_p75_ns": 54945.75, "ser_p95_ns": 73393.8, "ser_p99_ns": 77396.32000000002, "ser_ci_low_ns": 48700.83423913044, "ser_ci_high_ns": 53158.941847826085, "deser_mean_ns": 49765.184782608696, "deser_median_ns": 50150.0, "deser_std_ns": 2373.759270728665, "deser_mad_ns": 1283.5, "deser_cv": 0.047699195353097856, "deser_min_ns": 44541.0, "deser_max_ns": 55492.0, "deser_p5_ns": 45322.6, "deser_p25_ns": 48499.75, "deser_p50_ns": 50150.0, "deser_p75_ns": 51213.0, "deser_p95_ns": 53260.2, "deser_p99_ns": 54723.05, "deser_ci_low_ns": 49242.669565217395, "deser_ci_high_ns": 50235.61005434783, "total_mean_ns": 100612.02173913043, "total_median_ns": 95567.0, "total_std_ns": 11973.916168785576, "total_mad_ns": 3473.5, "total_cv": 0.11901078978247619, "total_min_ns": 85309.0, "total_max_ns": 136546.0, "total_p5_ns": 87027.15, "total_p25_ns": 93400.5, "total_p50_ns": 95567.0, "total_p75_ns": 109117.5, "total_p95_ns": 122933.65, "total_p99_ns": 128468.84000000003, "total_ci_low_ns": 98219.6839673913, "total_ci_high_ns": 103104.61847826086, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 0.6521739130434783, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.503304321228345}, {"serializer": "rapidjson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "1.1.0", "avg_time_ser_ns": 88625.33333333333, "avg_time_deser_ns": 573777.2580645161, "avg_time_total_ns": 662402.5913978495, "median_size_bytes": 41431.0, "avg_ops_per_sec": 1509.655929771845, "min_ops_per_sec": 1287.327675099092, "max_ops_per_sec": 1754.6322290847838, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 88625.33333333333, "ser_median_ns": 86723.0, "ser_std_ns": 17068.937906219497, "ser_mad_ns": 10703.0, "ser_cv": 0.19259660036505172, "ser_min_ns": 59537.0, "ser_max_ns": 130137.0, "ser_p5_ns": 66347.8, "ser_p25_ns": 76369.0, "ser_p50_ns": 86723.0, "ser_p75_ns": 97426.0, "ser_p95_ns": 119174.19999999998, "ser_p99_ns": 125562.76, "ser_ci_low_ns": 85360.9069892473, "ser_ci_high_ns": 92189.26102150539, "deser_mean_ns": 573777.2580645161, "deser_median_ns": 570806.0, "deser_std_ns": 38446.38733859399, "deser_mad_ns": 26840.0, "deser_cv": 0.06700577061607944, "deser_min_ns": 491285.0, "deser_max_ns": 660410.0, "deser_p5_ns": 509883.6, "deser_p25_ns": 554835.0, "deser_p50_ns": 570806.0, "deser_p75_ns": 600520.0, "deser_p95_ns": 635248.4, "deser_p99_ns": 656140.28, "deser_ci_low_ns": 566082.9413978495, "deser_ci_high_ns": 581464.8682795699, "total_mean_ns": 662402.5913978495, "total_median_ns": 657524.0, "total_std_ns": 42920.371273880555, "total_mad_ns": 30195.0, "total_cv": 0.06479499300162293, "total_min_ns": 569920.0, "total_max_ns": 776803.0, "total_p5_ns": 592365.0, "total_p25_ns": 631645.0, "total_p50_ns": 657524.0, "total_p75_ns": 693786.0, "total_p95_ns": 726004.0, "total_p99_ns": 748941.72, "total_ci_low_ns": 653636.9010752689, "total_ci_high_ns": 671630.6301075269, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.232833286211275}, {"serializer": "simdjson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.10.1", "avg_time_ser_ns": 15180.547368421052, "avg_time_deser_ns": 436000.07368421054, "avg_time_total_ns": 451180.6210526316, "median_size_bytes": 41431.0, "avg_ops_per_sec": 2216.4072509739885, "min_ops_per_sec": 1897.1768111872723, "max_ops_per_sec": 2581.0981023766753, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 15180.547368421052, "ser_median_ns": 8634.0, "ser_std_ns": 12164.099416401283, "ser_mad_ns": 1107.0, "ser_cv": 0.801295178703855, "ser_min_ns": 6717.0, "ser_max_ns": 41985.0, "ser_p5_ns": 7168.4, "ser_p25_ns": 7696.0, "ser_p50_ns": 8634.0, "ser_p75_ns": 14032.5, "ser_p95_ns": 38251.2, "ser_p99_ns": 41559.18, "ser_ci_low_ns": 12803.547631578947, "ser_ci_high_ns": 17669.422368421052, "deser_mean_ns": 436000.07368421054, "deser_median_ns": 433628.0, "deser_std_ns": 29863.22545256428, "deser_mad_ns": 19942.0, "deser_cv": 0.06849362478363671, "deser_min_ns": 370916.0, "deser_max_ns": 519755.0, "deser_p5_ns": 391339.7, "deser_p25_ns": 413883.5, "deser_p50_ns": 433628.0, "deser_p75_ns": 453391.5, "deser_p95_ns": 487399.5, "deser_p99_ns": 518445.58, "deser_ci_low_ns": 430234.68578947365, "deser_ci_high_ns": 442108.5834210526, "total_mean_ns": 451180.6210526316, "total_median_ns": 452789.0, "total_std_ns": 30317.769753621298, "total_mad_ns": 20139.0, "total_cv": 0.06719652471528612, "total_min_ns": 387432.0, "total_max_ns": 527099.0, "total_p5_ns": 403890.2, "total_p25_ns": 430558.0, "total_p50_ns": 452789.0, "total_p75_ns": 470349.5, "total_p95_ns": 497570.6, "total_p99_ns": 526679.76, "total_ci_low_ns": 445202.3778947368, "total_ci_high_ns": 457261.62263157894, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.748852889609916}, {"serializer": "custom_binary", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "harness", "avg_time_ser_ns": 71584.58762886598, "avg_time_deser_ns": 61425.865979381444, "avg_time_total_ns": 133010.45360824742, "median_size_bytes": 43834.0, "avg_ops_per_sec": 7518.206072323283, "min_ops_per_sec": 5894.419163935586, "max_ops_per_sec": 9369.085764611089, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 71584.58762886598, "ser_median_ns": 65109.0, "ser_std_ns": 13323.608663878516, "ser_mad_ns": 4255.0, "ser_cv": 0.18612398429890326, "ser_min_ns": 53744.0, "ser_max_ns": 102680.0, "ser_p5_ns": 57483.4, "ser_p25_ns": 62148.0, "ser_p50_ns": 65109.0, "ser_p75_ns": 85120.0, "ser_p95_ns": 94877.59999999999, "ser_p99_ns": 101991.68, "ser_ci_low_ns": 69099.15128865979, "ser_ci_high_ns": 74403.80567010309, "deser_mean_ns": 61425.865979381444, "deser_median_ns": 61557.0, "deser_std_ns": 3695.8981193932696, "deser_mad_ns": 2311.0, "deser_cv": 0.060168433288899106, "deser_min_ns": 52990.0, "deser_max_ns": 69901.0, "deser_p5_ns": 55182.4, "deser_p25_ns": 59286.0, "deser_p50_ns": 61557.0, "deser_p75_ns": 63868.0, "deser_p95_ns": 67709.2, "deser_p99_ns": 69436.36, "deser_ci_low_ns": 60671.55077319588, "deser_ci_high_ns": 62146.4, "total_mean_ns": 133010.45360824742, "total_median_ns": 128051.0, "total_std_ns": 14563.42216037367, "total_mad_ns": 7452.0, "total_cv": 0.10949080891992878, "total_min_ns": 106734.0, "total_max_ns": 169652.0, "total_p5_ns": 112382.6, "total_p25_ns": 122997.0, "total_p50_ns": 128051.0, "total_p75_ns": 145828.0, "total_p95_ns": 157358.6, "total_p99_ns": 165683.35999999996, "total_ci_low_ns": 130101.49793814434, "total_ci_high_ns": 136181.9193298969, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 0.9986553115194979, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.7211438338184966}, {"serializer": "jsoncons_msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 233861.52688172043, "avg_time_deser_ns": 831549.0107526882, "avg_time_total_ns": 1065410.5376344086, "median_size_bytes": 34833.0, "avg_ops_per_sec": 938.6053213068051, "min_ops_per_sec": 856.90830909711, "max_ops_per_sec": 1034.5262800710927, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 233861.52688172043, "ser_median_ns": 233379.0, "ser_std_ns": 17874.98163245721, "ser_mad_ns": 11493.0, "ser_cv": 0.07643404142100635, "ser_min_ns": 193126.0, "ser_max_ns": 277448.0, "ser_p5_ns": 207564.2, "ser_p25_ns": 222156.0, "ser_p50_ns": 233379.0, "ser_p75_ns": 245756.0, "ser_p95_ns": 266701.19999999995, "ser_p99_ns": 277090.12, "ser_ci_low_ns": 230248.15080645162, "ser_ci_high_ns": 237659.69112903226, "deser_mean_ns": 831549.0107526882, "deser_median_ns": 834631.0, "deser_std_ns": 34118.545101089825, "deser_mad_ns": 17522.0, "deser_cv": 0.04103010725754691, "deser_min_ns": 757339.0, "deser_max_ns": 905522.0, "deser_p5_ns": 770028.4, "deser_p25_ns": 817111.0, "deser_p50_ns": 834631.0, "deser_p75_ns": 852153.0, "deser_p95_ns": 887095.7999999999, "deser_p99_ns": 902966.24, "deser_ci_low_ns": 824685.5763440861, "deser_ci_high_ns": 838176.4591397849, "total_mean_ns": 1065410.5376344086, "total_median_ns": 1069355.0, "total_std_ns": 43742.08264125936, "total_mad_ns": 25114.0, "total_cv": 0.04105655153212806, "total_min_ns": 966626.0, "total_max_ns": 1166986.0, "total_p5_ns": 987257.8, "total_p25_ns": 1041596.0, "total_p50_ns": 1069355.0, "total_p75_ns": 1089693.0, "total_p95_ns": 1136653.0, "total_p99_ns": 1159422.68, "total_ci_low_ns": 1056786.0561827957, "total_ci_high_ns": 1074676.2752688173, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.358531096332218}, {"serializer": "capnproto", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "1.0.x", "avg_time_ser_ns": 41690.914893617024, "avg_time_deser_ns": 73238.29787234042, "avg_time_total_ns": 114929.21276595745, "median_size_bytes": 71584.0, "avg_ops_per_sec": 8701.0080025207, "min_ops_per_sec": 6390.388855161837, "max_ops_per_sec": 10885.894058479023, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 41690.914893617024, "ser_median_ns": 36222.0, "ser_std_ns": 13009.262484909787, "ser_mad_ns": 4101.5, "ser_cv": 0.31204070522572136, "ser_min_ns": 27677.0, "ser_max_ns": 73862.0, "ser_p5_ns": 29925.8, "ser_p25_ns": 32606.75, "ser_p50_ns": 36222.0, "ser_p75_ns": 51308.0, "ser_p95_ns": 65114.39999999999, "ser_p99_ns": 73132.87999999999, "ser_ci_low_ns": 39114.91781914893, "ser_ci_high_ns": 44442.852925531915, "deser_mean_ns": 73238.29787234042, "deser_median_ns": 73723.5, "deser_std_ns": 4571.697315048924, "deser_mad_ns": 2531.5, "deser_cv": 0.06242222235991501, "deser_min_ns": 63177.0, "deser_max_ns": 83085.0, "deser_p5_ns": 64916.5, "deser_p25_ns": 70280.25, "deser_p50_ns": 73723.5, "deser_p75_ns": 75833.75, "deser_p95_ns": 80511.45, "deser_p99_ns": 82912.95, "deser_ci_low_ns": 72265.90425531915, "deser_ci_high_ns": 74133.10372340425, "total_mean_ns": 114929.21276595745, "total_median_ns": 111226.5, "total_std_ns": 14691.652180139607, "total_mad_ns": 7865.0, "total_cv": 0.12783218318964543, "total_min_ns": 91862.0, "total_max_ns": 156485.0, "total_p5_ns": 96378.95, "total_p25_ns": 105143.5, "total_p50_ns": 111226.5, "total_p75_ns": 123207.25, "total_p95_ns": 141108.55, "total_p99_ns": 149226.34999999995, "total_ci_low_ns": 112060.63484042553, "total_ci_high_ns": 117878.04175531915, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 0.9003237742830712, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.390573439650681}, {"serializer": "avro_c", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "avro-c", "avg_time_ser_ns": 220391.19540229885, "avg_time_deser_ns": 265627.2988505747, "avg_time_total_ns": 486018.4942528736, "median_size_bytes": 34033.0, "avg_ops_per_sec": 2057.534871254722, "min_ops_per_sec": 1825.2305266155115, "max_ops_per_sec": 2303.712201842048, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 220391.19540229885, "ser_median_ns": 218434.0, "ser_std_ns": 16599.303978711065, "ser_mad_ns": 10665.0, "ser_cv": 0.07531745516607839, "ser_min_ns": 192714.0, "ser_max_ns": 262111.0, "ser_p5_ns": 195856.7, "ser_p25_ns": 208347.5, "ser_p50_ns": 218434.0, "ser_p75_ns": 229752.5, "ser_p95_ns": 250096.40000000002, "ser_p99_ns": 257437.76, "ser_ci_low_ns": 216925.58045977014, "ser_ci_high_ns": 223938.599137931, "deser_mean_ns": 265627.2988505747, "deser_median_ns": 268511.0, "deser_std_ns": 11832.29187054012, "deser_mad_ns": 5785.0, "deser_cv": 0.04454471329468372, "deser_min_ns": 241171.0, "deser_max_ns": 293920.0, "deser_p5_ns": 243248.9, "deser_p25_ns": 259347.5, "deser_p50_ns": 268511.0, "deser_p75_ns": 272309.0, "deser_p95_ns": 284179.4, "deser_p99_ns": 289854.78, "deser_ci_low_ns": 263077.86005747126, "deser_ci_high_ns": 268068.78534482763, "total_mean_ns": 486018.4942528736, "total_median_ns": 487643.0, "total_std_ns": 24630.826273742667, "total_mad_ns": 18871.0, "total_cv": 0.050678783966042536, "total_min_ns": 434082.0, "total_max_ns": 547876.0, "total_p5_ns": 445397.9, "total_p25_ns": 469186.0, "total_p50_ns": 487643.0, "total_p75_ns": 504918.0, "total_p95_ns": 519460.9, "total_p99_ns": 540128.26, "total_ci_low_ns": 480901.5448275862, "total_ci_high_ns": 491147.00459770113, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.74092566322224}, {"serializer": "nlohmann_ubjson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 79485.30232558139, "avg_time_deser_ns": 535722.976744186, "avg_time_total_ns": 615208.2790697674, "median_size_bytes": 41332.0, "avg_ops_per_sec": 1625.4657715466071, "min_ops_per_sec": 1495.6312610863667, "max_ops_per_sec": 1788.66878325806, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 79485.30232558139, "ser_median_ns": 75588.5, "ser_std_ns": 10410.838277905406, "ser_mad_ns": 5080.5, "ser_cv": 0.13097815537344698, "ser_min_ns": 65376.0, "ser_max_ns": 104864.0, "ser_p5_ns": 67594.0, "ser_p25_ns": 72288.25, "ser_p50_ns": 75588.5, "ser_p75_ns": 84665.75, "ser_p95_ns": 100937.25, "ser_p99_ns": 103158.05000000002, "ser_ci_low_ns": 77387.80523255814, "ser_ci_high_ns": 81706.43081395348, "deser_mean_ns": 535722.976744186, "deser_median_ns": 539341.5, "deser_std_ns": 22578.163394268282, "deser_mad_ns": 12799.0, "deser_cv": 0.04214522126992813, "deser_min_ns": 476334.0, "deser_max_ns": 590898.0, "deser_p5_ns": 494430.25, "deser_p25_ns": 519985.0, "deser_p50_ns": 539341.5, "deser_p75_ns": 549428.5, "deser_p95_ns": 568293.75, "deser_p99_ns": 584493.25, "deser_ci_low_ns": 530959.1398255815, "deser_ci_high_ns": 540446.1598837209, "total_mean_ns": 615208.2790697674, "total_median_ns": 616407.0, "total_std_ns": 23374.186537667454, "total_mad_ns": 16089.0, "total_cv": 0.037993940154723946, "total_min_ns": 559075.0, "total_max_ns": 668614.0, "total_p5_ns": 574526.0, "total_p25_ns": 601412.25, "total_p50_ns": 616407.0, "total_p75_ns": 632378.5, "total_p95_ns": 649408.5, "total_p99_ns": 653737.3, "total_ci_low_ns": 610354.561627907, "total_ci_high_ns": 620271.7808139535, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.553791286954763}, {"serializer": "protobuf-wire", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "wire-v2", "avg_time_ser_ns": 92048.43157894736, "avg_time_deser_ns": 67948.56842105264, "avg_time_total_ns": 159997.0, "median_size_bytes": 37330.0, "avg_ops_per_sec": 6250.1171896973065, "min_ops_per_sec": 4783.430197794839, "max_ops_per_sec": 7870.793061108838, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 92048.43157894736, "ser_median_ns": 87675.0, "ser_std_ns": 18234.290701192298, "ser_mad_ns": 13217.0, "ser_cv": 0.198094529025769, "ser_min_ns": 66519.0, "ser_max_ns": 137536.0, "ser_p5_ns": 69862.4, "ser_p25_ns": 76826.0, "ser_p50_ns": 87675.0, "ser_p75_ns": 106496.5, "ser_p95_ns": 125684.5, "ser_p99_ns": 136959.78, "ser_ci_low_ns": 88382.54131578948, "ser_ci_high_ns": 95770.93736842104, "deser_mean_ns": 67948.56842105264, "deser_median_ns": 68659.0, "deser_std_ns": 3794.7659716830003, "deser_mad_ns": 2379.0, "deser_cv": 0.055847622103945026, "deser_min_ns": 59923.0, "deser_max_ns": 75549.0, "deser_p5_ns": 61804.8, "deser_p25_ns": 64605.5, "deser_p50_ns": 68659.0, "deser_p75_ns": 70512.0, "deser_p95_ns": 73439.6, "deser_p99_ns": 75346.9, "deser_ci_low_ns": 67225.98131578947, "deser_ci_high_ns": 68732.94421052632, "total_mean_ns": 159997.0, "total_median_ns": 154560.0, "total_std_ns": 19731.831608806566, "total_mad_ns": 12613.0, "total_cv": 0.12332625992241458, "total_min_ns": 127052.0, "total_max_ns": 209055.0, "total_p5_ns": 132912.1, "total_p25_ns": 144312.0, "total_p50_ns": 154560.0, "total_p75_ns": 176659.0, "total_p95_ns": 196109.6, "total_p99_ns": 207437.26, "total_ci_low_ns": 156174.17289473684, "total_ci_high_ns": 164054.80131578946, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 0.9990092879256965, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.907938350732249}, {"serializer": "simdjson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.10.1", "avg_time_ser_ns": 21240.712765957447, "avg_time_deser_ns": 431626.52127659577, "avg_time_total_ns": 452867.2340425532, "median_size_bytes": 41431.0, "avg_ops_per_sec": 2208.1526876506946, "min_ops_per_sec": 1987.344589653089, "max_ops_per_sec": 2535.2719713007214, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 21240.712765957447, "ser_median_ns": 9940.5, "ser_std_ns": 15097.680433977332, "ser_mad_ns": 1967.5, "ser_cv": 0.7107897272719788, "ser_min_ns": 7452.0, "ser_max_ns": 66195.0, "ser_p5_ns": 8174.75, "ser_p25_ns": 8815.5, "ser_p50_ns": 9940.5, "ser_p75_ns": 35180.75, "ser_p95_ns": 42099.85, "ser_p99_ns": 61642.649999999965, "ser_ci_low_ns": 18269.665957446807, "ser_ci_high_ns": 24493.5414893617, "deser_mean_ns": 431626.52127659577, "deser_median_ns": 433276.5, "deser_std_ns": 21308.227597045687, "deser_mad_ns": 13763.0, "deser_cv": 0.04936728061571292, "deser_min_ns": 383324.0, "deser_max_ns": 476883.0, "deser_p5_ns": 387783.0, "deser_p25_ns": 420939.25, "deser_p50_ns": 433276.5, "deser_p75_ns": 447321.0, "deser_p95_ns": 462647.2, "deser_p99_ns": 473959.07999999996, "deser_ci_low_ns": 427269.6473404255, "deser_ci_high_ns": 435802.3340425532, "total_mean_ns": 452867.2340425532, "total_median_ns": 451997.0, "total_std_ns": 24387.926011193136, "total_mad_ns": 16469.5, "total_cv": 0.05385226436784241, "total_min_ns": 394435.0, "total_max_ns": 503184.0, "total_p5_ns": 413973.5, "total_p25_ns": 435684.0, "total_p50_ns": 451997.0, "total_p75_ns": 468429.25, "total_p95_ns": 492544.35, "total_p99_ns": 497390.1, "total_ci_low_ns": 447911.5215425532, "total_ci_high_ns": 457683.339893617, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.438062748573714}, {"serializer": "flatbuffers", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "flatbuffers", "avg_time_ser_ns": 19139.623529411765, "avg_time_deser_ns": 70318.21176470588, "avg_time_total_ns": 89457.83529411764, "median_size_bytes": 37356.0, "avg_ops_per_sec": 11178.450682516746, "min_ops_per_sec": 7835.8852199532985, "max_ops_per_sec": 14931.167318660973, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 19139.623529411765, "ser_median_ns": 12790.0, "ser_std_ns": 14839.275738789302, "ser_mad_ns": 8812.0, "ser_cv": 0.7753170126876247, "ser_min_ns": 3710.0, "ser_max_ns": 58544.0, "ser_p5_ns": 3986.6, "ser_p25_ns": 5107.0, "ser_p50_ns": 12790.0, "ser_p75_ns": 31908.0, "ser_p95_ns": 40055.8, "ser_p99_ns": 54636.319999999985, "ser_ci_low_ns": 16038.844117647059, "ser_ci_high_ns": 22360.50176470588, "deser_mean_ns": 70318.21176470588, "deser_median_ns": 70433.0, "deser_std_ns": 3270.7007480344755, "deser_mad_ns": 1756.0, "deser_cv": 0.046512854436325496, "deser_min_ns": 62533.0, "deser_max_ns": 77979.0, "deser_p5_ns": 63586.0, "deser_p25_ns": 68587.0, "deser_p50_ns": 70433.0, "deser_p75_ns": 72118.0, "deser_p95_ns": 75761.4, "deser_p99_ns": 77736.24, "deser_ci_low_ns": 69648.6405882353, "deser_ci_high_ns": 71001.11676470589, "total_mean_ns": 89457.83529411764, "total_median_ns": 84226.0, "total_std_ns": 15776.515951495345, "total_mad_ns": 12759.0, "total_cv": 0.17635700550572947, "total_min_ns": 66974.0, "total_max_ns": 127618.0, "total_p5_ns": 70422.6, "total_p25_ns": 75784.0, "total_p50_ns": 84226.0, "total_p75_ns": 102913.0, "total_p95_ns": 112327.2, "total_p99_ns": 127515.52, "total_ci_low_ns": 86242.47852941178, "total_ci_high_ns": 92909.02058823529, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "jsoncons_msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 203483.1847826087, "avg_time_deser_ns": 874406.7282608695, "avg_time_total_ns": 1077889.9130434783, "median_size_bytes": 34833.0, "avg_ops_per_sec": 927.7385268189846, "min_ops_per_sec": 848.4074120265144, "max_ops_per_sec": 1039.178051728205, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 203483.1847826087, "ser_median_ns": 202937.0, "ser_std_ns": 22838.30119638737, "ser_mad_ns": 17024.5, "ser_cv": 0.11223679844006114, "ser_min_ns": 161366.0, "ser_max_ns": 260805.0, "ser_p5_ns": 174867.1, "ser_p25_ns": 182771.25, "ser_p50_ns": 202937.0, "ser_p75_ns": 217875.0, "ser_p95_ns": 248243.30000000002, "ser_p99_ns": 257725.56, "ser_ci_low_ns": 198860.48967391305, "ser_ci_high_ns": 208256.05163043478, "deser_mean_ns": 874406.7282608695, "deser_median_ns": 874697.0, "deser_std_ns": 31553.22191977791, "deser_mad_ns": 19419.5, "deser_cv": 0.03608529177552755, "deser_min_ns": 798692.0, "deser_max_ns": 951502.0, "deser_p5_ns": 817713.1, "deser_p25_ns": 855518.25, "deser_p50_ns": 874697.0, "deser_p75_ns": 893981.0, "deser_p95_ns": 923662.35, "deser_p99_ns": 933540.42, "deser_ci_low_ns": 867938.0222826087, "deser_ci_high_ns": 880977.9019021739, "total_mean_ns": 1077889.9130434783, "total_median_ns": 1073086.5, "total_std_ns": 43221.81646254616, "total_mad_ns": 32310.5, "total_cv": 0.04009854433140311, "total_min_ns": 962299.0, "total_max_ns": 1178679.0, "total_p5_ns": 1011713.1, "total_p25_ns": 1045315.25, "total_p50_ns": 1073086.5, "total_p75_ns": 1109111.5, "total_p95_ns": 1151454.4, "total_p99_ns": 1170532.68, "total_ci_low_ns": 1069305.052173913, "total_ci_high_ns": 1086614.1543478263, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.79800067137276}, {"serializer": "nlohmann_json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 204087.57777777777, "avg_time_deser_ns": 442736.02222222224, "avg_time_total_ns": 646823.6, "median_size_bytes": 41431.0, "avg_ops_per_sec": 1546.0165646398802, "min_ops_per_sec": 1359.4677411899693, "max_ops_per_sec": 1794.3463734465447, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 204087.57777777777, "ser_median_ns": 202377.0, "ser_std_ns": 12882.079780073354, "ser_mad_ns": 7040.0, "ser_cv": 0.0631203521563674, "ser_min_ns": 176431.0, "ser_max_ns": 237438.0, "ser_p5_ns": 182907.6, "ser_p25_ns": 196502.5, "ser_p50_ns": 202377.0, "ser_p75_ns": 212349.0, "ser_p95_ns": 229931.95, "ser_p99_ns": 236569.36, "ser_ci_low_ns": 201542.91444444444, "ser_ci_high_ns": 206786.1797222222, "deser_mean_ns": 442736.02222222224, "deser_median_ns": 437020.0, "deser_std_ns": 28507.317734294033, "deser_mad_ns": 15907.0, "deser_cv": 0.06438897289451946, "deser_min_ns": 373998.0, "deser_max_ns": 510376.0, "deser_p5_ns": 396683.1, "deser_p25_ns": 426234.5, "deser_p50_ns": 437020.0, "deser_p75_ns": 460632.0, "deser_p95_ns": 495633.89999999997, "deser_p99_ns": 506340.74, "deser_ci_low_ns": 436708.1786111111, "deser_ci_high_ns": 448787.5130555556, "total_mean_ns": 646823.6, "total_median_ns": 643580.5, "total_std_ns": 34768.04443667435, "total_mad_ns": 18211.0, "total_cv": 0.05375197261923397, "total_min_ns": 557306.0, "total_max_ns": 735582.0, "total_p5_ns": 588665.1, "total_p25_ns": 627825.5, "total_p50_ns": 643580.5, "total_p75_ns": 668515.5, "total_p95_ns": 703955.55, "total_p99_ns": 721829.72, "total_ci_low_ns": 639527.8941666667, "total_ci_high_ns": 654308.2047222222, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.362701292451586}, {"serializer": "rapidjson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "1.1.0", "avg_time_ser_ns": 302794.376344086, "avg_time_deser_ns": 940578.4516129033, "avg_time_total_ns": 1243372.8279569892, "median_size_bytes": 41431.0, "avg_ops_per_sec": 804.2639966993006, "min_ops_per_sec": 734.4095861014455, "max_ops_per_sec": 909.4406303514897, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 302794.376344086, "ser_median_ns": 304306.0, "ser_std_ns": 16358.843517055882, "ser_mad_ns": 9598.0, "ser_cv": 0.05402624617594022, "ser_min_ns": 269035.0, "ser_max_ns": 341082.0, "ser_p5_ns": 273332.4, "ser_p25_ns": 294305.0, "ser_p50_ns": 304306.0, "ser_p75_ns": 313048.0, "ser_p95_ns": 328962.2, "ser_p99_ns": 337910.76, "ser_ci_low_ns": 299460.22500000003, "ser_ci_high_ns": 306261.4650537635, "deser_mean_ns": 940578.4516129033, "deser_median_ns": 950584.0, "deser_std_ns": 53639.85289419817, "deser_mad_ns": 34452.0, "deser_cv": 0.057028579383481076, "deser_min_ns": 819628.0, "deser_max_ns": 1066452.0, "deser_p5_ns": 847268.2, "deser_p25_ns": 905932.0, "deser_p50_ns": 950584.0, "deser_p75_ns": 978185.0, "deser_p95_ns": 1023238.7999999999, "deser_p99_ns": 1056035.76, "deser_ci_low_ns": 929686.5271505377, "deser_ci_high_ns": 951505.5056451613, "total_mean_ns": 1243372.8279569892, "total_median_ns": 1253507.0, "total_std_ns": 61865.797388313185, "total_mad_ns": 37780.0, "total_cv": 0.049756433466513914, "total_min_ns": 1099577.0, "total_max_ns": 1361638.0, "total_p5_ns": 1121356.2, "total_p25_ns": 1211664.0, "total_p50_ns": 1253507.0, "total_p75_ns": 1284328.0, "total_p95_ns": 1332636.0, "total_p99_ns": 1361198.24, "total_ci_low_ns": 1230992.9470430107, "total_ci_high_ns": 1255048.3075268816, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.95762354611519}, {"serializer": "cista", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "0.15", "avg_time_ser_ns": 32562.44578313253, "avg_time_deser_ns": 115298.38554216867, "avg_time_total_ns": 147860.8313253012, "median_size_bytes": 57112.0, "avg_ops_per_sec": 6763.116310363156, "min_ops_per_sec": 5151.532323289563, "max_ops_per_sec": 8103.9247307471005, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 32562.44578313253, "ser_median_ns": 23887.0, "ser_std_ns": 15272.32872115928, "ser_mad_ns": 4741.0, "ser_cv": 0.4690166341580645, "ser_min_ns": 17004.0, "ser_max_ns": 77967.0, "ser_p5_ns": 18881.6, "ser_p25_ns": 20183.5, "ser_p50_ns": 23887.0, "ser_p75_ns": 46412.5, "ser_p95_ns": 53915.099999999984, "ser_p99_ns": 75162.59999999998, "ser_ci_low_ns": 29530.338253012047, "ser_ci_high_ns": 35871.931626506026, "deser_mean_ns": 115298.38554216867, "deser_median_ns": 115582.0, "deser_std_ns": 3888.9018759495625, "deser_mad_ns": 1988.0, "deser_cv": 0.03372902281036064, "deser_min_ns": 105944.0, "deser_max_ns": 124318.0, "deser_p5_ns": 107418.5, "deser_p25_ns": 113459.5, "deser_p50_ns": 115582.0, "deser_p75_ns": 117525.0, "deser_p95_ns": 121682.99999999999, "deser_p99_ns": 123658.72, "deser_ci_low_ns": 114457.97771084338, "deser_ci_high_ns": 116156.84939759037, "total_mean_ns": 147860.8313253012, "total_median_ns": 141567.0, "total_std_ns": 15774.529057033744, "total_mad_ns": 7795.0, "total_cv": 0.10668497475392244, "total_min_ns": 123397.0, "total_max_ns": 194117.0, "total_p5_ns": 128990.40000000001, "total_p25_ns": 135664.0, "total_p50_ns": 141567.0, "total_p75_ns": 162382.5, "total_p95_ns": 171852.3, "total_p99_ns": 189347.05999999997, "total_ci_low_ns": 144801.8861445783, "total_ci_high_ns": 151314.16656626508, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 0.9974486180014175, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.685373009908728}, {"serializer": "bitsery", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "5.2.4", "avg_time_ser_ns": 38630.90425531915, "avg_time_deser_ns": 53491.36170212766, "avg_time_total_ns": 92122.26595744681, "median_size_bytes": 33931.0, "avg_ops_per_sec": 10855.138978690784, "min_ops_per_sec": 6916.107614634484, "max_ops_per_sec": 14507.471347744087, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 38630.90425531915, "ser_median_ns": 28771.5, "ser_std_ns": 16321.6618422209, "ser_mad_ns": 4879.5, "ser_cv": 0.4225027127076257, "ser_min_ns": 21896.0, "ser_max_ns": 92628.0, "ser_p5_ns": 23480.9, "ser_p25_ns": 25761.5, "ser_p50_ns": 28771.5, "ser_p75_ns": 53361.75, "ser_p95_ns": 61281.99999999999, "ser_p99_ns": 79434.08999999991, "ser_ci_low_ns": 35414.43138297872, "ser_ci_high_ns": 42014.213563829784, "deser_mean_ns": 53491.36170212766, "deser_median_ns": 54036.0, "deser_std_ns": 2833.3477628388946, "deser_mad_ns": 1786.5, "deser_cv": 0.05296832371956977, "deser_min_ns": 47034.0, "deser_max_ns": 60789.0, "deser_p5_ns": 48559.5, "deser_p25_ns": 51837.25, "deser_p50_ns": 54036.0, "deser_p75_ns": 55517.25, "deser_p95_ns": 57656.55, "deser_p99_ns": 58591.40999999998, "deser_ci_low_ns": 52910.85319148936, "deser_ci_high_ns": 54020.80186170213, "total_mean_ns": 92122.26595744681, "total_median_ns": 83977.5, "total_std_ns": 17125.259105912388, "total_mad_ns": 9105.5, "total_cv": 0.18589706764076885, "total_min_ns": 68930.0, "total_max_ns": 144590.0, "total_p5_ns": 73292.6, "total_p25_ns": 78647.75, "total_p50_ns": 83977.5, "total_p75_ns": 108602.75, "total_p95_ns": 118513.64999999998, "total_p99_ns": 130637.2099999999, "total_ci_low_ns": 88791.88989361702, "total_ci_high_ns": 95723.4734042553, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 0.14818523153942428, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.16080586914263545}, {"serializer": "msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "msgpack-cxx", "avg_time_ser_ns": 46605.09782608696, "avg_time_deser_ns": 80372.67391304347, "avg_time_total_ns": 126977.77173913043, "median_size_bytes": 34833.0, "avg_ops_per_sec": 7875.394144216443, "min_ops_per_sec": 6084.871791751348, "max_ops_per_sec": 10143.73674974387, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 46605.09782608696, "ser_median_ns": 45993.0, "ser_std_ns": 3105.449945491195, "ser_mad_ns": 1881.0, "ser_cv": 0.06663326739661805, "ser_min_ns": 39969.0, "ser_max_ns": 54581.0, "ser_p5_ns": 41626.15, "ser_p25_ns": 45067.25, "ser_p50_ns": 45993.0, "ser_p75_ns": 48894.5, "ser_p95_ns": 52082.6, "ser_p99_ns": 53653.71000000001, "ser_ci_low_ns": 45970.476358695654, "ser_ci_high_ns": 47234.024456521736, "deser_mean_ns": 80372.67391304347, "deser_median_ns": 73549.5, "deser_std_ns": 15761.389896672068, "deser_mad_ns": 10944.5, "deser_cv": 0.19610383889584881, "deser_min_ns": 58327.0, "deser_max_ns": 116381.0, "deser_p5_ns": 61299.45, "deser_p25_ns": 67336.75, "deser_p50_ns": 73549.5, "deser_p75_ns": 95079.25, "deser_p95_ns": 105440.75000000001, "deser_p99_ns": 114650.18000000001, "deser_ci_low_ns": 77350.29782608696, "deser_ci_high_ns": 83600.75190217391, "total_mean_ns": 126977.77173913043, "total_median_ns": 123752.5, "total_std_ns": 16336.217313446818, "total_mad_ns": 13821.0, "total_cv": 0.12865415016896634, "total_min_ns": 98583.0, "total_max_ns": 164342.0, "total_p5_ns": 102787.15, "total_p25_ns": 113670.25, "total_p50_ns": 123752.5, "total_p75_ns": 140715.25, "total_p95_ns": 152737.35, "total_p99_ns": 158832.86000000002, "total_ci_low_ns": 123799.89157608696, "total_ci_high_ns": 130264.35298913044, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 0.9033248081841432, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.3247617538012872}, {"serializer": "capnproto", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "1.0.x", "avg_time_ser_ns": 53496.10526315789, "avg_time_deser_ns": 77136.44210526315, "avg_time_total_ns": 130632.54736842106, "median_size_bytes": 71584.0, "avg_ops_per_sec": 7655.060091415921, "min_ops_per_sec": 5978.286862116792, "max_ops_per_sec": 9602.273818440206, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 53496.10526315789, "ser_median_ns": 47298.0, "ser_std_ns": 15005.18665752278, "ser_mad_ns": 10167.0, "ser_cv": 0.28049119807337947, "ser_min_ns": 35704.0, "ser_max_ns": 84541.0, "ser_p5_ns": 36110.3, "ser_p25_ns": 40231.5, "ser_p50_ns": 47298.0, "ser_p75_ns": 67626.5, "ser_p95_ns": 77674.09999999999, "ser_p99_ns": 81798.08, "ser_ci_low_ns": 50484.95105263158, "ser_ci_high_ns": 56440.56868421053, "deser_mean_ns": 77136.44210526315, "deser_median_ns": 77321.0, "deser_std_ns": 4329.705384591106, "deser_mad_ns": 2401.0, "deser_cv": 0.056130478233396286, "deser_min_ns": 67211.0, "deser_max_ns": 87134.0, "deser_p5_ns": 69500.3, "deser_p25_ns": 74177.5, "deser_p50_ns": 77321.0, "deser_p75_ns": 79687.5, "deser_p95_ns": 85019.3, "deser_p99_ns": 86645.2, "deser_ci_low_ns": 76281.73447368422, "deser_ci_high_ns": 77991.25236842105, "total_mean_ns": 130632.54736842106, "total_median_ns": 127138.0, "total_std_ns": 15890.592549352616, "total_mad_ns": 11834.0, "total_cv": 0.12164344085350039, "total_min_ns": 104142.0, "total_max_ns": 167272.0, "total_p5_ns": 110150.4, "total_p25_ns": 116621.0, "total_p50_ns": 127138.0, "total_p75_ns": 144347.5, "total_p95_ns": 156959.7, "total_p99_ns": 163151.04, "total_ci_low_ns": 127451.3802631579, "total_ci_high_ns": 134013.72157894738, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 0.9479876160990712, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.5889586962537585}, {"serializer": "nlohmann_bson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 281280.847826087, "avg_time_deser_ns": 673643.5, "avg_time_total_ns": 954924.3478260869, "median_size_bytes": 60537.0, "avg_ops_per_sec": 1047.2033750909475, "min_ops_per_sec": 942.4191333702133, "max_ops_per_sec": 1176.084555775222, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 281280.847826087, "ser_median_ns": 280247.0, "ser_std_ns": 15942.097573140543, "ser_mad_ns": 9066.5, "ser_cv": 0.056676797216557655, "ser_min_ns": 247682.0, "ser_max_ns": 320729.0, "ser_p5_ns": 252759.2, "ser_p25_ns": 271519.25, "ser_p50_ns": 280247.0, "ser_p75_ns": 290896.75, "ser_p95_ns": 307716.8, "ser_p99_ns": 320143.87, "ser_ci_low_ns": 278065.40135869564, "ser_ci_high_ns": 284350.93641304347, "deser_mean_ns": 673643.5, "deser_median_ns": 671339.5, "deser_std_ns": 33944.62672800066, "deser_mad_ns": 21831.5, "deser_cv": 0.050389600327177, "deser_min_ns": 594324.0, "deser_max_ns": 759413.0, "deser_p5_ns": 614982.95, "deser_p25_ns": 652542.25, "deser_p50_ns": 671339.5, "deser_p75_ns": 696353.25, "deser_p95_ns": 732979.05, "deser_p99_ns": 742062.9400000001, "deser_ci_low_ns": 666692.0907608696, "deser_ci_high_ns": 680686.3826086957, "total_mean_ns": 954924.3478260869, "total_median_ns": 950966.0, "total_std_ns": 40558.72300112619, "total_mad_ns": 27600.5, "total_cv": 0.04247323161615819, "total_min_ns": 850279.0, "total_max_ns": 1061099.0, "total_p5_ns": 886913.05, "total_p25_ns": 932094.75, "total_p50_ns": 950966.0, "total_p75_ns": 984953.25, "total_p95_ns": 1021666.15, "total_p99_ns": 1034000.1100000001, "total_ci_low_ns": 946785.0442934782, "total_ci_high_ns": 964180.3361413043, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.599901958190376}, {"serializer": "cereal", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "1.3.2", "avg_time_ser_ns": 53556.945054945056, "avg_time_deser_ns": 97661.61538461539, "avg_time_total_ns": 151218.56043956045, "median_size_bytes": 57038.0, "avg_ops_per_sec": 6612.944846804592, "min_ops_per_sec": 5260.832053197534, "max_ops_per_sec": 8586.786652698827, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 53556.945054945056, "ser_median_ns": 53488.0, "ser_std_ns": 3268.9314338434383, "ser_mad_ns": 1517.0, "ser_cv": 0.061036555212209756, "ser_min_ns": 46517.0, "ser_max_ns": 61717.0, "ser_p5_ns": 47657.5, "ser_p25_ns": 52116.5, "ser_p50_ns": 53488.0, "ser_p75_ns": 55402.5, "ser_p95_ns": 59082.5, "ser_p99_ns": 60326.49999999999, "ser_ci_low_ns": 52881.94835164835, "ser_ci_high_ns": 54213.92087912088, "deser_mean_ns": 97661.61538461539, "deser_median_ns": 96431.0, "deser_std_ns": 17089.919828671733, "deser_mad_ns": 14682.0, "deser_cv": 0.17499116476178936, "deser_min_ns": 69941.0, "deser_max_ns": 140849.0, "deser_p5_ns": 75997.0, "deser_p25_ns": 82154.0, "deser_p50_ns": 96431.0, "deser_p75_ns": 112055.5, "deser_p95_ns": 123337.5, "deser_p99_ns": 128293.99999999993, "deser_ci_low_ns": 94073.08846153846, "deser_ci_high_ns": 101080.27857142857, "total_mean_ns": 151218.56043956045, "total_median_ns": 149110.0, "total_std_ns": 17733.49002575434, "total_mad_ns": 14136.0, "total_cv": 0.1172705914816728, "total_min_ns": 116458.0, "total_max_ns": 190084.0, "total_p5_ns": 125476.0, "total_p25_ns": 135840.5, "total_p50_ns": 149110.0, "total_p75_ns": 167210.0, "total_p95_ns": 178964.0, "total_p99_ns": 183443.79999999996, "total_ci_low_ns": 147589.30000000002, "total_ci_high_ns": 154854.26043956046, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 0.9956043956043956, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.6566212889160394}, {"serializer": "avro_c", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "avro-c", "avg_time_ser_ns": 232178.77906976745, "avg_time_deser_ns": 269661.18604651163, "avg_time_total_ns": 501839.9651162791, "median_size_bytes": 34033.0, "avg_ops_per_sec": 1992.6671240069422, "min_ops_per_sec": 1775.152130537587, "max_ops_per_sec": 2220.0465765771764, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 232178.77906976745, "ser_median_ns": 228664.5, "ser_std_ns": 20810.504385668068, "ser_mad_ns": 15803.5, "ser_cv": 0.08963138004707448, "ser_min_ns": 187781.0, "ser_max_ns": 271968.0, "ser_p5_ns": 203709.25, "ser_p25_ns": 215579.25, "ser_p50_ns": 228664.5, "ser_p75_ns": 250671.25, "ser_p95_ns": 267931.25, "ser_p99_ns": 271364.5, "ser_ci_low_ns": 227966.10494186048, "ser_ci_high_ns": 236354.28924418605, "deser_mean_ns": 269661.18604651163, "deser_median_ns": 269678.5, "deser_std_ns": 12178.539540096152, "deser_mad_ns": 6090.0, "deser_cv": 0.04516237475123904, "deser_min_ns": 244646.0, "deser_max_ns": 297887.0, "deser_p5_ns": 249162.5, "deser_p25_ns": 264107.25, "deser_p50_ns": 269678.5, "deser_p75_ns": 276365.25, "deser_p95_ns": 293276.25, "deser_p99_ns": 297232.5, "deser_ci_low_ns": 267165.58720930235, "deser_ci_high_ns": 272268.06540697673, "total_mean_ns": 501839.9651162791, "total_median_ns": 495647.0, "total_std_ns": 26537.98617407205, "total_mad_ns": 17802.5, "total_cv": 0.05288137258642415, "total_min_ns": 450441.0, "total_max_ns": 563332.0, "total_p5_ns": 461882.0, "total_p25_ns": 482637.5, "total_p50_ns": 495647.0, "total_p75_ns": 523807.25, "total_p95_ns": 547807.25, "total_p99_ns": 562516.85, "total_ci_low_ns": 496257.4502906976, "total_ci_high_ns": 507508.47877906973, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.77948712457156}, {"serializer": "jsoncons_cbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 206032.23711340205, "avg_time_deser_ns": 872375.6597938144, "avg_time_total_ns": 1078407.8969072164, "median_size_bytes": 34732.0, "avg_ops_per_sec": 927.2929128838135, "min_ops_per_sec": 832.6020312159153, "max_ops_per_sec": 1054.8100392600297, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 206032.23711340205, "ser_median_ns": 201823.0, "ser_std_ns": 25293.369070014014, "ser_mad_ns": 16881.0, "ser_cv": 0.12276413353747312, "ser_min_ns": 163321.0, "ser_max_ns": 277377.0, "ser_p5_ns": 169265.0, "ser_p25_ns": 187391.0, "ser_p50_ns": 201823.0, "ser_p75_ns": 221263.0, "ser_p95_ns": 249322.99999999994, "ser_p99_ns": 268468.19999999995, "ser_ci_low_ns": 201216.09793814435, "ser_ci_high_ns": 211062.81804123713, "deser_mean_ns": 872375.6597938144, "deser_median_ns": 879623.0, "deser_std_ns": 48616.5997979528, "deser_mad_ns": 33183.0, "deser_cv": 0.055728973237794494, "deser_min_ns": 768439.0, "deser_max_ns": 978471.0, "deser_p5_ns": 789609.2, "deser_p25_ns": 835789.0, "deser_p50_ns": 879623.0, "deser_p75_ns": 906328.0, "deser_p95_ns": 947289.0, "deser_p99_ns": 965599.32, "deser_ci_low_ns": 862222.5628865979, "deser_ci_high_ns": 882151.868814433, "total_mean_ns": 1078407.8969072164, "total_median_ns": 1090635.0, "total_std_ns": 57477.03456027831, "total_mad_ns": 38418.0, "total_cv": 0.0532980468013241, "total_min_ns": 948038.0, "total_max_ns": 1201054.0, "total_p5_ns": 984499.8, "total_p25_ns": 1035831.0, "total_p50_ns": 1090635.0, "total_p75_ns": 1113091.0, "total_p95_ns": 1168030.5999999999, "total_p99_ns": 1200171.76, "total_ci_low_ns": 1067512.2100515463, "total_ci_high_ns": 1089724.7329896907, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.724886252715365}, {"serializer": "jsoncons_bson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 319906.55056179775, "avg_time_deser_ns": 961773.1685393258, "avg_time_total_ns": 1281679.7191011235, "median_size_bytes": 60537.0, "avg_ops_per_sec": 780.2261244340567, "min_ops_per_sec": 721.3362609967713, "max_ops_per_sec": 847.8463431115453, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 319906.55056179775, "ser_median_ns": 314859.0, "ser_std_ns": 22162.558518105197, "ser_mad_ns": 14749.0, "ser_cv": 0.06927822665458036, "ser_min_ns": 269832.0, "ser_max_ns": 380855.0, "ser_p5_ns": 289456.4, "ser_p25_ns": 302990.0, "ser_p50_ns": 314859.0, "ser_p75_ns": 336927.0, "ser_p95_ns": 358527.8, "ser_p99_ns": 368577.24000000005, "ser_ci_low_ns": 315264.9744382023, "ser_ci_high_ns": 324362.4856741573, "deser_mean_ns": 961773.1685393258, "deser_median_ns": 959748.0, "deser_std_ns": 32556.102698138275, "deser_mad_ns": 18850.0, "deser_cv": 0.03385008416026226, "deser_min_ns": 878875.0, "deser_max_ns": 1048581.0, "deser_p5_ns": 900294.0, "deser_p25_ns": 942671.0, "deser_p50_ns": 959748.0, "deser_p75_ns": 984583.0, "deser_p95_ns": 1011366.6, "deser_p99_ns": 1030870.1200000001, "deser_ci_low_ns": 955182.738764045, "deser_ci_high_ns": 968584.174719101, "total_mean_ns": 1281679.7191011235, "total_median_ns": 1282692.0, "total_std_ns": 43788.36774916494, "total_mad_ns": 24991.0, "total_cv": 0.0341648284642242, "total_min_ns": 1179459.0, "total_max_ns": 1386316.0, "total_p5_ns": 1199914.2, "total_p25_ns": 1257701.0, "total_p50_ns": 1282692.0, "total_p75_ns": 1305316.0, "total_p95_ns": 1353582.0, "total_p99_ns": 1372955.84, "total_ci_low_ns": 1272837.2449438202, "total_ci_high_ns": 1290309.942977528, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 35.74827543696865}, {"serializer": "arduinojson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "7.2.1", "avg_time_ser_ns": 455080.76744186046, "avg_time_deser_ns": 10721616.476744186, "avg_time_total_ns": 11176697.244186046, "median_size_bytes": 41431.0, "avg_ops_per_sec": 89.47186974400557, "min_ops_per_sec": 86.44388693900295, "max_ops_per_sec": 93.32374960640709, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 455080.76744186046, "ser_median_ns": 452204.0, "ser_std_ns": 12702.693611221777, "ser_mad_ns": 6166.0, "ser_cv": 0.027913053066661687, "ser_min_ns": 424993.0, "ser_max_ns": 488013.0, "ser_p5_ns": 437752.75, "ser_p25_ns": 447420.75, "ser_p50_ns": 452204.0, "ser_p75_ns": 461073.5, "ser_p95_ns": 478384.5, "ser_p99_ns": 481820.75000000006, "ser_ci_low_ns": 452454.9290697674, "ser_ci_high_ns": 457826.69098837214, "deser_mean_ns": 10721616.476744186, "deser_median_ns": 10751743.5, "deser_std_ns": 180054.73631927968, "deser_mad_ns": 111691.5, "deser_cv": 0.016793618453880433, "deser_min_ns": 10269570.0, "deser_max_ns": 11095586.0, "deser_p5_ns": 10368007.25, "deser_p25_ns": 10609859.5, "deser_p50_ns": 10751743.5, "deser_p75_ns": 10847203.25, "deser_p95_ns": 10942805.75, "deser_p99_ns": 11063933.700000001, "deser_ci_low_ns": 10681162.930523256, "deser_ci_high_ns": 10760294.116569767, "total_mean_ns": 11176697.244186046, "total_median_ns": 11213340.0, "total_std_ns": 183901.97766565665, "total_mad_ns": 116702.5, "total_cv": 0.016454053791366656, "total_min_ns": 10715386.0, "total_max_ns": 11568198.0, "total_p5_ns": 10817564.25, "total_p25_ns": 11053793.5, "total_p50_ns": 11213340.0, "total_p75_ns": 11310310.5, "total_p95_ns": 11401467.25, "total_p99_ns": 11534173.35, "total_ci_low_ns": 11137908.958139535, "total_ci_high_ns": 11215387.23372093, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 84.32625878700009}, {"serializer": "yyjson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "0.10.0", "avg_time_ser_ns": 63362.84042553192, "avg_time_deser_ns": 469773.8085106383, "avg_time_total_ns": 533136.6489361703, "median_size_bytes": 41431.0, "avg_ops_per_sec": 1875.6917236798795, "min_ops_per_sec": 1635.6733821963494, "max_ops_per_sec": 2153.8262723728703, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 63362.84042553192, "ser_median_ns": 56175.5, "ser_std_ns": 17087.438241027496, "ser_mad_ns": 11337.5, "ser_cv": 0.2696760139897729, "ser_min_ns": 40477.0, "ser_max_ns": 106657.0, "ser_p5_ns": 45145.25, "ser_p25_ns": 48400.5, "ser_p50_ns": 56175.5, "ser_p75_ns": 75053.75, "ser_p95_ns": 96035.2, "ser_p99_ns": 104998.80999999998, "ser_ci_low_ns": 59976.63058510639, "ser_ci_high_ns": 66722.25851063829, "deser_mean_ns": 469773.8085106383, "deser_median_ns": 472991.0, "deser_std_ns": 28807.382701175233, "deser_mad_ns": 17198.0, "deser_cv": 0.06132181526361718, "deser_min_ns": 411748.0, "deser_max_ns": 538341.0, "deser_p5_ns": 422204.5, "deser_p25_ns": 448779.0, "deser_p50_ns": 472991.0, "deser_p75_ns": 486919.75, "deser_p95_ns": 521911.14999999997, "deser_p99_ns": 533882.58, "deser_ci_low_ns": 463876.44468085107, "deser_ci_high_ns": 475349.9013297872, "total_mean_ns": 533136.6489361703, "total_median_ns": 532400.5, "total_std_ns": 30256.418091987514, "total_mad_ns": 19040.5, "total_cv": 0.05675171300333915, "total_min_ns": 464290.0, "total_max_ns": 611369.0, "total_p5_ns": 482697.65, "total_p25_ns": 515044.25, "total_p50_ns": 532400.5, "total_p75_ns": 553874.75, "total_p95_ns": 583819.7, "total_p99_ns": 594399.2899999999, "total_ci_low_ns": 527039.120212766, "total_ci_high_ns": 539105.2002659574, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.04948039368834}, {"serializer": "thrift", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "TBinaryProtocol", "avg_time_ser_ns": 59302.44565217391, "avg_time_deser_ns": 49853.184782608696, "avg_time_total_ns": 109155.63043478261, "median_size_bytes": 44336.0, "avg_ops_per_sec": 9161.231500536032, "min_ops_per_sec": 6750.371270419873, "max_ops_per_sec": 12088.244182532488, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 59302.44565217391, "ser_median_ns": 53717.0, "ser_std_ns": 15456.589803693802, "ser_mad_ns": 11782.5, "ser_cv": 0.2606400062208428, "ser_min_ns": 38760.0, "ser_max_ns": 98594.0, "ser_p5_ns": 41651.85, "ser_p25_ns": 45117.75, "ser_p50_ns": 53717.0, "ser_p75_ns": 72957.75, "ser_p95_ns": 79377.15000000001, "ser_p99_ns": 97114.34000000001, "ser_ci_low_ns": 56022.105978260865, "ser_ci_high_ns": 62578.31141304348, "deser_mean_ns": 49853.184782608696, "deser_median_ns": 50284.0, "deser_std_ns": 2654.104095151084, "deser_mad_ns": 1390.0, "deser_cv": 0.05323840606622527, "deser_min_ns": 43783.0, "deser_max_ns": 54996.0, "deser_p5_ns": 44897.1, "deser_p25_ns": 48780.5, "deser_p50_ns": 50284.0, "deser_p75_ns": 51443.0, "deser_p95_ns": 53706.1, "deser_p99_ns": 54527.35, "deser_ci_low_ns": 49311.486684782605, "deser_ci_high_ns": 50366.30652173913, "total_mean_ns": 109155.63043478261, "total_median_ns": 104561.0, "total_std_ns": 16185.661262342152, "total_mad_ns": 14838.5, "total_cv": 0.1482805898135747, "total_min_ns": 82725.0, "total_max_ns": 148140.0, "total_p5_ns": 87798.85, "total_p25_ns": 95287.5, "total_p50_ns": 104561.0, "total_p75_ns": 123245.25, "total_p95_ns": 131662.7, "total_p99_ns": 145234.37000000002, "total_ci_low_ns": 105892.26086956522, "total_ci_high_ns": 112561.72581521739, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 0.5585677749360614, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.226550733809056}, {"serializer": "nlohmann_ubjson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 135376.010989011, "avg_time_deser_ns": 563880.6263736264, "avg_time_total_ns": 699256.6373626373, "median_size_bytes": 41332.0, "avg_ops_per_sec": 1430.0901079347152, "min_ops_per_sec": 1281.8014950932638, "max_ops_per_sec": 1634.0670294295471, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 135376.010989011, "ser_median_ns": 134975.0, "ser_std_ns": 8323.304917178171, "ser_mad_ns": 4678.0, "ser_cv": 0.06148286433003116, "ser_min_ns": 116830.0, "ser_max_ns": 156016.0, "ser_p5_ns": 119852.0, "ser_p25_ns": 130503.5, "ser_p50_ns": 134975.0, "ser_p75_ns": 139888.5, "ser_p95_ns": 148548.5, "ser_p99_ns": 155990.8, "ser_ci_low_ns": 133642.86868131868, "ser_ci_high_ns": 137044.64807692307, "deser_mean_ns": 563880.6263736264, "deser_median_ns": 560880.0, "deser_std_ns": 33053.76620687652, "deser_mad_ns": 19946.0, "deser_cv": 0.058618375345591583, "deser_min_ns": 493745.0, "deser_max_ns": 641110.0, "deser_p5_ns": 508067.5, "deser_p25_ns": 544328.0, "deser_p50_ns": 560880.0, "deser_p75_ns": 582942.5, "deser_p95_ns": 623489.0, "deser_p99_ns": 638084.2, "deser_ci_low_ns": 557351.6274725274, "deser_ci_high_ns": 570785.6332417582, "total_mean_ns": 699256.6373626373, "total_median_ns": 697917.0, "total_std_ns": 36678.92021629998, "total_mad_ns": 20300.0, "total_cv": 0.05245416097105724, "total_min_ns": 611970.0, "total_max_ns": 780152.0, "total_p5_ns": 644025.5, "total_p25_ns": 677000.0, "total_p50_ns": 697917.0, "total_p75_ns": 716587.5, "total_p95_ns": 762081.5, "total_p99_ns": 773294.8999999999, "total_ci_low_ns": 691483.6673076923, "total_ci_high_ns": 706715.6975274725, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.254755506594826}, {"serializer": "nlohmann_msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 84189.97468354431, "avg_time_deser_ns": 453243.2278481013, "avg_time_total_ns": 537433.2025316455, "median_size_bytes": 34833.0, "avg_ops_per_sec": 1860.696353127005, "min_ops_per_sec": 1722.5579296231733, "max_ops_per_sec": 2045.073418135711, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 84189.97468354431, "ser_median_ns": 83433.0, "ser_std_ns": 6079.322208286988, "ser_mad_ns": 3942.0, "ser_cv": 0.07220957401564876, "ser_min_ns": 70082.0, "ser_max_ns": 98017.0, "ser_p5_ns": 74662.2, "ser_p25_ns": 80781.0, "ser_p50_ns": 83433.0, "ser_p75_ns": 88073.0, "ser_p95_ns": 95213.4, "ser_p99_ns": 97884.4, "ser_ci_low_ns": 82888.83702531646, "ser_ci_high_ns": 85560.08892405062, "deser_mean_ns": 453243.2278481013, "deser_median_ns": 451708.0, "deser_std_ns": 19351.789721744062, "deser_mad_ns": 12150.0, "deser_cv": 0.04269625784288512, "deser_min_ns": 410924.0, "deser_max_ns": 503816.0, "deser_p5_ns": 417512.8, "deser_p25_ns": 443269.0, "deser_p50_ns": 451708.0, "deser_p75_ns": 465136.5, "deser_p95_ns": 486171.8, "deser_p99_ns": 498510.44, "deser_ci_low_ns": 449187.9518987342, "deser_ci_high_ns": 457505.1977848101, "total_mean_ns": 537433.2025316455, "total_median_ns": 537219.0, "total_std_ns": 20708.89687870443, "total_mad_ns": 14724.0, "total_cv": 0.03853296889948855, "total_min_ns": 488980.0, "total_max_ns": 580532.0, "total_p5_ns": 504277.0, "total_p25_ns": 523325.0, "total_p50_ns": 537219.0, "total_p75_ns": 552848.5, "total_p95_ns": 572962.0, "total_p99_ns": 579187.28, "total_ci_low_ns": 533107.2759493671, "total_ci_high_ns": 541996.6012658228, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.34219800422581}, {"serializer": "zpp_bits", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "4.4.25", "avg_time_ser_ns": 48116.50515463918, "avg_time_deser_ns": 50350.845360824744, "avg_time_total_ns": 98467.35051546391, "median_size_bytes": 43838.0, "avg_ops_per_sec": 10155.650525429279, "min_ops_per_sec": 7383.343177790904, "max_ops_per_sec": 13543.528901890677, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 48116.50515463918, "ser_median_ns": 41035.0, "ser_std_ns": 15273.272812964613, "ser_mad_ns": 10848.0, "ser_cv": 0.3174227380787242, "ser_min_ns": 28214.0, "ser_max_ns": 87484.0, "ser_p5_ns": 31410.0, "ser_p25_ns": 34039.0, "ser_p50_ns": 41035.0, "ser_p75_ns": 61414.0, "ser_p95_ns": 68314.79999999997, "ser_p99_ns": 85389.27999999998, "ser_ci_low_ns": 45224.48969072165, "ser_ci_high_ns": 51178.27783505155, "deser_mean_ns": 50350.845360824744, "deser_median_ns": 50847.0, "deser_std_ns": 2885.1260852726978, "deser_mad_ns": 2209.0, "deser_cv": 0.05730044976598263, "deser_min_ns": 44296.0, "deser_max_ns": 57488.0, "deser_p5_ns": 45564.8, "deser_p25_ns": 48090.0, "deser_p50_ns": 50847.0, "deser_p75_ns": 51871.0, "deser_p95_ns": 54513.2, "deser_p99_ns": 56544.31999999999, "deser_ci_low_ns": 49800.86159793814, "deser_ci_high_ns": 50914.02139175258, "total_mean_ns": 98467.35051546391, "total_median_ns": 95455.0, "total_std_ns": 15436.82201213036, "total_mad_ns": 13160.0, "total_cv": 0.15677096957844994, "total_min_ns": 73836.0, "total_max_ns": 135440.0, "total_p5_ns": 77382.2, "total_p25_ns": 85377.0, "total_p50_ns": 95455.0, "total_p75_ns": 112168.0, "total_p95_ns": 120697.99999999999, "total_p99_ns": 133079.36, "total_ci_low_ns": 95413.96391752578, "total_ci_high_ns": 101452.8762886598, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 0.37343844754396605, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.5752609641525512}, {"serializer": "yas", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "7.x", "avg_time_ser_ns": 44102.886597938144, "avg_time_deser_ns": 49876.50515463918, "avg_time_total_ns": 93979.39175257731, "median_size_bytes": 57045.0, "avg_ops_per_sec": 10640.630688829455, "min_ops_per_sec": 7852.190368503294, "max_ops_per_sec": 13855.02105963201, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 44102.886597938144, "ser_median_ns": 35344.0, "ser_std_ns": 14824.030592866975, "ser_mad_ns": 5824.0, "ser_cv": 0.336123817200664, "ser_min_ns": 27772.0, "ser_max_ns": 80996.0, "ser_p5_ns": 28633.2, "ser_p25_ns": 32294.0, "ser_p50_ns": 35344.0, "ser_p75_ns": 59128.0, "ser_p95_ns": 68004.59999999999, "ser_p99_ns": 80700.31999999999, "ser_ci_low_ns": 41278.3368556701, "ser_ci_high_ns": 47073.12345360825, "deser_mean_ns": 49876.50515463918, "deser_median_ns": 50173.0, "deser_std_ns": 2960.3870915378593, "deser_mad_ns": 1823.0, "deser_cv": 0.0593543409338596, "deser_min_ns": 43736.0, "deser_max_ns": 57186.0, "deser_p5_ns": 44970.4, "deser_p25_ns": 47915.0, "deser_p50_ns": 50173.0, "deser_p75_ns": 51783.0, "deser_p95_ns": 54354.399999999994, "deser_p99_ns": 56855.759999999995, "deser_ci_low_ns": 49300.6262886598, "deser_ci_high_ns": 50470.6087628866, "total_mean_ns": 93979.39175257731, "total_median_ns": 87491.0, "total_std_ns": 15866.167177596208, "total_mad_ns": 10151.0, "total_cv": 0.16882602538402883, "total_min_ns": 72176.0, "total_max_ns": 127353.0, "total_p5_ns": 74584.8, "total_p25_ns": 81783.0, "total_p50_ns": 87491.0, "total_p75_ns": 110007.0, "total_p95_ns": 121167.79999999997, "total_p99_ns": 126347.87999999999, "total_ci_low_ns": 90893.16159793815, "total_ci_high_ns": 97113.27989690722, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 0.22243784111582776, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.2845411129352149}, {"serializer": "custom_binary", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "harness", "avg_time_ser_ns": 75269.375, "avg_time_deser_ns": 60492.708333333336, "avg_time_total_ns": 135762.08333333334, "median_size_bytes": 43834.0, "avg_ops_per_sec": 7365.826860101463, "min_ops_per_sec": 5774.30549540654, "max_ops_per_sec": 9164.222873900293, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 75269.375, "ser_median_ns": 68037.0, "ser_std_ns": 14667.754873764496, "ser_mad_ns": 8302.5, "ser_cv": 0.19487015633867685, "ser_min_ns": 56085.0, "ser_max_ns": 115951.0, "ser_p5_ns": 57384.25, "ser_p25_ns": 64082.5, "ser_p50_ns": 68037.0, "ser_p75_ns": 89301.0, "ser_p95_ns": 98041.5, "ser_p99_ns": 103927.79999999996, "ser_ci_low_ns": 72374.99010416667, "ser_ci_high_ns": 78095.25833333333, "deser_mean_ns": 60492.708333333336, "deser_median_ns": 61126.5, "deser_std_ns": 3415.6042076781628, "deser_mad_ns": 1991.0, "deser_cv": 0.05646307301794356, "deser_min_ns": 52774.0, "deser_max_ns": 67769.0, "deser_p5_ns": 54597.0, "deser_p25_ns": 58851.5, "deser_p50_ns": 61126.5, "deser_p75_ns": 62890.0, "deser_p95_ns": 65880.25, "deser_p99_ns": 67166.7, "deser_ci_low_ns": 59805.883593750004, "deser_ci_high_ns": 61160.684895833336, "total_mean_ns": 135762.08333333334, "total_median_ns": 130611.0, "total_std_ns": 15655.300996730964, "total_mad_ns": 9373.5, "total_cv": 0.11531423658469415, "total_min_ns": 109120.0, "total_max_ns": 173181.0, "total_p5_ns": 112127.25, "total_p25_ns": 125151.25, "total_p50_ns": 130611.0, "total_p75_ns": 149686.25, "total_p95_ns": 160576.5, "total_p99_ns": 169538.69999999998, "total_ci_low_ns": 132698.66796875, "total_ci_high_ns": 138986.87786458334, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 0.9715686274509804, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.9346412162370177}, {"serializer": "flexbuffers", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "flatbuffers-flex", "avg_time_ser_ns": 102725.02380952382, "avg_time_deser_ns": 243130.35714285713, "avg_time_total_ns": 345855.38095238095, "median_size_bytes": 48096.0, "avg_ops_per_sec": 2891.3819332412954, "min_ops_per_sec": 2578.3961344685154, "max_ops_per_sec": 3280.4309174053105, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 102725.02380952382, "ser_median_ns": 96484.5, "ser_std_ns": 13728.816827877126, "ser_mad_ns": 5478.5, "ser_cv": 0.13364627545215818, "ser_min_ns": 81757.0, "ser_max_ns": 140940.0, "ser_p5_ns": 88207.9, "ser_p25_ns": 93099.25, "ser_p50_ns": 96484.5, "ser_p75_ns": 114055.25, "ser_p95_ns": 127779.99999999997, "ser_p99_ns": 134972.30000000002, "ser_ci_low_ns": 99890.24732142857, "ser_ci_high_ns": 105864.49702380953, "deser_mean_ns": 243130.35714285713, "deser_median_ns": 244298.0, "deser_std_ns": 9155.76248414587, "deser_mad_ns": 5288.0, "deser_cv": 0.037657833401553306, "deser_min_ns": 219364.0, "deser_max_ns": 262855.0, "deser_p5_ns": 224667.65, "deser_p25_ns": 239405.75, "deser_p50_ns": 244298.0, "deser_p75_ns": 249673.5, "deser_p95_ns": 255067.0, "deser_p99_ns": 258116.53, "deser_ci_low_ns": 241320.01428571428, "deser_ci_high_ns": 245086.42529761905, "total_mean_ns": 345855.38095238095, "total_median_ns": 343094.0, "total_std_ns": 16684.38929485534, "total_mad_ns": 9580.5, "total_cv": 0.04824094177430921, "total_min_ns": 304838.0, "total_max_ns": 387838.0, "total_p5_ns": 316989.75, "total_p25_ns": 336647.75, "total_p50_ns": 343094.0, "total_p75_ns": 356665.25, "total_p95_ns": 373478.8, "total_p99_ns": 380607.04000000004, "total_ci_low_ns": 342390.6431547619, "total_ci_high_ns": 349288.8791666667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.722745172092852}, {"serializer": "nlohmann_cbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 85449.04651162791, "avg_time_deser_ns": 453944.27906976745, "avg_time_total_ns": 539393.3255813953, "median_size_bytes": 34732.0, "avg_ops_per_sec": 1853.934693986306, "min_ops_per_sec": 1677.8354580323016, "max_ops_per_sec": 2114.661157269465, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 85449.04651162791, "ser_median_ns": 85390.5, "ser_std_ns": 6401.40334964686, "ser_mad_ns": 4219.5, "ser_cv": 0.07491485991918888, "ser_min_ns": 71126.0, "ser_max_ns": 105975.0, "ser_p5_ns": 75909.25, "ser_p25_ns": 81097.75, "ser_p50_ns": 85390.5, "ser_p75_ns": 89252.75, "ser_p95_ns": 94167.5, "ser_p99_ns": 105203.20000000001, "ser_ci_low_ns": 84116.19186046511, "ser_ci_high_ns": 86800.91279069768, "deser_mean_ns": 453944.27906976745, "deser_median_ns": 456854.5, "deser_std_ns": 25193.93844355571, "deser_mad_ns": 14144.5, "deser_cv": 0.055500068191593206, "deser_min_ns": 392807.0, "deser_max_ns": 519141.0, "deser_p5_ns": 406814.5, "deser_p25_ns": 440063.75, "deser_p50_ns": 456854.5, "deser_p75_ns": 469032.25, "deser_p95_ns": 492496.25, "deser_p99_ns": 506928.20000000007, "deser_ci_low_ns": 448520.4427325581, "deser_ci_high_ns": 459066.3093023256, "total_mean_ns": 539393.3255813953, "total_median_ns": 541060.0, "total_std_ns": 28436.835392080447, "total_mad_ns": 18343.0, "total_cv": 0.05272003572055562, "total_min_ns": 472889.0, "total_max_ns": 596006.0, "total_p5_ns": 488078.5, "total_p25_ns": 523908.75, "total_p50_ns": 541060.0, "total_p75_ns": 559654.0, "total_p95_ns": 578120.0, "total_p99_ns": 593098.15, "total_ci_low_ns": 533102.0610465116, "total_ci_high_ns": 545229.0531976743, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.449159923112944}, {"serializer": "avro", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "binary-1.11", "avg_time_ser_ns": 61479.760416666664, "avg_time_deser_ns": 59951.572916666664, "avg_time_total_ns": 121431.33333333333, "median_size_bytes": 34033.0, "avg_ops_per_sec": 8235.106809335317, "min_ops_per_sec": 6239.782356391409, "max_ops_per_sec": 10526.759021432481, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 61479.760416666664, "ser_median_ns": 57303.0, "ser_std_ns": 15010.23911850265, "ser_mad_ns": 12250.0, "ser_cv": 0.2441492780188762, "ser_min_ns": 40413.0, "ser_max_ns": 101324.0, "ser_p5_ns": 43605.25, "ser_p25_ns": 48100.5, "ser_p50_ns": 57303.0, "ser_p75_ns": 73520.25, "ser_p95_ns": 84334.75, "ser_p99_ns": 98880.59999999999, "ser_ci_low_ns": 58499.157552083336, "ser_ci_high_ns": 64432.635937499996, "deser_mean_ns": 59951.572916666664, "deser_median_ns": 60377.0, "deser_std_ns": 3013.5554337894514, "deser_mad_ns": 1489.5, "deser_cv": 0.05026649489210777, "deser_min_ns": 53430.0, "deser_max_ns": 66453.0, "deser_p5_ns": 54563.5, "deser_p25_ns": 58328.75, "deser_p50_ns": 60377.0, "deser_p75_ns": 61782.5, "deser_p95_ns": 64391.25, "deser_p99_ns": 66012.2, "deser_ci_low_ns": 59335.35494791667, "deser_ci_high_ns": 60533.448958333334, "total_mean_ns": 121431.33333333333, "total_median_ns": 119115.5, "total_std_ns": 15528.876819564028, "total_mad_ns": 11800.5, "total_cv": 0.1278819592381211, "total_min_ns": 94996.0, "total_max_ns": 160262.0, "total_p5_ns": 98363.5, "total_p25_ns": 108927.0, "total_p50_ns": 119115.5, "total_p75_ns": 133538.0, "total_p95_ns": 146037.25, "total_p99_ns": 153869.44999999998, "total_ci_low_ns": 118602.55286458334, "total_ci_high_ns": 124556.14401041667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "flatbuffers", "effect_vs_fastest_cliffs_delta": 0.8457107843137255, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.0350381839566745}, {"serializer": "zpp_bits", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "4.4.25", "avg_time_ser_ns": 527.2857142857143, "avg_time_deser_ns": 370.9340659340659, "avg_time_total_ns": 898.2197802197802, "median_size_bytes": 161.0, "avg_ops_per_sec": 1113313.2692260637, "min_ops_per_sec": 940733.772342427, "max_ops_per_sec": 1349527.665317139, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 527.2857142857143, "ser_median_ns": 534.0, "ser_std_ns": 41.51928219093863, "ser_mad_ns": 27.0, "ser_cv": 0.07874152677772159, "ser_min_ns": 429.0, "ser_max_ns": 623.0, "ser_p5_ns": 462.0, "ser_p25_ns": 498.5, "ser_p50_ns": 534.0, "ser_p75_ns": 552.5, "ser_p95_ns": 589.0, "ser_p99_ns": 621.2, "ser_ci_low_ns": 518.5164835164835, "ser_ci_high_ns": 535.9123626373627, "deser_mean_ns": 370.9340659340659, "deser_median_ns": 369.0, "deser_std_ns": 35.40489677299901, "deser_mad_ns": 23.0, "deser_cv": 0.09544795160251547, "deser_min_ns": 283.0, "deser_max_ns": 470.0, "deser_p5_ns": 317.0, "deser_p25_ns": 347.0, "deser_p50_ns": 369.0, "deser_p75_ns": 395.5, "deser_p95_ns": 427.0, "deser_p99_ns": 448.39999999999986, "deser_ci_low_ns": 363.85412087912084, "deser_ci_high_ns": 378.02225274725276, "total_mean_ns": 898.2197802197802, "total_median_ns": 893.0, "total_std_ns": 67.27122584447102, "total_mad_ns": 42.0, "total_cv": 0.0748939483697529, "total_min_ns": 741.0, "total_max_ns": 1063.0, "total_p5_ns": 772.5, "total_p25_ns": 858.5, "total_p50_ns": 893.0, "total_p75_ns": 943.5, "total_p95_ns": 995.0, "total_p99_ns": 1044.1, "total_ci_low_ns": 884.9107142857143, "total_ci_high_ns": 911.6266483516483, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.7963369963369963, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.8174709512209184}, {"serializer": "jsoncons_msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 1645.4719101123596, "avg_time_deser_ns": 9070.977528089888, "avg_time_total_ns": 10716.449438202248, "median_size_bytes": 214.0, "avg_ops_per_sec": 93314.48869951056, "min_ops_per_sec": 83084.08109006315, "max_ops_per_sec": 104025.7983980027, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 1645.4719101123596, "ser_median_ns": 1640.0, "ser_std_ns": 102.77160134444203, "ser_mad_ns": 57.0, "ser_cv": 0.06245722015237827, "ser_min_ns": 1411.0, "ser_max_ns": 1902.0, "ser_p5_ns": 1472.0, "ser_p25_ns": 1587.0, "ser_p50_ns": 1640.0, "ser_p75_ns": 1698.0, "ser_p95_ns": 1842.6, "ser_p99_ns": 1871.2000000000003, "ser_ci_low_ns": 1624.9766853932583, "ser_ci_high_ns": 1666.685393258427, "deser_mean_ns": 9070.977528089888, "deser_median_ns": 9046.0, "deser_std_ns": 452.9286010742675, "deser_mad_ns": 307.0, "deser_cv": 0.04993161979198977, "deser_min_ns": 8202.0, "deser_max_ns": 10270.0, "deser_p5_ns": 8435.6, "deser_p25_ns": 8732.0, "deser_p50_ns": 9046.0, "deser_p75_ns": 9350.0, "deser_p95_ns": 9902.2, "deser_p99_ns": 10203.12, "deser_ci_low_ns": 8978.2047752809, "deser_ci_high_ns": 9169.693539325843, "total_mean_ns": 10716.449438202248, "total_median_ns": 10678.0, "total_std_ns": 472.96177558493406, "total_mad_ns": 320.0, "total_cv": 0.04413418626312078, "total_min_ns": 9613.0, "total_max_ns": 12036.0, "total_p5_ns": 10051.2, "total_p25_ns": 10359.0, "total_p50_ns": 10678.0, "total_p75_ns": 11002.0, "total_p95_ns": 11552.4, "total_p99_ns": 11860.0, "total_ci_low_ns": 10620.67893258427, "total_ci_high_ns": 10805.36797752809, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.45839097762185}, {"serializer": "nlohmann_msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 1232.3804347826087, "avg_time_deser_ns": 4358.228260869565, "avg_time_total_ns": 5590.608695652174, "median_size_bytes": 214.0, "avg_ops_per_sec": 178871.3992409631, "min_ops_per_sec": 156813.54869060687, "max_ops_per_sec": 207210.94073767096, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 1232.3804347826087, "ser_median_ns": 1227.0, "ser_std_ns": 74.3902454894774, "ser_mad_ns": 46.0, "ser_cv": 0.06036305299069422, "ser_min_ns": 1024.0, "ser_max_ns": 1394.0, "ser_p5_ns": 1121.55, "ser_p25_ns": 1189.5, "ser_p50_ns": 1227.0, "ser_p75_ns": 1277.5, "ser_p95_ns": 1360.75, "ser_p99_ns": 1388.54, "ser_ci_low_ns": 1218.1489130434784, "ser_ci_high_ns": 1247.3048913043478, "deser_mean_ns": 4358.228260869565, "deser_median_ns": 4384.5, "deser_std_ns": 293.3219400440886, "deser_mad_ns": 162.0, "deser_cv": 0.06730302372587622, "deser_min_ns": 3677.0, "deser_max_ns": 5080.0, "deser_p5_ns": 3803.95, "deser_p25_ns": 4237.0, "deser_p50_ns": 4384.5, "deser_p75_ns": 4556.5, "deser_p95_ns": 4765.2, "deser_p99_ns": 4967.160000000001, "deser_ci_low_ns": 4297.117663043478, "deser_ci_high_ns": 4418.385054347827, "total_mean_ns": 5590.608695652174, "total_median_ns": 5595.5, "total_std_ns": 328.50423438894484, "total_mad_ns": 191.0, "total_cv": 0.05876001206173187, "total_min_ns": 4826.0, "total_max_ns": 6377.0, "total_p5_ns": 4999.55, "total_p25_ns": 5447.5, "total_p50_ns": 5595.5, "total_p75_ns": 5796.0, "total_p95_ns": 6045.5, "total_p99_ns": 6294.1900000000005, "total_ci_low_ns": 5524.947554347827, "total_ci_high_ns": 5659.088043478261, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.219507517898418}, {"serializer": "jsoncons_cbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 1839.578947368421, "avg_time_deser_ns": 9424.01052631579, "avg_time_total_ns": 11263.589473684211, "median_size_bytes": 214.0, "avg_ops_per_sec": 88781.64481547903, "min_ops_per_sec": 78259.50853028643, "max_ops_per_sec": 97580.0156128025, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1839.578947368421, "ser_median_ns": 1830.0, "ser_std_ns": 167.94709013253717, "ser_mad_ns": 110.0, "ser_cv": 0.0912964841072959, "ser_min_ns": 1505.0, "ser_max_ns": 2264.0, "ser_p5_ns": 1592.9, "ser_p25_ns": 1728.5, "ser_p50_ns": 1830.0, "ser_p75_ns": 1955.5, "ser_p95_ns": 2128.3, "ser_p99_ns": 2264.0, "ser_ci_low_ns": 1805.9302631578948, "ser_ci_high_ns": 1872.6736842105263, "deser_mean_ns": 9424.01052631579, "deser_median_ns": 9377.0, "deser_std_ns": 525.0799431482111, "deser_mad_ns": 361.0, "deser_cv": 0.055717249220166694, "deser_min_ns": 8293.0, "deser_max_ns": 10739.0, "deser_p5_ns": 8720.5, "deser_p25_ns": 9043.0, "deser_p50_ns": 9377.0, "deser_p75_ns": 9747.5, "deser_p95_ns": 10424.0, "deser_p99_ns": 10728.66, "deser_ci_low_ns": 9318.795789473685, "deser_ci_high_ns": 9533.442631578948, "total_mean_ns": 11263.589473684211, "total_median_ns": 11187.0, "total_std_ns": 577.0324393465506, "total_mad_ns": 404.0, "total_cv": 0.0512298890770749, "total_min_ns": 10248.0, "total_max_ns": 12778.0, "total_p5_ns": 10471.4, "total_p25_ns": 10842.0, "total_p50_ns": 11187.0, "total_p75_ns": 11635.0, "total_p95_ns": 12178.7, "total_p99_ns": 12774.24, "total_ci_low_ns": 11149.050000000001, "total_ci_high_ns": 11376.870263157894, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.126502715233954}, {"serializer": "arduinojson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "7.2.1", "avg_time_ser_ns": 1579.0, "avg_time_deser_ns": 6756.715909090909, "avg_time_total_ns": 8335.71590909091, "median_size_bytes": 272.0, "avg_ops_per_sec": 119965.70071556813, "min_ops_per_sec": 108108.1081081081, "max_ops_per_sec": 130787.33978550877, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 1579.0, "ser_median_ns": 1567.5, "ser_std_ns": 57.147520335179635, "ser_mad_ns": 29.5, "ser_cv": 0.03619222313817583, "ser_min_ns": 1456.0, "ser_max_ns": 1740.0, "ser_p5_ns": 1489.4, "ser_p25_ns": 1546.0, "ser_p50_ns": 1567.5, "ser_p75_ns": 1612.25, "ser_p95_ns": 1681.95, "ser_p99_ns": 1725.21, "ser_ci_low_ns": 1567.51875, "ser_ci_high_ns": 1590.9457386363636, "deser_mean_ns": 6756.715909090909, "deser_median_ns": 6735.5, "deser_std_ns": 324.02326966472873, "deser_mad_ns": 215.0, "deser_cv": 0.047955733824588884, "deser_min_ns": 6085.0, "deser_max_ns": 7555.0, "deser_p5_ns": 6220.15, "deser_p25_ns": 6538.5, "deser_p50_ns": 6735.5, "deser_p75_ns": 6968.0, "deser_p95_ns": 7291.099999999999, "deser_p99_ns": 7504.54, "deser_ci_low_ns": 6690.176420454545, "deser_ci_high_ns": 6823.779261363636, "total_mean_ns": 8335.71590909091, "total_median_ns": 8321.0, "total_std_ns": 341.9191256417573, "total_mad_ns": 223.0, "total_cv": 0.0410185674956678, "total_min_ns": 7646.0, "total_max_ns": 9250.0, "total_p5_ns": 7782.7, "total_p25_ns": 8138.5, "total_p50_ns": 8321.0, "total_p75_ns": 8545.75, "total_p95_ns": 8881.3, "total_p99_ns": 9175.18, "total_ci_low_ns": 8264.163352272726, "total_ci_high_ns": 8404.40965909091, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.884023925860713}, {"serializer": "cista", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "0.15", "avg_time_ser_ns": 280.96774193548384, "avg_time_deser_ns": 755.7096774193549, "avg_time_total_ns": 1036.6774193548388, "median_size_bytes": 208.0, "avg_ops_per_sec": 964620.2196844758, "min_ops_per_sec": 830564.7840531562, "max_ops_per_sec": 1135073.7797956867, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 280.96774193548384, "ser_median_ns": 279.0, "ser_std_ns": 28.059119114788622, "ser_mad_ns": 20.0, "ser_cv": 0.09986598077594114, "ser_min_ns": 226.0, "ser_max_ns": 355.0, "ser_p5_ns": 238.0, "ser_p25_ns": 260.0, "ser_p50_ns": 279.0, "ser_p75_ns": 300.0, "ser_p95_ns": 324.4, "ser_p99_ns": 349.48, "ser_ci_low_ns": 275.3432795698925, "ser_ci_high_ns": 286.88440860215053, "deser_mean_ns": 755.7096774193549, "deser_median_ns": 761.0, "deser_std_ns": 51.12443911569896, "deser_mad_ns": 31.0, "deser_cv": 0.06765089907314926, "deser_min_ns": 624.0, "deser_max_ns": 855.0, "deser_p5_ns": 668.6, "deser_p25_ns": 727.0, "deser_p50_ns": 761.0, "deser_p75_ns": 789.0, "deser_p95_ns": 838.1999999999999, "deser_p99_ns": 846.72, "deser_ci_low_ns": 745.2029569892474, "deser_ci_high_ns": 765.8825268817204, "total_mean_ns": 1036.6774193548388, "total_median_ns": 1039.0, "total_std_ns": 68.96331118007645, "total_mad_ns": 41.0, "total_cv": 0.0665234043806942, "total_min_ns": 881.0, "total_max_ns": 1204.0, "total_p5_ns": 915.0, "total_p25_ns": 993.0, "total_p50_ns": 1039.0, "total_p75_ns": 1078.0, "total_p95_ns": 1150.1999999999998, "total_p99_ns": 1189.28, "total_ci_low_ns": 1023.1505376344086, "total_ci_high_ns": 1050.6903225806452, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.9968936678614098, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.019635488271652}, {"serializer": "yyjson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "0.10.0", "avg_time_ser_ns": 345.4047619047619, "avg_time_deser_ns": 4573.369047619048, "avg_time_total_ns": 4918.773809523809, "median_size_bytes": 272.0, "avg_ops_per_sec": 203302.70077956907, "min_ops_per_sec": 182581.70531312763, "max_ops_per_sec": 225073.14877335133, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 345.4047619047619, "ser_median_ns": 349.5, "ser_std_ns": 25.913256154349664, "ser_mad_ns": 16.5, "ser_cv": 0.07502286885522064, "ser_min_ns": 279.0, "ser_max_ns": 415.0, "ser_p5_ns": 303.45, "ser_p25_ns": 325.0, "ser_p50_ns": 349.5, "ser_p75_ns": 361.75, "ser_p95_ns": 382.0, "ser_p99_ns": 397.57000000000005, "ser_ci_low_ns": 339.78511904761905, "ser_ci_high_ns": 350.6431547619048, "deser_mean_ns": 4573.369047619048, "deser_median_ns": 4548.5, "deser_std_ns": 193.58574450664096, "deser_mad_ns": 126.0, "deser_cv": 0.0423289138687428, "deser_min_ns": 4129.0, "deser_max_ns": 5139.0, "deser_p5_ns": 4307.2, "deser_p25_ns": 4466.25, "deser_p50_ns": 4548.5, "deser_p75_ns": 4684.5, "deser_p95_ns": 4914.8, "deser_p99_ns": 5033.59, "deser_ci_low_ns": 4530.725892857143, "deser_ci_high_ns": 4615.1809523809525, "total_mean_ns": 4918.773809523809, "total_median_ns": 4901.0, "total_std_ns": 206.83887863608516, "total_mad_ns": 136.0, "total_cv": 0.04205090265293362, "total_min_ns": 4443.0, "total_max_ns": 5477.0, "total_p5_ns": 4602.15, "total_p25_ns": 4812.0, "total_p50_ns": 4901.0, "total_p75_ns": 5045.25, "total_p95_ns": 5283.55, "total_p99_ns": 5399.81, "total_ci_low_ns": 4875.645238095238, "total_ci_high_ns": 4962.3449404761905, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.659802539438207}, {"serializer": "avro", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "binary-1.11", "avg_time_ser_ns": 411.3296703296703, "avg_time_deser_ns": 496.74725274725273, "avg_time_total_ns": 908.0769230769231, "median_size_bytes": 120.0, "avg_ops_per_sec": 1101228.2930961456, "min_ops_per_sec": 896057.3476702509, "max_ops_per_sec": 1362397.8201634877, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 411.3296703296703, "ser_median_ns": 410.0, "ser_std_ns": 39.50641437231145, "ser_mad_ns": 24.0, "ser_cv": 0.09604562282280307, "ser_min_ns": 330.0, "ser_max_ns": 515.0, "ser_p5_ns": 346.0, "ser_p25_ns": 386.5, "ser_p50_ns": 410.0, "ser_p75_ns": 434.5, "ser_p95_ns": 480.5, "ser_p99_ns": 506.9, "ser_ci_low_ns": 402.9005494505495, "ser_ci_high_ns": 419.49478021978024, "deser_mean_ns": 496.74725274725273, "deser_median_ns": 503.0, "deser_std_ns": 51.03127437749291, "deser_mad_ns": 34.0, "deser_cv": 0.10273086382514501, "deser_min_ns": 368.0, "deser_max_ns": 641.0, "deser_p5_ns": 412.5, "deser_p25_ns": 464.5, "deser_p50_ns": 503.0, "deser_p75_ns": 534.5, "deser_p95_ns": 572.5, "deser_p99_ns": 604.9999999999998, "deser_ci_low_ns": 486.00796703296703, "deser_ci_high_ns": 507.52802197802197, "total_mean_ns": 908.0769230769231, "total_median_ns": 908.0, "total_std_ns": 79.80897064160015, "total_mad_ns": 51.0, "total_cv": 0.08788789651340974, "total_min_ns": 734.0, "total_max_ns": 1116.0, "total_p5_ns": 773.0, "total_p25_ns": 853.0, "total_p50_ns": 908.0, "total_p75_ns": 954.5, "total_p95_ns": 1039.5, "total_p99_ns": 1077.2999999999997, "total_ci_low_ns": 891.2195054945055, "total_ci_high_ns": 924.6706043956044, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.7903540903540903, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.769178403925946}, {"serializer": "flatbuffers", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "flatbuffers", "avg_time_ser_ns": 568.5555555555555, "avg_time_deser_ns": 622.6565656565657, "avg_time_total_ns": 1191.2121212121212, "median_size_bytes": 164.0, "avg_ops_per_sec": 839481.0480793691, "min_ops_per_sec": 548245.6140350878, "max_ops_per_sec": 1432664.7564469913, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 568.5555555555555, "ser_median_ns": 523.0, "ser_std_ns": 205.9746973871277, "ser_mad_ns": 145.0, "ser_cv": 0.3622771695298318, "ser_min_ns": 192.0, "ser_max_ns": 1118.0, "ser_p5_ns": 221.7, "ser_p25_ns": 444.5, "ser_p50_ns": 523.0, "ser_p75_ns": 718.0, "ser_p95_ns": 926.5999999999999, "ser_p99_ns": 1016.0799999999996, "ser_ci_low_ns": 528.9840909090909, "ser_ci_high_ns": 609.5578282828283, "deser_mean_ns": 622.6565656565657, "deser_median_ns": 642.0, "deser_std_ns": 76.25590129270311, "deser_mad_ns": 61.0, "deser_cv": 0.12246863760650208, "deser_min_ns": 450.0, "deser_max_ns": 777.0, "deser_p5_ns": 486.2, "deser_p25_ns": 564.5, "deser_p50_ns": 642.0, "deser_p75_ns": 678.5, "deser_p95_ns": 727.8, "deser_p99_ns": 750.5399999999998, "deser_ci_low_ns": 607.7469696969697, "deser_ci_high_ns": 637.3959595959595, "total_mean_ns": 1191.2121212121212, "total_median_ns": 1165.0, "total_std_ns": 221.749641544347, "total_mad_ns": 160.0, "total_cv": 0.18615462149487283, "total_min_ns": 698.0, "total_max_ns": 1824.0, "total_p5_ns": 858.9, "total_p25_ns": 1026.5, "total_p50_ns": 1165.0, "total_p75_ns": 1346.5, "total_p95_ns": 1524.3999999999996, "total_p99_ns": 1717.1799999999996, "total_ci_low_ns": 1147.0598484848485, "total_ci_high_ns": 1236.0780303030303, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.9382716049382716, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.4422658823814816}, {"serializer": "nlohmann_json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 1600.6022727272727, "avg_time_deser_ns": 3778.6477272727275, "avg_time_total_ns": 5379.25, "median_size_bytes": 272.0, "avg_ops_per_sec": 185899.52130873263, "min_ops_per_sec": 174764.06850751486, "max_ops_per_sec": 198059.02158843336, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 1600.6022727272727, "ser_median_ns": 1605.5, "ser_std_ns": 63.592911441291456, "ser_mad_ns": 36.5, "ser_cv": 0.03973061423493748, "ser_min_ns": 1444.0, "ser_max_ns": 1760.0, "ser_p5_ns": 1496.35, "ser_p25_ns": 1564.0, "ser_p50_ns": 1605.5, "ser_p75_ns": 1637.75, "ser_p95_ns": 1693.95, "ser_p99_ns": 1759.13, "ser_ci_low_ns": 1587.4193181818182, "ser_ci_high_ns": 1614.1963068181817, "deser_mean_ns": 3778.6477272727275, "deser_median_ns": 3764.0, "deser_std_ns": 113.64949542724462, "deser_mad_ns": 66.0, "deser_cv": 0.030076763866334837, "deser_min_ns": 3538.0, "deser_max_ns": 4069.0, "deser_p5_ns": 3597.1, "deser_p25_ns": 3707.75, "deser_p50_ns": 3764.0, "deser_p75_ns": 3853.75, "deser_p95_ns": 3976.15, "deser_p99_ns": 4065.52, "deser_ci_low_ns": 3754.0173295454547, "deser_ci_high_ns": 3804.0610795454545, "total_mean_ns": 5379.25, "total_median_ns": 5379.5, "total_std_ns": 142.90220512604085, "total_mad_ns": 83.5, "total_cv": 0.026565451526893314, "total_min_ns": 5049.0, "total_max_ns": 5722.0, "total_p5_ns": 5136.7, "total_p25_ns": 5298.0, "total_p50_ns": 5379.5, "total_p75_ns": 5461.25, "total_p95_ns": 5621.8, "total_p99_ns": 5681.11, "total_ci_low_ns": 5349.451136363636, "total_ci_high_ns": 5408.175, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 42.578451082126485}, {"serializer": "bitsery", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "5.2.4", "avg_time_ser_ns": 457.81111111111113, "avg_time_deser_ns": 329.56666666666666, "avg_time_total_ns": 787.3777777777777, "median_size_bytes": 121.0, "avg_ops_per_sec": 1270038.3833822533, "min_ops_per_sec": 1097694.840834248, "max_ops_per_sec": 1529051.9877675842, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 457.81111111111113, "ser_median_ns": 460.0, "ser_std_ns": 25.975742549516298, "ser_mad_ns": 17.5, "ser_cv": 0.05673899544830393, "ser_min_ns": 395.0, "ser_max_ns": 516.0, "ser_p5_ns": 409.7, "ser_p25_ns": 441.25, "ser_p50_ns": 460.0, "ser_p75_ns": 475.0, "ser_p95_ns": 499.1, "ser_p99_ns": 502.65, "ser_ci_low_ns": 452.31083333333333, "ser_ci_high_ns": 463.1116666666666, "deser_mean_ns": 329.56666666666666, "deser_median_ns": 325.5, "deser_std_ns": 33.396511289237004, "deser_mad_ns": 21.5, "deser_cv": 0.10133461501740772, "deser_min_ns": 245.0, "deser_max_ns": 413.0, "deser_p5_ns": 272.85, "deser_p25_ns": 308.0, "deser_p50_ns": 325.5, "deser_p75_ns": 352.75, "deser_p95_ns": 383.29999999999995, "deser_p99_ns": 409.44, "deser_ci_low_ns": 322.7319444444445, "deser_ci_high_ns": 336.50111111111113, "total_mean_ns": 787.3777777777777, "total_median_ns": 787.5, "total_std_ns": 53.30758273481095, "total_mad_ns": 29.5, "total_cv": 0.06770267619853503, "total_min_ns": 654.0, "total_max_ns": 911.0, "total_p5_ns": 704.0, "total_p25_ns": 757.25, "total_p50_ns": 787.5, "total_p75_ns": 814.5, "total_p95_ns": 875.55, "total_p99_ns": 904.77, "total_ci_low_ns": 776.9219444444444, "total_ci_high_ns": 798.5913888888888, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "custom_binary", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "harness", "avg_time_ser_ns": 516.4193548387096, "avg_time_deser_ns": 465.2258064516129, "avg_time_total_ns": 981.6451612903226, "median_size_bytes": 157.0, "avg_ops_per_sec": 1018698.0381847458, "min_ops_per_sec": 851063.8297872341, "max_ops_per_sec": 1221001.221001221, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 516.4193548387096, "ser_median_ns": 516.0, "ser_std_ns": 49.80861689477582, "ser_mad_ns": 39.0, "ser_cv": 0.09644994214117374, "ser_min_ns": 410.0, "ser_max_ns": 646.0, "ser_p5_ns": 441.8, "ser_p25_ns": 478.0, "ser_p50_ns": 516.0, "ser_p75_ns": 555.0, "ser_p95_ns": 591.0, "ser_p99_ns": 637.72, "ser_ci_low_ns": 506.6768817204301, "ser_ci_high_ns": 527.2481182795699, "deser_mean_ns": 465.2258064516129, "deser_median_ns": 471.0, "deser_std_ns": 44.82190095309533, "deser_mad_ns": 33.0, "deser_cv": 0.09634439949701533, "deser_min_ns": 359.0, "deser_max_ns": 586.0, "deser_p5_ns": 390.0, "deser_p25_ns": 437.0, "deser_p50_ns": 471.0, "deser_p75_ns": 502.0, "deser_p95_ns": 527.4, "deser_p99_ns": 544.5999999999999, "deser_ci_low_ns": 456.6774193548387, "deser_ci_high_ns": 473.86048387096776, "total_mean_ns": 981.6451612903226, "total_median_ns": 973.0, "total_std_ns": 79.30577109891354, "total_mad_ns": 56.0, "total_cv": 0.08078863343519174, "total_min_ns": 819.0, "total_max_ns": 1175.0, "total_p5_ns": 850.8, "total_p25_ns": 924.0, "total_p50_ns": 973.0, "total_p75_ns": 1036.0, "total_p95_ns": 1109.0, "total_p99_ns": 1147.3999999999999, "total_ci_low_ns": 965.2099462365592, "total_ci_high_ns": 997.325, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.9683393070489845, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.8542547537486636}, {"serializer": "rapidjson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "1.1.0", "avg_time_ser_ns": 812.4065934065934, "avg_time_deser_ns": 6483.340659340659, "avg_time_total_ns": 7295.747252747253, "median_size_bytes": 272.0, "avg_ops_per_sec": 137066.1517397611, "min_ops_per_sec": 120048.01920768307, "max_ops_per_sec": 165098.2334489021, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 812.4065934065934, "ser_median_ns": 800.0, "ser_std_ns": 94.34275312473696, "ser_mad_ns": 61.0, "ser_cv": 0.116127507938036, "ser_min_ns": 569.0, "ser_max_ns": 1022.0, "ser_p5_ns": 677.0, "ser_p25_ns": 745.5, "ser_p50_ns": 800.0, "ser_p75_ns": 872.0, "ser_p95_ns": 989.0, "ser_p99_ns": 1008.4999999999999, "ser_ci_low_ns": 793.2953296703297, "ser_ci_high_ns": 832.1901098901099, "deser_mean_ns": 6483.340659340659, "deser_median_ns": 6528.0, "deser_std_ns": 465.8630275516189, "deser_mad_ns": 328.0, "deser_cv": 0.07185539863317873, "deser_min_ns": 5288.0, "deser_max_ns": 7408.0, "deser_p5_ns": 5689.0, "deser_p25_ns": 6171.5, "deser_p50_ns": 6528.0, "deser_p75_ns": 6805.5, "deser_p95_ns": 7208.0, "deser_p99_ns": 7321.599999999999, "deser_ci_low_ns": 6387.411263736264, "deser_ci_high_ns": 6577.314835164835, "total_mean_ns": 7295.747252747253, "total_median_ns": 7303.0, "total_std_ns": 490.58431359183174, "total_mad_ns": 327.0, "total_cv": 0.06724250396792454, "total_min_ns": 6057.0, "total_max_ns": 8330.0, "total_p5_ns": 6418.5, "total_p25_ns": 6986.0, "total_p50_ns": 7303.0, "total_p75_ns": 7652.0, "total_p95_ns": 8021.5, "total_p99_ns": 8297.6, "total_ci_low_ns": 7196.832142857143, "total_ci_high_ns": 7391.557142857143, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.52324228622392}, {"serializer": "jsoncons_bson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 2707.9166666666665, "avg_time_deser_ns": 9104.25, "avg_time_total_ns": 11812.166666666666, "median_size_bytes": 306.0, "avg_ops_per_sec": 84658.47360772085, "min_ops_per_sec": 76120.87995737231, "max_ops_per_sec": 94259.59091337543, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 2707.9166666666665, "ser_median_ns": 2681.5, "ser_std_ns": 224.65785291681433, "ser_mad_ns": 152.5, "ser_cv": 0.08296335543935289, "ser_min_ns": 2301.0, "ser_max_ns": 3323.0, "ser_p5_ns": 2415.75, "ser_p25_ns": 2529.0, "ser_p50_ns": 2681.5, "ser_p75_ns": 2831.25, "ser_p95_ns": 3111.0, "ser_p99_ns": 3319.2, "ser_ci_low_ns": 2663.4559895833336, "ser_ci_high_ns": 2750.291927083333, "deser_mean_ns": 9104.25, "deser_median_ns": 9038.5, "deser_std_ns": 506.6966496206997, "deser_mad_ns": 337.5, "deser_cv": 0.05565495780769417, "deser_min_ns": 7906.0, "deser_max_ns": 10154.0, "deser_p5_ns": 8336.5, "deser_p25_ns": 8769.75, "deser_p50_ns": 9038.5, "deser_p75_ns": 9388.0, "deser_p95_ns": 10086.75, "deser_p99_ns": 10146.4, "deser_ci_low_ns": 9006.172135416668, "deser_ci_high_ns": 9203.777604166666, "total_mean_ns": 11812.166666666666, "total_median_ns": 11786.0, "total_std_ns": 609.9733327504299, "total_mad_ns": 435.0, "total_cv": 0.051639411292065805, "total_min_ns": 10609.0, "total_max_ns": 13137.0, "total_p5_ns": 10889.25, "total_p25_ns": 11359.0, "total_p50_ns": 11786.0, "total_p75_ns": 12215.0, "total_p95_ns": 12883.75, "total_p99_ns": 13074.3, "total_ci_low_ns": 11694.169010416666, "total_ci_high_ns": 11939.336979166666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.962155330613395}, {"serializer": "cereal", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "1.3.2", "avg_time_ser_ns": 1139.375, "avg_time_deser_ns": 1021.1818181818181, "avg_time_total_ns": 2160.556818181818, "median_size_bytes": 205.0, "avg_ops_per_sec": 462843.6482598657, "min_ops_per_sec": 404694.4556859571, "max_ops_per_sec": 549148.8193300384, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 1139.375, "ser_median_ns": 1139.0, "ser_std_ns": 74.56283510778238, "ser_mad_ns": 46.5, "ser_cv": 0.06544187392893681, "ser_min_ns": 946.0, "ser_max_ns": 1281.0, "ser_p5_ns": 1023.45, "ser_p25_ns": 1094.0, "ser_p50_ns": 1139.0, "ser_p75_ns": 1189.25, "ser_p95_ns": 1252.25, "ser_p99_ns": 1279.26, "ser_ci_low_ns": 1124.1005681818183, "ser_ci_high_ns": 1154.8767045454545, "deser_mean_ns": 1021.1818181818181, "deser_median_ns": 1014.0, "deser_std_ns": 75.75149108271016, "deser_mad_ns": 47.0, "deser_cv": 0.07418021916761433, "deser_min_ns": 860.0, "deser_max_ns": 1199.0, "deser_p5_ns": 906.7, "deser_p25_ns": 967.75, "deser_p50_ns": 1014.0, "deser_p75_ns": 1068.75, "deser_p95_ns": 1146.3, "deser_p99_ns": 1197.26, "deser_ci_low_ns": 1005.8505681818182, "deser_ci_high_ns": 1035.8198863636362, "total_mean_ns": 2160.556818181818, "total_median_ns": 2164.0, "total_std_ns": 132.44637674016886, "total_mad_ns": 89.5, "total_cv": 0.06130196420922037, "total_min_ns": 1821.0, "total_max_ns": 2471.0, "total_p5_ns": 1916.35, "total_p25_ns": 2073.0, "total_p50_ns": 2164.0, "total_p75_ns": 2253.0, "total_p95_ns": 2361.85, "total_p99_ns": 2455.34, "total_ci_low_ns": 2131.9877840909094, "total_ci_high_ns": 2187.547159090909, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.599715850175995}, {"serializer": "avro_c", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "avro-c", "avg_time_ser_ns": 1553.8735632183907, "avg_time_deser_ns": 1828.7586206896551, "avg_time_total_ns": 3382.632183908046, "median_size_bytes": 120.0, "avg_ops_per_sec": 295627.7672627927, "min_ops_per_sec": 260010.40041601664, "max_ops_per_sec": 340251.7863218782, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 1553.8735632183907, "ser_median_ns": 1551.0, "ser_std_ns": 113.33535385088219, "ser_mad_ns": 73.0, "ser_cv": 0.07293730747059074, "ser_min_ns": 1279.0, "ser_max_ns": 1792.0, "ser_p5_ns": 1385.2, "ser_p25_ns": 1478.5, "ser_p50_ns": 1551.0, "ser_p75_ns": 1624.5, "ser_p95_ns": 1734.6, "ser_p99_ns": 1767.92, "ser_ci_low_ns": 1529.8620689655172, "ser_ci_high_ns": 1578.1620689655174, "deser_mean_ns": 1828.7586206896551, "deser_median_ns": 1822.0, "deser_std_ns": 99.24165544175273, "deser_mad_ns": 66.0, "deser_cv": 0.05426722494646508, "deser_min_ns": 1610.0, "deser_max_ns": 2108.0, "deser_p5_ns": 1685.2, "deser_p25_ns": 1761.0, "deser_p50_ns": 1822.0, "deser_p75_ns": 1891.0, "deser_p95_ns": 2012.2, "deser_p99_ns": 2094.24, "deser_ci_low_ns": 1808.8011494252876, "deser_ci_high_ns": 1850.5097701149425, "total_mean_ns": 3382.632183908046, "total_median_ns": 3361.0, "total_std_ns": 191.6243366433718, "total_mad_ns": 131.0, "total_cv": 0.05664947479509376, "total_min_ns": 2939.0, "total_max_ns": 3846.0, "total_p5_ns": 3081.8, "total_p25_ns": 3249.0, "total_p50_ns": 3361.0, "total_p75_ns": 3509.5, "total_p95_ns": 3722.1, "total_p99_ns": 3811.6, "total_ci_low_ns": 3343.412356321839, "total_ci_high_ns": 3424.2221264367818, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.509791919916815}, {"serializer": "nlohmann_ubjson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 1044.4948453608247, "avg_time_deser_ns": 4892.701030927835, "avg_time_total_ns": 5937.19587628866, "median_size_bytes": 255.0, "avg_ops_per_sec": 168429.6797405141, "min_ops_per_sec": 142126.2080727686, "max_ops_per_sec": 199282.58270227181, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 1044.4948453608247, "ser_median_ns": 1035.0, "ser_std_ns": 81.10398722619162, "ser_mad_ns": 54.0, "ser_cv": 0.07764900668147763, "ser_min_ns": 839.0, "ser_max_ns": 1245.0, "ser_p5_ns": 905.4, "ser_p25_ns": 990.0, "ser_p50_ns": 1035.0, "ser_p75_ns": 1105.0, "ser_p95_ns": 1173.6, "ser_p99_ns": 1242.12, "ser_ci_low_ns": 1028.583762886598, "ser_ci_high_ns": 1061.0966494845359, "deser_mean_ns": 4892.701030927835, "deser_median_ns": 4937.0, "deser_std_ns": 350.43764795337387, "deser_mad_ns": 207.0, "deser_cv": 0.07162457827244721, "deser_min_ns": 4102.0, "deser_max_ns": 5791.0, "deser_p5_ns": 4279.6, "deser_p25_ns": 4671.0, "deser_p50_ns": 4937.0, "deser_p75_ns": 5132.0, "deser_p95_ns": 5423.599999999999, "deser_p99_ns": 5723.799999999999, "deser_ci_low_ns": 4823.264948453609, "deser_ci_high_ns": 4962.732731958763, "total_mean_ns": 5937.19587628866, "total_median_ns": 5974.0, "total_std_ns": 396.54777557836735, "total_mad_ns": 263.0, "total_cv": 0.06679041484247768, "total_min_ns": 5018.0, "total_max_ns": 7036.0, "total_p5_ns": 5266.0, "total_p25_ns": 5673.0, "total_p50_ns": 5974.0, "total_p75_ns": 6214.0, "total_p95_ns": 6498.6, "total_p99_ns": 6851.6799999999985, "total_ci_low_ns": 5857.474226804124, "total_ci_high_ns": 6013.692783505154, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.806237239461502}, {"serializer": "flexbuffers", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "flatbuffers-flex", "avg_time_ser_ns": 2327.633333333333, "avg_time_deser_ns": 2670.322222222222, "avg_time_total_ns": 4997.955555555555, "median_size_bytes": 312.0, "avg_ops_per_sec": 200081.81122948052, "min_ops_per_sec": 174581.0055865922, "max_ops_per_sec": 230467.849734962, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 2327.633333333333, "ser_median_ns": 2319.0, "ser_std_ns": 192.51052502964873, "ser_mad_ns": 127.0, "ser_cv": 0.08270655101590259, "ser_min_ns": 1852.0, "ser_max_ns": 2836.0, "ser_p5_ns": 2059.15, "ser_p25_ns": 2194.25, "ser_p50_ns": 2319.0, "ser_p75_ns": 2448.5, "ser_p95_ns": 2657.75, "ser_p99_ns": 2785.27, "ser_ci_low_ns": 2288.3975, "ser_ci_high_ns": 2368.4055555555556, "deser_mean_ns": 2670.322222222222, "deser_median_ns": 2655.0, "deser_std_ns": 141.3153957417872, "deser_mad_ns": 98.5, "deser_cv": 0.05292072790533331, "deser_min_ns": 2313.0, "deser_max_ns": 3020.0, "deser_p5_ns": 2475.35, "deser_p25_ns": 2591.0, "deser_p50_ns": 2655.0, "deser_p75_ns": 2769.0, "deser_p95_ns": 2894.65, "deser_p99_ns": 3016.44, "deser_ci_low_ns": 2641.710555555556, "deser_ci_high_ns": 2699.591388888889, "total_mean_ns": 4997.955555555555, "total_median_ns": 4991.5, "total_std_ns": 285.0248130775856, "total_mad_ns": 182.5, "total_cv": 0.05702828084590744, "total_min_ns": 4339.0, "total_max_ns": 5728.0, "total_p5_ns": 4537.3, "total_p25_ns": 4811.25, "total_p50_ns": 4991.5, "total_p75_ns": 5171.25, "total_p95_ns": 5535.6, "total_p99_ns": 5606.96, "total_ci_low_ns": 4937.553055555556, "total_ci_high_ns": 5053.7491666666665, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.448988072626715}, {"serializer": "thrift", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "TBinaryProtocol", "avg_time_ser_ns": 638.8295454545455, "avg_time_deser_ns": 555.4431818181819, "avg_time_total_ns": 1194.2727272727273, "median_size_bytes": 202.0, "avg_ops_per_sec": 837329.6795310954, "min_ops_per_sec": 716845.8781362007, "max_ops_per_sec": 930232.5581395349, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 638.8295454545455, "ser_median_ns": 629.0, "ser_std_ns": 48.95041394184905, "ser_mad_ns": 28.5, "ser_cv": 0.07662515656976922, "ser_min_ns": 551.0, "ser_max_ns": 764.0, "ser_p5_ns": 573.0, "ser_p25_ns": 604.75, "ser_p50_ns": 629.0, "ser_p75_ns": 666.0, "ser_p95_ns": 731.9, "ser_p99_ns": 764.0, "ser_ci_low_ns": 629.4772727272727, "ser_ci_high_ns": 648.1829545454544, "deser_mean_ns": 555.4431818181819, "deser_median_ns": 553.5, "deser_std_ns": 34.27403358616276, "deser_mad_ns": 23.5, "deser_cv": 0.061705741843784086, "deser_min_ns": 482.0, "deser_max_ns": 631.0, "deser_p5_ns": 497.0, "deser_p25_ns": 529.75, "deser_p50_ns": 553.5, "deser_p75_ns": 577.0, "deser_p95_ns": 616.5999999999999, "deser_p99_ns": 630.13, "deser_ci_low_ns": 548.5221590909091, "deser_ci_high_ns": 562.353125, "total_mean_ns": 1194.2727272727273, "total_median_ns": 1189.0, "total_std_ns": 74.7661069061495, "total_mad_ns": 49.5, "total_cv": 0.06260388033551378, "total_min_ns": 1075.0, "total_max_ns": 1395.0, "total_p5_ns": 1089.7, "total_p25_ns": 1138.5, "total_p50_ns": 1189.0, "total_p75_ns": 1235.75, "total_p95_ns": 1336.85, "total_p99_ns": 1379.34, "total_ci_low_ns": 1179.7036931818182, "total_ci_high_ns": 1209.568465909091, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.2515689760806845}, {"serializer": "protobuf-wire", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "wire-v2", "avg_time_ser_ns": 904.360824742268, "avg_time_deser_ns": 569.8659793814433, "avg_time_total_ns": 1474.2268041237114, "median_size_bytes": 138.0, "avg_ops_per_sec": 678321.6783216783, "min_ops_per_sec": 578703.7037037037, "max_ops_per_sec": 824402.3083264633, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 904.360824742268, "ser_median_ns": 911.0, "ser_std_ns": 65.99434722746624, "ser_mad_ns": 45.0, "ser_cv": 0.0729734696837115, "ser_min_ns": 739.0, "ser_max_ns": 1077.0, "ser_p5_ns": 777.0, "ser_p25_ns": 861.0, "ser_p50_ns": 911.0, "ser_p75_ns": 949.0, "ser_p95_ns": 992.1999999999998, "ser_p99_ns": 1037.6399999999996, "ser_ci_low_ns": 890.8744845360825, "ser_ci_high_ns": 916.7219072164949, "deser_mean_ns": 569.8659793814433, "deser_median_ns": 578.0, "deser_std_ns": 73.01507105642348, "deser_mad_ns": 58.0, "deser_cv": 0.1281267415466302, "deser_min_ns": 419.0, "deser_max_ns": 709.0, "deser_p5_ns": 454.6, "deser_p25_ns": 510.0, "deser_p50_ns": 578.0, "deser_p75_ns": 625.0, "deser_p95_ns": 673.8, "deser_p99_ns": 701.3199999999999, "deser_ci_low_ns": 555.2778350515464, "deser_ci_high_ns": 584.4538659793815, "total_mean_ns": 1474.2268041237114, "total_median_ns": 1467.0, "total_std_ns": 112.28985049440124, "total_mad_ns": 78.0, "total_cv": 0.07616863984585258, "total_min_ns": 1213.0, "total_max_ns": 1728.0, "total_p5_ns": 1296.2, "total_p25_ns": 1399.0, "total_p50_ns": 1467.0, "total_p75_ns": 1561.0, "total_p95_ns": 1664.0, "total_p99_ns": 1674.2399999999996, "total_ci_low_ns": 1452.5842783505157, "total_ci_high_ns": 1496.1154639175256, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.691349357858081}, {"serializer": "simdjson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.10.1", "avg_time_ser_ns": 118.1413043478261, "avg_time_deser_ns": 4672.173913043478, "avg_time_total_ns": 4790.315217391304, "median_size_bytes": 272.0, "avg_ops_per_sec": 208754.5296329324, "min_ops_per_sec": 187441.4245548266, "max_ops_per_sec": 230946.88221709008, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 118.1413043478261, "ser_median_ns": 120.0, "ser_std_ns": 8.113997567274662, "ser_mad_ns": 4.5, "ser_cv": 0.06868044679264595, "ser_min_ns": 100.0, "ser_max_ns": 142.0, "ser_p5_ns": 103.0, "ser_p25_ns": 112.75, "ser_p50_ns": 120.0, "ser_p75_ns": 124.0, "ser_p95_ns": 129.0, "ser_p99_ns": 134.72000000000003, "ser_ci_low_ns": 116.49972826086956, "ser_ci_high_ns": 119.73913043478261, "deser_mean_ns": 4672.173913043478, "deser_median_ns": 4645.5, "deser_std_ns": 221.67660876247612, "deser_mad_ns": 144.5, "deser_cv": 0.047446138112199436, "deser_min_ns": 4219.0, "deser_max_ns": 5210.0, "deser_p5_ns": 4352.45, "deser_p25_ns": 4532.75, "deser_p50_ns": 4645.5, "deser_p75_ns": 4816.25, "deser_p95_ns": 5127.35, "deser_p99_ns": 5205.45, "deser_ci_low_ns": 4626.844565217391, "deser_ci_high_ns": 4715.697554347826, "total_mean_ns": 4790.315217391304, "total_median_ns": 4755.5, "total_std_ns": 220.69470381809987, "total_mad_ns": 133.5, "total_cv": 0.04607101908802677, "total_min_ns": 4330.0, "total_max_ns": 5335.0, "total_p5_ns": 4465.7, "total_p25_ns": 4646.25, "total_p50_ns": 4755.5, "total_p75_ns": 4924.25, "total_p95_ns": 5246.75, "total_p99_ns": 5315.89, "total_ci_low_ns": 4745.214402173913, "total_ci_high_ns": 4838.036413043478, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.707935749346056}, {"serializer": "nlohmann_bson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 1385.8333333333333, "avg_time_deser_ns": 4139.988888888889, "avg_time_total_ns": 5525.822222222222, "median_size_bytes": 306.0, "avg_ops_per_sec": 180968.5436455912, "min_ops_per_sec": 157505.1189163648, "max_ops_per_sec": 215656.67457407806, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 1385.8333333333333, "ser_median_ns": 1382.5, "ser_std_ns": 90.3536435285064, "ser_mad_ns": 61.0, "ser_cv": 0.06519805907047967, "ser_min_ns": 1141.0, "ser_max_ns": 1642.0, "ser_p5_ns": 1248.35, "ser_p25_ns": 1330.0, "ser_p50_ns": 1382.5, "ser_p75_ns": 1447.75, "ser_p95_ns": 1525.3, "ser_p99_ns": 1574.36, "ser_ci_low_ns": 1367.2216666666666, "ser_ci_high_ns": 1403.8777777777777, "deser_mean_ns": 4139.988888888889, "deser_median_ns": 4181.5, "deser_std_ns": 346.336930658683, "deser_mad_ns": 249.0, "deser_cv": 0.083656487965028, "deser_min_ns": 3367.0, "deser_max_ns": 4797.0, "deser_p5_ns": 3499.05, "deser_p25_ns": 3872.0, "deser_p50_ns": 4181.5, "deser_p75_ns": 4412.0, "deser_p95_ns": 4613.0, "deser_p99_ns": 4742.71, "deser_ci_low_ns": 4067.027777777778, "deser_ci_high_ns": 4208.395555555555, "total_mean_ns": 5525.822222222222, "total_median_ns": 5582.0, "total_std_ns": 390.34636240996485, "total_mad_ns": 271.0, "total_cv": 0.0706404127226855, "total_min_ns": 4637.0, "total_max_ns": 6349.0, "total_p5_ns": 4857.55, "total_p25_ns": 5314.5, "total_p50_ns": 5582.0, "total_p75_ns": 5849.25, "total_p95_ns": 6056.8, "total_p99_ns": 6229.74, "total_ci_low_ns": 5449.265277777778, "total_ci_high_ns": 5605.421666666667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.937598230091}, {"serializer": "yas", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "7.x", "avg_time_ser_ns": 764.8947368421053, "avg_time_deser_ns": 405.06315789473683, "avg_time_total_ns": 1169.957894736842, "median_size_bytes": 212.0, "avg_ops_per_sec": 854731.6142731183, "min_ops_per_sec": 584453.5359438924, "max_ops_per_sec": 1270648.0304955528, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 764.8947368421053, "ser_median_ns": 756.0, "ser_std_ns": 210.38123822607471, "ser_mad_ns": 180.0, "ser_cv": 0.2750460005707988, "ser_min_ns": 407.0, "ser_max_ns": 1256.0, "ser_p5_ns": 446.8, "ser_p25_ns": 634.5, "ser_p50_ns": 756.0, "ser_p75_ns": 956.5, "ser_p95_ns": 1042.6, "ser_p99_ns": 1170.4600000000003, "ser_ci_low_ns": 723.4689473684211, "ser_ci_high_ns": 805.5834210526316, "deser_mean_ns": 405.06315789473683, "deser_median_ns": 407.0, "deser_std_ns": 28.242419629298002, "deser_mad_ns": 21.0, "deser_cv": 0.0697234963951901, "deser_min_ns": 345.0, "deser_max_ns": 464.0, "deser_p5_ns": 356.8, "deser_p25_ns": 385.0, "deser_p50_ns": 407.0, "deser_p75_ns": 425.0, "deser_p95_ns": 450.09999999999997, "deser_p99_ns": 462.12, "deser_ci_low_ns": 399.2092105263158, "deser_ci_high_ns": 410.86473684210523, "total_mean_ns": 1169.957894736842, "total_median_ns": 1157.0, "total_std_ns": 215.36504960477083, "total_mad_ns": 196.0, "total_cv": 0.18407931650669596, "total_min_ns": 787.0, "total_max_ns": 1711.0, "total_p5_ns": 833.8, "total_p25_ns": 1024.5, "total_p50_ns": 1157.0, "total_p75_ns": 1373.5, "total_p95_ns": 1467.9, "total_p99_ns": 1584.1000000000004, "total_ci_low_ns": 1127.0626315789473, "total_ci_high_ns": 1212.6094736842103, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.948654970760234, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.3998177749035348}, {"serializer": "msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "msgpack-cxx", "avg_time_ser_ns": 927.25, "avg_time_deser_ns": 901.3636363636364, "avg_time_total_ns": 1828.6136363636363, "median_size_bytes": 214.0, "avg_ops_per_sec": 546862.3771113238, "min_ops_per_sec": 436300.1745200698, "max_ops_per_sec": 713775.8743754461, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 927.25, "ser_median_ns": 910.5, "ser_std_ns": 209.73235544269326, "ser_mad_ns": 173.0, "ser_cv": 0.2261874957591731, "ser_min_ns": 573.0, "ser_max_ns": 1440.0, "ser_p5_ns": 612.75, "ser_p25_ns": 746.0, "ser_p50_ns": 910.5, "ser_p75_ns": 1083.25, "ser_p95_ns": 1248.85, "ser_p99_ns": 1402.5899999999997, "ser_ci_low_ns": 882.375, "ser_ci_high_ns": 970.6403409090909, "deser_mean_ns": 901.3636363636364, "deser_median_ns": 903.0, "deser_std_ns": 42.07961305550149, "deser_mad_ns": 29.0, "deser_cv": 0.04668439169042021, "deser_min_ns": 808.0, "deser_max_ns": 1012.0, "deser_p5_ns": 830.75, "deser_p25_ns": 872.75, "deser_p50_ns": 903.0, "deser_p75_ns": 928.25, "deser_p95_ns": 970.3, "deser_p99_ns": 986.7699999999999, "deser_ci_low_ns": 892.4426136363637, "deser_ci_high_ns": 910.0798295454546, "total_mean_ns": 1828.6136363636363, "total_median_ns": 1822.5, "total_std_ns": 216.12594411582847, "total_mad_ns": 160.5, "total_cv": 0.11819114755461109, "total_min_ns": 1401.0, "total_max_ns": 2292.0, "total_p5_ns": 1493.2, "total_p25_ns": 1662.75, "total_p50_ns": 1822.5, "total_p75_ns": 1986.0, "total_p95_ns": 2190.4999999999995, "total_p99_ns": 2278.95, "total_ci_low_ns": 1782.437784090909, "total_ci_high_ns": 1873.2105113636364, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.620203277815723}, {"serializer": "capnproto", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "1.0.x", "avg_time_ser_ns": 972.0111111111111, "avg_time_deser_ns": 531.7, "avg_time_total_ns": 1503.7111111111112, "median_size_bytes": 280.0, "avg_ops_per_sec": 665021.3545746079, "min_ops_per_sec": 505305.7099545225, "max_ops_per_sec": 958772.7708533078, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 972.0111111111111, "ser_median_ns": 985.5, "ser_std_ns": 210.115778380859, "ser_mad_ns": 144.0, "ser_cv": 0.21616602524293632, "ser_min_ns": 558.0, "ser_max_ns": 1374.0, "ser_p5_ns": 611.8, "ser_p25_ns": 844.75, "ser_p50_ns": 985.5, "ser_p75_ns": 1128.75, "ser_p95_ns": 1241.55, "ser_p99_ns": 1346.41, "ser_ci_low_ns": 929.6316666666667, "ser_ci_high_ns": 1016.1380555555555, "deser_mean_ns": 531.7, "deser_median_ns": 530.0, "deser_std_ns": 41.5033368091306, "deser_mad_ns": 26.0, "deser_cv": 0.07805780855582208, "deser_min_ns": 431.0, "deser_max_ns": 640.0, "deser_p5_ns": 463.15, "deser_p25_ns": 504.25, "deser_p50_ns": 530.0, "deser_p75_ns": 556.75, "deser_p95_ns": 611.3, "deser_p99_ns": 629.3199999999999, "deser_ci_low_ns": 523.4108333333334, "deser_ci_high_ns": 540.1444444444444, "total_mean_ns": 1503.7111111111112, "total_median_ns": 1510.0, "total_std_ns": 222.79169716260577, "total_mad_ns": 143.5, "total_cv": 0.14816123623505192, "total_min_ns": 1043.0, "total_max_ns": 1979.0, "total_p5_ns": 1134.15, "total_p25_ns": 1394.75, "total_p50_ns": 1510.0, "total_p75_ns": 1661.75, "total_p95_ns": 1845.0, "total_p99_ns": 1938.06, "total_ci_low_ns": 1459.6247222222223, "total_ci_high_ns": 1549.2583333333334, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.403579541733437}, {"serializer": "nlohmann_cbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 1186.1797752808989, "avg_time_deser_ns": 4052.955056179775, "avg_time_total_ns": 5239.134831460674, "median_size_bytes": 214.0, "avg_ops_per_sec": 190871.20911549425, "min_ops_per_sec": 166195.77862722287, "max_ops_per_sec": 230202.57826887662, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 1186.1797752808989, "ser_median_ns": 1185.0, "ser_std_ns": 77.42952247010778, "ser_mad_ns": 53.0, "ser_cv": 0.06527638059902996, "ser_min_ns": 1002.0, "ser_max_ns": 1365.0, "ser_p5_ns": 1072.2, "ser_p25_ns": 1127.0, "ser_p50_ns": 1185.0, "ser_p75_ns": 1235.0, "ser_p95_ns": 1303.8, "ser_p99_ns": 1363.24, "ser_ci_low_ns": 1169.7317415730338, "ser_ci_high_ns": 1201.8205056179775, "deser_mean_ns": 4052.955056179775, "deser_median_ns": 4150.0, "deser_std_ns": 363.19628771732306, "deser_mad_ns": 220.0, "deser_cv": 0.08961271040090531, "deser_min_ns": 3284.0, "deser_max_ns": 4704.0, "deser_p5_ns": 3450.2, "deser_p25_ns": 3767.0, "deser_p50_ns": 4150.0, "deser_p75_ns": 4324.0, "deser_p95_ns": 4582.4, "deser_p99_ns": 4682.88, "deser_ci_low_ns": 3976.855056179775, "deser_ci_high_ns": 4128.5407303370785, "total_mean_ns": 5239.134831460674, "total_median_ns": 5319.0, "total_std_ns": 415.6785578209124, "total_mad_ns": 299.0, "total_cv": 0.07934106893466243, "total_min_ns": 4344.0, "total_max_ns": 6017.0, "total_p5_ns": 4578.2, "total_p25_ns": 4917.0, "total_p50_ns": 5319.0, "total_p75_ns": 5572.0, "total_p95_ns": 5843.599999999999, "total_p99_ns": 5987.96, "total_ci_low_ns": 5156.349157303371, "total_ci_high_ns": 5328.787078651686, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.999966120783483}, {"serializer": "thrift", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "TBinaryProtocol", "avg_time_ser_ns": 633.3033707865169, "avg_time_deser_ns": 559.2247191011236, "avg_time_total_ns": 1192.5280898876404, "median_size_bytes": 202.0, "avg_ops_per_sec": 838554.6709379564, "min_ops_per_sec": 758725.3414264036, "max_ops_per_sec": 946969.696969697, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 633.3033707865169, "ser_median_ns": 630.0, "ser_std_ns": 34.03521054276733, "ser_mad_ns": 23.0, "ser_cv": 0.05374234863221723, "ser_min_ns": 544.0, "ser_max_ns": 706.0, "ser_p5_ns": 584.0, "ser_p25_ns": 611.0, "ser_p50_ns": 630.0, "ser_p75_ns": 654.0, "ser_p95_ns": 687.2, "ser_p99_ns": 705.12, "ser_ci_low_ns": 626.741011235955, "ser_ci_high_ns": 640.1581460674157, "deser_mean_ns": 559.2247191011236, "deser_median_ns": 559.0, "deser_std_ns": 35.75286155393997, "deser_mad_ns": 23.0, "deser_cv": 0.06393290627676072, "deser_min_ns": 460.0, "deser_max_ns": 642.0, "deser_p5_ns": 504.4, "deser_p25_ns": 535.0, "deser_p50_ns": 559.0, "deser_p75_ns": 581.0, "deser_p95_ns": 615.6, "deser_p99_ns": 631.44, "deser_ci_low_ns": 551.9092696629214, "deser_ci_high_ns": 566.8092696629213, "total_mean_ns": 1192.5280898876404, "total_median_ns": 1186.0, "total_std_ns": 56.85869444341833, "total_mad_ns": 40.0, "total_cv": 0.04767912380896247, "total_min_ns": 1056.0, "total_max_ns": 1318.0, "total_p5_ns": 1097.2, "total_p25_ns": 1154.0, "total_p50_ns": 1186.0, "total_p75_ns": 1238.0, "total_p95_ns": 1289.0, "total_p99_ns": 1308.3200000000002, "total_ci_low_ns": 1181.2918539325844, "total_ci_high_ns": 1204.08202247191, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.3274780576467275}, {"serializer": "avro", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "binary-1.11", "avg_time_ser_ns": 444.4255319148936, "avg_time_deser_ns": 489.86170212765956, "avg_time_total_ns": 934.2872340425532, "median_size_bytes": 120.0, "avg_ops_per_sec": 1070334.650376325, "min_ops_per_sec": 898472.5965858041, "max_ops_per_sec": 1300390.1170351105, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 444.4255319148936, "ser_median_ns": 443.5, "ser_std_ns": 36.19169077145775, "ser_mad_ns": 25.0, "ser_cv": 0.08143476954512228, "ser_min_ns": 366.0, "ser_max_ns": 542.0, "ser_p5_ns": 390.65, "ser_p25_ns": 421.0, "ser_p50_ns": 443.5, "ser_p75_ns": 469.75, "ser_p95_ns": 503.7, "ser_p99_ns": 515.9599999999998, "ser_ci_low_ns": 437.2436170212766, "ser_ci_high_ns": 451.6598404255319, "deser_mean_ns": 489.86170212765956, "deser_median_ns": 497.5, "deser_std_ns": 41.683291581539095, "deser_mad_ns": 24.0, "deser_cv": 0.08509195840477501, "deser_min_ns": 381.0, "deser_max_ns": 586.0, "deser_p5_ns": 416.7, "deser_p25_ns": 463.5, "deser_p50_ns": 497.5, "deser_p75_ns": 513.75, "deser_p95_ns": 560.0999999999999, "deser_p99_ns": 581.3499999999999, "deser_ci_low_ns": 481.2752659574468, "deser_ci_high_ns": 498.1816489361702, "total_mean_ns": 934.2872340425532, "total_median_ns": 934.5, "total_std_ns": 68.0173321270878, "total_mad_ns": 45.0, "total_cv": 0.0728013074017769, "total_min_ns": 769.0, "total_max_ns": 1113.0, "total_p5_ns": 826.6, "total_p25_ns": 891.25, "total_p50_ns": 934.5, "total_p75_ns": 979.75, "total_p95_ns": 1031.5, "total_p99_ns": 1086.9599999999998, "total_ci_low_ns": 920.4779255319149, "total_ci_high_ns": 947.9797872340425, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.6008993200263215, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.1900948543760697}, {"serializer": "rapidjson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "1.1.0", "avg_time_ser_ns": 2686.6813186813188, "avg_time_deser_ns": 9729.241758241758, "avg_time_total_ns": 12415.923076923076, "median_size_bytes": 272.0, "avg_ops_per_sec": 80541.7361080994, "min_ops_per_sec": 74985.00299940012, "max_ops_per_sec": 87535.01400560224, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 2686.6813186813188, "ser_median_ns": 2659.0, "ser_std_ns": 133.04359178027823, "ser_mad_ns": 75.0, "ser_cv": 0.049519677252075026, "ser_min_ns": 2435.0, "ser_max_ns": 2996.0, "ser_p5_ns": 2507.5, "ser_p25_ns": 2596.5, "ser_p50_ns": 2659.0, "ser_p75_ns": 2762.5, "ser_p95_ns": 2956.5, "ser_p99_ns": 2986.1, "ser_ci_low_ns": 2659.592032967033, "ser_ci_high_ns": 2714.6054945054943, "deser_mean_ns": 9729.241758241758, "deser_median_ns": 9740.0, "deser_std_ns": 337.7137624497784, "deser_mad_ns": 236.0, "deser_cv": 0.034711210887908815, "deser_min_ns": 8984.0, "deser_max_ns": 10413.0, "deser_p5_ns": 9143.5, "deser_p25_ns": 9532.0, "deser_p50_ns": 9740.0, "deser_p75_ns": 9985.0, "deser_p95_ns": 10277.5, "deser_p99_ns": 10376.1, "deser_ci_low_ns": 9657.221703296704, "deser_ci_high_ns": 9794.551923076922, "total_mean_ns": 12415.923076923076, "total_median_ns": 12406.0, "total_std_ns": 393.85491493327083, "total_mad_ns": 240.0, "total_cv": 0.03172175862343344, "total_min_ns": 11424.0, "total_max_ns": 13336.0, "total_p5_ns": 11723.5, "total_p25_ns": 12185.5, "total_p50_ns": 12406.0, "total_p75_ns": 12662.0, "total_p95_ns": 13058.0, "total_p99_ns": 13236.099999999999, "total_ci_low_ns": 12333.477747252748, "total_ci_high_ns": 12493.895604395604, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 41.36172061999602}, {"serializer": "jsoncons_msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 2090.9791666666665, "avg_time_deser_ns": 9598.260416666666, "avg_time_total_ns": 11689.239583333334, "median_size_bytes": 214.0, "avg_ops_per_sec": 85548.76413225482, "min_ops_per_sec": 75386.35506973238, "max_ops_per_sec": 97200.62208398133, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 2090.9791666666665, "ser_median_ns": 2082.5, "ser_std_ns": 267.38562647534746, "ser_mad_ns": 213.0, "ser_cv": 0.12787579653488376, "ser_min_ns": 1598.0, "ser_max_ns": 2814.0, "ser_p5_ns": 1723.25, "ser_p25_ns": 1874.25, "ser_p50_ns": 2082.5, "ser_p75_ns": 2295.25, "ser_p95_ns": 2534.75, "ser_p99_ns": 2624.9499999999994, "ser_ci_low_ns": 2036.7145833333334, "ser_ci_high_ns": 2142.858333333333, "deser_mean_ns": 9598.260416666666, "deser_median_ns": 9608.5, "deser_std_ns": 552.4087587398087, "deser_mad_ns": 461.5, "deser_cv": 0.057553008020139976, "deser_min_ns": 8467.0, "deser_max_ns": 10785.0, "deser_p5_ns": 8750.0, "deser_p25_ns": 9137.5, "deser_p50_ns": 9608.5, "deser_p75_ns": 10062.25, "deser_p95_ns": 10552.25, "deser_p99_ns": 10604.5, "deser_ci_low_ns": 9489.977604166666, "deser_ci_high_ns": 9709.174739583334, "total_mean_ns": 11689.239583333334, "total_median_ns": 11748.5, "total_std_ns": 695.3545213893893, "total_mad_ns": 528.0, "total_cv": 0.05948671993863781, "total_min_ns": 10288.0, "total_max_ns": 13265.0, "total_p5_ns": 10722.25, "total_p25_ns": 11053.25, "total_p50_ns": 11748.5, "total_p75_ns": 12177.25, "total_p95_ns": 12819.5, "total_p99_ns": 13191.85, "total_ci_low_ns": 11550.818229166667, "total_ci_high_ns": 11820.453125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.901888506864744}, {"serializer": "flatbuffers", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "flatbuffers", "avg_time_ser_ns": 581.3711340206186, "avg_time_deser_ns": 630.9896907216495, "avg_time_total_ns": 1212.360824742268, "median_size_bytes": 164.0, "avg_ops_per_sec": 824836.9458923971, "min_ops_per_sec": 582750.5827505827, "max_ops_per_sec": 1545595.0540958268, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 581.3711340206186, "ser_median_ns": 555.0, "ser_std_ns": 195.12156037901673, "ser_mad_ns": 133.0, "ser_cv": 0.3356230623794553, "ser_min_ns": 244.0, "ser_max_ns": 1032.0, "ser_p5_ns": 262.8, "ser_p25_ns": 469.0, "ser_p50_ns": 555.0, "ser_p75_ns": 741.0, "ser_p95_ns": 897.1999999999998, "ser_p99_ns": 989.7599999999996, "ser_ci_low_ns": 542.3492268041238, "ser_ci_high_ns": 620.681443298969, "deser_mean_ns": 630.9896907216495, "deser_median_ns": 649.0, "deser_std_ns": 82.79599613474686, "deser_mad_ns": 59.0, "deser_cv": 0.13121608380012492, "deser_min_ns": 403.0, "deser_max_ns": 792.0, "deser_p5_ns": 501.4, "deser_p25_ns": 563.0, "deser_p50_ns": 649.0, "deser_p75_ns": 690.0, "deser_p95_ns": 749.4, "deser_p99_ns": 790.0799999999999, "deser_ci_low_ns": 614.5971649484536, "deser_ci_high_ns": 647.0930412371134, "total_mean_ns": 1212.360824742268, "total_median_ns": 1199.0, "total_std_ns": 220.6817649149548, "total_mad_ns": 164.0, "total_cv": 0.18202647298659527, "total_min_ns": 647.0, "total_max_ns": 1716.0, "total_p5_ns": 895.4, "total_p25_ns": 1049.0, "total_p50_ns": 1199.0, "total_p75_ns": 1379.0, "total_p95_ns": 1563.1999999999994, "total_p99_ns": 1700.6399999999999, "total_ci_low_ns": 1169.9237113402062, "total_ci_high_ns": 1256.0347938144328, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.9091295568073121, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.1931222867743276}, {"serializer": "nlohmann_bson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 1752.1612903225807, "avg_time_deser_ns": 4549.8494623655915, "avg_time_total_ns": 6302.010752688172, "median_size_bytes": 306.0, "avg_ops_per_sec": 158679.51345107466, "min_ops_per_sec": 141302.81192595733, "max_ops_per_sec": 182915.67587342235, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1752.1612903225807, "ser_median_ns": 1752.0, "ser_std_ns": 123.37837615508155, "ser_mad_ns": 84.0, "ser_cv": 0.0704149651270786, "ser_min_ns": 1452.0, "ser_max_ns": 2079.0, "ser_p5_ns": 1556.6, "ser_p25_ns": 1669.0, "ser_p50_ns": 1752.0, "ser_p75_ns": 1836.0, "ser_p95_ns": 1959.0, "ser_p99_ns": 2017.36, "ser_ci_low_ns": 1726.595698924731, "ser_ci_high_ns": 1776.2010752688172, "deser_mean_ns": 4549.8494623655915, "deser_median_ns": 4584.0, "deser_std_ns": 322.9047829178589, "deser_mad_ns": 190.0, "deser_cv": 0.07097043222831637, "deser_min_ns": 3787.0, "deser_max_ns": 5161.0, "deser_p5_ns": 3866.0, "deser_p25_ns": 4394.0, "deser_p50_ns": 4584.0, "deser_p75_ns": 4774.0, "deser_p95_ns": 4994.4, "deser_p99_ns": 5155.48, "deser_ci_low_ns": 4480.663172043011, "deser_ci_high_ns": 4615.586290322581, "total_mean_ns": 6302.010752688172, "total_median_ns": 6287.0, "total_std_ns": 370.34339219701565, "total_mad_ns": 221.0, "total_cv": 0.05876590928364297, "total_min_ns": 5467.0, "total_max_ns": 7077.0, "total_p5_ns": 5641.6, "total_p25_ns": 6068.0, "total_p50_ns": 6287.0, "total_p75_ns": 6508.0, "total_p95_ns": 6918.599999999999, "total_p99_ns": 7031.0, "total_ci_low_ns": 6227.9220430107525, "total_ci_high_ns": 6378.7787634408605, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.579895452063973}, {"serializer": "nlohmann_msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 1486.3978494623657, "avg_time_deser_ns": 4272.591397849463, "avg_time_total_ns": 5758.989247311828, "median_size_bytes": 214.0, "avg_ops_per_sec": 173641.58137068557, "min_ops_per_sec": 149432.15780035863, "max_ops_per_sec": 200642.05457463884, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1486.3978494623657, "ser_median_ns": 1475.0, "ser_std_ns": 93.0204675683221, "ser_mad_ns": 63.0, "ser_cv": 0.0625811370771075, "ser_min_ns": 1275.0, "ser_max_ns": 1687.0, "ser_p5_ns": 1353.8, "ser_p25_ns": 1426.0, "ser_p50_ns": 1475.0, "ser_p75_ns": 1544.0, "ser_p95_ns": 1656.6, "ser_p99_ns": 1678.72, "ser_ci_low_ns": 1468.8346774193549, "ser_ci_high_ns": 1505.3663978494624, "deser_mean_ns": 4272.591397849463, "deser_median_ns": 4345.0, "deser_std_ns": 387.0747943833825, "deser_mad_ns": 324.0, "deser_cv": 0.09059485411551643, "deser_min_ns": 3556.0, "deser_max_ns": 5094.0, "deser_p5_ns": 3726.4, "deser_p25_ns": 3906.0, "deser_p50_ns": 4345.0, "deser_p75_ns": 4583.0, "deser_p95_ns": 4850.4, "deser_p99_ns": 5044.32, "deser_ci_low_ns": 4192.704301075269, "deser_ci_high_ns": 4351.098387096774, "total_mean_ns": 5758.989247311828, "total_median_ns": 5819.0, "total_std_ns": 409.3779611807581, "total_mad_ns": 350.0, "total_cv": 0.07108503655773397, "total_min_ns": 4984.0, "total_max_ns": 6692.0, "total_p5_ns": 5196.8, "total_p25_ns": 5387.0, "total_p50_ns": 5819.0, "total_p75_ns": 6038.0, "total_p95_ns": 6402.199999999999, "total_p99_ns": 6561.36, "total_ci_low_ns": 5673.344086021505, "total_ci_high_ns": 5844.312903225806, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.816270638619077}, {"serializer": "protobuf-wire", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "wire-v2", "avg_time_ser_ns": 908.6559139784946, "avg_time_deser_ns": 593.7849462365591, "avg_time_total_ns": 1502.4408602150538, "median_size_bytes": 138.0, "avg_ops_per_sec": 665583.6023102192, "min_ops_per_sec": 572082.3798627002, "max_ops_per_sec": 798722.0447284345, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 908.6559139784946, "ser_median_ns": 909.0, "ser_std_ns": 54.34981193192851, "ser_mad_ns": 32.0, "ser_cv": 0.059813413521914105, "ser_min_ns": 780.0, "ser_max_ns": 1020.0, "ser_p5_ns": 798.0, "ser_p25_ns": 879.0, "ser_p50_ns": 909.0, "ser_p75_ns": 945.0, "ser_p95_ns": 1002.0, "ser_p99_ns": 1019.08, "ser_ci_low_ns": 897.9940860215054, "ser_ci_high_ns": 919.4521505376345, "deser_mean_ns": 593.7849462365591, "deser_median_ns": 602.0, "deser_std_ns": 78.22637849638778, "deser_mad_ns": 66.0, "deser_cv": 0.13174193618782484, "deser_min_ns": 452.0, "deser_max_ns": 749.0, "deser_p5_ns": 468.6, "deser_p25_ns": 528.0, "deser_p50_ns": 602.0, "deser_p75_ns": 650.0, "deser_p95_ns": 707.1999999999999, "deser_p99_ns": 743.48, "deser_ci_low_ns": 577.7416666666667, "deser_ci_high_ns": 609.1298387096774, "total_mean_ns": 1502.4408602150538, "total_median_ns": 1520.0, "total_std_ns": 105.61872182171108, "total_mad_ns": 66.0, "total_cv": 0.07029808934149541, "total_min_ns": 1252.0, "total_max_ns": 1748.0, "total_p5_ns": 1336.8, "total_p25_ns": 1427.0, "total_p50_ns": 1520.0, "total_p75_ns": 1573.0, "total_p95_ns": 1662.5999999999997, "total_p99_ns": 1724.08, "total_ci_low_ns": 1480.47123655914, "total_ci_high_ns": 1524.086827956989, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.283193332307656}, {"serializer": "jsoncons_cbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 2132.855670103093, "avg_time_deser_ns": 9924.855670103092, "avg_time_total_ns": 12057.711340206186, "median_size_bytes": 214.0, "avg_ops_per_sec": 82934.47834213123, "min_ops_per_sec": 75210.58965102286, "max_ops_per_sec": 90220.13713460845, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 2132.855670103093, "ser_median_ns": 2139.0, "ser_std_ns": 245.32843588114696, "ser_mad_ns": 188.0, "ser_cv": 0.11502345860528333, "ser_min_ns": 1687.0, "ser_max_ns": 2741.0, "ser_p5_ns": 1782.0, "ser_p25_ns": 1935.0, "ser_p50_ns": 2139.0, "ser_p75_ns": 2313.0, "ser_p95_ns": 2579.0, "ser_p99_ns": 2650.7599999999993, "ser_ci_low_ns": 2084.359793814433, "ser_ci_high_ns": 2181.9731958762886, "deser_mean_ns": 9924.855670103092, "deser_median_ns": 9923.0, "deser_std_ns": 470.3603226448387, "deser_mad_ns": 354.0, "deser_cv": 0.047392157455923276, "deser_min_ns": 9047.0, "deser_max_ns": 11310.0, "deser_p5_ns": 9239.2, "deser_p25_ns": 9551.0, "deser_p50_ns": 9923.0, "deser_p75_ns": 10242.0, "deser_p95_ns": 10726.0, "deser_p99_ns": 10989.359999999997, "deser_ci_low_ns": 9830.51030927835, "deser_ci_high_ns": 10016.122422680413, "total_mean_ns": 12057.711340206186, "total_median_ns": 12013.0, "total_std_ns": 541.8297310726192, "total_mad_ns": 366.0, "total_cv": 0.04493636609676492, "total_min_ns": 11084.0, "total_max_ns": 13296.0, "total_p5_ns": 11187.0, "total_p25_ns": 11682.0, "total_p50_ns": 12013.0, "total_p75_ns": 12392.0, "total_p95_ns": 12928.8, "total_p99_ns": 13158.72, "total_ci_low_ns": 11952.50412371134, "total_ci_high_ns": 12167.273195876289, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.89773245615572}, {"serializer": "custom_binary", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "harness", "avg_time_ser_ns": 575.8681318681319, "avg_time_deser_ns": 494.85714285714283, "avg_time_total_ns": 1070.7252747252746, "median_size_bytes": 157.0, "avg_ops_per_sec": 933946.3853195945, "min_ops_per_sec": 784313.725490196, "max_ops_per_sec": 1122334.455667789, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 575.8681318681319, "ser_median_ns": 567.0, "ser_std_ns": 49.425861155024414, "ser_mad_ns": 37.0, "ser_cv": 0.08582843609471075, "ser_min_ns": 477.0, "ser_max_ns": 702.0, "ser_p5_ns": 501.0, "ser_p25_ns": 543.0, "ser_p50_ns": 567.0, "ser_p75_ns": 612.5, "ser_p95_ns": 661.0, "ser_p99_ns": 691.1999999999999, "ser_ci_low_ns": 565.5489010989011, "ser_ci_high_ns": 586.0343406593406, "deser_mean_ns": 494.85714285714283, "deser_median_ns": 499.0, "deser_std_ns": 43.90104312316038, "deser_mad_ns": 31.0, "deser_cv": 0.08871457905950424, "deser_min_ns": 390.0, "deser_max_ns": 585.0, "deser_p5_ns": 414.0, "deser_p25_ns": 465.5, "deser_p50_ns": 499.0, "deser_p75_ns": 519.0, "deser_p95_ns": 568.0, "deser_p99_ns": 581.4, "deser_ci_low_ns": 485.8557692307692, "deser_ci_high_ns": 504.0450549450549, "total_mean_ns": 1070.7252747252746, "total_median_ns": 1076.0, "total_std_ns": 79.77636324042437, "total_mad_ns": 49.0, "total_cv": 0.07450684608233732, "total_min_ns": 891.0, "total_max_ns": 1275.0, "total_p5_ns": 926.5, "total_p25_ns": 1021.0, "total_p50_ns": 1076.0, "total_p75_ns": 1120.0, "total_p95_ns": 1192.0, "total_p99_ns": 1275.0, "total_ci_low_ns": 1055.3678571428572, "total_ci_high_ns": 1087.2527472527472, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.9647671915713153, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.91975027075037}, {"serializer": "yyjson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "0.10.0", "avg_time_ser_ns": 366.7, "avg_time_deser_ns": 4572.922222222222, "avg_time_total_ns": 4939.622222222222, "median_size_bytes": 272.0, "avg_ops_per_sec": 202444.63139331393, "min_ops_per_sec": 185013.87604070306, "max_ops_per_sec": 222123.5006663705, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 366.7, "ser_median_ns": 368.5, "ser_std_ns": 27.381799088962627, "ser_mad_ns": 18.5, "ser_cv": 0.07467084562029623, "ser_min_ns": 301.0, "ser_max_ns": 441.0, "ser_p5_ns": 319.6, "ser_p25_ns": 349.25, "ser_p50_ns": 368.5, "ser_p75_ns": 385.0, "ser_p95_ns": 409.04999999999995, "ser_p99_ns": 432.99, "ser_ci_low_ns": 361.25388888888887, "ser_ci_high_ns": 372.53361111111116, "deser_mean_ns": 4572.922222222222, "deser_median_ns": 4547.0, "deser_std_ns": 212.41565293778086, "deser_mad_ns": 142.0, "deser_cv": 0.04645074694372496, "deser_min_ns": 4194.0, "deser_max_ns": 5068.0, "deser_p5_ns": 4282.25, "deser_p25_ns": 4396.75, "deser_p50_ns": 4547.0, "deser_p75_ns": 4682.75, "deser_p95_ns": 4979.099999999999, "deser_p99_ns": 5068.0, "deser_ci_low_ns": 4531.370833333333, "deser_ci_high_ns": 4616.1258333333335, "total_mean_ns": 4939.622222222222, "total_median_ns": 4920.5, "total_std_ns": 218.2539278654891, "total_mad_ns": 146.5, "total_cv": 0.044184335976871866, "total_min_ns": 4502.0, "total_max_ns": 5405.0, "total_p5_ns": 4619.2, "total_p25_ns": 4770.5, "total_p50_ns": 4920.5, "total_p75_ns": 5061.25, "total_p95_ns": 5356.75, "total_p99_ns": 5399.66, "total_ci_low_ns": 4894.246111111111, "total_ci_high_ns": 4986.0038888888885, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.54108600640014}, {"serializer": "yas", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "7.x", "avg_time_ser_ns": 788.4468085106383, "avg_time_deser_ns": 438.40425531914894, "avg_time_total_ns": 1226.8510638297873, "median_size_bytes": 212.0, "avg_ops_per_sec": 815094.8631681176, "min_ops_per_sec": 574382.5387708214, "max_ops_per_sec": 1203369.4344163658, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 788.4468085106383, "ser_median_ns": 762.5, "ser_std_ns": 204.70096821352442, "ser_mad_ns": 161.5, "ser_cv": 0.2596255904696993, "ser_min_ns": 447.0, "ser_max_ns": 1296.0, "ser_p5_ns": 494.1, "ser_p25_ns": 649.0, "ser_p50_ns": 762.5, "ser_p75_ns": 939.75, "ser_p95_ns": 1128.5, "ser_p99_ns": 1208.5799999999995, "ser_ci_low_ns": 747.4023936170213, "ser_ci_high_ns": 830.9912234042553, "deser_mean_ns": 438.40425531914894, "deser_median_ns": 437.5, "deser_std_ns": 31.487945858466603, "deser_mad_ns": 22.5, "deser_cv": 0.07182399686231158, "deser_min_ns": 369.0, "deser_max_ns": 516.0, "deser_p5_ns": 386.0, "deser_p25_ns": 416.25, "deser_p50_ns": 437.5, "deser_p75_ns": 460.0, "deser_p95_ns": 483.79999999999995, "deser_p99_ns": 509.48999999999995, "deser_ci_low_ns": 432.1164893617021, "deser_ci_high_ns": 445.3090425531915, "total_mean_ns": 1226.8510638297873, "total_median_ns": 1198.5, "total_std_ns": 205.00516423848325, "total_mad_ns": 173.5, "total_cv": 0.16709865629372397, "total_min_ns": 831.0, "total_max_ns": 1741.0, "total_p5_ns": 938.25, "total_p25_ns": 1061.5, "total_p50_ns": 1198.5, "total_p75_ns": 1393.75, "total_p95_ns": 1574.6, "total_p99_ns": 1645.2099999999994, "total_ci_low_ns": 1185.965159574468, "total_ci_high_ns": 1268.2143617021277, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.9574468085106383, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.45394476963485}, {"serializer": "flexbuffers", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "flatbuffers-flex", "avg_time_ser_ns": 2360.8817204301076, "avg_time_deser_ns": 2723.2688172043013, "avg_time_total_ns": 5084.1505376344085, "median_size_bytes": 312.0, "avg_ops_per_sec": 196689.6913452306, "min_ops_per_sec": 172830.97131005875, "max_ops_per_sec": 223363.85972749608, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 2360.8817204301076, "ser_median_ns": 2358.0, "ser_std_ns": 175.7595844045252, "ser_mad_ns": 105.0, "ser_cv": 0.0744465861561693, "ser_min_ns": 2043.0, "ser_max_ns": 2805.0, "ser_p5_ns": 2119.2, "ser_p25_ns": 2231.0, "ser_p50_ns": 2358.0, "ser_p75_ns": 2461.0, "ser_p95_ns": 2716.3999999999996, "ser_p99_ns": 2778.32, "ser_ci_low_ns": 2326.862903225807, "ser_ci_high_ns": 2395.3787634408604, "deser_mean_ns": 2723.2688172043013, "deser_median_ns": 2726.0, "deser_std_ns": 145.78715424601376, "deser_mad_ns": 101.0, "deser_cv": 0.05353388300302956, "deser_min_ns": 2359.0, "deser_max_ns": 3042.0, "deser_p5_ns": 2468.4, "deser_p25_ns": 2622.0, "deser_p50_ns": 2726.0, "deser_p75_ns": 2825.0, "deser_p95_ns": 2933.6, "deser_p99_ns": 3010.72, "deser_ci_low_ns": 2692.3978494623657, "deser_ci_high_ns": 2750.582258064516, "total_mean_ns": 5084.1505376344085, "total_median_ns": 5089.0, "total_std_ns": 271.1368957234221, "total_mad_ns": 182.0, "total_cv": 0.053329832332143876, "total_min_ns": 4477.0, "total_max_ns": 5786.0, "total_p5_ns": 4623.6, "total_p25_ns": 4907.0, "total_p50_ns": 5089.0, "total_p75_ns": 5264.0, "total_p95_ns": 5580.4, "total_p99_ns": 5720.68, "total_ci_low_ns": 5032.236827956989, "total_ci_high_ns": 5137.38440860215, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.503289942186246}, {"serializer": "jsoncons_bson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 2948.71875, "avg_time_deser_ns": 9679.84375, "avg_time_total_ns": 12628.5625, "median_size_bytes": 306.0, "avg_ops_per_sec": 79185.57634726835, "min_ops_per_sec": 70636.43427279791, "max_ops_per_sec": 89525.51477170993, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 2948.71875, "ser_median_ns": 2930.0, "ser_std_ns": 258.8517439171453, "ser_mad_ns": 174.5, "ser_cv": 0.08778448060437954, "ser_min_ns": 2454.0, "ser_max_ns": 3599.0, "ser_p5_ns": 2537.25, "ser_p25_ns": 2764.75, "ser_p50_ns": 2930.0, "ser_p75_ns": 3103.75, "ser_p95_ns": 3364.75, "ser_p99_ns": 3539.1499999999996, "ser_ci_low_ns": 2894.9781249999996, "ser_ci_high_ns": 3001.4549479166667, "deser_mean_ns": 9679.84375, "deser_median_ns": 9628.5, "deser_std_ns": 488.1710728643996, "deser_mad_ns": 366.5, "deser_cv": 0.05043171000197184, "deser_min_ns": 8578.0, "deser_max_ns": 10880.0, "deser_p5_ns": 8858.25, "deser_p25_ns": 9332.25, "deser_p50_ns": 9628.5, "deser_p75_ns": 10051.75, "deser_p95_ns": 10476.5, "deser_p99_ns": 10817.3, "deser_ci_low_ns": 9591.228645833333, "deser_ci_high_ns": 9781.190885416667, "total_mean_ns": 12628.5625, "total_median_ns": 12694.5, "total_std_ns": 582.8505236291179, "total_mad_ns": 402.0, "total_cv": 0.04615335463787885, "total_min_ns": 11170.0, "total_max_ns": 14157.0, "total_p5_ns": 11741.25, "total_p25_ns": 12191.0, "total_p50_ns": 12694.5, "total_p75_ns": 12948.0, "total_p95_ns": 13629.5, "total_p99_ns": 13833.05, "total_ci_low_ns": 12514.16953125, "total_ci_high_ns": 12739.115885416666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.334933940130107}, {"serializer": "zpp_bits", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "4.4.25", "avg_time_ser_ns": 538.0714285714286, "avg_time_deser_ns": 364.25, "avg_time_total_ns": 902.3214285714286, "median_size_bytes": 161.0, "avg_ops_per_sec": 1108252.5232535128, "min_ops_per_sec": 996015.93625498, "max_ops_per_sec": 1280409.7311139565, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 538.0714285714286, "ser_median_ns": 536.5, "ser_std_ns": 28.823846266541985, "ser_mad_ns": 18.0, "ser_cv": 0.053568810265709255, "ser_min_ns": 475.0, "ser_max_ns": 608.0, "ser_p5_ns": 487.8, "ser_p25_ns": 519.75, "ser_p50_ns": 536.5, "ser_p75_ns": 556.0, "ser_p95_ns": 584.0, "ser_p99_ns": 603.85, "ser_ci_low_ns": 531.7497023809524, "ser_ci_high_ns": 544.13125, "deser_mean_ns": 364.25, "deser_median_ns": 363.0, "deser_std_ns": 24.86536033477724, "deser_mad_ns": 14.5, "deser_cv": 0.06826454450179063, "deser_min_ns": 299.0, "deser_max_ns": 428.0, "deser_p5_ns": 324.15, "deser_p25_ns": 349.75, "deser_p50_ns": 363.0, "deser_p75_ns": 378.0, "deser_p95_ns": 402.54999999999995, "deser_p99_ns": 421.36, "deser_ci_low_ns": 359.3208333333333, "deser_ci_high_ns": 369.42857142857144, "total_mean_ns": 902.3214285714286, "total_median_ns": 904.5, "total_std_ns": 42.011518992474876, "total_mad_ns": 23.5, "total_cv": 0.046559371929123156, "total_min_ns": 781.0, "total_max_ns": 1004.0, "total_p5_ns": 839.3, "total_p25_ns": 877.5, "total_p50_ns": 904.5, "total_p75_ns": 924.0, "total_p95_ns": 971.3499999999999, "total_p99_ns": 984.08, "total_ci_low_ns": 893.6785714285714, "total_ci_high_ns": 910.5130952380953, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.45618556701030927, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.8560242455694009}, {"serializer": "cereal", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "1.3.2", "avg_time_ser_ns": 581.9885057471264, "avg_time_deser_ns": 833.7471264367816, "avg_time_total_ns": 1415.7356321839081, "median_size_bytes": 205.0, "avg_ops_per_sec": 706346.564476451, "min_ops_per_sec": 628140.703517588, "max_ops_per_sec": 787401.5748031496, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 581.9885057471264, "ser_median_ns": 580.0, "ser_std_ns": 41.86425856760949, "ser_mad_ns": 28.0, "ser_cv": 0.07193313640080631, "ser_min_ns": 481.0, "ser_max_ns": 685.0, "ser_p5_ns": 508.9, "ser_p25_ns": 556.0, "ser_p50_ns": 580.0, "ser_p75_ns": 610.5, "ser_p95_ns": 652.3000000000001, "ser_p99_ns": 663.5, "ser_ci_low_ns": 573.275, "ser_ci_high_ns": 590.8060344827586, "deser_mean_ns": 833.7471264367816, "deser_median_ns": 828.0, "deser_std_ns": 56.200889339732434, "deser_mad_ns": 33.0, "deser_cv": 0.06740759584973974, "deser_min_ns": 705.0, "deser_max_ns": 974.0, "deser_p5_ns": 752.5, "deser_p25_ns": 794.5, "deser_p50_ns": 828.0, "deser_p75_ns": 861.0, "deser_p95_ns": 937.8, "deser_p99_ns": 967.12, "deser_ci_low_ns": 822.1479885057471, "deser_ci_high_ns": 846.0359195402299, "total_mean_ns": 1415.7356321839081, "total_median_ns": 1412.0, "total_std_ns": 79.8602645570308, "total_mad_ns": 64.0, "total_cv": 0.0564090235080392, "total_min_ns": 1270.0, "total_max_ns": 1592.0, "total_p5_ns": 1286.3, "total_p25_ns": 1356.0, "total_p50_ns": 1412.0, "total_p75_ns": 1476.5, "total_p95_ns": 1538.2, "total_p99_ns": 1592.0, "total_ci_low_ns": 1398.7114942528735, "total_ci_high_ns": 1432.819540229885, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.538514513118503}, {"serializer": "nlohmann_ubjson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 1553.9886363636363, "avg_time_deser_ns": 4974.306818181818, "avg_time_total_ns": 6528.295454545455, "median_size_bytes": 255.0, "avg_ops_per_sec": 153179.34167696565, "min_ops_per_sec": 134228.1879194631, "max_ops_per_sec": 173130.19390581717, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 1553.9886363636363, "ser_median_ns": 1552.0, "ser_std_ns": 82.65751168042492, "ser_mad_ns": 45.5, "ser_cv": 0.0531905509128079, "ser_min_ns": 1352.0, "ser_max_ns": 1762.0, "ser_p5_ns": 1416.7, "ser_p25_ns": 1503.75, "ser_p50_ns": 1552.0, "ser_p75_ns": 1593.0, "ser_p95_ns": 1705.35, "ser_p99_ns": 1726.33, "ser_ci_low_ns": 1537.3144886363636, "ser_ci_high_ns": 1571.7505681818182, "deser_mean_ns": 4974.306818181818, "deser_median_ns": 4990.0, "deser_std_ns": 338.92603736442675, "deser_mad_ns": 276.0, "deser_cv": 0.06813533015808405, "deser_min_ns": 4295.0, "deser_max_ns": 5772.0, "deser_p5_ns": 4400.7, "deser_p25_ns": 4704.5, "deser_p50_ns": 4990.0, "deser_p75_ns": 5253.75, "deser_p95_ns": 5451.4, "deser_p99_ns": 5627.579999999999, "deser_ci_low_ns": 4904.913636363637, "deser_ci_high_ns": 5041.1596590909085, "total_mean_ns": 6528.295454545455, "total_median_ns": 6565.5, "total_std_ns": 366.672303794418, "total_mad_ns": 284.5, "total_cv": 0.0561666221064053, "total_min_ns": 5776.0, "total_max_ns": 7450.0, "total_p5_ns": 5926.15, "total_p25_ns": 6244.75, "total_p50_ns": 6565.5, "total_p75_ns": 6803.25, "total_p95_ns": 7030.45, "total_p99_ns": 7235.979999999999, "total_ci_low_ns": 6454.207102272727, "total_ci_high_ns": 6604.6255681818175, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.931632304371263}, {"serializer": "cista", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "0.15", "avg_time_ser_ns": 285.1489361702128, "avg_time_deser_ns": 759.3085106382979, "avg_time_total_ns": 1044.4574468085107, "median_size_bytes": 208.0, "avg_ops_per_sec": 957434.8893347865, "min_ops_per_sec": 846740.050804403, "max_ops_per_sec": 1133786.8480725624, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 285.1489361702128, "ser_median_ns": 281.0, "ser_std_ns": 26.761373804204354, "ser_mad_ns": 16.5, "ser_cv": 0.09385051252034059, "ser_min_ns": 225.0, "ser_max_ns": 346.0, "ser_p5_ns": 244.95, "ser_p25_ns": 270.0, "ser_p50_ns": 281.0, "ser_p75_ns": 300.0, "ser_p95_ns": 338.4, "ser_p99_ns": 345.07, "ser_ci_low_ns": 279.6587765957447, "ser_ci_high_ns": 290.6178191489361, "deser_mean_ns": 759.3085106382979, "deser_median_ns": 753.0, "deser_std_ns": 48.89269061534058, "deser_mad_ns": 31.0, "deser_cv": 0.06439107415540475, "deser_min_ns": 636.0, "deser_max_ns": 861.0, "deser_p5_ns": 675.2, "deser_p25_ns": 731.0, "deser_p50_ns": 753.0, "deser_p75_ns": 797.25, "deser_p95_ns": 838.7, "deser_p99_ns": 861.0, "deser_ci_low_ns": 749.2231382978723, "deser_ci_high_ns": 768.5239361702128, "total_mean_ns": 1044.4574468085107, "total_median_ns": 1038.5, "total_std_ns": 65.8921675136558, "total_mad_ns": 42.0, "total_cv": 0.06308746011146625, "total_min_ns": 882.0, "total_max_ns": 1181.0, "total_p5_ns": 929.3, "total_p25_ns": 1008.0, "total_p50_ns": 1038.5, "total_p75_ns": 1088.75, "total_p95_ns": 1151.0, "total_p99_ns": 1174.49, "total_ci_low_ns": 1031.6380319148936, "total_ci_high_ns": 1057.3659574468086, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.9609563500767713, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.8314729725059213}, {"serializer": "bitsery", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "5.2.4", "avg_time_ser_ns": 496.54639175257734, "avg_time_deser_ns": 355.74226804123714, "avg_time_total_ns": 852.2886597938144, "median_size_bytes": 121.0, "avg_ops_per_sec": 1173311.3992645636, "min_ops_per_sec": 990099.0099009901, "max_ops_per_sec": 1474926.2536873156, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 496.54639175257734, "ser_median_ns": 499.0, "ser_std_ns": 36.10892682176986, "ser_mad_ns": 24.0, "ser_cv": 0.07272014744548275, "ser_min_ns": 411.0, "ser_max_ns": 583.0, "ser_p5_ns": 436.2, "ser_p25_ns": 474.0, "ser_p50_ns": 499.0, "ser_p75_ns": 520.0, "ser_p95_ns": 550.0, "ser_p99_ns": 581.0799999999999, "ser_ci_low_ns": 489.3396907216495, "ser_ci_high_ns": 503.97938144329896, "deser_mean_ns": 355.74226804123714, "deser_median_ns": 355.0, "deser_std_ns": 42.96129031623397, "deser_mad_ns": 30.0, "deser_cv": 0.12076521171572999, "deser_min_ns": 235.0, "deser_max_ns": 463.0, "deser_p5_ns": 285.8, "deser_p25_ns": 327.0, "deser_p50_ns": 355.0, "deser_p75_ns": 388.0, "deser_p95_ns": 416.0, "deser_p99_ns": 447.6399999999999, "deser_ci_low_ns": 347.0306701030928, "deser_ci_high_ns": 364.18582474226804, "total_mean_ns": 852.2886597938144, "total_median_ns": 857.0, "total_std_ns": 69.21267928802355, "total_mad_ns": 43.0, "total_cv": 0.0812080255822804, "total_min_ns": 678.0, "total_max_ns": 1010.0, "total_p5_ns": 722.4, "total_p25_ns": 811.0, "total_p50_ns": 857.0, "total_p75_ns": 897.0, "total_p95_ns": 963.1999999999999, "total_p99_ns": 997.5199999999999, "total_ci_low_ns": 838.4917525773196, "total_ci_high_ns": 866.055412371134, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "msgpack-cxx", "avg_time_ser_ns": 612.8526315789474, "avg_time_deser_ns": 1450.6631578947367, "avg_time_total_ns": 2063.5157894736844, "median_size_bytes": 214.0, "avg_ops_per_sec": 484609.81258353137, "min_ops_per_sec": 379939.20972644375, "max_ops_per_sec": 628140.703517588, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 612.8526315789474, "ser_median_ns": 612.0, "ser_std_ns": 66.8814397847562, "ser_mad_ns": 32.0, "ser_cv": 0.10913135774981259, "ser_min_ns": 472.0, "ser_max_ns": 759.0, "ser_p5_ns": 493.4, "ser_p25_ns": 581.5, "ser_p50_ns": 612.0, "ser_p75_ns": 647.0, "ser_p95_ns": 735.9, "ser_p99_ns": 757.12, "ser_ci_low_ns": 599.2105263157895, "ser_ci_high_ns": 625.9684210526316, "deser_mean_ns": 1450.6631578947367, "deser_median_ns": 1430.0, "deser_std_ns": 208.61221331243553, "deser_mad_ns": 147.0, "deser_cv": 0.14380472281048506, "deser_min_ns": 1057.0, "deser_max_ns": 2022.0, "deser_p5_ns": 1140.0, "deser_p25_ns": 1312.0, "deser_p50_ns": 1430.0, "deser_p75_ns": 1607.5, "deser_p95_ns": 1822.3, "deser_p99_ns": 1903.5600000000004, "deser_ci_low_ns": 1409.5471052631578, "deser_ci_high_ns": 1492.717105263158, "total_mean_ns": 2063.5157894736844, "total_median_ns": 2042.0, "total_std_ns": 226.6049549306108, "total_mad_ns": 155.0, "total_cv": 0.10981498473942287, "total_min_ns": 1592.0, "total_max_ns": 2632.0, "total_p5_ns": 1716.9, "total_p25_ns": 1899.5, "total_p50_ns": 2042.0, "total_p75_ns": 2230.0, "total_p95_ns": 2437.2999999999997, "total_p99_ns": 2571.84, "total_ci_low_ns": 2017.5365789473683, "total_ci_high_ns": 2107.959210526316, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.232486418893782}, {"serializer": "avro_c", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "avro-c", "avg_time_ser_ns": 1559.531914893617, "avg_time_deser_ns": 1857.6382978723404, "avg_time_total_ns": 3417.1702127659573, "median_size_bytes": 120.0, "avg_ops_per_sec": 292639.7977672206, "min_ops_per_sec": 260756.19295958278, "max_ops_per_sec": 335457.9000335458, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 1559.531914893617, "ser_median_ns": 1561.0, "ser_std_ns": 98.9159197780674, "ser_mad_ns": 76.5, "ser_cv": 0.06342667234534595, "ser_min_ns": 1308.0, "ser_max_ns": 1815.0, "ser_p5_ns": 1395.85, "ser_p25_ns": 1493.0, "ser_p50_ns": 1561.0, "ser_p75_ns": 1638.0, "ser_p95_ns": 1707.7, "ser_p99_ns": 1746.1799999999994, "ser_ci_low_ns": 1540.6755319148936, "ser_ci_high_ns": 1579.4047872340425, "deser_mean_ns": 1857.6382978723404, "deser_median_ns": 1864.0, "deser_std_ns": 110.64355741330631, "deser_mad_ns": 73.5, "deser_cv": 0.05956141060400871, "deser_min_ns": 1576.0, "deser_max_ns": 2140.0, "deser_p5_ns": 1677.0, "deser_p25_ns": 1779.5, "deser_p50_ns": 1864.0, "deser_p75_ns": 1925.75, "deser_p95_ns": 2049.8, "deser_p99_ns": 2067.4599999999996, "deser_ci_low_ns": 1836.1353723404256, "deser_ci_high_ns": 1879.5757978723404, "total_mean_ns": 3417.1702127659573, "total_median_ns": 3434.5, "total_std_ns": 189.01019135621598, "total_mad_ns": 126.0, "total_cv": 0.05531190417442672, "total_min_ns": 2981.0, "total_max_ns": 3835.0, "total_p5_ns": 3066.9, "total_p25_ns": 3286.0, "total_p50_ns": 3434.5, "total_p75_ns": 3543.75, "total_p95_ns": 3722.7999999999997, "total_p99_ns": 3766.1799999999994, "total_ci_low_ns": 3377.910904255319, "total_ci_high_ns": 3456.4808510638295, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.058918545432086}, {"serializer": "nlohmann_cbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 1486.236559139785, "avg_time_deser_ns": 4368.0, "avg_time_total_ns": 5854.236559139785, "median_size_bytes": 214.0, "avg_ops_per_sec": 170816.4659726253, "min_ops_per_sec": 147601.47601476015, "max_ops_per_sec": 202511.1381125962, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1486.236559139785, "ser_median_ns": 1485.0, "ser_std_ns": 95.88686697143154, "ser_mad_ns": 71.0, "ser_cv": 0.06451655786675686, "ser_min_ns": 1295.0, "ser_max_ns": 1776.0, "ser_p5_ns": 1329.2, "ser_p25_ns": 1413.0, "ser_p50_ns": 1485.0, "ser_p75_ns": 1555.0, "ser_p95_ns": 1628.8, "ser_p99_ns": 1703.32, "ser_ci_low_ns": 1466.415860215054, "ser_ci_high_ns": 1504.8190860215052, "deser_mean_ns": 4368.0, "deser_median_ns": 4398.0, "deser_std_ns": 354.7053277936735, "deser_mad_ns": 260.0, "deser_cv": 0.08120543218719632, "deser_min_ns": 3580.0, "deser_max_ns": 5097.0, "deser_p5_ns": 3805.6, "deser_p25_ns": 4073.0, "deser_p50_ns": 4398.0, "deser_p75_ns": 4637.0, "deser_p95_ns": 4888.0, "deser_p99_ns": 5006.84, "deser_ci_low_ns": 4298.956451612903, "deser_ci_high_ns": 4439.8513440860215, "total_mean_ns": 5854.236559139785, "total_median_ns": 5903.0, "total_std_ns": 407.35972239718313, "total_mad_ns": 313.0, "total_cv": 0.06958374815947652, "total_min_ns": 4938.0, "total_max_ns": 6775.0, "total_p5_ns": 5197.6, "total_p25_ns": 5557.0, "total_p50_ns": 5903.0, "total_p75_ns": 6196.0, "total_p95_ns": 6421.2, "total_p99_ns": 6677.48, "total_ci_low_ns": 5773.7970430107525, "total_ci_high_ns": 5935.752688172043, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.22515754316694}, {"serializer": "arduinojson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "7.2.1", "avg_time_ser_ns": 3328.2842105263157, "avg_time_deser_ns": 8524.263157894737, "avg_time_total_ns": 11852.547368421052, "median_size_bytes": 272.0, "avg_ops_per_sec": 84370.0488102935, "min_ops_per_sec": 78051.82641273805, "max_ops_per_sec": 91340.88417975885, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 3328.2842105263157, "ser_median_ns": 3303.0, "ser_std_ns": 101.00681072021875, "ser_mad_ns": 55.0, "ser_cv": 0.03034801246863654, "ser_min_ns": 3115.0, "ser_max_ns": 3578.0, "ser_p5_ns": 3188.3, "ser_p25_ns": 3266.0, "ser_p50_ns": 3303.0, "ser_p75_ns": 3377.0, "ser_p95_ns": 3520.6, "ser_p99_ns": 3577.06, "ser_ci_low_ns": 3307.883684210526, "ser_ci_high_ns": 3348.918157894737, "deser_mean_ns": 8524.263157894737, "deser_median_ns": 8501.0, "deser_std_ns": 411.2435270272792, "deser_mad_ns": 305.0, "deser_cv": 0.048243879782900234, "deser_min_ns": 7695.0, "deser_max_ns": 9418.0, "deser_p5_ns": 7929.9, "deser_p25_ns": 8197.5, "deser_p50_ns": 8501.0, "deser_p75_ns": 8805.5, "deser_p95_ns": 9299.8, "deser_p99_ns": 9418.0, "deser_ci_low_ns": 8442.055526315791, "deser_ci_high_ns": 8604.667631578946, "total_mean_ns": 11852.547368421052, "total_median_ns": 11803.0, "total_std_ns": 445.54825820772476, "total_mad_ns": 374.0, "total_cv": 0.03759092829232699, "total_min_ns": 10948.0, "total_max_ns": 12812.0, "total_p5_ns": 11231.7, "total_p25_ns": 11468.0, "total_p50_ns": 11803.0, "total_p75_ns": 12189.0, "total_p95_ns": 12616.6, "total_p99_ns": 12778.16, "total_ci_low_ns": 11762.557368421054, "total_ci_high_ns": 11942.544210526316, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 34.53936693675626}, {"serializer": "capnproto", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "1.0.x", "avg_time_ser_ns": 1061.505376344086, "avg_time_deser_ns": 682.6774193548387, "avg_time_total_ns": 1744.1827956989248, "median_size_bytes": 280.0, "avg_ops_per_sec": 573334.4019135806, "min_ops_per_sec": 454338.93684688775, "max_ops_per_sec": 777604.9766718507, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1061.505376344086, "ser_median_ns": 1061.0, "ser_std_ns": 185.55941411427477, "ser_mad_ns": 136.0, "ser_cv": 0.17480779490100845, "ser_min_ns": 686.0, "ser_max_ns": 1485.0, "ser_p5_ns": 785.0, "ser_p25_ns": 923.0, "ser_p50_ns": 1061.0, "ser_p75_ns": 1188.0, "ser_p95_ns": 1384.1999999999998, "ser_p99_ns": 1424.28, "ser_ci_low_ns": 1023.5451612903225, "ser_ci_high_ns": 1098.099193548387, "deser_mean_ns": 682.6774193548387, "deser_median_ns": 684.0, "deser_std_ns": 52.95366335611824, "deser_mad_ns": 31.0, "deser_cv": 0.07756762103858932, "deser_min_ns": 560.0, "deser_max_ns": 809.0, "deser_p5_ns": 588.0, "deser_p25_ns": 653.0, "deser_p50_ns": 684.0, "deser_p75_ns": 715.0, "deser_p95_ns": 765.8, "deser_p99_ns": 798.88, "deser_ci_low_ns": 672.0513440860215, "deser_ci_high_ns": 692.6669354838709, "total_mean_ns": 1744.1827956989248, "total_median_ns": 1739.0, "total_std_ns": 202.5063040476904, "total_mad_ns": 146.0, "total_cv": 0.11610383071491229, "total_min_ns": 1286.0, "total_max_ns": 2201.0, "total_p5_ns": 1443.2, "total_p25_ns": 1598.0, "total_p50_ns": 1739.0, "total_p75_ns": 1889.0, "total_p95_ns": 2091.4, "total_p99_ns": 2153.16, "total_ci_low_ns": 1701.0306451612903, "total_ci_high_ns": 1786.30188172043, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.920328094853147}, {"serializer": "simdjson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.10.1", "avg_time_ser_ns": 138.17582417582418, "avg_time_deser_ns": 4748.307692307692, "avg_time_total_ns": 4886.483516483517, "median_size_bytes": 272.0, "avg_ops_per_sec": 204646.1420828929, "min_ops_per_sec": 178731.00983020553, "max_ops_per_sec": 230627.30627306274, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 138.17582417582418, "ser_median_ns": 138.0, "ser_std_ns": 9.122126222169193, "ser_mad_ns": 5.0, "ser_cv": 0.06601825085234583, "ser_min_ns": 117.0, "ser_max_ns": 160.0, "ser_p5_ns": 121.5, "ser_p25_ns": 133.0, "ser_p50_ns": 138.0, "ser_p75_ns": 143.5, "ser_p95_ns": 152.5, "ser_p99_ns": 160.0, "ser_ci_low_ns": 136.3403846153846, "ser_ci_high_ns": 140.07692307692307, "deser_mean_ns": 4748.307692307692, "deser_median_ns": 4715.0, "deser_std_ns": 264.0504872729074, "deser_mad_ns": 170.0, "deser_cv": 0.05560938851976082, "deser_min_ns": 4218.0, "deser_max_ns": 5436.0, "deser_p5_ns": 4348.0, "deser_p25_ns": 4551.5, "deser_p50_ns": 4715.0, "deser_p75_ns": 4930.5, "deser_p95_ns": 5222.5, "deser_p99_ns": 5329.799999999999, "deser_ci_low_ns": 4694.606318681319, "deser_ci_high_ns": 4800.5291208791205, "total_mean_ns": 4886.483516483517, "total_median_ns": 4853.0, "total_std_ns": 265.7815879684906, "total_mad_ns": 179.0, "total_cv": 0.054391176614416635, "total_min_ns": 4336.0, "total_max_ns": 5595.0, "total_p5_ns": 4494.5, "total_p25_ns": 4695.5, "total_p50_ns": 4853.0, "total_p75_ns": 5062.0, "total_p95_ns": 5366.5, "total_p99_ns": 5489.699999999999, "total_ci_low_ns": 4834.6914835164835, "total_ci_high_ns": 4941.948626373626, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.986731308047585}, {"serializer": "nlohmann_json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 2157.054945054945, "avg_time_deser_ns": 4567.505494505494, "avg_time_total_ns": 6724.56043956044, "median_size_bytes": 272.0, "avg_ops_per_sec": 148708.60467206483, "min_ops_per_sec": 134970.9812390336, "max_ops_per_sec": 164122.76382734286, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 2157.054945054945, "ser_median_ns": 2144.0, "ser_std_ns": 108.8148644500131, "ser_mad_ns": 66.0, "ser_cv": 0.05044603277235543, "ser_min_ns": 1892.0, "ser_max_ns": 2438.0, "ser_p5_ns": 1996.0, "ser_p25_ns": 2089.0, "ser_p50_ns": 2144.0, "ser_p75_ns": 2228.0, "ser_p95_ns": 2337.5, "ser_p99_ns": 2424.5, "ser_ci_low_ns": 2135.8513736263735, "ser_ci_high_ns": 2179.5607142857143, "deser_mean_ns": 4567.505494505494, "deser_median_ns": 4560.0, "deser_std_ns": 192.66991771342302, "deser_mad_ns": 137.0, "deser_cv": 0.042182744595533894, "deser_min_ns": 4177.0, "deser_max_ns": 4973.0, "deser_p5_ns": 4285.5, "deser_p25_ns": 4431.0, "deser_p50_ns": 4560.0, "deser_p75_ns": 4686.5, "deser_p95_ns": 4927.0, "deser_p99_ns": 4971.2, "deser_ci_low_ns": 4529.017857142857, "deser_ci_high_ns": 4605.645604395604, "total_mean_ns": 6724.56043956044, "total_median_ns": 6725.0, "total_std_ns": 258.2214901458397, "total_mad_ns": 168.0, "total_cv": 0.038399757495929165, "total_min_ns": 6093.0, "total_max_ns": 7409.0, "total_p5_ns": 6274.5, "total_p25_ns": 6555.5, "total_p50_ns": 6725.0, "total_p75_ns": 6881.5, "total_p95_ns": 7110.0, "total_p99_ns": 7397.3, "total_ci_low_ns": 6669.246703296703, "total_ci_high_ns": 6776.100549450549, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 31.380370254678848}, {"serializer": "bitsery", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "5.2.4", "avg_time_ser_ns": 19542.802197802197, "avg_time_deser_ns": 18516.417582417584, "avg_time_total_ns": 38059.21978021978, "median_size_bytes": 10263.0, "avg_ops_per_sec": 26274.842358164216, "min_ops_per_sec": 14835.91478250549, "max_ops_per_sec": 37194.07870267054, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 19542.802197802197, "ser_median_ns": 12783.0, "ser_std_ns": 11053.492940363321, "ser_mad_ns": 2800.0, "ser_cv": 0.5656042991422391, "ser_min_ns": 9244.0, "ser_max_ns": 48925.0, "ser_p5_ns": 9764.5, "ser_p25_ns": 10773.5, "ser_p50_ns": 12783.0, "ser_p75_ns": 30466.0, "ser_p95_ns": 39632.0, "ser_p99_ns": 42606.99999999996, "ser_ci_low_ns": 17356.54203296703, "ser_ci_high_ns": 21788.414835164836, "deser_mean_ns": 18516.417582417584, "deser_median_ns": 18534.0, "deser_std_ns": 617.4409025419908, "deser_mad_ns": 404.0, "deser_cv": 0.033345591812980434, "deser_min_ns": 17102.0, "deser_max_ns": 20166.0, "deser_p5_ns": 17596.5, "deser_p25_ns": 18109.5, "deser_p50_ns": 18534.0, "deser_p75_ns": 18898.0, "deser_p95_ns": 19713.0, "deser_p99_ns": 20012.1, "deser_ci_low_ns": 18396.785714285714, "deser_ci_high_ns": 18644.23186813187, "total_mean_ns": 38059.21978021978, "total_median_ns": 31537.0, "total_std_ns": 11062.373851938328, "total_mad_ns": 3405.0, "total_cv": 0.2906621290667574, "total_min_ns": 26886.0, "total_max_ns": 67404.0, "total_p5_ns": 27684.5, "total_p25_ns": 29212.0, "total_p50_ns": 31537.0, "total_p75_ns": 48922.5, "total_p95_ns": 57607.5, "total_p99_ns": 61383.899999999965, "total_ci_low_ns": 35893.25604395605, "total_ci_high_ns": 40315.20549450549, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "yas", "effect_vs_fastest_cliffs_delta": 0.06315906315906315, "effect_vs_fastest_cliffs_label": "negligible", "effect_vs_fastest_hedges_g": 0.07354053509815361}, {"serializer": "jsoncons_cbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 120676.03092783505, "avg_time_deser_ns": 637179.649484536, "avg_time_total_ns": 757855.6804123712, "median_size_bytes": 19564.0, "avg_ops_per_sec": 1319.5124426010386, "min_ops_per_sec": 1241.4048233543006, "max_ops_per_sec": 1406.0979656574632, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 120676.03092783505, "ser_median_ns": 118808.0, "ser_std_ns": 12955.583889818197, "ser_mad_ns": 10109.0, "ser_cv": 0.10735838583857395, "ser_min_ns": 100113.0, "ser_max_ns": 161044.0, "ser_p5_ns": 105166.6, "ser_p25_ns": 109918.0, "ser_p50_ns": 118808.0, "ser_p75_ns": 130643.0, "ser_p95_ns": 143118.6, "ser_p99_ns": 145956.63999999987, "ser_ci_low_ns": 118181.26907216496, "ser_ci_high_ns": 123145.46417525773, "deser_mean_ns": 637179.649484536, "deser_median_ns": 635617.0, "deser_std_ns": 16595.96190721885, "deser_mad_ns": 11195.0, "deser_cv": 0.026045969799325212, "deser_min_ns": 603964.0, "deser_max_ns": 675499.0, "deser_p5_ns": 611286.6, "deser_p25_ns": 625694.0, "deser_p50_ns": 635617.0, "deser_p75_ns": 647238.0, "deser_p95_ns": 666263.0, "deser_p99_ns": 672684.28, "deser_ci_low_ns": 634099.262371134, "deser_ci_high_ns": 640534.9837628865, "total_mean_ns": 757855.6804123712, "total_median_ns": 757345.0, "total_std_ns": 22513.307117007855, "total_mad_ns": 17596.0, "total_cv": 0.02970658886499038, "total_min_ns": 711188.0, "total_max_ns": 805539.0, "total_p5_ns": 722465.0, "total_p25_ns": 739899.0, "total_p50_ns": 757345.0, "total_p75_ns": 774941.0, "total_p95_ns": 792718.6, "total_p99_ns": 801823.7999999999, "total_ci_low_ns": 753303.5579896908, "total_ci_high_ns": 762558.3064432989, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "yas", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 41.09012426712747}, {"serializer": "thrift", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "TBinaryProtocol", "avg_time_ser_ns": 29007.885416666668, "avg_time_deser_ns": 26803.697916666668, "avg_time_total_ns": 55811.583333333336, "median_size_bytes": 18368.0, "avg_ops_per_sec": 17917.427535204013, "min_ops_per_sec": 10625.185940753963, "max_ops_per_sec": 23191.63245900879, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 29007.885416666668, "ser_median_ns": 22191.5, "ser_std_ns": 10889.919358717218, "ser_mad_ns": 3926.0, "ser_cv": 0.37541238191944676, "ser_min_ns": 17940.0, "ser_max_ns": 67651.0, "ser_p5_ns": 18288.25, "ser_p25_ns": 19798.25, "ser_p50_ns": 22191.5, "ser_p75_ns": 39639.25, "ser_p95_ns": 42641.0, "ser_p99_ns": 51414.54999999995, "ser_ci_low_ns": 26958.221875, "ser_ci_high_ns": 31242.965624999997, "deser_mean_ns": 26803.697916666668, "deser_median_ns": 26684.5, "deser_std_ns": 1150.023799477226, "deser_mad_ns": 733.5, "deser_cv": 0.04290541562782409, "deser_min_ns": 24534.0, "deser_max_ns": 29761.0, "deser_p5_ns": 25259.75, "deser_p25_ns": 25963.75, "deser_p50_ns": 26684.5, "deser_p75_ns": 27418.5, "deser_p95_ns": 28965.0, "deser_p99_ns": 29660.3, "deser_ci_low_ns": 26572.74921875, "deser_ci_high_ns": 27034.479947916665, "total_mean_ns": 55811.583333333336, "total_median_ns": 49951.0, "total_std_ns": 10991.250343764272, "total_mad_ns": 5971.0, "total_cv": 0.1969349315556825, "total_min_ns": 43119.0, "total_max_ns": 94116.0, "total_p5_ns": 43695.0, "total_p25_ns": 46133.5, "total_p50_ns": 49951.0, "total_p75_ns": 65664.0, "total_p95_ns": 71465.0, "total_p99_ns": 77664.84999999995, "total_ci_low_ns": 53608.01276041666, "total_ci_high_ns": 58018.407812499994, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "yas", "effect_vs_fastest_cliffs_delta": 0.6973905723905723, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.7292288906310505}, {"serializer": "arduinojson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "7.2.1", "avg_time_ser_ns": 115992.89583333333, "avg_time_deser_ns": 3229025.7916666665, "avg_time_total_ns": 3345018.6875, "median_size_bytes": 25463.0, "avg_ops_per_sec": 298.95199202829565, "min_ops_per_sec": 284.5997119281716, "max_ops_per_sec": 314.22025771717097, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 115992.89583333333, "ser_median_ns": 111781.5, "ser_std_ns": 10143.763789669692, "ser_mad_ns": 6161.0, "ser_cv": 0.0874515953480889, "ser_min_ns": 101972.0, "ser_max_ns": 139326.0, "ser_p5_ns": 103540.25, "ser_p25_ns": 107543.5, "ser_p50_ns": 111781.5, "ser_p75_ns": 126615.5, "ser_p95_ns": 131744.75, "ser_p99_ns": 136799.94999999998, "ser_ci_low_ns": 113970.02213541667, "ser_ci_high_ns": 118047.36614583332, "deser_mean_ns": 3229025.7916666665, "deser_median_ns": 3230264.5, "deser_std_ns": 68344.39341097436, "deser_mad_ns": 44329.5, "deser_cv": 0.02116563874694178, "deser_min_ns": 3080509.0, "deser_max_ns": 3401017.0, "deser_p5_ns": 3120977.25, "deser_p25_ns": 3182384.75, "deser_p50_ns": 3230264.5, "deser_p75_ns": 3273247.25, "deser_p95_ns": 3340739.75, "deser_p99_ns": 3382663.9499999997, "deser_ci_low_ns": 3215609.9385416666, "deser_ci_high_ns": 3243136.457291667, "total_mean_ns": 3345018.6875, "total_median_ns": 3346388.5, "total_std_ns": 70530.25751642266, "total_mad_ns": 51253.5, "total_cv": 0.021085160982803226, "total_min_ns": 3182481.0, "total_max_ns": 3513707.0, "total_p5_ns": 3234194.25, "total_p25_ns": 3297836.0, "total_p50_ns": 3346388.5, "total_p75_ns": 3399250.25, "total_p95_ns": 3456514.5, "total_p99_ns": 3498203.0, "total_ci_low_ns": 3331595.379166667, "total_ci_high_ns": 3358876.9828125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "yas", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 65.85509476937297}, {"serializer": "zpp_bits", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "4.4.25", "avg_time_ser_ns": 31181.489361702126, "avg_time_deser_ns": 17819.340425531915, "avg_time_total_ns": 49000.82978723404, "median_size_bytes": 14270.0, "avg_ops_per_sec": 20407.81767047801, "min_ops_per_sec": 14349.878743524618, "max_ops_per_sec": 27270.991845973436, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 31181.489361702126, "ser_median_ns": 24061.0, "ser_std_ns": 10254.848807224093, "ser_mad_ns": 3367.5, "ser_cv": 0.3288761703544331, "ser_min_ns": 19970.0, "ser_max_ns": 52294.0, "ser_p5_ns": 20877.75, "ser_p25_ns": 22117.5, "ser_p50_ns": 24061.0, "ser_p75_ns": 42162.25, "ser_p95_ns": 46396.599999999984, "ser_p99_ns": 50891.55999999999, "ser_ci_low_ns": 29207.307978723406, "ser_ci_high_ns": 33348.69654255319, "deser_mean_ns": 17819.340425531915, "deser_median_ns": 17745.0, "deser_std_ns": 710.2681691527819, "deser_mad_ns": 473.0, "deser_cv": 0.03985939727236453, "deser_min_ns": 16452.0, "deser_max_ns": 19623.0, "deser_p5_ns": 16784.55, "deser_p25_ns": 17303.25, "deser_p50_ns": 17745.0, "deser_p75_ns": 18244.0, "deser_p95_ns": 19143.999999999996, "deser_p99_ns": 19470.48, "deser_ci_low_ns": 17680.85505319149, "deser_ci_high_ns": 17972.836702127657, "total_mean_ns": 49000.82978723404, "total_median_ns": 42694.0, "total_std_ns": 10276.260786670526, "total_mad_ns": 4975.0, "total_cv": 0.209716056468655, "total_min_ns": 36669.0, "total_max_ns": 69687.0, "total_p5_ns": 37863.5, "total_p25_ns": 40144.75, "total_p50_ns": 42694.0, "total_p75_ns": 59689.5, "total_p95_ns": 64407.399999999994, "total_p99_ns": 68809.07999999999, "total_ci_low_ns": 46941.59893617021, "total_ci_high_ns": 51045.66063829787, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "yas", "effect_vs_fastest_cliffs_delta": 0.5783365570599613, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.1317447754474967}, {"serializer": "nlohmann_json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 99576.65957446808, "avg_time_deser_ns": 276548.77659574465, "avg_time_total_ns": 376125.43617021275, "median_size_bytes": 25463.0, "avg_ops_per_sec": 2658.6875117572677, "min_ops_per_sec": 2404.2160332358826, "max_ops_per_sec": 2898.685156413051, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 99576.65957446808, "ser_median_ns": 98583.0, "ser_std_ns": 13273.791709831168, "ser_mad_ns": 10359.0, "ser_cv": 0.13330223936568594, "ser_min_ns": 80083.0, "ser_max_ns": 133799.0, "ser_p5_ns": 82372.1, "ser_p25_ns": 87845.0, "ser_p50_ns": 98583.0, "ser_p75_ns": 108391.5, "ser_p95_ns": 123696.5, "ser_p99_ns": 131310.31999999998, "ser_ci_low_ns": 97027.47659574468, "ser_ci_high_ns": 102301.08484042552, "deser_mean_ns": 276548.77659574465, "deser_median_ns": 277791.5, "deser_std_ns": 7509.072671802697, "deser_mad_ns": 5038.0, "deser_cv": 0.027152796567165294, "deser_min_ns": 261073.0, "deser_max_ns": 297228.0, "deser_p5_ns": 264627.7, "deser_p25_ns": 271079.5, "deser_p50_ns": 277791.5, "deser_p75_ns": 280592.75, "deser_p95_ns": 290228.95, "deser_p99_ns": 293896.74, "deser_ci_low_ns": 275050.28670212766, "deser_ci_high_ns": 278043.97925531917, "total_mean_ns": 376125.43617021275, "total_median_ns": 376538.5, "total_std_ns": 14911.170714485403, "total_mad_ns": 10054.0, "total_cv": 0.039644143364283034, "total_min_ns": 344984.0, "total_max_ns": 415936.0, "total_p5_ns": 353104.0, "total_p25_ns": 365938.5, "total_p50_ns": 376538.5, "total_p75_ns": 385880.0, "total_p95_ns": 403484.89999999997, "total_p99_ns": 406191.4599999999, "total_ci_low_ns": 373303.08936170215, "total_ci_high_ns": 379035.79148936167, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "yas", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.399397557220755}, {"serializer": "nlohmann_msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 80044.77894736842, "avg_time_deser_ns": 357068.66315789474, "avg_time_total_ns": 437113.4421052632, "median_size_bytes": 19565.0, "avg_ops_per_sec": 2287.7356394800267, "min_ops_per_sec": 2045.6172650097167, "max_ops_per_sec": 2501.112995282901, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 80044.77894736842, "ser_median_ns": 77857.0, "ser_std_ns": 12582.06323115345, "ser_mad_ns": 9891.0, "ser_cv": 0.15718780658294393, "ser_min_ns": 64044.0, "ser_max_ns": 116309.0, "ser_p5_ns": 64614.7, "ser_p25_ns": 69357.5, "ser_p50_ns": 77857.0, "ser_p75_ns": 89192.5, "ser_p95_ns": 102826.5, "ser_p99_ns": 115901.98, "ser_ci_low_ns": 77548.16763157895, "ser_ci_high_ns": 82685.42947368421, "deser_mean_ns": 357068.66315789474, "deser_median_ns": 356292.0, "deser_std_ns": 12142.684235313123, "deser_mad_ns": 8058.0, "deser_cv": 0.034006580493297626, "deser_min_ns": 334926.0, "deser_max_ns": 388146.0, "deser_p5_ns": 339217.9, "deser_p25_ns": 348472.5, "deser_p50_ns": 356292.0, "deser_p75_ns": 364405.0, "deser_p95_ns": 378517.1, "deser_p99_ns": 381881.84, "deser_ci_low_ns": 354698.15921052627, "deser_ci_high_ns": 359594.03315789474, "total_mean_ns": 437113.4421052632, "total_median_ns": 436168.0, "total_std_ns": 18801.214165588775, "total_mad_ns": 12996.0, "total_cv": 0.04301220771211418, "total_min_ns": 399822.0, "total_max_ns": 488850.0, "total_p5_ns": 408780.8, "total_p25_ns": 423139.0, "total_p50_ns": 436168.0, "total_p75_ns": 448440.0, "total_p95_ns": 470729.5, "total_p99_ns": 486291.32, "total_ci_low_ns": 433427.54631578946, "total_ci_high_ns": 440957.21131578943, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "yas", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.378181571487474}, {"serializer": "flexbuffers", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "flatbuffers-flex", "avg_time_ser_ns": 116747.68817204301, "avg_time_deser_ns": 217371.39784946237, "avg_time_total_ns": 334119.08602150535, "median_size_bytes": 25512.0, "avg_ops_per_sec": 2992.9448566001274, "min_ops_per_sec": 2676.466101218595, "max_ops_per_sec": 3268.102017072565, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 116747.68817204301, "ser_median_ns": 111865.0, "ser_std_ns": 10631.137493823318, "ser_mad_ns": 5458.0, "ser_cv": 0.09106079666568596, "ser_min_ns": 102325.0, "ser_max_ns": 148136.0, "ser_p5_ns": 104442.8, "ser_p25_ns": 109063.0, "ser_p50_ns": 111865.0, "ser_p75_ns": 126148.0, "ser_p95_ns": 135781.6, "ser_p99_ns": 141178.96, "ser_ci_low_ns": 114529.12607526882, "ser_ci_high_ns": 118927.23521505376, "deser_mean_ns": 217371.39784946237, "deser_median_ns": 217780.0, "deser_std_ns": 6738.6891725252, "deser_mad_ns": 4462.0, "deser_cv": 0.031000808934356618, "deser_min_ns": 203162.0, "deser_max_ns": 234072.0, "deser_p5_ns": 206683.6, "deser_p25_ns": 212273.0, "deser_p50_ns": 217780.0, "deser_p75_ns": 221139.0, "deser_p95_ns": 228663.8, "deser_p99_ns": 233134.52, "deser_ci_low_ns": 216029.05994623655, "deser_ci_high_ns": 218676.89865591397, "total_mean_ns": 334119.08602150535, "total_median_ns": 331406.0, "total_std_ns": 13611.93762654831, "total_mad_ns": 9521.0, "total_cv": 0.04073977870773951, "total_min_ns": 305988.0, "total_max_ns": 373627.0, "total_p5_ns": 316121.0, "total_p25_ns": 324365.0, "total_p50_ns": 331406.0, "total_p75_ns": 343944.0, "total_p95_ns": 357608.39999999997, "total_p99_ns": 367848.48, "total_ci_low_ns": 331537.10913978494, "total_ci_high_ns": 337045.74892473116, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "yas", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.536862491000758}, {"serializer": "custom_binary", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "harness", "avg_time_ser_ns": 36764.757575757576, "avg_time_deser_ns": 26497.0, "avg_time_total_ns": 63261.757575757576, "median_size_bytes": 13866.0, "avg_ops_per_sec": 15807.338245423776, "min_ops_per_sec": 9958.274828468717, "max_ops_per_sec": 20760.239988374266, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 36764.757575757576, "ser_median_ns": 29461.0, "ser_std_ns": 12236.715517446522, "ser_mad_ns": 4065.0, "ser_cv": 0.3328381940838725, "ser_min_ns": 23305.0, "ser_max_ns": 71506.0, "ser_p5_ns": 24997.4, "ser_p25_ns": 27715.0, "ser_p50_ns": 29461.0, "ser_p75_ns": 47616.0, "ser_p95_ns": 57793.299999999996, "ser_p99_ns": 69594.99999999999, "ser_ci_low_ns": 34382.94343434343, "ser_ci_high_ns": 39273.26212121212, "deser_mean_ns": 26497.0, "deser_median_ns": 26490.0, "deser_std_ns": 937.9178850963839, "deser_mad_ns": 651.0, "deser_cv": 0.03539713496231211, "deser_min_ns": 24581.0, "deser_max_ns": 28913.0, "deser_p5_ns": 25053.5, "deser_p25_ns": 25823.0, "deser_p50_ns": 26490.0, "deser_p75_ns": 27138.5, "deser_p95_ns": 28148.3, "deser_p99_ns": 28714.059999999998, "deser_ci_low_ns": 26311.725505050505, "deser_ci_high_ns": 26689.617676767677, "total_mean_ns": 63261.757575757576, "total_median_ns": 56314.0, "total_std_ns": 12400.058109714819, "total_mad_ns": 3903.0, "total_cv": 0.1960119128031723, "total_min_ns": 48169.0, "total_max_ns": 100419.0, "total_p5_ns": 51166.4, "total_p25_ns": 53573.0, "total_p50_ns": 56314.0, "total_p75_ns": 74090.0, "total_p95_ns": 83653.79999999999, "total_p99_ns": 96663.63999999998, "total_ci_low_ns": 60888.104545454546, "total_ci_high_ns": 65761.48181818183, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "yas", "effect_vs_fastest_cliffs_delta": 0.9193959800020406, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.2651422711050317}, {"serializer": "nlohmann_cbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 78060.88659793814, "avg_time_deser_ns": 335491.75257731957, "avg_time_total_ns": 413552.6391752577, "median_size_bytes": 19564.0, "avg_ops_per_sec": 2418.071861406292, "min_ops_per_sec": 2191.410983790133, "max_ops_per_sec": 2632.493392441585, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 78060.88659793814, "ser_median_ns": 75160.0, "ser_std_ns": 11389.72585077253, "ser_mad_ns": 8641.0, "ser_cv": 0.14590823070504777, "ser_min_ns": 62741.0, "ser_max_ns": 107416.0, "ser_p5_ns": 64057.0, "ser_p25_ns": 68183.0, "ser_p50_ns": 75160.0, "ser_p75_ns": 87447.0, "ser_p95_ns": 97831.99999999997, "ser_p99_ns": 102943.35999999996, "ser_ci_low_ns": 75857.7074742268, "ser_ci_high_ns": 80322.67293814433, "deser_mean_ns": 335491.75257731957, "deser_median_ns": 335022.0, "deser_std_ns": 12310.93010298752, "deser_mad_ns": 8422.0, "deser_cv": 0.03669517956376667, "deser_min_ns": 311694.0, "deser_max_ns": 366370.0, "deser_p5_ns": 316991.6, "deser_p25_ns": 324636.0, "deser_p50_ns": 335022.0, "deser_p75_ns": 343185.0, "deser_p95_ns": 358861.8, "deser_p99_ns": 362555.92, "deser_ci_low_ns": 333021.44123711344, "deser_ci_high_ns": 337900.08195876284, "total_mean_ns": 413552.6391752577, "total_median_ns": 413206.0, "total_std_ns": 16616.56422393127, "total_mad_ns": 11145.0, "total_cv": 0.04018004638313868, "total_min_ns": 379868.0, "total_max_ns": 456327.0, "total_p5_ns": 386659.0, "total_p25_ns": 402320.0, "total_p50_ns": 413206.0, "total_p75_ns": 424768.0, "total_p95_ns": 441008.0, "total_p99_ns": 454268.76, "total_ci_low_ns": 410072.52603092784, "total_ci_high_ns": 416902.8456185567, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "yas", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.122903806068187}, {"serializer": "msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "msgpack-cxx", "avg_time_ser_ns": 37563.50515463918, "avg_time_deser_ns": 39328.47422680412, "avg_time_total_ns": 76891.97938144329, "median_size_bytes": 19565.0, "avg_ops_per_sec": 13005.257610019788, "min_ops_per_sec": 9641.1561674476, "max_ops_per_sec": 16131.113692089302, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 37563.50515463918, "ser_median_ns": 30516.0, "ser_std_ns": 11050.210388385252, "ser_mad_ns": 4349.0, "ser_cv": 0.2941741017749651, "ser_min_ns": 25630.0, "ser_max_ns": 66244.0, "ser_p5_ns": 26143.2, "ser_p25_ns": 28105.0, "ser_p50_ns": 30516.0, "ser_p75_ns": 48395.0, "ser_p95_ns": 54934.99999999999, "ser_p99_ns": 63138.39999999997, "ser_ci_low_ns": 35384.573453608245, "ser_ci_high_ns": 39862.51211340206, "deser_mean_ns": 39328.47422680412, "deser_median_ns": 39283.0, "deser_std_ns": 1456.705887816637, "deser_mad_ns": 1093.0, "deser_cv": 0.037039471183548396, "deser_min_ns": 36362.0, "deser_max_ns": 43530.0, "deser_p5_ns": 37226.2, "deser_p25_ns": 38193.0, "deser_p50_ns": 39283.0, "deser_p75_ns": 40434.0, "deser_p95_ns": 41594.0, "deser_p99_ns": 43061.52, "deser_ci_low_ns": 39058.019845360825, "deser_ci_high_ns": 39622.693041237115, "total_mean_ns": 76891.97938144329, "total_median_ns": 71125.0, "total_std_ns": 11358.318388024572, "total_mad_ns": 7063.0, "total_cv": 0.14771785665288426, "total_min_ns": 61992.0, "total_max_ns": 103722.0, "total_p5_ns": 63754.0, "total_p25_ns": 66736.0, "total_p50_ns": 71125.0, "total_p75_ns": 87501.0, "total_p95_ns": 93315.8, "total_p99_ns": 103483.92, "total_ci_low_ns": 74677.85051546393, "total_ci_high_ns": 79129.70592783505, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "yas", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.6305895017086045}, {"serializer": "rapidjson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "1.1.0", "avg_time_ser_ns": 58350.0404040404, "avg_time_deser_ns": 438332.0606060606, "avg_time_total_ns": 496682.10101010103, "median_size_bytes": 25463.0, "avg_ops_per_sec": 2013.3602518921111, "min_ops_per_sec": 1759.711407329198, "max_ops_per_sec": 2315.608125005789, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 58350.0404040404, "ser_median_ns": 57245.0, "ser_std_ns": 16107.765849161455, "ser_mad_ns": 12210.0, "ser_cv": 0.2760540650464757, "ser_min_ns": 34796.0, "ser_max_ns": 95262.0, "ser_p5_ns": 35943.2, "ser_p25_ns": 46313.5, "ser_p50_ns": 57245.0, "ser_p75_ns": 70479.0, "ser_p95_ns": 88182.79999999999, "ser_p99_ns": 93163.81999999999, "ser_ci_low_ns": 55240.19419191919, "ser_ci_high_ns": 61442.47474747474, "deser_mean_ns": 438332.0606060606, "deser_median_ns": 436932.0, "deser_std_ns": 22906.47003725624, "deser_mad_ns": 16828.0, "deser_cv": 0.052258258283878596, "deser_min_ns": 394478.0, "deser_max_ns": 497800.0, "deser_p5_ns": 404934.4, "deser_p25_ns": 420340.5, "deser_p50_ns": 436932.0, "deser_p75_ns": 454126.5, "deser_p95_ns": 475361.5999999999, "deser_p99_ns": 488244.01999999996, "deser_ci_low_ns": 433836.9681818182, "deser_ci_high_ns": 442832.5098484849, "total_mean_ns": 496682.10101010103, "total_median_ns": 493977.0, "total_std_ns": 33267.243752491006, "total_mad_ns": 22219.0, "total_cv": 0.06697894626127156, "total_min_ns": 431852.0, "total_max_ns": 568275.0, "total_p5_ns": 445598.4, "total_p25_ns": 472066.5, "total_p50_ns": 493977.0, "total_p75_ns": 519267.5, "total_p95_ns": 559868.8, "total_p99_ns": 563514.16, "total_ci_low_ns": 490253.45202020206, "total_ci_high_ns": 503618.47626262624, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "yas", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.573289125102384}, {"serializer": "nlohmann_ubjson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 63269.845360824744, "avg_time_deser_ns": 393915.76288659795, "avg_time_total_ns": 457185.6082474227, "median_size_bytes": 23664.0, "avg_ops_per_sec": 2187.2954484140573, "min_ops_per_sec": 1977.226307391465, "max_ops_per_sec": 2450.025602767549, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 63269.845360824744, "ser_median_ns": 61816.0, "ser_std_ns": 10592.857170184112, "ser_mad_ns": 8268.0, "ser_cv": 0.16742347179408423, "ser_min_ns": 46426.0, "ser_max_ns": 98053.0, "ser_p5_ns": 50109.4, "ser_p25_ns": 54311.0, "ser_p50_ns": 61816.0, "ser_p75_ns": 71971.0, "ser_p95_ns": 78267.19999999998, "ser_p99_ns": 93960.51999999996, "ser_ci_low_ns": 61279.10721649484, "ser_ci_high_ns": 65345.77706185567, "deser_mean_ns": 393915.76288659795, "deser_median_ns": 391470.0, "deser_std_ns": 14501.528633340979, "deser_mad_ns": 8027.0, "deser_cv": 0.03681378101519572, "deser_min_ns": 361733.0, "deser_max_ns": 432033.0, "deser_p5_ns": 375055.8, "deser_p25_ns": 384314.0, "deser_p50_ns": 391470.0, "deser_p75_ns": 401957.0, "deser_p95_ns": 422270.0, "deser_p99_ns": 429888.36, "deser_ci_low_ns": 391099.55180412374, "deser_ci_high_ns": 396732.32113402063, "total_mean_ns": 457185.6082474227, "total_median_ns": 455949.0, "total_std_ns": 17704.035166545073, "total_mad_ns": 12034.0, "total_cv": 0.03872395553834645, "total_min_ns": 408159.0, "total_max_ns": 505759.0, "total_p5_ns": 431120.4, "total_p25_ns": 445103.0, "total_p50_ns": 455949.0, "total_p75_ns": 469334.0, "total_p95_ns": 484013.19999999995, "total_p99_ns": 501504.27999999997, "total_ci_low_ns": 453644.9090206186, "total_ci_high_ns": 460629.4046391752, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "yas", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.90272705827841}, {"serializer": "yas", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "7.x", "avg_time_ser_ns": 19581.222222222223, "avg_time_deser_ns": 17687.343434343435, "avg_time_total_ns": 37268.56565656565, "median_size_bytes": 18677.0, "avg_ops_per_sec": 26832.26419860429, "min_ops_per_sec": 16148.306042696122, "max_ops_per_sec": 36852.77317118113, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 19581.222222222223, "ser_median_ns": 12830.0, "ser_std_ns": 10236.02877650208, "ser_mad_ns": 1908.0, "ser_cv": 0.5227471840284554, "ser_min_ns": 10318.0, "ser_max_ns": 44043.0, "ser_p5_ns": 10723.5, "ser_p25_ns": 11341.5, "ser_p50_ns": 12830.0, "ser_p75_ns": 31000.5, "ser_p95_ns": 34928.799999999996, "ser_p99_ns": 43624.54, "ser_ci_low_ns": 17546.323989898992, "ser_ci_high_ns": 21559.800757575755, "deser_mean_ns": 17687.343434343435, "deser_median_ns": 17622.0, "deser_std_ns": 732.569230016984, "deser_mad_ns": 526.0, "deser_cv": 0.04141770824636998, "deser_min_ns": 16275.0, "deser_max_ns": 19608.0, "deser_p5_ns": 16671.3, "deser_p25_ns": 17113.0, "deser_p50_ns": 17622.0, "deser_p75_ns": 18157.5, "deser_p95_ns": 19124.6, "deser_p99_ns": 19463.94, "deser_ci_low_ns": 17548.136868686866, "deser_ci_high_ns": 17835.780555555553, "total_mean_ns": 37268.56565656565, "total_median_ns": 31221.0, "total_std_ns": 10372.531960355891, "total_mad_ns": 3349.0, "total_cv": 0.27831851796873613, "total_min_ns": 27135.0, "total_max_ns": 61926.0, "total_p5_ns": 27738.1, "total_p25_ns": 28911.5, "total_p50_ns": 31221.0, "total_p75_ns": 48490.5, "total_p95_ns": 54214.0, "total_p99_ns": 61801.54, "total_ci_low_ns": 35236.23308080808, "total_ci_high_ns": 39421.9452020202, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "yas", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "simdjson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.10.1", "avg_time_ser_ns": 12269.583333333334, "avg_time_deser_ns": 335760.5833333333, "avg_time_total_ns": 348030.1666666667, "median_size_bytes": 25463.0, "avg_ops_per_sec": 2873.3141427874307, "min_ops_per_sec": 2579.127635868444, "max_ops_per_sec": 3126.7979087975586, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 12269.583333333334, "ser_median_ns": 5119.5, "ser_std_ns": 10506.230733453429, "ser_mad_ns": 749.0, "ser_cv": 0.8562826012934502, "ser_min_ns": 4175.0, "ser_max_ns": 37086.0, "ser_p5_ns": 4258.0, "ser_p25_ns": 4502.0, "ser_p50_ns": 5119.5, "ser_p75_ns": 24471.75, "ser_p95_ns": 33001.0, "ser_p99_ns": 34359.49999999999, "ser_ci_low_ns": 10151.283333333335, "ser_ci_high_ns": 14402.61640625, "deser_mean_ns": 335760.5833333333, "deser_median_ns": 332593.5, "deser_std_ns": 11437.538928013515, "deser_mad_ns": 6523.5, "deser_cv": 0.034064567122397034, "deser_min_ns": 315607.0, "deser_max_ns": 366430.0, "deser_p5_ns": 321401.25, "deser_p25_ns": 327148.25, "deser_p50_ns": 332593.5, "deser_p75_ns": 342448.5, "deser_p95_ns": 358713.75, "deser_p99_ns": 366145.0, "deser_ci_low_ns": 333604.73385416664, "deser_ci_high_ns": 338122.2796875, "total_mean_ns": 348030.1666666667, "total_median_ns": 346257.5, "total_std_ns": 14608.425792683855, "total_mad_ns": 10405.0, "total_cv": 0.0419745964339792, "total_min_ns": 319816.0, "total_max_ns": 387728.0, "total_p5_ns": 329609.5, "total_p25_ns": 336005.0, "total_p50_ns": 346257.5, "total_p75_ns": 356798.5, "total_p95_ns": 374112.75, "total_p99_ns": 380227.75, "total_ci_low_ns": 345281.73203124997, "total_ci_high_ns": 350960.5026041666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "yas", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.49713247512699}, {"serializer": "avro", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "binary-1.11", "avg_time_ser_ns": 24419.0625, "avg_time_deser_ns": 24964.302083333332, "avg_time_total_ns": 49383.364583333336, "median_size_bytes": 10165.0, "avg_ops_per_sec": 20249.73406403936, "min_ops_per_sec": 13254.688846179335, "max_ops_per_sec": 25192.724341210258, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 24419.0625, "ser_median_ns": 19012.5, "ser_std_ns": 9495.575860492529, "ser_mad_ns": 1914.0, "ser_cv": 0.3888591488920809, "ser_min_ns": 16309.0, "ser_max_ns": 48998.0, "ser_p5_ns": 16826.25, "ser_p25_ns": 17552.75, "ser_p50_ns": 19012.5, "ser_p75_ns": 36560.5, "ser_p95_ns": 39281.5, "ser_p99_ns": 47349.74999999999, "ser_ci_low_ns": 22625.534114583334, "ser_ci_high_ns": 26354.392708333333, "deser_mean_ns": 24964.302083333332, "deser_median_ns": 24773.0, "deser_std_ns": 966.4500871452092, "deser_mad_ns": 553.0, "deser_cv": 0.03871328282757925, "deser_min_ns": 23056.0, "deser_max_ns": 27291.0, "deser_p5_ns": 23740.75, "deser_p25_ns": 24305.5, "deser_p50_ns": 24773.0, "deser_p75_ns": 25454.75, "deser_p95_ns": 27050.5, "deser_p99_ns": 27205.5, "deser_ci_low_ns": 24776.526302083334, "deser_ci_high_ns": 25161.553125, "total_mean_ns": 49383.364583333336, "total_median_ns": 44411.5, "total_std_ns": 9693.675415194873, "total_mad_ns": 2947.0, "total_cv": 0.19629434926081252, "total_min_ns": 39694.0, "total_max_ns": 75445.0, "total_p5_ns": 40729.0, "total_p25_ns": 42223.75, "total_p50_ns": 44411.5, "total_p75_ns": 60574.75, "total_p95_ns": 66297.25, "total_p99_ns": 71661.15, "total_ci_low_ns": 47461.19739583333, "total_ci_high_ns": 51283.74088541667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "yas", "effect_vs_fastest_cliffs_delta": 0.5508207070707071, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.2014656609621024}, {"serializer": "flatbuffers", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "flatbuffers", "avg_time_ser_ns": 12816.051546391753, "avg_time_deser_ns": 42992.85567010309, "avg_time_total_ns": 55808.907216494845, "median_size_bytes": 12208.0, "avg_ops_per_sec": 17918.286701454006, "min_ops_per_sec": 11899.520449325892, "max_ops_per_sec": 23799.890520503606, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 12816.051546391753, "ser_median_ns": 14661.0, "ser_std_ns": 10657.954264862401, "ser_mad_ns": 8681.0, "ser_cv": 0.8316098157285466, "ser_min_ns": 859.0, "ser_max_ns": 39204.0, "ser_p5_ns": 968.6, "ser_p25_ns": 1501.0, "ser_p50_ns": 14661.0, "ser_p75_ns": 21301.0, "ser_p95_ns": 24088.599999999995, "ser_p99_ns": 38178.719999999994, "ser_ci_low_ns": 10834.603608247422, "ser_ci_high_ns": 15026.611340206186, "deser_mean_ns": 42992.85567010309, "deser_median_ns": 42883.0, "deser_std_ns": 1433.0577956309219, "deser_mad_ns": 897.0, "deser_cv": 0.03333246357551121, "deser_min_ns": 39892.0, "deser_max_ns": 46869.0, "deser_p5_ns": 40987.0, "deser_p25_ns": 42022.0, "deser_p50_ns": 42883.0, "deser_p75_ns": 43910.0, "deser_p95_ns": 45286.799999999996, "deser_p99_ns": 46658.759999999995, "deser_ci_low_ns": 42725.59201030927, "deser_ci_high_ns": 43278.890721649484, "total_mean_ns": 55808.907216494845, "total_median_ns": 59168.0, "total_std_ns": 10792.05963031238, "total_mad_ns": 8994.0, "total_cv": 0.19337521855512493, "total_min_ns": 42017.0, "total_max_ns": 84037.0, "total_p5_ns": 42541.4, "total_p25_ns": 44317.0, "total_p50_ns": 59168.0, "total_p75_ns": 64496.0, "total_p95_ns": 68811.79999999999, "total_p99_ns": 79859.07999999996, "total_ci_low_ns": 53680.46211340206, "total_ci_high_ns": 57918.80463917526, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "yas", "effect_vs_fastest_cliffs_delta": 0.7163386441736957, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.7452468379325707}, {"serializer": "avro_c", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "avro-c", "avg_time_ser_ns": 97605.3829787234, "avg_time_deser_ns": 123898.06382978724, "avg_time_total_ns": 221503.44680851063, "median_size_bytes": 10165.0, "avg_ops_per_sec": 4514.602433543611, "min_ops_per_sec": 4038.8863982422768, "max_ops_per_sec": 5013.938749724233, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 97605.3829787234, "ser_median_ns": 92689.5, "ser_std_ns": 10197.997475897748, "ser_mad_ns": 5404.0, "ser_cv": 0.10448191651602626, "ser_min_ns": 83279.0, "ser_max_ns": 121371.0, "ser_p5_ns": 85263.55, "ser_p25_ns": 89722.25, "ser_p50_ns": 92689.5, "ser_p75_ns": 107082.5, "ser_p95_ns": 114794.44999999998, "ser_p99_ns": 119348.24999999999, "ser_ci_low_ns": 95654.20718085107, "ser_ci_high_ns": 99705.74414893617, "deser_mean_ns": 123898.06382978724, "deser_median_ns": 124327.5, "deser_std_ns": 3886.7631274345977, "deser_mad_ns": 2492.0, "deser_cv": 0.031370652674397585, "deser_min_ns": 115038.0, "deser_max_ns": 132247.0, "deser_p5_ns": 117390.0, "deser_p25_ns": 121015.5, "deser_p50_ns": 124327.5, "deser_p75_ns": 126079.0, "deser_p95_ns": 130724.85, "deser_p99_ns": 132220.96, "deser_ci_low_ns": 123113.29042553192, "deser_ci_high_ns": 124670.65478723403, "total_mean_ns": 221503.44680851063, "total_median_ns": 219268.5, "total_std_ns": 10635.55838716603, "total_mad_ns": 6713.5, "total_cv": 0.04801531777679492, "total_min_ns": 199444.0, "total_max_ns": 247593.0, "total_p5_ns": 204647.95, "total_p25_ns": 214240.75, "total_p50_ns": 219268.5, "total_p75_ns": 229650.75, "total_p95_ns": 238807.49999999997, "total_p99_ns": 245426.09999999998, "total_ci_low_ns": 219373.49468085106, "total_ci_high_ns": 223727.75345744682, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "yas", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.474818030961178}, {"serializer": "yyjson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "0.10.0", "avg_time_ser_ns": 33137.395833333336, "avg_time_deser_ns": 347770.2604166667, "avg_time_total_ns": 380907.65625, "median_size_bytes": 25463.0, "avg_ops_per_sec": 2625.3082173377816, "min_ops_per_sec": 2449.101547097447, "max_ops_per_sec": 2824.611404086083, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 33137.395833333336, "ser_median_ns": 26785.0, "ser_std_ns": 9777.564547127553, "ser_mad_ns": 1731.5, "ser_cv": 0.29506134387579647, "ser_min_ns": 24011.0, "ser_max_ns": 55095.0, "ser_p5_ns": 24708.0, "ser_p25_ns": 25730.75, "ser_p50_ns": 26785.0, "ser_p75_ns": 43677.0, "ser_p95_ns": 52594.0, "ser_p99_ns": 54712.15, "ser_ci_low_ns": 31230.615885416664, "ser_ci_high_ns": 35147.97760416667, "deser_mean_ns": 347770.2604166667, "deser_median_ns": 346818.5, "deser_std_ns": 11469.506049332718, "deser_mad_ns": 8465.0, "deser_cv": 0.03298012324455518, "deser_min_ns": 328901.0, "deser_max_ns": 380251.0, "deser_p5_ns": 330835.0, "deser_p25_ns": 338992.25, "deser_p50_ns": 346818.5, "deser_p75_ns": 355834.75, "deser_p95_ns": 369780.5, "deser_p99_ns": 374253.64999999997, "deser_ci_low_ns": 345508.7005208334, "deser_ci_high_ns": 350096.8411458333, "total_mean_ns": 380907.65625, "total_median_ns": 381039.5, "total_std_ns": 12408.509183814253, "total_mad_ns": 7802.5, "total_cv": 0.03257616112517889, "total_min_ns": 354031.0, "total_max_ns": 408313.0, "total_p5_ns": 361027.75, "total_p25_ns": 372425.75, "total_p50_ns": 381039.5, "total_p75_ns": 386756.5, "total_p95_ns": 402016.75, "total_p99_ns": 406046.3, "total_ci_low_ns": 378509.5651041666, "total_ci_high_ns": 383272.83046875003, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "yas", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.973514662250135}, {"serializer": "jsoncons_bson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 172510.06593406593, "avg_time_deser_ns": 611984.8021978022, "avg_time_total_ns": 784494.8681318681, "median_size_bytes": 29169.0, "avg_ops_per_sec": 1274.7055979872987, "min_ops_per_sec": 1193.3872028316691, "max_ops_per_sec": 1365.2864985452873, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 172510.06593406593, "ser_median_ns": 168032.0, "ser_std_ns": 15472.503583096619, "ser_mad_ns": 10111.0, "ser_cv": 0.089690439217676, "ser_min_ns": 153767.0, "ser_max_ns": 217168.0, "ser_p5_ns": 154758.5, "ser_p25_ns": 159631.0, "ser_p50_ns": 168032.0, "ser_p75_ns": 182153.5, "ser_p95_ns": 205367.0, "ser_p99_ns": 216680.19999999998, "ser_ci_low_ns": 169413.84532967032, "ser_ci_high_ns": 175702.72087912087, "deser_mean_ns": 611984.8021978022, "deser_median_ns": 612917.0, "deser_std_ns": 16555.036481197283, "deser_mad_ns": 10820.0, "deser_cv": 0.027051384971887683, "deser_min_ns": 577227.0, "deser_max_ns": 647456.0, "deser_p5_ns": 586235.5, "deser_p25_ns": 599920.5, "deser_p50_ns": 612917.0, "deser_p75_ns": 622526.5, "deser_p95_ns": 641138.0, "deser_p99_ns": 647447.0, "deser_ci_low_ns": 608423.0543956044, "deser_ci_high_ns": 615320.3189560439, "total_mean_ns": 784494.8681318681, "total_median_ns": 782965.0, "total_std_ns": 24330.654138901857, "total_mad_ns": 16526.0, "total_cv": 0.031014421033551037, "total_min_ns": 732447.0, "total_max_ns": 837951.0, "total_p5_ns": 749271.0, "total_p25_ns": 767206.5, "total_p50_ns": 782965.0, "total_p75_ns": 800217.5, "total_p95_ns": 829426.0, "total_p99_ns": 835965.6, "total_ci_low_ns": 779762.2269230769, "total_ci_high_ns": 789193.3285714285, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "yas", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 40.39312311075068}, {"serializer": "protobuf-wire", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "wire-v2", "avg_time_ser_ns": 72126.0505050505, "avg_time_deser_ns": 42539.07070707071, "avg_time_total_ns": 114665.12121212122, "median_size_bytes": 12183.0, "avg_ops_per_sec": 8721.047773106879, "min_ops_per_sec": 7233.430020181269, "max_ops_per_sec": 9883.473843386473, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 72126.0505050505, "ser_median_ns": 66865.0, "ser_std_ns": 10205.5858408308, "ser_mad_ns": 4959.0, "ser_cv": 0.14149652960848275, "ser_min_ns": 61048.0, "ser_max_ns": 95087.0, "ser_p5_ns": 61324.8, "ser_p25_ns": 63743.0, "ser_p50_ns": 66865.0, "ser_p75_ns": 82772.0, "ser_p95_ns": 87780.8, "ser_p99_ns": 90882.79999999999, "ser_ci_low_ns": 70092.38535353536, "ser_ci_high_ns": 74088.0659090909, "deser_mean_ns": 42539.07070707071, "deser_median_ns": 42400.0, "deser_std_ns": 1611.6878290211168, "deser_mad_ns": 1158.0, "deser_cv": 0.03788723642129839, "deser_min_ns": 39773.0, "deser_max_ns": 47053.0, "deser_p5_ns": 40317.8, "deser_p25_ns": 41248.5, "deser_p50_ns": 42400.0, "deser_p75_ns": 43584.0, "deser_p95_ns": 45605.899999999994, "deser_p99_ns": 46575.74, "deser_ci_low_ns": 42222.7494949495, "deser_ci_high_ns": 42859.44797979797, "total_mean_ns": 114665.12121212122, "total_median_ns": 110276.0, "total_std_ns": 10608.993454989726, "total_mad_ns": 6859.0, "total_cv": 0.0925215387455436, "total_min_ns": 101179.0, "total_max_ns": 138247.0, "total_p5_ns": 102164.8, "total_p25_ns": 105892.0, "total_p50_ns": 110276.0, "total_p75_ns": 125086.5, "total_p95_ns": 131610.19999999998, "total_p99_ns": 136809.34, "total_ci_low_ns": 112662.08181818182, "total_ci_high_ns": 116705.63585858585, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "yas", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.348857590918933}, {"serializer": "capnproto", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "1.0.x", "avg_time_ser_ns": 24258.628865979383, "avg_time_deser_ns": 36588.52577319588, "avg_time_total_ns": 60847.154639175256, "median_size_bytes": 27048.0, "avg_ops_per_sec": 16434.622225640924, "min_ops_per_sec": 11312.857062051022, "max_ops_per_sec": 21392.662316825328, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 24258.628865979383, "ser_median_ns": 17543.0, "ser_std_ns": 10848.522625338965, "ser_mad_ns": 3594.0, "ser_cv": 0.4472026298466141, "ser_min_ns": 13583.0, "ser_max_ns": 49071.0, "ser_p5_ns": 13941.6, "ser_p25_ns": 14682.0, "ser_p50_ns": 17543.0, "ser_p75_ns": 35543.0, "ser_p95_ns": 41320.59999999997, "ser_p99_ns": 47975.63999999999, "ser_ci_low_ns": 22053.45206185567, "ser_ci_high_ns": 26340.96056701031, "deser_mean_ns": 36588.52577319588, "deser_median_ns": 36210.0, "deser_std_ns": 1913.082292035462, "deser_mad_ns": 1269.0, "deser_cv": 0.05228639994664538, "deser_min_ns": 33098.0, "deser_max_ns": 41460.0, "deser_p5_ns": 33959.8, "deser_p25_ns": 35149.0, "deser_p50_ns": 36210.0, "deser_p75_ns": 38113.0, "deser_p95_ns": 39666.4, "deser_p99_ns": 41181.6, "deser_ci_low_ns": 36212.848195876286, "deser_ci_high_ns": 36980.29768041237, "total_mean_ns": 60847.154639175256, "total_median_ns": 56039.0, "total_std_ns": 11579.744987063445, "total_mad_ns": 6797.0, "total_cv": 0.19030873433164697, "total_min_ns": 46745.0, "total_max_ns": 88395.0, "total_p5_ns": 48367.6, "total_p25_ns": 50529.0, "total_p50_ns": 56039.0, "total_p75_ns": 71991.0, "total_p95_ns": 79341.79999999999, "total_p99_ns": 87184.43999999999, "total_ci_low_ns": 58556.46443298969, "total_ci_high_ns": 63141.935824742264, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "yas", "effect_vs_fastest_cliffs_delta": 0.84504842236801, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.1378328310958192}, {"serializer": "cista", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "0.15", "avg_time_ser_ns": 14062.204081632653, "avg_time_deser_ns": 46630.816326530614, "avg_time_total_ns": 60693.02040816326, "median_size_bytes": 20824.0, "avg_ops_per_sec": 16476.35911468824, "min_ops_per_sec": 12011.434886011482, "max_ops_per_sec": 20197.939810139367, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 14062.204081632653, "ser_median_ns": 7511.0, "ser_std_ns": 9451.759444521245, "ser_mad_ns": 1549.0, "ser_cv": 0.6721392599376836, "ser_min_ns": 5527.0, "ser_max_ns": 36413.0, "ser_p5_ns": 5934.4, "ser_p25_ns": 6339.0, "ser_p50_ns": 7511.0, "ser_p75_ns": 25582.5, "ser_p95_ns": 28751.449999999997, "ser_p99_ns": 34581.64, "ser_ci_low_ns": 12288.743112244898, "ser_ci_high_ns": 15890.615051020408, "deser_mean_ns": 46630.816326530614, "deser_median_ns": 46800.5, "deser_std_ns": 1748.7641017135606, "deser_mad_ns": 1269.0, "deser_cv": 0.03750232656164333, "deser_min_ns": 43405.0, "deser_max_ns": 50995.0, "deser_p5_ns": 43916.6, "deser_p25_ns": 45331.0, "deser_p50_ns": 46800.5, "deser_p75_ns": 47675.75, "deser_p95_ns": 49943.75, "deser_p99_ns": 50768.99, "deser_ci_low_ns": 46284.392346938774, "deser_ci_high_ns": 47000.68545918367, "total_mean_ns": 60693.02040816326, "total_median_ns": 55736.0, "total_std_ns": 9670.14890233825, "total_mad_ns": 4761.0, "total_cv": 0.15932884600743327, "total_min_ns": 49510.0, "total_max_ns": 83254.0, "total_p5_ns": 50010.5, "total_p25_ns": 53168.5, "total_p50_ns": 55736.0, "total_p75_ns": 70485.0, "total_p95_ns": 77740.4, "total_p99_ns": 80127.69, "total_ci_low_ns": 58807.15586734694, "total_ci_high_ns": 62546.62780612245, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "yas", "effect_vs_fastest_cliffs_delta": 0.906823335394764, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.3266094227695566}, {"serializer": "jsoncons_msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 116048.50515463918, "avg_time_deser_ns": 611529.0103092784, "avg_time_total_ns": 727577.5154639175, "median_size_bytes": 19565.0, "avg_ops_per_sec": 1374.424001217768, "min_ops_per_sec": 1292.1182081421537, "max_ops_per_sec": 1468.978839359819, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 116048.50515463918, "ser_median_ns": 114854.0, "ser_std_ns": 11182.401042042684, "ser_mad_ns": 9962.0, "ser_cv": 0.09635971637154392, "ser_min_ns": 96357.0, "ser_max_ns": 143007.0, "ser_p5_ns": 101157.2, "ser_p25_ns": 106512.0, "ser_p50_ns": 114854.0, "ser_p75_ns": 125646.0, "ser_p95_ns": 133405.8, "ser_p99_ns": 137332.43999999994, "ser_ci_low_ns": 113847.70644329897, "ser_ci_high_ns": 118316.58427835052, "deser_mean_ns": 611529.0103092784, "deser_median_ns": 611956.0, "deser_std_ns": 17161.52612950383, "deser_mad_ns": 11759.0, "deser_cv": 0.0280633066300885, "deser_min_ns": 575788.0, "deser_max_ns": 647867.0, "deser_p5_ns": 583040.4, "deser_p25_ns": 599812.0, "deser_p50_ns": 611956.0, "deser_p75_ns": 621538.0, "deser_p95_ns": 642525.4, "deser_p99_ns": 646695.8, "deser_ci_low_ns": 608147.7360824742, "deser_ci_high_ns": 614989.3368556701, "total_mean_ns": 727577.5154639175, "total_median_ns": 725515.0, "total_std_ns": 20504.521788962287, "total_mad_ns": 15244.0, "total_cv": 0.028181906880242455, "total_min_ns": 680745.0, "total_max_ns": 773923.0, "total_p5_ns": 698001.0, "total_p25_ns": 712157.0, "total_p50_ns": 725515.0, "total_p75_ns": 742721.0, "total_p95_ns": 767581.4, "total_p99_ns": 770921.08, "total_ci_low_ns": 723647.6577319587, "total_ci_high_ns": 731826.3628865979, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "yas", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 42.44996584312411}, {"serializer": "cereal", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "1.3.2", "avg_time_ser_ns": 36185.343434343435, "avg_time_deser_ns": 36581.666666666664, "avg_time_total_ns": 72767.0101010101, "median_size_bytes": 18670.0, "avg_ops_per_sec": 13742.491255472356, "min_ops_per_sec": 9818.263934571089, "max_ops_per_sec": 18299.935950224175, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 36185.343434343435, "ser_median_ns": 31177.0, "ser_std_ns": 9870.237170363063, "ser_mad_ns": 4211.0, "ser_cv": 0.2727689233700969, "ser_min_ns": 24784.0, "ser_max_ns": 62165.0, "ser_p5_ns": 26430.0, "ser_p25_ns": 28230.0, "ser_p50_ns": 31177.0, "ser_p75_ns": 46687.0, "ser_p95_ns": 51133.799999999974, "ser_p99_ns": 60871.399999999994, "ser_ci_low_ns": 34276.4547979798, "ser_ci_high_ns": 38146.48787878788, "deser_mean_ns": 36581.666666666664, "deser_median_ns": 36271.0, "deser_std_ns": 2922.4861131633547, "deser_mad_ns": 2438.0, "deser_cv": 0.07988936479557214, "deser_min_ns": 29820.0, "deser_max_ns": 43569.0, "deser_p5_ns": 32219.4, "deser_p25_ns": 34387.0, "deser_p50_ns": 36271.0, "deser_p75_ns": 38862.5, "deser_p95_ns": 41054.4, "deser_p99_ns": 42835.96, "deser_ci_low_ns": 36021.89343434344, "deser_ci_high_ns": 37156.42954545454, "total_mean_ns": 72767.0101010101, "total_median_ns": 69007.0, "total_std_ns": 10935.391516646576, "total_mad_ns": 6141.0, "total_cv": 0.15027952229268216, "total_min_ns": 54645.0, "total_max_ns": 101851.0, "total_p5_ns": 61011.8, "total_p25_ns": 63976.5, "total_p50_ns": 69007.0, "total_p75_ns": 82565.0, "total_p95_ns": 91024.19999999998, "total_p99_ns": 98623.85999999999, "total_ci_low_ns": 70751.35732323233, "total_ci_high_ns": 74964.34696969697, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "yas", "effect_vs_fastest_cliffs_delta": 0.9953066013672074, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.3180243010875694}, {"serializer": "nlohmann_bson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 99246.8021978022, "avg_time_deser_ns": 462101.46153846156, "avg_time_total_ns": 561348.2637362637, "median_size_bytes": 29169.0, "avg_ops_per_sec": 1781.425301548321, "min_ops_per_sec": 1653.4828963729199, "max_ops_per_sec": 1923.1878762236283, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 99246.8021978022, "ser_median_ns": 95196.0, "ser_std_ns": 12642.005994320662, "ser_mad_ns": 8581.0, "ser_cv": 0.1273794793823656, "ser_min_ns": 82630.0, "ser_max_ns": 134940.0, "ser_p5_ns": 84136.0, "ser_p25_ns": 88929.0, "ser_p50_ns": 95196.0, "ser_p75_ns": 108721.0, "ser_p95_ns": 122425.5, "ser_p99_ns": 129373.49999999997, "ser_ci_low_ns": 96671.59423076923, "ser_ci_high_ns": 101907.20274725274, "deser_mean_ns": 462101.46153846156, "deser_median_ns": 461692.0, "deser_std_ns": 12342.203439425675, "deser_mad_ns": 8857.0, "deser_cv": 0.026708860427177877, "deser_min_ns": 431066.0, "deser_max_ns": 496111.0, "deser_p5_ns": 439553.0, "deser_p25_ns": 454517.0, "deser_p50_ns": 461692.0, "deser_p75_ns": 471967.0, "deser_p95_ns": 480414.0, "deser_p99_ns": 484368.69999999995, "deser_ci_low_ns": 459555.92197802203, "deser_ci_high_ns": 464784.9923076923, "total_mean_ns": 561348.2637362637, "total_median_ns": 560711.0, "total_std_ns": 19091.699583172653, "total_mad_ns": 11692.0, "total_cv": 0.0340104366870233, "total_min_ns": 519970.0, "total_max_ns": 604784.0, "total_p5_ns": 531277.0, "total_p25_ns": 548853.5, "total_p50_ns": 560711.0, "total_p75_ns": 571506.0, "total_p95_ns": 599396.5, "total_p99_ns": 604326.8, "total_ci_low_ns": 557236.4118131868, "total_ci_high_ns": 565104.9370879121, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "yas", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 34.375793027534975}, {"serializer": "nlohmann_json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 138342.48936170212, "avg_time_deser_ns": 344013.5425531915, "avg_time_total_ns": 482356.0319148936, "median_size_bytes": 25463.0, "avg_ops_per_sec": 2073.157447684699, "min_ops_per_sec": 1885.2664541342951, "max_ops_per_sec": 2234.537003932785, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 138342.48936170212, "ser_median_ns": 134655.5, "ser_std_ns": 11402.37503720751, "ser_mad_ns": 6253.0, "ser_cv": 0.08242135218049701, "ser_min_ns": 124438.0, "ser_max_ns": 166617.0, "ser_p5_ns": 125960.35, "ser_p25_ns": 130220.25, "ser_p50_ns": 134655.5, "ser_p75_ns": 144845.75, "ser_p95_ns": 162235.8, "ser_p99_ns": 166310.1, "ser_ci_low_ns": 136031.32393617023, "ser_ci_high_ns": 140638.86223404255, "deser_mean_ns": 344013.5425531915, "deser_median_ns": 343397.0, "deser_std_ns": 12973.901263413152, "deser_mad_ns": 9355.0, "deser_cv": 0.03771334455941403, "deser_min_ns": 316529.0, "deser_max_ns": 378159.0, "deser_p5_ns": 323955.75, "deser_p25_ns": 334950.25, "deser_p50_ns": 343397.0, "deser_p75_ns": 353936.5, "deser_p95_ns": 366044.5, "deser_p99_ns": 373753.58999999997, "deser_ci_low_ns": 341475.2034574468, "deser_ci_high_ns": 346737.7444148936, "total_mean_ns": 482356.0319148936, "total_median_ns": 480481.5, "total_std_ns": 19886.897815921562, "total_mad_ns": 12468.5, "total_cv": 0.04122867031842236, "total_min_ns": 447520.0, "total_max_ns": 530429.0, "total_p5_ns": 452745.4, "total_p25_ns": 468586.5, "total_p50_ns": 480481.5, "total_p75_ns": 494794.25, "total_p95_ns": 521821.95, "total_p99_ns": 527634.35, "total_ci_low_ns": 478447.45611702127, "total_ci_high_ns": 486176.95930851065, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.68255846441843}, {"serializer": "msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "msgpack-cxx", "avg_time_ser_ns": 41460.489795918365, "avg_time_deser_ns": 46556.88775510204, "avg_time_total_ns": 88017.37755102041, "median_size_bytes": 19565.0, "avg_ops_per_sec": 11361.39280473719, "min_ops_per_sec": 8709.132396230687, "max_ops_per_sec": 14073.80302305289, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 41460.489795918365, "ser_median_ns": 41017.0, "ser_std_ns": 2437.825164121217, "ser_mad_ns": 1430.5, "ser_cv": 0.058798754576247475, "ser_min_ns": 36928.0, "ser_max_ns": 47869.0, "ser_p5_ns": 37814.2, "ser_p25_ns": 39667.25, "ser_p50_ns": 41017.0, "ser_p75_ns": 43408.0, "ser_p95_ns": 45158.85, "ser_p99_ns": 47549.87, "ser_ci_low_ns": 40943.496173469386, "ser_ci_high_ns": 41959.85969387755, "deser_mean_ns": 46556.88775510204, "deser_median_ns": 41033.0, "deser_std_ns": 10074.944498972403, "deser_mad_ns": 4844.0, "deser_cv": 0.21640073004811877, "deser_min_ns": 34098.0, "deser_max_ns": 68266.0, "deser_p5_ns": 36120.55, "deser_p25_ns": 37904.0, "deser_p50_ns": 41033.0, "deser_p75_ns": 56885.75, "deser_p95_ns": 63123.299999999996, "deser_p99_ns": 67089.39, "deser_ci_low_ns": 44688.79770408163, "deser_ci_high_ns": 48500.27933673469, "total_mean_ns": 88017.37755102041, "total_median_ns": 84975.5, "total_std_ns": 10500.729610895633, "total_mad_ns": 7420.0, "total_cv": 0.11930291384572039, "total_min_ns": 71054.0, "total_max_ns": 114822.0, "total_p5_ns": 74826.25, "total_p25_ns": 79028.5, "total_p50_ns": 84975.5, "total_p75_ns": 97860.25, "total_p95_ns": 105514.69999999998, "total_p99_ns": 108096.99, "total_ci_low_ns": 86005.90535714285, "total_ci_high_ns": 90069.80408163265, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.6071416373256735}, {"serializer": "flatbuffers", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "flatbuffers", "avg_time_ser_ns": 10870.946236559139, "avg_time_deser_ns": 43166.62365591398, "avg_time_total_ns": 54037.56989247312, "median_size_bytes": 12208.0, "avg_ops_per_sec": 18505.643425303064, "min_ops_per_sec": 13156.856037681237, "max_ops_per_sec": 23937.188816545386, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 10870.946236559139, "ser_median_ns": 9122.0, "ser_std_ns": 9961.680550953839, "ser_mad_ns": 8018.0, "ser_cv": 0.9163581839318249, "ser_min_ns": 989.0, "ser_max_ns": 31859.0, "ser_p5_ns": 1054.2, "ser_p25_ns": 1322.0, "ser_p50_ns": 9122.0, "ser_p75_ns": 21558.0, "ser_p95_ns": 23878.799999999996, "ser_p99_ns": 26979.319999999992, "ser_ci_low_ns": 8765.870967741936, "ser_ci_high_ns": 12846.667741935482, "deser_mean_ns": 43166.62365591398, "deser_median_ns": 43186.0, "deser_std_ns": 1464.3957198165133, "deser_mad_ns": 944.0, "deser_cv": 0.033924258971222226, "deser_min_ns": 40012.0, "deser_max_ns": 47065.0, "deser_p5_ns": 40718.4, "deser_p25_ns": 42164.0, "deser_p50_ns": 43186.0, "deser_p75_ns": 44115.0, "deser_p95_ns": 45700.6, "deser_p99_ns": 46483.56, "deser_ci_low_ns": 42878.4185483871, "deser_ci_high_ns": 43468.19086021505, "total_mean_ns": 54037.56989247312, "total_median_ns": 50318.0, "total_std_ns": 10255.69761941248, "total_mad_ns": 7507.0, "total_cv": 0.18978828322257685, "total_min_ns": 41776.0, "total_max_ns": 76006.0, "total_p5_ns": 42635.8, "total_p25_ns": 44397.0, "total_p50_ns": 50318.0, "total_p75_ns": 64939.0, "total_p95_ns": 69181.0, "total_p99_ns": 71240.4, "total_ci_low_ns": 51944.712096774194, "total_ci_high_ns": 56202.13091397849, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.5941727367325702, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.4051163190387765}, {"serializer": "jsoncons_bson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 133118.72340425532, "avg_time_deser_ns": 647147.0425531915, "avg_time_total_ns": 780265.7659574468, "median_size_bytes": 29169.0, "avg_ops_per_sec": 1281.6146031639903, "min_ops_per_sec": 1202.3927615955752, "max_ops_per_sec": 1365.1075773026294, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 133118.72340425532, "ser_median_ns": 130176.0, "ser_std_ns": 10581.587096039008, "ser_mad_ns": 5757.5, "ser_cv": 0.07948984805018611, "ser_min_ns": 112831.0, "ser_max_ns": 158709.0, "ser_p5_ns": 119276.0, "ser_p25_ns": 125565.75, "ser_p50_ns": 130176.0, "ser_p75_ns": 139385.5, "ser_p95_ns": 153078.35, "ser_p99_ns": 157538.13, "ser_ci_low_ns": 131081.8664893617, "ser_ci_high_ns": 135318.88670212764, "deser_mean_ns": 647147.0425531915, "deser_median_ns": 646920.5, "deser_std_ns": 18677.7302746673, "deser_mad_ns": 13957.5, "deser_cv": 0.0288616481981869, "deser_min_ns": 606853.0, "deser_max_ns": 685229.0, "deser_p5_ns": 615425.2, "deser_p25_ns": 632711.25, "deser_p50_ns": 646920.5, "deser_p75_ns": 658389.25, "deser_p95_ns": 677976.55, "deser_p99_ns": 684850.49, "deser_ci_low_ns": 643336.9595744681, "deser_ci_high_ns": 650764.8510638297, "total_mean_ns": 780265.7659574468, "total_median_ns": 783060.5, "total_std_ns": 22028.52333329927, "total_mad_ns": 12840.5, "total_cv": 0.02823207719009504, "total_min_ns": 732543.0, "total_max_ns": 831675.0, "total_p5_ns": 743560.3, "total_p25_ns": 763642.75, "total_p50_ns": 783060.5, "total_p75_ns": 792326.75, "total_p95_ns": 817377.9, "total_p99_ns": 830694.78, "total_ci_low_ns": 775907.6803191489, "total_ci_high_ns": 784747.8534574468, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 42.664143526669555}, {"serializer": "custom_binary", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "harness", "avg_time_ser_ns": 38197.69072164949, "avg_time_deser_ns": 27078.907216494845, "avg_time_total_ns": 65276.59793814433, "median_size_bytes": 13866.0, "avg_ops_per_sec": 15319.425821602917, "min_ops_per_sec": 10313.424985303369, "max_ops_per_sec": 20026.83596018665, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 38197.69072164949, "ser_median_ns": 34980.0, "ser_std_ns": 10296.778248519478, "ser_mad_ns": 7458.0, "ser_cv": 0.2695654646652114, "ser_min_ns": 24121.0, "ser_max_ns": 68213.0, "ser_p5_ns": 26579.2, "ser_p25_ns": 28308.0, "ser_p50_ns": 34980.0, "ser_p75_ns": 48110.0, "ser_p95_ns": 52999.0, "ser_p99_ns": 60376.51999999994, "ser_ci_low_ns": 36273.01546391753, "ser_ci_high_ns": 40297.83969072165, "deser_mean_ns": 27078.907216494845, "deser_median_ns": 27016.0, "deser_std_ns": 1120.2246062218414, "deser_mad_ns": 740.0, "deser_cv": 0.041368900054410906, "deser_min_ns": 24476.0, "deser_max_ns": 30109.0, "deser_p5_ns": 25452.8, "deser_p25_ns": 26295.0, "deser_p50_ns": 27016.0, "deser_p75_ns": 27795.0, "deser_p95_ns": 28939.199999999997, "deser_p99_ns": 29333.319999999992, "deser_ci_low_ns": 26856.25386597938, "deser_ci_high_ns": 27302.262113402063, "total_mean_ns": 65276.59793814433, "total_median_ns": 63042.0, "total_std_ns": 10584.190229082826, "total_mad_ns": 8614.0, "total_cv": 0.16214371709616873, "total_min_ns": 49933.0, "total_max_ns": 96961.0, "total_p5_ns": 52253.4, "total_p25_ns": 55370.0, "total_p50_ns": 63042.0, "total_p75_ns": 75037.0, "total_p95_ns": 81807.0, "total_p99_ns": 86273.3199999999, "total_ci_low_ns": 63162.32010309278, "total_ci_high_ns": 67425.80592783504, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.9470125263274581, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.443496490028872}, {"serializer": "simdjson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.10.1", "avg_time_ser_ns": 12733.95744680851, "avg_time_deser_ns": 338784.44680851063, "avg_time_total_ns": 351518.40425531915, "median_size_bytes": 25463.0, "avg_ops_per_sec": 2844.8012618812063, "min_ops_per_sec": 2596.404499049716, "max_ops_per_sec": 3103.7104858858766, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 12733.95744680851, "ser_median_ns": 5917.0, "ser_std_ns": 10059.199141806163, "ser_mad_ns": 1398.0, "ser_cv": 0.7899507426363579, "ser_min_ns": 4310.0, "ser_max_ns": 35349.0, "ser_p5_ns": 4487.3, "ser_p25_ns": 4761.5, "ser_p50_ns": 5917.0, "ser_p75_ns": 24614.75, "ser_p95_ns": 30547.6, "ser_p99_ns": 34737.99, "ser_ci_low_ns": 10748.091489361701, "ser_ci_high_ns": 14913.092819148937, "deser_mean_ns": 338784.44680851063, "deser_median_ns": 340425.0, "deser_std_ns": 9751.242769009035, "deser_mad_ns": 5833.0, "deser_cv": 0.028783029625089843, "deser_min_ns": 317885.0, "deser_max_ns": 362521.0, "deser_p5_ns": 321838.45, "deser_p25_ns": 330595.75, "deser_p50_ns": 340425.0, "deser_p75_ns": 344969.5, "deser_p95_ns": 355300.7, "deser_p99_ns": 360131.82999999996, "deser_ci_low_ns": 336706.3438829787, "deser_ci_high_ns": 340701.63191489363, "total_mean_ns": 351518.40425531915, "total_median_ns": 349669.0, "total_std_ns": 13195.540651376594, "total_mad_ns": 7468.5, "total_cv": 0.03753869069624089, "total_min_ns": 322195.0, "total_max_ns": 385148.0, "total_p5_ns": 332239.75, "total_p25_ns": 343384.0, "total_p50_ns": 349669.0, "total_p75_ns": 359424.5, "total_p95_ns": 375143.85, "total_p99_ns": 384241.25, "total_ci_low_ns": 348773.0029255319, "total_ci_high_ns": 354270.74202127656, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.02278761976967}, {"serializer": "capnproto", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "1.0.x", "avg_time_ser_ns": 24957.606382978724, "avg_time_deser_ns": 37493.04255319149, "avg_time_total_ns": 62450.64893617021, "median_size_bytes": 27048.0, "avg_ops_per_sec": 16012.643856144452, "min_ops_per_sec": 12088.82871338596, "max_ops_per_sec": 20265.067077372027, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 24957.606382978724, "ser_median_ns": 21102.0, "ser_std_ns": 9882.860930759525, "ser_mad_ns": 5832.5, "ser_cv": 0.395985928261923, "ser_min_ns": 14487.0, "ser_max_ns": 43370.0, "ser_p5_ns": 14829.4, "ser_p25_ns": 15804.25, "ser_p50_ns": 21102.0, "ser_p75_ns": 36263.25, "ser_p95_ns": 41163.35, "ser_p99_ns": 42676.219999999994, "ser_ci_low_ns": 23068.8539893617, "ser_ci_high_ns": 27013.77579787234, "deser_mean_ns": 37493.04255319149, "deser_median_ns": 37026.0, "deser_std_ns": 1964.776098299581, "deser_mad_ns": 1125.0, "deser_cv": 0.05240375185641836, "deser_min_ns": 34192.0, "deser_max_ns": 42704.0, "deser_p5_ns": 35001.15, "deser_p25_ns": 36244.5, "deser_p50_ns": 37026.0, "deser_p75_ns": 38535.5, "deser_p95_ns": 41370.0, "deser_p99_ns": 42024.17, "deser_ci_low_ns": 37118.93457446809, "deser_ci_high_ns": 37902.90611702127, "total_mean_ns": 62450.64893617021, "total_median_ns": 60064.5, "total_std_ns": 10554.30792412034, "total_mad_ns": 8103.5, "total_cv": 0.16900237393702225, "total_min_ns": 49346.0, "total_max_ns": 82721.0, "total_p5_ns": 50147.55, "total_p25_ns": 52576.25, "total_p50_ns": 60064.5, "total_p75_ns": 72453.0, "total_p95_ns": 80661.8, "total_p99_ns": 82551.74, "total_ci_low_ns": 60341.54414893618, "total_ci_high_ns": 64531.35265957447, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.8789750629146649, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.179999171211022}, {"serializer": "yyjson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "0.10.0", "avg_time_ser_ns": 35360.48453608248, "avg_time_deser_ns": 354563.90721649484, "avg_time_total_ns": 389924.3917525773, "median_size_bytes": 25463.0, "avg_ops_per_sec": 2564.599756135646, "min_ops_per_sec": 2335.499119516832, "max_ops_per_sec": 2849.8959787967738, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 35360.48453608248, "ser_median_ns": 32789.0, "ser_std_ns": 10037.341598079105, "ser_mad_ns": 7316.0, "ser_cv": 0.2838575808495164, "ser_min_ns": 22563.0, "ser_max_ns": 55517.0, "ser_p5_ns": 24592.4, "ser_p25_ns": 26071.0, "ser_p50_ns": 32789.0, "ser_p75_ns": 45663.0, "ser_p95_ns": 50365.19999999999, "ser_p99_ns": 54567.55999999999, "ser_ci_low_ns": 33393.561340206186, "ser_ci_high_ns": 37403.85876288659, "deser_mean_ns": 354563.90721649484, "deser_median_ns": 354422.0, "deser_std_ns": 14851.777635664297, "deser_mad_ns": 10453.0, "deser_cv": 0.04188744915481733, "deser_min_ns": 326794.0, "deser_max_ns": 395767.0, "deser_p5_ns": 333767.4, "deser_p25_ns": 343969.0, "deser_p50_ns": 354422.0, "deser_p75_ns": 363471.0, "deser_p95_ns": 379547.0, "deser_p99_ns": 392829.39999999997, "deser_ci_low_ns": 351522.3788659794, "deser_ci_high_ns": 357474.9579896907, "total_mean_ns": 389924.3917525773, "total_median_ns": 389653.0, "total_std_ns": 16971.127032745877, "total_mad_ns": 10987.0, "total_cv": 0.04352414824952715, "total_min_ns": 350890.0, "total_max_ns": 428174.0, "total_p5_ns": 360715.0, "total_p25_ns": 379534.0, "total_p50_ns": 389653.0, "total_p75_ns": 400925.0, "total_p95_ns": 419805.6, "total_p99_ns": 425044.39999999997, "total_ci_low_ns": 386485.5404639175, "total_ci_high_ns": 393271.64793814434, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.60417410001625}, {"serializer": "arduinojson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "7.2.1", "avg_time_ser_ns": 261756.52325581395, "avg_time_deser_ns": 3411578.7325581396, "avg_time_total_ns": 3673335.2558139535, "median_size_bytes": 25463.0, "avg_ops_per_sec": 272.2321624243948, "min_ops_per_sec": 261.70693638532475, "max_ops_per_sec": 285.67576029746846, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 261756.52325581395, "ser_median_ns": 261564.5, "ser_std_ns": 7366.214453965194, "ser_mad_ns": 3212.5, "ser_cv": 0.0281414742308684, "ser_min_ns": 246817.0, "ser_max_ns": 281358.0, "ser_p5_ns": 248910.75, "ser_p25_ns": 258089.75, "ser_p50_ns": 261564.5, "ser_p75_ns": 264545.25, "ser_p95_ns": 275742.5, "ser_p99_ns": 279953.8, "ser_ci_low_ns": 260248.39389534883, "ser_ci_high_ns": 263253.91831395344, "deser_mean_ns": 3411578.7325581396, "deser_median_ns": 3413778.0, "deser_std_ns": 61636.85531093997, "deser_mad_ns": 41624.0, "deser_cv": 0.018066959652055917, "deser_min_ns": 3253655.0, "deser_max_ns": 3552639.0, "deser_p5_ns": 3319189.75, "deser_p25_ns": 3368617.5, "deser_p50_ns": 3413778.0, "deser_p75_ns": 3453884.0, "deser_p95_ns": 3503363.75, "deser_p99_ns": 3548502.9, "deser_ci_low_ns": 3398421.0732558137, "deser_ci_high_ns": 3424619.1959302328, "total_mean_ns": 3673335.2558139535, "total_median_ns": 3674847.5, "total_std_ns": 65794.74077179655, "total_mad_ns": 47670.0, "total_cv": 0.01791144455645867, "total_min_ns": 3500472.0, "total_max_ns": 3821068.0, "total_p5_ns": 3578704.75, "total_p25_ns": 3627083.25, "total_p50_ns": 3674847.5, "total_p75_ns": 3721276.5, "total_p95_ns": 3774570.75, "total_p99_ns": 3811635.5500000003, "total_ci_low_ns": 3659774.629651163, "total_ci_high_ns": 3687794.4369186047, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 78.2847198603248}, {"serializer": "nlohmann_msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 90266.96808510639, "avg_time_deser_ns": 339022.7978723404, "avg_time_total_ns": 429289.7659574468, "median_size_bytes": 19565.0, "avg_ops_per_sec": 2329.4289295942, "min_ops_per_sec": 2166.0774935884106, "max_ops_per_sec": 2508.56675546993, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 90266.96808510639, "ser_median_ns": 88217.5, "ser_std_ns": 5939.790468141288, "ser_mad_ns": 3582.5, "ser_cv": 0.06580248117496398, "ser_min_ns": 81009.0, "ser_max_ns": 107684.0, "ser_p5_ns": 82888.3, "ser_p25_ns": 85964.25, "ser_p50_ns": 88217.5, "ser_p75_ns": 95559.25, "ser_p95_ns": 100306.8, "ser_p99_ns": 105717.04999999999, "ser_ci_low_ns": 89085.16941489361, "ser_ci_high_ns": 91504.15611702128, "deser_mean_ns": 339022.7978723404, "deser_median_ns": 339870.5, "deser_std_ns": 11371.682185714595, "deser_mad_ns": 6429.5, "deser_cv": 0.03354252946138631, "deser_min_ns": 314647.0, "deser_max_ns": 363655.0, "deser_p5_ns": 318401.55, "deser_p25_ns": 332896.25, "deser_p50_ns": 339870.5, "deser_p75_ns": 345639.5, "deser_p95_ns": 357619.8, "deser_p99_ns": 363404.83, "deser_ci_low_ns": 336692.65664893616, "deser_ci_high_ns": 341258.9236702128, "total_mean_ns": 429289.7659574468, "total_median_ns": 430083.0, "total_std_ns": 14075.248919226384, "total_mad_ns": 8716.5, "total_cv": 0.03278729202368544, "total_min_ns": 398634.0, "total_max_ns": 461664.0, "total_p5_ns": 406524.4, "total_p25_ns": 420412.5, "total_p50_ns": 430083.0, "total_p75_ns": 436133.0, "total_p95_ns": 454198.6, "total_p99_ns": 461451.02999999997, "total_ci_low_ns": 426521.910106383, "total_ci_high_ns": 432090.22712765954, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 31.21424402823724}, {"serializer": "cereal", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "1.3.2", "avg_time_ser_ns": 22294.18556701031, "avg_time_deser_ns": 40366.0412371134, "avg_time_total_ns": 62660.22680412371, "median_size_bytes": 18670.0, "avg_ops_per_sec": 15959.086824342445, "min_ops_per_sec": 11133.501820327547, "max_ops_per_sec": 20333.05544824221, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 22294.18556701031, "ser_median_ns": 21782.0, "ser_std_ns": 1502.949539862484, "ser_mad_ns": 859.0, "ser_cv": 0.06741441777924666, "ser_min_ns": 19935.0, "ser_max_ns": 26062.0, "ser_p5_ns": 20299.6, "ser_p25_ns": 21316.0, "ser_p50_ns": 21782.0, "ser_p75_ns": 23251.0, "ser_p95_ns": 25484.6, "ser_p99_ns": 26002.48, "ser_ci_low_ns": 22001.74845360825, "ser_ci_high_ns": 22590.15180412371, "deser_mean_ns": 40366.0412371134, "deser_median_ns": 35156.0, "deser_std_ns": 10580.76503901215, "deser_mad_ns": 4738.0, "deser_cv": 0.2621204535976139, "deser_min_ns": 27895.0, "deser_max_ns": 64212.0, "deser_p5_ns": 29428.2, "deser_p25_ns": 31672.0, "deser_p50_ns": 35156.0, "deser_p75_ns": 52034.0, "deser_p95_ns": 58431.799999999996, "deser_p99_ns": 63834.719999999994, "deser_ci_low_ns": 38326.19226804124, "deser_ci_high_ns": 42376.934536082474, "total_mean_ns": 62660.22680412371, "total_median_ns": 58221.0, "total_std_ns": 10803.362447737774, "total_mad_ns": 5776.0, "total_cv": 0.17241179929828784, "total_min_ns": 49181.0, "total_max_ns": 89819.0, "total_p5_ns": 50251.6, "total_p25_ns": 54336.0, "total_p50_ns": 58221.0, "total_p75_ns": 73753.0, "total_p95_ns": 80918.59999999998, "total_p99_ns": 86227.63999999997, "total_ci_low_ns": 60528.9737113402, "total_ci_high_ns": 64788.70850515464, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.8949118722979714, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.1735164428334635}, {"serializer": "flexbuffers", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "flatbuffers-flex", "avg_time_ser_ns": 120397.97849462366, "avg_time_deser_ns": 219026.21505376344, "avg_time_total_ns": 339424.1935483871, "median_size_bytes": 25512.0, "avg_ops_per_sec": 2946.1659451728024, "min_ops_per_sec": 2696.5516497502995, "max_ops_per_sec": 3237.3250630469056, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 120397.97849462366, "ser_median_ns": 117629.0, "ser_std_ns": 11200.78122855577, "ser_mad_ns": 7545.0, "ser_cv": 0.09303130641064657, "ser_min_ns": 103708.0, "ser_max_ns": 148359.0, "ser_p5_ns": 106361.8, "ser_p25_ns": 111831.0, "ser_p50_ns": 117629.0, "ser_p75_ns": 127596.0, "ser_p95_ns": 140048.8, "ser_p99_ns": 147878.76, "ser_ci_low_ns": 118157.25564516129, "ser_ci_high_ns": 122741.47983870967, "deser_mean_ns": 219026.21505376344, "deser_median_ns": 219574.0, "deser_std_ns": 6891.523692266846, "deser_mad_ns": 4707.0, "deser_cv": 0.03146437831916701, "deser_min_ns": 204180.0, "deser_max_ns": 237322.0, "deser_p5_ns": 206214.4, "deser_p25_ns": 214651.0, "deser_p50_ns": 219574.0, "deser_p75_ns": 223451.0, "deser_p95_ns": 228830.2, "deser_p99_ns": 236449.84, "deser_ci_low_ns": 217594.53844086023, "deser_ci_high_ns": 220528.21397849463, "total_mean_ns": 339424.1935483871, "total_median_ns": 338611.0, "total_std_ns": 13119.374671320264, "total_mad_ns": 9933.0, "total_cv": 0.03865185487860639, "total_min_ns": 308897.0, "total_max_ns": 370844.0, "total_p5_ns": 318666.8, "total_p25_ns": 329100.0, "total_p50_ns": 338611.0, "total_p75_ns": 349091.0, "total_p95_ns": 362027.2, "total_p99_ns": 366412.36, "total_ci_low_ns": 336820.6379032258, "total_ci_high_ns": 342238.5362903226, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.117394388018724}, {"serializer": "rapidjson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "1.1.0", "avg_time_ser_ns": 187385.2857142857, "avg_time_deser_ns": 683877.8461538461, "avg_time_total_ns": 871263.1318681319, "median_size_bytes": 25463.0, "avg_ops_per_sec": 1147.7588841109746, "min_ops_per_sec": 1071.9607233590962, "max_ops_per_sec": 1230.3815659312265, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 187385.2857142857, "ser_median_ns": 186900.0, "ser_std_ns": 6570.641969795501, "ser_mad_ns": 4812.0, "ser_cv": 0.035064876864526265, "ser_min_ns": 175040.0, "ser_max_ns": 204382.0, "ser_p5_ns": 177617.5, "ser_p25_ns": 182074.5, "ser_p50_ns": 186900.0, "ser_p75_ns": 191427.0, "ser_p95_ns": 198292.0, "ser_p99_ns": 203418.1, "ser_ci_low_ns": 186064.7631868132, "ser_ci_high_ns": 188738.09230769234, "deser_mean_ns": 683877.8461538461, "deser_median_ns": 686265.0, "deser_std_ns": 21238.078800914318, "deser_mad_ns": 14339.0, "deser_cv": 0.031055368908874656, "deser_min_ns": 634636.0, "deser_max_ns": 736900.0, "deser_p5_ns": 643792.0, "deser_p25_ns": 671165.0, "deser_p50_ns": 686265.0, "deser_p75_ns": 698007.5, "deser_p95_ns": 715299.5, "deser_p99_ns": 722087.7999999999, "deser_ci_low_ns": 679541.684065934, "deser_ci_high_ns": 688247.1214285714, "total_mean_ns": 871263.1318681319, "total_median_ns": 874811.0, "total_std_ns": 24971.130010566998, "total_mad_ns": 16037.0, "total_cv": 0.028660836315918446, "total_min_ns": 812756.0, "total_max_ns": 932870.0, "total_p5_ns": 824126.5, "total_p25_ns": 854946.0, "total_p50_ns": 874811.0, "total_p75_ns": 888680.5, "total_p95_ns": 906157.0, "total_p99_ns": 922727.8999999999, "total_ci_low_ns": 866202.1642857143, "total_ci_high_ns": 876288.5744505494, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 43.39634265286159}, {"serializer": "zpp_bits", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "4.4.25", "avg_time_ser_ns": 29801.89010989011, "avg_time_deser_ns": 18054.86813186813, "avg_time_total_ns": 47856.758241758245, "median_size_bytes": 14270.0, "avg_ops_per_sec": 20895.69032127698, "min_ops_per_sec": 14028.196675317387, "max_ops_per_sec": 26837.712353398998, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 29801.89010989011, "ser_median_ns": 23211.0, "ser_std_ns": 10265.266462364509, "ser_mad_ns": 1910.0, "ser_cv": 0.3444501816667614, "ser_min_ns": 20376.0, "ser_max_ns": 52666.0, "ser_p5_ns": 21034.0, "ser_p25_ns": 21961.0, "ser_p50_ns": 23211.0, "ser_p75_ns": 41256.0, "ser_p95_ns": 48220.5, "ser_p99_ns": 51000.09999999999, "ser_ci_low_ns": 27695.943681318684, "ser_ci_high_ns": 31914.12994505494, "deser_mean_ns": 18054.86813186813, "deser_median_ns": 18004.0, "deser_std_ns": 704.0814379789255, "deser_mad_ns": 402.0, "deser_cv": 0.038996764353884786, "deser_min_ns": 16734.0, "deser_max_ns": 19781.0, "deser_p5_ns": 17110.0, "deser_p25_ns": 17598.5, "deser_p50_ns": 18004.0, "deser_p75_ns": 18395.0, "deser_p95_ns": 19645.5, "deser_p99_ns": 19751.3, "deser_ci_low_ns": 17911.99313186813, "deser_ci_high_ns": 18202.538736263734, "total_mean_ns": 47856.758241758245, "total_median_ns": 41836.0, "total_std_ns": 10428.074492915384, "total_mad_ns": 3181.0, "total_cv": 0.21790181525116734, "total_min_ns": 37261.0, "total_max_ns": 71285.0, "total_p5_ns": 38271.5, "total_p25_ns": 39899.5, "total_p50_ns": 41836.0, "total_p75_ns": 59038.0, "total_p95_ns": 66704.0, "total_p99_ns": 69183.49999999999, "total_ci_low_ns": 45718.67582417582, "total_ci_high_ns": 50033.48736263737, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.42691716885265274, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.8063002309489665}, {"serializer": "cista", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "0.15", "avg_time_ser_ns": 13972.567010309278, "avg_time_deser_ns": 46563.63917525773, "avg_time_total_ns": 60536.20618556701, "median_size_bytes": 20824.0, "avg_ops_per_sec": 16519.039811226543, "min_ops_per_sec": 12411.875682653163, "max_ops_per_sec": 20170.236798580016, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 13972.567010309278, "ser_median_ns": 7689.0, "ser_std_ns": 9739.36142767586, "ser_mad_ns": 1607.0, "ser_cv": 0.6970345120184385, "ser_min_ns": 5613.0, "ser_max_ns": 33290.0, "ser_p5_ns": 5867.0, "ser_p25_ns": 6299.0, "ser_p50_ns": 7689.0, "ser_p75_ns": 26614.0, "ser_p95_ns": 29450.6, "ser_p99_ns": 31859.599999999988, "ser_ci_low_ns": 12066.216237113402, "ser_ci_high_ns": 15841.772422680411, "deser_mean_ns": 46563.63917525773, "deser_median_ns": 46342.0, "deser_std_ns": 1762.2246899963257, "deser_mad_ns": 1105.0, "deser_cv": 0.03784551038555228, "deser_min_ns": 43483.0, "deser_max_ns": 50829.0, "deser_p5_ns": 44116.4, "deser_p25_ns": 45307.0, "deser_p50_ns": 46342.0, "deser_p75_ns": 47990.0, "deser_p95_ns": 49804.0, "deser_p99_ns": 50661.0, "deser_ci_low_ns": 46216.313659793814, "deser_ci_high_ns": 46913.5456185567, "total_mean_ns": 60536.20618556701, "total_median_ns": 55326.0, "total_std_ns": 10127.145787990383, "total_mad_ns": 3959.0, "total_cv": 0.16729072444590834, "total_min_ns": 49578.0, "total_max_ns": 80568.0, "total_p5_ns": 50561.0, "total_p25_ns": 52397.0, "total_p50_ns": 55326.0, "total_p75_ns": 71913.0, "total_p95_ns": 77284.19999999998, "total_p99_ns": 80025.59999999999, "total_ci_low_ns": 58603.24871134021, "total_ci_high_ns": 62627.475, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.8665336437202084, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.041111627638358}, {"serializer": "bitsery", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "5.2.4", "avg_time_ser_ns": 20606.59139784946, "avg_time_deser_ns": 18763.537634408603, "avg_time_total_ns": 39370.12903225807, "median_size_bytes": 10263.0, "avg_ops_per_sec": 25399.96755358983, "min_ops_per_sec": 15833.557642066597, "max_ops_per_sec": 36685.13151619649, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 20606.59139784946, "ser_median_ns": 15225.0, "ser_std_ns": 10411.700863677741, "ser_mad_ns": 5335.0, "ser_cv": 0.5052607033671918, "ser_min_ns": 9483.0, "ser_max_ns": 44308.0, "ser_p5_ns": 9876.0, "ser_p25_ns": 11085.0, "ser_p50_ns": 15225.0, "ser_p75_ns": 31579.0, "ser_p95_ns": 33836.39999999999, "ser_p99_ns": 41126.63999999999, "ser_ci_low_ns": 18646.482795698925, "ser_ci_high_ns": 22746.006451612902, "deser_mean_ns": 18763.537634408603, "deser_median_ns": 18797.0, "deser_std_ns": 638.9989038423574, "deser_mad_ns": 388.0, "deser_cv": 0.034055353329031104, "deser_min_ns": 17518.0, "deser_max_ns": 20409.0, "deser_p5_ns": 17666.8, "deser_p25_ns": 18373.0, "deser_p50_ns": 18797.0, "deser_p75_ns": 19176.0, "deser_p95_ns": 19759.0, "deser_p99_ns": 20150.48, "deser_ci_low_ns": 18633.099193548387, "deser_ci_high_ns": 18894.704838709677, "total_mean_ns": 39370.12903225807, "total_median_ns": 34980.0, "total_std_ns": 10534.41216579368, "total_mad_ns": 6573.0, "total_cv": 0.26757372720730144, "total_min_ns": 27259.0, "total_max_ns": 63157.0, "total_p5_ns": 28078.6, "total_p25_ns": 29854.0, "total_p50_ns": 34980.0, "total_p75_ns": 50154.0, "total_p95_ns": 53958.999999999985, "total_p99_ns": 59663.759999999995, "total_ci_low_ns": 37227.835752688174, "total_ci_high_ns": 41392.92715053764, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "avro", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "binary-1.11", "avg_time_ser_ns": 26319.988764044945, "avg_time_deser_ns": 25239.03370786517, "avg_time_total_ns": 51559.02247191011, "median_size_bytes": 10165.0, "avg_ops_per_sec": 19395.24746701337, "min_ops_per_sec": 12673.307479786075, "max_ops_per_sec": 24626.295958824834, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 26319.988764044945, "ser_median_ns": 18742.0, "ser_std_ns": 10765.042618560215, "ser_mad_ns": 1610.0, "ser_cv": 0.4090063531207149, "ser_min_ns": 16412.0, "ser_max_ns": 53506.0, "ser_p5_ns": 17125.8, "ser_p25_ns": 17774.0, "ser_p50_ns": 18742.0, "ser_p75_ns": 37983.0, "ser_p95_ns": 43754.2, "ser_p99_ns": 47895.12000000003, "ser_ci_low_ns": 24102.572191011233, "ser_ci_high_ns": 28516.08202247191, "deser_mean_ns": 25239.03370786517, "deser_median_ns": 25126.0, "deser_std_ns": 857.7273280626039, "deser_mad_ns": 456.0, "deser_cv": 0.03398415874357792, "deser_min_ns": 23376.0, "deser_max_ns": 27263.0, "deser_p5_ns": 23917.4, "deser_p25_ns": 24708.0, "deser_p50_ns": 25126.0, "deser_p75_ns": 25669.0, "deser_p95_ns": 26944.8, "deser_p99_ns": 27204.920000000002, "deser_ci_low_ns": 25062.951404494383, "deser_ci_high_ns": 25416.99466292135, "total_mean_ns": 51559.02247191011, "total_median_ns": 44795.0, "total_std_ns": 10923.036275539966, "total_mad_ns": 2888.0, "total_cv": 0.21185499165526167, "total_min_ns": 40607.0, "total_max_ns": 78906.0, "total_p5_ns": 41360.0, "total_p25_ns": 42611.0, "total_p50_ns": 44795.0, "total_p75_ns": 63041.0, "total_p95_ns": 69381.2, "total_p99_ns": 73140.24000000003, "total_ci_low_ns": 49269.04662921348, "total_ci_high_ns": 53816.325561797756, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.5109339132535943, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.1316286092969967}, {"serializer": "jsoncons_msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 96696.44680851063, "avg_time_deser_ns": 639282.9787234042, "avg_time_total_ns": 735979.4255319149, "median_size_bytes": 19565.0, "avg_ops_per_sec": 1358.7336348122358, "min_ops_per_sec": 1266.031119044906, "max_ops_per_sec": 1468.7566094047422, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 96696.44680851063, "ser_median_ns": 90983.5, "ser_std_ns": 12646.360673839694, "ser_mad_ns": 7455.0, "ser_cv": 0.13078413004030504, "ser_min_ns": 80649.0, "ser_max_ns": 134318.0, "ser_p5_ns": 82934.2, "ser_p25_ns": 86447.75, "ser_p50_ns": 90983.5, "ser_p75_ns": 107081.75, "ser_p95_ns": 119626.24999999997, "ser_p99_ns": 133319.18, "ser_ci_low_ns": 94125.31728723404, "ser_ci_high_ns": 99340.68404255318, "deser_mean_ns": 639282.9787234042, "deser_median_ns": 641448.5, "deser_std_ns": 16706.23839309299, "deser_mad_ns": 10462.0, "deser_cv": 0.026132775232736494, "deser_min_ns": 600199.0, "deser_max_ns": 680206.0, "deser_p5_ns": 610968.15, "deser_p25_ns": 629279.0, "deser_p50_ns": 641448.5, "deser_p75_ns": 649529.75, "deser_p95_ns": 665170.5, "deser_p99_ns": 679375.51, "deser_ci_low_ns": 636034.0949468085, "deser_ci_high_ns": 642577.4976063829, "total_mean_ns": 735979.4255319149, "total_median_ns": 732759.5, "total_std_ns": 22488.47204584519, "total_mad_ns": 15468.5, "total_cv": 0.03055584336422459, "total_min_ns": 680848.0, "total_max_ns": 789870.0, "total_p5_ns": 702442.5, "total_p25_ns": 720685.25, "total_p50_ns": 732759.5, "total_p75_ns": 751887.5, "total_p95_ns": 775577.85, "total_p99_ns": 786694.98, "total_ci_low_ns": 731543.1837765957, "total_ci_high_ns": 740539.5396276596, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 39.4410790580687}, {"serializer": "yas", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "7.x", "avg_time_ser_ns": 22103.22680412371, "avg_time_deser_ns": 18252.0206185567, "avg_time_total_ns": 40355.24742268041, "median_size_bytes": 18677.0, "avg_ops_per_sec": 24779.92488872664, "min_ops_per_sec": 14628.651677174916, "max_ops_per_sec": 35857.71658060815, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 22103.22680412371, "ser_median_ns": 19870.0, "ser_std_ns": 10518.87112477811, "ser_mad_ns": 8674.0, "ser_cv": 0.47589753378523203, "ser_min_ns": 10834.0, "ser_max_ns": 49175.0, "ser_p5_ns": 11086.8, "ser_p25_ns": 11952.0, "ser_p50_ns": 19870.0, "ser_p75_ns": 32596.0, "ser_p95_ns": 36550.79999999998, "ser_p99_ns": 40699.15999999993, "ser_ci_low_ns": 19938.496649484536, "ser_ci_high_ns": 24290.688402061856, "deser_mean_ns": 18252.0206185567, "deser_median_ns": 18144.0, "deser_std_ns": 817.2298863052224, "deser_mad_ns": 638.0, "deser_cv": 0.04477476238846402, "deser_min_ns": 16741.0, "deser_max_ns": 20613.0, "deser_p5_ns": 17081.0, "deser_p25_ns": 17617.0, "deser_p50_ns": 18144.0, "deser_p75_ns": 18810.0, "deser_p95_ns": 19858.4, "deser_p99_ns": 19988.039999999994, "deser_ci_low_ns": 18087.46005154639, "deser_ci_high_ns": 18417.56675257732, "total_mean_ns": 40355.24742268041, "total_median_ns": 38001.0, "total_std_ns": 10745.164708128535, "total_mad_ns": 9061.0, "total_cv": 0.26626437438442146, "total_min_ns": 27888.0, "total_max_ns": 68359.0, "total_p5_ns": 28565.4, "total_p25_ns": 30071.0, "total_p50_ns": 38001.0, "total_p75_ns": 50579.0, "total_p95_ns": 56092.6, "total_p99_ns": 58119.63999999991, "total_ci_low_ns": 38235.58273195876, "total_ci_high_ns": 42542.225773195874, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.067509145327569, "effect_vs_fastest_cliffs_label": "negligible", "effect_vs_fastest_hedges_g": 0.09219435042986728}, {"serializer": "avro_c", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "avro-c", "avg_time_ser_ns": 99515.32291666667, "avg_time_deser_ns": 125222.8125, "avg_time_total_ns": 224738.13541666666, "median_size_bytes": 10165.0, "avg_ops_per_sec": 4449.623105335418, "min_ops_per_sec": 3837.976004974017, "max_ops_per_sec": 4890.669092438537, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 99515.32291666667, "ser_median_ns": 93807.0, "ser_std_ns": 11150.2339569458, "ser_mad_ns": 5517.0, "ser_cv": 0.11204539793618432, "ser_min_ns": 85893.0, "ser_max_ns": 136784.0, "ser_p5_ns": 87548.0, "ser_p25_ns": 90737.5, "ser_p50_ns": 93807.0, "ser_p75_ns": 110456.75, "ser_p95_ns": 116215.75, "ser_p99_ns": 121513.69999999995, "ser_ci_low_ns": 97398.21119791667, "ser_ci_high_ns": 101690.92578125, "deser_mean_ns": 125222.8125, "deser_median_ns": 125551.0, "deser_std_ns": 3831.105439790123, "deser_mad_ns": 2761.5, "deser_cv": 0.03059430916223929, "deser_min_ns": 118578.0, "deser_max_ns": 134575.0, "deser_p5_ns": 119397.0, "deser_p25_ns": 122408.25, "deser_p50_ns": 125551.0, "deser_p75_ns": 127567.0, "deser_p95_ns": 132405.25, "deser_p99_ns": 133848.25, "deser_ci_low_ns": 124474.67760416666, "deser_ci_high_ns": 125984.59088541666, "total_mean_ns": 224738.13541666666, "total_median_ns": 221517.0, "total_std_ns": 11946.087922187213, "total_mad_ns": 8272.5, "total_cv": 0.053155588836932596, "total_min_ns": 204471.0, "total_max_ns": 260554.0, "total_p5_ns": 209113.25, "total_p25_ns": 216021.0, "total_p50_ns": 221517.0, "total_p75_ns": 232568.0, "total_p95_ns": 244620.25, "total_p99_ns": 250654.99999999997, "total_ci_low_ns": 222452.63697916668, "total_ci_high_ns": 227171.353125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.37650384225926}, {"serializer": "protobuf-wire", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "wire-v2", "avg_time_ser_ns": 74505.75257731958, "avg_time_deser_ns": 42718.721649484534, "avg_time_total_ns": 117224.47422680413, "median_size_bytes": 12183.0, "avg_ops_per_sec": 8530.641801516766, "min_ops_per_sec": 6834.989679165585, "max_ops_per_sec": 9858.918870956611, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 74505.75257731958, "ser_median_ns": 70443.0, "ser_std_ns": 10600.0172366516, "ser_mad_ns": 6872.0, "ser_cv": 0.14227112497993033, "ser_min_ns": 60823.0, "ser_max_ns": 104950.0, "ser_p5_ns": 62282.6, "ser_p25_ns": 65257.0, "ser_p50_ns": 70443.0, "ser_p75_ns": 84507.0, "ser_p95_ns": 90793.79999999999, "ser_p99_ns": 95645.67999999992, "ser_ci_low_ns": 72461.47912371134, "ser_ci_high_ns": 76731.87731958763, "deser_mean_ns": 42718.721649484534, "deser_median_ns": 42870.0, "deser_std_ns": 1397.710574045017, "deser_mad_ns": 963.0, "deser_cv": 0.03271892322793518, "deser_min_ns": 38848.0, "deser_max_ns": 46195.0, "deser_p5_ns": 40685.8, "deser_p25_ns": 41706.0, "deser_p50_ns": 42870.0, "deser_p75_ns": 43564.0, "deser_p95_ns": 44838.2, "deser_p99_ns": 46123.0, "deser_ci_low_ns": 42435.87036082474, "deser_ci_high_ns": 43004.04716494845, "total_mean_ns": 117224.47422680413, "total_median_ns": 114012.0, "total_std_ns": 11028.252423787111, "total_mad_ns": 7963.0, "total_cv": 0.09407807112403692, "total_min_ns": 101431.0, "total_max_ns": 146306.0, "total_p5_ns": 103733.6, "total_p25_ns": 107758.0, "total_p50_ns": 114012.0, "total_p75_ns": 127255.0, "total_p95_ns": 134268.6, "total_p99_ns": 140314.63999999996, "total_ci_low_ns": 115077.76469072165, "total_ci_high_ns": 119535.43324742267, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.18698606523795}, {"serializer": "jsoncons_cbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "0.177.0", "avg_time_ser_ns": 100555.06451612903, "avg_time_deser_ns": 659030.3655913979, "avg_time_total_ns": 759585.4301075268, "median_size_bytes": 19564.0, "avg_ops_per_sec": 1316.5076110773216, "min_ops_per_sec": 1215.2425441831808, "max_ops_per_sec": 1405.0706188493034, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 100555.06451612903, "ser_median_ns": 98225.0, "ser_std_ns": 10573.421007419513, "ser_mad_ns": 8097.0, "ser_cv": 0.10515055664574245, "ser_min_ns": 81716.0, "ser_max_ns": 125224.0, "ser_p5_ns": 86432.4, "ser_p25_ns": 92217.0, "ser_p50_ns": 98225.0, "ser_p75_ns": 108532.0, "ser_p95_ns": 119995.2, "ser_p99_ns": 125121.88, "ser_ci_low_ns": 98431.67822580646, "ser_ci_high_ns": 102612.00806451614, "deser_mean_ns": 659030.3655913979, "deser_median_ns": 659002.0, "deser_std_ns": 18677.86135857389, "deser_mad_ns": 13795.0, "deser_cv": 0.02834142754835406, "deser_min_ns": 622285.0, "deser_max_ns": 700196.0, "deser_p5_ns": 629093.8, "deser_p25_ns": 643978.0, "deser_p50_ns": 659002.0, "deser_p75_ns": 670943.0, "deser_p95_ns": 690615.2, "deser_p99_ns": 698402.0, "deser_ci_low_ns": 655416.5739247312, "deser_ci_high_ns": 662949.2094086021, "total_mean_ns": 759585.4301075268, "total_median_ns": 759908.0, "total_std_ns": 22762.826932159187, "total_mad_ns": 14858.0, "total_cv": 0.02996743490582341, "total_min_ns": 711708.0, "total_max_ns": 822881.0, "total_p5_ns": 724224.0, "total_p25_ns": 741280.0, "total_p50_ns": 759908.0, "total_p75_ns": 772883.0, "total_p95_ns": 792402.4, "total_p99_ns": 813048.96, "total_ci_low_ns": 754862.6403225807, "total_ci_high_ns": 764387.065860215, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 40.44215533469635}, {"serializer": "nlohmann_bson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 127806.9574468085, "avg_time_deser_ns": 483007.7978723404, "avg_time_total_ns": 610814.7553191489, "median_size_bytes": 29169.0, "avg_ops_per_sec": 1637.157569118485, "min_ops_per_sec": 1509.310939183825, "max_ops_per_sec": 1743.2839983961787, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 127806.9574468085, "ser_median_ns": 125195.5, "ser_std_ns": 8387.420735859167, "ser_mad_ns": 4132.5, "ser_cv": 0.06562569756306026, "ser_min_ns": 113102.0, "ser_max_ns": 148093.0, "ser_p5_ns": 117197.9, "ser_p25_ns": 121934.0, "ser_p50_ns": 125195.5, "ser_p75_ns": 132761.0, "ser_p95_ns": 145570.05, "ser_p99_ns": 146356.68999999997, "ser_ci_low_ns": 126224.85691489361, "ser_ci_high_ns": 129407.14308510638, "deser_mean_ns": 483007.7978723404, "deser_median_ns": 483755.0, "deser_std_ns": 14552.871069192997, "deser_mad_ns": 11087.5, "deser_cv": 0.03012968141156044, "deser_min_ns": 456396.0, "deser_max_ns": 519601.0, "deser_p5_ns": 459834.8, "deser_p25_ns": 472086.0, "deser_p50_ns": 483755.0, "deser_p75_ns": 494322.5, "deser_p95_ns": 506166.0, "deser_p99_ns": 512050.32999999996, "deser_ci_low_ns": 480034.8300531915, "deser_ci_high_ns": 485832.06382978725, "total_mean_ns": 610814.7553191489, "total_median_ns": 612197.5, "total_std_ns": 19442.53180650644, "total_mad_ns": 13621.0, "total_cv": 0.031830488109848905, "total_min_ns": 573630.0, "total_max_ns": 662554.0, "total_p5_ns": 578560.25, "total_p25_ns": 595487.5, "total_p50_ns": 612197.5, "total_p75_ns": 623771.0, "total_p95_ns": 642996.1, "total_p99_ns": 651631.1499999999, "total_ci_low_ns": 606964.5872340426, "total_ci_high_ns": 614881.5861702127, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 36.344132588930286}, {"serializer": "nlohmann_cbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 90522.8085106383, "avg_time_deser_ns": 342624.5106382979, "avg_time_total_ns": 433147.3191489362, "median_size_bytes": 19564.0, "avg_ops_per_sec": 2308.683341189406, "min_ops_per_sec": 2083.6675883422968, "max_ops_per_sec": 2511.3702287104866, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 90522.8085106383, "ser_median_ns": 88903.5, "ser_std_ns": 5809.961338824593, "ser_mad_ns": 3482.0, "ser_cv": 0.06418229211416704, "ser_min_ns": 80819.0, "ser_max_ns": 105693.0, "ser_p5_ns": 83634.3, "ser_p25_ns": 86386.5, "ser_p50_ns": 88903.5, "ser_p75_ns": 93867.0, "ser_p95_ns": 101949.34999999999, "ser_p99_ns": 105613.02, "ser_ci_low_ns": 89383.91569148937, "ser_ci_high_ns": 91648.15132978723, "deser_mean_ns": 342624.5106382979, "deser_median_ns": 341498.0, "deser_std_ns": 13603.768055444683, "deser_mad_ns": 10541.0, "deser_cv": 0.03970459681971183, "deser_min_ns": 313504.0, "deser_max_ns": 383899.0, "deser_p5_ns": 321542.2, "deser_p25_ns": 332695.75, "deser_p50_ns": 341498.0, "deser_p75_ns": 352844.0, "deser_p95_ns": 363435.64999999997, "deser_p99_ns": 371544.8799999999, "deser_ci_low_ns": 339894.5401595745, "deser_ci_high_ns": 345372.9449468085, "total_mean_ns": 433147.3191489362, "total_median_ns": 433844.0, "total_std_ns": 16827.86930794971, "total_mad_ns": 10633.0, "total_cv": 0.03885022153897599, "total_min_ns": 398189.0, "total_max_ns": 479923.0, "total_p5_ns": 405988.85, "total_p25_ns": 420533.5, "total_p50_ns": 433844.0, "total_p75_ns": 444039.25, "total_p95_ns": 460856.2, "total_p99_ns": 467413.5699999999, "total_ci_low_ns": 429869.50877659576, "total_ci_high_ns": 436478.7861702128, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.903288399981886}, {"serializer": "thrift", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "TBinaryProtocol", "avg_time_ser_ns": 29313.268041237112, "avg_time_deser_ns": 27040.453608247422, "avg_time_total_ns": 56353.721649484534, "median_size_bytes": 18368.0, "avg_ops_per_sec": 17745.056949741793, "min_ops_per_sec": 11310.68180789938, "max_ops_per_sec": 23636.75041955232, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 29313.268041237112, "ser_median_ns": 23921.0, "ser_std_ns": 10643.628941879057, "ser_mad_ns": 5442.0, "ser_cv": 0.3630993626130627, "ser_min_ns": 17410.0, "ser_max_ns": 61421.0, "ser_p5_ns": 18357.6, "ser_p25_ns": 19989.0, "ser_p50_ns": 23921.0, "ser_p75_ns": 40084.0, "ser_p95_ns": 44429.59999999999, "ser_p99_ns": 50754.439999999915, "ser_ci_low_ns": 27302.265979381446, "ser_ci_high_ns": 31572.709020618553, "deser_mean_ns": 27040.453608247422, "deser_median_ns": 26991.0, "deser_std_ns": 1222.4248359699748, "deser_mad_ns": 814.0, "deser_cv": 0.04520726070945538, "deser_min_ns": 23782.0, "deser_max_ns": 30206.0, "deser_p5_ns": 25324.8, "deser_p25_ns": 26179.0, "deser_p50_ns": 26991.0, "deser_p75_ns": 27816.0, "deser_p95_ns": 29075.6, "deser_p99_ns": 29983.28, "deser_ci_low_ns": 26806.559278350516, "deser_ci_high_ns": 27284.384536082474, "total_mean_ns": 56353.721649484534, "total_median_ns": 52327.0, "total_std_ns": 10878.689933135205, "total_mad_ns": 7540.0, "total_cv": 0.19304297240206694, "total_min_ns": 42307.0, "total_max_ns": 88412.0, "total_p5_ns": 43853.6, "total_p25_ns": 46336.0, "total_p50_ns": 52327.0, "total_p75_ns": 67229.0, "total_p95_ns": 72722.99999999999, "total_p99_ns": 76327.5199999999, "total_ci_low_ns": 54205.12912371134, "total_ci_high_ns": 58561.09845360825, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 0.6468240771533089, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.5791996243615292}, {"serializer": "nlohmann_ubjson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "cpp", "serializer_version": "3.11.3", "avg_time_ser_ns": 97911.93548387097, "avg_time_deser_ns": 405733.36559139786, "avg_time_total_ns": 503645.3010752688, "median_size_bytes": 23664.0, "avg_ops_per_sec": 1985.5243320349214, "min_ops_per_sec": 1844.4875644648405, "max_ops_per_sec": 2167.3356509375894, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 97911.93548387097, "ser_median_ns": 97129.0, "ser_std_ns": 5146.8027682166785, "ser_mad_ns": 3382.0, "ser_cv": 0.052565631991459416, "ser_min_ns": 88067.0, "ser_max_ns": 110250.0, "ser_p5_ns": 90287.0, "ser_p25_ns": 94458.0, "ser_p50_ns": 97129.0, "ser_p75_ns": 101063.0, "ser_p95_ns": 107275.4, "ser_p99_ns": 108939.0, "ser_ci_low_ns": 96898.00806451612, "ser_ci_high_ns": 98965.11532258065, "deser_mean_ns": 405733.36559139786, "deser_median_ns": 405508.0, "deser_std_ns": 13985.238411629152, "deser_mad_ns": 10135.0, "deser_cv": 0.03446903705157262, "deser_min_ns": 371954.0, "deser_max_ns": 441093.0, "deser_p5_ns": 383598.8, "deser_p25_ns": 394944.0, "deser_p50_ns": 405508.0, "deser_p75_ns": 414524.0, "deser_p95_ns": 428697.2, "deser_p99_ns": 433771.64, "deser_ci_low_ns": 403030.7150537635, "deser_ci_high_ns": 408620.79731182795, "total_mean_ns": 503645.3010752688, "total_median_ns": 502879.0, "total_std_ns": 16408.58585021941, "total_mad_ns": 10904.0, "total_cv": 0.03257964645989456, "total_min_ns": 461396.0, "total_max_ns": 542156.0, "total_p5_ns": 479421.6, "total_p25_ns": 492673.0, "total_p50_ns": 502879.0, "total_p75_ns": 514875.0, "total_p95_ns": 531857.2, "total_p99_ns": 535059.12, "total_ci_low_ns": 500301.28091397847, "total_ci_high_ns": 507099.5795698925, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bitsery", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 33.5350743803846}], "pareto_front": [{"serializer": "avro", "test_data": "message", "mode": "bytes", "time": 494.4578313253012, "size": 44.0}, {"serializer": "bitsery", "test_data": "message", "mode": "bytes", "time": 244.04651162790697, "size": 51.0}, {"serializer": "avro", "test_data": "message", "mode": "stream", "time": 511.34065934065933, "size": 44.0}, {"serializer": "bitsery", "test_data": "message", "mode": "stream", "time": 274.9418604651163, "size": 51.0}, {"serializer": "avro", "test_data": "document", "mode": "bytes", "time": 918.7692307692307, "size": 125.0}, {"serializer": "bitsery", "test_data": "document", "mode": "bytes", "time": 608.7528089887641, "size": 190.0}, {"serializer": "avro", "test_data": "document", "mode": "stream", "time": 978.6595744680851, "size": 125.0}, {"serializer": "bitsery", "test_data": "document", "mode": "stream", "time": 632.9042553191489, "size": 190.0}, {"serializer": "bitsery", "test_data": "telemetry", "mode": "bytes", "time": 741.9512195121952, "size": 284.0}, {"serializer": "zpp_bits", "test_data": "telemetry", "mode": "bytes", "time": 670.9677419354839, "size": 299.0}, {"serializer": "zpp_bits", "test_data": "telemetry", "mode": "stream", "time": 707.8, "size": 299.0}, {"serializer": "bitsery", "test_data": "telemetry", "mode": "stream", "time": 819.8586956521739, "size": 284.0}, {"serializer": "zpp_bits", "test_data": "strings", "mode": "bytes", "time": 1211.1521739130435, "size": 436.0}, {"serializer": "bitsery", "test_data": "strings", "mode": "bytes", "time": 1242.6666666666667, "size": 337.0}, {"serializer": "zpp_bits", "test_data": "strings", "mode": "stream", "time": 1232.7333333333333, "size": 436.0}, {"serializer": "bitsery", "test_data": "strings", "mode": "stream", "time": 1316.5326086956522, "size": 337.0}, {"serializer": "avro", "test_data": "event", "mode": "bytes", "time": 908.0769230769231, "size": 120.0}, {"serializer": "bitsery", "test_data": "event", "mode": "bytes", "time": 787.3777777777777, "size": 121.0}, {"serializer": "avro", "test_data": "event", "mode": "stream", "time": 934.2872340425532, "size": 120.0}, {"serializer": "bitsery", "test_data": "event", "mode": "stream", "time": 852.2886597938144, "size": 121.0}]} \ No newline at end of file diff --git a/dashboard/public/data/stats_cpp_latest.json.gz b/dashboard/public/data/stats_cpp_latest.json.gz new file mode 100644 index 00000000..01e81190 Binary files /dev/null and b/dashboard/public/data/stats_cpp_latest.json.gz differ diff --git a/dashboard/public/data/stats_csharp_latest.json b/dashboard/public/data/stats_csharp_latest.json deleted file mode 100644 index 100c1a2a..00000000 --- a/dashboard/public/data/stats_csharp_latest.json +++ /dev/null @@ -1 +0,0 @@ -{"schema_version": "2.0", "generated": "2026-07-24T20:23:35.656173", "language": "csharp", "questions": {"Q1": "How fast?", "Q2": "How compact?", "Q3": "How stable?", "Q4": "Under which workloads does it win?"}, "groups": [{"serializer": "MemoryPack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 7074.612903225807, "avg_time_deser_ns": 3350.494623655914, "avg_time_total_ns": 10425.10752688172, "median_size_bytes": 88.0, "avg_ops_per_sec": 95922.27201699784, "min_ops_per_sec": 56538.70074065698, "max_ops_per_sec": 172890.73305670815, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 7074.612903225807, "ser_median_ns": 6697.0, "ser_std_ns": 2074.5056405985442, "ser_mad_ns": 1279.0, "ser_cv": 0.2932323886798998, "ser_min_ns": 3611.0, "ser_max_ns": 13291.0, "ser_p5_ns": 4605.8, "ser_p25_ns": 5532.0, "ser_p50_ns": 6697.0, "ser_p75_ns": 8082.0, "ser_p95_ns": 11240.0, "ser_p99_ns": 12429.88, "ser_ci_low_ns": 6672.683870967742, "ser_ci_high_ns": 7485.002419354839, "deser_mean_ns": 3350.494623655914, "deser_median_ns": 3185.0, "deser_std_ns": 747.177102334774, "deser_mad_ns": 479.0, "deser_cv": 0.22300501456095065, "deser_min_ns": 2163.0, "deser_max_ns": 5290.0, "deser_p5_ns": 2330.8, "deser_p25_ns": 2787.0, "deser_p50_ns": 3185.0, "deser_p75_ns": 3725.0, "deser_p95_ns": 4592.999999999999, "deser_p99_ns": 5240.32, "deser_ci_low_ns": 3202.0629032258066, "deser_ci_high_ns": 3495.1728494623653, "total_mean_ns": 10425.10752688172, "total_median_ns": 9848.0, "total_std_ns": 2738.6306736347574, "total_mad_ns": 1608.0, "total_cv": 0.26269567643048725, "total_min_ns": 5784.0, "total_max_ns": 17687.0, "total_p5_ns": 7019.6, "total_p25_ns": 8306.0, "total_p50_ns": 9848.0, "total_p75_ns": 11702.0, "total_p95_ns": 15483.4, "total_p99_ns": 17648.36, "total_ci_low_ns": 9880.168279569893, "total_ci_high_ns": 10975.03440860215, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9828440256131449, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.6887102598987367}, {"serializer": "fastJson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "2.4.0.4", "avg_time_ser_ns": 15709.347368421053, "avg_time_deser_ns": 22608.23157894737, "avg_time_total_ns": 38317.57894736842, "median_size_bytes": 310.0, "avg_ops_per_sec": 26097.68225110366, "min_ops_per_sec": 17513.441566402213, "max_ops_per_sec": 38550.501156515034, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 15709.347368421053, "ser_median_ns": 14969.0, "ser_std_ns": 3351.524987189211, "ser_mad_ns": 2100.0, "ser_cv": 0.21334590855928556, "ser_min_ns": 10961.0, "ser_max_ns": 25055.0, "ser_p5_ns": 11425.4, "ser_p25_ns": 13166.5, "ser_p50_ns": 14969.0, "ser_p75_ns": 17968.5, "ser_p95_ns": 21708.1, "ser_p99_ns": 23353.600000000006, "ser_ci_low_ns": 15037.85947368421, "ser_ci_high_ns": 16424.82157894737, "deser_mean_ns": 22608.23157894737, "deser_median_ns": 21839.0, "deser_std_ns": 3943.326302600305, "deser_mad_ns": 2688.0, "deser_cv": 0.17441993589062063, "deser_min_ns": 14979.0, "deser_max_ns": 33534.0, "deser_p5_ns": 17581.2, "deser_p25_ns": 19993.0, "deser_p50_ns": 21839.0, "deser_p75_ns": 25361.0, "deser_p95_ns": 29897.999999999996, "deser_p99_ns": 32305.420000000002, "deser_ci_low_ns": 21781.376052631582, "deser_ci_high_ns": 23471.896842105263, "total_mean_ns": 38317.57894736842, "total_median_ns": 36551.0, "total_std_ns": 6972.382518984557, "total_mad_ns": 4828.0, "total_cv": 0.18196302351360868, "total_min_ns": 25940.0, "total_max_ns": 57099.0, "total_p5_ns": 29501.1, "total_p25_ns": 33074.5, "total_p50_ns": 36551.0, "total_p75_ns": 43140.0, "total_p95_ns": 49248.399999999994, "total_p99_ns": 56609.26, "total_ci_low_ns": 36906.70789473684, "total_ci_high_ns": 39793.16105263158, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.595706076046135}, {"serializer": "ServiceStack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 16358.902173913044, "avg_time_deser_ns": 12771.239130434782, "avg_time_total_ns": 29130.141304347828, "median_size_bytes": 137.0, "avg_ops_per_sec": 34328.704057839386, "min_ops_per_sec": 22330.899265313416, "max_ops_per_sec": 55377.118174770185, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 16358.902173913044, "ser_median_ns": 15426.0, "ser_std_ns": 3710.0228311841033, "ser_mad_ns": 2472.5, "ser_cv": 0.2267892302149923, "ser_min_ns": 9803.0, "ser_max_ns": 27689.0, "ser_p5_ns": 11726.95, "ser_p25_ns": 13611.0, "ser_p50_ns": 15426.0, "ser_p75_ns": 18487.25, "ser_p95_ns": 23363.2, "ser_p99_ns": 25056.37000000001, "ser_ci_low_ns": 15603.83695652174, "ser_ci_high_ns": 17102.800815217393, "deser_mean_ns": 12771.239130434782, "deser_median_ns": 12154.5, "deser_std_ns": 2876.0360555350653, "deser_mad_ns": 2074.0, "deser_cv": 0.22519632011910765, "deser_min_ns": 8255.0, "deser_max_ns": 20580.0, "deser_p5_ns": 8902.25, "deser_p25_ns": 10363.0, "deser_p50_ns": 12154.5, "deser_p75_ns": 14632.25, "deser_p95_ns": 17924.9, "deser_p99_ns": 19199.530000000006, "deser_ci_low_ns": 12208.570652173914, "deser_ci_high_ns": 13372.610054347826, "total_mean_ns": 29130.141304347828, "total_median_ns": 28166.5, "total_std_ns": 6387.521751248351, "total_mad_ns": 4409.5, "total_cv": 0.21927534386161662, "total_min_ns": 18058.0, "total_max_ns": 44781.0, "total_p5_ns": 21104.2, "total_p25_ns": 24213.5, "total_p50_ns": 28166.5, "total_p75_ns": 32960.0, "total_p95_ns": 40999.65, "total_p99_ns": 42996.490000000005, "total_ci_low_ns": 27916.298097826086, "total_ci_high_ns": 30366.500271739125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.258160331311869}, {"serializer": "SharpYaml", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "3.13.0", "avg_time_ser_ns": 137752.16129032258, "avg_time_deser_ns": 164988.0, "avg_time_total_ns": 302740.1612903226, "median_size_bytes": 144.0, "avg_ops_per_sec": 3303.1626717045224, "min_ops_per_sec": 2722.6887095544594, "max_ops_per_sec": 4445.946186267362, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 137752.16129032258, "ser_median_ns": 139334.0, "ser_std_ns": 17107.784147606435, "ser_mad_ns": 10951.0, "ser_cv": 0.12419249169928122, "ser_min_ns": 95936.0, "ser_max_ns": 176836.0, "ser_p5_ns": 111751.2, "ser_p25_ns": 126068.0, "ser_p50_ns": 139334.0, "ser_p75_ns": 146632.0, "ser_p95_ns": 166991.2, "ser_p99_ns": 172772.36, "ser_ci_low_ns": 134290.03225806452, "ser_ci_high_ns": 141197.7120967742, "deser_mean_ns": 164988.0, "deser_median_ns": 166131.0, "deser_std_ns": 15094.929744785168, "deser_mad_ns": 9773.0, "deser_cv": 0.09149107659214711, "deser_min_ns": 128988.0, "deser_max_ns": 194313.0, "deser_p5_ns": 135212.4, "deser_p25_ns": 156247.0, "deser_p50_ns": 166131.0, "deser_p75_ns": 175771.0, "deser_p95_ns": 188383.19999999998, "deser_p99_ns": 193585.28, "deser_ci_low_ns": 161787.9572580645, "deser_ci_high_ns": 167992.9508064516, "total_mean_ns": 302740.1612903226, "total_median_ns": 307661.0, "total_std_ns": 29388.270469359446, "total_mad_ns": 19634.0, "total_cv": 0.09707423800034447, "total_min_ns": 224924.0, "total_max_ns": 367284.0, "total_p5_ns": 253302.80000000002, "total_p25_ns": 285013.0, "total_p50_ns": 307661.0, "total_p75_ns": 323070.0, "total_p95_ns": 350160.39999999997, "total_p99_ns": 365697.92, "total_ci_low_ns": 296641.6779569892, "total_ci_high_ns": 308621.79220430105, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.11603415524989}, {"serializer": "Ceras", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "4.1.7", "avg_time_ser_ns": 8659.79347826087, "avg_time_deser_ns": 21969.57608695652, "avg_time_total_ns": 30629.369565217392, "median_size_bytes": 128.0, "avg_ops_per_sec": 32648.4029607843, "min_ops_per_sec": 21389.001775287146, "max_ops_per_sec": 91675.83425009168, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 8659.79347826087, "ser_median_ns": 8086.0, "ser_std_ns": 2273.3326097784884, "ser_mad_ns": 1513.0, "ser_cv": 0.26251579965334665, "ser_min_ns": 2359.0, "ser_max_ns": 14580.0, "ser_p5_ns": 6054.6, "ser_p25_ns": 6987.5, "ser_p50_ns": 8086.0, "ser_p75_ns": 10020.25, "ser_p95_ns": 12651.400000000001, "ser_p99_ns": 13837.440000000002, "ser_ci_low_ns": 8199.686956521738, "ser_ci_high_ns": 9121.213858695653, "deser_mean_ns": 21969.57608695652, "deser_median_ns": 20965.0, "deser_std_ns": 4760.9726179502895, "deser_mad_ns": 2743.5, "deser_cv": 0.21670753223030598, "deser_min_ns": 8549.0, "deser_max_ns": 34739.0, "deser_p5_ns": 16170.85, "deser_p25_ns": 18868.0, "deser_p50_ns": 20965.0, "deser_p75_ns": 24235.75, "deser_p95_ns": 30302.150000000005, "deser_p99_ns": 34158.420000000006, "deser_ci_low_ns": 21042.227989130435, "deser_ci_high_ns": 22931.042119565216, "total_mean_ns": 30629.369565217392, "total_median_ns": 29475.0, "total_std_ns": 6663.348509302675, "total_mad_ns": 4393.0, "total_cv": 0.2175476871998551, "total_min_ns": 10908.0, "total_max_ns": 46753.0, "total_p5_ns": 22572.85, "total_p25_ns": 25558.0, "total_p50_ns": 29475.0, "total_p75_ns": 34604.75, "total_p95_ns": 43038.75, "total_p99_ns": 45600.030000000006, "total_ci_low_ns": 29235.18695652174, "total_ci_high_ns": 32011.30108695652, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.356638729207216}, {"serializer": "LightProto", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.3.4", "avg_time_ser_ns": 5266.620689655172, "avg_time_deser_ns": 3516.632183908046, "avg_time_total_ns": 8783.252873563219, "median_size_bytes": 68.0, "avg_ops_per_sec": 113853.0353611824, "min_ops_per_sec": 76775.43186180422, "max_ops_per_sec": 165864.9859014762, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 5266.620689655172, "ser_median_ns": 5059.0, "ser_std_ns": 1190.7773232306909, "ser_mad_ns": 816.0, "ser_cv": 0.2260989339083495, "ser_min_ns": 3462.0, "ser_max_ns": 8276.0, "ser_p5_ns": 3704.9, "ser_p25_ns": 4357.0, "ser_p50_ns": 5059.0, "ser_p75_ns": 5993.5, "ser_p95_ns": 7753.1, "ser_p99_ns": 8173.66, "ser_ci_low_ns": 5026.56264367816, "ser_ci_high_ns": 5523.875574712643, "deser_mean_ns": 3516.632183908046, "deser_median_ns": 3466.0, "deser_std_ns": 643.7387906442012, "deser_mad_ns": 433.0, "deser_cv": 0.18305547949823173, "deser_min_ns": 2529.0, "deser_max_ns": 5227.0, "deser_p5_ns": 2628.0, "deser_p25_ns": 2984.5, "deser_p50_ns": 3466.0, "deser_p75_ns": 3876.0, "deser_p95_ns": 4800.5, "deser_p99_ns": 5002.54, "deser_ci_low_ns": 3381.905172413793, "deser_ci_high_ns": 3657.36091954023, "total_mean_ns": 8783.252873563219, "total_median_ns": 8517.0, "total_std_ns": 1705.6333694922153, "total_mad_ns": 1265.0, "total_cv": 0.19419153633000985, "total_min_ns": 6029.0, "total_max_ns": 13025.0, "total_p5_ns": 6638.7, "total_p25_ns": 7431.0, "total_p50_ns": 8517.0, "total_p75_ns": 9928.5, "total_p95_ns": 12180.300000000001, "total_p99_ns": 12847.84, "total_ci_low_ns": 8427.11264367816, "total_ci_high_ns": 9153.518678160919, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9646131990184683, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.7836768138366925}, {"serializer": "BinaryPack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.0.3", "avg_time_ser_ns": 3745.179775280899, "avg_time_deser_ns": 938.3370786516854, "avg_time_total_ns": 4683.516853932584, "median_size_bytes": 80.0, "avg_ops_per_sec": 213514.7649058496, "min_ops_per_sec": 124115.67580985479, "max_ops_per_sec": 482392.66763145203, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 3745.179775280899, "ser_median_ns": 3693.0, "ser_std_ns": 1014.1095014592602, "ser_mad_ns": 578.0, "ser_cv": 0.27077725564808147, "ser_min_ns": 1619.0, "ser_max_ns": 6356.0, "ser_p5_ns": 2367.8, "ser_p25_ns": 3036.0, "ser_p50_ns": 3693.0, "ser_p75_ns": 4192.0, "ser_p95_ns": 5651.0, "ser_p99_ns": 6293.52, "ser_ci_low_ns": 3549.983146067416, "ser_ci_high_ns": 3950.784831460674, "deser_mean_ns": 938.3370786516854, "deser_median_ns": 848.0, "deser_std_ns": 269.697471244938, "deser_mad_ns": 167.0, "deser_cv": 0.287420669374455, "deser_min_ns": 454.0, "deser_max_ns": 1701.0, "deser_p5_ns": 623.0, "deser_p25_ns": 721.0, "deser_p50_ns": 848.0, "deser_p75_ns": 1116.0, "deser_p95_ns": 1415.6, "deser_p99_ns": 1574.2800000000007, "deser_ci_low_ns": 882.8061797752808, "deser_ci_high_ns": 995.1699438202247, "total_mean_ns": 4683.516853932584, "total_median_ns": 4595.0, "total_std_ns": 1186.9437080965508, "total_mad_ns": 826.0, "total_cv": 0.2534300067907124, "total_min_ns": 2073.0, "total_max_ns": 8057.0, "total_p5_ns": 3087.6, "total_p25_ns": 3769.0, "total_p50_ns": 4595.0, "total_p75_ns": 5355.0, "total_p95_ns": 6907.5999999999985, "total_p99_ns": 7740.200000000002, "total_ci_low_ns": 4441.548595505618, "total_ci_high_ns": 4940.6924157303365, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "Google.Protobuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "3.35.1", "avg_time_ser_ns": 5780.055555555556, "avg_time_deser_ns": 4109.944444444444, "avg_time_total_ns": 9890.0, "median_size_bytes": 68.0, "avg_ops_per_sec": 101112.23458038423, "min_ops_per_sec": 65582.37145855195, "max_ops_per_sec": 161238.31022250888, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 5780.055555555556, "ser_median_ns": 5689.5, "ser_std_ns": 1338.3616125201984, "ser_mad_ns": 965.0, "ser_cv": 0.231548226423848, "ser_min_ns": 3404.0, "ser_max_ns": 9465.0, "ser_p5_ns": 3928.55, "ser_p25_ns": 4719.5, "ser_p50_ns": 5689.5, "ser_p75_ns": 6603.25, "ser_p95_ns": 8299.35, "ser_p99_ns": 8933.67, "ser_ci_low_ns": 5515.969166666667, "ser_ci_high_ns": 6051.432777777778, "deser_mean_ns": 4109.944444444444, "deser_median_ns": 4099.0, "deser_std_ns": 730.9834281020331, "deser_mad_ns": 514.5, "deser_cv": 0.17785725281277925, "deser_min_ns": 2610.0, "deser_max_ns": 5783.0, "deser_p5_ns": 3052.6, "deser_p25_ns": 3529.25, "deser_p50_ns": 4099.0, "deser_p75_ns": 4587.5, "deser_p95_ns": 5434.25, "deser_p99_ns": 5742.06, "deser_ci_low_ns": 3964.721111111111, "deser_ci_high_ns": 4255.515555555556, "total_mean_ns": 9890.0, "total_median_ns": 9854.5, "total_std_ns": 1966.7965512877288, "total_mad_ns": 1442.5, "total_cv": 0.19886719426569552, "total_min_ns": 6202.0, "total_max_ns": 15248.0, "total_p5_ns": 7116.65, "total_p25_ns": 8346.0, "total_p50_ns": 9854.5, "total_p75_ns": 11217.0, "total_p95_ns": 13507.3, "total_p99_ns": 14436.32, "total_ci_low_ns": 9471.604166666666, "total_ci_high_ns": 10315.017777777777, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9833957553058676, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.1874474902590073}, {"serializer": "YAXLib", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "4.4.0", "avg_time_ser_ns": 238892.7125, "avg_time_deser_ns": 169737.725, "avg_time_total_ns": 408630.4375, "median_size_bytes": 257.0, "avg_ops_per_sec": 2447.1990048465245, "min_ops_per_sec": 1688.1540541863687, "max_ops_per_sec": 3190.128466473345, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 238892.7125, "ser_median_ns": 226638.5, "ser_std_ns": 40292.03205559956, "ser_mad_ns": 20425.5, "ser_cv": 0.16866162066622087, "ser_min_ns": 180131.0, "ser_max_ns": 399135.0, "ser_p5_ns": 196175.45, "ser_p25_ns": 211190.75, "ser_p50_ns": 226638.5, "ser_p75_ns": 252682.5, "ser_p95_ns": 314536.2, "ser_p99_ns": 355229.16999999963, "ser_ci_low_ns": 230671.83, "ser_ci_high_ns": 248177.8609375, "deser_mean_ns": 169737.725, "deser_median_ns": 168043.0, "deser_std_ns": 14262.847156582213, "deser_mad_ns": 7717.0, "deser_cv": 0.08402873996680592, "deser_min_ns": 133336.0, "deser_max_ns": 207582.0, "deser_p5_ns": 151243.8, "deser_p25_ns": 161117.25, "deser_p50_ns": 168043.0, "deser_p75_ns": 177730.5, "deser_p95_ns": 196091.25, "deser_p99_ns": 207409.78, "deser_ci_low_ns": 166481.85843750002, "deser_ci_high_ns": 172908.8196875, "total_mean_ns": 408630.4375, "total_median_ns": 397585.0, "total_std_ns": 51242.3555271489, "total_mad_ns": 29227.0, "total_cv": 0.1254002414520306, "total_min_ns": 313467.0, "total_max_ns": 592363.0, "total_p5_ns": 351598.25, "total_p25_ns": 370787.75, "total_p50_ns": 397585.0, "total_p75_ns": 434675.0, "total_p95_ns": 505743.64999999997, "total_p99_ns": 550241.7799999997, "total_ci_low_ns": 397816.12125, "total_ci_high_ns": 420129.11624999996, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.406500118728259}, {"serializer": "Jil", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "2.17.0", "avg_time_ser_ns": 10985.066666666668, "avg_time_deser_ns": 7095.311111111111, "avg_time_total_ns": 18080.37777777778, "median_size_bytes": 157.0, "avg_ops_per_sec": 55308.57885221179, "min_ops_per_sec": 33350.008337502084, "max_ops_per_sec": 95020.90459901179, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 10985.066666666668, "ser_median_ns": 10359.0, "ser_std_ns": 2770.750491769414, "ser_mad_ns": 1816.5, "ser_cv": 0.252228828085044, "ser_min_ns": 5946.0, "ser_max_ns": 19456.0, "ser_p5_ns": 7630.65, "ser_p25_ns": 9151.25, "ser_p50_ns": 10359.0, "ser_p75_ns": 12607.25, "ser_p95_ns": 16037.349999999999, "ser_p99_ns": 18457.42, "ser_ci_low_ns": 10424.282222222222, "ser_ci_high_ns": 11576.639444444445, "deser_mean_ns": 7095.311111111111, "deser_median_ns": 6895.5, "deser_std_ns": 1358.2499864597287, "deser_mad_ns": 877.0, "deser_cv": 0.19142923618003688, "deser_min_ns": 4578.0, "deser_max_ns": 11651.0, "deser_p5_ns": 5332.65, "deser_p25_ns": 6041.25, "deser_p50_ns": 6895.5, "deser_p75_ns": 7766.25, "deser_p95_ns": 9752.05, "deser_p99_ns": 10629.279999999999, "deser_ci_low_ns": 6804.531944444445, "deser_ci_high_ns": 7373.060555555556, "total_mean_ns": 18080.37777777778, "total_median_ns": 17261.0, "total_std_ns": 3928.235397583305, "total_mad_ns": 2572.5, "total_cv": 0.21726511723728573, "total_min_ns": 10524.0, "total_max_ns": 29985.0, "total_p5_ns": 13090.45, "total_p25_ns": 15320.5, "total_p50_ns": 17261.0, "total_p75_ns": 20519.75, "total_p95_ns": 25338.2, "total_p99_ns": 29873.75, "total_ci_low_ns": 17290.269444444442, "total_ci_high_ns": 18933.30083333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.586514698647563}, {"serializer": "Json.Net", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 17163.610526315788, "avg_time_deser_ns": 19261.56842105263, "avg_time_total_ns": 36425.17894736842, "median_size_bytes": 168.0, "avg_ops_per_sec": 27453.537055917368, "min_ops_per_sec": 16835.300257580093, "max_ops_per_sec": 63219.117461120244, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 17163.610526315788, "ser_median_ns": 16020.0, "ser_std_ns": 5305.344483761387, "ser_mad_ns": 2661.0, "ser_cv": 0.3091042223095814, "ser_min_ns": 6214.0, "ser_max_ns": 30400.0, "ser_p5_ns": 7684.9, "ser_p25_ns": 14065.0, "ser_p50_ns": 16020.0, "ser_p75_ns": 20779.5, "ser_p95_ns": 26123.399999999998, "ser_p99_ns": 27921.220000000005, "ser_ci_low_ns": 16126.007631578947, "ser_ci_high_ns": 18287.969736842104, "deser_mean_ns": 19261.56842105263, "deser_median_ns": 19118.0, "deser_std_ns": 5165.323795029968, "deser_mad_ns": 2550.0, "deser_cv": 0.26816735180216894, "deser_min_ns": 8170.0, "deser_max_ns": 33602.0, "deser_p5_ns": 10429.4, "deser_p25_ns": 16690.5, "deser_p50_ns": 19118.0, "deser_p75_ns": 21678.5, "deser_p95_ns": 27727.3, "deser_p99_ns": 28996.94000000001, "deser_ci_low_ns": 18197.02947368421, "deser_ci_high_ns": 20278.151315789473, "total_mean_ns": 36425.17894736842, "total_median_ns": 34754.0, "total_std_ns": 9788.781201140793, "total_mad_ns": 4290.0, "total_cv": 0.26873666743778607, "total_min_ns": 15818.0, "total_max_ns": 59399.0, "total_p5_ns": 18277.9, "total_p25_ns": 31875.0, "total_p50_ns": 34754.0, "total_p75_ns": 42107.0, "total_p95_ns": 52568.1, "total_p99_ns": 59120.76, "total_ci_low_ns": 34440.03421052631, "total_ci_high_ns": 38396.72342105263, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.462810472918066}, {"serializer": "GroBuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.9.2", "avg_time_ser_ns": 4433.4315789473685, "avg_time_deser_ns": 3818.4736842105262, "avg_time_total_ns": 8251.905263157894, "median_size_bytes": 212.0, "avg_ops_per_sec": 121184.1348281928, "min_ops_per_sec": 72505.80046403712, "max_ops_per_sec": 263504.6113306983, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 4433.4315789473685, "ser_median_ns": 4027.0, "ser_std_ns": 1573.6002740201898, "ser_mad_ns": 1112.0, "ser_cv": 0.35493956453339703, "ser_min_ns": 1932.0, "ser_max_ns": 8388.0, "ser_p5_ns": 2412.5, "ser_p25_ns": 3211.5, "ser_p50_ns": 4027.0, "ser_p75_ns": 5530.0, "ser_p95_ns": 7409.4, "ser_p99_ns": 8206.58, "ser_ci_low_ns": 4132.027105263158, "ser_ci_high_ns": 4742.722105263158, "deser_mean_ns": 3818.4736842105262, "deser_median_ns": 3696.0, "deser_std_ns": 1008.5953350239267, "deser_mad_ns": 780.0, "deser_cv": 0.2641357302511972, "deser_min_ns": 1863.0, "deser_max_ns": 6570.0, "deser_p5_ns": 2344.8, "deser_p25_ns": 3011.0, "deser_p50_ns": 3696.0, "deser_p75_ns": 4514.0, "deser_p95_ns": 5539.599999999999, "deser_p99_ns": 5957.120000000002, "deser_ci_low_ns": 3614.9036842105265, "deser_ci_high_ns": 4027.0526315789475, "total_mean_ns": 8251.905263157894, "total_median_ns": 7988.0, "total_std_ns": 2497.591802132283, "total_mad_ns": 1961.0, "total_cv": 0.3026685016953876, "total_min_ns": 3795.0, "total_max_ns": 13792.0, "total_p5_ns": 4779.2, "total_p25_ns": 6195.0, "total_p50_ns": 7988.0, "total_p75_ns": 10388.0, "total_p95_ns": 12661.699999999999, "total_p99_ns": 13704.58, "total_ci_low_ns": 7762.015263157895, "total_ci_high_ns": 8763.835263157895, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.8331164991129509, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.798775390543632}, {"serializer": "MS Bond Compact", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 5155.450549450549, "avg_time_deser_ns": 1870.4065934065934, "avg_time_total_ns": 7025.857142857143, "median_size_bytes": 72.0, "avg_ops_per_sec": 142331.38813769544, "min_ops_per_sec": 88542.58898530193, "max_ops_per_sec": 229200.09168003668, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 5155.450549450549, "ser_median_ns": 4750.0, "ser_std_ns": 1287.3955643834336, "ser_mad_ns": 647.0, "ser_cv": 0.24971543263481402, "ser_min_ns": 2953.0, "ser_max_ns": 8851.0, "ser_p5_ns": 3680.5, "ser_p25_ns": 4191.0, "ser_p50_ns": 4750.0, "ser_p75_ns": 5775.5, "ser_p95_ns": 7618.0, "ser_p99_ns": 8337.099999999997, "ser_ci_low_ns": 4895.546428571429, "ser_ci_high_ns": 5419.540384615385, "deser_mean_ns": 1870.4065934065934, "deser_median_ns": 1821.0, "deser_std_ns": 392.2634029442172, "deser_mad_ns": 247.0, "deser_cv": 0.20972092609542362, "deser_min_ns": 1195.0, "deser_max_ns": 3074.0, "deser_p5_ns": 1357.5, "deser_p25_ns": 1590.5, "deser_p50_ns": 1821.0, "deser_p75_ns": 2077.0, "deser_p95_ns": 2600.5, "deser_p99_ns": 2837.2999999999984, "deser_ci_low_ns": 1792.2318681318682, "deser_ci_high_ns": 1948.7255494505494, "total_mean_ns": 7025.857142857143, "total_median_ns": 6516.0, "total_std_ns": 1615.8658536966666, "total_mad_ns": 856.0, "total_cv": 0.22998843000094885, "total_min_ns": 4363.0, "total_max_ns": 11294.0, "total_p5_ns": 5252.5, "total_p25_ns": 5824.5, "total_p50_ns": 6516.0, "total_p75_ns": 7797.5, "total_p95_ns": 10240.0, "total_p99_ns": 10947.499999999998, "total_ci_low_ns": 6703.418406593407, "total_ci_high_ns": 7357.434340659341, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.7972589208544265, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.642460187766413}, {"serializer": "Migrant", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "0.13.0.0", "avg_time_ser_ns": 30998.652173913044, "avg_time_deser_ns": 75544.85869565218, "avg_time_total_ns": 106543.51086956522, "median_size_bytes": 1376.0, "avg_ops_per_sec": 9385.836751937333, "min_ops_per_sec": 6637.946484875439, "max_ops_per_sec": 13362.19567599348, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 30998.652173913044, "ser_median_ns": 30193.5, "ser_std_ns": 5530.769287418755, "ser_mad_ns": 3549.0, "ser_cv": 0.17841966987433025, "ser_min_ns": 20132.0, "ser_max_ns": 48211.0, "ser_p5_ns": 22959.75, "ser_p25_ns": 27124.25, "ser_p50_ns": 30193.5, "ser_p75_ns": 35547.5, "ser_p95_ns": 40200.75000000001, "ser_p99_ns": 43987.69000000002, "ser_ci_low_ns": 29895.659782608695, "ser_ci_high_ns": 32133.692391304347, "deser_mean_ns": 75544.85869565218, "deser_median_ns": 71692.5, "deser_std_ns": 12919.819793916871, "deser_mad_ns": 8457.5, "deser_cv": 0.1710218275206125, "deser_min_ns": 52512.0, "deser_max_ns": 109461.0, "deser_p5_ns": 60175.1, "deser_p25_ns": 64579.5, "deser_p50_ns": 71692.5, "deser_p75_ns": 84848.75, "deser_p95_ns": 96895.45, "deser_p99_ns": 105618.98000000001, "deser_ci_low_ns": 73052.18695652173, "deser_ci_high_ns": 78149.50326086956, "total_mean_ns": 106543.51086956522, "total_median_ns": 103013.0, "total_std_ns": 17561.507223041408, "total_mad_ns": 12977.0, "total_cv": 0.164829439913435, "total_min_ns": 74838.0, "total_max_ns": 150649.0, "total_p5_ns": 86047.3, "total_p25_ns": 90834.25, "total_p50_ns": 103013.0, "total_p75_ns": 118660.75, "total_p95_ns": 136479.05000000002, "total_p99_ns": 147744.28, "total_ci_low_ns": 103107.92771739131, "total_ci_high_ns": 110157.16222826087, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.082849498068546}, {"serializer": "ZeroFormatter", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.6.4", "avg_time_ser_ns": 4721.188888888889, "avg_time_deser_ns": 2316.711111111111, "avg_time_total_ns": 7037.9, "median_size_bytes": 76.0, "avg_ops_per_sec": 142087.8387018855, "min_ops_per_sec": 86258.94936599673, "max_ops_per_sec": 246244.7672986949, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 4721.188888888889, "ser_median_ns": 4659.0, "ser_std_ns": 1063.4682173498925, "ser_mad_ns": 665.5, "ser_cv": 0.22525432520878763, "ser_min_ns": 2431.0, "ser_max_ns": 8009.0, "ser_p5_ns": 3261.15, "ser_p25_ns": 3990.25, "ser_p50_ns": 4659.0, "ser_p75_ns": 5302.75, "ser_p95_ns": 6588.25, "ser_p99_ns": 7501.7, "ser_ci_low_ns": 4516.27388888889, "ser_ci_high_ns": 4932.4863888888885, "deser_mean_ns": 2316.711111111111, "deser_median_ns": 2182.0, "deser_std_ns": 559.3859844958909, "deser_mad_ns": 345.5, "deser_cv": 0.24145694377388527, "deser_min_ns": 1508.0, "deser_max_ns": 3774.0, "deser_p5_ns": 1645.75, "deser_p25_ns": 1863.5, "deser_p50_ns": 2182.0, "deser_p75_ns": 2593.75, "deser_p95_ns": 3473.4, "deser_p99_ns": 3701.02, "deser_ci_low_ns": 2205.0436111111107, "deser_ci_high_ns": 2436.2566666666667, "total_mean_ns": 7037.9, "total_median_ns": 6846.5, "total_std_ns": 1531.7908594448043, "total_mad_ns": 961.5, "total_cv": 0.21764885256181593, "total_min_ns": 4061.0, "total_max_ns": 11593.0, "total_p5_ns": 5045.35, "total_p25_ns": 5934.25, "total_p50_ns": 6846.5, "total_p75_ns": 7834.75, "total_p95_ns": 10079.25, "total_p99_ns": 11101.72, "total_ci_low_ns": 6739.881111111111, "total_ci_high_ns": 7369.123888888889, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.7972534332084894, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.7097070115798556}, {"serializer": "ServiceStack Json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 18602.255319148935, "avg_time_deser_ns": 14048.478723404256, "avg_time_total_ns": 32650.73404255319, "median_size_bytes": 157.0, "avg_ops_per_sec": 30627.182797688885, "min_ops_per_sec": 18772.644502431056, "max_ops_per_sec": 57570.523891767414, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 18602.255319148935, "ser_median_ns": 17384.5, "ser_std_ns": 4833.884058953164, "ser_mad_ns": 3204.0, "ser_cv": 0.2598547313764274, "ser_min_ns": 9067.0, "ser_max_ns": 31705.0, "ser_p5_ns": 12724.55, "ser_p25_ns": 15001.75, "ser_p50_ns": 17384.5, "ser_p75_ns": 21810.25, "ser_p95_ns": 26986.499999999996, "ser_p99_ns": 31450.179999999997, "ser_ci_low_ns": 17658.452127659577, "ser_ci_high_ns": 19613.52659574468, "deser_mean_ns": 14048.478723404256, "deser_median_ns": 13532.5, "deser_std_ns": 3137.5910927228615, "deser_mad_ns": 2051.5, "deser_cv": 0.2233402743811505, "deser_min_ns": 8243.0, "deser_max_ns": 23707.0, "deser_p5_ns": 9944.95, "deser_p25_ns": 11734.5, "deser_p50_ns": 13532.5, "deser_p75_ns": 16064.25, "deser_p95_ns": 19297.95, "deser_p99_ns": 21968.829999999987, "deser_ci_low_ns": 13413.367819148936, "deser_ci_high_ns": 14684.98244680851, "total_mean_ns": 32650.73404255319, "total_median_ns": 31399.5, "total_std_ns": 7682.6927069603225, "total_mad_ns": 4862.5, "total_cv": 0.23529923391454505, "total_min_ns": 17370.0, "total_max_ns": 53269.0, "total_p5_ns": 22654.45, "total_p25_ns": 26855.5, "total_p50_ns": 31399.5, "total_p75_ns": 38391.0, "total_p95_ns": 45647.399999999994, "total_p99_ns": 50103.27999999998, "total_ci_low_ns": 31103.531648936172, "total_ci_high_ns": 34175.11143617021, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.001242957613487}, {"serializer": "NetJSON", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.0.0", "avg_time_ser_ns": 6928.5161290322585, "avg_time_deser_ns": 7648.10752688172, "avg_time_total_ns": 14576.623655913978, "median_size_bytes": 142.0, "avg_ops_per_sec": 68602.99227072953, "min_ops_per_sec": 46202.180742931065, "max_ops_per_sec": 102606.19741432382, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 6928.5161290322585, "ser_median_ns": 6632.0, "ser_std_ns": 1777.748225271064, "ser_mad_ns": 1071.0, "ser_cv": 0.25658426597606426, "ser_min_ns": 4062.0, "ser_max_ns": 11464.0, "ser_p5_ns": 4741.8, "ser_p25_ns": 5565.0, "ser_p50_ns": 6632.0, "ser_p75_ns": 7844.0, "ser_p95_ns": 10674.999999999998, "ser_p99_ns": 11221.119999999999, "ser_ci_low_ns": 6568.116935483871, "ser_ci_high_ns": 7275.879032258064, "deser_mean_ns": 7648.10752688172, "deser_median_ns": 7382.0, "deser_std_ns": 1325.706165082739, "deser_mad_ns": 788.0, "deser_cv": 0.1733378042114498, "deser_min_ns": 5684.0, "deser_max_ns": 12142.0, "deser_p5_ns": 6131.2, "deser_p25_ns": 6639.0, "deser_p50_ns": 7382.0, "deser_p75_ns": 8253.0, "deser_p95_ns": 10090.8, "deser_p99_ns": 11442.8, "deser_ci_low_ns": 7401.028225806452, "deser_ci_high_ns": 7931.515860215053, "total_mean_ns": 14576.623655913978, "total_median_ns": 14009.0, "total_std_ns": 2896.99084476491, "total_mad_ns": 2160.0, "total_cv": 0.19874224053178136, "total_min_ns": 9746.0, "total_max_ns": 21644.0, "total_p5_ns": 11133.800000000001, "total_p25_ns": 12185.0, "total_p50_ns": 14009.0, "total_p75_ns": 16491.0, "total_p95_ns": 20294.999999999996, "total_p99_ns": 21623.76, "total_ci_low_ns": 14039.224462365592, "total_ci_high_ns": 15178.202688172043, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.415466783733184}, {"serializer": "ExtendedXmlSerializer", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "3.10.0.0", "avg_time_ser_ns": 49242.55319148936, "avg_time_deser_ns": 58089.48936170213, "avg_time_total_ns": 107332.0425531915, "median_size_bytes": 511.0, "avg_ops_per_sec": 9316.882230247515, "min_ops_per_sec": 6152.066786837038, "max_ops_per_sec": 14507.050426507283, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 49242.55319148936, "ser_median_ns": 48200.5, "ser_std_ns": 11643.996327996138, "ser_mad_ns": 8471.5, "ser_cv": 0.2364620754475538, "ser_min_ns": 30105.0, "ser_max_ns": 78920.0, "ser_p5_ns": 35322.9, "ser_p25_ns": 39722.5, "ser_p50_ns": 48200.5, "ser_p75_ns": 56437.75, "ser_p95_ns": 72118.7, "ser_p99_ns": 75992.35999999997, "ser_ci_low_ns": 47001.40079787234, "ser_ci_high_ns": 51578.53377659574, "deser_mean_ns": 58089.48936170213, "deser_median_ns": 56604.5, "deser_std_ns": 11042.573362564885, "deser_mad_ns": 7270.5, "deser_cv": 0.19009589314526068, "deser_min_ns": 38827.0, "deser_max_ns": 90443.0, "deser_p5_ns": 43017.25, "deser_p25_ns": 49806.25, "deser_p50_ns": 56604.5, "deser_p75_ns": 65421.75, "deser_p95_ns": 78065.4, "deser_p99_ns": 82444.99999999994, "deser_ci_low_ns": 55851.504787234044, "deser_ci_high_ns": 60330.87207446808, "total_mean_ns": 107332.0425531915, "total_median_ns": 103437.0, "total_std_ns": 21737.644527169166, "total_mad_ns": 14214.0, "total_cv": 0.20252707402261955, "total_min_ns": 68932.0, "total_max_ns": 162547.0, "total_p5_ns": 78652.8, "total_p25_ns": 91401.75, "total_p50_ns": 103437.0, "total_p75_ns": 120514.0, "total_p95_ns": 148294.85, "total_p99_ns": 158392.68999999997, "total_ci_low_ns": 102948.97712765957, "total_ci_high_ns": 111927.24175531915, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.551194463500934}, {"serializer": "MS Bond Fast", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 3986.8275862068967, "avg_time_deser_ns": 1937.5057471264367, "avg_time_total_ns": 5924.333333333333, "median_size_bytes": 96.0, "avg_ops_per_sec": 168795.3637540089, "min_ops_per_sec": 104004.16016640665, "max_ops_per_sec": 245760.62914721062, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 3986.8275862068967, "ser_median_ns": 3735.0, "ser_std_ns": 900.8277486392859, "ser_mad_ns": 593.0, "ser_cv": 0.22595101723381558, "ser_min_ns": 2682.0, "ser_max_ns": 7082.0, "ser_p5_ns": 2908.8, "ser_p25_ns": 3282.5, "ser_p50_ns": 3735.0, "ser_p75_ns": 4531.5, "ser_p95_ns": 5665.9000000000015, "ser_p99_ns": 6540.200000000001, "ser_ci_low_ns": 3794.739942528736, "ser_ci_high_ns": 4180.110632183907, "deser_mean_ns": 1937.5057471264367, "deser_median_ns": 1867.0, "deser_std_ns": 370.5707688607243, "deser_mad_ns": 292.0, "deser_cv": 0.1912617649833179, "deser_min_ns": 1243.0, "deser_max_ns": 2844.0, "deser_p5_ns": 1421.7, "deser_p25_ns": 1672.0, "deser_p50_ns": 1867.0, "deser_p75_ns": 2191.5, "deser_p95_ns": 2591.8, "deser_p99_ns": 2797.56, "deser_ci_low_ns": 1859.9298850574712, "deser_ci_high_ns": 2013.553448275862, "total_mean_ns": 5924.333333333333, "total_median_ns": 5707.0, "total_std_ns": 1217.3113020922588, "total_mad_ns": 872.0, "total_cv": 0.20547650403852902, "total_min_ns": 4069.0, "total_max_ns": 9615.0, "total_p5_ns": 4381.4, "total_p25_ns": 5014.5, "total_p50_ns": 5707.0, "total_p75_ns": 6687.0, "total_p95_ns": 8151.700000000002, "total_p99_ns": 9085.24, "total_ci_low_ns": 5670.0931034482755, "total_ci_high_ns": 6184.066379310344, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.5526281802918765, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.0277955167154922}, {"serializer": "CsvHelper", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "33.1.0", "avg_time_ser_ns": 2656357.670212766, "avg_time_deser_ns": 1098540.1489361702, "avg_time_total_ns": 3754897.8191489363, "median_size_bytes": 136.0, "avg_ops_per_sec": 266.31883160715523, "min_ops_per_sec": 233.85347022180065, "max_ops_per_sec": 302.9664964499901, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 2656357.670212766, "ser_median_ns": 2631764.0, "ser_std_ns": 152859.18934212273, "ser_mad_ns": 99137.5, "ser_cv": 0.05754465637523849, "ser_min_ns": 2322108.0, "ser_max_ns": 3135691.0, "ser_p5_ns": 2453652.6, "ser_p25_ns": 2542200.5, "ser_p50_ns": 2631764.0, "ser_p75_ns": 2733071.0, "ser_p95_ns": 2928836.15, "ser_p99_ns": 3051697.119999999, "ser_ci_low_ns": 2625575.754255319, "ser_ci_high_ns": 2687792.8824468087, "deser_mean_ns": 1098540.1489361702, "deser_median_ns": 1093919.5, "deser_std_ns": 55132.45384593683, "deser_mad_ns": 35432.0, "deser_cv": 0.05018701765186031, "deser_min_ns": 978587.0, "deser_max_ns": 1249579.0, "deser_p5_ns": 1028361.65, "deser_p25_ns": 1059962.25, "deser_p50_ns": 1093919.5, "deser_p75_ns": 1131076.0, "deser_p95_ns": 1202814.7999999998, "deser_p99_ns": 1245188.47, "deser_ci_low_ns": 1087659.7513297873, "deser_ci_high_ns": 1108731.5632978722, "total_mean_ns": 3754897.8191489363, "total_median_ns": 3725690.0, "total_std_ns": 190622.25845936706, "total_mad_ns": 126667.0, "total_cv": 0.0507662971512158, "total_min_ns": 3300695.0, "total_max_ns": 4276182.0, "total_p5_ns": 3485796.35, "total_p25_ns": 3611358.0, "total_p50_ns": 3725690.0, "total_p75_ns": 3861294.25, "total_p95_ns": 4098950.85, "total_p99_ns": 4223227.8, "total_ci_low_ns": 3717682.172606383, "total_ci_high_ns": 3794229.3005319145, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.33169218893939}, {"serializer": "Utf8Json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.3.7", "avg_time_ser_ns": 10455.45652173913, "avg_time_deser_ns": 9986.826086956522, "avg_time_total_ns": 20442.282608695652, "median_size_bytes": 157.0, "avg_ops_per_sec": 48918.216186612364, "min_ops_per_sec": 31835.981025755307, "max_ops_per_sec": 70274.06886858749, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 10455.45652173913, "ser_median_ns": 10018.5, "ser_std_ns": 2392.5280593072225, "ser_mad_ns": 1328.5, "ser_cv": 0.22883056845319427, "ser_min_ns": 6595.0, "ser_max_ns": 18185.0, "ser_p5_ns": 7045.05, "ser_p25_ns": 8799.0, "ser_p50_ns": 10018.5, "ser_p75_ns": 11927.5, "ser_p95_ns": 14697.95, "ser_p99_ns": 16090.180000000008, "ser_ci_low_ns": 9974.647826086957, "ser_ci_high_ns": 10964.481249999999, "deser_mean_ns": 9986.826086956522, "deser_median_ns": 9611.0, "deser_std_ns": 1685.4455934686118, "deser_mad_ns": 1032.5, "deser_cv": 0.1687668913820297, "deser_min_ns": 7034.0, "deser_max_ns": 13737.0, "deser_p5_ns": 7903.15, "deser_p25_ns": 8647.5, "deser_p50_ns": 9611.0, "deser_p75_ns": 10741.75, "deser_p95_ns": 13122.0, "deser_p99_ns": 13702.42, "deser_ci_low_ns": 9640.98070652174, "deser_ci_high_ns": 10340.886684782608, "total_mean_ns": 20442.282608695652, "total_median_ns": 19741.0, "total_std_ns": 3959.2747069342067, "total_mad_ns": 2368.0, "total_cv": 0.19368065605599383, "total_min_ns": 14230.0, "total_max_ns": 31411.0, "total_p5_ns": 15204.25, "total_p25_ns": 17454.0, "total_p50_ns": 19741.0, "total_p75_ns": 22742.0, "total_p95_ns": 27354.5, "total_p99_ns": 29746.610000000008, "total_ci_low_ns": 19634.03233695652, "total_ci_high_ns": 21252.27092391304, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.331992419372525}, {"serializer": "Hyperion", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "0.12.2", "avg_time_ser_ns": 7579.0, "avg_time_deser_ns": 6993.111111111111, "avg_time_total_ns": 14572.111111111111, "median_size_bytes": 168.0, "avg_ops_per_sec": 68624.23655536832, "min_ops_per_sec": 42162.071000927564, "max_ops_per_sec": 117591.72154280338, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 7579.0, "ser_median_ns": 7116.5, "ser_std_ns": 2206.6239809397584, "ser_mad_ns": 1192.0, "ser_cv": 0.29114975338959737, "ser_min_ns": 4030.0, "ser_max_ns": 13707.0, "ser_p5_ns": 4682.0, "ser_p25_ns": 6066.5, "ser_p50_ns": 7116.5, "ser_p75_ns": 8736.75, "ser_p95_ns": 11577.3, "ser_p99_ns": 13218.39, "ser_ci_low_ns": 7150.7588888888895, "ser_ci_high_ns": 8044.342777777778, "deser_mean_ns": 6993.111111111111, "deser_median_ns": 6827.5, "deser_std_ns": 1472.3655768897843, "deser_mad_ns": 964.5, "deser_cv": 0.21054514271200322, "deser_min_ns": 4409.0, "deser_max_ns": 10755.0, "deser_p5_ns": 4815.15, "deser_p25_ns": 5999.25, "deser_p50_ns": 6827.5, "deser_p75_ns": 7925.5, "deser_p95_ns": 9577.5, "deser_p99_ns": 10752.33, "deser_ci_low_ns": 6677.831944444444, "deser_ci_high_ns": 7299.973333333332, "total_mean_ns": 14572.111111111111, "total_median_ns": 13862.0, "total_std_ns": 3540.9121513982946, "total_mad_ns": 2188.0, "total_cv": 0.24299239309933474, "total_min_ns": 8504.0, "total_max_ns": 23718.0, "total_p5_ns": 9580.7, "total_p25_ns": 12178.0, "total_p50_ns": 13862.0, "total_p75_ns": 16470.0, "total_p95_ns": 21122.399999999998, "total_p99_ns": 22432.84, "total_ci_low_ns": 13855.469444444445, "total_ci_high_ns": 15312.22111111111, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.7203798146989926}, {"serializer": "SharpSerializer", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 38987.86021505376, "avg_time_deser_ns": 55448.44086021505, "avg_time_total_ns": 94436.30107526881, "median_size_bytes": 692.0, "avg_ops_per_sec": 10589.14833187894, "min_ops_per_sec": 6550.676029766272, "max_ops_per_sec": 14975.440277944172, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 38987.86021505376, "ser_median_ns": 36230.0, "ser_std_ns": 8778.921222960338, "ser_mad_ns": 4688.0, "ser_cv": 0.22517063451383446, "ser_min_ns": 27077.0, "ser_max_ns": 63748.0, "ser_p5_ns": 29320.0, "ser_p25_ns": 32444.0, "ser_p50_ns": 36230.0, "ser_p75_ns": 43153.0, "ser_p95_ns": 57387.799999999996, "ser_p99_ns": 62329.36, "ser_ci_low_ns": 37178.18629032258, "ser_ci_high_ns": 40758.920967741935, "deser_mean_ns": 55448.44086021505, "deser_median_ns": 51249.0, "deser_std_ns": 12447.068433852524, "deser_mad_ns": 7409.0, "deser_cv": 0.22448004381640696, "deser_min_ns": 39285.0, "deser_max_ns": 92326.0, "deser_p5_ns": 41135.4, "deser_p25_ns": 46355.0, "deser_p50_ns": 51249.0, "deser_p75_ns": 61291.0, "deser_p95_ns": 78891.19999999998, "deser_p99_ns": 90802.48, "deser_ci_low_ns": 52932.075000000004, "deser_ci_high_ns": 57951.40698924731, "total_mean_ns": 94436.30107526881, "total_median_ns": 88079.0, "total_std_ns": 20637.01395118518, "total_mad_ns": 12649.0, "total_cv": 0.21852840185615496, "total_min_ns": 66776.0, "total_max_ns": 152656.0, "total_p5_ns": 70791.6, "total_p25_ns": 78848.0, "total_p50_ns": 88079.0, "total_p75_ns": 105998.0, "total_p95_ns": 135887.59999999998, "total_p99_ns": 147376.12, "total_ci_low_ns": 90247.76290322581, "total_ci_high_ns": 98288.48655913977, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.0484143380834645}, {"serializer": "MS XmlSerializer", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 27484.78494623656, "avg_time_deser_ns": 28053.78494623656, "avg_time_total_ns": 55538.56989247312, "median_size_bytes": 396.0, "avg_ops_per_sec": 18005.50503795967, "min_ops_per_sec": 11259.866457983808, "max_ops_per_sec": 27517.8866263071, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 27484.78494623656, "ser_median_ns": 25283.0, "ser_std_ns": 6846.7685599937395, "ser_mad_ns": 4081.0, "ser_cv": 0.24911122911773972, "ser_min_ns": 17370.0, "ser_max_ns": 46503.0, "ser_p5_ns": 19369.6, "ser_p25_ns": 22551.0, "ser_p50_ns": 25283.0, "ser_p75_ns": 31553.0, "ser_p95_ns": 42803.79999999998, "ser_p99_ns": 46370.52, "ser_ci_low_ns": 26133.284139784944, "ser_ci_high_ns": 28809.057258064513, "deser_mean_ns": 28053.78494623656, "deser_median_ns": 26992.0, "deser_std_ns": 5987.3823322366525, "deser_mad_ns": 4231.0, "deser_cv": 0.21342511692133953, "deser_min_ns": 18752.0, "deser_max_ns": 44770.0, "deser_p5_ns": 20881.4, "deser_p25_ns": 23241.0, "deser_p50_ns": 26992.0, "deser_p75_ns": 31346.0, "deser_p95_ns": 41338.2, "deser_p99_ns": 44595.2, "deser_ci_low_ns": 26939.917204301077, "deser_ci_high_ns": 29271.480913978492, "total_mean_ns": 55538.56989247312, "total_median_ns": 53149.0, "total_std_ns": 12433.445677755315, "total_mad_ns": 8304.0, "total_cv": 0.2238704687900212, "total_min_ns": 36340.0, "total_max_ns": 88811.0, "total_p5_ns": 41839.0, "total_p25_ns": 45988.0, "total_p50_ns": 53149.0, "total_p75_ns": 62899.0, "total_p95_ns": 83438.4, "total_p99_ns": 88788.0, "total_ci_low_ns": 52998.49596774193, "total_ci_high_ns": 58182.973387096776, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.672629110412067}, {"serializer": "MS DataContract", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 22852.106382978724, "avg_time_deser_ns": 27984.510638297874, "avg_time_total_ns": 50836.617021276594, "median_size_bytes": 492.0, "avg_ops_per_sec": 19670.860466216134, "min_ops_per_sec": 12017.208642776455, "max_ops_per_sec": 30619.43109097033, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 22852.106382978724, "ser_median_ns": 22281.5, "ser_std_ns": 5762.280355188107, "ser_mad_ns": 4208.0, "ser_cv": 0.2521553268927591, "ser_min_ns": 13784.0, "ser_max_ns": 39494.0, "ser_p5_ns": 15609.0, "ser_p25_ns": 17977.75, "ser_p50_ns": 22281.5, "ser_p75_ns": 26247.0, "ser_p95_ns": 33708.34999999999, "ser_p99_ns": 39313.58, "ser_ci_low_ns": 21687.877393617022, "ser_ci_high_ns": 23962.465691489364, "deser_mean_ns": 27984.510638297874, "deser_median_ns": 27459.5, "deser_std_ns": 5558.223702379391, "deser_mad_ns": 4045.0, "deser_cv": 0.19861786308218482, "deser_min_ns": 17447.0, "deser_max_ns": 43914.0, "deser_p5_ns": 20906.65, "deser_p25_ns": 23586.5, "deser_p50_ns": 27459.5, "deser_p75_ns": 32001.75, "deser_p95_ns": 37152.7, "deser_p99_ns": 42422.27999999999, "deser_ci_low_ns": 26891.709574468085, "deser_ci_high_ns": 29087.116755319144, "total_mean_ns": 50836.617021276594, "total_median_ns": 50213.0, "total_std_ns": 10855.07398934322, "total_mad_ns": 8416.5, "total_cv": 0.2135286457948226, "total_min_ns": 32659.0, "total_max_ns": 83214.0, "total_p5_ns": 36237.65, "total_p25_ns": 41498.75, "total_p50_ns": 50213.0, "total_p75_ns": 58477.0, "total_p95_ns": 68235.7, "total_p99_ns": 78911.81999999996, "total_ci_low_ns": 48662.40611702128, "total_ci_high_ns": 53054.53031914894, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.8737737619284145}, {"serializer": "Apache.Avro", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.12.1", "avg_time_ser_ns": 9626.68085106383, "avg_time_deser_ns": 9061.91489361702, "avg_time_total_ns": 18688.59574468085, "median_size_bytes": 60.0, "avg_ops_per_sec": 53508.568201793336, "min_ops_per_sec": 35711.73487608028, "max_ops_per_sec": 81413.33550435561, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 9626.68085106383, "ser_median_ns": 9255.0, "ser_std_ns": 2033.543859431492, "ser_mad_ns": 1255.5, "ser_cv": 0.2112403943677813, "ser_min_ns": 5987.0, "ser_max_ns": 15429.0, "ser_p5_ns": 7161.2, "ser_p25_ns": 8076.75, "ser_p50_ns": 9255.0, "ser_p75_ns": 10639.5, "ser_p95_ns": 13346.599999999999, "ser_p99_ns": 14645.009999999995, "ser_ci_low_ns": 9232.80664893617, "ser_ci_high_ns": 10034.469680851063, "deser_mean_ns": 9061.91489361702, "deser_median_ns": 8891.5, "deser_std_ns": 1417.7238812377075, "deser_mad_ns": 1016.0, "deser_cv": 0.15644859810329004, "deser_min_ns": 6296.0, "deser_max_ns": 12573.0, "deser_p5_ns": 6946.6, "deser_p25_ns": 7972.0, "deser_p50_ns": 8891.5, "deser_p75_ns": 9912.5, "deser_p95_ns": 11469.749999999998, "deser_p99_ns": 12493.949999999999, "deser_ci_low_ns": 8775.299468085106, "deser_ci_high_ns": 9343.04920212766, "total_mean_ns": 18688.59574468085, "total_median_ns": 18267.5, "total_std_ns": 3276.2317631698775, "total_mad_ns": 2281.5, "total_cv": 0.17530647074445702, "total_min_ns": 12283.0, "total_max_ns": 28002.0, "total_p5_ns": 14498.65, "total_p25_ns": 16138.75, "total_p50_ns": 18267.5, "total_p75_ns": 20639.25, "total_p95_ns": 24542.749999999996, "total_p99_ns": 26923.199999999993, "total_ci_low_ns": 18027.617287234043, "total_ci_high_ns": 19375.66356382979, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.601208829673345}, {"serializer": "MS Binary", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 29736.815217391304, "avg_time_deser_ns": 23922.043478260868, "avg_time_total_ns": 53658.858695652176, "median_size_bytes": 576.0, "avg_ops_per_sec": 18636.251763607248, "min_ops_per_sec": 12144.323136150007, "max_ops_per_sec": 26618.39863713799, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 29736.815217391304, "ser_median_ns": 28649.0, "ser_std_ns": 6345.533192171694, "ser_mad_ns": 4529.0, "ser_cv": 0.21338980471790964, "ser_min_ns": 19624.0, "ser_max_ns": 45417.0, "ser_p5_ns": 20910.35, "ser_p25_ns": 24883.0, "ser_p50_ns": 28649.0, "ser_p75_ns": 34097.5, "ser_p95_ns": 41480.75, "ser_p99_ns": 43698.01000000001, "ser_ci_low_ns": 28414.222554347827, "ser_ci_high_ns": 31019.115760869565, "deser_mean_ns": 23922.043478260868, "deser_median_ns": 23245.0, "deser_std_ns": 4370.6227909196705, "deser_mad_ns": 3088.0, "deser_cv": 0.18270273586332494, "deser_min_ns": 16965.0, "deser_max_ns": 36926.0, "deser_p5_ns": 18702.25, "deser_p25_ns": 20240.75, "deser_p50_ns": 23245.0, "deser_p75_ns": 26453.25, "deser_p95_ns": 33183.8, "deser_p99_ns": 36554.72, "deser_ci_low_ns": 23033.61222826087, "deser_ci_high_ns": 24797.068750000002, "total_mean_ns": 53658.858695652176, "total_median_ns": 52635.0, "total_std_ns": 10448.483735185171, "total_mad_ns": 7469.0, "total_cv": 0.1947205734368663, "total_min_ns": 37568.0, "total_max_ns": 82343.0, "total_p5_ns": 39543.4, "total_p25_ns": 45054.0, "total_p50_ns": 52635.0, "total_p75_ns": 59640.75, "total_p95_ns": 71938.25000000001, "total_p99_ns": 78397.24000000002, "total_ci_low_ns": 51616.83152173913, "total_ci_high_ns": 55829.69864130434, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.505952233758603}, {"serializer": "FsPicklerJson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 32318.94382022472, "avg_time_deser_ns": 27498.719101123595, "avg_time_total_ns": 59817.66292134832, "median_size_bytes": 576.0, "avg_ops_per_sec": 16717.470244781332, "min_ops_per_sec": 10621.236099457255, "max_ops_per_sec": 29800.04172005841, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 32318.94382022472, "ser_median_ns": 31769.0, "ser_std_ns": 8058.636202236071, "ser_mad_ns": 4982.0, "ser_cv": 0.24934713977853123, "ser_min_ns": 15812.0, "ser_max_ns": 56563.0, "ser_p5_ns": 21388.2, "ser_p25_ns": 26787.0, "ser_p50_ns": 31769.0, "ser_p75_ns": 36612.0, "ser_p95_ns": 45200.59999999999, "ser_p99_ns": 55018.600000000006, "ser_ci_low_ns": 30717.63033707865, "ser_ci_high_ns": 33932.92303370786, "deser_mean_ns": 27498.719101123595, "deser_median_ns": 26983.0, "deser_std_ns": 4284.841611554419, "deser_mad_ns": 2844.0, "deser_cv": 0.15581968002936328, "deser_min_ns": 17745.0, "deser_max_ns": 39343.0, "deser_p5_ns": 20961.2, "deser_p25_ns": 24852.0, "deser_p50_ns": 26983.0, "deser_p75_ns": 30624.0, "deser_p95_ns": 35374.8, "deser_p99_ns": 37061.16000000001, "deser_ci_low_ns": 26565.274438202247, "deser_ci_high_ns": 28370.47640449438, "total_mean_ns": 59817.66292134832, "total_median_ns": 59983.0, "total_std_ns": 11650.519631352989, "total_mad_ns": 7558.0, "total_cv": 0.19476721527338434, "total_min_ns": 33557.0, "total_max_ns": 94151.0, "total_p5_ns": 43121.2, "total_p25_ns": 52158.0, "total_p50_ns": 59983.0, "total_p75_ns": 66730.0, "total_p95_ns": 80756.19999999998, "total_p99_ns": 84001.08000000005, "total_ci_low_ns": 57460.51460674157, "total_ci_high_ns": 62269.07752808989, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.6296536616130775}, {"serializer": "MS DataContract Json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 21263.074468085106, "avg_time_deser_ns": 34454.97872340425, "avg_time_total_ns": 55718.05319148936, "median_size_bytes": 212.0, "avg_ops_per_sec": 17947.504313606292, "min_ops_per_sec": 11432.752549503819, "max_ops_per_sec": 30247.118961918877, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 21263.074468085106, "ser_median_ns": 21201.5, "ser_std_ns": 5237.538025092261, "ser_mad_ns": 4125.0, "ser_cv": 0.24632082406302833, "ser_min_ns": 10748.0, "ser_max_ns": 34447.0, "ser_p5_ns": 13994.45, "ser_p25_ns": 16813.0, "ser_p50_ns": 21201.5, "ser_p75_ns": 24826.5, "ser_p95_ns": 30371.949999999997, "ser_p99_ns": 32933.88999999999, "ser_ci_low_ns": 20211.15265957447, "ser_ci_high_ns": 22300.01143617021, "deser_mean_ns": 34454.97872340425, "deser_median_ns": 33593.5, "deser_std_ns": 7243.2042870285295, "deser_mad_ns": 5039.0, "deser_cv": 0.21022228297324225, "deser_min_ns": 21693.0, "deser_max_ns": 54648.0, "deser_p5_ns": 24829.7, "deser_p25_ns": 28753.25, "deser_p50_ns": 33593.5, "deser_p75_ns": 38864.0, "deser_p95_ns": 47482.64999999999, "deser_p99_ns": 53300.42999999999, "deser_ci_low_ns": 33020.585638297875, "deser_ci_high_ns": 35877.16622340425, "total_mean_ns": 55718.05319148936, "total_median_ns": 54730.5, "total_std_ns": 12113.506485024544, "total_mad_ns": 9167.0, "total_cv": 0.21740720989287576, "total_min_ns": 33061.0, "total_max_ns": 87468.0, "total_p5_ns": 38833.25, "total_p25_ns": 45921.75, "total_p50_ns": 54730.5, "total_p75_ns": 64319.5, "total_p95_ns": 75866.39999999998, "total_p99_ns": 84634.28999999998, "total_ci_low_ns": 53327.32260638298, "total_ci_high_ns": 58217.38670212765, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.826697283101923}, {"serializer": "FsPickler", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 18956.16129032258, "avg_time_deser_ns": 10772.946236559139, "avg_time_total_ns": 29729.107526881722, "median_size_bytes": 252.0, "avg_ops_per_sec": 33637.067614484484, "min_ops_per_sec": 17849.81168448673, "max_ops_per_sec": 73292.2896511287, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 18956.16129032258, "ser_median_ns": 17471.0, "ser_std_ns": 6788.967434919564, "ser_mad_ns": 4354.0, "ser_cv": 0.3581404130795954, "ser_min_ns": 8105.0, "ser_max_ns": 36649.0, "ser_p5_ns": 10246.400000000001, "ser_p25_ns": 14069.0, "ser_p50_ns": 17471.0, "ser_p75_ns": 23754.0, "ser_p95_ns": 33069.39999999999, "ser_p99_ns": 35148.479999999996, "ser_ci_low_ns": 17649.126344086024, "ser_ci_high_ns": 20368.545430107526, "deser_mean_ns": 10772.946236559139, "deser_median_ns": 10008.0, "deser_std_ns": 2874.124851171492, "deser_mad_ns": 1801.0, "deser_cv": 0.26679097695835924, "deser_min_ns": 5539.0, "deser_max_ns": 19374.0, "deser_p5_ns": 7486.6, "deser_p25_ns": 8518.0, "deser_p50_ns": 10008.0, "deser_p75_ns": 12317.0, "deser_p95_ns": 16597.599999999995, "deser_p99_ns": 17300.319999999996, "deser_ci_low_ns": 10215.02741935484, "deser_ci_high_ns": 11384.097580645162, "total_mean_ns": 29729.107526881722, "total_median_ns": 27962.0, "total_std_ns": 9534.590984891898, "total_mad_ns": 6406.0, "total_cv": 0.320715681635263, "total_min_ns": 13644.0, "total_max_ns": 56023.0, "total_p5_ns": 18207.2, "total_p25_ns": 22568.0, "total_p50_ns": 27962.0, "total_p75_ns": 36308.0, "total_p95_ns": 49071.999999999985, "total_p99_ns": 52448.799999999996, "total_ci_low_ns": 27901.00376344086, "total_ci_high_ns": 31758.017473118278, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.6321219583387787}, {"serializer": "MS Bond Json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 9075.022471910112, "avg_time_deser_ns": 8457.168539325843, "avg_time_total_ns": 17532.191011235955, "median_size_bytes": 142.0, "avg_ops_per_sec": 57037.93663662028, "min_ops_per_sec": 42016.80672268908, "max_ops_per_sec": 79987.20204767237, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 9075.022471910112, "ser_median_ns": 8652.0, "ser_std_ns": 1776.149122127624, "ser_mad_ns": 1100.0, "ser_cv": 0.19571842688272484, "ser_min_ns": 5739.0, "ser_max_ns": 13940.0, "ser_p5_ns": 7011.0, "ser_p25_ns": 7687.0, "ser_p50_ns": 8652.0, "ser_p75_ns": 10278.0, "ser_p95_ns": 12581.199999999999, "ser_p99_ns": 13364.480000000003, "ser_ci_low_ns": 8725.279775280898, "ser_ci_high_ns": 9441.812359550562, "deser_mean_ns": 8457.168539325843, "deser_median_ns": 8523.0, "deser_std_ns": 1150.8919291729098, "deser_mad_ns": 707.0, "deser_cv": 0.13608478107315244, "deser_min_ns": 6064.0, "deser_max_ns": 11540.0, "deser_p5_ns": 6640.2, "deser_p25_ns": 7766.0, "deser_p50_ns": 8523.0, "deser_p75_ns": 8940.0, "deser_p95_ns": 10371.0, "deser_p99_ns": 11268.080000000002, "deser_ci_low_ns": 8222.28735955056, "deser_ci_high_ns": 8691.259269662922, "total_mean_ns": 17532.191011235955, "total_median_ns": 17308.0, "total_std_ns": 2512.963706084929, "total_mad_ns": 1616.0, "total_cv": 0.14333426463779866, "total_min_ns": 12502.0, "total_max_ns": 23800.0, "total_p5_ns": 13934.2, "total_p25_ns": 15840.0, "total_p50_ns": 17308.0, "total_p75_ns": 18924.0, "total_p95_ns": 22174.2, "total_p99_ns": 23066.080000000005, "total_ci_low_ns": 17013.365168539323, "total_ci_high_ns": 18046.010674157304, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.510283505124802}, {"serializer": "ProtoBuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "2.4.9.1", "avg_time_ser_ns": 8115.931818181818, "avg_time_deser_ns": 7569.318181818182, "avg_time_total_ns": 15685.25, "median_size_bytes": 68.0, "avg_ops_per_sec": 63754.16394383258, "min_ops_per_sec": 41067.76180698152, "max_ops_per_sec": 113071.00859339665, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 8115.931818181818, "ser_median_ns": 8049.5, "ser_std_ns": 1648.2568904472996, "ser_mad_ns": 1123.5, "ser_cv": 0.20308905093987747, "ser_min_ns": 4716.0, "ser_max_ns": 13060.0, "ser_p5_ns": 5922.0, "ser_p25_ns": 6853.0, "ser_p50_ns": 8049.5, "ser_p75_ns": 8950.5, "ser_p95_ns": 11256.949999999997, "ser_p99_ns": 12976.48, "ser_ci_low_ns": 7784.686079545455, "ser_ci_high_ns": 8474.209659090908, "deser_mean_ns": 7569.318181818182, "deser_median_ns": 7431.5, "deser_std_ns": 1322.8738443031837, "deser_mad_ns": 765.5, "deser_cv": 0.17476790016315893, "deser_min_ns": 4128.0, "deser_max_ns": 11290.0, "deser_p5_ns": 5846.2, "deser_p25_ns": 6642.5, "deser_p50_ns": 7431.5, "deser_p75_ns": 8174.75, "deser_p95_ns": 10142.349999999993, "deser_p99_ns": 11093.38, "deser_ci_low_ns": 7294.75653409091, "deser_ci_high_ns": 7848.655681818182, "total_mean_ns": 15685.25, "total_median_ns": 15513.5, "total_std_ns": 2840.649825486148, "total_mad_ns": 1792.0, "total_cv": 0.1811032546810633, "total_min_ns": 8844.0, "total_max_ns": 24350.0, "total_p5_ns": 12112.45, "total_p25_ns": 13550.25, "total_p50_ns": 15513.5, "total_p75_ns": 17036.5, "total_p95_ns": 21111.8, "total_p99_ns": 22671.76999999999, "total_ci_low_ns": 15103.995454545455, "total_ci_high_ns": 16256.192897727273, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.0422065113557}, {"serializer": "YamlDotNet", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "17.1.0", "avg_time_ser_ns": 155157.94845360826, "avg_time_deser_ns": 120957.09278350516, "avg_time_total_ns": 276115.0412371134, "median_size_bytes": 144.0, "avg_ops_per_sec": 3621.67883183608, "min_ops_per_sec": 2684.405216336216, "max_ops_per_sec": 4978.914297948189, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 155157.94845360826, "ser_median_ns": 152535.0, "ser_std_ns": 23720.314876076834, "ser_mad_ns": 16082.0, "ser_cv": 0.1528785029222601, "ser_min_ns": 108634.0, "ser_max_ns": 219089.0, "ser_p5_ns": 123016.8, "ser_p25_ns": 136973.0, "ser_p50_ns": 152535.0, "ser_p75_ns": 170206.0, "ser_p95_ns": 198148.39999999994, "ser_p99_ns": 217732.52, "ser_ci_low_ns": 150554.00798969073, "ser_ci_high_ns": 160236.57551546392, "deser_mean_ns": 120957.09278350516, "deser_median_ns": 116467.0, "deser_std_ns": 15916.229229863195, "deser_mad_ns": 9757.0, "deser_cv": 0.13158574552011457, "deser_min_ns": 92213.0, "deser_max_ns": 156623.0, "deser_p5_ns": 100019.0, "deser_p25_ns": 109669.0, "deser_p50_ns": 116467.0, "deser_p75_ns": 134072.0, "deser_p95_ns": 151074.19999999998, "deser_p99_ns": 155273.24, "deser_ci_low_ns": 117789.14329896908, "deser_ci_high_ns": 123990.1556701031, "total_mean_ns": 276115.0412371134, "total_median_ns": 269046.0, "total_std_ns": 38059.79838904757, "total_mad_ns": 29114.0, "total_cv": 0.13784036616956255, "total_min_ns": 200847.0, "total_max_ns": 372522.0, "total_p5_ns": 225400.2, "total_p25_ns": 244064.0, "total_p50_ns": 269046.0, "total_p75_ns": 304885.0, "total_p95_ns": 341979.0, "total_p99_ns": 361889.0399999999, "total_ci_low_ns": 268738.35592783504, "total_ci_high_ns": 284022.5010309279, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.828728327018244}, {"serializer": "FlatSharp", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "7.5.1", "avg_time_ser_ns": 8698.76923076923, "avg_time_deser_ns": 4655.43956043956, "avg_time_total_ns": 13354.208791208792, "median_size_bytes": 136.0, "avg_ops_per_sec": 74882.75910874705, "min_ops_per_sec": 45257.06010137581, "max_ops_per_sec": 117896.7224711153, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 8698.76923076923, "ser_median_ns": 7990.0, "ser_std_ns": 2270.8946356345655, "ser_mad_ns": 1428.0, "ser_cv": 0.2610593033784563, "ser_min_ns": 5310.0, "ser_max_ns": 15113.0, "ser_p5_ns": 5942.5, "ser_p25_ns": 7058.5, "ser_p50_ns": 7990.0, "ser_p75_ns": 10148.5, "ser_p95_ns": 12979.0, "ser_p99_ns": 14989.699999999999, "ser_ci_low_ns": 8219.030769230769, "ser_ci_high_ns": 9163.618131868132, "deser_mean_ns": 4655.43956043956, "deser_median_ns": 4328.0, "deser_std_ns": 1074.9800329803672, "deser_mad_ns": 621.0, "deser_cv": 0.23090838556152773, "deser_min_ns": 3122.0, "deser_max_ns": 8092.0, "deser_p5_ns": 3335.0, "deser_p25_ns": 3832.5, "deser_p50_ns": 4328.0, "deser_p75_ns": 5452.5, "deser_p95_ns": 6491.0, "deser_p99_ns": 7443.099999999996, "deser_ci_low_ns": 4438.145879120879, "deser_ci_high_ns": 4862.253296703296, "total_mean_ns": 13354.208791208792, "total_median_ns": 12322.0, "total_std_ns": 3267.4617587373145, "total_mad_ns": 2129.0, "total_cv": 0.24467655177656927, "total_min_ns": 8482.0, "total_max_ns": 22096.0, "total_p5_ns": 9358.0, "total_p25_ns": 11012.0, "total_p50_ns": 12322.0, "total_p75_ns": 15532.5, "total_p95_ns": 19238.0, "total_p99_ns": 22038.4, "total_ci_low_ns": 12689.287912087912, "total_ci_high_ns": 14030.185989010988, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.4973858771134214}, {"serializer": "System.Text.Json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "8.0.0.0", "avg_time_ser_ns": 26959.32967032967, "avg_time_deser_ns": 16248.087912087913, "avg_time_total_ns": 43207.41758241758, "median_size_bytes": 212.0, "avg_ops_per_sec": 23144.17421713559, "min_ops_per_sec": 13551.42086647785, "max_ops_per_sec": 47973.13504437515, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 26959.32967032967, "ser_median_ns": 27081.0, "ser_std_ns": 7356.77973641388, "ser_mad_ns": 5995.0, "ser_cv": 0.27288437162109597, "ser_min_ns": 11321.0, "ser_max_ns": 47616.0, "ser_p5_ns": 17035.0, "ser_p25_ns": 20791.0, "ser_p50_ns": 27081.0, "ser_p75_ns": 31462.5, "ser_p95_ns": 39332.0, "ser_p99_ns": 44665.79999999998, "ser_ci_low_ns": 25446.551648351648, "ser_ci_high_ns": 28389.405769230765, "deser_mean_ns": 16248.087912087913, "deser_median_ns": 16166.0, "deser_std_ns": 3687.1167375918594, "deser_mad_ns": 2650.0, "deser_cv": 0.2269261932567952, "deser_min_ns": 9524.0, "deser_max_ns": 27100.0, "deser_p5_ns": 11620.5, "deser_p25_ns": 13163.0, "deser_p50_ns": 16166.0, "deser_p75_ns": 18317.0, "deser_p95_ns": 21842.0, "deser_p99_ns": 26269.299999999996, "deser_ci_low_ns": 15513.94120879121, "deser_ci_high_ns": 17054.727747252746, "total_mean_ns": 43207.41758241758, "total_median_ns": 43044.0, "total_std_ns": 10816.990873483288, "total_mad_ns": 8053.0, "total_cv": 0.2503503212810629, "total_min_ns": 20845.0, "total_max_ns": 73793.0, "total_p5_ns": 28869.0, "total_p25_ns": 34059.0, "total_p50_ns": 43044.0, "total_p75_ns": 50250.0, "total_p95_ns": 61677.5, "total_p99_ns": 69765.49999999997, "total_ci_low_ns": 40961.40494505494, "total_ci_high_ns": 45349.97774725274, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.958321124835455}, {"serializer": "SpanJson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "4.2.1", "avg_time_ser_ns": 6870.367346938776, "avg_time_deser_ns": 2851.9591836734694, "avg_time_total_ns": 9722.326530612245, "median_size_bytes": 157.0, "avg_ops_per_sec": 102856.03932879088, "min_ops_per_sec": 60653.84848668648, "max_ops_per_sec": 172324.65965879717, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 6870.367346938776, "ser_median_ns": 6595.0, "ser_std_ns": 1983.258364397769, "ser_mad_ns": 1441.5, "ser_cv": 0.2886684603962913, "ser_min_ns": 3470.0, "ser_max_ns": 12577.0, "ser_p5_ns": 4316.8, "ser_p25_ns": 5299.25, "ser_p50_ns": 6595.0, "ser_p75_ns": 8244.25, "ser_p95_ns": 10312.799999999997, "ser_p99_ns": 12460.6, "ser_ci_low_ns": 6480.489795918367, "ser_ci_high_ns": 7258.6285714285705, "deser_mean_ns": 2851.9591836734694, "deser_median_ns": 2756.0, "deser_std_ns": 494.11745584680835, "deser_mad_ns": 332.5, "deser_cv": 0.17325544442412383, "deser_min_ns": 1931.0, "deser_max_ns": 3910.0, "deser_p5_ns": 2201.85, "deser_p25_ns": 2491.0, "deser_p50_ns": 2756.0, "deser_p75_ns": 3178.25, "deser_p95_ns": 3774.2999999999997, "deser_p99_ns": 3857.62, "deser_ci_low_ns": 2754.310969387755, "deser_ci_high_ns": 2952.8811224489796, "total_mean_ns": 9722.326530612245, "total_median_ns": 9300.5, "total_std_ns": 2409.519397583283, "total_mad_ns": 1872.5, "total_cv": 0.24783362192131067, "total_min_ns": 5803.0, "total_max_ns": 16487.0, "total_p5_ns": 6653.55, "total_p25_ns": 8007.75, "total_p50_ns": 9300.5, "total_p75_ns": 11453.75, "total_p95_ns": 13627.049999999996, "total_p99_ns": 16318.22, "total_ci_low_ns": 9259.82448979592, "total_ci_high_ns": 10196.115306122449, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9719101123595506, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.6039044448222426}, {"serializer": "Json.Net (Helper)", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 20480.84375, "avg_time_deser_ns": 19402.822916666668, "avg_time_total_ns": 39883.666666666664, "median_size_bytes": 167.0, "avg_ops_per_sec": 25072.92041019298, "min_ops_per_sec": 16068.903458028024, "max_ops_per_sec": 58095.62539940742, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 20480.84375, "ser_median_ns": 19895.0, "ser_std_ns": 5431.374441400387, "ser_mad_ns": 3901.5, "ser_cv": 0.2651929045355071, "ser_min_ns": 8262.0, "ser_max_ns": 34519.0, "ser_p5_ns": 12953.75, "ser_p25_ns": 16450.0, "ser_p50_ns": 19895.0, "ser_p75_ns": 24050.5, "ser_p95_ns": 29069.5, "ser_p99_ns": 33721.95, "ser_ci_low_ns": 19425.556510416667, "ser_ci_high_ns": 21622.943229166664, "deser_mean_ns": 19402.822916666668, "deser_median_ns": 19199.0, "deser_std_ns": 4818.067035418362, "deser_mad_ns": 2978.0, "deser_cv": 0.2483178378791331, "deser_min_ns": 8951.0, "deser_max_ns": 30316.0, "deser_p5_ns": 11589.5, "deser_p25_ns": 16521.25, "deser_p50_ns": 19199.0, "deser_p75_ns": 22440.25, "deser_p95_ns": 28716.25, "deser_p99_ns": 29784.0, "deser_ci_low_ns": 18438.377604166664, "deser_ci_high_ns": 20372.50052083333, "total_mean_ns": 39883.666666666664, "total_median_ns": 38823.0, "total_std_ns": 9487.88962355549, "total_mad_ns": 5894.5, "total_cv": 0.23788910139210262, "total_min_ns": 17213.0, "total_max_ns": 62232.0, "total_p5_ns": 26189.75, "total_p25_ns": 33845.25, "total_p50_ns": 38823.0, "total_p75_ns": 46522.75, "total_p95_ns": 55541.0, "total_p99_ns": 62075.25, "total_ci_low_ns": 38006.68958333333, "total_ci_high_ns": 41720.959375, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.091282968723055}, {"serializer": "NetSerializer", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "4.1.2", "avg_time_ser_ns": 4310.3258426966295, "avg_time_deser_ns": 2957.696629213483, "avg_time_total_ns": 7268.0224719101125, "median_size_bytes": 64.0, "avg_ops_per_sec": 137589.00772044386, "min_ops_per_sec": 96609.02328277461, "max_ops_per_sec": 217580.5047867711, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 4310.3258426966295, "ser_median_ns": 4190.0, "ser_std_ns": 834.4327656242252, "ser_mad_ns": 515.0, "ser_cv": 0.19358925428760318, "ser_min_ns": 2673.0, "ser_max_ns": 6637.0, "ser_p5_ns": 3250.0, "ser_p25_ns": 3746.0, "ser_p50_ns": 4190.0, "ser_p75_ns": 4849.0, "ser_p95_ns": 5800.5999999999985, "ser_p99_ns": 6483.880000000001, "ser_ci_low_ns": 4140.273033707866, "ser_ci_high_ns": 4482.401966292135, "deser_mean_ns": 2957.696629213483, "deser_median_ns": 2843.0, "deser_std_ns": 574.8651700516467, "deser_mad_ns": 284.0, "deser_cv": 0.19436245231293925, "deser_min_ns": 1896.0, "deser_max_ns": 4621.0, "deser_p5_ns": 2247.4, "deser_p25_ns": 2594.0, "deser_p50_ns": 2843.0, "deser_p75_ns": 3165.0, "deser_p95_ns": 4240.4, "deser_p99_ns": 4556.76, "deser_ci_low_ns": 2840.511797752809, "deser_ci_high_ns": 3081.1941011235954, "total_mean_ns": 7268.0224719101125, "total_median_ns": 7062.0, "total_std_ns": 1308.2485774493948, "total_mad_ns": 746.0, "total_cv": 0.1800006236229445, "total_min_ns": 4596.0, "total_max_ns": 10351.0, "total_p5_ns": 5597.0, "total_p25_ns": 6346.0, "total_p50_ns": 7062.0, "total_p75_ns": 7976.0, "total_p95_ns": 9879.4, "total_p99_ns": 10319.32, "total_ci_low_ns": 7011.131741573034, "total_ci_high_ns": 7525.650280898876, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.8616336321171569, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.060314688187963}, {"serializer": "MS Bond Json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 9084.333333333334, "avg_time_deser_ns": 10285.908045977012, "avg_time_total_ns": 19370.241379310344, "median_size_bytes": 142.0, "avg_ops_per_sec": 51625.58279052297, "min_ops_per_sec": 36309.50219672488, "max_ops_per_sec": 73233.24789454413, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 9084.333333333334, "ser_median_ns": 8745.0, "ser_std_ns": 1665.5365199312823, "ser_mad_ns": 862.0, "ser_cv": 0.18334163430792377, "ser_min_ns": 5943.0, "ser_max_ns": 13752.0, "ser_p5_ns": 6740.7, "ser_p25_ns": 8102.0, "ser_p50_ns": 8745.0, "ser_p75_ns": 9773.0, "ser_p95_ns": 12681.500000000002, "ser_p99_ns": 13702.12, "ser_ci_low_ns": 8745.48448275862, "ser_ci_high_ns": 9463.61551724138, "deser_mean_ns": 10285.908045977012, "deser_median_ns": 10227.0, "deser_std_ns": 1568.6902597329472, "deser_mad_ns": 819.0, "deser_cv": 0.15250868010107166, "deser_min_ns": 7349.0, "deser_max_ns": 14690.0, "deser_p5_ns": 7908.0, "deser_p25_ns": 9384.0, "deser_p50_ns": 10227.0, "deser_p75_ns": 10937.5, "deser_p95_ns": 13607.800000000001, "deser_p99_ns": 14547.24, "deser_ci_low_ns": 9950.829022988506, "deser_ci_high_ns": 10617.032183908046, "total_mean_ns": 19370.241379310344, "total_median_ns": 18917.0, "total_std_ns": 2972.4447848863524, "total_mad_ns": 1816.0, "total_cv": 0.15345419433240862, "total_min_ns": 13655.0, "total_max_ns": 27541.0, "total_p5_ns": 15073.9, "total_p25_ns": 17508.5, "total_p50_ns": 18917.0, "total_p75_ns": 21054.0, "total_p95_ns": 25496.100000000002, "total_p99_ns": 27072.3, "total_ci_low_ns": 18757.302586206897, "total_ci_high_ns": 19971.323563218393, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.017889707614322}, {"serializer": "Ceras", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "4.1.7", "avg_time_ser_ns": 8725.082474226803, "avg_time_deser_ns": 24912.79381443299, "avg_time_total_ns": 33637.87628865979, "median_size_bytes": 95.0, "avg_ops_per_sec": 29728.392821788402, "min_ops_per_sec": 19132.164995790925, "max_ops_per_sec": 42313.71387466678, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 8725.082474226803, "ser_median_ns": 8526.0, "ser_std_ns": 2076.467501501965, "ser_mad_ns": 1586.0, "ser_cv": 0.23798829496863605, "ser_min_ns": 5534.0, "ser_max_ns": 13643.0, "ser_p5_ns": 6132.0, "ser_p25_ns": 6976.0, "ser_p50_ns": 8526.0, "ser_p75_ns": 10293.0, "ser_p95_ns": 12577.4, "ser_p99_ns": 13583.48, "ser_ci_low_ns": 8337.987886597939, "ser_ci_high_ns": 9143.951030927834, "deser_mean_ns": 24912.79381443299, "deser_median_ns": 23854.0, "deser_std_ns": 5047.792477365198, "deser_mad_ns": 3473.0, "deser_cv": 0.20261848249395487, "deser_min_ns": 17661.0, "deser_max_ns": 38735.0, "deser_p5_ns": 18849.8, "deser_p25_ns": 21099.0, "deser_p50_ns": 23854.0, "deser_p75_ns": 28418.0, "deser_p95_ns": 35098.6, "deser_p99_ns": 37881.55999999999, "deser_ci_low_ns": 23919.455670103092, "deser_ci_high_ns": 25963.834793814432, "total_mean_ns": 33637.87628865979, "total_median_ns": 31945.0, "total_std_ns": 6670.980033663426, "total_mad_ns": 5129.0, "total_cv": 0.19831751494705355, "total_min_ns": 23633.0, "total_max_ns": 52268.0, "total_p5_ns": 25266.2, "total_p25_ns": 28186.0, "total_p50_ns": 31945.0, "total_p75_ns": 39188.0, "total_p95_ns": 45788.19999999999, "total_p99_ns": 48862.87999999997, "total_ci_low_ns": 32313.42731958763, "total_ci_high_ns": 34976.386855670105, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.7008920676141965}, {"serializer": "ZeroFormatter", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.6.4", "avg_time_ser_ns": 4389.608695652174, "avg_time_deser_ns": 2905.228260869565, "avg_time_total_ns": 7294.836956521739, "median_size_bytes": 57.0, "avg_ops_per_sec": 137083.25572732353, "min_ops_per_sec": 93510.37965214139, "max_ops_per_sec": 244200.2442002442, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 4389.608695652174, "ser_median_ns": 4253.5, "ser_std_ns": 958.7157384628157, "ser_mad_ns": 563.0, "ser_cv": 0.21840574067852697, "ser_min_ns": 2207.0, "ser_max_ns": 6739.0, "ser_p5_ns": 3020.75, "ser_p25_ns": 3811.0, "ser_p50_ns": 4253.5, "ser_p75_ns": 4871.5, "ser_p95_ns": 6228.000000000001, "ser_p99_ns": 6702.6, "ser_ci_low_ns": 4197.81222826087, "ser_ci_high_ns": 4587.325815217391, "deser_mean_ns": 2905.228260869565, "deser_median_ns": 2816.0, "deser_std_ns": 565.7513355689415, "deser_mad_ns": 371.0, "deser_cv": 0.19473558865891186, "deser_min_ns": 1888.0, "deser_max_ns": 4193.0, "deser_p5_ns": 2087.4, "deser_p25_ns": 2494.25, "deser_p50_ns": 2816.0, "deser_p75_ns": 3224.25, "deser_p95_ns": 3967.6, "deser_p99_ns": 4162.06, "deser_ci_low_ns": 2796.665489130435, "deser_ci_high_ns": 3018.388315217391, "total_mean_ns": 7294.836956521739, "total_median_ns": 7102.5, "total_std_ns": 1393.2924109301216, "total_mad_ns": 833.0, "total_cv": 0.190997059870473, "total_min_ns": 4095.0, "total_max_ns": 10694.0, "total_p5_ns": 5296.85, "total_p25_ns": 6449.75, "total_p50_ns": 7102.5, "total_p75_ns": 8190.0, "total_p95_ns": 9703.75, "total_p99_ns": 10574.79, "total_ci_low_ns": 7021.976358695652, "total_ci_high_ns": 7582.992663043478, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.6173913043478261, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.2079446611317886}, {"serializer": "NetJSON", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.0.0", "avg_time_ser_ns": 8290.358695652174, "avg_time_deser_ns": 9303.989130434782, "avg_time_total_ns": 17594.347826086956, "median_size_bytes": 142.0, "avg_ops_per_sec": 56836.434625744434, "min_ops_per_sec": 40435.08147668918, "max_ops_per_sec": 92592.5925925926, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 8290.358695652174, "ser_median_ns": 8001.0, "ser_std_ns": 1808.773305288298, "ser_mad_ns": 892.5, "ser_cv": 0.2181779307374116, "ser_min_ns": 4590.0, "ser_max_ns": 13567.0, "ser_p5_ns": 5804.6, "ser_p25_ns": 7169.5, "ser_p50_ns": 8001.0, "ser_p75_ns": 9306.5, "ser_p95_ns": 12092.550000000001, "ser_p99_ns": 12715.240000000003, "ser_ci_low_ns": 7911.914402173913, "ser_ci_high_ns": 8666.397554347825, "deser_mean_ns": 9303.989130434782, "deser_median_ns": 9069.0, "deser_std_ns": 1363.6138596106716, "deser_mad_ns": 624.0, "deser_cv": 0.14656227995259372, "deser_min_ns": 6210.0, "deser_max_ns": 12532.0, "deser_p5_ns": 7302.75, "deser_p25_ns": 8530.0, "deser_p50_ns": 9069.0, "deser_p75_ns": 9909.25, "deser_p95_ns": 12023.4, "deser_p99_ns": 12399.140000000001, "deser_ci_low_ns": 9039.14972826087, "deser_ci_high_ns": 9570.44945652174, "total_mean_ns": 17594.347826086956, "total_median_ns": 17060.5, "total_std_ns": 2972.602339516054, "total_mad_ns": 1552.5, "total_cv": 0.1689521185382392, "total_min_ns": 10800.0, "total_max_ns": 24731.0, "total_p5_ns": 13232.5, "total_p25_ns": 15694.5, "total_p50_ns": 17060.5, "total_p75_ns": 18987.25, "total_p95_ns": 22961.850000000002, "total_p99_ns": 24699.15, "total_ci_low_ns": 16998.24375, "total_ci_high_ns": 18177.602717391303, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.18468207325129}, {"serializer": "FsPickler", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 18349.30769230769, "avg_time_deser_ns": 10365.802197802197, "avg_time_total_ns": 28715.10989010989, "median_size_bytes": 188.0, "avg_ops_per_sec": 34824.871081006095, "min_ops_per_sec": 19992.802591067215, "max_ops_per_sec": 85984.52278589855, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 18349.30769230769, "ser_median_ns": 16914.0, "ser_std_ns": 5685.77458749721, "ser_mad_ns": 3199.0, "ser_cv": 0.3098631666567329, "ser_min_ns": 6629.0, "ser_max_ns": 34076.0, "ser_p5_ns": 11062.0, "ser_p25_ns": 14373.5, "ser_p50_ns": 16914.0, "ser_p75_ns": 21797.0, "ser_p95_ns": 28397.5, "ser_p99_ns": 32843.899999999994, "ser_ci_low_ns": 17191.0760989011, "ser_ci_high_ns": 19542.50164835165, "deser_mean_ns": 10365.802197802197, "deser_median_ns": 9974.0, "deser_std_ns": 2545.648741675708, "deser_mad_ns": 1603.0, "deser_cv": 0.24558145072606613, "deser_min_ns": 5001.0, "deser_max_ns": 17002.0, "deser_p5_ns": 6487.0, "deser_p25_ns": 8720.5, "deser_p50_ns": 9974.0, "deser_p75_ns": 11864.5, "deser_p95_ns": 15579.5, "deser_p99_ns": 16047.999999999995, "deser_ci_low_ns": 9856.551648351648, "deser_ci_high_ns": 10902.306868131867, "total_mean_ns": 28715.10989010989, "total_median_ns": 27215.0, "total_std_ns": 8118.313051983904, "total_mad_ns": 4823.0, "total_cv": 0.2827192054305886, "total_min_ns": 11630.0, "total_max_ns": 50018.0, "total_p5_ns": 18381.0, "total_p25_ns": 22872.5, "total_p50_ns": 27215.0, "total_p75_ns": 33620.5, "total_p95_ns": 44177.5, "total_p99_ns": 48551.899999999994, "total_ci_low_ns": 27093.92967032967, "total_ci_high_ns": 30443.150274725274, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.937090383917566}, {"serializer": "FlatSharp", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "7.5.1", "avg_time_ser_ns": 8086.934065934066, "avg_time_deser_ns": 5102.9670329670325, "avg_time_total_ns": 13189.901098901099, "median_size_bytes": 100.0, "avg_ops_per_sec": 75815.57985171805, "min_ops_per_sec": 54386.25115570784, "max_ops_per_sec": 114142.2212076247, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 8086.934065934066, "ser_median_ns": 8088.0, "ser_std_ns": 1391.1762952599806, "ser_mad_ns": 844.0, "ser_cv": 0.17202765398079148, "ser_min_ns": 5061.0, "ser_max_ns": 11305.0, "ser_p5_ns": 5710.0, "ser_p25_ns": 7237.5, "ser_p50_ns": 8088.0, "ser_p75_ns": 8922.0, "ser_p95_ns": 10323.0, "ser_p99_ns": 11228.5, "ser_ci_low_ns": 7797.309065934066, "ser_ci_high_ns": 8376.308241758241, "deser_mean_ns": 5102.9670329670325, "deser_median_ns": 5097.0, "deser_std_ns": 828.9762287243149, "deser_mad_ns": 535.0, "deser_cv": 0.16244984993413153, "deser_min_ns": 3494.0, "deser_max_ns": 7112.0, "deser_p5_ns": 3767.0, "deser_p25_ns": 4561.5, "deser_p50_ns": 5097.0, "deser_p75_ns": 5620.0, "deser_p95_ns": 6745.0, "deser_p99_ns": 7085.0, "deser_ci_low_ns": 4940.4384615384615, "deser_ci_high_ns": 5273.171978021978, "total_mean_ns": 13189.901098901099, "total_median_ns": 13108.0, "total_std_ns": 2090.518192298769, "total_mad_ns": 1443.0, "total_cv": 0.15849384893969662, "total_min_ns": 8761.0, "total_max_ns": 18387.0, "total_p5_ns": 9623.5, "total_p25_ns": 11775.0, "total_p50_ns": 13108.0, "total_p75_ns": 14552.5, "total_p95_ns": 16777.0, "total_p99_ns": 18005.399999999998, "total_ci_low_ns": 12771.737362637363, "total_ci_high_ns": 13634.061813186812, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9997557997557998, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.33967901488027}, {"serializer": "SharpYaml", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "3.13.0", "avg_time_ser_ns": 151445.88775510204, "avg_time_deser_ns": 179846.35714285713, "avg_time_total_ns": 331292.2448979592, "median_size_bytes": 147.0, "avg_ops_per_sec": 3018.482972059936, "min_ops_per_sec": 2451.8156921107925, "max_ops_per_sec": 3597.7693829825507, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 151445.88775510204, "ser_median_ns": 146918.5, "ser_std_ns": 15776.322513800107, "ser_mad_ns": 8899.5, "ser_cv": 0.10417134956685954, "ser_min_ns": 125920.0, "ser_max_ns": 195986.0, "ser_p5_ns": 130717.55, "ser_p25_ns": 139665.5, "ser_p50_ns": 146918.5, "ser_p75_ns": 161580.5, "ser_p95_ns": 179090.69999999998, "ser_p99_ns": 184423.6, "ser_ci_low_ns": 148487.8201530612, "ser_ci_high_ns": 154642.8020408163, "deser_mean_ns": 179846.35714285713, "deser_median_ns": 173580.5, "deser_std_ns": 20398.424000801995, "deser_mad_ns": 13322.5, "deser_cv": 0.11342139104101476, "deser_min_ns": 152030.0, "deser_max_ns": 229027.0, "deser_p5_ns": 156144.25, "deser_p25_ns": 163497.5, "deser_p50_ns": 173580.5, "deser_p75_ns": 195662.75, "deser_p95_ns": 219672.89999999997, "deser_p99_ns": 225898.75, "deser_ci_low_ns": 175962.96352040814, "deser_ci_high_ns": 183835.8137755102, "total_mean_ns": 331292.2448979592, "total_median_ns": 326768.5, "total_std_ns": 32563.40061589645, "total_mad_ns": 26207.5, "total_cv": 0.09829207027144947, "total_min_ns": 277950.0, "total_max_ns": 407861.0, "total_p5_ns": 288752.7, "total_p25_ns": 305428.5, "total_p50_ns": 326768.5, "total_p75_ns": 355646.5, "total_p95_ns": 396792.0, "total_p99_ns": 407781.46, "total_ci_low_ns": 325072.5117346939, "total_ci_high_ns": 337787.5336734694, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.780846640141181}, {"serializer": "YamlDotNet", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "17.1.0", "avg_time_ser_ns": 162663.27368421052, "avg_time_deser_ns": 126103.64210526316, "avg_time_total_ns": 288766.9157894737, "median_size_bytes": 147.0, "avg_ops_per_sec": 3463.000590860806, "min_ops_per_sec": 2879.844258022526, "max_ops_per_sec": 4110.709631803738, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 162663.27368421052, "ser_median_ns": 159378.0, "ser_std_ns": 14940.597032590684, "ser_mad_ns": 10884.0, "ser_cv": 0.0918498484273463, "ser_min_ns": 135204.0, "ser_max_ns": 200686.0, "ser_p5_ns": 142278.4, "ser_p25_ns": 151770.0, "ser_p50_ns": 159378.0, "ser_p75_ns": 171951.5, "ser_p95_ns": 189189.5, "ser_p99_ns": 196396.78, "ser_ci_low_ns": 159705.14763157893, "ser_ci_high_ns": 165741.67710526317, "deser_mean_ns": 126103.64210526316, "deser_median_ns": 124822.0, "deser_std_ns": 10408.027549266642, "deser_mad_ns": 7070.0, "deser_cv": 0.0825355031425555, "deser_min_ns": 106817.0, "deser_max_ns": 154471.0, "deser_p5_ns": 112248.7, "deser_p25_ns": 118243.0, "deser_p50_ns": 124822.0, "deser_p75_ns": 132599.5, "deser_p95_ns": 143642.6, "deser_p99_ns": 153563.9, "deser_ci_low_ns": 124094.52657894738, "deser_ci_high_ns": 128098.235, "total_mean_ns": 288766.9157894737, "total_median_ns": 286311.0, "total_std_ns": 24252.025853814972, "total_mad_ns": 17610.0, "total_cv": 0.08398477986133279, "total_min_ns": 243267.0, "total_max_ns": 347241.0, "total_p5_ns": 256461.2, "total_p25_ns": 269887.5, "total_p50_ns": 286311.0, "total_p75_ns": 304384.0, "total_p95_ns": 333265.6, "total_p99_ns": 339732.28, "total_ci_low_ns": 284027.70763157896, "total_ci_high_ns": 293565.3476315789, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.1990330939188}, {"serializer": "MemoryPack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 6366.284090909091, "avg_time_deser_ns": 4169.25, "avg_time_total_ns": 10535.53409090909, "median_size_bytes": 66.0, "avg_ops_per_sec": 94916.87762302253, "min_ops_per_sec": 64994.15052645262, "max_ops_per_sec": 146584.5793022574, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 6366.284090909091, "ser_median_ns": 6325.5, "ser_std_ns": 1312.9639536758189, "ser_mad_ns": 735.0, "ser_cv": 0.20623709764235962, "ser_min_ns": 3657.0, "ser_max_ns": 9798.0, "ser_p5_ns": 4314.35, "ser_p25_ns": 5447.75, "ser_p50_ns": 6325.5, "ser_p75_ns": 7012.0, "ser_p95_ns": 8754.349999999999, "ser_p99_ns": 9790.17, "ser_ci_low_ns": 6104.998011363637, "ser_ci_high_ns": 6625.484090909091, "deser_mean_ns": 4169.25, "deser_median_ns": 4138.5, "deser_std_ns": 663.7704604288526, "deser_mad_ns": 311.5, "deser_cv": 0.1592062026572771, "deser_min_ns": 2869.0, "deser_max_ns": 5834.0, "deser_p5_ns": 3168.5, "deser_p25_ns": 3859.0, "deser_p50_ns": 4138.5, "deser_p75_ns": 4484.75, "deser_p95_ns": 5563.749999999999, "deser_p99_ns": 5731.339999999999, "deser_ci_low_ns": 4036.94375, "deser_ci_high_ns": 4318.86534090909, "total_mean_ns": 10535.53409090909, "total_median_ns": 10586.0, "total_std_ns": 1847.8248595221705, "total_mad_ns": 1098.5, "total_cv": 0.17538976606004467, "total_min_ns": 6822.0, "total_max_ns": 15386.0, "total_p5_ns": 7635.9, "total_p25_ns": 9361.25, "total_p50_ns": 10586.0, "total_p75_ns": 11581.25, "total_p95_ns": 13989.599999999999, "total_p99_ns": 14801.359999999997, "total_ci_low_ns": 10159.397443181817, "total_ci_high_ns": 10932.077272727272, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9732323232323232, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.072098666843368}, {"serializer": "fastJson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "2.4.0.4", "avg_time_ser_ns": 17705.157894736843, "avg_time_deser_ns": 23416.894736842107, "avg_time_total_ns": 41122.05263157895, "median_size_bytes": 310.0, "avg_ops_per_sec": 24317.85224728952, "min_ops_per_sec": 17978.49771673079, "max_ops_per_sec": 31476.235442241108, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 17705.157894736843, "ser_median_ns": 17479.0, "ser_std_ns": 2677.7157473750276, "ser_mad_ns": 1935.0, "ser_cv": 0.15123930344450776, "ser_min_ns": 12803.0, "ser_max_ns": 24621.0, "ser_p5_ns": 14091.5, "ser_p25_ns": 15550.0, "ser_p50_ns": 17479.0, "ser_p75_ns": 19368.0, "ser_p95_ns": 23060.899999999998, "ser_p99_ns": 24487.52, "ser_ci_low_ns": 17191.518947368422, "ser_ci_high_ns": 18276.258684210527, "deser_mean_ns": 23416.894736842107, "deser_median_ns": 23048.0, "deser_std_ns": 3090.7628111453714, "deser_mad_ns": 2243.0, "deser_cv": 0.1319885854157526, "deser_min_ns": 18337.0, "deser_max_ns": 32069.0, "deser_p5_ns": 19551.7, "deser_p25_ns": 20834.0, "deser_p50_ns": 23048.0, "deser_p75_ns": 25244.0, "deser_p95_ns": 29008.699999999997, "deser_p99_ns": 31955.260000000002, "deser_ci_low_ns": 22821.235263157894, "deser_ci_high_ns": 24077.541578947366, "total_mean_ns": 41122.05263157895, "total_median_ns": 40781.0, "total_std_ns": 5468.344936840056, "total_mad_ns": 4188.0, "total_cv": 0.13297840421129023, "total_min_ns": 31770.0, "total_max_ns": 55622.0, "total_p5_ns": 33504.7, "total_p25_ns": 36195.5, "total_p50_ns": 40781.0, "total_p75_ns": 44753.5, "total_p95_ns": 49953.799999999996, "total_p99_ns": 54497.76, "total_ci_low_ns": 40064.34552631579, "total_ci_high_ns": 42306.47131578947, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.791914988571838}, {"serializer": "LightProto", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.3.4", "avg_time_ser_ns": 4855.177777777778, "avg_time_deser_ns": 4042.0444444444443, "avg_time_total_ns": 8897.222222222223, "median_size_bytes": 50.0, "avg_ops_per_sec": 112394.6300343428, "min_ops_per_sec": 75700.2271006813, "max_ops_per_sec": 149031.29657228017, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 4855.177777777778, "ser_median_ns": 4582.5, "ser_std_ns": 1012.1489939813596, "ser_mad_ns": 602.5, "ser_cv": 0.20846795736584164, "ser_min_ns": 3407.0, "ser_max_ns": 7880.0, "ser_p5_ns": 3638.3, "ser_p25_ns": 4130.0, "ser_p50_ns": 4582.5, "ser_p75_ns": 5389.5, "ser_p95_ns": 6777.599999999999, "ser_p99_ns": 7597.87, "ser_ci_low_ns": 4656.797777777779, "ser_ci_high_ns": 5058.026666666666, "deser_mean_ns": 4042.0444444444443, "deser_median_ns": 3941.5, "deser_std_ns": 664.2360300529281, "deser_mad_ns": 401.5, "deser_cv": 0.16433169876839973, "deser_min_ns": 3067.0, "deser_max_ns": 5647.0, "deser_p5_ns": 3153.1, "deser_p25_ns": 3554.25, "deser_p50_ns": 3941.5, "deser_p75_ns": 4373.75, "deser_p95_ns": 5419.599999999999, "deser_p99_ns": 5637.21, "deser_ci_low_ns": 3906.2558333333336, "deser_ci_high_ns": 4178.941944444445, "total_mean_ns": 8897.222222222223, "total_median_ns": 8526.5, "total_std_ns": 1541.8314061186725, "total_mad_ns": 922.5, "total_cv": 0.17329357046603874, "total_min_ns": 6710.0, "total_max_ns": 13210.0, "total_p5_ns": 7080.2, "total_p25_ns": 7750.75, "total_p50_ns": 8526.5, "total_p75_ns": 9571.25, "total_p95_ns": 11986.099999999999, "total_p99_ns": 13095.19, "total_ci_low_ns": 8591.729166666666, "total_ci_high_ns": 9226.743611111111, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.2812017962460236}, {"serializer": "Apache.Avro", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.12.1", "avg_time_ser_ns": 9834.340206185567, "avg_time_deser_ns": 8916.515463917525, "avg_time_total_ns": 18750.855670103094, "median_size_bytes": 44.0, "avg_ops_per_sec": 53330.89953833034, "min_ops_per_sec": 38143.18953350879, "max_ops_per_sec": 86058.51979345955, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 9834.340206185567, "ser_median_ns": 9453.0, "ser_std_ns": 1961.1765489039456, "ser_mad_ns": 1376.0, "ser_cv": 0.1994212634285737, "ser_min_ns": 5642.0, "ser_max_ns": 14662.0, "ser_p5_ns": 7121.6, "ser_p25_ns": 8586.0, "ser_p50_ns": 9453.0, "ser_p75_ns": 11162.0, "ser_p95_ns": 13344.8, "ser_p99_ns": 14361.519999999997, "ser_ci_low_ns": 9474.77706185567, "ser_ci_high_ns": 10217.479123711339, "deser_mean_ns": 8916.515463917525, "deser_median_ns": 8700.0, "deser_std_ns": 1386.1546188512098, "deser_mad_ns": 945.0, "deser_cv": 0.1554592289398884, "deser_min_ns": 5978.0, "deser_max_ns": 12592.0, "deser_p5_ns": 7077.0, "deser_p25_ns": 7871.0, "deser_p50_ns": 8700.0, "deser_p75_ns": 9796.0, "deser_p95_ns": 11218.799999999997, "deser_p99_ns": 12546.88, "deser_ci_low_ns": 8651.567525773196, "deser_ci_high_ns": 9200.496391752577, "total_mean_ns": 18750.855670103094, "total_median_ns": 18376.0, "total_std_ns": 3227.5880119347985, "total_mad_ns": 2357.0, "total_cv": 0.1721301720156141, "total_min_ns": 11620.0, "total_max_ns": 26217.0, "total_p5_ns": 14735.800000000001, "total_p25_ns": 16399.0, "total_p50_ns": 18376.0, "total_p75_ns": 21108.0, "total_p95_ns": 24106.2, "total_p99_ns": 25932.839999999997, "total_ci_low_ns": 18108.793298969074, "total_ci_high_ns": 19409.144587628864, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.246775652031815}, {"serializer": "Google.Protobuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "3.35.1", "avg_time_ser_ns": 5268.923913043478, "avg_time_deser_ns": 4548.434782608696, "avg_time_total_ns": 9817.358695652174, "median_size_bytes": 50.0, "avg_ops_per_sec": 101860.39147605671, "min_ops_per_sec": 72014.97911565605, "max_ops_per_sec": 155593.5895441108, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 5268.923913043478, "ser_median_ns": 5153.0, "ser_std_ns": 1113.084776385825, "ser_mad_ns": 757.0, "ser_cv": 0.21125466883860847, "ser_min_ns": 3177.0, "ser_max_ns": 7881.0, "ser_p5_ns": 3748.4, "ser_p25_ns": 4434.5, "ser_p50_ns": 5153.0, "ser_p75_ns": 5947.0, "ser_p95_ns": 7393.85, "ser_p99_ns": 7830.95, "ser_ci_low_ns": 5047.978532608696, "ser_ci_high_ns": 5496.746467391304, "deser_mean_ns": 4548.434782608696, "deser_median_ns": 4538.0, "deser_std_ns": 720.114189729242, "deser_mad_ns": 473.0, "deser_cv": 0.15832131802409394, "deser_min_ns": 3151.0, "deser_max_ns": 6353.0, "deser_p5_ns": 3446.35, "deser_p25_ns": 4042.75, "deser_p50_ns": 4538.0, "deser_p75_ns": 4970.5, "deser_p95_ns": 5805.3, "deser_p99_ns": 6121.860000000001, "deser_ci_low_ns": 4403.278532608696, "deser_ci_high_ns": 4689.217934782609, "total_mean_ns": 9817.358695652174, "total_median_ns": 9653.5, "total_std_ns": 1726.4838534713206, "total_mad_ns": 1196.0, "total_cv": 0.17586032119167966, "total_min_ns": 6427.0, "total_max_ns": 13886.0, "total_p5_ns": 7257.7, "total_p25_ns": 8551.75, "total_p50_ns": 9653.5, "total_p75_ns": 10853.25, "total_p95_ns": 13030.300000000001, "total_p99_ns": 13885.09, "total_ci_low_ns": 9478.467391304348, "total_ci_high_ns": 10140.857880434782, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9461352657004831, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.728560703270178}, {"serializer": "SpanJson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "4.2.1", "avg_time_ser_ns": 7101.304347826087, "avg_time_deser_ns": 4278.358695652174, "avg_time_total_ns": 11379.66304347826, "median_size_bytes": 157.0, "avg_ops_per_sec": 87876.06418391314, "min_ops_per_sec": 55401.662049861494, "max_ops_per_sec": 144696.8600781363, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 7101.304347826087, "ser_median_ns": 6646.0, "ser_std_ns": 1766.3481713406538, "ser_mad_ns": 1099.5, "ser_cv": 0.24873573710178803, "ser_min_ns": 3988.0, "ser_max_ns": 11684.0, "ser_p5_ns": 4693.65, "ser_p25_ns": 5847.75, "ser_p50_ns": 6646.0, "ser_p75_ns": 8330.5, "ser_p95_ns": 10528.95, "ser_p99_ns": 11504.730000000001, "ser_ci_low_ns": 6752.828804347827, "ser_ci_high_ns": 7461.479076086956, "deser_mean_ns": 4278.358695652174, "deser_median_ns": 4074.5, "deser_std_ns": 1048.6771214670366, "deser_mad_ns": 586.0, "deser_cv": 0.24511201515963144, "deser_min_ns": 2508.0, "deser_max_ns": 7258.0, "deser_p5_ns": 3048.4, "deser_p25_ns": 3526.25, "deser_p50_ns": 4074.5, "deser_p75_ns": 4748.5, "deser_p95_ns": 6310.05, "deser_p99_ns": 6625.550000000002, "deser_ci_low_ns": 4075.948641304348, "deser_ci_high_ns": 4490.723641304347, "total_mean_ns": 11379.66304347826, "total_median_ns": 10739.5, "total_std_ns": 2684.186840572527, "total_mad_ns": 1689.0, "total_cv": 0.23587577508376645, "total_min_ns": 6911.0, "total_max_ns": 18050.0, "total_p5_ns": 7825.9, "total_p25_ns": 9343.75, "total_p50_ns": 10739.5, "total_p75_ns": 13064.5, "total_p95_ns": 16312.35, "total_p99_ns": 17868.91, "total_ci_low_ns": 10863.478532608695, "total_ci_high_ns": 11921.59429347826, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9774154589371981, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.69884235720197}, {"serializer": "CsvHelper", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "33.1.0", "avg_time_ser_ns": 2642152.255319149, "avg_time_deser_ns": 1091098.680851064, "avg_time_total_ns": 3733250.936170213, "median_size_bytes": 136.0, "avg_ops_per_sec": 267.86305477387987, "min_ops_per_sec": 230.66449134673695, "max_ops_per_sec": 294.321161485486, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 2642152.255319149, "ser_median_ns": 2609596.0, "ser_std_ns": 159804.86589022307, "ser_mad_ns": 136832.5, "ser_cv": 0.06048283764438853, "ser_min_ns": 2394267.0, "ser_max_ns": 3170565.0, "ser_p5_ns": 2430412.8, "ser_p25_ns": 2498604.5, "ser_p50_ns": 2609596.0, "ser_p75_ns": 2772821.25, "ser_p95_ns": 2871080.35, "ser_p99_ns": 2992372.3499999987, "ser_ci_low_ns": 2609658.86462766, "ser_ci_high_ns": 2675849.9324468086, "deser_mean_ns": 1091098.680851064, "deser_median_ns": 1078910.0, "deser_std_ns": 59069.4143313224, "deser_mad_ns": 42697.0, "deser_cv": 0.054137554529208924, "deser_min_ns": 1003382.0, "deser_max_ns": 1252751.0, "deser_p5_ns": 1018912.1, "deser_p25_ns": 1039007.5, "deser_p50_ns": 1078910.0, "deser_p75_ns": 1140437.75, "deser_p95_ns": 1196359.0, "deser_p99_ns": 1229640.4999999998, "deser_ci_low_ns": 1079011.7021276595, "deser_ci_high_ns": 1103560.1875, "total_mean_ns": 3733250.936170213, "total_median_ns": 3698052.5, "total_std_ns": 207149.31964719787, "total_mad_ns": 186106.0, "total_cv": 0.055487649555029314, "total_min_ns": 3397649.0, "total_max_ns": 4335301.0, "total_p5_ns": 3464105.15, "total_p25_ns": 3545648.0, "total_p50_ns": 3698052.5, "total_p75_ns": 3908915.5, "total_p95_ns": 4034989.6, "total_p99_ns": 4238962.299999999, "total_ci_low_ns": 3693565.9853723403, "total_ci_high_ns": 3777527.9292553193, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.068680719348727}, {"serializer": "MS XmlSerializer", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 27754.117021276597, "avg_time_deser_ns": 30169.255319148935, "avg_time_total_ns": 57923.37234042553, "median_size_bytes": 395.0, "avg_ops_per_sec": 17264.188178181852, "min_ops_per_sec": 11985.808802377984, "max_ops_per_sec": 24090.58058299205, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 27754.117021276597, "ser_median_ns": 26395.0, "ser_std_ns": 5617.5041904964155, "ser_mad_ns": 3494.0, "ser_cv": 0.20240255477016178, "ser_min_ns": 18960.0, "ser_max_ns": 44558.0, "ser_p5_ns": 20596.5, "ser_p25_ns": 23465.5, "ser_p50_ns": 26395.0, "ser_p75_ns": 31234.0, "ser_p95_ns": 38048.95, "ser_p99_ns": 41167.21999999997, "ser_ci_low_ns": 26641.638829787236, "ser_ci_high_ns": 28901.001329787232, "deser_mean_ns": 30169.255319148935, "deser_median_ns": 28965.0, "deser_std_ns": 4619.639987220924, "deser_mad_ns": 3289.5, "deser_cv": 0.15312409730871815, "deser_min_ns": 22550.0, "deser_max_ns": 42776.0, "deser_p5_ns": 23642.7, "deser_p25_ns": 26649.0, "deser_p50_ns": 28965.0, "deser_p75_ns": 33126.5, "deser_p95_ns": 38859.0, "deser_p99_ns": 40769.98999999998, "deser_ci_low_ns": 29255.172872340427, "deser_ci_high_ns": 31097.397606382976, "total_mean_ns": 57923.37234042553, "total_median_ns": 55753.5, "total_std_ns": 9907.149483144849, "total_mad_ns": 6200.0, "total_cv": 0.17103889298638975, "total_min_ns": 41510.0, "total_max_ns": 83432.0, "total_p5_ns": 44695.6, "total_p25_ns": 50185.5, "total_p50_ns": 55753.5, "total_p75_ns": 65190.5, "total_p95_ns": 76401.59999999999, "total_p99_ns": 83372.48, "total_ci_low_ns": 55974.048138297876, "total_ci_high_ns": 59821.4789893617, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.290128821710654}, {"serializer": "MS Binary", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 28200.086021505376, "avg_time_deser_ns": 22266.795698924732, "avg_time_total_ns": 50466.88172043011, "median_size_bytes": 431.0, "avg_ops_per_sec": 19814.975007563782, "min_ops_per_sec": 14273.479874393377, "max_ops_per_sec": 26254.988447805084, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 28200.086021505376, "ser_median_ns": 27728.0, "ser_std_ns": 5314.428427804725, "ser_mad_ns": 3603.0, "ser_cv": 0.18845433392479527, "ser_min_ns": 19859.0, "ser_max_ns": 43679.0, "ser_p5_ns": 21234.8, "ser_p25_ns": 24125.0, "ser_p50_ns": 27728.0, "ser_p75_ns": 31035.0, "ser_p95_ns": 38138.2, "ser_p99_ns": 42761.759999999995, "ser_ci_low_ns": 27110.39435483871, "ser_ci_high_ns": 29355.577150537632, "deser_mean_ns": 22266.795698924732, "deser_median_ns": 21988.0, "deser_std_ns": 2777.0014621621763, "deser_mad_ns": 1816.0, "deser_cv": 0.12471491182255191, "deser_min_ns": 17284.0, "deser_max_ns": 29105.0, "deser_p5_ns": 18514.8, "deser_p25_ns": 20015.0, "deser_p50_ns": 21988.0, "deser_p75_ns": 23709.0, "deser_p95_ns": 27295.0, "deser_p99_ns": 28845.56, "deser_ci_low_ns": 21701.925806451614, "deser_ci_high_ns": 22840.16505376344, "total_mean_ns": 50466.88172043011, "total_median_ns": 49234.0, "total_std_ns": 7775.0423077969035, "total_mad_ns": 5672.0, "total_cv": 0.15406226901174666, "total_min_ns": 38088.0, "total_max_ns": 70060.0, "total_p5_ns": 39220.2, "total_p25_ns": 44141.0, "total_p50_ns": 49234.0, "total_p75_ns": 55389.0, "total_p95_ns": 66111.6, "total_p99_ns": 67830.84, "total_ci_low_ns": 48980.03198924731, "total_ci_high_ns": 52054.416666666664, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.946679010103715}, {"serializer": "YAXLib", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "4.4.0", "avg_time_ser_ns": 264894.55319148937, "avg_time_deser_ns": 189687.93617021278, "avg_time_total_ns": 454582.4893617021, "median_size_bytes": 260.0, "avg_ops_per_sec": 2199.8207660927305, "min_ops_per_sec": 1735.749496632646, "max_ops_per_sec": 2789.485869859326, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 264894.55319148937, "ser_median_ns": 260122.5, "ser_std_ns": 37558.92729428171, "ser_mad_ns": 24122.0, "ser_cv": 0.14178822041361785, "ser_min_ns": 200113.0, "ser_max_ns": 367812.0, "ser_p5_ns": 207745.4, "ser_p25_ns": 238563.5, "ser_p50_ns": 260122.5, "ser_p75_ns": 287023.5, "ser_p95_ns": 331146.35, "ser_p99_ns": 360451.9799999999, "ser_ci_low_ns": 257294.61090425533, "ser_ci_high_ns": 271894.73457446805, "deser_mean_ns": 189687.93617021278, "deser_median_ns": 188321.5, "deser_std_ns": 19000.373588748484, "deser_mad_ns": 13383.5, "deser_cv": 0.100166483817394, "deser_min_ns": 154560.0, "deser_max_ns": 244284.0, "deser_p5_ns": 160620.05, "deser_p25_ns": 175272.25, "deser_p50_ns": 188321.5, "deser_p75_ns": 202600.0, "deser_p95_ns": 221870.09999999998, "deser_p99_ns": 233669.90999999992, "deser_ci_low_ns": 186012.64840425533, "deser_ci_high_ns": 193693.30159574468, "total_mean_ns": 454582.4893617021, "total_median_ns": 450693.0, "total_std_ns": 52990.21295956345, "total_mad_ns": 35638.5, "total_cv": 0.11656897086812379, "total_min_ns": 358489.0, "total_max_ns": 576120.0, "total_p5_ns": 373376.4, "total_p25_ns": 415506.25, "total_p50_ns": 450693.0, "total_p75_ns": 485853.0, "total_p95_ns": 549292.45, "total_p99_ns": 568811.1299999999, "total_ci_low_ns": 444101.0018617021, "total_ci_high_ns": 464997.34680851066, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.798475717824724}, {"serializer": "GroBuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.9.2", "avg_time_ser_ns": 3716.7395833333335, "avg_time_deser_ns": 4459.3125, "avg_time_total_ns": 8176.052083333333, "median_size_bytes": 157.0, "avg_ops_per_sec": 122308.41851392724, "min_ops_per_sec": 75746.0990758976, "max_ops_per_sec": 236127.50885478157, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 3716.7395833333335, "ser_median_ns": 3601.0, "ser_std_ns": 1027.1929480491626, "ser_mad_ns": 774.5, "ser_cv": 0.2763693621838126, "ser_min_ns": 1939.0, "ser_max_ns": 6607.0, "ser_p5_ns": 2208.25, "ser_p25_ns": 2913.75, "ser_p50_ns": 3601.0, "ser_p75_ns": 4406.5, "ser_p95_ns": 5327.5, "ser_p99_ns": 6150.049999999998, "ser_ci_low_ns": 3517.3947916666666, "ser_ci_high_ns": 3924.7330729166665, "deser_mean_ns": 4459.3125, "deser_median_ns": 4482.0, "deser_std_ns": 1029.2801297636693, "deser_mad_ns": 737.5, "deser_cv": 0.2308158779551039, "deser_min_ns": 2290.0, "deser_max_ns": 6797.0, "deser_p5_ns": 2835.5, "deser_p25_ns": 3662.25, "deser_p50_ns": 4482.0, "deser_p75_ns": 5078.0, "deser_p95_ns": 6221.75, "deser_p99_ns": 6605.099999999999, "deser_ci_low_ns": 4260.202604166667, "deser_ci_high_ns": 4666.322916666666, "total_mean_ns": 8176.052083333333, "total_median_ns": 8098.0, "total_std_ns": 1959.0962006942286, "total_mad_ns": 1416.5, "total_cv": 0.2396139580235545, "total_min_ns": 4235.0, "total_max_ns": 13202.0, "total_p5_ns": 5009.0, "total_p25_ns": 6436.75, "total_p50_ns": 8098.0, "total_p75_ns": 9434.5, "total_p95_ns": 11486.75, "total_p99_ns": 12473.349999999999, "total_ci_low_ns": 7806.791145833334, "total_ci_high_ns": 8560.698697916667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.7168981481481481, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.4973087504519589}, {"serializer": "MS Bond Compact", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 9473.76404494382, "avg_time_deser_ns": 5871.044943820225, "avg_time_total_ns": 15344.808988764045, "median_size_bytes": 53.0, "avg_ops_per_sec": 65168.6183081348, "min_ops_per_sec": 45685.04728402394, "max_ops_per_sec": 101337.65707336846, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 9473.76404494382, "ser_median_ns": 9065.0, "ser_std_ns": 1680.5271495904865, "ser_mad_ns": 918.0, "ser_cv": 0.17738748206288601, "ser_min_ns": 5825.0, "ser_max_ns": 14139.0, "ser_p5_ns": 7214.2, "ser_p25_ns": 8376.0, "ser_p50_ns": 9065.0, "ser_p75_ns": 10145.0, "ser_p95_ns": 12696.8, "ser_p99_ns": 14028.12, "ser_ci_low_ns": 9142.498033707865, "ser_ci_high_ns": 9813.939044943822, "deser_mean_ns": 5871.044943820225, "deser_median_ns": 5722.0, "deser_std_ns": 831.4343563181582, "deser_mad_ns": 532.0, "deser_cv": 0.1416160775933616, "deser_min_ns": 4043.0, "deser_max_ns": 8160.0, "deser_p5_ns": 4748.4, "deser_p25_ns": 5307.0, "deser_p50_ns": 5722.0, "deser_p75_ns": 6332.0, "deser_p95_ns": 7546.999999999997, "deser_p99_ns": 8072.88, "deser_ci_low_ns": 5694.036516853933, "deser_ci_high_ns": 6043.941011235955, "total_mean_ns": 15344.808988764045, "total_median_ns": 14828.0, "total_std_ns": 2441.950551749771, "total_mad_ns": 1515.0, "total_cv": 0.15913854343432, "total_min_ns": 9868.0, "total_max_ns": 21889.0, "total_p5_ns": 12118.0, "total_p25_ns": 13730.0, "total_p50_ns": 14828.0, "total_p75_ns": 16625.0, "total_p95_ns": 20124.599999999995, "total_p99_ns": 21787.8, "total_ci_low_ns": 14852.753651685392, "total_ci_high_ns": 15855.115168539325, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.9728105641472675}, {"serializer": "ServiceStack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 17086.63829787234, "avg_time_deser_ns": 16987.287234042553, "avg_time_total_ns": 34073.925531914894, "median_size_bytes": 137.0, "avg_ops_per_sec": 29347.954026117804, "min_ops_per_sec": 19025.51321321893, "max_ops_per_sec": 45357.64503106999, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 17086.63829787234, "ser_median_ns": 16416.5, "ser_std_ns": 3381.4837834066616, "ser_mad_ns": 2127.5, "ser_cv": 0.19790222772069388, "ser_min_ns": 10957.0, "ser_max_ns": 26501.0, "ser_p5_ns": 11901.3, "ser_p25_ns": 14851.75, "ser_p50_ns": 16416.5, "ser_p75_ns": 18983.75, "ser_p95_ns": 23096.5, "ser_p99_ns": 25626.799999999992, "ser_ci_low_ns": 16407.35824468085, "ser_ci_high_ns": 17810.870478723406, "deser_mean_ns": 16987.287234042553, "deser_median_ns": 16523.5, "deser_std_ns": 3600.608934826956, "deser_mad_ns": 2621.0, "deser_cv": 0.2119590306103337, "deser_min_ns": 10225.0, "deser_max_ns": 27254.0, "deser_p5_ns": 12026.95, "deser_p25_ns": 14062.25, "deser_p50_ns": 16523.5, "deser_p75_ns": 19453.5, "deser_p95_ns": 23401.95, "deser_p99_ns": 25184.749999999985, "deser_ci_low_ns": 16279.04175531915, "deser_ci_high_ns": 17715.25, "total_mean_ns": 34073.925531914894, "total_median_ns": 32934.5, "total_std_ns": 6658.493557611997, "total_mad_ns": 5110.5, "total_cv": 0.19541316281199847, "total_min_ns": 22047.0, "total_max_ns": 52561.0, "total_p5_ns": 24086.7, "total_p25_ns": 29052.5, "total_p50_ns": 32934.5, "total_p75_ns": 38699.0, "total_p95_ns": 45328.54999999998, "total_p99_ns": 50114.169999999984, "total_ci_low_ns": 32826.13989361702, "total_ci_high_ns": 35399.92367021277, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.841906277239486}, {"serializer": "MS DataContract", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 21017.0, "avg_time_deser_ns": 27128.0, "avg_time_total_ns": 48145.0, "median_size_bytes": 368.0, "avg_ops_per_sec": 20770.58884619379, "min_ops_per_sec": 14187.818339173986, "max_ops_per_sec": 34776.560598156844, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 21017.0, "ser_median_ns": 20888.0, "ser_std_ns": 4450.492957246422, "ser_mad_ns": 3233.0, "ser_cv": 0.21175681387669132, "ser_min_ns": 11963.0, "ser_max_ns": 31669.0, "ser_p5_ns": 14601.6, "ser_p25_ns": 18073.0, "ser_p50_ns": 20888.0, "ser_p75_ns": 24231.0, "ser_p95_ns": 29141.39999999999, "ser_p99_ns": 31145.799999999996, "ser_ci_low_ns": 20113.651546391753, "ser_ci_high_ns": 21916.21417525773, "deser_mean_ns": 27128.0, "deser_median_ns": 26325.0, "deser_std_ns": 5125.254717247394, "deser_mad_ns": 2996.0, "deser_cv": 0.1889285873358668, "deser_min_ns": 16115.0, "deser_max_ns": 39359.0, "deser_p5_ns": 20194.8, "deser_p25_ns": 23552.0, "deser_p50_ns": 26325.0, "deser_p75_ns": 29961.0, "deser_p95_ns": 37414.2, "deser_p99_ns": 39113.24, "deser_ci_low_ns": 26125.001288659794, "deser_ci_high_ns": 28152.169072164947, "total_mean_ns": 48145.0, "total_median_ns": 46175.0, "total_std_ns": 9377.506276102049, "total_mad_ns": 6294.0, "total_cv": 0.19477632726351748, "total_min_ns": 28755.0, "total_max_ns": 70483.0, "total_p5_ns": 35921.6, "total_p25_ns": 41671.0, "total_p50_ns": 46175.0, "total_p75_ns": 53429.0, "total_p95_ns": 66825.19999999998, "total_p99_ns": 69674.68, "total_ci_low_ns": 46377.86443298969, "total_ci_high_ns": 50063.77886597938, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.208570688563103}, {"serializer": "FsPicklerJson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 31819.884210526317, "avg_time_deser_ns": 26731.315789473683, "avg_time_total_ns": 58551.2, "median_size_bytes": 432.0, "avg_ops_per_sec": 17079.06925904166, "min_ops_per_sec": 11214.5340361108, "max_ops_per_sec": 35741.09153293542, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 31819.884210526317, "ser_median_ns": 29719.0, "ser_std_ns": 8871.802061975668, "ser_mad_ns": 5168.0, "ser_cv": 0.2788131472534018, "ser_min_ns": 12987.0, "ser_max_ns": 55179.0, "ser_p5_ns": 19740.9, "ser_p25_ns": 25628.5, "ser_p50_ns": 29719.0, "ser_p75_ns": 37311.0, "ser_p95_ns": 48685.8, "ser_p99_ns": 52104.26000000001, "ser_ci_low_ns": 30110.01157894737, "ser_ci_high_ns": 33519.60447368421, "deser_mean_ns": 26731.315789473683, "deser_median_ns": 25776.0, "deser_std_ns": 4726.495468087791, "deser_mad_ns": 2898.0, "deser_cv": 0.17681492019741882, "deser_min_ns": 14992.0, "deser_max_ns": 39019.0, "deser_p5_ns": 20486.5, "deser_p25_ns": 23726.0, "deser_p50_ns": 25776.0, "deser_p75_ns": 29662.5, "deser_p95_ns": 35516.7, "deser_p99_ns": 37316.66, "deser_ci_low_ns": 25809.39605263158, "deser_ci_high_ns": 27655.67105263158, "total_mean_ns": 58551.2, "total_median_ns": 55992.0, "total_std_ns": 13096.94433389355, "total_mad_ns": 7673.0, "total_cv": 0.2236836193603812, "total_min_ns": 27979.0, "total_max_ns": 89170.0, "total_p5_ns": 40486.8, "total_p25_ns": 49009.5, "total_p50_ns": 55992.0, "total_p75_ns": 65487.0, "total_p95_ns": 84301.29999999999, "total_p99_ns": 87605.84, "total_ci_low_ns": 56122.15894736842, "total_ci_high_ns": 61136.20342105263, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.5842845028077255}, {"serializer": "Json.Net", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 16045.329787234043, "avg_time_deser_ns": 19857.297872340427, "avg_time_total_ns": 35902.62765957447, "median_size_bytes": 169.0, "avg_ops_per_sec": 27853.114526377045, "min_ops_per_sec": 17659.732278458658, "max_ops_per_sec": 56679.70299835629, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 16045.329787234043, "ser_median_ns": 15649.5, "ser_std_ns": 4415.771281254329, "ser_mad_ns": 2622.0, "ser_cv": 0.27520601569483455, "ser_min_ns": 6677.0, "ser_max_ns": 27016.0, "ser_p5_ns": 8747.0, "ser_p25_ns": 13207.0, "ser_p50_ns": 15649.5, "ser_p75_ns": 18299.75, "ser_p95_ns": 23655.55, "ser_p99_ns": 26452.419999999995, "ser_ci_low_ns": 15201.593617021275, "ser_ci_high_ns": 16966.26569148936, "deser_mean_ns": 19857.297872340427, "deser_median_ns": 19882.5, "deser_std_ns": 4730.50688099893, "deser_mad_ns": 2779.5, "deser_cv": 0.23822510552093468, "deser_min_ns": 10952.0, "deser_max_ns": 30267.0, "deser_p5_ns": 12324.1, "deser_p25_ns": 16622.75, "deser_p50_ns": 19882.5, "deser_p75_ns": 22563.5, "deser_p95_ns": 28204.299999999996, "deser_p99_ns": 30164.7, "deser_ci_low_ns": 18901.925531914894, "deser_ci_high_ns": 20863.747074468087, "total_mean_ns": 35902.62765957447, "total_median_ns": 35590.5, "total_std_ns": 8906.009173446111, "total_mad_ns": 5753.0, "total_cv": 0.2480600934809591, "total_min_ns": 17643.0, "total_max_ns": 56626.0, "total_p5_ns": 21833.5, "total_p25_ns": 29674.75, "total_p50_ns": 35590.5, "total_p75_ns": 41100.75, "total_p95_ns": 51972.19999999999, "total_p99_ns": 55641.12999999999, "total_ci_low_ns": 34113.19574468085, "total_ci_high_ns": 37663.521010638295, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.68217284281542}, {"serializer": "Hyperion", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "0.12.2", "avg_time_ser_ns": 6770.148936170212, "avg_time_deser_ns": 7220.351063829788, "avg_time_total_ns": 13990.5, "median_size_bytes": 124.0, "avg_ops_per_sec": 71477.07372860155, "min_ops_per_sec": 45886.29376405268, "max_ops_per_sec": 119431.50603129105, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 6770.148936170212, "ser_median_ns": 6485.0, "ser_std_ns": 1818.2315522450658, "ser_mad_ns": 1287.5, "ser_cv": 0.2685659605700811, "ser_min_ns": 4030.0, "ser_max_ns": 11238.0, "ser_p5_ns": 4423.55, "ser_p25_ns": 5269.75, "ser_p50_ns": 6485.0, "ser_p75_ns": 7862.5, "ser_p95_ns": 10161.699999999999, "ser_p99_ns": 11162.67, "ser_ci_low_ns": 6416.311170212765, "ser_ci_high_ns": 7139.833244680851, "deser_mean_ns": 7220.351063829788, "deser_median_ns": 7040.5, "deser_std_ns": 1364.4647042677227, "deser_mad_ns": 811.5, "deser_cv": 0.18897484238723278, "deser_min_ns": 4045.0, "deser_max_ns": 10752.0, "deser_p5_ns": 5247.55, "deser_p25_ns": 6253.75, "deser_p50_ns": 7040.5, "deser_p75_ns": 7978.25, "deser_p95_ns": 9640.349999999999, "deser_p99_ns": 10745.49, "deser_ci_low_ns": 6954.4023936170215, "deser_ci_high_ns": 7508.25159574468, "total_mean_ns": 13990.5, "total_median_ns": 13536.0, "total_std_ns": 2948.798956345827, "total_mad_ns": 2343.5, "total_cv": 0.21077152041355396, "total_min_ns": 8373.0, "total_max_ns": 21793.0, "total_p5_ns": 9845.55, "total_p25_ns": 11560.5, "total_p50_ns": 13536.0, "total_p75_ns": 16051.25, "total_p95_ns": 19360.0, "total_p99_ns": 20539.35999999999, "total_ci_low_ns": 13409.727127659575, "total_ci_high_ns": 14598.823936170213, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.999290780141844, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.6256650295247534}, {"serializer": "BinaryPack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.0.3", "avg_time_ser_ns": 3438.222222222222, "avg_time_deser_ns": 2258.133333333333, "avg_time_total_ns": 5696.355555555556, "median_size_bytes": 58.0, "avg_ops_per_sec": 175550.83952312588, "min_ops_per_sec": 108991.82561307903, "max_ops_per_sec": 295770.4821058858, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 3438.222222222222, "ser_median_ns": 3328.5, "ser_std_ns": 882.2866712623176, "ser_mad_ns": 575.0, "ser_cv": 0.25661129916497083, "ser_min_ns": 1672.0, "ser_max_ns": 5641.0, "ser_p5_ns": 2271.4, "ser_p25_ns": 2812.75, "ser_p50_ns": 3328.5, "ser_p75_ns": 3945.0, "ser_p95_ns": 4981.05, "ser_p99_ns": 5487.03, "ser_ci_low_ns": 3264.6625, "ser_ci_high_ns": 3617.5897222222225, "deser_mean_ns": 2258.133333333333, "deser_median_ns": 2163.5, "deser_std_ns": 488.5322939654973, "deser_mad_ns": 308.0, "deser_cv": 0.21634342257565126, "deser_min_ns": 1422.0, "deser_max_ns": 3534.0, "deser_p5_ns": 1554.1, "deser_p25_ns": 1956.0, "deser_p50_ns": 2163.5, "deser_p75_ns": 2585.75, "deser_p95_ns": 3193.0, "deser_p99_ns": 3445.89, "deser_ci_low_ns": 2160.0102777777774, "deser_ci_high_ns": 2360.786111111111, "total_mean_ns": 5696.355555555556, "total_median_ns": 5463.5, "total_std_ns": 1235.8206508828716, "total_mad_ns": 708.0, "total_cv": 0.216949352762504, "total_min_ns": 3381.0, "total_max_ns": 9175.0, "total_p5_ns": 4164.25, "total_p25_ns": 4804.75, "total_p50_ns": 5463.5, "total_p75_ns": 6346.5, "total_p95_ns": 7852.45, "total_p99_ns": 8733.56, "total_ci_low_ns": 5453.271388888888, "total_ci_high_ns": 5972.309166666667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "Utf8Json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.3.7", "avg_time_ser_ns": 10872.193548387097, "avg_time_deser_ns": 10239.559139784946, "avg_time_total_ns": 21111.752688172044, "median_size_bytes": 157.0, "avg_ops_per_sec": 47366.98154674077, "min_ops_per_sec": 34306.49421935572, "max_ops_per_sec": 67640.69264069264, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 10872.193548387097, "ser_median_ns": 10554.0, "ser_std_ns": 2129.0597499021906, "ser_mad_ns": 1245.0, "ser_cv": 0.19582614496575435, "ser_min_ns": 6597.0, "ser_max_ns": 16288.0, "ser_p5_ns": 7844.4, "ser_p25_ns": 9447.0, "ser_p50_ns": 10554.0, "ser_p75_ns": 11868.0, "ser_p95_ns": 14593.4, "ser_p99_ns": 16184.039999999999, "ser_ci_low_ns": 10423.758064516129, "ser_ci_high_ns": 11302.683333333332, "deser_mean_ns": 10239.559139784946, "deser_median_ns": 10097.0, "deser_std_ns": 1332.606097108754, "deser_mad_ns": 843.0, "deser_cv": 0.13014291718195417, "deser_min_ns": 8185.0, "deser_max_ns": 14073.0, "deser_p5_ns": 8324.2, "deser_p25_ns": 9363.0, "deser_p50_ns": 10097.0, "deser_p75_ns": 11244.0, "deser_p95_ns": 12657.199999999997, "deser_p99_ns": 13382.079999999998, "deser_ci_low_ns": 9968.31935483871, "deser_ci_high_ns": 10513.700806451614, "total_mean_ns": 21111.752688172044, "total_median_ns": 20678.0, "total_std_ns": 3346.9166948230254, "total_mad_ns": 2075.0, "total_cv": 0.15853334132216085, "total_min_ns": 14784.0, "total_max_ns": 29149.0, "total_p5_ns": 16428.0, "total_p25_ns": 18814.0, "total_p50_ns": 20678.0, "total_p75_ns": 22891.0, "total_p95_ns": 27202.6, "total_p99_ns": 29140.72, "total_ci_low_ns": 20458.81317204301, "total_ci_high_ns": 21805.415322580648, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.047092498613708}, {"serializer": "Jil", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "2.17.0", "avg_time_ser_ns": 10650.771739130434, "avg_time_deser_ns": 8359.45652173913, "avg_time_total_ns": 19010.228260869564, "median_size_bytes": 157.0, "avg_ops_per_sec": 52603.26105912092, "min_ops_per_sec": 37745.81965047371, "max_ops_per_sec": 78889.23950773115, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 10650.771739130434, "ser_median_ns": 10512.0, "ser_std_ns": 1945.9665589170118, "ser_mad_ns": 1361.0, "ser_cv": 0.18270662507653057, "ser_min_ns": 6560.0, "ser_max_ns": 16796.0, "ser_p5_ns": 7761.5, "ser_p25_ns": 9263.5, "ser_p50_ns": 10512.0, "ser_p75_ns": 11960.5, "ser_p95_ns": 13676.85, "ser_p99_ns": 14530.100000000008, "ser_ci_low_ns": 10271.84972826087, "ser_ci_high_ns": 11043.982065217391, "deser_mean_ns": 8359.45652173913, "deser_median_ns": 8209.5, "deser_std_ns": 1050.5647817846504, "deser_mad_ns": 674.0, "deser_cv": 0.12567381372851347, "deser_min_ns": 6116.0, "deser_max_ns": 11105.0, "deser_p5_ns": 6956.8, "deser_p25_ns": 7605.0, "deser_p50_ns": 8209.5, "deser_p75_ns": 8997.0, "deser_p95_ns": 10249.95, "deser_p99_ns": 10783.77, "deser_ci_low_ns": 8151.045923913043, "deser_ci_high_ns": 8580.573913043478, "total_mean_ns": 19010.228260869564, "total_median_ns": 18518.5, "total_std_ns": 2859.727894161103, "total_mad_ns": 2133.0, "total_cv": 0.15043101297460662, "total_min_ns": 12676.0, "total_max_ns": 26493.0, "total_p5_ns": 15226.0, "total_p25_ns": 17012.75, "total_p50_ns": 18518.5, "total_p75_ns": 21261.0, "total_p95_ns": 23853.0, "total_p99_ns": 24930.530000000006, "total_ci_low_ns": 18430.875815217394, "total_ci_high_ns": 19605.254076086956, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.995867120106566}, {"serializer": "MS Bond Fast", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 7650.209302325581, "avg_time_deser_ns": 5622.03488372093, "avg_time_total_ns": 13272.244186046511, "median_size_bytes": 72.0, "avg_ops_per_sec": 75345.20808857091, "min_ops_per_sec": 55853.44057193923, "max_ops_per_sec": 89686.09865470852, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 7650.209302325581, "ser_median_ns": 7349.0, "ser_std_ns": 1079.3291284135066, "ser_mad_ns": 536.5, "ser_cv": 0.1410849149036226, "ser_min_ns": 6201.0, "ser_max_ns": 10420.0, "ser_p5_ns": 6387.5, "ser_p25_ns": 6875.5, "ser_p50_ns": 7349.0, "ser_p75_ns": 8097.25, "ser_p95_ns": 10102.0, "ser_p99_ns": 10414.05, "ser_ci_low_ns": 7430.7302325581395, "ser_ci_high_ns": 7868.263081395349, "deser_mean_ns": 5622.03488372093, "deser_median_ns": 5559.0, "deser_std_ns": 660.261988067204, "deser_mad_ns": 502.0, "deser_cv": 0.11744181630374574, "deser_min_ns": 4692.0, "deser_max_ns": 7726.0, "deser_p5_ns": 4811.25, "deser_p25_ns": 5057.0, "deser_p50_ns": 5559.0, "deser_p75_ns": 6047.5, "deser_p95_ns": 6673.25, "deser_p99_ns": 7326.500000000003, "deser_ci_low_ns": 5488.998255813954, "deser_ci_high_ns": 5763.351744186047, "total_mean_ns": 13272.244186046511, "total_median_ns": 12820.5, "total_std_ns": 1646.1666410967991, "total_mad_ns": 944.5, "total_cv": 0.12403076812190218, "total_min_ns": 11150.0, "total_max_ns": 17904.0, "total_p5_ns": 11399.75, "total_p25_ns": 12018.25, "total_p50_ns": 12820.5, "total_p75_ns": 14051.25, "total_p95_ns": 16870.75, "total_p99_ns": 17704.25, "total_ci_low_ns": 12940.008139534884, "total_ci_high_ns": 13621.69738372093, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.199150512859883}, {"serializer": "ExtendedXmlSerializer", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "3.10.0.0", "avg_time_ser_ns": 53271.04210526316, "avg_time_deser_ns": 61666.03157894737, "avg_time_total_ns": 114937.07368421053, "median_size_bytes": 514.0, "avg_ops_per_sec": 8700.412912438494, "min_ops_per_sec": 5740.462222018117, "max_ops_per_sec": 11610.89566449156, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 53271.04210526316, "ser_median_ns": 51242.0, "ser_std_ns": 11303.135867758858, "ser_mad_ns": 8232.0, "ser_cv": 0.2121816172738643, "ser_min_ns": 37374.0, "ser_max_ns": 86122.0, "ser_p5_ns": 39544.0, "ser_p25_ns": 43446.0, "ser_p50_ns": 51242.0, "ser_p75_ns": 61047.0, "ser_p95_ns": 72900.5, "ser_p99_ns": 78652.76000000002, "ser_ci_low_ns": 51056.86473684211, "ser_ci_high_ns": 55685.32421052632, "deser_mean_ns": 61666.03157894737, "deser_median_ns": 60392.0, "deser_std_ns": 10503.458437989204, "deser_mad_ns": 7940.0, "deser_cv": 0.1703281072099191, "deser_min_ns": 46444.0, "deser_max_ns": 88577.0, "deser_p5_ns": 48230.4, "deser_p25_ns": 52633.0, "deser_p50_ns": 60392.0, "deser_p75_ns": 68415.5, "deser_p95_ns": 81241.9, "deser_p99_ns": 88109.82, "deser_ci_low_ns": 59570.40605263158, "deser_ci_high_ns": 63930.715, "total_mean_ns": 114937.07368421053, "total_median_ns": 112363.0, "total_std_ns": 21214.54540120102, "total_mad_ns": 16996.0, "total_cv": 0.18457530474012204, "total_min_ns": 86126.0, "total_max_ns": 174202.0, "total_p5_ns": 88425.8, "total_p25_ns": 97178.0, "total_p50_ns": 112363.0, "total_p75_ns": 130833.5, "total_p95_ns": 154440.9, "total_p99_ns": 160887.84000000003, "total_ci_low_ns": 110586.61394736842, "total_ci_high_ns": 118853.39105263157, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.143809576521093}, {"serializer": "Json.Net (Helper)", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 22619.572916666668, "avg_time_deser_ns": 21957.6875, "avg_time_total_ns": 44577.260416666664, "median_size_bytes": 167.0, "avg_ops_per_sec": 22432.962246960276, "min_ops_per_sec": 15500.751786461644, "max_ops_per_sec": 34665.649807605645, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 22619.572916666668, "ser_median_ns": 21536.5, "ser_std_ns": 4834.158840986749, "ser_mad_ns": 3377.5, "ser_cv": 0.21371574338721575, "ser_min_ns": 14717.0, "ser_max_ns": 34347.0, "ser_p5_ns": 16855.25, "ser_p25_ns": 18533.75, "ser_p50_ns": 21536.5, "ser_p75_ns": 25886.75, "ser_p95_ns": 32395.75, "ser_p99_ns": 32825.1, "ser_ci_low_ns": 21674.057552083334, "ser_ci_high_ns": 23626.616145833334, "deser_mean_ns": 21957.6875, "deser_median_ns": 21662.5, "deser_std_ns": 3901.416345548856, "deser_mad_ns": 2331.0, "deser_cv": 0.17767883551256736, "deser_min_ns": 14044.0, "deser_max_ns": 31069.0, "deser_p5_ns": 15369.0, "deser_p25_ns": 19673.75, "deser_p50_ns": 21662.5, "deser_p75_ns": 24477.75, "deser_p95_ns": 29735.0, "deser_p99_ns": 30933.149999999998, "deser_ci_low_ns": 21180.402604166666, "deser_ci_high_ns": 22731.609895833335, "total_mean_ns": 44577.260416666664, "total_median_ns": 42744.5, "total_std_ns": 8148.5064504837055, "total_mad_ns": 4632.0, "total_cv": 0.18279513757281327, "total_min_ns": 28847.0, "total_max_ns": 64513.0, "total_p5_ns": 34195.25, "total_p25_ns": 39342.25, "total_p50_ns": 42744.5, "total_p75_ns": 49785.0, "total_p95_ns": 60323.5, "total_p99_ns": 63833.75, "total_ci_low_ns": 42974.19296875, "total_ci_high_ns": 46184.978125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.54334261489814}, {"serializer": "System.Text.Json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "8.0.0.0", "avg_time_ser_ns": 26501.659340659342, "avg_time_deser_ns": 18574.9010989011, "avg_time_total_ns": 45076.56043956044, "median_size_bytes": 157.0, "avg_ops_per_sec": 22184.47881223813, "min_ops_per_sec": 14231.026483940286, "max_ops_per_sec": 33998.57205997348, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 26501.659340659342, "ser_median_ns": 25458.0, "ser_std_ns": 6572.527959823509, "ser_mad_ns": 4012.0, "ser_cv": 0.24800439381317582, "ser_min_ns": 16550.0, "ser_max_ns": 44166.0, "ser_p5_ns": 17637.0, "ser_p25_ns": 21437.5, "ser_p50_ns": 25458.0, "ser_p75_ns": 29383.5, "ser_p95_ns": 39437.0, "ser_p99_ns": 43806.899999999994, "ser_ci_low_ns": 25212.277747252745, "ser_ci_high_ns": 27803.25631868132, "deser_mean_ns": 18574.9010989011, "deser_median_ns": 18313.0, "deser_std_ns": 3626.2283897397215, "deser_mad_ns": 2237.0, "deser_cv": 0.1952219487162842, "deser_min_ns": 12863.0, "deser_max_ns": 28161.0, "deser_p5_ns": 13379.5, "deser_p25_ns": 15959.0, "deser_p50_ns": 18313.0, "deser_p75_ns": 20204.0, "deser_p95_ns": 25417.5, "deser_p99_ns": 26707.49999999999, "deser_ci_low_ns": 17850.11510989011, "deser_ci_high_ns": 19290.564285714285, "total_mean_ns": 45076.56043956044, "total_median_ns": 44310.0, "total_std_ns": 10033.606036392335, "total_mad_ns": 6449.0, "total_cv": 0.22259032052469035, "total_min_ns": 29413.0, "total_max_ns": 70269.0, "total_p5_ns": 31255.5, "total_p25_ns": 37148.5, "total_p50_ns": 44310.0, "total_p75_ns": 49775.5, "total_p95_ns": 65275.0, "total_p99_ns": 69700.2, "total_ci_low_ns": 42968.79093406594, "total_ci_high_ns": 47129.313736263735, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.471000142738566}, {"serializer": "ServiceStack Json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 18110.305263157894, "avg_time_deser_ns": 17083.64210526316, "avg_time_total_ns": 35193.94736842105, "median_size_bytes": 157.0, "avg_ops_per_sec": 28413.97668558439, "min_ops_per_sec": 20198.347775151993, "max_ops_per_sec": 42480.883602378926, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 18110.305263157894, "ser_median_ns": 17695.0, "ser_std_ns": 2968.8340324454057, "ser_mad_ns": 1935.0, "ser_cv": 0.16393064552506223, "ser_min_ns": 11873.0, "ser_max_ns": 25697.0, "ser_p5_ns": 14071.2, "ser_p25_ns": 16043.5, "ser_p50_ns": 17695.0, "ser_p75_ns": 19990.0, "ser_p95_ns": 23540.5, "ser_p99_ns": 25122.66, "ser_ci_low_ns": 17518.85894736842, "ser_ci_high_ns": 18720.201315789476, "deser_mean_ns": 17083.64210526316, "deser_median_ns": 16735.0, "deser_std_ns": 3072.6097643803923, "deser_mad_ns": 2071.0, "deser_cv": 0.17985683295447738, "deser_min_ns": 11667.0, "deser_max_ns": 24055.0, "deser_p5_ns": 12704.0, "deser_p25_ns": 14898.0, "deser_p50_ns": 16735.0, "deser_p75_ns": 19038.0, "deser_p95_ns": 23321.3, "deser_p99_ns": 23826.58, "deser_ci_low_ns": 16492.803684210525, "deser_ci_high_ns": 17688.730263157897, "total_mean_ns": 35193.94736842105, "total_median_ns": 34528.0, "total_std_ns": 5687.950278399142, "total_mad_ns": 3514.0, "total_cv": 0.16161728659919647, "total_min_ns": 23540.0, "total_max_ns": 49509.0, "total_p5_ns": 26881.7, "total_p25_ns": 31350.0, "total_p50_ns": 34528.0, "total_p75_ns": 38239.0, "total_p95_ns": 46093.7, "total_p99_ns": 48924.32, "total_ci_low_ns": 34070.19684210526, "total_ci_high_ns": 36349.89894736842, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.050364633480994}, {"serializer": "Migrant", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "0.13.0.0", "avg_time_ser_ns": 31449.01052631579, "avg_time_deser_ns": 79044.78947368421, "avg_time_total_ns": 110493.8, "median_size_bytes": 1030.0, "avg_ops_per_sec": 9050.281554259152, "min_ops_per_sec": 6794.632240529982, "max_ops_per_sec": 12972.86077525816, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 31449.01052631579, "ser_median_ns": 30836.0, "ser_std_ns": 4279.891029371224, "ser_mad_ns": 2953.0, "ser_cv": 0.13608984695368753, "ser_min_ns": 23655.0, "ser_max_ns": 42333.0, "ser_p5_ns": 26041.2, "ser_p25_ns": 28154.0, "ser_p50_ns": 30836.0, "ser_p75_ns": 34160.5, "ser_p95_ns": 39214.799999999996, "ser_p99_ns": 41678.76, "ser_ci_low_ns": 30605.663157894738, "ser_ci_high_ns": 32313.267631578947, "deser_mean_ns": 79044.78947368421, "deser_median_ns": 76201.0, "deser_std_ns": 12388.203235417785, "deser_mad_ns": 7606.0, "deser_cv": 0.15672384375876028, "deser_min_ns": 53429.0, "deser_max_ns": 108899.0, "deser_p5_ns": 62512.4, "deser_p25_ns": 69606.0, "deser_p50_ns": 76201.0, "deser_p75_ns": 87199.5, "deser_p95_ns": 101554.3, "deser_p99_ns": 105085.42000000001, "deser_ci_low_ns": 76607.22894736842, "deser_ci_high_ns": 81549.36763157895, "total_mean_ns": 110493.8, "total_median_ns": 107052.0, "total_std_ns": 16227.33497515056, "total_mad_ns": 9830.0, "total_cv": 0.14686195040038952, "total_min_ns": 77084.0, "total_max_ns": 147175.0, "total_p5_ns": 89422.7, "total_p25_ns": 97722.0, "total_p50_ns": 107052.0, "total_p75_ns": 120221.5, "total_p95_ns": 139128.8, "total_p99_ns": 146311.14, "total_ci_low_ns": 107331.19, "total_ci_high_ns": 113654.09578947368, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.949318061029544}, {"serializer": "MS DataContract Json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 20298.817204301075, "avg_time_deser_ns": 34417.1935483871, "avg_time_total_ns": 54716.01075268817, "median_size_bytes": 157.0, "avg_ops_per_sec": 18276.186188352018, "min_ops_per_sec": 11669.836972377496, "max_ops_per_sec": 28864.19396738346, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 20298.817204301075, "ser_median_ns": 20262.0, "ser_std_ns": 4925.33497635095, "ser_mad_ns": 3501.0, "ser_cv": 0.24264147643574674, "ser_min_ns": 11806.0, "ser_max_ns": 33307.0, "ser_p5_ns": 13958.0, "ser_p25_ns": 16514.0, "ser_p50_ns": 20262.0, "ser_p75_ns": 23369.0, "ser_p95_ns": 30056.399999999998, "ser_p99_ns": 32410.92, "ser_ci_low_ns": 19335.741666666665, "ser_ci_high_ns": 21325.570430107524, "deser_mean_ns": 34417.1935483871, "deser_median_ns": 33323.0, "deser_std_ns": 7072.0321310166455, "deser_mad_ns": 5037.0, "deser_cv": 0.20547962811302678, "deser_min_ns": 22679.0, "deser_max_ns": 53358.0, "deser_p5_ns": 23979.6, "deser_p25_ns": 29203.0, "deser_p50_ns": 33323.0, "deser_p75_ns": 39585.0, "deser_p95_ns": 46846.8, "deser_p99_ns": 50357.88, "deser_ci_low_ns": 33077.4309139785, "deser_ci_high_ns": 35950.573387096774, "total_mean_ns": 54716.01075268817, "total_median_ns": 53552.0, "total_std_ns": 11864.073120591962, "total_mad_ns": 8913.0, "total_cv": 0.21683000930416124, "total_min_ns": 34645.0, "total_max_ns": 85691.0, "total_p5_ns": 38365.2, "total_p25_ns": 46077.0, "total_p50_ns": 53552.0, "total_p75_ns": 63523.0, "total_p95_ns": 76957.59999999999, "total_p99_ns": 83586.95999999999, "total_ci_low_ns": 52387.11586021505, "total_ci_high_ns": 57132.468817204295, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.741278293519368}, {"serializer": "NetSerializer", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "4.1.2", "avg_time_ser_ns": 3530.896907216495, "avg_time_deser_ns": 2663.092783505155, "avg_time_total_ns": 6193.98969072165, "median_size_bytes": 48.0, "avg_ops_per_sec": 161446.8298999529, "min_ops_per_sec": 114337.98307797851, "max_ops_per_sec": 229673.86311437757, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 3530.896907216495, "ser_median_ns": 3395.0, "ser_std_ns": 578.733971781942, "ser_mad_ns": 408.0, "ser_cv": 0.16390565541551713, "ser_min_ns": 2540.0, "ser_max_ns": 5226.0, "ser_p5_ns": 2753.4, "ser_p25_ns": 3119.0, "ser_p50_ns": 3395.0, "ser_p75_ns": 3955.0, "ser_p95_ns": 4468.4, "ser_p99_ns": 5110.799999999999, "ser_ci_low_ns": 3417.0237113402063, "ser_ci_high_ns": 3645.2110824742267, "deser_mean_ns": 2663.092783505155, "deser_median_ns": 2540.0, "deser_std_ns": 486.8357671928112, "deser_mad_ns": 276.0, "deser_cv": 0.18280841366407047, "deser_min_ns": 1671.0, "deser_max_ns": 3923.0, "deser_p5_ns": 2116.8, "deser_p25_ns": 2308.0, "deser_p50_ns": 2540.0, "deser_p75_ns": 2970.0, "deser_p95_ns": 3726.3999999999987, "deser_p99_ns": 3874.9999999999995, "deser_ci_low_ns": 2572.0092783505156, "deser_ci_high_ns": 2760.9252577319585, "total_mean_ns": 6193.98969072165, "total_median_ns": 5945.0, "total_std_ns": 991.4158908564114, "total_mad_ns": 677.0, "total_cv": 0.1600609526912053, "total_min_ns": 4354.0, "total_max_ns": 8746.0, "total_p5_ns": 5019.0, "total_p25_ns": 5431.0, "total_p50_ns": 5945.0, "total_p75_ns": 6963.0, "total_p95_ns": 8080.799999999999, "total_p99_ns": 8364.879999999997, "total_ci_low_ns": 5995.846391752578, "total_ci_high_ns": 6390.683762886598, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.28969072164948456, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.44421900087832394}, {"serializer": "ProtoBuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "2.4.9.1", "avg_time_ser_ns": 7705.945652173913, "avg_time_deser_ns": 7256.967391304348, "avg_time_total_ns": 14962.91304347826, "median_size_bytes": 50.0, "avg_ops_per_sec": 66831.90613313497, "min_ops_per_sec": 46131.84481247405, "max_ops_per_sec": 104942.806170637, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 7705.945652173913, "ser_median_ns": 7476.0, "ser_std_ns": 1434.908653248597, "ser_mad_ns": 1011.5, "ser_cv": 0.18620799029951593, "ser_min_ns": 4421.0, "ser_max_ns": 11561.0, "ser_p5_ns": 5977.3, "ser_p25_ns": 6621.75, "ser_p50_ns": 7476.0, "ser_p75_ns": 8550.75, "ser_p95_ns": 10491.45, "ser_p99_ns": 11540.98, "ser_ci_low_ns": 7414.817119565218, "ser_ci_high_ns": 8004.629347826087, "deser_mean_ns": 7256.967391304348, "deser_median_ns": 6999.5, "deser_std_ns": 1151.252203597294, "deser_mad_ns": 691.5, "deser_cv": 0.1586409503474937, "deser_min_ns": 5075.0, "deser_max_ns": 10292.0, "deser_p5_ns": 5693.65, "deser_p25_ns": 6439.5, "deser_p50_ns": 6999.5, "deser_p75_ns": 7911.25, "deser_p95_ns": 9619.300000000001, "deser_p99_ns": 10131.84, "deser_ci_low_ns": 7030.5766304347835, "deser_ci_high_ns": 7488.617934782609, "total_mean_ns": 14962.91304347826, "total_median_ns": 14625.0, "total_std_ns": 2487.8517925724636, "total_mad_ns": 1717.5, "total_cv": 0.16626787747435445, "total_min_ns": 9529.0, "total_max_ns": 21677.0, "total_p5_ns": 11783.05, "total_p25_ns": 12980.5, "total_p50_ns": 14625.0, "total_p75_ns": 16533.75, "total_p95_ns": 19541.850000000002, "total_p99_ns": 21520.48, "total_ci_low_ns": 14472.814945652173, "total_ci_high_ns": 15487.346195652175, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.682201083309134}, {"serializer": "SharpSerializer", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 38285.510416666664, "avg_time_deser_ns": 57403.71875, "avg_time_total_ns": 95689.22916666667, "median_size_bytes": 518.0, "avg_ops_per_sec": 10450.49697556086, "min_ops_per_sec": 7430.52459503641, "max_ops_per_sec": 14970.28398628722, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 38285.510416666664, "ser_median_ns": 36434.5, "ser_std_ns": 5839.396798326981, "ser_mad_ns": 3644.0, "ser_cv": 0.1525223703373938, "ser_min_ns": 26666.0, "ser_max_ns": 53062.0, "ser_p5_ns": 31233.0, "ser_p25_ns": 33902.25, "ser_p50_ns": 36434.5, "ser_p75_ns": 42765.5, "ser_p95_ns": 49668.0, "ser_p99_ns": 52162.35, "ser_ci_low_ns": 37142.476822916666, "ser_ci_high_ns": 39443.59947916666, "deser_mean_ns": 57403.71875, "deser_median_ns": 54782.0, "deser_std_ns": 8743.450233960848, "deser_mad_ns": 5590.0, "deser_cv": 0.15231504899603474, "deser_min_ns": 40133.0, "deser_max_ns": 84423.0, "deser_p5_ns": 47415.75, "deser_p25_ns": 50319.75, "deser_p50_ns": 54782.0, "deser_p75_ns": 64671.25, "deser_p95_ns": 72330.5, "deser_p99_ns": 78510.19999999998, "deser_ci_low_ns": 55728.63723958334, "deser_ci_high_ns": 59118.320572916666, "total_mean_ns": 95689.22916666667, "total_median_ns": 92154.0, "total_std_ns": 14318.891381284902, "total_mad_ns": 9474.0, "total_cv": 0.14963953107350234, "total_min_ns": 66799.0, "total_max_ns": 134580.0, "total_p5_ns": 79020.25, "total_p25_ns": 84558.75, "total_p50_ns": 92154.0, "total_p75_ns": 108280.0, "total_p95_ns": 121560.25, "total_p99_ns": 130527.29999999999, "total_ci_low_ns": 92844.39036458333, "total_ci_high_ns": 98518.22135416666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.680794778819683}, {"serializer": "ServiceStack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 336634.42424242425, "avg_time_deser_ns": 376163.0, "avg_time_total_ns": 712797.4242424242, "median_size_bytes": 13454.0, "avg_ops_per_sec": 1402.9231391553085, "min_ops_per_sec": 606.025346404088, "max_ops_per_sec": 4850.69558974757, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 336634.42424242425, "ser_median_ns": 351896.0, "ser_std_ns": 157641.71326920687, "ser_mad_ns": 135835.0, "ser_cv": 0.46828756038236485, "ser_min_ns": 99120.0, "ser_max_ns": 584175.0, "ser_p5_ns": 104205.2, "ser_p25_ns": 143093.5, "ser_p50_ns": 351896.0, "ser_p75_ns": 479097.5, "ser_p95_ns": 556238.9, "ser_p99_ns": 570610.82, "ser_ci_low_ns": 305912.6901515152, "ser_ci_high_ns": 367552.56363636366, "deser_mean_ns": 376163.0, "deser_median_ns": 465713.0, "deser_std_ns": 228994.39177937998, "deser_mad_ns": 184945.0, "deser_cv": 0.608763732157017, "deser_min_ns": 99702.0, "deser_max_ns": 1065921.0, "deser_p5_ns": 106345.0, "deser_p25_ns": 119030.5, "deser_p50_ns": 465713.0, "deser_p75_ns": 589674.5, "deser_p95_ns": 638152.3, "deser_p99_ns": 669755.9999999984, "deser_ci_low_ns": 332262.99242424243, "deser_ci_high_ns": 417671.72853535356, "total_mean_ns": 712797.4242424242, "total_median_ns": 832483.0, "total_std_ns": 379172.80698612414, "total_mad_ns": 307368.0, "total_cv": 0.5319503046593032, "total_min_ns": 206156.0, "total_max_ns": 1650096.0, "total_p5_ns": 211009.5, "total_p25_ns": 265659.0, "total_p50_ns": 832483.0, "total_p75_ns": 1048357.5, "total_p95_ns": 1182044.0999999999, "total_p99_ns": 1225814.7999999982, "total_ci_low_ns": 639678.4537878787, "total_ci_high_ns": 788891.5270202019, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.379038623016431}, {"serializer": "MS Bond Json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 149058.587628866, "avg_time_deser_ns": 200790.76288659795, "avg_time_total_ns": 349849.3505154639, "median_size_bytes": 13961.0, "avg_ops_per_sec": 2858.373178416972, "min_ops_per_sec": 1404.6482620287054, "max_ops_per_sec": 7588.57767288677, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 149058.587628866, "ser_median_ns": 105976.0, "ser_std_ns": 100023.91770666992, "ser_mad_ns": 54717.0, "ser_cv": 0.6710376053992595, "ser_min_ns": 47632.0, "ser_max_ns": 326441.0, "ser_p5_ns": 50328.2, "ser_p25_ns": 54118.0, "ser_p50_ns": 105976.0, "ser_p75_ns": 260830.0, "ser_p95_ns": 289806.8, "ser_p99_ns": 303347.2399999998, "ser_ci_low_ns": 129785.175, "ser_ci_high_ns": 168974.60979381442, "deser_mean_ns": 200790.76288659795, "deser_median_ns": 107578.0, "deser_std_ns": 128281.56012538826, "deser_mad_ns": 22640.0, "deser_cv": 0.6388817806217448, "deser_min_ns": 83165.0, "deser_max_ns": 409545.0, "deser_p5_ns": 85243.6, "deser_p25_ns": 89344.0, "deser_p50_ns": 107578.0, "deser_p75_ns": 349255.0, "deser_p95_ns": 382836.39999999997, "deser_p99_ns": 395208.35999999987, "deser_ci_low_ns": 175525.16597938145, "deser_ci_high_ns": 225405.66572164948, "total_mean_ns": 349849.3505154639, "total_median_ns": 204816.0, "total_std_ns": 227391.6804073536, "total_mad_ns": 68394.0, "total_cv": 0.6499702802715437, "total_min_ns": 131777.0, "total_max_ns": 711922.0, "total_p5_ns": 136223.2, "total_p25_ns": 145987.0, "total_p50_ns": 204816.0, "total_p75_ns": 616138.0, "total_p95_ns": 677883.0, "total_p99_ns": 697443.2799999999, "total_ci_low_ns": 304860.42603092786, "total_ci_high_ns": 395904.1420103092, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.7374083627389727}, {"serializer": "MS Bond Fast", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 40781.183673469386, "avg_time_deser_ns": 52563.102040816324, "avg_time_total_ns": 93344.28571428571, "median_size_bytes": 9132.0, "avg_ops_per_sec": 10713.028573177638, "min_ops_per_sec": 5728.558007378383, "max_ops_per_sec": 23952.669525018562, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 40781.183673469386, "ser_median_ns": 38189.5, "ser_std_ns": 12305.232724288717, "ser_mad_ns": 9843.0, "ser_cv": 0.3017379981614906, "ser_min_ns": 19539.0, "ser_max_ns": 70332.0, "ser_p5_ns": 22021.8, "ser_p25_ns": 30610.25, "ser_p50_ns": 38189.5, "ser_p75_ns": 49963.75, "ser_p95_ns": 61776.35, "ser_p99_ns": 64255.920000000006, "ser_ci_low_ns": 38401.31428571429, "ser_ci_high_ns": 43424.832653061225, "deser_mean_ns": 52563.102040816324, "deser_median_ns": 40167.0, "deser_std_ns": 25763.267453212706, "deser_mad_ns": 14473.5, "deser_cv": 0.4901397834779044, "deser_min_ns": 21656.0, "deser_max_ns": 104232.0, "deser_p5_ns": 22720.9, "deser_p25_ns": 30032.75, "deser_p50_ns": 40167.0, "deser_p75_ns": 81312.5, "deser_p95_ns": 89638.95, "deser_p99_ns": 94971.41000000002, "deser_ci_low_ns": 47635.84515306123, "deser_ci_high_ns": 57875.146428571425, "total_mean_ns": 93344.28571428571, "total_median_ns": 79284.0, "total_std_ns": 37201.354181648465, "total_mad_ns": 26761.0, "total_cv": 0.3985391703089014, "total_min_ns": 41749.0, "total_max_ns": 174564.0, "total_p5_ns": 44852.65, "total_p25_ns": 61024.25, "total_p50_ns": 79284.0, "total_p75_ns": 130155.0, "total_p95_ns": 148066.55, "total_p99_ns": 156982.75000000003, "total_ci_low_ns": 86302.96403061225, "total_ci_high_ns": 100340.00051020407, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.3721859877971807, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.8285537790558827}, {"serializer": "fastJson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "2.4.0.4", "avg_time_ser_ns": 226552.01020408163, "avg_time_deser_ns": 418154.0, "avg_time_total_ns": 644706.0102040817, "median_size_bytes": 16944.0, "avg_ops_per_sec": 1551.0945829145444, "min_ops_per_sec": 950.6480567803071, "max_ops_per_sec": 4074.498123693614, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 226552.01020408163, "ser_median_ns": 246452.5, "ser_std_ns": 107276.01834332701, "ser_mad_ns": 103999.0, "ser_cv": 0.4735160736234081, "ser_min_ns": 82958.0, "ser_max_ns": 528400.0, "ser_p5_ns": 86344.7, "ser_p25_ns": 127075.0, "ser_p50_ns": 246452.5, "ser_p75_ns": 326906.75, "ser_p95_ns": 366695.54999999993, "ser_p99_ns": 412826.4400000001, "ser_ci_low_ns": 206018.22040816327, "ser_ci_high_ns": 248651.34795918368, "deser_mean_ns": 418154.0, "deser_median_ns": 467556.5, "deser_std_ns": 179795.6013722937, "deser_mad_ns": 147679.0, "deser_cv": 0.4299746059401409, "deser_min_ns": 160637.0, "deser_max_ns": 750957.0, "deser_p5_ns": 169177.6, "deser_p25_ns": 234157.75, "deser_p50_ns": 467556.5, "deser_p75_ns": 584494.75, "deser_p95_ns": 650755.85, "deser_p99_ns": 692497.04, "deser_ci_low_ns": 382766.3380102041, "deser_ci_high_ns": 453378.5344387755, "total_mean_ns": 644706.0102040817, "total_median_ns": 739229.5, "total_std_ns": 274878.46426122246, "total_mad_ns": 232620.0, "total_cv": 0.4263624968754513, "total_min_ns": 245429.0, "total_max_ns": 1051914.0, "total_p5_ns": 256205.75, "total_p25_ns": 360672.0, "total_p50_ns": 739229.5, "total_p75_ns": 869722.5, "total_p95_ns": 998546.5499999999, "total_p99_ns": 1017077.42, "total_ci_low_ns": 590960.3030612245, "total_ci_high_ns": 697489.6655612245, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.9384246938282375}, {"serializer": "YamlDotNet", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "17.1.0", "avg_time_ser_ns": 6347138.888888889, "avg_time_deser_ns": 5646607.545454546, "avg_time_total_ns": 11993746.434343435, "median_size_bytes": 15652.0, "avg_ops_per_sec": 83.37678351582912, "min_ops_per_sec": 39.93288719246885, "max_ops_per_sec": 277.10226403633806, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 6347138.888888889, "ser_median_ns": 4711060.0, "ser_std_ns": 4587500.062343822, "ser_mad_ns": 2714466.0, "ser_cv": 0.7227666106967601, "ser_min_ns": 1936010.0, "ser_max_ns": 13638761.0, "ser_p5_ns": 1965521.2, "ser_p25_ns": 2233104.5, "ser_p50_ns": 4711060.0, "ser_p75_ns": 11287979.5, "ser_p95_ns": 12919311.0, "ser_p99_ns": 13272655.54, "ser_ci_low_ns": 5458485.987626263, "ser_ci_high_ns": 7238689.367929291, "deser_mean_ns": 5646607.545454546, "deser_median_ns": 4773363.0, "deser_std_ns": 3859931.814992888, "deser_mad_ns": 3040331.0, "deser_cv": 0.683584220068577, "deser_min_ns": 1653193.0, "deser_max_ns": 11438319.0, "deser_p5_ns": 1672762.5, "deser_p25_ns": 1884162.5, "deser_p50_ns": 4773363.0, "deser_p75_ns": 9996904.0, "deser_p95_ns": 10884399.1, "deser_p99_ns": 11403956.28, "deser_ci_low_ns": 4885978.715909092, "deser_ci_high_ns": 6432149.423232323, "total_mean_ns": 11993746.434343435, "total_median_ns": 9504338.0, "total_std_ns": 8432217.269524243, "total_mad_ns": 5774712.0, "total_cv": 0.7030511538395585, "total_min_ns": 3608776.0, "total_max_ns": 25042016.0, "total_p5_ns": 3657193.9, "total_p25_ns": 4127094.5, "total_p50_ns": 9504338.0, "total_p75_ns": 21341360.0, "total_p95_ns": 23796627.0, "total_p99_ns": 24353619.9, "total_ci_low_ns": 10435392.757575758, "total_ci_high_ns": 13692659.681818182, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.9821577264288945}, {"serializer": "Jil", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "2.17.0", "avg_time_ser_ns": 116961.1724137931, "avg_time_deser_ns": 287750.4482758621, "avg_time_total_ns": 404711.6206896552, "median_size_bytes": 15456.0, "avg_ops_per_sec": 2470.8951976618173, "min_ops_per_sec": 1753.6322107164465, "max_ops_per_sec": 3647.5849340151885, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 116961.1724137931, "ser_median_ns": 108373.0, "ser_std_ns": 41866.79874376979, "ser_mad_ns": 32978.0, "ser_cv": 0.35795467743475257, "ser_min_ns": 56112.0, "ser_max_ns": 212514.0, "ser_p5_ns": 58608.8, "ser_p25_ns": 81973.5, "ser_p50_ns": 108373.0, "ser_p75_ns": 156419.0, "ser_p95_ns": 183679.80000000002, "ser_p99_ns": 207188.88, "ser_ci_low_ns": 108105.64252873563, "ser_ci_high_ns": 125908.69195402299, "deser_mean_ns": 287750.4482758621, "deser_median_ns": 281117.0, "deser_std_ns": 46077.82198572189, "deser_mad_ns": 38377.0, "deser_cv": 0.16013119097401982, "deser_min_ns": 217521.0, "deser_max_ns": 391353.0, "deser_p5_ns": 225783.3, "deser_p25_ns": 252105.5, "deser_p50_ns": 281117.0, "deser_p75_ns": 322127.0, "deser_p95_ns": 368420.60000000003, "deser_p99_ns": 390572.98, "deser_ci_low_ns": 277506.6606321839, "deser_ci_high_ns": 297331.19137931033, "total_mean_ns": 404711.6206896552, "total_median_ns": 401606.0, "total_std_ns": 82739.1226991734, "total_mad_ns": 74914.0, "total_cv": 0.20443970093613942, "total_min_ns": 274154.0, "total_max_ns": 570245.0, "total_p5_ns": 285483.5, "total_p25_ns": 340128.0, "total_p50_ns": 401606.0, "total_p75_ns": 484149.0, "total_p95_ns": 537301.1, "total_p99_ns": 562470.6, "total_ci_low_ns": 387572.508908046, "total_ci_high_ns": 422047.257183908, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.692645252730764}, {"serializer": "MemoryPack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 34483.795918367345, "avg_time_deser_ns": 53467.4081632653, "avg_time_total_ns": 87951.20408163265, "median_size_bytes": 8348.0, "avg_ops_per_sec": 11369.940985365494, "min_ops_per_sec": 6329.83504449874, "max_ops_per_sec": 31473.263462688446, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 34483.795918367345, "ser_median_ns": 38207.0, "ser_std_ns": 11092.548206363525, "ser_mad_ns": 6774.0, "ser_cv": 0.32167422149877717, "ser_min_ns": 14830.0, "ser_max_ns": 55117.0, "ser_p5_ns": 15930.9, "ser_p25_ns": 24084.75, "ser_p50_ns": 38207.0, "ser_p75_ns": 41941.5, "ser_p95_ns": 50772.04999999999, "ser_p99_ns": 52785.12, "ser_ci_low_ns": 32257.311479591837, "ser_ci_high_ns": 36536.69209183673, "deser_mean_ns": 53467.4081632653, "deser_median_ns": 50526.0, "deser_std_ns": 26509.702418282857, "deser_mad_ns": 25362.5, "deser_cv": 0.49581050080703754, "deser_min_ns": 16892.0, "deser_max_ns": 108610.0, "deser_p5_ns": 17669.45, "deser_p25_ns": 28960.75, "deser_p50_ns": 50526.0, "deser_p75_ns": 78929.5, "deser_p95_ns": 92354.09999999999, "deser_p99_ns": 105987.12000000001, "deser_ci_low_ns": 48229.28928571429, "deser_ci_high_ns": 58465.214795918364, "total_mean_ns": 87951.20408163265, "total_median_ns": 90582.0, "total_std_ns": 36180.3258794255, "total_mad_ns": 32040.0, "total_cv": 0.41136817008035986, "total_min_ns": 31773.0, "total_max_ns": 157982.0, "total_p5_ns": 33927.55, "total_p25_ns": 53793.0, "total_p50_ns": 90582.0, "total_p75_ns": 118232.75, "total_p95_ns": 141395.84999999998, "total_p99_ns": 157730.77, "total_ci_low_ns": 80847.60612244898, "total_ci_high_ns": 95169.33137755102, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.3011782032400589, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.6646125006706735}, {"serializer": "System.Text.Json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "8.0.0.0", "avg_time_ser_ns": 146238.0303030303, "avg_time_deser_ns": 259063.0606060606, "avg_time_total_ns": 405301.0909090909, "median_size_bytes": 20608.0, "avg_ops_per_sec": 2467.3015257792636, "min_ops_per_sec": 1372.5799699404986, "max_ops_per_sec": 7768.076313581704, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 146238.0303030303, "ser_median_ns": 165598.0, "ser_std_ns": 50684.78116218177, "ser_mad_ns": 19840.0, "ser_cv": 0.34659097265707284, "ser_min_ns": 50163.0, "ser_max_ns": 242438.0, "ser_p5_ns": 53679.0, "ser_p25_ns": 106031.0, "ser_p50_ns": 165598.0, "ser_p75_ns": 179910.5, "ser_p95_ns": 197847.19999999998, "ser_p99_ns": 213003.69999999987, "ser_ci_low_ns": 136124.1967171717, "ser_ci_high_ns": 155822.2292929293, "deser_mean_ns": 259063.0606060606, "deser_median_ns": 267632.0, "deser_std_ns": 131804.50647097584, "deser_mad_ns": 98217.0, "deser_cv": 0.5087738335316044, "deser_min_ns": 77930.0, "deser_max_ns": 539961.0, "deser_p5_ns": 82781.8, "deser_p25_ns": 129363.5, "deser_p50_ns": 267632.0, "deser_p75_ns": 355428.5, "deser_p95_ns": 519574.1, "deser_p99_ns": 539861.04, "deser_ci_low_ns": 233304.5570707071, "deser_ci_high_ns": 283469.1214646465, "total_mean_ns": 405301.0909090909, "total_median_ns": 452690.0, "total_std_ns": 174383.93519028876, "total_mad_ns": 101890.0, "total_cv": 0.43025774936639166, "total_min_ns": 128732.0, "total_max_ns": 728555.0, "total_p5_ns": 137504.9, "total_p25_ns": 240114.5, "total_p50_ns": 452690.0, "total_p75_ns": 534049.0, "total_p95_ns": 693649.7999999999, "total_p99_ns": 725722.8, "total_ci_low_ns": 372692.2851010101, "total_ci_high_ns": 438683.157070707, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.6903348441293926}, {"serializer": "Ceras", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "4.1.7", "avg_time_ser_ns": 48463.552083333336, "avg_time_deser_ns": 83871.75, "avg_time_total_ns": 132335.30208333334, "median_size_bytes": 6276.0, "avg_ops_per_sec": 7556.562642448092, "min_ops_per_sec": 4401.56343533223, "max_ops_per_sec": 13813.490254582626, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 48463.552083333336, "ser_median_ns": 49422.0, "ser_std_ns": 11658.382606853538, "ser_mad_ns": 8776.0, "ser_cv": 0.24055980434135094, "ser_min_ns": 26315.0, "ser_max_ns": 73899.0, "ser_p5_ns": 31640.5, "ser_p25_ns": 39069.75, "ser_p50_ns": 49422.0, "ser_p75_ns": 56301.0, "ser_p95_ns": 66884.25, "ser_p99_ns": 71980.95, "ser_ci_low_ns": 46125.415364583336, "ser_ci_high_ns": 50814.72890625, "deser_mean_ns": 83871.75, "deser_median_ns": 79611.0, "deser_std_ns": 24508.606079025427, "deser_mad_ns": 18526.5, "deser_cv": 0.29221527008826487, "deser_min_ns": 42736.0, "deser_max_ns": 160872.0, "deser_p5_ns": 50066.75, "deser_p25_ns": 63458.0, "deser_p50_ns": 79611.0, "deser_p75_ns": 105215.75, "deser_p95_ns": 122374.25, "deser_p99_ns": 130610.69999999991, "deser_ci_low_ns": 79192.52265625, "deser_ci_high_ns": 88770.47552083334, "total_mean_ns": 132335.30208333334, "total_median_ns": 132861.5, "total_std_ns": 34691.55414343284, "total_mad_ns": 29003.0, "total_cv": 0.2621489020487299, "total_min_ns": 72393.0, "total_max_ns": 227192.0, "total_p5_ns": 83283.25, "total_p25_ns": 103412.5, "total_p50_ns": 132861.5, "total_p75_ns": 161264.75, "total_p95_ns": 183763.0, "total_p99_ns": 197142.5499999999, "total_ci_low_ns": 125616.57135416666, "total_ci_high_ns": 139428.98046875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.896692439862543, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.232809306637944}, {"serializer": "CsvHelper", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "33.1.0", "avg_time_ser_ns": 2969017.515151515, "avg_time_deser_ns": 1294440.393939394, "avg_time_total_ns": 4263457.909090909, "median_size_bytes": 7206.0, "avg_ops_per_sec": 234.5513949762972, "min_ops_per_sec": 185.32009134797943, "max_ops_per_sec": 301.0863798758681, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 2969017.515151515, "ser_median_ns": 2940613.0, "ser_std_ns": 415053.694728382, "ser_mad_ns": 395541.0, "ser_cv": 0.13979496335413197, "ser_min_ns": 2292566.0, "ser_max_ns": 3706260.0, "ser_p5_ns": 2385863.0, "ser_p25_ns": 2580686.0, "ser_p50_ns": 2940613.0, "ser_p75_ns": 3365164.0, "ser_p95_ns": 3573833.3, "ser_p99_ns": 3688971.82, "ser_ci_low_ns": 2890072.0636363635, "ser_ci_high_ns": 3051969.6962121213, "deser_mean_ns": 1294440.393939394, "deser_median_ns": 1315865.0, "deser_std_ns": 185328.49950075237, "deser_mad_ns": 152349.0, "deser_cv": 0.14317267938212186, "deser_min_ns": 996832.0, "deser_max_ns": 1707450.0, "deser_p5_ns": 1022511.7, "deser_p25_ns": 1105719.0, "deser_p50_ns": 1315865.0, "deser_p75_ns": 1452248.0, "deser_p95_ns": 1551955.5999999999, "deser_p99_ns": 1640862.9199999997, "deser_ci_low_ns": 1256991.5795454546, "deser_ci_high_ns": 1331015.2308080809, "total_mean_ns": 4263457.909090909, "total_median_ns": 4248055.0, "total_std_ns": 588560.7272122513, "total_mad_ns": 588337.0, "total_cv": 0.13804773959589745, "total_min_ns": 3321306.0, "total_max_ns": 5396069.0, "total_p5_ns": 3419405.9, "total_p25_ns": 3680566.0, "total_p50_ns": 4248055.0, "total_p75_ns": 4843064.0, "total_p95_ns": 5067453.5, "total_p99_ns": 5197070.199999999, "total_ci_low_ns": 4156141.511868687, "total_ci_high_ns": 4378411.447727273, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.983926895032168}, {"serializer": "Json.Net", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 325244.1919191919, "avg_time_deser_ns": 520752.6666666667, "avg_time_total_ns": 845996.8585858586, "median_size_bytes": 16769.0, "avg_ops_per_sec": 1182.0374861338944, "min_ops_per_sec": 529.2565057532828, "max_ops_per_sec": 4645.1780729014245, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 325244.1919191919, "ser_median_ns": 218090.0, "ser_std_ns": 213444.6675804866, "ser_mad_ns": 121914.0, "ser_cv": 0.6562597361723762, "ser_min_ns": 86688.0, "ser_max_ns": 688178.0, "ser_p5_ns": 96410.9, "ser_p25_ns": 114612.5, "ser_p50_ns": 218090.0, "ser_p75_ns": 537264.0, "ser_p95_ns": 652727.7, "ser_p99_ns": 686910.86, "ser_ci_low_ns": 285986.096969697, "ser_ci_high_ns": 367996.0659090909, "deser_mean_ns": 520752.6666666667, "deser_median_ns": 323734.0, "deser_std_ns": 371100.2368995719, "deser_mad_ns": 189379.0, "deser_cv": 0.7126228258704488, "deser_min_ns": 128419.0, "deser_max_ns": 1201265.0, "deser_p5_ns": 135114.6, "deser_p25_ns": 145861.5, "deser_p50_ns": 323734.0, "deser_p75_ns": 893046.0, "deser_p95_ns": 1010846.5, "deser_p99_ns": 1097838.7399999995, "deser_ci_low_ns": 452186.2371212122, "deser_ci_high_ns": 596459.7815656565, "total_mean_ns": 845996.8585858586, "total_median_ns": 564367.0, "total_std_ns": 576561.5264272165, "total_mad_ns": 332992.0, "total_cv": 0.6815173372995479, "total_min_ns": 215277.0, "total_max_ns": 1889443.0, "total_p5_ns": 234208.2, "total_p25_ns": 258768.0, "total_p50_ns": 564367.0, "total_p75_ns": 1411727.5, "total_p95_ns": 1642590.7999999998, "total_p99_ns": 1713300.7399999993, "total_ci_low_ns": 736256.619949495, "total_ci_high_ns": 954433.5058080808, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.8894620573373042}, {"serializer": "MS DataContract", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 251225.82474226804, "avg_time_deser_ns": 576069.6907216494, "avg_time_total_ns": 827295.5154639175, "median_size_bytes": 30700.0, "avg_ops_per_sec": 1208.7579121461042, "min_ops_per_sec": 603.1319435565002, "max_ops_per_sec": 3660.5364882277145, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 251225.82474226804, "ser_median_ns": 265714.0, "ser_std_ns": 133160.99814369527, "ser_mad_ns": 108901.0, "ser_cv": 0.530045023358187, "ser_min_ns": 81199.0, "ser_max_ns": 506653.0, "ser_p5_ns": 82437.0, "ser_p25_ns": 95264.0, "ser_p50_ns": 265714.0, "ser_p75_ns": 342632.0, "ser_p95_ns": 485861.39999999997, "ser_p99_ns": 505032.51999999996, "ser_ci_low_ns": 225725.0907216495, "ser_ci_high_ns": 278796.043814433, "deser_mean_ns": 576069.6907216494, "deser_median_ns": 509194.0, "deser_std_ns": 341589.4934428287, "deser_mad_ns": 295345.0, "deser_cv": 0.5929655716045665, "deser_min_ns": 191035.0, "deser_max_ns": 1220922.0, "deser_p5_ns": 198740.4, "deser_p25_ns": 239921.0, "deser_p50_ns": 509194.0, "deser_p75_ns": 887531.0, "deser_p95_ns": 1123362.7999999998, "deser_p99_ns": 1177313.9999999995, "deser_ci_low_ns": 512305.56520618557, "deser_ci_high_ns": 650791.1512886598, "total_mean_ns": 827295.5154639175, "total_median_ns": 801647.0, "total_std_ns": 469452.8151150886, "total_mad_ns": 453751.0, "total_cv": 0.5674548046496256, "total_min_ns": 273184.0, "total_max_ns": 1658012.0, "total_p5_ns": 280605.8, "total_p25_ns": 336147.0, "total_p50_ns": 801647.0, "total_p75_ns": 1217779.0, "total_p95_ns": 1593981.4, "total_p99_ns": 1632809.1199999999, "total_ci_low_ns": 732375.9177835052, "total_ci_high_ns": 915623.3146907215, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.275520744886535}, {"serializer": "GroBuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.9.2", "avg_time_ser_ns": 17751.393258426968, "avg_time_deser_ns": 59825.77528089887, "avg_time_total_ns": 77577.16853932584, "median_size_bytes": 20040.0, "avg_ops_per_sec": 12890.390546969687, "min_ops_per_sec": 7234.476621788796, "max_ops_per_sec": 24261.833709391754, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 17751.393258426968, "ser_median_ns": 17718.0, "ser_std_ns": 3446.6164060435535, "ser_mad_ns": 2619.0, "ser_cv": 0.19416033186056372, "ser_min_ns": 12827.0, "ser_max_ns": 28972.0, "ser_p5_ns": 13569.8, "ser_p25_ns": 14727.0, "ser_p50_ns": 17718.0, "ser_p75_ns": 19724.0, "ser_p95_ns": 23112.6, "ser_p99_ns": 27847.360000000004, "ser_ci_low_ns": 17072.427528089887, "ser_ci_high_ns": 18505.940730337075, "deser_mean_ns": 59825.77528089887, "deser_median_ns": 34345.0, "deser_std_ns": 33065.62267973986, "deser_mad_ns": 5097.0, "deser_cv": 0.5526986073224701, "deser_min_ns": 27553.0, "deser_max_ns": 117615.0, "deser_p5_ns": 29069.8, "deser_p25_ns": 31614.0, "deser_p50_ns": 34345.0, "deser_p75_ns": 94724.0, "deser_p95_ns": 109101.2, "deser_p99_ns": 116720.92, "deser_ci_low_ns": 53092.926123595505, "deser_ci_high_ns": 66270.36432584269, "total_mean_ns": 77577.16853932584, "total_median_ns": 53266.0, "total_std_ns": 35377.18890440689, "total_mad_ns": 10211.0, "total_cv": 0.45602578143172745, "total_min_ns": 41217.0, "total_max_ns": 138227.0, "total_p5_ns": 42560.8, "total_p25_ns": 47225.0, "total_p50_ns": 53266.0, "total_p75_ns": 114501.0, "total_p95_ns": 135458.6, "total_p99_ns": 138047.48, "total_ci_low_ns": 70580.34494382024, "total_ci_high_ns": 84999.51095505619, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.05942314375072397, "effect_vs_fastest_cliffs_label": "negligible", "effect_vs_fastest_hedges_g": 0.32443032972196084}, {"serializer": "NetSerializer", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "4.1.2", "avg_time_ser_ns": 65233.21428571428, "avg_time_deser_ns": 71475.35714285714, "avg_time_total_ns": 136708.57142857142, "median_size_bytes": 5940.0, "avg_ops_per_sec": 7314.830295937135, "min_ops_per_sec": 4114.752209621936, "max_ops_per_sec": 23761.999809904002, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 65233.21428571428, "ser_median_ns": 66777.0, "ser_std_ns": 30592.252657575715, "ser_mad_ns": 27345.5, "ser_cv": 0.46896742698566135, "ser_min_ns": 19480.0, "ser_max_ns": 132749.0, "ser_p5_ns": 23438.95, "ser_p25_ns": 30212.75, "ser_p50_ns": 66777.0, "ser_p75_ns": 91357.25, "ser_p95_ns": 109696.84999999996, "ser_p99_ns": 124407.97000000002, "ser_ci_low_ns": 59291.74515306122, "ser_ci_high_ns": 71275.62295918367, "deser_mean_ns": 71475.35714285714, "deser_median_ns": 71638.5, "deser_std_ns": 35610.02842309754, "deser_mad_ns": 35862.0, "deser_cv": 0.4982140677090161, "deser_min_ns": 22348.0, "deser_max_ns": 130102.0, "deser_p5_ns": 23602.0, "deser_p25_ns": 30145.75, "deser_p50_ns": 71638.5, "deser_p75_ns": 104011.25, "deser_p95_ns": 122121.09999999999, "deser_p99_ns": 128914.72, "deser_ci_low_ns": 64499.99795918368, "deser_ci_high_ns": 78509.01887755102, "total_mean_ns": 136708.57142857142, "total_median_ns": 149334.5, "total_std_ns": 64853.659196337096, "total_mad_ns": 54867.0, "total_cv": 0.47439351109174854, "total_min_ns": 42084.0, "total_max_ns": 243028.0, "total_p5_ns": 48414.75, "total_p25_ns": 60584.75, "total_p50_ns": 149334.5, "total_p75_ns": 196829.25, "total_p95_ns": 224516.44999999998, "total_p99_ns": 233821.73, "total_ci_low_ns": 124243.61301020409, "total_ci_high_ns": 148761.6668367347, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.5857353250578582, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.413120997546434}, {"serializer": "Migrant", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "0.13.0.0", "avg_time_ser_ns": 68912.69387755102, "avg_time_deser_ns": 139022.73469387754, "avg_time_total_ns": 207935.42857142858, "median_size_bytes": 21856.0, "avg_ops_per_sec": 4809.185269053305, "min_ops_per_sec": 2480.8355454116945, "max_ops_per_sec": 9242.571283331023, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 68912.69387755102, "ser_median_ns": 63970.5, "ser_std_ns": 17556.608923565327, "ser_mad_ns": 11504.0, "ser_cv": 0.25476596452260536, "ser_min_ns": 40648.0, "ser_max_ns": 116115.0, "ser_p5_ns": 45865.35, "ser_p25_ns": 56224.0, "ser_p50_ns": 63970.5, "ser_p75_ns": 82369.0, "ser_p95_ns": 99965.94999999998, "ser_p99_ns": 112789.84000000001, "ser_ci_low_ns": 65578.49744897959, "ser_ci_high_ns": 72597.47142857143, "deser_mean_ns": 139022.73469387754, "deser_median_ns": 115201.5, "deser_std_ns": 57826.73342948539, "deser_mad_ns": 38777.0, "deser_cv": 0.41595163234860494, "deser_min_ns": 64788.0, "deser_max_ns": 293763.0, "deser_p5_ns": 71190.15, "deser_p25_ns": 92420.75, "deser_p50_ns": 115201.5, "deser_p75_ns": 181980.5, "deser_p95_ns": 246884.34999999992, "deser_p99_ns": 287178.64, "deser_ci_low_ns": 127287.90051020408, "deser_ci_high_ns": 150792.95051020407, "total_mean_ns": 207935.42857142858, "total_median_ns": 193530.5, "total_std_ns": 72469.81626188193, "total_mad_ns": 50269.5, "total_cv": 0.3485207728176422, "total_min_ns": 108195.0, "total_max_ns": 403090.0, "total_p5_ns": 116582.4, "total_p25_ns": 153166.75, "total_p50_ns": 193530.5, "total_p75_ns": 253899.25, "total_p95_ns": 340870.89999999997, "total_p99_ns": 391129.9, "total_ci_low_ns": 193971.13188775512, "total_ci_high_ns": 222738.05306122446, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.6039068574274067}, {"serializer": "ServiceStack Json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 431933.90721649484, "avg_time_deser_ns": 428741.44329896907, "avg_time_total_ns": 860675.350515464, "median_size_bytes": 15456.0, "avg_ops_per_sec": 1161.8782847691566, "min_ops_per_sec": 687.9135650363803, "max_ops_per_sec": 4173.7969030426975, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 431933.90721649484, "ser_median_ns": 471376.0, "ser_std_ns": 192870.31874417816, "ser_mad_ns": 136026.0, "ser_cv": 0.44652738653255875, "ser_min_ns": 105601.0, "ser_max_ns": 748632.0, "ser_p5_ns": 111936.4, "ser_p25_ns": 306216.0, "ser_p50_ns": 471376.0, "ser_p75_ns": 589399.0, "ser_p95_ns": 688324.9999999999, "ser_p99_ns": 705779.5199999997, "ser_ci_low_ns": 395969.2966494845, "ser_ci_high_ns": 470256.83350515465, "deser_mean_ns": 428741.44329896907, "deser_median_ns": 455119.0, "deser_std_ns": 230114.14793414524, "deser_mad_ns": 230477.0, "deser_cv": 0.5367200944315582, "deser_min_ns": 133989.0, "deser_max_ns": 758974.0, "deser_p5_ns": 135369.8, "deser_p25_ns": 202120.0, "deser_p50_ns": 455119.0, "deser_p75_ns": 652709.0, "deser_p95_ns": 733853.6, "deser_p99_ns": 758517.04, "deser_ci_low_ns": 382046.2724226804, "deser_ci_high_ns": 475265.30567010306, "total_mean_ns": 860675.350515464, "total_median_ns": 919931.0, "total_std_ns": 415132.6164249615, "total_mad_ns": 388145.0, "total_cv": 0.4823335723235665, "total_min_ns": 239590.0, "total_max_ns": 1453671.0, "total_p5_ns": 253873.4, "total_p25_ns": 509363.0, "total_p50_ns": 919931.0, "total_p75_ns": 1232156.0, "total_p95_ns": 1392346.7999999996, "total_p99_ns": 1446966.3599999999, "total_ci_low_ns": 781179.6538659794, "total_ci_high_ns": 941052.4659793815, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.685688732797596}, {"serializer": "FsPicklerJson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 225123.84848484848, "avg_time_deser_ns": 346076.6565656566, "avg_time_total_ns": 571200.505050505, "median_size_bytes": 21060.0, "avg_ops_per_sec": 1750.6987321581253, "min_ops_per_sec": 907.1693594477152, "max_ops_per_sec": 4509.196506274547, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 225123.84848484848, "ser_median_ns": 175505.0, "ser_std_ns": 120215.20254419619, "ser_mad_ns": 74571.0, "ser_cv": 0.5339958576280603, "ser_min_ns": 92076.0, "ser_max_ns": 450132.0, "ser_p5_ns": 99290.9, "ser_p25_ns": 109271.5, "ser_p50_ns": 175505.0, "ser_p75_ns": 351032.0, "ser_p95_ns": 384049.69999999984, "ser_p99_ns": 441528.57999999996, "ser_ci_low_ns": 201940.12676767676, "ser_ci_high_ns": 249044.68863636363, "deser_mean_ns": 346076.6565656566, "deser_median_ns": 249104.0, "deser_std_ns": 200354.29639445615, "deser_mad_ns": 116160.0, "deser_cv": 0.5789303976254913, "deser_min_ns": 127761.0, "deser_max_ns": 669176.0, "deser_p5_ns": 132645.9, "deser_p25_ns": 149712.0, "deser_p50_ns": 249104.0, "deser_p75_ns": 530498.0, "deser_p95_ns": 638076.8, "deser_p99_ns": 652537.5599999999, "deser_ci_low_ns": 307295.279040404, "deser_ci_high_ns": 386792.2474747475, "total_mean_ns": 571200.505050505, "total_median_ns": 430970.0, "total_std_ns": 317992.9371744026, "total_mad_ns": 190133.0, "total_cv": 0.556709831946465, "total_min_ns": 221769.0, "total_max_ns": 1102330.0, "total_p5_ns": 235545.0, "total_p25_ns": 261710.5, "total_p50_ns": 430970.0, "total_p75_ns": 901262.5, "total_p95_ns": 1010416.2999999999, "total_p99_ns": 1051623.8199999998, "total_ci_low_ns": 506742.45782828284, "total_ci_high_ns": 631624.8396464647, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.2122139102440905}, {"serializer": "BinaryPack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.0.3", "avg_time_ser_ns": 29395.0, "avg_time_deser_ns": 38816.17525773196, "avg_time_total_ns": 68211.17525773196, "median_size_bytes": 7280.0, "avg_ops_per_sec": 14660.35435134431, "min_ops_per_sec": 9272.82505888244, "max_ops_per_sec": 29038.534134796875, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 29395.0, "ser_median_ns": 29622.0, "ser_std_ns": 5539.097314770702, "ser_mad_ns": 3904.0, "ser_cv": 0.18843671763125366, "ser_min_ns": 16202.0, "ser_max_ns": 41743.0, "ser_p5_ns": 19748.600000000002, "ser_p25_ns": 25662.0, "ser_p50_ns": 29622.0, "ser_p75_ns": 33230.0, "ser_p95_ns": 37700.4, "ser_p99_ns": 40381.71999999999, "ser_ci_low_ns": 28319.365979381444, "ser_ci_high_ns": 30550.70644329897, "deser_mean_ns": 38816.17525773196, "deser_median_ns": 30811.0, "deser_std_ns": 16844.222633449568, "deser_mad_ns": 8965.0, "deser_cv": 0.4339485413389434, "deser_min_ns": 17445.0, "deser_max_ns": 72884.0, "deser_p5_ns": 18624.0, "deser_p25_ns": 23814.0, "deser_p50_ns": 30811.0, "deser_p75_ns": 55871.0, "deser_p95_ns": 64891.6, "deser_p99_ns": 72545.12, "deser_ci_low_ns": 35572.46855670103, "deser_ci_high_ns": 42187.51237113402, "total_mean_ns": 68211.17525773196, "total_median_ns": 63080.0, "total_std_ns": 20907.61049783981, "total_mad_ns": 15992.0, "total_cv": 0.30651297853821785, "total_min_ns": 34437.0, "total_max_ns": 107842.0, "total_p5_ns": 40371.6, "total_p25_ns": 50451.0, "total_p50_ns": 63080.0, "total_p75_ns": 86297.0, "total_p95_ns": 102366.0, "total_p99_ns": 105405.51999999997, "total_ci_low_ns": 63993.76881443299, "total_ci_high_ns": 72507.81520618557, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "Hyperion", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "0.12.2", "avg_time_ser_ns": 82982.33333333333, "avg_time_deser_ns": 87486.13541666667, "avg_time_total_ns": 170468.46875, "median_size_bytes": 7132.0, "avg_ops_per_sec": 5866.18749691796, "min_ops_per_sec": 3214.1422257934914, "max_ops_per_sec": 14426.891726177595, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 82982.33333333333, "ser_median_ns": 80828.5, "ser_std_ns": 27944.359701177123, "ser_mad_ns": 17454.5, "ser_cv": 0.33675071040635707, "ser_min_ns": 33580.0, "ser_max_ns": 148299.0, "ser_p5_ns": 39404.25, "ser_p25_ns": 64120.75, "ser_p50_ns": 80828.5, "ser_p75_ns": 99255.75, "ser_p95_ns": 132605.0, "ser_p99_ns": 145509.8, "ser_ci_low_ns": 77859.13020833334, "ser_ci_high_ns": 88617.14010416667, "deser_mean_ns": 87486.13541666667, "deser_median_ns": 87010.0, "deser_std_ns": 35241.07969270784, "deser_mad_ns": 29651.5, "deser_cv": 0.40281902412155457, "deser_min_ns": 34153.0, "deser_max_ns": 162826.0, "deser_p5_ns": 36579.0, "deser_p25_ns": 55767.75, "deser_p50_ns": 87010.0, "deser_p75_ns": 114366.75, "deser_p95_ns": 145573.25, "deser_p99_ns": 161655.6, "deser_ci_low_ns": 80552.53463541667, "deser_ci_high_ns": 94811.66041666667, "total_mean_ns": 170468.46875, "total_median_ns": 171161.0, "total_std_ns": 60885.811614331426, "total_mad_ns": 49345.5, "total_cv": 0.3571675868316933, "total_min_ns": 69315.0, "total_max_ns": 311125.0, "total_p5_ns": 75457.75, "total_p25_ns": 119020.0, "total_p50_ns": 171161.0, "total_p75_ns": 217102.0, "total_p95_ns": 269509.5, "total_p99_ns": 291454.29999999993, "total_ci_low_ns": 158654.42578125, "total_ci_high_ns": 183273.1958333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9061426116838488, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.242210454630795}, {"serializer": "SharpYaml", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "3.13.0", "avg_time_ser_ns": 601275.3232323233, "avg_time_deser_ns": 2883887.9393939395, "avg_time_total_ns": 3485163.262626263, "median_size_bytes": 17252.0, "avg_ops_per_sec": 286.93060400460115, "min_ops_per_sec": 116.88649900155552, "max_ops_per_sec": 1152.118861798734, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 601275.3232323233, "ser_median_ns": 525151.0, "ser_std_ns": 307262.3036852319, "ser_mad_ns": 288320.0, "ser_cv": 0.5110176516698833, "ser_min_ns": 181974.0, "ser_max_ns": 1091977.0, "ser_p5_ns": 210701.3, "ser_p25_ns": 302391.5, "ser_p50_ns": 525151.0, "ser_p75_ns": 909944.5, "ser_p95_ns": 1022309.1, "ser_p99_ns": 1053339.5199999998, "ser_ci_low_ns": 540179.3684343435, "ser_ci_high_ns": 662321.4734848484, "deser_mean_ns": 2883887.9393939395, "deser_median_ns": 1223078.0, "deser_std_ns": 2668383.44632337, "deser_mad_ns": 533338.0, "deser_cv": 0.9252729309877906, "deser_min_ns": 681307.0, "deser_max_ns": 7607841.0, "deser_p5_ns": 696492.0, "deser_p25_ns": 763785.5, "deser_p50_ns": 1223078.0, "deser_p75_ns": 6544624.5, "deser_p95_ns": 6916728.9, "deser_p99_ns": 7426419.4799999995, "deser_ci_low_ns": 2368237.6825757576, "deser_ci_high_ns": 3422140.715151515, "total_mean_ns": 3485163.262626263, "total_median_ns": 1615970.0, "total_std_ns": 2939738.668627667, "total_mad_ns": 726706.0, "total_cv": 0.8435009918050185, "total_min_ns": 867966.0, "total_max_ns": 8555308.0, "total_p5_ns": 920548.4, "total_p25_ns": 1067349.5, "total_p50_ns": 1615970.0, "total_p75_ns": 7475778.5, "total_p95_ns": 7892659.1, "total_p99_ns": 8367986.879999999, "total_ci_low_ns": 2949139.811616162, "total_ci_high_ns": 4065344.147979798, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.629006547428828}, {"serializer": "Google.Protobuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "3.35.1", "avg_time_ser_ns": 73123.67676767676, "avg_time_deser_ns": 69923.18181818182, "avg_time_total_ns": 143046.85858585857, "median_size_bytes": 6456.0, "avg_ops_per_sec": 6990.716258195821, "min_ops_per_sec": 3930.2614409910548, "max_ops_per_sec": 20943.724213039564, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 73123.67676767676, "ser_median_ns": 85318.0, "ser_std_ns": 25281.178599991315, "ser_mad_ns": 15205.0, "ser_cv": 0.3457317755001959, "ser_min_ns": 25056.0, "ser_max_ns": 118615.0, "ser_p5_ns": 27324.5, "ser_p25_ns": 46132.5, "ser_p50_ns": 85318.0, "ser_p75_ns": 92295.0, "ser_p95_ns": 102686.8, "ser_p99_ns": 117208.7, "ser_ci_low_ns": 67939.44343434344, "ser_ci_high_ns": 78267.19873737374, "deser_mean_ns": 69923.18181818182, "deser_median_ns": 71460.0, "deser_std_ns": 27709.769954032105, "deser_mad_ns": 23376.0, "deser_cv": 0.3962887447840203, "deser_min_ns": 22691.0, "deser_max_ns": 135821.0, "deser_p5_ns": 25473.1, "deser_p25_ns": 46001.5, "deser_p50_ns": 71460.0, "deser_p75_ns": 94698.0, "deser_p95_ns": 106858.7, "deser_p99_ns": 121991.23999999995, "deser_ci_low_ns": 64304.27828282829, "deser_ci_high_ns": 75371.8436868687, "total_mean_ns": 143046.85858585857, "total_median_ns": 158064.0, "total_std_ns": 49122.177717549246, "total_mad_ns": 30973.0, "total_cv": 0.343399206408056, "total_min_ns": 47747.0, "total_max_ns": 254436.0, "total_p5_ns": 54221.5, "total_p25_ns": 101729.5, "total_p50_ns": 158064.0, "total_p75_ns": 181068.0, "total_p95_ns": 203056.7, "total_p99_ns": 213836.55999999982, "total_ci_low_ns": 133280.4464646465, "total_ci_high_ns": 152710.03055555554, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.7725710715401437, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.967712260294679}, {"serializer": "NetJSON", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.0.0", "avg_time_ser_ns": 73406.0, "avg_time_deser_ns": 189786.18181818182, "avg_time_total_ns": 263192.1818181818, "median_size_bytes": 13961.0, "avg_ops_per_sec": 3799.5049590447907, "min_ops_per_sec": 2115.287393521721, "max_ops_per_sec": 8964.509506862332, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 73406.0, "ser_median_ns": 68035.0, "ser_std_ns": 26341.10724548927, "ser_mad_ns": 21681.0, "ser_cv": 0.3588413378400849, "ser_min_ns": 40939.0, "ser_max_ns": 133468.0, "ser_p5_ns": 42198.4, "ser_p25_ns": 48706.5, "ser_p50_ns": 68035.0, "ser_p75_ns": 93683.0, "ser_p95_ns": 121688.5, "ser_p99_ns": 129117.77999999998, "ser_ci_low_ns": 68564.35505050505, "ser_ci_high_ns": 78447.97171717172, "deser_mean_ns": 189786.18181818182, "deser_median_ns": 236028.0, "deser_std_ns": 86809.6661442068, "deser_mad_ns": 56400.0, "deser_cv": 0.4574077275413646, "deser_min_ns": 70565.0, "deser_max_ns": 355347.0, "deser_p5_ns": 73721.6, "deser_p25_ns": 84567.0, "deser_p50_ns": 236028.0, "deser_p75_ns": 265145.0, "deser_p95_ns": 292880.4, "deser_p99_ns": 315406.1199999998, "deser_ci_low_ns": 173645.01186868685, "deser_ci_high_ns": 207701.26565656564, "total_mean_ns": 263192.1818181818, "total_median_ns": 302851.0, "total_std_ns": 109386.85178081333, "total_mad_ns": 86392.0, "total_cv": 0.41561588579549774, "total_min_ns": 111551.0, "total_max_ns": 472749.0, "total_p5_ns": 117325.2, "total_p25_ns": 134104.5, "total_p50_ns": 302851.0, "total_p75_ns": 358492.0, "total_p95_ns": 396227.99999999994, "total_p99_ns": 438009.95999999985, "total_ci_low_ns": 242217.05681818182, "total_ci_high_ns": 284402.6454545455, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.4546829670615797}, {"serializer": "FlatSharp", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "7.5.1", "avg_time_ser_ns": 70953.77551020408, "avg_time_deser_ns": 74096.44897959183, "avg_time_total_ns": 145050.22448979592, "median_size_bytes": 10496.0, "avg_ops_per_sec": 6894.163752710005, "min_ops_per_sec": 3382.5837527737185, "max_ops_per_sec": 21620.219229022983, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 70953.77551020408, "ser_median_ns": 77803.5, "ser_std_ns": 23136.999660485173, "ser_mad_ns": 12293.5, "ser_cv": 0.32608553236406385, "ser_min_ns": 21933.0, "ser_max_ns": 130968.0, "ser_p5_ns": 26114.85, "ser_p25_ns": 53313.0, "ser_p50_ns": 77803.5, "ser_p75_ns": 86697.75, "ser_p95_ns": 96092.09999999993, "ser_p99_ns": 118363.82000000002, "ser_ci_low_ns": 66169.57270408164, "ser_ci_high_ns": 75583.46096938774, "deser_mean_ns": 74096.44897959183, "deser_median_ns": 69618.5, "deser_std_ns": 33941.911684925275, "deser_mad_ns": 28596.0, "deser_cv": 0.45807744031395886, "deser_min_ns": 24320.0, "deser_max_ns": 164664.0, "deser_p5_ns": 25321.8, "deser_p25_ns": 43622.25, "deser_p50_ns": 69618.5, "deser_p75_ns": 103926.25, "deser_p95_ns": 124645.15, "deser_p99_ns": 146217.51, "deser_ci_low_ns": 67259.61352040817, "deser_ci_high_ns": 80508.81326530612, "total_mean_ns": 145050.22448979592, "total_median_ns": 150085.0, "total_std_ns": 54343.83999016742, "total_mad_ns": 45285.0, "total_cv": 0.37465533184328464, "total_min_ns": 46253.0, "total_max_ns": 295632.0, "total_p5_ns": 52276.85, "total_p25_ns": 97368.75, "total_p50_ns": 150085.0, "total_p75_ns": 187722.5, "total_p95_ns": 210812.64999999994, "total_p99_ns": 240058.76000000007, "total_ci_low_ns": 134866.33903061223, "total_ci_high_ns": 155769.12219387756, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.7641489585524932, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.8554368351003716}, {"serializer": "MS Bond Compact", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 40576.47422680412, "avg_time_deser_ns": 46676.762886597935, "avg_time_total_ns": 87253.23711340207, "median_size_bytes": 6596.0, "avg_ops_per_sec": 11460.892834271708, "min_ops_per_sec": 5871.094254547163, "max_ops_per_sec": 24221.285665843145, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 40576.47422680412, "ser_median_ns": 38810.0, "ser_std_ns": 11923.95975118024, "ser_mad_ns": 8807.0, "ser_cv": 0.29386387009701, "ser_min_ns": 21026.0, "ser_max_ns": 78973.0, "ser_p5_ns": 21986.4, "ser_p25_ns": 31000.0, "ser_p50_ns": 38810.0, "ser_p75_ns": 49861.0, "ser_p95_ns": 60767.99999999999, "ser_p99_ns": 70596.03999999994, "ser_ci_low_ns": 38302.986855670104, "ser_ci_high_ns": 42960.34999999999, "deser_mean_ns": 46676.762886597935, "deser_median_ns": 37360.0, "deser_std_ns": 22090.309779673567, "deser_mad_ns": 14293.0, "deser_cv": 0.4732613920408831, "deser_min_ns": 19070.0, "deser_max_ns": 100079.0, "deser_p5_ns": 20607.0, "deser_p25_ns": 27535.0, "deser_p50_ns": 37360.0, "deser_p75_ns": 65054.0, "deser_p95_ns": 82017.2, "deser_p99_ns": 89001.55999999991, "deser_ci_low_ns": 42416.85283505155, "deser_ci_high_ns": 51462.323453608245, "total_mean_ns": 87253.23711340207, "total_median_ns": 78602.0, "total_std_ns": 32736.410140244072, "total_mad_ns": 24123.0, "total_cv": 0.37518848839610297, "total_min_ns": 41286.0, "total_max_ns": 170326.0, "total_p5_ns": 43060.0, "total_p25_ns": 58953.0, "total_p50_ns": 78602.0, "total_p75_ns": 117736.0, "total_p95_ns": 142050.0, "total_p99_ns": 145895.9199999998, "total_ci_low_ns": 80943.95489690722, "total_ci_high_ns": 93760.25283505155, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.3395684982463599, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.6905752700217404}, {"serializer": "SpanJson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "4.2.1", "avg_time_ser_ns": 74110.68686868687, "avg_time_deser_ns": 59812.77777777778, "avg_time_total_ns": 133923.46464646465, "median_size_bytes": 15456.0, "avg_ops_per_sec": 7466.951386299864, "min_ops_per_sec": 4416.024871052074, "max_ops_per_sec": 13182.699025798542, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 74110.68686868687, "ser_median_ns": 72883.0, "ser_std_ns": 25577.717613964775, "ser_mad_ns": 26301.0, "ser_cv": 0.34512860013407637, "ser_min_ns": 37086.0, "ser_max_ns": 125107.0, "ser_p5_ns": 38725.8, "ser_p25_ns": 46845.0, "ser_p50_ns": 72883.0, "ser_p75_ns": 100498.0, "ser_p95_ns": 113138.7, "ser_p99_ns": 118401.83999999997, "ser_ci_low_ns": 68915.41843434343, "ser_ci_high_ns": 79337.01515151515, "deser_mean_ns": 59812.77777777778, "deser_median_ns": 52433.0, "deser_std_ns": 18046.502113194732, "deser_mad_ns": 12045.0, "deser_cv": 0.3017165024544228, "deser_min_ns": 37698.0, "deser_max_ns": 102296.0, "deser_p5_ns": 39140.9, "deser_p25_ns": 43526.5, "deser_p50_ns": 52433.0, "deser_p75_ns": 79246.0, "deser_p95_ns": 86599.59999999999, "deser_p99_ns": 101360.09999999999, "deser_ci_low_ns": 56505.51843434344, "deser_ci_high_ns": 63530.79368686868, "total_mean_ns": 133923.46464646465, "total_median_ns": 131290.0, "total_std_ns": 40237.86948053936, "total_mad_ns": 38279.0, "total_cv": 0.30045421529946637, "total_min_ns": 75857.0, "total_max_ns": 226448.0, "total_p5_ns": 78250.4, "total_p25_ns": 92115.5, "total_p50_ns": 131290.0, "total_p75_ns": 167065.5, "total_p95_ns": 190326.4, "total_p99_ns": 202077.3599999999, "total_ci_low_ns": 126143.30378787879, "total_ci_high_ns": 141560.25858585857, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.8304696449026346, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.0354478829327785}, {"serializer": "MS Binary", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 296907.3608247423, "avg_time_deser_ns": 316328.5257731959, "avg_time_total_ns": 613235.8865979381, "median_size_bytes": 10792.0, "avg_ops_per_sec": 1630.6938681421948, "min_ops_per_sec": 1051.334564095663, "max_ops_per_sec": 3714.103192643104, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 296907.3608247423, "ser_median_ns": 344103.0, "ser_std_ns": 112728.81908332284, "ser_mad_ns": 97988.0, "ser_cv": 0.37967674081972025, "ser_min_ns": 129364.0, "ser_max_ns": 477463.0, "ser_p5_ns": 145015.6, "ser_p25_ns": 167206.0, "ser_p50_ns": 344103.0, "ser_p75_ns": 395281.0, "ser_p95_ns": 444119.6, "ser_p99_ns": 465303.6399999999, "ser_ci_low_ns": 274587.13324742264, "ser_ci_high_ns": 319086.1690721649, "deser_mean_ns": 316328.5257731959, "deser_median_ns": 322244.0, "deser_std_ns": 120027.03257557344, "deser_mad_ns": 106859.0, "deser_cv": 0.3794379033069927, "deser_min_ns": 130606.0, "deser_max_ns": 717368.0, "deser_p5_ns": 157268.2, "deser_p25_ns": 203051.0, "deser_p50_ns": 322244.0, "deser_p75_ns": 428950.0, "deser_p95_ns": 456514.99999999994, "deser_p99_ns": 505134.0799999982, "deser_ci_low_ns": 292796.96881443297, "deser_ci_high_ns": 340271.37835051544, "total_mean_ns": 613235.8865979381, "total_median_ns": 679051.0, "total_std_ns": 221406.0491789198, "total_mad_ns": 191549.0, "total_cv": 0.36104548676565373, "total_min_ns": 269244.0, "total_max_ns": 951172.0, "total_p5_ns": 299907.0, "total_p25_ns": 375911.0, "total_p50_ns": 679051.0, "total_p75_ns": 826729.0, "total_p95_ns": 879838.1999999998, "total_p99_ns": 909475.3599999996, "total_ci_low_ns": 568766.0389175258, "total_ci_high_ns": 655868.631185567, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.452327079710041}, {"serializer": "MS XmlSerializer", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 294477.55555555556, "avg_time_deser_ns": 440299.28282828286, "avg_time_total_ns": 734776.8383838384, "median_size_bytes": 29635.0, "avg_ops_per_sec": 1360.9574332793711, "min_ops_per_sec": 521.2359337967815, "max_ops_per_sec": 3624.8957842462028, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 294477.55555555556, "ser_median_ns": 225282.0, "ser_std_ns": 168091.93860772293, "ser_mad_ns": 102657.0, "ser_cv": 0.5708140924037622, "ser_min_ns": 116721.0, "ser_max_ns": 790747.0, "ser_p5_ns": 124900.2, "ser_p25_ns": 137889.5, "ser_p50_ns": 225282.0, "ser_p75_ns": 460552.0, "ser_p95_ns": 557284.3999999999, "ser_p99_ns": 607861.3599999993, "ser_ci_low_ns": 262226.1954545455, "ser_ci_high_ns": 328220.4406565656, "deser_mean_ns": 440299.28282828286, "deser_median_ns": 401951.0, "deser_std_ns": 283562.6007114939, "deser_mad_ns": 236155.0, "deser_cv": 0.6440223996959895, "deser_min_ns": 154129.0, "deser_max_ns": 1409463.0, "deser_p5_ns": 159907.7, "deser_p25_ns": 174833.0, "deser_p50_ns": 401951.0, "deser_p75_ns": 696044.0, "deser_p95_ns": 850553.2, "deser_p99_ns": 882916.8399999979, "deser_ci_low_ns": 386617.24797979795, "deser_ci_high_ns": 497818.19873737375, "total_mean_ns": 734776.8383838384, "total_median_ns": 624747.0, "total_std_ns": 436741.0758878861, "total_mad_ns": 331367.0, "total_cv": 0.5943860136480486, "total_min_ns": 275870.0, "total_max_ns": 1918517.0, "total_p5_ns": 282665.0, "total_p25_ns": 314327.5, "total_p50_ns": 624747.0, "total_p75_ns": 1121779.0, "total_p95_ns": 1366222.9999999998, "total_p99_ns": 1464057.679999998, "total_ci_low_ns": 646766.2441919192, "total_ci_high_ns": 817963.273989899, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.1366598336060623}, {"serializer": "Apache.Avro", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.12.1", "avg_time_ser_ns": 190747.2323232323, "avg_time_deser_ns": 350168.89898989897, "avg_time_total_ns": 540916.1313131313, "median_size_bytes": 5404.0, "avg_ops_per_sec": 1848.715433152999, "min_ops_per_sec": 1087.4470549215134, "max_ops_per_sec": 4103.961554088161, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 190747.2323232323, "ser_median_ns": 210501.0, "ser_std_ns": 81946.86310127651, "ser_mad_ns": 67124.0, "ser_cv": 0.4296097096832984, "ser_min_ns": 67442.0, "ser_max_ns": 432627.0, "ser_p5_ns": 76054.1, "ser_p25_ns": 112988.0, "ser_p50_ns": 210501.0, "ser_p75_ns": 252633.5, "ser_p95_ns": 306661.69999999995, "ser_p99_ns": 335603.0799999996, "ser_ci_low_ns": 175241.1356060606, "ser_ci_high_ns": 206699.67828282827, "deser_mean_ns": 350168.89898989897, "deser_median_ns": 353662.0, "deser_std_ns": 110160.1647463768, "deser_mad_ns": 77467.0, "deser_cv": 0.3145915158774695, "deser_min_ns": 161521.0, "deser_max_ns": 597558.0, "deser_p5_ns": 176385.2, "deser_p25_ns": 269987.5, "deser_p50_ns": 353662.0, "deser_p75_ns": 429633.5, "deser_p95_ns": 522595.0, "deser_p99_ns": 597305.16, "deser_ci_low_ns": 328225.8734848485, "deser_ci_high_ns": 371612.33383838384, "total_mean_ns": 540916.1313131313, "total_median_ns": 577044.0, "total_std_ns": 178951.97585897037, "total_mad_ns": 138828.0, "total_cv": 0.3308312795637014, "total_min_ns": 243667.0, "total_max_ns": 919585.0, "total_p5_ns": 273335.0, "total_p25_ns": 377808.0, "total_p50_ns": 577044.0, "total_p75_ns": 680047.0, "total_p95_ns": 795990.0, "total_p99_ns": 914185.2, "total_ci_low_ns": 506608.1595959596, "total_ci_high_ns": 574503.8904040405, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.677669805869794}, {"serializer": "FsPickler", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 76655.87755102041, "avg_time_deser_ns": 74623.62244897959, "avg_time_total_ns": 151279.5, "median_size_bytes": 7360.0, "avg_ops_per_sec": 6610.280969992629, "min_ops_per_sec": 3745.290297450955, "max_ops_per_sec": 13461.66790065289, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 76655.87755102041, "ser_median_ns": 74291.0, "ser_std_ns": 22867.993352825073, "ser_mad_ns": 20213.5, "ser_cv": 0.298320156045499, "ser_min_ns": 36524.0, "ser_max_ns": 132333.0, "ser_p5_ns": 46085.45, "ser_p25_ns": 55596.75, "ser_p50_ns": 74291.0, "ser_p75_ns": 95254.5, "ser_p95_ns": 112850.45, "ser_p99_ns": 130722.8, "ser_ci_low_ns": 72428.39795918367, "ser_ci_high_ns": 80921.15561224488, "deser_mean_ns": 74623.62244897959, "deser_median_ns": 70975.5, "deser_std_ns": 30600.192558020688, "deser_mad_ns": 26885.0, "deser_cv": 0.4100604011677688, "deser_min_ns": 37761.0, "deser_max_ns": 144096.0, "deser_p5_ns": 39519.85, "deser_p25_ns": 45996.5, "deser_p50_ns": 70975.5, "deser_p75_ns": 104371.5, "deser_p95_ns": 119988.24999999999, "deser_p99_ns": 132922.57, "deser_ci_low_ns": 68750.6125, "deser_ci_high_ns": 80530.39617346939, "total_mean_ns": 151279.5, "total_median_ns": 147709.0, "total_std_ns": 52153.803185445504, "total_mad_ns": 48561.0, "total_cv": 0.3447512927094914, "total_min_ns": 74285.0, "total_max_ns": 267002.0, "total_p5_ns": 87239.9, "total_p25_ns": 102885.25, "total_p50_ns": 147709.0, "total_p75_ns": 200785.75, "total_p95_ns": 229730.75, "total_p99_ns": 263362.56, "total_ci_low_ns": 140814.89897959185, "total_ci_high_ns": 161754.9362244898, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9002735114664423, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.0787287829819485}, {"serializer": "SharpSerializer", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 1003385.8888888889, "avg_time_deser_ns": 3329261.8080808083, "avg_time_total_ns": 4332647.696969697, "median_size_bytes": 69808.0, "avg_ops_per_sec": 230.80574972652664, "min_ops_per_sec": 100.47879148932579, "max_ops_per_sec": 824.1468431879318, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 1003385.8888888889, "ser_median_ns": 888008.0, "ser_std_ns": 551815.7551446081, "ser_mad_ns": 470673.0, "ser_cv": 0.5499536731134098, "ser_min_ns": 344480.0, "ser_max_ns": 2073957.0, "ser_p5_ns": 390269.8, "ser_p25_ns": 485702.5, "ser_p50_ns": 888008.0, "ser_p75_ns": 1504555.5, "ser_p95_ns": 1849922.8, "ser_p99_ns": 1949436.2399999995, "ser_ci_low_ns": 891787.268939394, "ser_ci_high_ns": 1111118.4015151516, "deser_mean_ns": 3329261.8080808083, "deser_median_ns": 1764877.0, "deser_std_ns": 2634130.0344178253, "deser_mad_ns": 905660.0, "deser_cv": 0.7912054341969279, "deser_min_ns": 846143.0, "deser_max_ns": 8005454.0, "deser_p5_ns": 862806.2, "deser_p25_ns": 994799.0, "deser_p50_ns": 1764877.0, "deser_p75_ns": 5656219.5, "deser_p95_ns": 7436946.0, "deser_p99_ns": 7745701.079999999, "deser_ci_low_ns": 2825634.2568181823, "deser_ci_high_ns": 3867915.9719696967, "total_mean_ns": 4332647.696969697, "total_median_ns": 2636927.0, "total_std_ns": 3153934.912210487, "total_mad_ns": 1393279.0, "total_cv": 0.7279463120014084, "total_min_ns": 1213376.0, "total_max_ns": 9952349.0, "total_p5_ns": 1255789.0, "total_p25_ns": 1485512.5, "total_p50_ns": 2636927.0, "total_p75_ns": 7015544.0, "total_p95_ns": 9287286.2, "total_p99_ns": 9640047.499999998, "total_ci_low_ns": 3734158.3979797983, "total_ci_high_ns": 4967597.241414142, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.8949729067327736}, {"serializer": "LightProto", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.3.4", "avg_time_ser_ns": 72348.97959183673, "avg_time_deser_ns": 72504.79591836735, "avg_time_total_ns": 144853.77551020408, "median_size_bytes": 6456.0, "avg_ops_per_sec": 6903.513536169832, "min_ops_per_sec": 4788.859197961861, "max_ops_per_sec": 20512.399745646242, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 72348.97959183673, "ser_median_ns": 74060.0, "ser_std_ns": 20521.593019081545, "ser_mad_ns": 12938.0, "ser_cv": 0.28364730414797773, "ser_min_ns": 24186.0, "ser_max_ns": 113632.0, "ser_p5_ns": 29106.05, "ser_p25_ns": 60857.0, "ser_p50_ns": 74060.0, "ser_p75_ns": 86332.25, "ser_p95_ns": 102161.2, "ser_p99_ns": 108175.75, "ser_ci_low_ns": 68089.22525510205, "ser_ci_high_ns": 76333.90841836735, "deser_mean_ns": 72504.79591836735, "deser_median_ns": 73451.0, "deser_std_ns": 28286.868959740845, "deser_mad_ns": 24335.0, "deser_cv": 0.39013790193394704, "deser_min_ns": 24315.0, "deser_max_ns": 138898.0, "deser_p5_ns": 26934.3, "deser_p25_ns": 48669.0, "deser_p50_ns": 73451.0, "deser_p75_ns": 97175.25, "deser_p95_ns": 111587.99999999999, "deser_p99_ns": 126138.62000000001, "deser_ci_low_ns": 66713.35382653061, "deser_ci_high_ns": 78346.47219387755, "total_mean_ns": 144853.77551020408, "total_median_ns": 159664.5, "total_std_ns": 42398.25953914954, "total_mad_ns": 24516.5, "total_cv": 0.29269695863856054, "total_min_ns": 48751.0, "total_max_ns": 208818.0, "total_p5_ns": 56687.95, "total_p25_ns": 121218.25, "total_p50_ns": 159664.5, "total_p75_ns": 176916.0, "total_p95_ns": 196371.19999999998, "total_p99_ns": 204702.29, "total_ci_low_ns": 136575.16836734692, "total_ci_high_ns": 153175.60229591836, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.837786661056175, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.2803138908522214}, {"serializer": "YAXLib", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "4.4.0", "avg_time_ser_ns": 1399105.4343434344, "avg_time_deser_ns": 1420969.8686868686, "avg_time_total_ns": 2820075.303030303, "median_size_bytes": 29496.0, "avg_ops_per_sec": 354.6004601102152, "min_ops_per_sec": 192.40419040934376, "max_ops_per_sec": 816.7252258653613, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 1399105.4343434344, "ser_median_ns": 1225337.0, "ser_std_ns": 648526.9097083485, "ser_mad_ns": 497994.0, "ser_cv": 0.4635296910362485, "ser_min_ns": 618619.0, "ser_max_ns": 2779784.0, "ser_p5_ns": 676412.1, "ser_p25_ns": 780794.0, "ser_p50_ns": 1225337.0, "ser_p75_ns": 1974801.5, "ser_p95_ns": 2403933.7, "ser_p99_ns": 2478684.879999999, "ser_ci_low_ns": 1274921.5265151514, "ser_ci_high_ns": 1521987.1550505052, "deser_mean_ns": 1420969.8686868686, "deser_median_ns": 1036385.0, "deser_std_ns": 746756.3543162158, "deser_mad_ns": 424898.0, "deser_cv": 0.525525819211283, "deser_min_ns": 588065.0, "deser_max_ns": 2912355.0, "deser_p5_ns": 627812.1, "deser_p25_ns": 707690.5, "deser_p50_ns": 1036385.0, "deser_p75_ns": 2201738.0, "deser_p95_ns": 2536223.1999999997, "deser_p99_ns": 2809094.3599999994, "deser_ci_low_ns": 1278173.1616161617, "deser_ci_high_ns": 1569250.5636363637, "total_mean_ns": 2820075.303030303, "total_median_ns": 2314009.0, "total_std_ns": 1379505.0261704964, "total_mad_ns": 974908.0, "total_cv": 0.48917311700441246, "total_min_ns": 1224402.0, "total_max_ns": 5197392.0, "total_p5_ns": 1332150.3, "total_p25_ns": 1489186.5, "total_p50_ns": 2314009.0, "total_p75_ns": 4120609.0, "total_p95_ns": 4897564.1, "total_p99_ns": 5136557.52, "total_ci_low_ns": 2562100.4876262625, "total_ci_high_ns": 3091210.6421717172, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.795492100299508}, {"serializer": "Utf8Json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.3.7", "avg_time_ser_ns": 134863.44444444444, "avg_time_deser_ns": 256458.1717171717, "avg_time_total_ns": 391321.61616161617, "median_size_bytes": 15456.0, "avg_ops_per_sec": 2555.4427833779546, "min_ops_per_sec": 1508.7757944081752, "max_ops_per_sec": 11772.184682033292, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 134863.44444444444, "ser_median_ns": 157730.0, "ser_std_ns": 52049.701135455616, "ser_mad_ns": 18083.0, "ser_cv": 0.3859437325649571, "ser_min_ns": 37475.0, "ser_max_ns": 222095.0, "ser_p5_ns": 41133.9, "ser_p25_ns": 100986.0, "ser_p50_ns": 157730.0, "ser_p75_ns": 170182.0, "ser_p95_ns": 185884.69999999998, "ser_p99_ns": 198860.1799999999, "ser_ci_low_ns": 124295.98333333332, "ser_ci_high_ns": 144940.07651515154, "deser_mean_ns": 256458.1717171717, "deser_median_ns": 299510.0, "deser_std_ns": 129444.80224121064, "deser_mad_ns": 92202.0, "deser_cv": 0.5047404080536202, "deser_min_ns": 47471.0, "deser_max_ns": 464403.0, "deser_p5_ns": 51787.9, "deser_p25_ns": 146011.5, "deser_p50_ns": 299510.0, "deser_p75_ns": 370948.0, "deser_p95_ns": 409482.6, "deser_p99_ns": 430243.13999999984, "deser_ci_low_ns": 231789.41818181818, "deser_ci_high_ns": 282072.45151515154, "total_mean_ns": 391321.61616161617, "total_median_ns": 453164.0, "total_std_ns": 176321.05590334802, "total_mad_ns": 98880.0, "total_cv": 0.4505783698657916, "total_min_ns": 84946.0, "total_max_ns": 662789.0, "total_p5_ns": 93500.7, "total_p25_ns": 251415.5, "total_p50_ns": 453164.0, "total_p75_ns": 537781.0, "total_p95_ns": 595099.0, "total_p99_ns": 612677.6799999998, "total_ci_low_ns": 355861.46111111116, "total_ci_high_ns": 423577.46969696967, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.96271998333854, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.5508197026957706}, {"serializer": "Json.Net (Helper)", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 320388.13265306124, "avg_time_deser_ns": 498950.82653061225, "avg_time_total_ns": 819338.9591836735, "median_size_bytes": 16560.0, "avg_ops_per_sec": 1220.496094798572, "min_ops_per_sec": 588.7565167986953, "max_ops_per_sec": 4473.052097637781, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 320388.13265306124, "ser_median_ns": 207220.0, "ser_std_ns": 207016.80668489973, "ser_mad_ns": 108311.5, "ser_cv": 0.6461438036753754, "ser_min_ns": 95115.0, "ser_max_ns": 664189.0, "ser_p5_ns": 98945.95, "ser_p25_ns": 112794.0, "ser_p50_ns": 207220.0, "ser_p75_ns": 531773.75, "ser_p95_ns": 633709.3999999999, "ser_p99_ns": 658448.54, "ser_ci_low_ns": 280233.24948979594, "ser_ci_high_ns": 360885.7765306122, "deser_mean_ns": 498950.82653061225, "deser_median_ns": 318595.0, "deser_std_ns": 355597.4595781493, "deser_mad_ns": 182778.5, "deser_cv": 0.7126903908562465, "deser_min_ns": 128131.0, "deser_max_ns": 1041351.0, "deser_p5_ns": 133793.5, "deser_p25_ns": 146871.75, "deser_p50_ns": 318595.0, "deser_p75_ns": 851152.0, "deser_p95_ns": 1007689.0499999999, "deser_p99_ns": 1027868.97, "deser_ci_low_ns": 429651.1701530612, "deser_ci_high_ns": 567902.9551020408, "total_mean_ns": 819338.9591836735, "total_median_ns": 532476.0, "total_std_ns": 560064.5557067031, "total_mad_ns": 296761.5, "total_cv": 0.6835566030751283, "total_min_ns": 223561.0, "total_max_ns": 1698495.0, "total_p5_ns": 235222.75, "total_p25_ns": 257598.25, "total_p50_ns": 532476.0, "total_p75_ns": 1369822.25, "total_p95_ns": 1630034.75, "total_p99_ns": 1691184.11, "total_ci_low_ns": 709155.368877551, "total_ci_high_ns": 931166.4461734694, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.8831116959968281}, {"serializer": "ExtendedXmlSerializer", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "3.10.0.0", "avg_time_ser_ns": 169954.7594936709, "avg_time_deser_ns": 111244.97468354431, "avg_time_total_ns": 281199.7341772152, "median_size_bytes": 15824.0, "avg_ops_per_sec": 3556.191128437514, "min_ops_per_sec": 2539.566445216473, "max_ops_per_sec": 5162.329449540811, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 169954.7594936709, "ser_median_ns": 171546.0, "ser_std_ns": 19980.81905306083, "ser_mad_ns": 17486.0, "ser_cv": 0.11756551633262682, "ser_min_ns": 132963.0, "ser_max_ns": 223975.0, "ser_p5_ns": 143854.0, "ser_p25_ns": 151515.5, "ser_p50_ns": 171546.0, "ser_p75_ns": 186100.5, "ser_p95_ns": 205862.6, "ser_p99_ns": 210670.53999999998, "ser_ci_low_ns": 165564.6433544304, "ser_ci_high_ns": 174460.8148734177, "deser_mean_ns": 111244.97468354431, "deser_median_ns": 105982.0, "deser_std_ns": 34759.74914155691, "deser_mad_ns": 29269.0, "deser_cv": 0.3124612976041126, "deser_min_ns": 60748.0, "deser_max_ns": 187530.0, "deser_p5_ns": 72476.0, "deser_p25_ns": 78415.5, "deser_p50_ns": 105982.0, "deser_p75_ns": 142036.0, "deser_p95_ns": 165665.0, "deser_p99_ns": 180476.46, "deser_ci_low_ns": 103597.35379746836, "deser_ci_high_ns": 118755.62753164556, "total_mean_ns": 281199.7341772152, "total_median_ns": 273805.0, "total_std_ns": 51086.93481771497, "total_mad_ns": 43749.0, "total_cv": 0.18167490437782355, "total_min_ns": 193711.0, "total_max_ns": 393768.0, "total_p5_ns": 217639.3, "total_p25_ns": 233832.0, "total_p50_ns": 273805.0, "total_p75_ns": 326981.5, "total_p95_ns": 359967.8, "total_p99_ns": 376350.6, "total_ci_low_ns": 269780.80379746837, "total_ci_high_ns": 292703.67151898734, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.6454151593283175}, {"serializer": "ZeroFormatter", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.6.4", "avg_time_ser_ns": 42502.59793814433, "avg_time_deser_ns": 54638.742268041235, "avg_time_total_ns": 97141.34020618557, "median_size_bytes": 7144.0, "avg_ops_per_sec": 10294.278397615972, "min_ops_per_sec": 6229.636874466587, "max_ops_per_sec": 26682.320294572815, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 42502.59793814433, "ser_median_ns": 44916.0, "ser_std_ns": 15416.226060591021, "ser_mad_ns": 11917.0, "ser_cv": 0.36271255895996873, "ser_min_ns": 16117.0, "ser_max_ns": 71553.0, "ser_p5_ns": 17313.6, "ser_p25_ns": 30680.0, "ser_p50_ns": 44916.0, "ser_p75_ns": 54026.0, "ser_p95_ns": 65778.19999999998, "ser_p99_ns": 70384.68, "ser_ci_low_ns": 39538.26520618558, "ser_ci_high_ns": 45603.46443298969, "deser_mean_ns": 54638.742268041235, "deser_median_ns": 52950.0, "deser_std_ns": 21260.01443157551, "deser_mad_ns": 18046.0, "deser_cv": 0.38910146077814667, "deser_min_ns": 21361.0, "deser_max_ns": 109786.0, "deser_p5_ns": 23236.0, "deser_p25_ns": 38431.0, "deser_p50_ns": 52950.0, "deser_p75_ns": 73371.0, "deser_p95_ns": 85333.0, "deser_p99_ns": 94083.27999999987, "deser_ci_low_ns": 50465.653350515466, "deser_ci_high_ns": 58787.13762886597, "total_mean_ns": 97141.34020618557, "total_median_ns": 98112.0, "total_std_ns": 35113.37619052941, "total_mad_ns": 28672.0, "total_cv": 0.3614668699855299, "total_min_ns": 37478.0, "total_max_ns": 160523.0, "total_p5_ns": 42233.4, "total_p25_ns": 71621.0, "total_p50_ns": 98112.0, "total_p75_ns": 126784.0, "total_p95_ns": 150356.8, "total_p99_ns": 154959.79999999996, "total_ci_low_ns": 90371.9337628866, "total_ci_high_ns": 104007.14793814432, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.4671059623764481, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.9972306253926435}, {"serializer": "MS DataContract Json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 292052.8484848485, "avg_time_deser_ns": 879609.494949495, "avg_time_total_ns": 1171662.3434343433, "median_size_bytes": 20608.0, "avg_ops_per_sec": 853.4882132243223, "min_ops_per_sec": 382.283163255554, "max_ops_per_sec": 2564.424761059723, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 292052.8484848485, "ser_median_ns": 334436.0, "ser_std_ns": 170038.51006411386, "ser_mad_ns": 171677.0, "ser_cv": 0.5822182901014757, "ser_min_ns": 92281.0, "ser_max_ns": 854811.0, "ser_p5_ns": 95463.5, "ser_p25_ns": 109035.5, "ser_p50_ns": 334436.0, "ser_p75_ns": 423748.5, "ser_p95_ns": 533142.4, "ser_p99_ns": 572833.6399999988, "ser_ci_low_ns": 258594.65075757576, "ser_ci_high_ns": 324837.64267676766, "deser_mean_ns": 879609.494949495, "deser_median_ns": 813276.0, "deser_std_ns": 510123.02340586664, "deser_mad_ns": 475812.0, "deser_cv": 0.5799426067304522, "deser_min_ns": 294897.0, "deser_max_ns": 1761051.0, "deser_p5_ns": 311897.5, "deser_p25_ns": 351141.0, "deser_p50_ns": 813276.0, "deser_p75_ns": 1296339.5, "deser_p95_ns": 1728444.4, "deser_p99_ns": 1745480.76, "deser_ci_low_ns": 773686.6032828283, "deser_ci_high_ns": 989268.1257575757, "total_mean_ns": 1171662.3434343433, "total_median_ns": 1153442.0, "total_std_ns": 675229.3138017686, "total_mad_ns": 651324.0, "total_cv": 0.5763002605533567, "total_min_ns": 389951.0, "total_max_ns": 2615862.0, "total_p5_ns": 406486.0, "total_p25_ns": 464712.0, "total_p50_ns": 1153442.0, "total_p75_ns": 1707212.0, "total_p95_ns": 2244756.5, "total_p99_ns": 2306070.279999999, "total_ci_low_ns": 1042473.9803030303, "total_ci_high_ns": 1315398.4497474746, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.289293155308922}, {"serializer": "ProtoBuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "2.4.9.1", "avg_time_ser_ns": 62572.84848484849, "avg_time_deser_ns": 91753.73737373737, "avg_time_total_ns": 154326.58585858587, "median_size_bytes": 6456.0, "avg_ops_per_sec": 6479.764937690842, "min_ops_per_sec": 3679.0134357570673, "max_ops_per_sec": 16795.99583459303, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 62572.84848484849, "ser_median_ns": 61154.0, "ser_std_ns": 24084.84899198259, "ser_mad_ns": 21082.0, "ser_cv": 0.384908943338492, "ser_min_ns": 21212.0, "ser_max_ns": 126394.0, "ser_p5_ns": 24403.7, "ser_p25_ns": 40059.0, "ser_p50_ns": 61154.0, "ser_p75_ns": 80199.5, "ser_p95_ns": 100668.8, "ser_p99_ns": 106755.77999999993, "ser_ci_low_ns": 57601.60984848485, "ser_ci_high_ns": 67354.76843434342, "deser_mean_ns": 91753.73737373737, "deser_median_ns": 91250.0, "deser_std_ns": 34941.289644664874, "deser_mad_ns": 31972.0, "deser_cv": 0.3808159824851571, "deser_min_ns": 36382.0, "deser_max_ns": 170029.0, "deser_p5_ns": 40404.7, "deser_p25_ns": 60047.0, "deser_p50_ns": 91250.0, "deser_p75_ns": 123073.0, "deser_p95_ns": 142384.69999999998, "deser_p99_ns": 156994.01999999996, "deser_ci_low_ns": 85279.84545454546, "deser_ci_high_ns": 98385.79949494949, "total_mean_ns": 154326.58585858587, "total_median_ns": 153448.0, "total_std_ns": 57833.539525266955, "total_mad_ns": 53852.0, "total_cv": 0.37474774163838226, "total_min_ns": 59538.0, "total_max_ns": 271812.0, "total_p5_ns": 64895.1, "total_p25_ns": 97309.0, "total_p50_ns": 153448.0, "total_p75_ns": 206171.0, "total_p95_ns": 232272.1, "total_p99_ns": 261828.73999999996, "total_ci_low_ns": 142743.54393939395, "total_ci_high_ns": 165676.46792929294, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.8244298656669791, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.9649214220482216}, {"serializer": "MS Bond Fast", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 21137.477777777778, "avg_time_deser_ns": 18903.411111111112, "avg_time_total_ns": 40040.88888888889, "median_size_bytes": 6848.0, "avg_ops_per_sec": 24974.470541224524, "min_ops_per_sec": 20102.926986169186, "max_ops_per_sec": 28702.64064293915, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 21137.477777777778, "ser_median_ns": 20748.5, "ser_std_ns": 1993.4787629047644, "ser_mad_ns": 1274.5, "ser_cv": 0.09431015298336803, "ser_min_ns": 17960.0, "ser_max_ns": 27253.0, "ser_p5_ns": 18636.35, "ser_p25_ns": 19625.0, "ser_p50_ns": 20748.5, "ser_p75_ns": 22216.75, "ser_p95_ns": 24433.65, "ser_p99_ns": 27060.76, "ser_ci_low_ns": 20745.766111111112, "ser_ci_high_ns": 21536.68888888889, "deser_mean_ns": 18903.411111111112, "deser_median_ns": 19021.0, "deser_std_ns": 1294.1398071014562, "deser_mad_ns": 906.5, "deser_cv": 0.06846064974700689, "deser_min_ns": 16785.0, "deser_max_ns": 22491.0, "deser_p5_ns": 16918.65, "deser_p25_ns": 17824.0, "deser_p50_ns": 19021.0, "deser_p75_ns": 19695.75, "deser_p95_ns": 20851.25, "deser_p99_ns": 22462.52, "deser_ci_low_ns": 18642.523333333334, "deser_ci_high_ns": 19156.145277777778, "total_mean_ns": 40040.88888888889, "total_median_ns": 39614.5, "total_std_ns": 3163.6964031549915, "total_mad_ns": 1983.0, "total_cv": 0.07901164262197233, "total_min_ns": 34840.0, "total_max_ns": 49744.0, "total_p5_ns": 35599.45, "total_p25_ns": 37811.0, "total_p50_ns": 39614.5, "total_p75_ns": 41864.5, "total_p95_ns": 45628.7, "total_p99_ns": 48642.18, "total_ci_low_ns": 39403.034999999996, "total_ci_high_ns": 40654.3975, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.004191899338712}, {"serializer": "ServiceStack Json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 119448.84210526316, "avg_time_deser_ns": 136649.08421052631, "avg_time_total_ns": 256097.92631578946, "median_size_bytes": 15456.0, "avg_ops_per_sec": 3904.7563343676557, "min_ops_per_sec": 3453.110216371886, "max_ops_per_sec": 4310.381986051604, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 119448.84210526316, "ser_median_ns": 118119.0, "ser_std_ns": 6917.546393997072, "ser_mad_ns": 4184.0, "ser_cv": 0.05791220971318458, "ser_min_ns": 106363.0, "ser_max_ns": 136592.0, "ser_p5_ns": 111209.6, "ser_p25_ns": 114445.0, "ser_p50_ns": 118119.0, "ser_p75_ns": 123129.5, "ser_p95_ns": 134566.6, "ser_p99_ns": 136437.84, "ser_ci_low_ns": 118043.32263157894, "ser_ci_high_ns": 120901.24421052632, "deser_mean_ns": 136649.08421052631, "deser_median_ns": 134591.0, "deser_std_ns": 7832.68843504532, "deser_mad_ns": 4231.0, "deser_cv": 0.05731972870727775, "deser_min_ns": 124573.0, "deser_max_ns": 155030.0, "deser_p5_ns": 127413.7, "deser_p25_ns": 130562.5, "deser_p50_ns": 134591.0, "deser_p75_ns": 140418.0, "deser_p95_ns": 153302.9, "deser_p99_ns": 154966.08, "deser_ci_low_ns": 135079.11500000002, "deser_ci_high_ns": 138260.90605263156, "total_mean_ns": 256097.92631578946, "total_median_ns": 253421.0, "total_std_ns": 13764.683953712001, "total_mad_ns": 9162.0, "total_cv": 0.053747736858825765, "total_min_ns": 231998.0, "total_max_ns": 289594.0, "total_p5_ns": 238658.3, "total_p25_ns": 245267.0, "total_p50_ns": 253421.0, "total_p75_ns": 264764.5, "total_p95_ns": 283187.1, "total_p99_ns": 288802.52, "total_ci_low_ns": 253245.38710526316, "total_ci_high_ns": 258851.69421052633, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.47348217285161}, {"serializer": "SpanJson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "4.2.1", "avg_time_ser_ns": 38492.47777777778, "avg_time_deser_ns": 38069.677777777775, "avg_time_total_ns": 76562.15555555555, "median_size_bytes": 15456.0, "avg_ops_per_sec": 13061.283250761837, "min_ops_per_sec": 10815.487778498811, "max_ops_per_sec": 14819.425302686761, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 38492.47777777778, "ser_median_ns": 37871.0, "ser_std_ns": 3288.165043520962, "ser_mad_ns": 1855.5, "ser_cv": 0.08542357450990759, "ser_min_ns": 32048.0, "ser_max_ns": 48971.0, "ser_p5_ns": 33923.9, "ser_p25_ns": 36302.5, "ser_p50_ns": 37871.0, "ser_p75_ns": 40504.75, "ser_p95_ns": 44791.0, "ser_p99_ns": 47108.229999999996, "ser_ci_low_ns": 37872.99166666667, "ser_ci_high_ns": 39168.95805555556, "deser_mean_ns": 38069.677777777775, "deser_median_ns": 37624.0, "deser_std_ns": 2679.037999519867, "deser_mad_ns": 1302.0, "deser_cv": 0.0703719641431714, "deser_min_ns": 33161.0, "deser_max_ns": 46601.0, "deser_p5_ns": 34523.85, "deser_p25_ns": 36335.5, "deser_p50_ns": 37624.0, "deser_p75_ns": 38983.5, "deser_p95_ns": 42928.85, "deser_p99_ns": 45694.09, "deser_ci_low_ns": 37547.06972222222, "deser_ci_high_ns": 38619.27444444444, "total_mean_ns": 76562.15555555555, "total_median_ns": 75283.0, "total_std_ns": 5419.915712912993, "total_mad_ns": 2553.0, "total_cv": 0.07079105432161137, "total_min_ns": 67479.0, "total_max_ns": 92460.0, "total_p5_ns": 69107.35, "total_p25_ns": 73291.5, "total_p50_ns": 75283.0, "total_p75_ns": 78228.25, "total_p95_ns": 87377.55, "total_p99_ns": 91315.46, "total_ci_low_ns": 75428.50111111111, "total_ci_high_ns": 77680.5761111111, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.999898612101443}, {"serializer": "LightProto", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.3.4", "avg_time_ser_ns": 19048.714285714286, "avg_time_deser_ns": 18799.802197802197, "avg_time_total_ns": 37848.51648351648, "median_size_bytes": 4841.0, "avg_ops_per_sec": 26421.11482587469, "min_ops_per_sec": 20869.855580599382, "max_ops_per_sec": 31694.71649076099, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 19048.714285714286, "ser_median_ns": 18300.0, "ser_std_ns": 1874.2768874405003, "ser_mad_ns": 781.0, "ser_cv": 0.09839387894258707, "ser_min_ns": 16100.0, "ser_max_ns": 24149.0, "ser_p5_ns": 17091.5, "ser_p25_ns": 17789.0, "ser_p50_ns": 18300.0, "ser_p75_ns": 19996.5, "ser_p95_ns": 23037.5, "ser_p99_ns": 24041.0, "ser_ci_low_ns": 18679.12335164835, "ser_ci_high_ns": 19452.852197802196, "deser_mean_ns": 18799.802197802197, "deser_median_ns": 18218.0, "deser_std_ns": 2325.7432227607023, "deser_mad_ns": 1204.0, "deser_cv": 0.12371104750413783, "deser_min_ns": 15451.0, "deser_max_ns": 25352.0, "deser_p5_ns": 16143.5, "deser_p25_ns": 17054.5, "deser_p50_ns": 18218.0, "deser_p75_ns": 19437.0, "deser_p95_ns": 23437.5, "deser_p99_ns": 24935.299999999996, "deser_ci_low_ns": 18330.65302197802, "deser_ci_high_ns": 19290.36456043956, "total_mean_ns": 37848.51648351648, "total_median_ns": 36643.0, "total_std_ns": 3902.4259388306923, "total_mad_ns": 2138.0, "total_cv": 0.10310644382931757, "total_min_ns": 31551.0, "total_max_ns": 47916.0, "total_p5_ns": 33608.5, "total_p25_ns": 35006.5, "total_p50_ns": 36643.0, "total_p75_ns": 39704.5, "total_p95_ns": 45890.0, "total_p99_ns": 47529.899999999994, "total_ci_low_ns": 37096.04725274725, "total_ci_high_ns": 38662.616758241755, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.077290251006816}, {"serializer": "Hyperion", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "0.12.2", "avg_time_ser_ns": 26230.063829787236, "avg_time_deser_ns": 26606.08510638298, "avg_time_total_ns": 52836.14893617021, "median_size_bytes": 5347.0, "avg_ops_per_sec": 18926.436164150993, "min_ops_per_sec": 15329.194450831608, "max_ops_per_sec": 22818.546914932456, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 26230.063829787236, "ser_median_ns": 25317.5, "ser_std_ns": 2537.3870558412577, "ser_mad_ns": 1266.5, "ser_cv": 0.09673583229941532, "ser_min_ns": 21773.0, "ser_max_ns": 34022.0, "ser_p5_ns": 23615.95, "ser_p25_ns": 24331.25, "ser_p50_ns": 25317.5, "ser_p75_ns": 28058.25, "ser_p95_ns": 31445.95, "ser_p99_ns": 33171.979999999996, "ser_ci_low_ns": 25736.076063829787, "ser_ci_high_ns": 26719.958776595744, "deser_mean_ns": 26606.08510638298, "deser_median_ns": 25872.0, "deser_std_ns": 2209.0944948785414, "deser_mad_ns": 1215.0, "deser_cv": 0.08302967107132063, "deser_min_ns": 22051.0, "deser_max_ns": 32127.0, "deser_p5_ns": 24066.75, "deser_p25_ns": 24968.0, "deser_p50_ns": 25872.0, "deser_p75_ns": 28023.5, "deser_p95_ns": 31183.3, "deser_p99_ns": 31676.879999999997, "deser_ci_low_ns": 26177.433776595746, "deser_ci_high_ns": 27048.822872340425, "total_mean_ns": 52836.14893617021, "total_median_ns": 51270.0, "total_std_ns": 4538.711289686521, "total_mad_ns": 2398.5, "total_cv": 0.08590162949176337, "total_min_ns": 43824.0, "total_max_ns": 65235.0, "total_p5_ns": 47940.8, "total_p25_ns": 49294.75, "total_p50_ns": 51270.0, "total_p75_ns": 54988.0, "total_p95_ns": 61346.65, "total_p99_ns": 63705.14999999999, "total_ci_low_ns": 51959.53617021277, "total_ci_high_ns": 53787.65026595745, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.548800881946184}, {"serializer": "NetJSON", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.0.0", "avg_time_ser_ns": 44566.9, "avg_time_deser_ns": 82016.2, "avg_time_total_ns": 126583.1, "median_size_bytes": 13961.0, "avg_ops_per_sec": 7899.948729332747, "min_ops_per_sec": 7166.044415143285, "max_ops_per_sec": 8681.007691372815, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 44566.9, "ser_median_ns": 44551.5, "ser_std_ns": 2159.9181635038185, "ser_mad_ns": 1510.0, "ser_cv": 0.04846462651662598, "ser_min_ns": 40124.0, "ser_max_ns": 50543.0, "ser_p5_ns": 41412.25, "ser_p25_ns": 42914.75, "ser_p50_ns": 44551.5, "ser_p75_ns": 45780.5, "ser_p95_ns": 47983.25, "ser_p99_ns": 50243.07, "ser_ci_low_ns": 44151.20083333333, "ser_ci_high_ns": 45014.95722222222, "deser_mean_ns": 82016.2, "deser_median_ns": 81439.5, "deser_std_ns": 4705.773136635801, "deser_mad_ns": 3124.0, "deser_cv": 0.057376141989458194, "deser_min_ns": 75045.0, "deser_max_ns": 97822.0, "deser_p5_ns": 75669.5, "deser_p25_ns": 78404.25, "deser_p50_ns": 81439.5, "deser_p75_ns": 85134.5, "deser_p95_ns": 89604.35, "deser_p99_ns": 93519.73999999999, "deser_ci_low_ns": 81100.87444444445, "deser_ci_high_ns": 83005.21055555556, "total_mean_ns": 126583.1, "total_median_ns": 125620.5, "total_std_ns": 6035.757785569879, "total_mad_ns": 4764.5, "total_cv": 0.047682177048672995, "total_min_ns": 115194.0, "total_max_ns": 139547.0, "total_p5_ns": 117756.65, "total_p25_ns": 121745.75, "total_p50_ns": 125620.5, "total_p75_ns": 131038.25, "total_p95_ns": 138161.8, "total_p99_ns": 139258.64, "total_ci_low_ns": 125353.6075, "total_ci_high_ns": 127921.95166666666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.729559791752994}, {"serializer": "NetSerializer", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "4.1.2", "avg_time_ser_ns": 17731.34831460674, "avg_time_deser_ns": 19050.876404494382, "avg_time_total_ns": 36782.22471910113, "median_size_bytes": 4455.0, "avg_ops_per_sec": 27187.0450370202, "min_ops_per_sec": 24223.04580577962, "max_ops_per_sec": 30839.449824215135, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 17731.34831460674, "ser_median_ns": 17648.0, "ser_std_ns": 986.9964550586104, "ser_mad_ns": 594.0, "ser_cv": 0.055663925695122796, "ser_min_ns": 14909.0, "ser_max_ns": 20770.0, "ser_p5_ns": 16254.4, "ser_p25_ns": 17058.0, "ser_p50_ns": 17648.0, "ser_p75_ns": 18253.0, "ser_p95_ns": 19298.4, "ser_p99_ns": 19975.360000000004, "ser_ci_low_ns": 17524.87331460674, "ser_ci_high_ns": 17942.858988764045, "deser_mean_ns": 19050.876404494382, "deser_median_ns": 18856.0, "deser_std_ns": 1076.6637423522798, "deser_mad_ns": 702.0, "deser_cv": 0.0565151817424147, "deser_min_ns": 16988.0, "deser_max_ns": 21900.0, "deser_p5_ns": 17611.2, "deser_p25_ns": 18314.0, "deser_p50_ns": 18856.0, "deser_p75_ns": 19898.0, "deser_p95_ns": 20812.8, "deser_p99_ns": 21518.08, "deser_ci_low_ns": 18829.980056179775, "deser_ci_high_ns": 19280.20252808989, "total_mean_ns": 36782.22471910113, "total_median_ns": 36329.0, "total_std_ns": 1876.142317198251, "total_mad_ns": 1128.0, "total_cv": 0.05100676567352829, "total_min_ns": 32426.0, "total_max_ns": 41283.0, "total_p5_ns": 34236.6, "total_p25_ns": 35555.0, "total_p50_ns": 36329.0, "total_p75_ns": 38075.0, "total_p95_ns": 40117.2, "total_p99_ns": 41011.08, "total_ci_low_ns": 36392.612078651684, "total_ci_high_ns": 37185.77162921349, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.405689092424456}, {"serializer": "YAXLib", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "4.4.0", "avg_time_ser_ns": 635171.2976190476, "avg_time_deser_ns": 593311.0595238095, "avg_time_total_ns": 1228482.357142857, "median_size_bytes": 29499.0, "avg_ops_per_sec": 814.0125042786533, "min_ops_per_sec": 594.0835222023865, "max_ops_per_sec": 1034.777848717548, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 635171.2976190476, "ser_median_ns": 652412.0, "ser_std_ns": 149134.68896356662, "ser_mad_ns": 101052.0, "ser_cv": 0.23479443974027323, "ser_min_ns": 415149.0, "ser_max_ns": 1047954.0, "ser_p5_ns": 428239.55, "ser_p25_ns": 486631.5, "ser_p50_ns": 652412.0, "ser_p75_ns": 729690.5, "ser_p95_ns": 887894.9999999999, "ser_p99_ns": 965671.9500000002, "ser_ci_low_ns": 604641.8241071429, "ser_ci_high_ns": 666247.0514880952, "deser_mean_ns": 593311.0595238095, "deser_median_ns": 587928.0, "deser_std_ns": 33992.80452044357, "deser_mad_ns": 22397.5, "deser_cv": 0.057293394375163245, "deser_min_ns": 542117.0, "deser_max_ns": 688039.0, "deser_p5_ns": 549920.35, "deser_p25_ns": 568652.0, "deser_p50_ns": 587928.0, "deser_p75_ns": 612954.75, "deser_p95_ns": 655570.85, "deser_p99_ns": 679612.01, "deser_ci_low_ns": 586110.931547619, "deser_ci_high_ns": 600481.2741071428, "total_mean_ns": 1228482.357142857, "total_median_ns": 1241781.5, "total_std_ns": 171447.01307707763, "total_mad_ns": 123295.5, "total_cv": 0.13956001246596697, "total_min_ns": 966391.0, "total_max_ns": 1683265.0, "total_p5_ns": 981074.75, "total_p25_ns": 1074741.5, "total_p50_ns": 1241781.5, "total_p75_ns": 1332892.25, "total_p95_ns": 1528591.5999999999, "total_p99_ns": 1621005.87, "total_ci_low_ns": 1193710.2919642855, "total_ci_high_ns": 1265234.83125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.991442939070295}, {"serializer": "ExtendedXmlSerializer", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "3.10.0.0", "avg_time_ser_ns": 55871.8275862069, "avg_time_deser_ns": 61026.942528735635, "avg_time_total_ns": 116898.77011494253, "median_size_bytes": 15827.0, "avg_ops_per_sec": 8554.409931060305, "min_ops_per_sec": 6691.872720580855, "max_ops_per_sec": 10761.019283746557, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 55871.8275862069, "ser_median_ns": 54676.0, "ser_std_ns": 6354.122024519672, "ser_mad_ns": 4176.0, "ser_cv": 0.11372676175153999, "ser_min_ns": 44764.0, "ser_max_ns": 73178.0, "ser_p5_ns": 47400.8, "ser_p25_ns": 51456.0, "ser_p50_ns": 54676.0, "ser_p75_ns": 59823.0, "ser_p95_ns": 69019.3, "ser_p99_ns": 71543.14, "ser_ci_low_ns": 54515.56465517241, "ser_ci_high_ns": 57111.10287356322, "deser_mean_ns": 61026.942528735635, "deser_median_ns": 59187.0, "deser_std_ns": 6642.750968303058, "deser_mad_ns": 2387.0, "deser_cv": 0.10884948013207771, "deser_min_ns": 48164.0, "deser_max_ns": 80906.0, "deser_p5_ns": 52332.3, "deser_p25_ns": 57311.0, "deser_p50_ns": 59187.0, "deser_p75_ns": 64033.5, "deser_p95_ns": 77112.3, "deser_p99_ns": 80748.62, "deser_ci_low_ns": 59689.22068965517, "deser_ci_high_ns": 62436.14511494253, "total_mean_ns": 116898.77011494253, "total_median_ns": 114397.0, "total_std_ns": 12457.668583163293, "total_mad_ns": 6942.0, "total_cv": 0.10656800384567004, "total_min_ns": 92928.0, "total_max_ns": 149435.0, "total_p5_ns": 102130.0, "total_p25_ns": 109159.0, "total_p50_ns": 114397.0, "total_p75_ns": 122486.5, "total_p95_ns": 146725.6, "total_p99_ns": 148997.26, "total_ci_low_ns": 114281.80057471264, "total_ci_high_ns": 119555.22212643677, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.913165719637652}, {"serializer": "SharpYaml", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "3.13.0", "avg_time_ser_ns": 210169.06976744186, "avg_time_deser_ns": 712311.3023255814, "avg_time_total_ns": 922480.3720930233, "median_size_bytes": 17255.0, "avg_ops_per_sec": 1084.0339049502938, "min_ops_per_sec": 1023.3403466258422, "max_ops_per_sec": 1169.2173142376762, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 210169.06976744186, "ser_median_ns": 207948.5, "ser_std_ns": 13635.273056901051, "ser_mad_ns": 8494.5, "ser_cv": 0.06487763909308289, "ser_min_ns": 187158.0, "ser_max_ns": 243021.0, "ser_p5_ns": 192306.75, "ser_p25_ns": 199970.25, "ser_p50_ns": 207948.5, "ser_p75_ns": 217555.75, "ser_p95_ns": 238600.5, "ser_p99_ns": 241798.7, "ser_ci_low_ns": 207451.8770348837, "ser_ci_high_ns": 213198.8898255814, "deser_mean_ns": 712311.3023255814, "deser_median_ns": 711565.0, "deser_std_ns": 18651.712003472097, "deser_mad_ns": 12349.5, "deser_cv": 0.026184776154157974, "deser_min_ns": 665942.0, "deser_max_ns": 767184.0, "deser_p5_ns": 682161.25, "deser_p25_ns": 699546.75, "deser_p50_ns": 711565.0, "deser_p75_ns": 724633.0, "deser_p95_ns": 742003.0, "deser_p99_ns": 753716.6000000001, "deser_ci_low_ns": 708374.5087209302, "deser_ci_high_ns": 716223.1880813953, "total_mean_ns": 922480.3720930233, "total_median_ns": 920228.0, "total_std_ns": 28180.662933398147, "total_mad_ns": 21577.0, "total_cv": 0.030548794083779595, "total_min_ns": 855273.0, "total_max_ns": 977192.0, "total_p5_ns": 878425.25, "total_p25_ns": 902684.0, "total_p50_ns": 920228.0, "total_p75_ns": 945772.5, "total_p95_ns": 964463.75, "total_p99_ns": 976639.5, "total_ci_low_ns": 916322.6816860465, "total_ci_high_ns": 928387.6377906976, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 45.039953225410564}, {"serializer": "YamlDotNet", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "17.1.0", "avg_time_ser_ns": 1995809.4810126582, "avg_time_deser_ns": 1699616.1012658228, "avg_time_total_ns": 3695425.582278481, "median_size_bytes": 15655.0, "avg_ops_per_sec": 270.6048268961303, "min_ops_per_sec": 256.43517664921796, "max_ops_per_sec": 280.61699820629616, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 1995809.4810126582, "ser_median_ns": 1991494.0, "ser_std_ns": 44179.838361087444, "ser_mad_ns": 29671.0, "ser_cv": 0.022136300474267182, "ser_min_ns": 1926755.0, "ser_max_ns": 2124281.0, "ser_p5_ns": 1932160.3, "ser_p25_ns": 1962473.0, "ser_p50_ns": 1991494.0, "ser_p75_ns": 2023707.5, "ser_p95_ns": 2080661.3, "ser_p99_ns": 2103853.58, "ser_ci_low_ns": 1986578.9107594937, "ser_ci_high_ns": 2005654.875949367, "deser_mean_ns": 1699616.1012658228, "deser_median_ns": 1690699.0, "deser_std_ns": 51479.7903248163, "deser_mad_ns": 29399.0, "deser_cv": 0.030289069564871565, "deser_min_ns": 1599447.0, "deser_max_ns": 1842153.0, "deser_p5_ns": 1628638.0, "deser_p25_ns": 1662468.5, "deser_p50_ns": 1690699.0, "deser_p75_ns": 1723580.0, "deser_p95_ns": 1798946.6, "deser_p99_ns": 1820263.8599999999, "deser_ci_low_ns": 1688556.1037974684, "deser_ci_high_ns": 1710896.4066455697, "total_mean_ns": 3695425.582278481, "total_median_ns": 3690315.0, "total_std_ns": 81959.10366411919, "total_mad_ns": 62147.0, "total_cv": 0.022178529059590973, "total_min_ns": 3563576.0, "total_max_ns": 3899621.0, "total_p5_ns": 3584164.8, "total_p25_ns": 3630004.5, "total_p50_ns": 3690315.0, "total_p75_ns": 3747552.5, "total_p95_ns": 3852166.1, "total_p99_ns": 3899180.3, "total_ci_low_ns": 3678044.347151899, "total_ci_high_ns": 3714069.9946202533, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 64.52789946381891}, {"serializer": "MS DataContract Json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 86198.14285714286, "avg_time_deser_ns": 292329.2967032967, "avg_time_total_ns": 378527.43956043955, "median_size_bytes": 15456.0, "avg_ops_per_sec": 2641.8164061269586, "min_ops_per_sec": 2418.9880889026504, "max_ops_per_sec": 2799.238607098869, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 86198.14285714286, "ser_median_ns": 85316.0, "ser_std_ns": 4204.203221040762, "ser_mad_ns": 2579.0, "ser_cv": 0.048773709985938274, "ser_min_ns": 79407.0, "ser_max_ns": 99462.0, "ser_p5_ns": 81160.0, "ser_p25_ns": 82979.0, "ser_p50_ns": 85316.0, "ser_p75_ns": 88379.5, "ser_p95_ns": 94084.5, "ser_p99_ns": 97513.49999999999, "ser_ci_low_ns": 85369.29148351648, "ser_ci_high_ns": 87045.76538461538, "deser_mean_ns": 292329.2967032967, "deser_median_ns": 291012.0, "deser_std_ns": 9450.322106790865, "deser_mad_ns": 6802.0, "deser_cv": 0.03232765998264823, "deser_min_ns": 275900.0, "deser_max_ns": 320647.0, "deser_p5_ns": 279558.5, "deser_p25_ns": 284533.5, "deser_p50_ns": 291012.0, "deser_p75_ns": 298827.0, "deser_p95_ns": 310099.0, "deser_p99_ns": 318784.89999999997, "deser_ci_low_ns": 290559.6192307692, "deser_ci_high_ns": 294256.1043956044, "total_mean_ns": 378527.43956043955, "total_median_ns": 376507.0, "total_std_ns": 11577.975696418698, "total_mad_ns": 7968.0, "total_cv": 0.030586886144538118, "total_min_ns": 357240.0, "total_max_ns": 413396.0, "total_p5_ns": 363817.0, "total_p25_ns": 369531.0, "total_p50_ns": 376507.0, "total_p75_ns": 386132.5, "total_p95_ns": 398483.5, "total_p99_ns": 409231.69999999995, "total_ci_low_ns": 376270.0266483517, "total_ci_high_ns": 380876.11813186813, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 42.583215943961555}, {"serializer": "ServiceStack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 110105.85714285714, "avg_time_deser_ns": 105892.34065934065, "avg_time_total_ns": 215998.1978021978, "median_size_bytes": 13454.0, "avg_ops_per_sec": 4629.668257305362, "min_ops_per_sec": 4166.388907406173, "max_ops_per_sec": 5018.11539658166, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 110105.85714285714, "ser_median_ns": 109364.0, "ser_std_ns": 5306.692725169329, "ser_mad_ns": 3666.0, "ser_cv": 0.04819628004243358, "ser_min_ns": 99750.0, "ser_max_ns": 126992.0, "ser_p5_ns": 103629.0, "ser_p25_ns": 105752.0, "ser_p50_ns": 109364.0, "ser_p75_ns": 113509.5, "ser_p95_ns": 119637.5, "ser_p99_ns": 124140.79999999999, "ser_ci_low_ns": 109025.82554945054, "ser_ci_high_ns": 111170.74890109891, "deser_mean_ns": 105892.34065934065, "deser_median_ns": 105235.0, "deser_std_ns": 4871.214617457175, "deser_mad_ns": 2579.0, "deser_cv": 0.04600157657415509, "deser_min_ns": 95470.0, "deser_max_ns": 117588.0, "deser_p5_ns": 98917.5, "deser_p25_ns": 103033.5, "deser_p50_ns": 105235.0, "deser_p75_ns": 108144.5, "deser_p95_ns": 116560.0, "deser_p99_ns": 117398.1, "deser_ci_low_ns": 104886.29697802197, "deser_ci_high_ns": 106916.7076923077, "total_mean_ns": 215998.1978021978, "total_median_ns": 214994.0, "total_std_ns": 9038.469961742887, "total_mad_ns": 5525.0, "total_cv": 0.04184511747648906, "total_min_ns": 199278.0, "total_max_ns": 240016.0, "total_p5_ns": 204182.5, "total_p25_ns": 209316.5, "total_p50_ns": 214994.0, "total_p75_ns": 219949.5, "total_p95_ns": 232027.5, "total_p99_ns": 236634.69999999998, "total_ci_low_ns": 214188.90027472525, "total_ci_high_ns": 217839.6478021978, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.657336224109546}, {"serializer": "BinaryPack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.0.3", "avg_time_ser_ns": 15829.510638297872, "avg_time_deser_ns": 13841.31914893617, "avg_time_total_ns": 29670.82978723404, "median_size_bytes": 5459.0, "avg_ops_per_sec": 33703.13561066138, "min_ops_per_sec": 28705.936387644964, "max_ops_per_sec": 37887.398651208605, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 15829.510638297872, "ser_median_ns": 15440.5, "ser_std_ns": 1293.6761053204189, "ser_mad_ns": 810.0, "ser_cv": 0.08172559056819499, "ser_min_ns": 13805.0, "ser_max_ns": 19626.0, "ser_p5_ns": 14319.3, "ser_p25_ns": 14848.0, "ser_p50_ns": 15440.5, "ser_p75_ns": 16800.0, "ser_p95_ns": 18301.7, "ser_p99_ns": 19515.329999999998, "ser_ci_low_ns": 15571.894680851063, "ser_ci_high_ns": 16093.341489361703, "deser_mean_ns": 13841.31914893617, "deser_median_ns": 13567.0, "deser_std_ns": 878.318484044553, "deser_mad_ns": 472.5, "deser_cv": 0.06345626992583721, "deser_min_ns": 12385.0, "deser_max_ns": 16174.0, "deser_p5_ns": 12785.95, "deser_p25_ns": 13181.75, "deser_p50_ns": 13567.0, "deser_p75_ns": 14463.0, "deser_p95_ns": 15479.55, "deser_p99_ns": 16060.539999999999, "deser_ci_low_ns": 13667.230319148937, "deser_ci_high_ns": 14025.008510638298, "total_mean_ns": 29670.82978723404, "total_median_ns": 28907.0, "total_std_ns": 2069.4244622901037, "total_mad_ns": 1035.0, "total_cv": 0.06974609328858337, "total_min_ns": 26394.0, "total_max_ns": 34836.0, "total_p5_ns": 27260.15, "total_p25_ns": 28118.25, "total_p50_ns": 28907.0, "total_p75_ns": 31163.75, "total_p95_ns": 33807.15, "total_p99_ns": 34303.10999999999, "total_ci_low_ns": 29279.305319148938, "total_ci_high_ns": 30105.16329787234, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.363270186439767}, {"serializer": "MS DataContract", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 69790.24175824175, "avg_time_deser_ns": 174129.92307692306, "avg_time_total_ns": 243920.16483516485, "median_size_bytes": 23025.0, "avg_ops_per_sec": 4099.702050774585, "min_ops_per_sec": 3706.737737184881, "max_ops_per_sec": 4429.65922631572, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 69790.24175824175, "ser_median_ns": 69024.0, "ser_std_ns": 3612.9462349250502, "ser_mad_ns": 2294.0, "ser_cv": 0.05176864478332869, "ser_min_ns": 61366.0, "ser_max_ns": 79586.0, "ser_p5_ns": 64752.0, "ser_p25_ns": 67342.0, "ser_p50_ns": 69024.0, "ser_p75_ns": 72260.5, "ser_p95_ns": 76337.5, "ser_p99_ns": 79416.8, "ser_ci_low_ns": 69024.57170329671, "ser_ci_high_ns": 70535.67967032967, "deser_mean_ns": 174129.92307692306, "deser_median_ns": 172901.0, "deser_std_ns": 7198.5781053247965, "deser_mad_ns": 4860.0, "deser_cv": 0.04134027040340893, "deser_min_ns": 161644.0, "deser_max_ns": 195842.0, "deser_p5_ns": 164626.0, "deser_p25_ns": 168914.5, "deser_p50_ns": 172901.0, "deser_p75_ns": 178914.0, "deser_p95_ns": 186936.5, "deser_p99_ns": 192729.8, "deser_ci_low_ns": 172651.80054945053, "deser_ci_high_ns": 175627.7131868132, "total_mean_ns": 243920.16483516485, "total_median_ns": 242524.0, "total_std_ns": 9752.06504884847, "total_mad_ns": 6185.0, "total_cv": 0.03998056108005122, "total_min_ns": 225751.0, "total_max_ns": 269779.0, "total_p5_ns": 230371.0, "total_p25_ns": 236966.5, "total_p50_ns": 242524.0, "total_p75_ns": 249363.5, "total_p95_ns": 260364.0, "total_p99_ns": 268175.2, "total_ci_low_ns": 241883.7535714286, "total_ci_high_ns": 245923.17335164835, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 31.471134910171635}, {"serializer": "FsPickler", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 59540.848837209305, "avg_time_deser_ns": 30085.06976744186, "avg_time_total_ns": 89625.91860465116, "median_size_bytes": 5518.0, "avg_ops_per_sec": 11157.486757944424, "min_ops_per_sec": 8993.210126354603, "max_ops_per_sec": 14149.475054475479, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 59540.848837209305, "ser_median_ns": 59660.0, "ser_std_ns": 5752.241640832559, "ser_mad_ns": 3169.0, "ser_cv": 0.09661000394132385, "ser_min_ns": 46774.0, "ser_max_ns": 74053.0, "ser_p5_ns": 50914.0, "ser_p25_ns": 55755.25, "ser_p50_ns": 59660.0, "ser_p75_ns": 62086.5, "ser_p95_ns": 69669.75, "ser_p99_ns": 73872.8, "ser_ci_low_ns": 58328.08953488372, "ser_ci_high_ns": 60778.04186046511, "deser_mean_ns": 30085.06976744186, "deser_median_ns": 29675.0, "deser_std_ns": 2640.0080605523012, "deser_mad_ns": 1127.5, "deser_cv": 0.08775143554459444, "deser_min_ns": 23900.0, "deser_max_ns": 37372.0, "deser_p5_ns": 26093.75, "deser_p25_ns": 28595.0, "deser_p50_ns": 29675.0, "deser_p75_ns": 30836.5, "deser_p95_ns": 35298.25, "deser_p99_ns": 37356.7, "deser_ci_low_ns": 29527.139825581395, "deser_ci_high_ns": 30646.6, "total_mean_ns": 89625.91860465116, "total_median_ns": 89088.5, "total_std_ns": 8003.754786811907, "total_mad_ns": 4107.0, "total_cv": 0.08930178804768814, "total_min_ns": 70674.0, "total_max_ns": 111195.0, "total_p5_ns": 76790.25, "total_p25_ns": 84499.25, "total_p50_ns": 89088.5, "total_p75_ns": 92768.0, "total_p95_ns": 104569.25, "total_p99_ns": 108990.10000000002, "total_ci_low_ns": 87931.35348837209, "total_ci_high_ns": 91321.22529069768, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.096363107027019}, {"serializer": "fastJson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "2.4.0.4", "avg_time_ser_ns": 84481.91208791209, "avg_time_deser_ns": 175011.62637362638, "avg_time_total_ns": 259493.53846153847, "median_size_bytes": 16944.0, "avg_ops_per_sec": 3853.6605031813447, "min_ops_per_sec": 3360.666756284447, "max_ops_per_sec": 4303.537077123688, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 84481.91208791209, "ser_median_ns": 82456.0, "ser_std_ns": 5799.760783665232, "ser_mad_ns": 3402.0, "ser_cv": 0.0686509175790196, "ser_min_ns": 76534.0, "ser_max_ns": 101405.0, "ser_p5_ns": 77497.5, "ser_p25_ns": 80270.0, "ser_p50_ns": 82456.0, "ser_p75_ns": 87941.0, "ser_p95_ns": 95518.5, "ser_p99_ns": 101134.09999999999, "ser_ci_low_ns": 83353.9076923077, "ser_ci_high_ns": 85687.65576923077, "deser_mean_ns": 175011.62637362638, "deser_median_ns": 173189.0, "deser_std_ns": 10206.97830859778, "deser_mad_ns": 6370.0, "deser_cv": 0.05832171564880637, "deser_min_ns": 155686.0, "deser_max_ns": 206724.0, "deser_p5_ns": 160949.0, "deser_p25_ns": 167847.0, "deser_p50_ns": 173189.0, "deser_p75_ns": 181984.0, "deser_p95_ns": 192352.5, "deser_p99_ns": 204107.69999999998, "deser_ci_low_ns": 173046.59313186814, "deser_ci_high_ns": 177167.44972527472, "total_mean_ns": 259493.53846153847, "total_median_ns": 256755.0, "total_std_ns": 14626.71423822991, "total_mad_ns": 9388.0, "total_cv": 0.05636639095118681, "total_min_ns": 232367.0, "total_max_ns": 297560.0, "total_p5_ns": 238991.0, "total_p25_ns": 248494.5, "total_p50_ns": 256755.0, "total_p75_ns": 269874.0, "total_p95_ns": 283757.0, "total_p99_ns": 296414.3, "total_ci_low_ns": 256631.93763736263, "total_ci_high_ns": 262479.5546703297, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.653770877503607}, {"serializer": "Utf8Json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.3.7", "avg_time_ser_ns": 35006.221052631576, "avg_time_deser_ns": 47362.336842105266, "avg_time_total_ns": 82368.55789473685, "median_size_bytes": 15456.0, "avg_ops_per_sec": 12140.554910260213, "min_ops_per_sec": 10322.154440074732, "max_ops_per_sec": 13300.34846912989, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 35006.221052631576, "ser_median_ns": 34051.0, "ser_std_ns": 3109.6265499900683, "ser_mad_ns": 1529.0, "ser_cv": 0.08883068370375567, "ser_min_ns": 29887.0, "ser_max_ns": 44127.0, "ser_p5_ns": 31668.8, "ser_p25_ns": 32745.0, "ser_p50_ns": 34051.0, "ser_p75_ns": 36890.0, "ser_p95_ns": 41244.299999999996, "ser_p99_ns": 43014.98, "ser_ci_low_ns": 34396.87289473684, "ser_ci_high_ns": 35646.64763157895, "deser_mean_ns": 47362.336842105266, "deser_median_ns": 46904.0, "deser_std_ns": 2243.0155073430524, "deser_mad_ns": 1520.0, "deser_cv": 0.04735863255271232, "deser_min_ns": 43623.0, "deser_max_ns": 53464.0, "deser_p5_ns": 44511.3, "deser_p25_ns": 45598.0, "deser_p50_ns": 46904.0, "deser_p75_ns": 48565.0, "deser_p95_ns": 52023.1, "deser_p99_ns": 52853.0, "deser_ci_low_ns": 46918.64342105263, "deser_ci_high_ns": 47813.026052631576, "total_mean_ns": 82368.55789473685, "total_median_ns": 81231.0, "total_std_ns": 4961.645338195595, "total_mad_ns": 3316.0, "total_cv": 0.060237127673600226, "total_min_ns": 75186.0, "total_max_ns": 96879.0, "total_p5_ns": 75937.2, "total_p25_ns": 78663.0, "total_p50_ns": 81231.0, "total_p75_ns": 85364.0, "total_p95_ns": 91947.9, "total_p99_ns": 95727.5, "total_ci_low_ns": 81393.35789473684, "total_ci_high_ns": 83352.14921052632, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.50427235648227}, {"serializer": "MS Binary", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 137143.35164835164, "avg_time_deser_ns": 126691.51648351649, "avg_time_total_ns": 263834.86813186813, "median_size_bytes": 8092.0, "avg_ops_per_sec": 3790.249587102289, "min_ops_per_sec": 3359.142746771024, "max_ops_per_sec": 4078.819100294083, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 137143.35164835164, "ser_median_ns": 134930.0, "ser_std_ns": 7242.77737454298, "ser_mad_ns": 3738.0, "ser_cv": 0.05281172792913898, "ser_min_ns": 126248.0, "ser_max_ns": 158117.0, "ser_p5_ns": 129544.5, "ser_p25_ns": 132033.5, "ser_p50_ns": 134930.0, "ser_p75_ns": 140702.5, "ser_p95_ns": 152497.5, "ser_p99_ns": 158081.0, "ser_ci_low_ns": 135714.07582417582, "ser_ci_high_ns": 138802.00796703296, "deser_mean_ns": 126691.51648351649, "deser_median_ns": 124806.0, "deser_std_ns": 5623.843960935215, "deser_mad_ns": 3385.0, "deser_cv": 0.04439005954804337, "deser_min_ns": 117119.0, "deser_max_ns": 142466.0, "deser_p5_ns": 119286.5, "deser_p25_ns": 122636.0, "deser_p50_ns": 124806.0, "deser_p75_ns": 130774.5, "deser_p95_ns": 136639.0, "deser_p99_ns": 140791.09999999998, "deser_ci_low_ns": 125616.6010989011, "deser_ci_high_ns": 127881.91043956044, "total_mean_ns": 263834.86813186813, "total_median_ns": 259875.0, "total_std_ns": 12091.287074408205, "total_mad_ns": 7412.0, "total_cv": 0.04582899584131094, "total_min_ns": 245169.0, "total_max_ns": 297695.0, "total_p5_ns": 249943.0, "total_p25_ns": 254872.5, "total_p50_ns": 259875.0, "total_p75_ns": 269729.0, "total_p95_ns": 287082.5, "total_p99_ns": 296754.5, "total_ci_low_ns": 261501.84642857144, "total_ci_high_ns": 266280.239010989, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.797958749022253}, {"serializer": "Migrant", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "0.13.0.0", "avg_time_ser_ns": 37590.395604395606, "avg_time_deser_ns": 57735.08791208791, "avg_time_total_ns": 95325.48351648351, "median_size_bytes": 16390.0, "avg_ops_per_sec": 10490.374274651142, "min_ops_per_sec": 8281.573498964803, "max_ops_per_sec": 12131.79987382928, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 37590.395604395606, "ser_median_ns": 37072.0, "ser_std_ns": 2366.2589690109808, "ser_mad_ns": 1518.0, "ser_cv": 0.06294849870466072, "ser_min_ns": 33800.0, "ser_max_ns": 44714.0, "ser_p5_ns": 34416.0, "ser_p25_ns": 35726.0, "ser_p50_ns": 37072.0, "ser_p75_ns": 39157.0, "ser_p95_ns": 42089.5, "ser_p99_ns": 43194.79999999999, "ser_ci_low_ns": 37106.96016483517, "ser_ci_high_ns": 38078.5282967033, "deser_mean_ns": 57735.08791208791, "deser_median_ns": 55349.0, "deser_std_ns": 7527.875777768847, "deser_mad_ns": 3796.0, "deser_cv": 0.1303864954571715, "deser_min_ns": 47113.0, "deser_max_ns": 82704.0, "deser_p5_ns": 49197.0, "deser_p25_ns": 52258.0, "deser_p50_ns": 55349.0, "deser_p75_ns": 60870.0, "deser_p95_ns": 73244.5, "deser_p99_ns": 78469.49999999997, "deser_ci_low_ns": 56275.16703296704, "deser_ci_high_ns": 59324.89807692308, "total_mean_ns": 95325.48351648351, "total_median_ns": 92558.0, "total_std_ns": 9348.621513787935, "total_mad_ns": 5114.0, "total_cv": 0.09807053863169117, "total_min_ns": 82428.0, "total_max_ns": 120750.0, "total_p5_ns": 84976.0, "total_p25_ns": 88019.0, "total_p50_ns": 92558.0, "total_p75_ns": 100313.5, "total_p95_ns": 113170.5, "total_p99_ns": 120710.4, "total_ci_low_ns": 93395.9945054945, "total_ci_high_ns": 97324.72582417582, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.127889430021687}, {"serializer": "Jil", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "2.17.0", "avg_time_ser_ns": 56648.48275862069, "avg_time_deser_ns": 87721.18390804598, "avg_time_total_ns": 144369.66666666666, "median_size_bytes": 15456.0, "avg_ops_per_sec": 6926.662803128082, "min_ops_per_sec": 6251.328407286548, "max_ops_per_sec": 7567.616654810734, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 56648.48275862069, "ser_median_ns": 55381.0, "ser_std_ns": 3623.5382549608053, "ser_mad_ns": 1984.0, "ser_cv": 0.06396531872531715, "ser_min_ns": 50084.0, "ser_max_ns": 67410.0, "ser_p5_ns": 52517.9, "ser_p25_ns": 54050.5, "ser_p50_ns": 55381.0, "ser_p75_ns": 58907.5, "ser_p95_ns": 63831.3, "ser_p99_ns": 66863.04, "ser_ci_low_ns": 55916.15804597701, "ser_ci_high_ns": 57472.198850574714, "deser_mean_ns": 87721.18390804598, "deser_median_ns": 86857.0, "deser_std_ns": 3524.3347633169137, "deser_mad_ns": 2223.0, "deser_cv": 0.0401765526444708, "deser_min_ns": 81909.0, "deser_max_ns": 98342.0, "deser_p5_ns": 83543.5, "deser_p25_ns": 85230.0, "deser_p50_ns": 86857.0, "deser_p75_ns": 90163.0, "deser_p95_ns": 94263.90000000001, "deser_p99_ns": 97549.94, "deser_ci_low_ns": 87029.1698275862, "deser_ci_high_ns": 88498.07183908045, "total_mean_ns": 144369.66666666666, "total_median_ns": 143132.0, "total_std_ns": 6438.798152094136, "total_mad_ns": 3679.0, "total_cv": 0.04459938365696028, "total_min_ns": 132142.0, "total_max_ns": 159966.0, "total_p5_ns": 136875.1, "total_p25_ns": 139662.0, "total_p50_ns": 143132.0, "total_p75_ns": 147944.5, "total_p95_ns": 157676.4, "total_p99_ns": 159947.94, "total_ci_low_ns": 143079.80574712643, "total_ci_high_ns": 145790.60833333334, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.241024826848108}, {"serializer": "MS Bond Compact", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 19561.545454545456, "avg_time_deser_ns": 18105.44318181818, "avg_time_total_ns": 37666.98863636364, "median_size_bytes": 4946.0, "avg_ops_per_sec": 26548.445633761174, "min_ops_per_sec": 21586.150325950868, "max_ops_per_sec": 30906.168871306712, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 19561.545454545456, "ser_median_ns": 19527.5, "ser_std_ns": 1682.6754620406793, "ser_mad_ns": 1145.0, "ser_cv": 0.08601955637659914, "ser_min_ns": 16661.0, "ser_max_ns": 24490.0, "ser_p5_ns": 17127.5, "ser_p25_ns": 18318.25, "ser_p50_ns": 19527.5, "ser_p75_ns": 20605.0, "ser_p95_ns": 22392.899999999998, "ser_p99_ns": 24067.179999999997, "ser_ci_low_ns": 19204.871022727275, "ser_ci_high_ns": 19908.423579545455, "deser_mean_ns": 18105.44318181818, "deser_median_ns": 18204.0, "deser_std_ns": 1363.1188364379052, "deser_mad_ns": 932.0, "deser_cv": 0.07528779178444935, "deser_min_ns": 15608.0, "deser_max_ns": 21836.0, "deser_p5_ns": 16057.4, "deser_p25_ns": 16988.5, "deser_p50_ns": 18204.0, "deser_p75_ns": 18906.25, "deser_p95_ns": 20471.25, "deser_p99_ns": 21238.309999999998, "deser_ci_low_ns": 17809.41676136364, "deser_ci_high_ns": 18375.11505681818, "total_mean_ns": 37666.98863636364, "total_median_ns": 37853.5, "total_std_ns": 2858.8840741265935, "total_mad_ns": 1624.5, "total_cv": 0.07589892841517552, "total_min_ns": 32356.0, "total_max_ns": 46326.0, "total_p5_ns": 33281.3, "total_p25_ns": 35629.0, "total_p50_ns": 37853.5, "total_p75_ns": 39248.25, "total_p95_ns": 42216.34999999999, "total_p99_ns": 44457.23999999999, "total_ci_low_ns": 37092.46761363636, "total_ci_high_ns": 38240.0375, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.660150421642861}, {"serializer": "Google.Protobuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "3.35.1", "avg_time_ser_ns": 16839.893617021276, "avg_time_deser_ns": 17997.09574468085, "avg_time_total_ns": 34836.98936170213, "median_size_bytes": 4841.0, "avg_ops_per_sec": 28705.121146299312, "min_ops_per_sec": 22601.93472561251, "max_ops_per_sec": 35297.02446083795, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 16839.893617021276, "ser_median_ns": 16124.0, "ser_std_ns": 2258.9306513228116, "ser_mad_ns": 1146.5, "ser_cv": 0.13414162242922664, "ser_min_ns": 12894.0, "ser_max_ns": 22389.0, "ser_p5_ns": 14541.4, "ser_p25_ns": 15207.25, "ser_p50_ns": 16124.0, "ser_p75_ns": 17980.75, "ser_p95_ns": 21562.0, "ser_p99_ns": 22125.809999999998, "ser_ci_low_ns": 16393.1914893617, "ser_ci_high_ns": 17304.80984042553, "deser_mean_ns": 17997.09574468085, "deser_median_ns": 17719.0, "deser_std_ns": 1650.782135050247, "deser_mad_ns": 988.5, "deser_cv": 0.09172491820176851, "deser_min_ns": 15437.0, "deser_max_ns": 22514.0, "deser_p5_ns": 15925.55, "deser_p25_ns": 16787.0, "deser_p50_ns": 17719.0, "deser_p75_ns": 18819.75, "deser_p95_ns": 21373.0, "deser_p99_ns": 22164.319999999996, "deser_ci_low_ns": 17662.059840425532, "deser_ci_high_ns": 18347.561968085105, "total_mean_ns": 34836.98936170213, "total_median_ns": 34166.0, "total_std_ns": 3659.8774598872824, "total_mad_ns": 2276.5, "total_cv": 0.10505722586667464, "total_min_ns": 28331.0, "total_max_ns": 44244.0, "total_p5_ns": 30801.2, "total_p25_ns": 31954.0, "total_p50_ns": 34166.0, "total_p75_ns": 36565.5, "total_p95_ns": 42850.45, "total_p99_ns": 43265.63999999999, "total_ci_low_ns": 34087.87260638298, "total_ci_high_ns": 35564.01489361702, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.355906772480643}, {"serializer": "MS Bond Json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 56036.52173913043, "avg_time_deser_ns": 91809.42391304347, "avg_time_total_ns": 147845.94565217392, "median_size_bytes": 13961.0, "avg_ops_per_sec": 6763.797245767058, "min_ops_per_sec": 5992.186189209271, "max_ops_per_sec": 7399.569345064117, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 56036.52173913043, "ser_median_ns": 55308.0, "ser_std_ns": 3199.500422810751, "ser_mad_ns": 1726.5, "ser_cv": 0.057096699143917996, "ser_min_ns": 50926.0, "ser_max_ns": 64943.0, "ser_p5_ns": 51987.1, "ser_p25_ns": 53654.0, "ser_p50_ns": 55308.0, "ser_p75_ns": 58233.75, "ser_p95_ns": 62221.65, "ser_p99_ns": 64162.22, "ser_ci_low_ns": 55408.14864130435, "ser_ci_high_ns": 56717.873641304344, "deser_mean_ns": 91809.42391304347, "deser_median_ns": 90432.5, "deser_std_ns": 4861.078872774435, "deser_mad_ns": 3091.5, "deser_cv": 0.052947493466232454, "deser_min_ns": 83570.0, "deser_max_ns": 106006.0, "deser_p5_ns": 85757.0, "deser_p25_ns": 88607.25, "deser_p50_ns": 90432.5, "deser_p75_ns": 94167.5, "deser_p95_ns": 101343.75, "deser_p99_ns": 105341.7, "deser_ci_low_ns": 90885.3527173913, "deser_ci_high_ns": 92794.11820652173, "total_mean_ns": 147845.94565217392, "total_median_ns": 145733.0, "total_std_ns": 7553.840053010415, "total_mad_ns": 4705.5, "total_cv": 0.05109264254551673, "total_min_ns": 135143.0, "total_max_ns": 166884.0, "total_p5_ns": 137454.95, "total_p25_ns": 142576.75, "total_p50_ns": 145733.0, "total_p75_ns": 152537.75, "total_p95_ns": 161920.0, "total_p99_ns": 165318.80000000002, "total_ci_low_ns": 146301.58342391305, "total_ci_high_ns": 149404.46657608694, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.96072445508713}, {"serializer": "Apache.Avro", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.12.1", "avg_time_ser_ns": 68177.86363636363, "avg_time_deser_ns": 228285.1590909091, "avg_time_total_ns": 296463.0227272727, "median_size_bytes": 4051.0, "avg_ops_per_sec": 3373.1019497832517, "min_ops_per_sec": 2440.4529480671613, "max_ops_per_sec": 4614.2700916855465, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 68177.86363636363, "ser_median_ns": 66870.5, "ser_std_ns": 4896.187611868699, "ser_mad_ns": 2989.5, "ser_cv": 0.07181491690592146, "ser_min_ns": 60012.0, "ser_max_ns": 80613.0, "ser_p5_ns": 61603.1, "ser_p25_ns": 64502.75, "ser_p50_ns": 66870.5, "ser_p75_ns": 70720.5, "ser_p95_ns": 77777.25, "ser_p99_ns": 80074.47, "ser_ci_low_ns": 67175.06704545455, "ser_ci_high_ns": 69252.41761363637, "deser_mean_ns": 228285.1590909091, "deser_median_ns": 233720.5, "deser_std_ns": 37961.22005835991, "deser_mad_ns": 24391.5, "deser_cv": 0.1662886024195851, "deser_min_ns": 155202.0, "deser_max_ns": 330116.0, "deser_p5_ns": 167908.35, "deser_p25_ns": 193818.25, "deser_p50_ns": 233720.5, "deser_p75_ns": 251835.75, "deser_p95_ns": 288017.5999999999, "deser_p99_ns": 309376.0699999999, "deser_ci_low_ns": 220360.77585227272, "deser_ci_high_ns": 235744.1502840909, "total_mean_ns": 296463.0227272727, "total_median_ns": 300114.5, "total_std_ns": 40937.26246426894, "total_mad_ns": 27941.0, "total_cv": 0.1380855598370143, "total_min_ns": 216719.0, "total_max_ns": 409760.0, "total_p5_ns": 233043.95, "total_p25_ns": 262465.5, "total_p50_ns": 300114.5, "total_p75_ns": 323152.5, "total_p95_ns": 366444.0999999999, "total_p99_ns": 387488.8699999999, "total_ci_low_ns": 288361.2755681818, "total_ci_high_ns": 304714.490625, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.479940667507107}, {"serializer": "Json.Net (Helper)", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 95811.21739130435, "avg_time_deser_ns": 145933.54347826086, "avg_time_total_ns": 241744.76086956522, "median_size_bytes": 16560.0, "avg_ops_per_sec": 4136.594300546417, "min_ops_per_sec": 3500.959262838018, "max_ops_per_sec": 4825.230163478798, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 95811.21739130435, "ser_median_ns": 93182.0, "ser_std_ns": 7970.582364353746, "ser_mad_ns": 4306.0, "ser_cv": 0.08319049252657906, "ser_min_ns": 81483.0, "ser_max_ns": 119494.0, "ser_p5_ns": 85519.55, "ser_p25_ns": 90476.75, "ser_p50_ns": 93182.0, "ser_p75_ns": 100662.25, "ser_p95_ns": 110799.20000000001, "ser_p99_ns": 115948.64000000001, "ser_ci_low_ns": 94284.33722826088, "ser_ci_high_ns": 97413.55135869565, "deser_mean_ns": 145933.54347826086, "deser_median_ns": 145065.5, "deser_std_ns": 8842.457797421923, "deser_mad_ns": 6062.0, "deser_cv": 0.06059235996513131, "deser_min_ns": 125761.0, "deser_max_ns": 166496.0, "deser_p5_ns": 132983.2, "deser_p25_ns": 139467.0, "deser_p50_ns": 145065.5, "deser_p75_ns": 152156.0, "deser_p95_ns": 160545.15000000002, "deser_p99_ns": 166173.86000000002, "deser_ci_low_ns": 144144.0945652174, "deser_ci_high_ns": 147778.6355978261, "total_mean_ns": 241744.76086956522, "total_median_ns": 239661.5, "total_std_ns": 15508.00976551289, "total_mad_ns": 8680.0, "total_cv": 0.0641503448088388, "total_min_ns": 207244.0, "total_max_ns": 285636.0, "total_p5_ns": 220467.85, "total_p25_ns": 231348.5, "total_p50_ns": 239661.5, "total_p75_ns": 250345.25, "total_p95_ns": 267836.4, "total_p99_ns": 278508.88, "total_ci_low_ns": 238751.5730978261, "total_ci_high_ns": 244989.9510869565, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.756025450128355}, {"serializer": "Json.Net", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 101022.81914893616, "avg_time_deser_ns": 138119.0744680851, "avg_time_total_ns": 239141.89361702127, "median_size_bytes": 16870.0, "avg_ops_per_sec": 4181.617803869492, "min_ops_per_sec": 3738.275832420571, "max_ops_per_sec": 4636.262060076684, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 101022.81914893616, "ser_median_ns": 99577.5, "ser_std_ns": 5921.823193466953, "ser_mad_ns": 3563.0, "ser_cv": 0.058618668963657736, "ser_min_ns": 89039.0, "ser_max_ns": 116233.0, "ser_p5_ns": 92805.5, "ser_p25_ns": 97367.0, "ser_p50_ns": 99577.5, "ser_p75_ns": 104808.5, "ser_p95_ns": 111902.45, "ser_p99_ns": 114213.03999999998, "ser_ci_low_ns": 99841.44388297873, "ser_ci_high_ns": 102172.96462765957, "deser_mean_ns": 138119.0744680851, "deser_median_ns": 137626.0, "deser_std_ns": 6480.313656021319, "deser_mad_ns": 4243.5, "deser_cv": 0.0469183107472872, "deser_min_ns": 125202.0, "deser_max_ns": 154959.0, "deser_p5_ns": 127351.9, "deser_p25_ns": 134040.0, "deser_p50_ns": 137626.0, "deser_p75_ns": 142078.0, "deser_p95_ns": 150040.4, "deser_p99_ns": 153503.55, "deser_ci_low_ns": 136844.6420212766, "deser_ci_high_ns": 139402.94308510638, "total_mean_ns": 239141.89361702127, "total_median_ns": 237283.5, "total_std_ns": 11612.619747839666, "total_mad_ns": 6397.5, "total_cv": 0.04855953748713279, "total_min_ns": 215691.0, "total_max_ns": 267503.0, "total_p5_ns": 220643.35, "total_p25_ns": 231835.5, "total_p50_ns": 237283.5, "total_p75_ns": 246939.0, "total_p95_ns": 258796.55, "total_p99_ns": 267007.31, "total_ci_low_ns": 236866.9470744681, "total_ci_high_ns": 241454.5199468085, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.807934925597817}, {"serializer": "FsPicklerJson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 91477.62790697675, "avg_time_deser_ns": 112234.05813953489, "avg_time_total_ns": 203711.68604651163, "median_size_bytes": 15794.0, "avg_ops_per_sec": 4908.898548764057, "min_ops_per_sec": 4384.157408787605, "max_ops_per_sec": 5365.7568131697135, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 91477.62790697675, "ser_median_ns": 91093.5, "ser_std_ns": 5540.236325489272, "ser_mad_ns": 3526.5, "ser_cv": 0.06056383896533824, "ser_min_ns": 79275.0, "ser_max_ns": 106614.0, "ser_p5_ns": 82584.75, "ser_p25_ns": 87599.25, "ser_p50_ns": 91093.5, "ser_p75_ns": 94674.5, "ser_p95_ns": 101956.5, "ser_p99_ns": 104650.50000000001, "ser_ci_low_ns": 90318.3011627907, "ser_ci_high_ns": 92719.58110465115, "deser_mean_ns": 112234.05813953489, "deser_median_ns": 111053.5, "deser_std_ns": 4810.867441299593, "deser_mad_ns": 2773.5, "deser_cv": 0.04286459494602331, "deser_min_ns": 104631.0, "deser_max_ns": 126999.0, "deser_p5_ns": 105807.25, "deser_p25_ns": 108875.75, "deser_p50_ns": 111053.5, "deser_p75_ns": 115407.75, "deser_p95_ns": 120606.0, "deser_p99_ns": 125649.20000000001, "deser_ci_low_ns": 111277.83808139534, "deser_ci_high_ns": 113266.08604651163, "total_mean_ns": 203711.68604651163, "total_median_ns": 202446.5, "total_std_ns": 9566.721959033308, "total_mad_ns": 5830.0, "total_cv": 0.04696206754112783, "total_min_ns": 186367.0, "total_max_ns": 228094.0, "total_p5_ns": 190279.5, "total_p25_ns": 197475.5, "total_p50_ns": 202446.5, "total_p75_ns": 209508.75, "total_p95_ns": 221841.75, "total_p99_ns": 227703.0, "total_ci_low_ns": 201789.66075581397, "total_ci_high_ns": 205777.8273255814, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.671167676436127}, {"serializer": "MemoryPack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 10232.139534883721, "avg_time_deser_ns": 8722.383720930233, "avg_time_total_ns": 18954.523255813954, "median_size_bytes": 6259.0, "avg_ops_per_sec": 52757.85555267228, "min_ops_per_sec": 41605.99126274184, "max_ops_per_sec": 63303.1588276255, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 10232.139534883721, "ser_median_ns": 9835.0, "ser_std_ns": 1135.2263538249122, "ser_mad_ns": 626.0, "ser_cv": 0.11094711423301686, "ser_min_ns": 8401.0, "ser_max_ns": 13074.0, "ser_p5_ns": 8882.0, "ser_p25_ns": 9477.75, "ser_p50_ns": 9835.0, "ser_p75_ns": 10878.5, "ser_p95_ns": 12553.75, "ser_p99_ns": 13012.800000000001, "ser_ci_low_ns": 10013.742441860464, "ser_ci_high_ns": 10490.268895348838, "deser_mean_ns": 8722.383720930233, "deser_median_ns": 8484.0, "deser_std_ns": 914.915118770809, "deser_mad_ns": 482.5, "deser_cv": 0.1048927848215825, "deser_min_ns": 7396.0, "deser_max_ns": 11656.0, "deser_p5_ns": 7735.75, "deser_p25_ns": 8035.75, "deser_p50_ns": 8484.0, "deser_p75_ns": 9082.0, "deser_p95_ns": 10847.5, "deser_p99_ns": 11564.2, "deser_ci_low_ns": 8536.294767441861, "deser_ci_high_ns": 8925.058720930232, "total_mean_ns": 18954.523255813954, "total_median_ns": 18367.5, "total_std_ns": 1898.5554615626256, "total_mad_ns": 1073.5, "total_cv": 0.10016371479985804, "total_min_ns": 15797.0, "total_max_ns": 24035.0, "total_p5_ns": 16851.0, "total_p25_ns": 17516.5, "total_p50_ns": 18367.5, "total_p75_ns": 20036.0, "total_p95_ns": 22919.25, "total_p99_ns": 23958.5, "total_ci_low_ns": 18565.75581395349, "total_ci_high_ns": 19355.00726744186, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "CsvHelper", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "33.1.0", "avg_time_ser_ns": 2499080.114942529, "avg_time_deser_ns": 1029047.8505747126, "avg_time_total_ns": 3528127.9655172415, "median_size_bytes": 7206.0, "avg_ops_per_sec": 283.43643138051397, "min_ops_per_sec": 255.2432059363444, "max_ops_per_sec": 307.0324241591533, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 2499080.114942529, "ser_median_ns": 2469170.0, "ser_std_ns": 117699.2370150158, "ser_mad_ns": 70334.0, "ser_cv": 0.04709702434558506, "ser_min_ns": 2263516.0, "ser_max_ns": 2856586.0, "ser_p5_ns": 2342078.3, "ser_p25_ns": 2420731.0, "ser_p50_ns": 2469170.0, "ser_p75_ns": 2569014.0, "ser_p95_ns": 2719085.4, "ser_p99_ns": 2846679.66, "ser_ci_low_ns": 2475273.899712644, "ser_ci_high_ns": 2524067.226149425, "deser_mean_ns": 1029047.8505747126, "deser_median_ns": 1025940.0, "deser_std_ns": 31211.367220609518, "deser_mad_ns": 17580.0, "deser_cv": 0.030330336148293096, "deser_min_ns": 974253.0, "deser_max_ns": 1111654.0, "deser_p5_ns": 985707.8, "deser_p25_ns": 1009153.0, "deser_p50_ns": 1025940.0, "deser_p75_ns": 1044721.5, "deser_p95_ns": 1091358.1, "deser_p99_ns": 1107535.46, "deser_ci_low_ns": 1022165.9465517242, "deser_ci_high_ns": 1035358.8784482758, "total_mean_ns": 3528127.9655172415, "total_median_ns": 3500627.0, "total_std_ns": 128477.94107717102, "total_mad_ns": 74674.0, "total_cv": 0.0364153291300293, "total_min_ns": 3256985.0, "total_max_ns": 3917832.0, "total_p5_ns": 3341706.3, "total_p25_ns": 3445996.5, "total_p50_ns": 3500627.0, "total_p75_ns": 3602809.5, "total_p95_ns": 3793421.3000000003, "total_p99_ns": 3872089.46, "total_ci_low_ns": 3502945.0362068964, "total_ci_high_ns": 3556020.5612068963, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 38.34126545499929}, {"serializer": "System.Text.Json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "8.0.0.0", "avg_time_ser_ns": 52539.67391304348, "avg_time_deser_ns": 68741.91304347826, "avg_time_total_ns": 121281.58695652174, "median_size_bytes": 15456.0, "avg_ops_per_sec": 8245.274695807619, "min_ops_per_sec": 7067.887055164859, "max_ops_per_sec": 9043.553754883518, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 52539.67391304348, "ser_median_ns": 51084.0, "ser_std_ns": 3842.796663914331, "ser_mad_ns": 1838.0, "ser_cv": 0.07314085485712007, "ser_min_ns": 47346.0, "ser_max_ns": 63563.0, "ser_p5_ns": 48815.5, "ser_p25_ns": 49675.5, "ser_p50_ns": 51084.0, "ser_p75_ns": 54468.5, "ser_p95_ns": 61230.75, "ser_p99_ns": 63325.49, "ser_ci_low_ns": 51815.86304347826, "ser_ci_high_ns": 53364.753532608695, "deser_mean_ns": 68741.91304347826, "deser_median_ns": 67318.5, "deser_std_ns": 3716.657867848638, "deser_mad_ns": 1867.5, "deser_cv": 0.05406683787659366, "deser_min_ns": 63230.0, "deser_max_ns": 78986.0, "deser_p5_ns": 64904.15, "deser_p25_ns": 65872.25, "deser_p50_ns": 67318.5, "deser_p75_ns": 71079.0, "deser_p95_ns": 76304.85, "deser_p99_ns": 78255.27, "deser_ci_low_ns": 67989.25652173912, "deser_ci_high_ns": 69516.02092391305, "total_mean_ns": 121281.58695652174, "total_median_ns": 118662.0, "total_std_ns": 6982.410418765981, "total_mad_ns": 3656.5, "total_cv": 0.05757189194159462, "total_min_ns": 110576.0, "total_max_ns": 141485.0, "total_p5_ns": 113796.5, "total_p25_ns": 115948.0, "total_p50_ns": 118662.0, "total_p75_ns": 126474.0, "total_p95_ns": 134605.05000000002, "total_p99_ns": 140037.19, "total_ci_low_ns": 119909.51032608697, "total_ci_high_ns": 122764.96902173913, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.627404764180575}, {"serializer": "SharpSerializer", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 294737.56666666665, "avg_time_deser_ns": 792224.0555555555, "avg_time_total_ns": 1086961.6222222222, "median_size_bytes": 52355.0, "avg_ops_per_sec": 919.9956829713686, "min_ops_per_sec": 853.219024736526, "max_ops_per_sec": 965.9166645738472, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 294737.56666666665, "ser_median_ns": 294376.0, "ser_std_ns": 10443.966749362893, "ser_mad_ns": 6916.5, "ser_cv": 0.035434800074788206, "ser_min_ns": 275280.0, "ser_max_ns": 321440.0, "ser_p5_ns": 279758.2, "ser_p25_ns": 286924.25, "ser_p50_ns": 294376.0, "ser_p75_ns": 299988.25, "ser_p95_ns": 316226.4, "ser_p99_ns": 321241.53, "ser_ci_low_ns": 292673.3033333333, "ser_ci_high_ns": 296986.26666666666, "deser_mean_ns": 792224.0555555555, "deser_median_ns": 785697.0, "deser_std_ns": 19503.704830057355, "deser_mad_ns": 12791.5, "deser_cv": 0.02461892528166186, "deser_min_ns": 760006.0, "deser_max_ns": 850815.0, "deser_p5_ns": 767961.4, "deser_p25_ns": 778006.0, "deser_p50_ns": 785697.0, "deser_p75_ns": 805198.0, "deser_p95_ns": 826555.1, "deser_p99_ns": 845663.68, "deser_ci_low_ns": 788381.7880555555, "deser_ci_high_ns": 796309.8422222222, "total_mean_ns": 1086961.6222222222, "total_median_ns": 1081524.5, "total_std_ns": 27935.68748521165, "total_mad_ns": 19027.5, "total_cv": 0.025700711887232004, "total_min_ns": 1035286.0, "total_max_ns": 1172032.0, "total_p5_ns": 1051072.15, "total_p25_ns": 1065726.25, "total_p50_ns": 1081524.5, "total_p75_ns": 1105751.75, "total_p95_ns": 1136207.5999999999, "total_p99_ns": 1163587.68, "total_ci_low_ns": 1081346.1577777776, "total_ci_high_ns": 1092727.1008333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 53.10799589791864}, {"serializer": "ProtoBuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "2.4.9.1", "avg_time_ser_ns": 18888.70731707317, "avg_time_deser_ns": 30814.743902439026, "avg_time_total_ns": 49703.45121951219, "median_size_bytes": 4841.0, "avg_ops_per_sec": 20119.327239140042, "min_ops_per_sec": 18000.504014112394, "max_ops_per_sec": 21798.365122615804, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 18888.70731707317, "ser_median_ns": 18694.0, "ser_std_ns": 1125.092824568896, "ser_mad_ns": 538.0, "ser_cv": 0.05956431034070523, "ser_min_ns": 16670.0, "ser_max_ns": 22235.0, "ser_p5_ns": 17392.25, "ser_p25_ns": 18186.0, "ser_p50_ns": 18694.0, "ser_p75_ns": 19274.0, "ser_p95_ns": 21421.85, "ser_p99_ns": 21757.91, "ser_ci_low_ns": 18658.453658536586, "ser_ci_high_ns": 19142.376829268294, "deser_mean_ns": 30814.743902439026, "deser_median_ns": 30682.5, "deser_std_ns": 1062.8906173584062, "deser_mad_ns": 649.5, "deser_cv": 0.03449292393029679, "deser_min_ns": 28469.0, "deser_max_ns": 33928.0, "deser_p5_ns": 29368.3, "deser_p25_ns": 30075.0, "deser_p50_ns": 30682.5, "deser_p75_ns": 31354.5, "deser_p95_ns": 32699.5, "deser_p99_ns": 33591.85, "deser_ci_low_ns": 30604.50030487805, "deser_ci_high_ns": 31046.30030487805, "total_mean_ns": 49703.45121951219, "total_median_ns": 49639.0, "total_std_ns": 1945.9331326770575, "total_mad_ns": 1128.5, "total_cv": 0.03915086548181464, "total_min_ns": 45875.0, "total_max_ns": 55554.0, "total_p5_ns": 46448.2, "total_p25_ns": 48414.25, "total_p50_ns": 49639.0, "total_p75_ns": 50513.0, "total_p95_ns": 53279.75, "total_p99_ns": 55178.97, "total_ci_low_ns": 49294.86737804878, "total_ci_high_ns": 50126.38932926829, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.927507311500777}, {"serializer": "FlatSharp", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "7.5.1", "avg_time_ser_ns": 17566.863636363636, "avg_time_deser_ns": 14620.579545454546, "avg_time_total_ns": 32187.44318181818, "median_size_bytes": 7870.0, "avg_ops_per_sec": 31068.016007089158, "min_ops_per_sec": 24681.60726626518, "max_ops_per_sec": 36488.360213092026, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 17566.863636363636, "ser_median_ns": 17114.0, "ser_std_ns": 1745.0724332483098, "ser_mad_ns": 864.5, "ser_cv": 0.09933887285582312, "ser_min_ns": 14392.0, "ser_max_ns": 22586.0, "ser_p5_ns": 15405.85, "ser_p25_ns": 16492.75, "ser_p50_ns": 17114.0, "ser_p75_ns": 18300.25, "ser_p95_ns": 21262.1, "ser_p99_ns": 22010.929999999997, "ser_ci_low_ns": 17200.816761363636, "ser_ci_high_ns": 17946.32869318182, "deser_mean_ns": 14620.579545454546, "deser_median_ns": 14348.5, "deser_std_ns": 1248.326969781895, "deser_mad_ns": 841.0, "deser_cv": 0.08538149708094114, "deser_min_ns": 12807.0, "deser_max_ns": 18591.0, "deser_p5_ns": 13015.05, "deser_p25_ns": 13759.0, "deser_p50_ns": 14348.5, "deser_p75_ns": 15312.25, "deser_p95_ns": 17221.75, "deser_p99_ns": 17720.999999999996, "deser_ci_low_ns": 14362.314204545455, "deser_ci_high_ns": 14894.448579545455, "total_mean_ns": 32187.44318181818, "total_median_ns": 31489.5, "total_std_ns": 2884.4212306483682, "total_mad_ns": 1422.0, "total_cv": 0.0896132449649713, "total_min_ns": 27406.0, "total_max_ns": 40516.0, "total_p5_ns": 28374.55, "total_p25_ns": 30565.75, "total_p50_ns": 31489.5, "total_p75_ns": 33593.0, "total_p95_ns": 38182.75, "total_p99_ns": 40036.63, "total_ci_low_ns": 31598.420454545452, "total_ci_high_ns": 32805.13664772727, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.383387240126175}, {"serializer": "ZeroFormatter", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.6.4", "avg_time_ser_ns": 11286.761904761905, "avg_time_deser_ns": 12969.22619047619, "avg_time_total_ns": 24255.988095238095, "median_size_bytes": 5358.0, "avg_ops_per_sec": 41226.933162797795, "min_ops_per_sec": 33098.33515374177, "max_ops_per_sec": 47192.071731949036, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 11286.761904761905, "ser_median_ns": 11251.0, "ser_std_ns": 993.911023860056, "ser_mad_ns": 632.5, "ser_cv": 0.08805989106944156, "ser_min_ns": 9487.0, "ser_max_ns": 14234.0, "ser_p5_ns": 9846.05, "ser_p25_ns": 10608.0, "ser_p50_ns": 11251.0, "ser_p75_ns": 11873.75, "ser_p95_ns": 13051.15, "ser_p99_ns": 13878.76, "ser_ci_low_ns": 11079.844047619048, "ser_ci_high_ns": 11489.122916666665, "deser_mean_ns": 12969.22619047619, "deser_median_ns": 12792.0, "deser_std_ns": 959.8977148218723, "deser_mad_ns": 508.0, "deser_cv": 0.07401349168593904, "deser_min_ns": 11291.0, "deser_max_ns": 16160.0, "deser_p5_ns": 11691.0, "deser_p25_ns": 12315.75, "deser_p50_ns": 12792.0, "deser_p75_ns": 13354.5, "deser_p95_ns": 14875.599999999999, "deser_p99_ns": 16009.77, "deser_ci_low_ns": 12779.999404761904, "deser_ci_high_ns": 13187.659226190477, "total_mean_ns": 24255.988095238095, "total_median_ns": 24117.0, "total_std_ns": 1794.136839780224, "total_mad_ns": 1116.0, "total_cv": 0.07396675957853255, "total_min_ns": 21190.0, "total_max_ns": 30213.0, "total_p5_ns": 21689.35, "total_p25_ns": 23033.5, "total_p50_ns": 24117.0, "total_p75_ns": 25312.5, "total_p95_ns": 27546.75, "total_p99_ns": 28749.710000000003, "total_ci_low_ns": 23856.613988095236, "total_ci_high_ns": 24642.07351190476, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 0.9440753045404208, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.856387412375949}, {"serializer": "GroBuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.9.2", "avg_time_ser_ns": 10477.707865168539, "avg_time_deser_ns": 16079.955056179775, "avg_time_total_ns": 26557.662921348314, "median_size_bytes": 15030.0, "avg_ops_per_sec": 37653.91566876739, "min_ops_per_sec": 31988.739963532837, "max_ops_per_sec": 44206.71057866584, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 10477.707865168539, "ser_median_ns": 10221.0, "ser_std_ns": 993.7928401543159, "ser_mad_ns": 534.0, "ser_cv": 0.09484830584540546, "ser_min_ns": 8934.0, "ser_max_ns": 13097.0, "ser_p5_ns": 9294.2, "ser_p25_ns": 9727.0, "ser_p50_ns": 10221.0, "ser_p75_ns": 11045.0, "ser_p95_ns": 12523.8, "ser_p99_ns": 12700.120000000003, "ser_ci_low_ns": 10271.457303370786, "ser_ci_high_ns": 10680.983146067416, "deser_mean_ns": 16079.955056179775, "deser_median_ns": 15838.0, "deser_std_ns": 1391.0461964594747, "deser_mad_ns": 923.0, "deser_cv": 0.0865080898298204, "deser_min_ns": 13502.0, "deser_max_ns": 19172.0, "deser_p5_ns": 13886.4, "deser_p25_ns": 15114.0, "deser_p50_ns": 15838.0, "deser_p75_ns": 17113.0, "deser_p95_ns": 18511.4, "deser_p99_ns": 18985.440000000002, "deser_ci_low_ns": 15791.572471910113, "deser_ci_high_ns": 16371.579213483146, "total_mean_ns": 26557.662921348314, "total_median_ns": 26254.0, "total_std_ns": 2223.903478243012, "total_mad_ns": 1658.0, "total_cv": 0.08373867402524085, "total_min_ns": 22621.0, "total_max_ns": 31261.0, "total_p5_ns": 23732.6, "total_p25_ns": 24754.0, "total_p50_ns": 26254.0, "total_p75_ns": 28288.0, "total_p95_ns": 30323.0, "total_p99_ns": 30980.280000000002, "total_ci_low_ns": 26120.523595505616, "total_ci_high_ns": 27016.11095505618, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 0.9918996603083355, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.6562747836749705}, {"serializer": "MS XmlSerializer", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 106555.32530120482, "avg_time_deser_ns": 177602.65060240965, "avg_time_total_ns": 284157.9759036145, "median_size_bytes": 29634.0, "avg_ops_per_sec": 3519.169211492402, "min_ops_per_sec": 3174.9357869237097, "max_ops_per_sec": 3730.2158675922574, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 106555.32530120482, "ser_median_ns": 104897.0, "ser_std_ns": 5483.560317780984, "ser_mad_ns": 2879.0, "ser_cv": 0.051462095416445426, "ser_min_ns": 97894.0, "ser_max_ns": 125387.0, "ser_p5_ns": 100926.9, "ser_p25_ns": 102965.5, "ser_p50_ns": 104897.0, "ser_p75_ns": 109497.5, "ser_p95_ns": 118280.69999999997, "ser_p99_ns": 123172.17999999998, "ser_ci_low_ns": 105479.58493975904, "ser_ci_high_ns": 107751.77289156626, "deser_mean_ns": 177602.65060240965, "deser_median_ns": 176691.0, "deser_std_ns": 5609.479940752159, "deser_mad_ns": 3933.0, "deser_cv": 0.03158443819236587, "deser_min_ns": 166064.0, "deser_max_ns": 192281.0, "deser_p5_ns": 170248.2, "deser_p25_ns": 172996.5, "deser_p50_ns": 176691.0, "deser_p75_ns": 181003.0, "deser_p95_ns": 187772.0, "deser_p99_ns": 191779.16, "deser_ci_low_ns": 176414.2545180723, "deser_ci_high_ns": 178836.45481927713, "total_mean_ns": 284157.9759036145, "total_median_ns": 282136.0, "total_std_ns": 9779.042306812906, "total_mad_ns": 6967.0, "total_cv": 0.034414104604017615, "total_min_ns": 268081.0, "total_max_ns": 314967.0, "total_p5_ns": 271764.3, "total_p25_ns": 276758.0, "total_p50_ns": 282136.0, "total_p75_ns": 290119.0, "total_p95_ns": 301460.9, "total_p99_ns": 310034.69999999995, "total_ci_low_ns": 282180.62319277105, "total_ci_high_ns": 286258.3328313253, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 37.796684674938675}, {"serializer": "Ceras", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "4.1.7", "avg_time_ser_ns": 22505.01098901099, "avg_time_deser_ns": 40718.25274725275, "avg_time_total_ns": 63223.26373626374, "median_size_bytes": 4705.0, "avg_ops_per_sec": 15816.962632165061, "min_ops_per_sec": 12202.562538133008, "max_ops_per_sec": 18524.007113218733, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 22505.01098901099, "ser_median_ns": 21717.0, "ser_std_ns": 2451.0271157415054, "ser_mad_ns": 1100.0, "ser_cv": 0.10891028300045362, "ser_min_ns": 19427.0, "ser_max_ns": 29246.0, "ser_p5_ns": 19760.5, "ser_p25_ns": 20791.5, "ser_p50_ns": 21717.0, "ser_p75_ns": 23601.5, "ser_p95_ns": 27319.5, "ser_p99_ns": 29030.0, "ser_ci_low_ns": 22018.73076923077, "ser_ci_high_ns": 23018.865934065932, "deser_mean_ns": 40718.25274725275, "deser_median_ns": 39928.0, "deser_std_ns": 4754.767718577981, "deser_mad_ns": 2873.0, "deser_cv": 0.11677239070379276, "deser_min_ns": 33697.0, "deser_max_ns": 54586.0, "deser_p5_ns": 35019.5, "deser_p25_ns": 37375.5, "deser_p50_ns": 39928.0, "deser_p75_ns": 43424.5, "deser_p95_ns": 51938.5, "deser_p99_ns": 53836.299999999996, "deser_ci_low_ns": 39741.24120879121, "deser_ci_high_ns": 41741.926373626375, "total_mean_ns": 63223.26373626374, "total_median_ns": 61639.0, "total_std_ns": 6665.81954090362, "total_mad_ns": 3763.0, "total_cv": 0.10543301859122822, "total_min_ns": 53984.0, "total_max_ns": 81950.0, "total_p5_ns": 55466.5, "total_p25_ns": 58260.0, "total_p50_ns": 61639.0, "total_p75_ns": 66461.0, "total_p95_ns": 77509.0, "total_p99_ns": 81217.4, "total_ci_low_ns": 61929.07142857143, "total_ci_high_ns": 64616.469780219784, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.886754029981502}, {"serializer": "fastJson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "2.4.0.4", "avg_time_ser_ns": 13197.835051546392, "avg_time_deser_ns": 18190.9587628866, "avg_time_total_ns": 31388.79381443299, "median_size_bytes": 972.0, "avg_ops_per_sec": 31858.503576527575, "min_ops_per_sec": 24138.26397605484, "max_ops_per_sec": 47607.7124494168, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 13197.835051546392, "ser_median_ns": 12516.0, "ser_std_ns": 2028.2659911466062, "ser_mad_ns": 1118.0, "ser_cv": 0.1536817200112646, "ser_min_ns": 8390.0, "ser_max_ns": 18452.0, "ser_p5_ns": 10857.6, "ser_p25_ns": 11779.0, "ser_p50_ns": 12516.0, "ser_p75_ns": 14528.0, "ser_p95_ns": 17136.0, "ser_p99_ns": 17962.399999999994, "ser_ci_low_ns": 12784.36881443299, "ser_ci_high_ns": 13614.94355670103, "deser_mean_ns": 18190.9587628866, "deser_median_ns": 17580.0, "deser_std_ns": 2190.008399515503, "deser_mad_ns": 1410.0, "deser_cv": 0.1203899381039543, "deser_min_ns": 12615.0, "deser_max_ns": 23456.0, "deser_p5_ns": 15544.4, "deser_p25_ns": 16637.0, "deser_p50_ns": 17580.0, "deser_p75_ns": 19984.0, "deser_p95_ns": 22377.6, "deser_p99_ns": 23274.559999999998, "deser_ci_low_ns": 17758.113659793813, "deser_ci_high_ns": 18642.465979381443, "total_mean_ns": 31388.79381443299, "total_median_ns": 30326.0, "total_std_ns": 4024.5267473801196, "total_mad_ns": 2367.0, "total_cv": 0.12821539977524044, "total_min_ns": 21005.0, "total_max_ns": 41428.0, "total_p5_ns": 26626.4, "total_p25_ns": 28495.0, "total_p50_ns": 30326.0, "total_p75_ns": 34669.0, "total_p95_ns": 39152.6, "total_p99_ns": 40363.35999999999, "total_ci_low_ns": 30602.436082474225, "total_ci_high_ns": 32174.62757731959, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.844769744062603}, {"serializer": "SharpYaml", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "3.13.0", "avg_time_ser_ns": 105907.95604395604, "avg_time_deser_ns": 110453.61538461539, "avg_time_total_ns": 216361.57142857142, "median_size_bytes": 469.0, "avg_ops_per_sec": 4621.892849997788, "min_ops_per_sec": 3915.580093190806, "max_ops_per_sec": 5276.849931664793, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 105907.95604395604, "ser_median_ns": 104293.0, "ser_std_ns": 11519.474585734355, "ser_mad_ns": 7023.0, "ser_cv": 0.10876873670334372, "ser_min_ns": 84546.0, "ser_max_ns": 134755.0, "ser_p5_ns": 90036.0, "ser_p25_ns": 98118.0, "ser_p50_ns": 104293.0, "ser_p75_ns": 112202.0, "ser_p95_ns": 126837.5, "ser_p99_ns": 134236.6, "ser_ci_low_ns": 103571.50934065934, "ser_ci_high_ns": 108316.71785714287, "deser_mean_ns": 110453.61538461539, "deser_median_ns": 109719.0, "deser_std_ns": 4984.5295281595045, "deser_mad_ns": 3191.0, "deser_cv": 0.0451278078205286, "deser_min_ns": 102192.0, "deser_max_ns": 123622.0, "deser_p5_ns": 104262.0, "deser_p25_ns": 106838.5, "deser_p50_ns": 109719.0, "deser_p75_ns": 113197.0, "deser_p95_ns": 121627.0, "deser_p99_ns": 123060.4, "deser_ci_low_ns": 109450.86648351648, "deser_ci_high_ns": 111444.97527472528, "total_mean_ns": 216361.57142857142, "total_median_ns": 213316.0, "total_std_ns": 14813.003899084268, "total_mad_ns": 10805.0, "total_cv": 0.06846411680816694, "total_min_ns": 189507.0, "total_max_ns": 255390.0, "total_p5_ns": 197321.5, "total_p25_ns": 204378.0, "total_p50_ns": 213316.0, "total_p75_ns": 226572.5, "total_p95_ns": 240458.5, "total_p99_ns": 251704.49999999997, "total_ci_low_ns": 213273.0717032967, "total_ci_high_ns": 219336.35302197802, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.24426336639197}, {"serializer": "MS Bond Fast", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 3530.2613636363635, "avg_time_deser_ns": 2534.9545454545455, "avg_time_total_ns": 6065.215909090909, "median_size_bytes": 376.0, "avg_ops_per_sec": 164874.59226325975, "min_ops_per_sec": 123839.0092879257, "max_ops_per_sec": 261848.65147944487, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 3530.2613636363635, "ser_median_ns": 3406.0, "ser_std_ns": 561.7947736366683, "ser_mad_ns": 300.0, "ser_cv": 0.15913687848255767, "ser_min_ns": 2178.0, "ser_max_ns": 5099.0, "ser_p5_ns": 2822.4, "ser_p25_ns": 3193.75, "ser_p50_ns": 3406.0, "ser_p75_ns": 3822.25, "ser_p95_ns": 4638.4, "ser_p99_ns": 4982.419999999999, "ser_ci_low_ns": 3417.3392045454543, "ser_ci_high_ns": 3650.9869318181813, "deser_mean_ns": 2534.9545454545455, "deser_median_ns": 2430.5, "deser_std_ns": 410.8052062113694, "deser_mad_ns": 275.0, "deser_cv": 0.16205624157955364, "deser_min_ns": 1580.0, "deser_max_ns": 3841.0, "deser_p5_ns": 2060.9, "deser_p25_ns": 2228.75, "deser_p50_ns": 2430.5, "deser_p75_ns": 2824.0, "deser_p95_ns": 3229.3999999999996, "deser_p99_ns": 3499.0899999999983, "deser_ci_low_ns": 2454.647159090909, "deser_ci_high_ns": 2620.534375, "total_mean_ns": 6065.215909090909, "total_median_ns": 5958.5, "total_std_ns": 849.4796439533546, "total_mad_ns": 410.0, "total_cv": 0.14005760993274843, "total_min_ns": 3819.0, "total_max_ns": 8075.0, "total_p5_ns": 5007.7, "total_p25_ns": 5543.75, "total_p50_ns": 5958.5, "total_p75_ns": 6350.5, "total_p95_ns": 7711.899999999999, "total_p99_ns": 7939.279999999999, "total_ci_low_ns": 5899.859943181818, "total_ci_high_ns": 6246.680113636364, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.4694976076555024, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.7969169259932368}, {"serializer": "MemoryPack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 4721.926315789474, "avg_time_deser_ns": 3445.0947368421052, "avg_time_total_ns": 8167.021052631579, "median_size_bytes": 352.0, "avg_ops_per_sec": 122443.66624692119, "min_ops_per_sec": 74532.30975627934, "max_ops_per_sec": 213174.1632914091, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 4721.926315789474, "ser_median_ns": 4341.0, "ser_std_ns": 1264.7515039932955, "ser_mad_ns": 769.0, "ser_cv": 0.26784651419996536, "ser_min_ns": 2402.0, "ser_max_ns": 7847.0, "ser_p5_ns": 3144.7, "ser_p25_ns": 3800.0, "ser_p50_ns": 4341.0, "ser_p75_ns": 5550.0, "ser_p95_ns": 7209.7, "ser_p99_ns": 7800.9400000000005, "ser_ci_low_ns": 4466.907105263158, "ser_ci_high_ns": 4984.827368421053, "deser_mean_ns": 3445.0947368421052, "deser_median_ns": 3265.0, "deser_std_ns": 735.7622632010477, "deser_mad_ns": 487.0, "deser_cv": 0.21356807850093354, "deser_min_ns": 2289.0, "deser_max_ns": 5619.0, "deser_p5_ns": 2577.7, "deser_p25_ns": 2866.5, "deser_p50_ns": 3265.0, "deser_p75_ns": 3907.0, "deser_p95_ns": 4771.099999999999, "deser_p99_ns": 5574.82, "deser_ci_low_ns": 3294.5407894736845, "deser_ci_high_ns": 3597.1623684210526, "total_mean_ns": 8167.021052631579, "total_median_ns": 7720.0, "total_std_ns": 1933.1997782254155, "total_mad_ns": 1192.0, "total_cv": 0.23670806843365483, "total_min_ns": 4691.0, "total_max_ns": 13417.0, "total_p5_ns": 5962.3, "total_p25_ns": 6691.5, "total_p50_ns": 7720.0, "total_p75_ns": 9362.0, "total_p95_ns": 11862.9, "total_p99_ns": 12766.520000000002, "total_ci_low_ns": 7795.07447368421, "total_ci_high_ns": 8565.521315789474, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.8559556786703602, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.8507442061055992}, {"serializer": "System.Text.Json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "8.0.0.0", "avg_time_ser_ns": 9708.344086021505, "avg_time_deser_ns": 10071.182795698925, "avg_time_total_ns": 19779.52688172043, "median_size_bytes": 588.0, "avg_ops_per_sec": 50557.32657206104, "min_ops_per_sec": 33714.30497960284, "max_ops_per_sec": 78161.63826793809, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 9708.344086021505, "ser_median_ns": 9063.0, "ser_std_ns": 2396.643742433154, "ser_mad_ns": 1511.0, "ser_cv": 0.2468643180749996, "ser_min_ns": 5523.0, "ser_max_ns": 15887.0, "ser_p5_ns": 6708.6, "ser_p25_ns": 7975.0, "ser_p50_ns": 9063.0, "ser_p75_ns": 11131.0, "ser_p95_ns": 14427.599999999999, "ser_p99_ns": 15301.88, "ser_ci_low_ns": 9221.927419354839, "ser_ci_high_ns": 10156.84193548387, "deser_mean_ns": 10071.182795698925, "deser_median_ns": 9639.0, "deser_std_ns": 1600.6308806912773, "deser_mad_ns": 916.0, "deser_cv": 0.15893176731682943, "deser_min_ns": 6947.0, "deser_max_ns": 14410.0, "deser_p5_ns": 7869.8, "deser_p25_ns": 9082.0, "deser_p50_ns": 9639.0, "deser_p75_ns": 11112.0, "deser_p95_ns": 12898.0, "deser_p99_ns": 14154.24, "deser_ci_low_ns": 9750.373924731184, "deser_ci_high_ns": 10420.923655913977, "total_mean_ns": 19779.52688172043, "total_median_ns": 18573.0, "total_std_ns": 3844.4115979686153, "total_mad_ns": 2240.0, "total_cv": 0.19436317263591832, "total_min_ns": 12794.0, "total_max_ns": 29661.0, "total_p5_ns": 14657.4, "total_p25_ns": 17113.0, "total_p50_ns": 18573.0, "total_p75_ns": 22068.0, "total_p95_ns": 27181.199999999997, "total_p99_ns": 28594.719999999998, "total_ci_low_ns": 19035.334677419356, "total_ci_high_ns": 20547.783602150535, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.166163543075501}, {"serializer": "MS XmlSerializer", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 14582.824175824177, "avg_time_deser_ns": 21339.351648351647, "avg_time_total_ns": 35922.17582417582, "median_size_bytes": 1258.0, "avg_ops_per_sec": 27837.957391405966, "min_ops_per_sec": 21875.615251678955, "max_ops_per_sec": 33789.49146815341, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 14582.824175824177, "ser_median_ns": 14023.0, "ser_std_ns": 2196.4285940458817, "ser_mad_ns": 1122.0, "ser_cv": 0.1506175050568863, "ser_min_ns": 11727.0, "ser_max_ns": 20241.0, "ser_p5_ns": 11911.0, "ser_p25_ns": 13005.5, "ser_p50_ns": 14023.0, "ser_p75_ns": 15505.5, "ser_p95_ns": 18796.0, "ser_p99_ns": 19835.1, "ser_ci_low_ns": 14145.392032967035, "ser_ci_high_ns": 15041.931043956043, "deser_mean_ns": 21339.351648351647, "deser_median_ns": 21099.0, "deser_std_ns": 1807.0868968445463, "deser_mad_ns": 1122.0, "deser_cv": 0.08468330840708248, "deser_min_ns": 17670.0, "deser_max_ns": 26178.0, "deser_p5_ns": 19026.5, "deser_p25_ns": 20008.0, "deser_p50_ns": 21099.0, "deser_p75_ns": 22347.5, "deser_p95_ns": 24998.5, "deser_p99_ns": 26049.3, "deser_ci_low_ns": 20985.445054945056, "deser_ci_high_ns": 21707.713186813187, "total_mean_ns": 35922.17582417582, "total_median_ns": 35405.0, "total_std_ns": 3718.385765634828, "total_mad_ns": 2130.0, "total_cv": 0.10351226450855279, "total_min_ns": 29595.0, "total_max_ns": 45713.0, "total_p5_ns": 31235.5, "total_p25_ns": 33308.5, "total_p50_ns": 35405.0, "total_p75_ns": 37727.5, "total_p95_ns": 43602.0, "total_p99_ns": 44698.7, "total_ci_low_ns": 35190.74478021978, "total_ci_high_ns": 36726.80054945055, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.355643435732153}, {"serializer": "LightProto", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.3.4", "avg_time_ser_ns": 5589.252747252747, "avg_time_deser_ns": 5146.450549450549, "avg_time_total_ns": 10735.703296703297, "median_size_bytes": 208.0, "avg_ops_per_sec": 93147.13459965668, "min_ops_per_sec": 62313.06081754736, "max_ops_per_sec": 154249.5758136665, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 5589.252747252747, "ser_median_ns": 5198.0, "ser_std_ns": 1390.04179468266, "ser_mad_ns": 926.0, "ser_cv": 0.2486990403799326, "ser_min_ns": 2877.0, "ser_max_ns": 9485.0, "ser_p5_ns": 3867.5, "ser_p25_ns": 4467.5, "ser_p50_ns": 5198.0, "ser_p75_ns": 6569.0, "ser_p95_ns": 8099.0, "ser_p99_ns": 8953.999999999996, "ser_ci_low_ns": 5303.4857142857145, "ser_ci_high_ns": 5885.890384615384, "deser_mean_ns": 5146.450549450549, "deser_median_ns": 5011.0, "deser_std_ns": 829.5777944062371, "deser_mad_ns": 552.0, "deser_cv": 0.1611941641010823, "deser_min_ns": 3502.0, "deser_max_ns": 7601.0, "deser_p5_ns": 4036.0, "deser_p25_ns": 4505.0, "deser_p50_ns": 5011.0, "deser_p75_ns": 5652.0, "deser_p95_ns": 6727.5, "deser_p99_ns": 7324.699999999998, "deser_ci_low_ns": 4984.696153846154, "deser_ci_high_ns": 5319.037362637362, "total_mean_ns": 10735.703296703297, "total_median_ns": 10125.0, "total_std_ns": 2126.0465893008786, "total_mad_ns": 1286.0, "total_cv": 0.19803514781874995, "total_min_ns": 6483.0, "total_max_ns": 16048.0, "total_p5_ns": 7970.0, "total_p25_ns": 9036.0, "total_p50_ns": 10125.0, "total_p75_ns": 12330.5, "total_p95_ns": 14357.0, "total_p99_ns": 15862.599999999999, "total_ci_low_ns": 10323.613736263736, "total_ci_high_ns": 11146.717582417583, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.994679005205321, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.2995150870167396}, {"serializer": "MS Bond Compact", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 3517.4, "avg_time_deser_ns": 2619.733333333333, "avg_time_total_ns": 6137.133333333333, "median_size_bytes": 208.0, "avg_ops_per_sec": 162942.5247401067, "min_ops_per_sec": 118708.45204178538, "max_ops_per_sec": 231374.36372049976, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 3517.4, "ser_median_ns": 3368.0, "ser_std_ns": 596.2342462526741, "ser_mad_ns": 326.5, "ser_cv": 0.16950993525122934, "ser_min_ns": 2495.0, "ser_max_ns": 5174.0, "ser_p5_ns": 2820.9, "ser_p25_ns": 3075.5, "ser_p50_ns": 3368.0, "ser_p75_ns": 3837.5, "ser_p95_ns": 4746.349999999999, "ser_p99_ns": 5057.41, "ser_ci_low_ns": 3395.5075, "ser_ci_high_ns": 3645.0175, "deser_mean_ns": 2619.733333333333, "deser_median_ns": 2577.0, "deser_std_ns": 317.2515678501381, "deser_mad_ns": 211.5, "deser_cv": 0.12110071044768098, "deser_min_ns": 1827.0, "deser_max_ns": 3462.0, "deser_p5_ns": 2220.8, "deser_p25_ns": 2354.25, "deser_p50_ns": 2577.0, "deser_p75_ns": 2775.5, "deser_p95_ns": 3203.7999999999997, "deser_p99_ns": 3401.48, "deser_ci_low_ns": 2555.2647222222226, "deser_ci_high_ns": 2686.878333333333, "total_mean_ns": 6137.133333333333, "total_median_ns": 5958.0, "total_std_ns": 842.15387582187, "total_mad_ns": 449.5, "total_cv": 0.13722267874608177, "total_min_ns": 4322.0, "total_max_ns": 8424.0, "total_p5_ns": 5129.0, "total_p25_ns": 5591.75, "total_p50_ns": 5958.0, "total_p75_ns": 6596.75, "total_p95_ns": 7762.749999999999, "total_p99_ns": 8351.91, "total_ci_low_ns": 5967.044166666667, "total_ci_high_ns": 6307.655277777778, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.5119298245614035, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 0.8820797400906703}, {"serializer": "ZeroFormatter", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.6.4", "avg_time_ser_ns": 4755.472527472528, "avg_time_deser_ns": 3541.7912087912086, "avg_time_total_ns": 8297.263736263736, "median_size_bytes": 288.0, "avg_ops_per_sec": 120521.66012626962, "min_ops_per_sec": 77887.68595685023, "max_ops_per_sec": 207943.43938448743, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 4755.472527472528, "ser_median_ns": 4472.0, "ser_std_ns": 1208.567198891677, "ser_mad_ns": 847.0, "ser_cv": 0.2541423995007316, "ser_min_ns": 2433.0, "ser_max_ns": 8087.0, "ser_p5_ns": 3101.0, "ser_p25_ns": 3865.0, "ser_p50_ns": 4472.0, "ser_p75_ns": 5433.5, "ser_p95_ns": 6935.5, "ser_p99_ns": 7884.499999999999, "ser_ci_low_ns": 4522.912087912088, "ser_ci_high_ns": 5003.542857142857, "deser_mean_ns": 3541.7912087912086, "deser_median_ns": 3463.0, "deser_std_ns": 610.8081625825015, "deser_mad_ns": 408.0, "deser_cv": 0.1724574167631317, "deser_min_ns": 2376.0, "deser_max_ns": 5275.0, "deser_p5_ns": 2713.5, "deser_p25_ns": 3136.5, "deser_p50_ns": 3463.0, "deser_p75_ns": 3905.5, "deser_p95_ns": 4670.5, "deser_p99_ns": 5017.5999999999985, "deser_ci_low_ns": 3417.726373626374, "deser_ci_high_ns": 3667.3472527472527, "total_mean_ns": 8297.263736263736, "total_median_ns": 7969.0, "total_std_ns": 1727.8578248813365, "total_mad_ns": 1232.0, "total_cv": 0.2082442935168639, "total_min_ns": 4809.0, "total_max_ns": 12839.0, "total_p5_ns": 6064.0, "total_p25_ns": 6996.5, "total_p50_ns": 7969.0, "total_p75_ns": 9410.5, "total_p95_ns": 11427.0, "total_p99_ns": 12669.8, "total_ci_low_ns": 7949.032967032967, "total_ci_high_ns": 8650.51923076923, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.8912666281087334, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.1321105733690815}, {"serializer": "FsPickler", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 12558.28735632184, "avg_time_deser_ns": 8886.71264367816, "avg_time_total_ns": 21445.0, "median_size_bytes": 516.0, "avg_ops_per_sec": 46630.916297505246, "min_ops_per_sec": 27024.10550210788, "max_ops_per_sec": 79891.34776703683, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 12558.28735632184, "ser_median_ns": 11301.0, "ser_std_ns": 3926.1333955587907, "ser_mad_ns": 1294.0, "ser_cv": 0.31263286817388963, "ser_min_ns": 6404.0, "ser_max_ns": 22932.0, "ser_p5_ns": 8231.5, "ser_p25_ns": 10206.5, "ser_p50_ns": 11301.0, "ser_p75_ns": 13543.0, "ser_p95_ns": 22122.5, "ser_p99_ns": 22741.08, "ser_ci_low_ns": 11783.879310344828, "ser_ci_high_ns": 13395.87356321839, "deser_mean_ns": 8886.71264367816, "deser_median_ns": 8334.0, "deser_std_ns": 1840.2200696759828, "deser_mad_ns": 695.0, "deser_cv": 0.20707545562251084, "deser_min_ns": 5712.0, "deser_max_ns": 14072.0, "deser_p5_ns": 6763.9, "deser_p25_ns": 7822.5, "deser_p50_ns": 8334.0, "deser_p75_ns": 9513.5, "deser_p95_ns": 12911.500000000002, "deser_p99_ns": 13820.02, "deser_ci_low_ns": 8509.291091954023, "deser_ci_high_ns": 9275.621264367815, "total_mean_ns": 21445.0, "total_median_ns": 19901.0, "total_std_ns": 5703.671504207354, "total_mad_ns": 2216.0, "total_cv": 0.26596742850115895, "total_min_ns": 12517.0, "total_max_ns": 37004.0, "total_p5_ns": 15101.6, "total_p25_ns": 17971.0, "total_p50_ns": 19901.0, "total_p75_ns": 22630.0, "total_p95_ns": 34926.9, "total_p99_ns": 36471.66, "total_ci_low_ns": 20306.608333333334, "total_ci_high_ns": 22677.597988505746, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.007605066852854}, {"serializer": "FlatSharp", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "7.5.1", "avg_time_ser_ns": 7336.076923076923, "avg_time_deser_ns": 5454.67032967033, "avg_time_total_ns": 12790.747252747253, "median_size_bytes": 572.0, "avg_ops_per_sec": 78181.51514058067, "min_ops_per_sec": 50238.633509168554, "max_ops_per_sec": 134300.29546065003, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 7336.076923076923, "ser_median_ns": 7151.0, "ser_std_ns": 1534.9286934633458, "ser_mad_ns": 958.0, "ser_cv": 0.2092301797756451, "ser_min_ns": 4270.0, "ser_max_ns": 11574.0, "ser_p5_ns": 5196.5, "ser_p25_ns": 6312.0, "ser_p50_ns": 7151.0, "ser_p75_ns": 8157.5, "ser_p95_ns": 10251.5, "ser_p99_ns": 10774.799999999996, "ser_ci_low_ns": 7026.101373626374, "ser_ci_high_ns": 7652.124175824176, "deser_mean_ns": 5454.67032967033, "deser_median_ns": 5421.0, "deser_std_ns": 1208.4802858222392, "deser_mad_ns": 953.0, "deser_cv": 0.22154964696010832, "deser_min_ns": 3176.0, "deser_max_ns": 8474.0, "deser_p5_ns": 3765.5, "deser_p25_ns": 4408.5, "deser_p50_ns": 5421.0, "deser_p75_ns": 6310.5, "deser_p95_ns": 7504.5, "deser_p99_ns": 8345.3, "deser_ci_low_ns": 5218.738736263736, "deser_ci_high_ns": 5701.759615384615, "total_mean_ns": 12790.747252747253, "total_median_ns": 12419.0, "total_std_ns": 2690.9064668224373, "total_mad_ns": 2032.0, "total_cv": 0.21037914467776483, "total_min_ns": 7446.0, "total_max_ns": 19905.0, "total_p5_ns": 9041.0, "total_p25_ns": 10821.0, "total_p50_ns": 12419.0, "total_p75_ns": 14646.0, "total_p95_ns": 17878.0, "total_p99_ns": 18968.999999999993, "total_ci_low_ns": 12243.411813186813, "total_ci_high_ns": 13353.583791208792, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9995373048004627, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.717094967467864}, {"serializer": "Ceras", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "4.1.7", "avg_time_ser_ns": 6764.888888888889, "avg_time_deser_ns": 16053.055555555555, "avg_time_total_ns": 22817.944444444445, "median_size_bytes": 284.0, "avg_ops_per_sec": 43825.15710101455, "min_ops_per_sec": 29592.803030303032, "max_ops_per_sec": 60960.741282614, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 6764.888888888889, "ser_median_ns": 6276.0, "ser_std_ns": 1432.7198495487128, "ser_mad_ns": 800.0, "ser_cv": 0.21178763954303947, "ser_min_ns": 4249.0, "ser_max_ns": 10926.0, "ser_p5_ns": 4968.55, "ser_p25_ns": 5725.25, "ser_p50_ns": 6276.0, "ser_p75_ns": 7756.0, "ser_p95_ns": 9416.55, "ser_p99_ns": 10565.55, "ser_ci_low_ns": 6490.570277777778, "ser_ci_high_ns": 7055.035, "deser_mean_ns": 16053.055555555555, "deser_median_ns": 15154.0, "deser_std_ns": 2985.0386795194495, "deser_mad_ns": 1688.5, "deser_cv": 0.18594831801266665, "deser_min_ns": 11255.0, "deser_max_ns": 24698.0, "deser_p5_ns": 12609.25, "deser_p25_ns": 14072.5, "deser_p50_ns": 15154.0, "deser_p75_ns": 17770.75, "deser_p95_ns": 22050.5, "deser_p99_ns": 23691.41, "deser_ci_low_ns": 15433.572222222223, "deser_ci_high_ns": 16662.23277777778, "total_mean_ns": 22817.944444444445, "total_median_ns": 21566.5, "total_std_ns": 4165.80652013161, "total_mad_ns": 2713.0, "total_cv": 0.18256712519719856, "total_min_ns": 16404.0, "total_max_ns": 33792.0, "total_p5_ns": 17787.15, "total_p25_ns": 19893.5, "total_p50_ns": 21566.5, "total_p75_ns": 25463.0, "total_p95_ns": 30825.1, "total_p99_ns": 33746.61, "total_ci_low_ns": 21962.67722222222, "total_ci_high_ns": 23716.47138888889, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.83968401328765}, {"serializer": "Jil", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "2.17.0", "avg_time_ser_ns": 11097.845360824742, "avg_time_deser_ns": 7681.443298969072, "avg_time_total_ns": 18779.288659793816, "median_size_bytes": 440.0, "avg_ops_per_sec": 53250.15330005473, "min_ops_per_sec": 33892.56058295204, "max_ops_per_sec": 81195.19324455992, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 11097.845360824742, "ser_median_ns": 9982.0, "ser_std_ns": 2814.7104326355898, "ser_mad_ns": 1853.0, "ser_cv": 0.25362674835707144, "ser_min_ns": 7115.0, "ser_max_ns": 18675.0, "ser_p5_ns": 7641.2, "ser_p25_ns": 8869.0, "ser_p50_ns": 9982.0, "ser_p75_ns": 13024.0, "ser_p95_ns": 16008.8, "ser_p99_ns": 18065.399999999994, "ser_ci_low_ns": 10560.305670103093, "ser_ci_high_ns": 11673.16005154639, "deser_mean_ns": 7681.443298969072, "deser_median_ns": 7471.0, "deser_std_ns": 1324.4474238422365, "deser_mad_ns": 911.0, "deser_cv": 0.17242168851522874, "deser_min_ns": 5201.0, "deser_max_ns": 10846.0, "deser_p5_ns": 5901.6, "deser_p25_ns": 6688.0, "deser_p50_ns": 7471.0, "deser_p75_ns": 8513.0, "deser_p95_ns": 10228.999999999998, "deser_p99_ns": 10831.6, "deser_ci_low_ns": 7427.604896907217, "deser_ci_high_ns": 7948.938402061855, "total_mean_ns": 18779.288659793816, "total_median_ns": 17214.0, "total_std_ns": 3960.383296261558, "total_mad_ns": 2805.0, "total_cv": 0.21089101765290402, "total_min_ns": 12316.0, "total_max_ns": 29505.0, "total_p5_ns": 14040.2, "total_p25_ns": 15643.0, "total_p50_ns": 17214.0, "total_p75_ns": 21928.0, "total_p95_ns": 25731.199999999986, "total_p99_ns": 28910.759999999995, "total_ci_low_ns": 18019.969845360825, "total_ci_high_ns": 19565.04175257732, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.630115383067842}, {"serializer": "ExtendedXmlSerializer", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "3.10.0.0", "avg_time_ser_ns": 24474.422680412372, "avg_time_deser_ns": 26146.938144329895, "avg_time_total_ns": 50621.36082474227, "median_size_bytes": 795.0, "avg_ops_per_sec": 19754.506471331933, "min_ops_per_sec": 12208.6705978586, "max_ops_per_sec": 28882.534731248015, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 24474.422680412372, "ser_median_ns": 22048.0, "ser_std_ns": 6380.0164655532235, "ser_mad_ns": 3348.0, "ser_cv": 0.26068097903119675, "ser_min_ns": 15790.0, "ser_max_ns": 41347.0, "ser_p5_ns": 18061.6, "ser_p25_ns": 19450.0, "ser_p50_ns": 22048.0, "ser_p75_ns": 28782.0, "ser_p95_ns": 37395.99999999999, "ser_p99_ns": 41109.88, "ser_ci_low_ns": 23206.65, "ser_ci_high_ns": 25835.338402061854, "deser_mean_ns": 26146.938144329895, "deser_median_ns": 24175.0, "deser_std_ns": 5587.732506002236, "deser_mad_ns": 2958.0, "deser_cv": 0.21370504168244134, "deser_min_ns": 18740.0, "deser_max_ns": 40809.0, "deser_p5_ns": 20420.8, "deser_p25_ns": 21795.0, "deser_p50_ns": 24175.0, "deser_p75_ns": 29331.0, "deser_p95_ns": 38729.6, "deser_p99_ns": 40083.23999999999, "deser_ci_low_ns": 25061.16262886598, "deser_ci_high_ns": 27293.049226804123, "total_mean_ns": 50621.36082474227, "total_median_ns": 46676.0, "total_std_ns": 11724.903932784808, "total_mad_ns": 5882.0, "total_cv": 0.23161969061594273, "total_min_ns": 34623.0, "total_max_ns": 81909.0, "total_p5_ns": 38714.4, "total_p25_ns": 41536.0, "total_p50_ns": 46676.0, "total_p75_ns": 57841.0, "total_p95_ns": 74085.59999999996, "total_p99_ns": 80686.91999999998, "total_ci_low_ns": 48360.12319587629, "total_ci_high_ns": 53062.75128865979, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.393381648134626}, {"serializer": "ServiceStack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 9845.1, "avg_time_deser_ns": 8358.977777777778, "avg_time_total_ns": 18204.077777777777, "median_size_bytes": 360.0, "avg_ops_per_sec": 54932.74705850399, "min_ops_per_sec": 38971.16134060795, "max_ops_per_sec": 89960.41741633682, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 9845.1, "ser_median_ns": 9403.5, "ser_std_ns": 1925.0316504037487, "ser_mad_ns": 1192.5, "ser_cv": 0.19553195502369186, "ser_min_ns": 5892.0, "ser_max_ns": 15245.0, "ser_p5_ns": 7552.15, "ser_p25_ns": 8501.0, "ser_p50_ns": 9403.5, "ser_p75_ns": 10923.25, "ser_p95_ns": 13564.4, "ser_p99_ns": 14593.52, "ser_ci_low_ns": 9449.02861111111, "ser_ci_high_ns": 10241.515277777778, "deser_mean_ns": 8358.977777777778, "deser_median_ns": 8188.5, "deser_std_ns": 1498.2904338677884, "deser_mad_ns": 1006.5, "deser_cv": 0.1792432608028905, "deser_min_ns": 5224.0, "deser_max_ns": 13422.0, "deser_p5_ns": 6352.3, "deser_p25_ns": 7229.75, "deser_p50_ns": 8188.5, "deser_p75_ns": 9441.75, "deser_p95_ns": 10880.449999999999, "deser_p99_ns": 12147.519999999999, "deser_ci_low_ns": 8063.1925, "deser_ci_high_ns": 8670.883888888888, "total_mean_ns": 18204.077777777777, "total_median_ns": 17733.0, "total_std_ns": 3219.1849873293536, "total_mad_ns": 2272.0, "total_cv": 0.17683867464349676, "total_min_ns": 11116.0, "total_max_ns": 25660.0, "total_p5_ns": 13928.4, "total_p25_ns": 15841.25, "total_p50_ns": 17733.0, "total_p75_ns": 20336.0, "total_p95_ns": 24318.55, "total_p99_ns": 25503.36, "total_ci_low_ns": 17534.325833333332, "total_ci_high_ns": 18877.115277777775, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.472142696022418}, {"serializer": "Hyperion", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "0.12.2", "avg_time_ser_ns": 6869.23595505618, "avg_time_deser_ns": 7673.6741573033705, "avg_time_total_ns": 14542.91011235955, "median_size_bytes": 776.0, "avg_ops_per_sec": 68762.02852619794, "min_ops_per_sec": 51140.43162524292, "max_ops_per_sec": 91827.36455463729, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 6869.23595505618, "ser_median_ns": 6754.0, "ser_std_ns": 1074.7474652899111, "ser_mad_ns": 616.0, "ser_cv": 0.15645807951884824, "ser_min_ns": 4777.0, "ser_max_ns": 9717.0, "ser_p5_ns": 5441.2, "ser_p25_ns": 6138.0, "ser_p50_ns": 6754.0, "ser_p75_ns": 7351.0, "ser_p95_ns": 9088.0, "ser_p99_ns": 9552.44, "ser_ci_low_ns": 6653.029494382023, "ser_ci_high_ns": 7102.069662921348, "deser_mean_ns": 7673.6741573033705, "deser_median_ns": 7479.0, "deser_std_ns": 1175.8578374887234, "deser_mad_ns": 642.0, "deser_cv": 0.15323270357650098, "deser_min_ns": 5860.0, "deser_max_ns": 10743.0, "deser_p5_ns": 6131.8, "deser_p25_ns": 6876.0, "deser_p50_ns": 7479.0, "deser_p75_ns": 8316.0, "deser_p95_ns": 10088.599999999999, "deser_p99_ns": 10621.560000000001, "deser_ci_low_ns": 7432.421629213483, "deser_ci_high_ns": 7919.859550561798, "total_mean_ns": 14542.91011235955, "total_median_ns": 14025.0, "total_std_ns": 2082.7746006908533, "total_mad_ns": 1232.0, "total_cv": 0.143215806506345, "total_min_ns": 10890.0, "total_max_ns": 19554.0, "total_p5_ns": 11791.6, "total_p25_ns": 13050.0, "total_p50_ns": 14025.0, "total_p75_ns": 15694.0, "total_p95_ns": 18576.0, "total_p99_ns": 19365.68, "total_ci_low_ns": 14122.332584269663, "total_ci_high_ns": 14973.71095505618, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.756616584002043}, {"serializer": "FsPicklerJson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 18428.137931034482, "avg_time_deser_ns": 17167.48275862069, "avg_time_total_ns": 35595.620689655174, "median_size_bytes": 1024.0, "avg_ops_per_sec": 28093.34352443588, "min_ops_per_sec": 18114.957520424614, "max_ops_per_sec": 38696.69530222119, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 18428.137931034482, "ser_median_ns": 17070.0, "ser_std_ns": 4161.123806087849, "ser_mad_ns": 2220.0, "ser_cv": 0.22580272741936547, "ser_min_ns": 12057.0, "ser_max_ns": 31975.0, "ser_p5_ns": 13902.6, "ser_p25_ns": 15480.0, "ser_p50_ns": 17070.0, "ser_p75_ns": 20945.0, "ser_p95_ns": 26970.5, "ser_p99_ns": 30124.280000000002, "ser_ci_low_ns": 17645.454310344827, "ser_ci_high_ns": 19276.80775862069, "deser_mean_ns": 17167.48275862069, "deser_median_ns": 16599.0, "deser_std_ns": 2142.511821150363, "deser_mad_ns": 1371.0, "deser_cv": 0.12480058091652932, "deser_min_ns": 12885.0, "deser_max_ns": 23228.0, "deser_p5_ns": 14260.3, "deser_p25_ns": 15720.5, "deser_p50_ns": 16599.0, "deser_p75_ns": 18522.0, "deser_p95_ns": 21363.800000000003, "deser_p99_ns": 22249.32, "deser_ci_low_ns": 16735.332183908045, "deser_ci_high_ns": 17613.742816091955, "total_mean_ns": 35595.620689655174, "total_median_ns": 33112.0, "total_std_ns": 6122.652395363522, "total_mad_ns": 3493.0, "total_cv": 0.17200577702365763, "total_min_ns": 25842.0, "total_max_ns": 55203.0, "total_p5_ns": 28118.5, "total_p25_ns": 31382.0, "total_p50_ns": 33112.0, "total_p75_ns": 39346.5, "total_p95_ns": 47206.3, "total_p99_ns": 51049.200000000004, "total_ci_low_ns": 34366.81925287356, "total_ci_high_ns": 36904.557471264365, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.030429074932177}, {"serializer": "ServiceStack Json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 10895.0, "avg_time_deser_ns": 10974.443298969072, "avg_time_total_ns": 21869.443298969072, "median_size_bytes": 440.0, "avg_ops_per_sec": 45725.90103595093, "min_ops_per_sec": 30125.926372235946, "max_ops_per_sec": 76528.6599831637, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 10895.0, "ser_median_ns": 10247.0, "ser_std_ns": 2590.147510278131, "ser_mad_ns": 1827.0, "ser_cv": 0.23773726574374768, "ser_min_ns": 6423.0, "ser_max_ns": 16837.0, "ser_p5_ns": 7644.0, "ser_p25_ns": 9010.0, "ser_p50_ns": 10247.0, "ser_p75_ns": 12576.0, "ser_p95_ns": 15652.599999999997, "ser_p99_ns": 16763.079999999998, "ser_ci_low_ns": 10389.005154639175, "ser_ci_high_ns": 11424.236082474226, "deser_mean_ns": 10974.443298969072, "deser_median_ns": 10370.0, "deser_std_ns": 2204.879234075116, "deser_mad_ns": 1505.0, "deser_cv": 0.20091034907276253, "deser_min_ns": 6644.0, "deser_max_ns": 16844.0, "deser_p5_ns": 8185.200000000001, "deser_p25_ns": 9401.0, "deser_p50_ns": 10370.0, "deser_p75_ns": 12709.0, "deser_p95_ns": 15103.599999999999, "deser_p99_ns": 16534.879999999997, "deser_ci_low_ns": 10551.55824742268, "deser_ci_high_ns": 11422.468556701031, "total_mean_ns": 21869.443298969072, "total_median_ns": 20293.0, "total_std_ns": 4594.370241504524, "total_mad_ns": 2845.0, "total_cv": 0.2100817189855538, "total_min_ns": 13067.0, "total_max_ns": 33194.0, "total_p5_ns": 16341.2, "total_p25_ns": 18567.0, "total_p50_ns": 20293.0, "total_p75_ns": 25711.0, "total_p95_ns": 30792.799999999992, "total_p99_ns": 33180.56, "total_ci_low_ns": 20929.85206185567, "total_ci_high_ns": 22811.411597938142, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.941499887741161}, {"serializer": "SpanJson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "4.2.1", "avg_time_ser_ns": 4490.634408602151, "avg_time_deser_ns": 4586.698924731183, "avg_time_total_ns": 9077.333333333334, "median_size_bytes": 440.0, "avg_ops_per_sec": 110164.51233842537, "min_ops_per_sec": 72902.23809870963, "max_ops_per_sec": 176522.506619594, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 4490.634408602151, "ser_median_ns": 4185.0, "ser_std_ns": 1155.1132617621663, "ser_mad_ns": 722.0, "ser_cv": 0.25722718811165285, "ser_min_ns": 2269.0, "ser_max_ns": 7381.0, "ser_p5_ns": 3286.6, "ser_p25_ns": 3571.0, "ser_p50_ns": 4185.0, "ser_p75_ns": 5330.0, "ser_p95_ns": 6581.8, "ser_p99_ns": 6876.839999999999, "ser_ci_low_ns": 4258.773387096774, "ser_ci_high_ns": 4733.287365591397, "deser_mean_ns": 4586.698924731183, "deser_median_ns": 4483.0, "deser_std_ns": 744.4574444716541, "deser_mad_ns": 485.0, "deser_cv": 0.1623078943458852, "deser_min_ns": 3370.0, "deser_max_ns": 6487.0, "deser_p5_ns": 3681.4, "deser_p25_ns": 4013.0, "deser_p50_ns": 4483.0, "deser_p75_ns": 4977.0, "deser_p95_ns": 6172.199999999999, "deser_p99_ns": 6475.96, "deser_ci_low_ns": 4436.087096774194, "deser_ci_high_ns": 4748.43064516129, "total_mean_ns": 9077.333333333334, "total_median_ns": 8399.0, "total_std_ns": 1781.7447624591812, "total_mad_ns": 973.0, "total_cv": 0.19628504286785925, "total_min_ns": 5665.0, "total_max_ns": 13717.0, "total_p5_ns": 7100.8, "total_p25_ns": 7724.0, "total_p50_ns": 8399.0, "total_p75_ns": 10321.0, "total_p95_ns": 12370.0, "total_p99_ns": 12867.839999999998, "total_ci_low_ns": 8720.675537634408, "total_ci_high_ns": 9452.320698924732, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9732880588568195, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.626045820241808}, {"serializer": "YamlDotNet", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "17.1.0", "avg_time_ser_ns": 124805.23595505618, "avg_time_deser_ns": 95438.87640449438, "avg_time_total_ns": 220244.11235955055, "median_size_bytes": 421.0, "avg_ops_per_sec": 4540.416491894643, "min_ops_per_sec": 3822.3815730629126, "max_ops_per_sec": 5703.3678387087575, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 124805.23595505618, "ser_median_ns": 122871.0, "ser_std_ns": 10523.323633527825, "ser_mad_ns": 7021.0, "ser_cv": 0.08431796593307508, "ser_min_ns": 98079.0, "ser_max_ns": 154528.0, "ser_p5_ns": 109066.4, "ser_p25_ns": 118485.0, "ser_p50_ns": 122871.0, "ser_p75_ns": 132061.0, "ser_p95_ns": 143594.59999999998, "ser_p99_ns": 152783.84, "ser_ci_low_ns": 122733.22471910111, "ser_ci_high_ns": 127061.54522471908, "deser_mean_ns": 95438.87640449438, "deser_median_ns": 95491.0, "deser_std_ns": 6250.461282650601, "deser_mad_ns": 4469.0, "deser_cv": 0.06549177356363194, "deser_min_ns": 77256.0, "deser_max_ns": 112990.0, "deser_p5_ns": 87231.0, "deser_p25_ns": 90840.0, "deser_p50_ns": 95491.0, "deser_p75_ns": 99003.0, "deser_p95_ns": 106340.4, "deser_p99_ns": 111418.32, "deser_ci_low_ns": 94125.27443820225, "deser_ci_high_ns": 96736.3724719101, "total_mean_ns": 220244.11235955055, "total_median_ns": 218690.0, "total_std_ns": 15831.99624712721, "total_mad_ns": 10784.0, "total_cv": 0.07188385686007047, "total_min_ns": 175335.0, "total_max_ns": 261617.0, "total_p5_ns": 197427.0, "total_p25_ns": 209834.0, "total_p50_ns": 218690.0, "total_p75_ns": 231334.0, "total_p95_ns": 246931.8, "total_p99_ns": 255358.44000000003, "total_ci_low_ns": 216884.0856741573, "total_ci_high_ns": 223495.61601123595, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.40457227742812}, {"serializer": "MS Bond Json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 5854.9775280898875, "avg_time_deser_ns": 6799.6292134831465, "avg_time_total_ns": 12654.606741573034, "median_size_bytes": 440.0, "avg_ops_per_sec": 79022.60579262338, "min_ops_per_sec": 62468.765617191406, "max_ops_per_sec": 93370.68160597573, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 5854.9775280898875, "ser_median_ns": 5536.0, "ser_std_ns": 823.2024629116584, "ser_mad_ns": 371.0, "ser_cv": 0.14059873995455244, "ser_min_ns": 4792.0, "ser_max_ns": 7992.0, "ser_p5_ns": 4986.0, "ser_p25_ns": 5292.0, "ser_p50_ns": 5536.0, "ser_p75_ns": 6227.0, "ser_p95_ns": 7614.599999999999, "ser_p99_ns": 7915.4400000000005, "ser_ci_low_ns": 5684.667696629213, "ser_ci_high_ns": 6029.037921348315, "deser_mean_ns": 6799.6292134831465, "deser_median_ns": 6682.0, "deser_std_ns": 614.7217659977722, "deser_mad_ns": 404.0, "deser_cv": 0.09040518926808917, "deser_min_ns": 5511.0, "deser_max_ns": 8403.0, "deser_p5_ns": 5977.4, "deser_p25_ns": 6407.0, "deser_p50_ns": 6682.0, "deser_p75_ns": 7204.0, "deser_p95_ns": 8002.799999999999, "deser_p99_ns": 8387.16, "deser_ci_low_ns": 6678.010393258427, "deser_ci_high_ns": 6931.5308988764045, "total_mean_ns": 12654.606741573034, "total_median_ns": 12312.0, "total_std_ns": 1281.3918268995412, "total_mad_ns": 700.0, "total_cv": 0.10125892120297193, "total_min_ns": 10710.0, "total_max_ns": 16008.0, "total_p5_ns": 11095.6, "total_p25_ns": 11813.0, "total_p50_ns": 12312.0, "total_p75_ns": 13305.0, "total_p95_ns": 15281.8, "total_p99_ns": 15943.76, "total_ci_low_ns": 12377.768258426966, "total_ci_high_ns": 12937.407584269664, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.577052129138084}, {"serializer": "GroBuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.9.2", "avg_time_ser_ns": 3267.8297872340427, "avg_time_deser_ns": 4424.031914893617, "avg_time_total_ns": 7691.86170212766, "median_size_bytes": 804.0, "avg_ops_per_sec": 130007.5376710671, "min_ops_per_sec": 82027.72537117546, "max_ops_per_sec": 193199.38176197835, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 3267.8297872340427, "ser_median_ns": 3023.5, "ser_std_ns": 933.5320560903847, "ser_mad_ns": 528.5, "ser_cv": 0.2856734031060244, "ser_min_ns": 2082.0, "ser_max_ns": 5783.0, "ser_p5_ns": 2162.15, "ser_p25_ns": 2551.75, "ser_p50_ns": 3023.5, "ser_p75_ns": 3694.75, "ser_p95_ns": 5140.95, "ser_p99_ns": 5490.979999999998, "ser_ci_low_ns": 3090.4683510638297, "ser_ci_high_ns": 3456.5390957446807, "deser_mean_ns": 4424.031914893617, "deser_median_ns": 4200.5, "deser_std_ns": 932.2563154412871, "deser_mad_ns": 515.0, "deser_cv": 0.21072549506318486, "deser_min_ns": 3039.0, "deser_max_ns": 6738.0, "deser_p5_ns": 3260.95, "deser_p25_ns": 3722.5, "deser_p50_ns": 4200.5, "deser_p75_ns": 4903.75, "deser_p95_ns": 6457.3, "deser_p99_ns": 6723.12, "deser_ci_low_ns": 4239.105319148936, "deser_ci_high_ns": 4620.050797872341, "total_mean_ns": 7691.86170212766, "total_median_ns": 7067.0, "total_std_ns": 1767.595965371349, "total_mad_ns": 876.0, "total_cv": 0.22980079905524187, "total_min_ns": 5176.0, "total_max_ns": 12191.0, "total_p5_ns": 5752.05, "total_p25_ns": 6366.0, "total_p50_ns": 7067.0, "total_p75_ns": 8538.5, "total_p95_ns": 11414.4, "total_p99_ns": 11692.519999999997, "total_ci_low_ns": 7358.914627659575, "total_ci_high_ns": 8060.135638297872, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.8115341545352743, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.6549221353418029}, {"serializer": "BinaryPack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.0.3", "avg_time_ser_ns": 3269.8526315789472, "avg_time_deser_ns": 2090.8736842105263, "avg_time_total_ns": 5360.726315789474, "median_size_bytes": 300.0, "avg_ops_per_sec": 186541.88650791624, "min_ops_per_sec": 126839.16793505834, "max_ops_per_sec": 315258.51197982347, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 3269.8526315789472, "ser_median_ns": 3058.0, "ser_std_ns": 752.8144916927247, "ser_mad_ns": 375.0, "ser_cv": 0.23022887466619724, "ser_min_ns": 1661.0, "ser_max_ns": 5257.0, "ser_p5_ns": 2452.4, "ser_p25_ns": 2733.5, "ser_p50_ns": 3058.0, "ser_p75_ns": 3632.0, "ser_p95_ns": 4821.2, "ser_p99_ns": 5120.700000000001, "ser_ci_low_ns": 3121.9723684210526, "ser_ci_high_ns": 3426.3718421052627, "deser_mean_ns": 2090.8736842105263, "deser_median_ns": 2064.0, "deser_std_ns": 296.8315749285781, "deser_mad_ns": 223.0, "deser_cv": 0.14196533112934367, "deser_min_ns": 1404.0, "deser_max_ns": 2915.0, "deser_p5_ns": 1676.8, "deser_p25_ns": 1862.5, "deser_p50_ns": 2064.0, "deser_p75_ns": 2303.5, "deser_p95_ns": 2564.2, "deser_p99_ns": 2780.5800000000004, "deser_ci_low_ns": 2031.7365789473686, "deser_ci_high_ns": 2151.975, "total_mean_ns": 5360.726315789474, "total_median_ns": 5162.0, "total_std_ns": 907.9881248884315, "total_mad_ns": 478.0, "total_cv": 0.16937781774347346, "total_min_ns": 3172.0, "total_max_ns": 7884.0, "total_p5_ns": 4265.8, "total_p25_ns": 4798.5, "total_p50_ns": 5162.0, "total_p75_ns": 5935.5, "total_p95_ns": 6997.9, "total_p99_ns": 7848.28, "total_ci_low_ns": 5184.9636842105265, "total_ci_high_ns": 5550.970263157895, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "Migrant", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "0.13.0.0", "avg_time_ser_ns": 15226.375, "avg_time_deser_ns": 40223.21875, "avg_time_total_ns": 55449.59375, "median_size_bytes": 1376.0, "avg_ops_per_sec": 18034.397231269166, "min_ops_per_sec": 13338.846723312303, "max_ops_per_sec": 26778.780494336286, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 15226.375, "ser_median_ns": 14788.5, "ser_std_ns": 2588.612399072441, "ser_mad_ns": 1669.5, "ser_cv": 0.17000844909392032, "ser_min_ns": 10951.0, "ser_max_ns": 22655.0, "ser_p5_ns": 12155.0, "ser_p25_ns": 13239.25, "ser_p50_ns": 14788.5, "ser_p75_ns": 16988.75, "ser_p95_ns": 20115.25, "ser_p99_ns": 22632.2, "ser_ci_low_ns": 14737.450520833332, "ser_ci_high_ns": 15774.215364583333, "deser_mean_ns": 40223.21875, "deser_median_ns": 38690.0, "deser_std_ns": 6099.805286285137, "deser_mad_ns": 3662.5, "deser_cv": 0.15164886043052278, "deser_min_ns": 26392.0, "deser_max_ns": 56231.0, "deser_p5_ns": 32852.25, "deser_p25_ns": 35921.0, "deser_p50_ns": 38690.0, "deser_p75_ns": 44240.5, "deser_p95_ns": 52331.75, "deser_p99_ns": 55425.399999999994, "deser_ci_low_ns": 39032.36640625, "deser_ci_high_ns": 41475.31067708333, "total_mean_ns": 55449.59375, "total_median_ns": 53044.0, "total_std_ns": 8420.72868903139, "total_mad_ns": 5112.0, "total_cv": 0.1518627661547365, "total_min_ns": 37343.0, "total_max_ns": 74969.0, "total_p5_ns": 46084.75, "total_p25_ns": 49078.25, "total_p50_ns": 53044.0, "total_p75_ns": 60557.5, "total_p95_ns": 73447.75, "total_p99_ns": 74898.7, "total_ci_low_ns": 53789.16197916667, "total_ci_high_ns": 57122.14843749999, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.308978403010697}, {"serializer": "NetSerializer", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "4.1.2", "avg_time_ser_ns": 3789.595744680851, "avg_time_deser_ns": 3385.8297872340427, "avg_time_total_ns": 7175.425531914893, "median_size_bytes": 184.0, "avg_ops_per_sec": 139364.5569244911, "min_ops_per_sec": 93976.130062964, "max_ops_per_sec": 214224.50728363325, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 3789.595744680851, "ser_median_ns": 3510.0, "ser_std_ns": 1009.6137270417631, "ser_mad_ns": 654.5, "ser_cv": 0.26641726322890147, "ser_min_ns": 2010.0, "ser_max_ns": 6006.0, "ser_p5_ns": 2530.7, "ser_p25_ns": 2995.75, "ser_p50_ns": 3510.0, "ser_p75_ns": 4520.0, "ser_p95_ns": 5580.8499999999985, "ser_p99_ns": 5997.63, "ser_ci_low_ns": 3595.5912234042553, "ser_ci_high_ns": 3997.710904255319, "deser_mean_ns": 3385.8297872340427, "deser_median_ns": 3352.5, "deser_std_ns": 479.6897886100229, "deser_mad_ns": 336.5, "deser_cv": 0.14167569510394432, "deser_min_ns": 2525.0, "deser_max_ns": 4644.0, "deser_p5_ns": 2653.1, "deser_p25_ns": 3033.25, "deser_p50_ns": 3352.5, "deser_p75_ns": 3693.25, "deser_p95_ns": 4257.799999999999, "deser_p99_ns": 4410.569999999998, "deser_ci_low_ns": 3285.1170212765956, "deser_ci_high_ns": 3482.9920212765956, "total_mean_ns": 7175.425531914893, "total_median_ns": 6882.0, "total_std_ns": 1357.1643864374832, "total_mad_ns": 898.0, "total_cv": 0.18914061338955868, "total_min_ns": 4668.0, "total_max_ns": 10641.0, "total_p5_ns": 5256.3, "total_p25_ns": 6122.75, "total_p50_ns": 6882.0, "total_p75_ns": 8328.75, "total_p95_ns": 9345.949999999999, "total_p99_ns": 9703.559999999994, "total_ci_low_ns": 6908.613829787235, "total_ci_high_ns": 7452.210904255318, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.7353863381858903, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.5669602410316374}, {"serializer": "Json.Net", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 12118.545454545454, "avg_time_deser_ns": 12546.727272727272, "avg_time_total_ns": 24665.272727272728, "median_size_bytes": 580.0, "avg_ops_per_sec": 40542.831658791525, "min_ops_per_sec": 29497.654936432555, "max_ops_per_sec": 68194.21713038735, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 12118.545454545454, "ser_median_ns": 11839.0, "ser_std_ns": 2265.029298275867, "ser_mad_ns": 1134.5, "ser_cv": 0.1869060364357749, "ser_min_ns": 6685.0, "ser_max_ns": 17584.0, "ser_p5_ns": 8526.85, "ser_p25_ns": 10821.25, "ser_p50_ns": 11839.0, "ser_p75_ns": 13112.0, "ser_p95_ns": 16267.25, "ser_p99_ns": 17276.89, "ser_ci_low_ns": 11635.757670454546, "ser_ci_high_ns": 12586.867329545456, "deser_mean_ns": 12546.727272727272, "deser_median_ns": 12622.5, "deser_std_ns": 2121.7168916806622, "deser_mad_ns": 1149.5, "deser_cv": 0.1691052053305265, "deser_min_ns": 7979.0, "deser_max_ns": 16942.0, "deser_p5_ns": 8777.2, "deser_p25_ns": 11353.25, "deser_p50_ns": 12622.5, "deser_p75_ns": 13723.75, "deser_p95_ns": 16313.15, "deser_p99_ns": 16869.79, "deser_ci_low_ns": 12101.180113636365, "deser_ci_high_ns": 13003.936079545454, "total_mean_ns": 24665.272727272728, "total_median_ns": 24668.0, "total_std_ns": 4122.879084784489, "total_mad_ns": 2127.0, "total_cv": 0.16715319268397003, "total_min_ns": 14664.0, "total_max_ns": 33901.0, "total_p5_ns": 17745.05, "total_p25_ns": 22177.75, "total_p50_ns": 24668.0, "total_p75_ns": 26256.5, "total_p95_ns": 32472.55, "total_p99_ns": 33566.92, "total_ci_low_ns": 23837.368181818183, "total_ci_high_ns": 25514.257102272728, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.55603912358074}, {"serializer": "ProtoBuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "2.4.9.1", "avg_time_ser_ns": 5591.103092783505, "avg_time_deser_ns": 6310.917525773196, "avg_time_total_ns": 11902.0206185567, "median_size_bytes": 208.0, "avg_ops_per_sec": 84019.34697045291, "min_ops_per_sec": 58285.24800373026, "max_ops_per_sec": 111160.51578479324, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 5591.103092783505, "ser_median_ns": 5005.0, "ser_std_ns": 1454.8046868089093, "ser_mad_ns": 734.0, "ser_cv": 0.2601999395587323, "ser_min_ns": 3651.0, "ser_max_ns": 9411.0, "ser_p5_ns": 4090.0, "ser_p25_ns": 4505.0, "ser_p50_ns": 5005.0, "ser_p75_ns": 6414.0, "ser_p95_ns": 8415.4, "ser_p99_ns": 9111.479999999998, "ser_ci_low_ns": 5314.1438144329895, "ser_ci_high_ns": 5867.433505154639, "deser_mean_ns": 6310.917525773196, "deser_median_ns": 6227.0, "deser_std_ns": 767.6764003322935, "deser_mad_ns": 533.0, "deser_cv": 0.12164259748240648, "deser_min_ns": 5034.0, "deser_max_ns": 8530.0, "deser_p5_ns": 5305.6, "deser_p25_ns": 5720.0, "deser_p50_ns": 6227.0, "deser_p75_ns": 6835.0, "deser_p95_ns": 7708.599999999999, "deser_p99_ns": 8172.879999999997, "deser_ci_low_ns": 6164.626030927835, "deser_ci_high_ns": 6459.764175257732, "total_mean_ns": 11902.0206185567, "total_median_ns": 11134.0, "total_std_ns": 2133.5392640486166, "total_mad_ns": 1139.0, "total_cv": 0.17925857570118547, "total_min_ns": 8996.0, "total_max_ns": 17157.0, "total_p5_ns": 9459.0, "total_p25_ns": 10212.0, "total_p50_ns": 11134.0, "total_p75_ns": 13213.0, "total_p95_ns": 16115.999999999998, "total_p99_ns": 16953.48, "total_ci_low_ns": 11479.903350515464, "total_ci_high_ns": 12332.963402061856, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.959429617800922}, {"serializer": "SharpSerializer", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 27878.129411764705, "avg_time_deser_ns": 67129.76470588235, "avg_time_total_ns": 95007.89411764705, "median_size_bytes": 3232.0, "avg_ops_per_sec": 10525.441167675108, "min_ops_per_sec": 8744.851468697803, "max_ops_per_sec": 12692.6103622471, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 27878.129411764705, "ser_median_ns": 27046.0, "ser_std_ns": 2880.9137513256155, "ser_mad_ns": 1341.0, "ser_cv": 0.10333956445836197, "ser_min_ns": 22837.0, "ser_max_ns": 36115.0, "ser_p5_ns": 24732.6, "ser_p25_ns": 25975.0, "ser_p50_ns": 27046.0, "ser_p75_ns": 28823.0, "ser_p95_ns": 34426.4, "ser_p99_ns": 35961.28, "ser_ci_low_ns": 27288.224411764706, "ser_ci_high_ns": 28496.741470588233, "deser_mean_ns": 67129.76470588235, "deser_median_ns": 65818.0, "deser_std_ns": 4594.200779365269, "deser_mad_ns": 2549.0, "deser_cv": 0.06843761183275375, "deser_min_ns": 55949.0, "deser_max_ns": 79686.0, "deser_p5_ns": 61600.6, "deser_p25_ns": 64080.0, "deser_p50_ns": 65818.0, "deser_p75_ns": 69894.0, "deser_p95_ns": 76767.4, "deser_p99_ns": 79313.88, "deser_ci_low_ns": 66209.66382352941, "deser_ci_high_ns": 68093.85764705882, "total_mean_ns": 95007.89411764705, "total_median_ns": 92748.0, "total_std_ns": 7212.06843228687, "total_mad_ns": 3732.0, "total_cv": 0.0759102019812823, "total_min_ns": 78786.0, "total_max_ns": 114353.0, "total_p5_ns": 86449.0, "total_p25_ns": 90224.0, "total_p50_ns": 92748.0, "total_p75_ns": 98217.0, "total_p95_ns": 109710.8, "total_p99_ns": 113992.64, "total_ci_low_ns": 93508.85588235293, "total_ci_high_ns": 96588.165, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.860470236745154}, {"serializer": "Utf8Json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.3.7", "avg_time_ser_ns": 6626.833333333333, "avg_time_deser_ns": 6526.522222222222, "avg_time_total_ns": 13153.355555555556, "median_size_bytes": 440.0, "avg_ops_per_sec": 76026.22735896712, "min_ops_per_sec": 48835.278605264444, "max_ops_per_sec": 121418.16415735794, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 6626.833333333333, "ser_median_ns": 6182.0, "ser_std_ns": 1733.7153081353702, "ser_mad_ns": 1012.5, "ser_cv": 0.26162047857981996, "ser_min_ns": 3635.0, "ser_max_ns": 11390.0, "ser_p5_ns": 4273.95, "ser_p25_ns": 5468.0, "ser_p50_ns": 6182.0, "ser_p75_ns": 7392.25, "ser_p95_ns": 9974.55, "ser_p99_ns": 11036.67, "ser_ci_low_ns": 6295.143611111112, "ser_ci_high_ns": 6977.738055555556, "deser_mean_ns": 6526.522222222222, "deser_median_ns": 6372.5, "deser_std_ns": 834.6324660790572, "deser_mad_ns": 429.0, "deser_cv": 0.12788318765501305, "deser_min_ns": 4601.0, "deser_max_ns": 9087.0, "deser_p5_ns": 5381.1, "deser_p25_ns": 6054.25, "deser_p50_ns": 6372.5, "deser_p75_ns": 7025.0, "deser_p95_ns": 7957.4, "deser_p99_ns": 8658.91, "deser_ci_low_ns": 6365.896944444445, "deser_ci_high_ns": 6705.115, "total_mean_ns": 13153.355555555556, "total_median_ns": 12631.5, "total_std_ns": 2473.7726695220817, "total_mad_ns": 1353.0, "total_cv": 0.18807160340748483, "total_min_ns": 8236.0, "total_max_ns": 20477.0, "total_p5_ns": 9651.0, "total_p25_ns": 11564.5, "total_p50_ns": 12631.5, "total_p75_ns": 14632.0, "total_p95_ns": 17714.15, "total_p99_ns": 19695.579999999998, "total_ci_low_ns": 12641.674166666666, "total_ci_high_ns": 13665.39388888889, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.20901350880697}, {"serializer": "MS Binary", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 24750.16853932584, "avg_time_deser_ns": 26963.011235955055, "avg_time_total_ns": 51713.1797752809, "median_size_bytes": 1876.0, "avg_ops_per_sec": 19337.43011637439, "min_ops_per_sec": 14870.330716155127, "max_ops_per_sec": 25222.589351022776, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 24750.16853932584, "ser_median_ns": 23922.0, "ser_std_ns": 2768.1833484827484, "ser_mad_ns": 1518.0, "ser_cv": 0.11184503023017191, "ser_min_ns": 19404.0, "ser_max_ns": 32321.0, "ser_p5_ns": 21051.6, "ser_p25_ns": 22757.0, "ser_p50_ns": 23922.0, "ser_p75_ns": 27012.0, "ser_p95_ns": 29847.6, "ser_p99_ns": 30852.280000000006, "ser_ci_low_ns": 24167.87471910112, "ser_ci_high_ns": 25335.255898876403, "deser_mean_ns": 26963.011235955055, "deser_median_ns": 26197.0, "deser_std_ns": 2824.8774249127005, "deser_mad_ns": 1385.0, "deser_cv": 0.10476861802237204, "deser_min_ns": 20243.0, "deser_max_ns": 36596.0, "deser_p5_ns": 23592.8, "deser_p25_ns": 25119.0, "deser_p50_ns": 26197.0, "deser_p75_ns": 28937.0, "deser_p95_ns": 31939.199999999997, "deser_p99_ns": 35321.76000000001, "deser_ci_low_ns": 26373.15224719101, "deser_ci_high_ns": 27569.463483146064, "total_mean_ns": 51713.1797752809, "total_median_ns": 49929.0, "total_std_ns": 5428.732024988134, "total_mad_ns": 2577.0, "total_cv": 0.10497772615373169, "total_min_ns": 39647.0, "total_max_ns": 67248.0, "total_p5_ns": 45005.6, "total_p25_ns": 48205.0, "total_p50_ns": 49929.0, "total_p75_ns": 55946.0, "total_p95_ns": 60574.0, "total_p99_ns": 64927.44000000001, "total_ci_low_ns": 50643.167696629214, "total_ci_high_ns": 52888.53623595505, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.049779931185379}, {"serializer": "MS DataContract", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 11431.860215053763, "avg_time_deser_ns": 19997.68817204301, "avg_time_total_ns": 31429.548387096773, "median_size_bytes": 1304.0, "avg_ops_per_sec": 31817.192779344692, "min_ops_per_sec": 23000.66701934356, "max_ops_per_sec": 44351.798465427775, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 11431.860215053763, "ser_median_ns": 10708.0, "ser_std_ns": 2499.619717126543, "ser_mad_ns": 1524.0, "ser_cv": 0.2186538035021615, "ser_min_ns": 6999.0, "ser_max_ns": 19516.0, "ser_p5_ns": 8533.4, "ser_p25_ns": 9606.0, "ser_p50_ns": 10708.0, "ser_p75_ns": 13169.0, "ser_p95_ns": 16162.799999999997, "ser_p99_ns": 17954.76, "ser_ci_low_ns": 10947.969892473118, "ser_ci_high_ns": 11950.28870967742, "deser_mean_ns": 19997.68817204301, "deser_median_ns": 19189.0, "deser_std_ns": 2376.661510252375, "deser_mad_ns": 1188.0, "deser_cv": 0.1188468131818844, "deser_min_ns": 15548.0, "deser_max_ns": 26217.0, "deser_p5_ns": 17126.8, "deser_p25_ns": 18328.0, "deser_p50_ns": 19189.0, "deser_p75_ns": 21696.0, "deser_p95_ns": 24721.8, "deser_p99_ns": 25857.28, "deser_ci_low_ns": 19529.754838709676, "deser_ci_high_ns": 20458.271505376342, "total_mean_ns": 31429.548387096773, "total_median_ns": 29967.0, "total_std_ns": 4635.424661649555, "total_mad_ns": 2645.0, "total_cv": 0.1474862000738325, "total_min_ns": 22547.0, "total_max_ns": 43477.0, "total_p5_ns": 26252.4, "total_p25_ns": 27886.0, "total_p50_ns": 29967.0, "total_p75_ns": 34496.0, "total_p95_ns": 40489.79999999999, "total_p99_ns": 42535.84, "total_ci_low_ns": 30515.785483870968, "total_ci_high_ns": 32398.852419354836, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.812447493501757}, {"serializer": "NetJSON", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.0.0", "avg_time_ser_ns": 4491.268817204301, "avg_time_deser_ns": 6840.311827956989, "avg_time_total_ns": 11331.58064516129, "median_size_bytes": 440.0, "avg_ops_per_sec": 88248.94172438432, "min_ops_per_sec": 61425.06142506142, "max_ops_per_sec": 133155.79227696406, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 4491.268817204301, "ser_median_ns": 4076.0, "ser_std_ns": 1049.4320942443621, "ser_mad_ns": 520.0, "ser_cv": 0.23366049483041335, "ser_min_ns": 2582.0, "ser_max_ns": 7256.0, "ser_p5_ns": 3358.8, "ser_p25_ns": 3745.0, "ser_p50_ns": 4076.0, "ser_p75_ns": 5208.0, "ser_p95_ns": 6729.399999999999, "ser_p99_ns": 7065.5599999999995, "ser_ci_low_ns": 4288.027688172043, "ser_ci_high_ns": 4705.025806451613, "deser_mean_ns": 6840.311827956989, "deser_median_ns": 6662.0, "deser_std_ns": 922.1946175162649, "deser_mad_ns": 551.0, "deser_cv": 0.13481762830565266, "deser_min_ns": 4342.0, "deser_max_ns": 9487.0, "deser_p5_ns": 5682.8, "deser_p25_ns": 6231.0, "deser_p50_ns": 6662.0, "deser_p75_ns": 7356.0, "deser_p95_ns": 8607.0, "deser_p99_ns": 9420.76, "deser_ci_low_ns": 6653.922311827957, "deser_ci_high_ns": 7029.731182795699, "total_mean_ns": 11331.58064516129, "total_median_ns": 10660.0, "total_std_ns": 1879.6732620937114, "total_mad_ns": 1086.0, "total_cv": 0.1658791761673913, "total_min_ns": 7510.0, "total_max_ns": 16280.0, "total_p5_ns": 9270.0, "total_p25_ns": 10096.0, "total_p50_ns": 10660.0, "total_p75_ns": 12562.0, "total_p95_ns": 15015.0, "total_p99_ns": 16014.119999999999, "total_ci_low_ns": 10959.249193548387, "total_ci_high_ns": 11717.509677419355, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9990945104697226, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.042278915805708}, {"serializer": "Json.Net (Helper)", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 11569.0, "avg_time_deser_ns": 12073.21590909091, "avg_time_total_ns": 23642.215909090908, "median_size_bytes": 541.0, "avg_ops_per_sec": 42297.219678781454, "min_ops_per_sec": 29873.039581777444, "max_ops_per_sec": 58809.69183721477, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 11569.0, "ser_median_ns": 11210.0, "ser_std_ns": 1970.090236570367, "ser_mad_ns": 720.5, "ser_cv": 0.17029045177373733, "ser_min_ns": 7561.0, "ser_max_ns": 16626.0, "ser_p5_ns": 8651.8, "ser_p25_ns": 10612.75, "ser_p50_ns": 11210.0, "ser_p75_ns": 12210.25, "ser_p95_ns": 15588.249999999998, "ser_p99_ns": 16119.659999999998, "ser_ci_low_ns": 11152.203125, "ser_ci_high_ns": 11973.85625, "deser_mean_ns": 12073.21590909091, "deser_median_ns": 12235.0, "deser_std_ns": 1854.1109245844843, "deser_mad_ns": 1294.5, "deser_cv": 0.1535722493944942, "deser_min_ns": 9039.0, "deser_max_ns": 17431.0, "deser_p5_ns": 9422.2, "deser_p25_ns": 10828.5, "deser_p50_ns": 12235.0, "deser_p75_ns": 13404.75, "deser_p95_ns": 14953.949999999999, "deser_p99_ns": 16353.939999999995, "deser_ci_low_ns": 11680.278124999999, "deser_ci_high_ns": 12446.602556818183, "total_mean_ns": 23642.215909090908, "total_median_ns": 23427.5, "total_std_ns": 3424.7699325324725, "total_mad_ns": 1884.0, "total_cv": 0.14485824618561155, "total_min_ns": 17004.0, "total_max_ns": 33475.0, "total_p5_ns": 18040.600000000002, "total_p25_ns": 21479.75, "total_p50_ns": 23427.5, "total_p75_ns": 25291.5, "total_p95_ns": 30677.34999999999, "total_p99_ns": 32009.91999999999, "total_ci_low_ns": 22937.690909090907, "total_ci_high_ns": 24359.882954545454, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.39194550964878}, {"serializer": "YAXLib", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "4.4.0", "avg_time_ser_ns": 176740.02985074627, "avg_time_deser_ns": 135705.64179104476, "avg_time_total_ns": 312445.67164179106, "median_size_bytes": 1119.0, "avg_ops_per_sec": 3200.556419121939, "min_ops_per_sec": 2438.9054192478416, "max_ops_per_sec": 4012.7766809521518, "runs": 67, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 32, "ser_mean_ns": 176740.02985074627, "ser_median_ns": 170962.0, "ser_std_ns": 25903.835278788552, "ser_mad_ns": 13979.0, "ser_cv": 0.1465646198015462, "ser_min_ns": 130109.0, "ser_max_ns": 242360.0, "ser_p5_ns": 138363.0, "ser_p25_ns": 161005.0, "ser_p50_ns": 170962.0, "ser_p75_ns": 192232.0, "ser_p95_ns": 225665.5, "ser_p99_ns": 240176.06, "ser_ci_low_ns": 171237.97238805972, "ser_ci_high_ns": 182986.72276119402, "deser_mean_ns": 135705.64179104476, "deser_median_ns": 131887.0, "deser_std_ns": 12047.137397564735, "deser_mad_ns": 6985.0, "deser_cv": 0.08877403502585791, "deser_min_ns": 119095.0, "deser_max_ns": 172582.0, "deser_p5_ns": 121157.4, "deser_p25_ns": 127191.0, "deser_p50_ns": 131887.0, "deser_p75_ns": 141560.0, "deser_p95_ns": 159770.89999999997, "deser_p99_ns": 169333.48, "deser_ci_low_ns": 132958.12089552238, "deser_ci_high_ns": 138743.0373134328, "total_mean_ns": 312445.67164179106, "total_median_ns": 303732.0, "total_std_ns": 35599.66790591957, "total_mad_ns": 16523.0, "total_cv": 0.11393874563490015, "total_min_ns": 249204.0, "total_max_ns": 410020.0, "total_p5_ns": 259778.2, "total_p25_ns": 290024.0, "total_p50_ns": 303732.0, "total_p75_ns": 332697.0, "total_p95_ns": 378821.8, "total_p99_ns": 398817.16000000003, "total_ci_low_ns": 304251.4585820896, "total_ci_high_ns": 320710.0962686567, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.361516838749159}, {"serializer": "Google.Protobuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "3.35.1", "avg_time_ser_ns": 6417.0, "avg_time_deser_ns": 4655.0, "avg_time_total_ns": 11072.0, "median_size_bytes": 208.0, "avg_ops_per_sec": 90317.91907514451, "min_ops_per_sec": 53154.73342901185, "max_ops_per_sec": 272405.33914464724, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 6417.0, "ser_median_ns": 5801.5, "ser_std_ns": 1746.3271319008084, "ser_mad_ns": 971.5, "ser_cv": 0.2721407405175017, "ser_min_ns": 1764.0, "ser_max_ns": 11415.0, "ser_p5_ns": 4497.1, "ser_p25_ns": 5219.75, "ser_p50_ns": 5801.5, "ser_p75_ns": 7674.25, "ser_p95_ns": 9760.3, "ser_p99_ns": 10180.88999999999, "ser_ci_low_ns": 6068.202127659575, "ser_ci_high_ns": 6764.333244680851, "deser_mean_ns": 4655.0, "deser_median_ns": 4386.0, "deser_std_ns": 983.9524859583698, "deser_mad_ns": 564.0, "deser_cv": 0.21137539977623412, "deser_min_ns": 1907.0, "deser_max_ns": 7664.0, "deser_p5_ns": 3704.1, "deser_p25_ns": 3938.75, "deser_p50_ns": 4386.0, "deser_p75_ns": 5326.25, "deser_p95_ns": 6384.55, "deser_p99_ns": 7416.619999999998, "deser_ci_low_ns": 4466.0569148936165, "deser_ci_high_ns": 4852.913829787234, "total_mean_ns": 11072.0, "total_median_ns": 10262.5, "total_std_ns": 2655.581749844566, "total_mad_ns": 1472.0, "total_cv": 0.23984661757989215, "total_min_ns": 3671.0, "total_max_ns": 18813.0, "total_p5_ns": 8200.85, "total_p25_ns": 9143.75, "total_p50_ns": 10262.5, "total_p75_ns": 13004.5, "total_p95_ns": 16185.15, "total_p99_ns": 17476.58999999999, "total_ci_low_ns": 10552.443882978723, "total_ci_high_ns": 11623.785106382978, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.967973124300112, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.872447958760351}, {"serializer": "MS DataContract Json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 12369.072164948453, "avg_time_deser_ns": 26293.75257731959, "avg_time_total_ns": 38662.82474226804, "median_size_bytes": 588.0, "avg_ops_per_sec": 25864.638878978552, "min_ops_per_sec": 18836.29377083765, "max_ops_per_sec": 33651.9046978059, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 12369.072164948453, "ser_median_ns": 11567.0, "ser_std_ns": 2830.1597726078953, "ser_mad_ns": 1472.0, "ser_cv": 0.22880938318300204, "ser_min_ns": 7963.0, "ser_max_ns": 19208.0, "ser_p5_ns": 8947.2, "ser_p25_ns": 10299.0, "ser_p50_ns": 11567.0, "ser_p75_ns": 13951.0, "ser_p95_ns": 18259.2, "ser_p99_ns": 19090.879999999997, "ser_ci_low_ns": 11802.66649484536, "ser_ci_high_ns": 12941.081958762887, "deser_mean_ns": 26293.75257731959, "deser_median_ns": 25452.0, "deser_std_ns": 2969.114816289696, "deser_mad_ns": 1600.0, "deser_cv": 0.11292092323295037, "deser_min_ns": 21753.0, "deser_max_ns": 34844.0, "deser_p5_ns": 22291.8, "deser_p25_ns": 24362.0, "deser_p50_ns": 25452.0, "deser_p75_ns": 28642.0, "deser_p95_ns": 31740.999999999996, "deser_p99_ns": 33672.79999999999, "deser_ci_low_ns": 25708.899484536083, "deser_ci_high_ns": 26896.942525773196, "total_mean_ns": 38662.82474226804, "total_median_ns": 36783.0, "total_std_ns": 5514.4583917535765, "total_mad_ns": 3010.0, "total_cv": 0.1426294749158591, "total_min_ns": 29716.0, "total_max_ns": 53089.0, "total_p5_ns": 31442.0, "total_p25_ns": 35005.0, "total_p50_ns": 36783.0, "total_p75_ns": 42689.0, "total_p95_ns": 48512.99999999999, "total_p99_ns": 52127.079999999994, "total_ci_low_ns": 37580.107989690725, "total_ci_high_ns": 39776.54226804124, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.352194031072653}, {"serializer": "Apache.Avro", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.12.1", "avg_time_ser_ns": 10061.166666666666, "avg_time_deser_ns": 10460.5, "avg_time_total_ns": 20521.666666666668, "median_size_bytes": 152.0, "avg_ops_per_sec": 48728.98562494924, "min_ops_per_sec": 29515.938606847696, "max_ops_per_sec": 79107.66553279012, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 10061.166666666666, "ser_median_ns": 9156.0, "ser_std_ns": 2648.4262291674263, "ser_mad_ns": 1189.5, "ser_cv": 0.26323251735227127, "ser_min_ns": 5177.0, "ser_max_ns": 20410.0, "ser_p5_ns": 7547.9, "ser_p25_ns": 8278.5, "ser_p50_ns": 9156.0, "ser_p75_ns": 11079.25, "ser_p95_ns": 15240.149999999998, "ser_p99_ns": 17478.610000000015, "ser_ci_low_ns": 9504.331410256409, "ser_ci_high_ns": 10663.545833333332, "deser_mean_ns": 10460.5, "deser_median_ns": 9780.0, "deser_std_ns": 2067.967248038769, "deser_mad_ns": 768.5, "deser_cv": 0.1976929638199674, "deser_min_ns": 7464.0, "deser_max_ns": 19867.0, "deser_p5_ns": 8294.8, "deser_p25_ns": 9168.5, "deser_p50_ns": 9780.0, "deser_p75_ns": 11187.5, "deser_p95_ns": 14445.45, "deser_p99_ns": 16908.660000000014, "deser_ci_low_ns": 10029.559935897436, "deser_ci_high_ns": 10945.805769230768, "total_mean_ns": 20521.666666666668, "total_median_ns": 19080.5, "total_std_ns": 4360.218595338334, "total_mad_ns": 2022.0, "total_cv": 0.21246902925387803, "total_min_ns": 12641.0, "total_max_ns": 33880.0, "total_p5_ns": 16187.25, "total_p25_ns": 17673.75, "total_p50_ns": 19080.5, "total_p75_ns": 22471.75, "total_p95_ns": 29766.899999999994, "total_p99_ns": 32497.080000000005, "total_ci_low_ns": 19585.908974358976, "total_ci_high_ns": 21518.71794871795, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.027557439779517}, {"serializer": "SharpYaml", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "3.13.0", "avg_time_ser_ns": 109818.4947368421, "avg_time_deser_ns": 112641.86315789474, "avg_time_total_ns": 222460.35789473684, "median_size_bytes": 472.0, "avg_ops_per_sec": 4495.182914670924, "min_ops_per_sec": 3796.0748585962115, "max_ops_per_sec": 5128.6259385385465, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 109818.4947368421, "ser_median_ns": 107633.0, "ser_std_ns": 11732.669942346278, "ser_mad_ns": 6991.0, "ser_cv": 0.10683692187241556, "ser_min_ns": 86997.0, "ser_max_ns": 136789.0, "ser_p5_ns": 92498.5, "ser_p25_ns": 101972.0, "ser_p50_ns": 107633.0, "ser_p75_ns": 117304.0, "ser_p95_ns": 132591.3, "ser_p99_ns": 136388.56, "ser_ci_low_ns": 107481.40605263159, "ser_ci_high_ns": 112189.76421052632, "deser_mean_ns": 112641.86315789474, "deser_median_ns": 112140.0, "deser_std_ns": 5105.670759714823, "deser_mad_ns": 3919.0, "deser_cv": 0.04532658300012309, "deser_min_ns": 105199.0, "deser_max_ns": 127067.0, "deser_p5_ns": 106197.7, "deser_p25_ns": 108387.0, "deser_p50_ns": 112140.0, "deser_p75_ns": 116106.0, "deser_p95_ns": 122287.9, "deser_p99_ns": 127057.6, "deser_ci_low_ns": 111656.075, "deser_ci_high_ns": 113689.45052631578, "total_mean_ns": 222460.35789473684, "total_median_ns": 217739.0, "total_std_ns": 15695.992010373147, "total_mad_ns": 9585.0, "total_cv": 0.0705563551138407, "total_min_ns": 194984.0, "total_max_ns": 263430.0, "total_p5_ns": 202490.5, "total_p25_ns": 210361.0, "total_p50_ns": 217739.0, "total_p75_ns": 233555.0, "total_p95_ns": 253657.69999999998, "total_p99_ns": 259556.26, "total_ci_low_ns": 219425.57447368422, "total_ci_high_ns": 225721.23131578948, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.315768766380906}, {"serializer": "MS Bond Json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 6544.586206896552, "avg_time_deser_ns": 7975.919540229885, "avg_time_total_ns": 14520.505747126437, "median_size_bytes": 440.0, "avg_ops_per_sec": 68868.12466555422, "min_ops_per_sec": 52963.29643557015, "max_ops_per_sec": 84281.50021070374, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 6544.586206896552, "ser_median_ns": 6378.0, "ser_std_ns": 791.1522293718804, "ser_mad_ns": 411.0, "ser_cv": 0.12088651663541085, "ser_min_ns": 5062.0, "ser_max_ns": 8728.0, "ser_p5_ns": 5475.6, "ser_p25_ns": 5985.0, "ser_p50_ns": 6378.0, "ser_p75_ns": 6821.0, "ser_p95_ns": 8204.0, "ser_p99_ns": 8637.7, "ser_ci_low_ns": 6387.970402298851, "ser_ci_high_ns": 6720.902298850575, "deser_mean_ns": 7975.919540229885, "deser_median_ns": 7851.0, "deser_std_ns": 801.3586459865897, "deser_mad_ns": 495.0, "deser_cv": 0.10047225801922931, "deser_min_ns": 6347.0, "deser_max_ns": 10324.0, "deser_p5_ns": 6887.4, "deser_p25_ns": 7411.0, "deser_p50_ns": 7851.0, "deser_p75_ns": 8384.0, "deser_p95_ns": 9628.4, "deser_p99_ns": 10228.54, "deser_ci_low_ns": 7808.620977011495, "deser_ci_high_ns": 8146.720977011494, "total_mean_ns": 14520.505747126437, "total_median_ns": 14189.0, "total_std_ns": 1516.3052238725982, "total_mad_ns": 763.0, "total_cv": 0.1044250971886892, "total_min_ns": 11865.0, "total_max_ns": 18881.0, "total_p5_ns": 12390.4, "total_p25_ns": 13618.0, "total_p50_ns": 14189.0, "total_p75_ns": 15101.0, "total_p95_ns": 17638.100000000002, "total_p99_ns": 18481.96, "total_ci_low_ns": 14220.566666666668, "total_ci_high_ns": 14842.895114942528, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.082875231303415}, {"serializer": "MS DataContract Json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 12078.583333333334, "avg_time_deser_ns": 25885.25, "avg_time_total_ns": 37963.833333333336, "median_size_bytes": 440.0, "avg_ops_per_sec": 26340.859502245556, "min_ops_per_sec": 18752.93014533521, "max_ops_per_sec": 36205.648081100655, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 12078.583333333334, "ser_median_ns": 11366.5, "ser_std_ns": 2337.792011218983, "ser_mad_ns": 1333.5, "ser_cv": 0.19354852690111143, "ser_min_ns": 7492.0, "ser_max_ns": 18660.0, "ser_p5_ns": 9320.25, "ser_p25_ns": 10408.0, "ser_p50_ns": 11366.5, "ser_p75_ns": 13765.75, "ser_p95_ns": 16343.5, "ser_p99_ns": 17731.85, "ser_ci_low_ns": 11630.9171875, "ser_ci_high_ns": 12551.609895833331, "deser_mean_ns": 25885.25, "deser_median_ns": 25014.5, "deser_std_ns": 2834.794970772276, "deser_mad_ns": 1682.5, "deser_cv": 0.10951391123409185, "deser_min_ns": 20128.0, "deser_max_ns": 34665.0, "deser_p5_ns": 22578.0, "deser_p25_ns": 23658.0, "deser_p50_ns": 25014.5, "deser_p75_ns": 28364.0, "deser_p95_ns": 31003.5, "deser_p99_ns": 32804.899999999994, "deser_ci_low_ns": 25332.352604166666, "deser_ci_high_ns": 26426.40598958333, "total_mean_ns": 37963.833333333336, "total_median_ns": 36695.0, "total_std_ns": 4997.689692914783, "total_mad_ns": 3243.5, "total_cv": 0.13164344203688905, "total_min_ns": 27620.0, "total_max_ns": 53325.0, "total_p5_ns": 31861.25, "total_p25_ns": 34213.25, "total_p50_ns": 36695.0, "total_p75_ns": 42040.25, "total_p95_ns": 46583.0, "total_p99_ns": 50282.149999999994, "total_ci_low_ns": 37027.163281249996, "total_ci_high_ns": 38940.58203125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.87962967892755}, {"serializer": "SharpSerializer", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 26975.136842105265, "avg_time_deser_ns": 64977.28421052632, "avg_time_total_ns": 91952.42105263157, "median_size_bytes": 2424.0, "avg_ops_per_sec": 10875.189457247914, "min_ops_per_sec": 9176.079795189899, "max_ops_per_sec": 13408.780069189304, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 26975.136842105265, "ser_median_ns": 26401.0, "ser_std_ns": 2485.1822982516014, "ser_mad_ns": 1530.0, "ser_cv": 0.0921286261789227, "ser_min_ns": 21458.0, "ser_max_ns": 34192.0, "ser_p5_ns": 24050.4, "ser_p25_ns": 25236.0, "ser_p50_ns": 26401.0, "ser_p75_ns": 28577.0, "ser_p95_ns": 31903.6, "ser_p99_ns": 33240.72, "ser_ci_low_ns": 26475.81789473684, "ser_ci_high_ns": 27463.92157894737, "deser_mean_ns": 64977.28421052632, "deser_median_ns": 64221.0, "deser_std_ns": 4410.276029049386, "deser_mad_ns": 2968.0, "deser_cv": 0.0678741206659253, "deser_min_ns": 53120.0, "deser_max_ns": 77018.0, "deser_p5_ns": 60195.0, "deser_p25_ns": 61696.0, "deser_p50_ns": 64221.0, "deser_p75_ns": 67720.0, "deser_p95_ns": 73279.3, "deser_p99_ns": 76149.44, "deser_ci_low_ns": 64102.505263157895, "deser_ci_high_ns": 65868.91921052632, "total_mean_ns": 91952.42105263157, "total_median_ns": 90492.0, "total_std_ns": 6463.290797048487, "total_mad_ns": 4271.0, "total_cv": 0.07028951193518916, "total_min_ns": 74578.0, "total_max_ns": 108979.0, "total_p5_ns": 84581.9, "total_p25_ns": 86831.5, "total_p50_ns": 90492.0, "total_p75_ns": 96562.5, "total_p95_ns": 103373.0, "total_p99_ns": 107312.38, "total_ci_low_ns": 90642.0902631579, "total_ci_high_ns": 93295.09763157894, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.51769938639457}, {"serializer": "Json.Net", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 12866.753086419752, "avg_time_deser_ns": 13177.20987654321, "avg_time_total_ns": 26043.962962962964, "median_size_bytes": 580.0, "avg_ops_per_sec": 38396.61427187931, "min_ops_per_sec": 28809.31116936994, "max_ops_per_sec": 53356.09860207022, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 12866.753086419752, "ser_median_ns": 12530.0, "ser_std_ns": 1719.7131848862489, "ser_mad_ns": 675.0, "ser_cv": 0.13365556744081183, "ser_min_ns": 9104.0, "ser_max_ns": 17946.0, "ser_p5_ns": 10890.0, "ser_p25_ns": 11887.0, "ser_p50_ns": 12530.0, "ser_p75_ns": 13278.0, "ser_p95_ns": 16905.0, "ser_p99_ns": 17786.0, "ser_ci_low_ns": 12506.887345679013, "ser_ci_high_ns": 13252.544444444444, "deser_mean_ns": 13177.20987654321, "deser_median_ns": 13420.0, "deser_std_ns": 1509.911543071724, "deser_mad_ns": 770.0, "deser_cv": 0.11458507204620927, "deser_min_ns": 9527.0, "deser_max_ns": 16965.0, "deser_p5_ns": 10341.0, "deser_p25_ns": 12341.0, "deser_p50_ns": 13420.0, "deser_p75_ns": 14082.0, "deser_p95_ns": 15139.0, "deser_p99_ns": 16749.0, "deser_ci_low_ns": 12848.874691358025, "deser_ci_high_ns": 13499.53024691358, "total_mean_ns": 26043.962962962964, "total_median_ns": 26024.0, "total_std_ns": 2928.1831758124545, "total_mad_ns": 1427.0, "total_cv": 0.11243231991907739, "total_min_ns": 18742.0, "total_max_ns": 34711.0, "total_p5_ns": 22104.0, "total_p25_ns": 24494.0, "total_p50_ns": 26024.0, "total_p75_ns": 27283.0, "total_p95_ns": 32206.0, "total_p99_ns": 33334.200000000004, "total_ci_low_ns": 25408.220679012345, "total_ci_high_ns": 26654.65586419753, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.623471688788701}, {"serializer": "Apache.Avro", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.12.1", "avg_time_ser_ns": 9373.035294117648, "avg_time_deser_ns": 9942.152941176471, "avg_time_total_ns": 19315.188235294117, "median_size_bytes": 114.0, "avg_ops_per_sec": 51772.72868471078, "min_ops_per_sec": 38239.455470154106, "max_ops_per_sec": 68422.85323297982, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 9373.035294117648, "ser_median_ns": 8930.0, "ser_std_ns": 1631.982576405728, "ser_mad_ns": 919.0, "ser_cv": 0.17411463044739964, "ser_min_ns": 6096.0, "ser_max_ns": 14035.0, "ser_p5_ns": 7421.0, "ser_p25_ns": 8322.0, "ser_p50_ns": 8930.0, "ser_p75_ns": 10204.0, "ser_p95_ns": 12312.4, "ser_p99_ns": 13589.799999999997, "ser_ci_low_ns": 9038.589705882354, "ser_ci_high_ns": 9727.838529411765, "deser_mean_ns": 9942.152941176471, "deser_median_ns": 9731.0, "deser_std_ns": 1010.6396548942741, "deser_mad_ns": 578.0, "deser_cv": 0.10165199236762933, "deser_min_ns": 8024.0, "deser_max_ns": 12932.0, "deser_p5_ns": 8516.2, "deser_p25_ns": 9420.0, "deser_p50_ns": 9731.0, "deser_p75_ns": 10483.0, "deser_p95_ns": 12069.8, "deser_p99_ns": 12734.599999999999, "deser_ci_low_ns": 9732.457352941175, "deser_ci_high_ns": 10170.725882352941, "total_mean_ns": 19315.188235294117, "total_median_ns": 18771.0, "total_std_ns": 2498.843558691165, "total_mad_ns": 1276.0, "total_cv": 0.12937194958965487, "total_min_ns": 14615.0, "total_max_ns": 26151.0, "total_p5_ns": 16346.4, "total_p25_ns": 17763.0, "total_p50_ns": 18771.0, "total_p75_ns": 20607.0, "total_p95_ns": 24496.0, "total_p99_ns": 25772.16, "total_ci_low_ns": 18792.770882352943, "total_ci_high_ns": 19833.776470588236, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.339082322238814}, {"serializer": "BinaryPack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.0.3", "avg_time_ser_ns": 3234.462365591398, "avg_time_deser_ns": 2467.7311827956987, "avg_time_total_ns": 5702.193548387097, "median_size_bytes": 224.0, "avg_ops_per_sec": 175371.1078928313, "min_ops_per_sec": 121036.06874848704, "max_ops_per_sec": 247647.35017335316, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 3234.462365591398, "ser_median_ns": 3154.0, "ser_std_ns": 580.2282451786011, "ser_mad_ns": 313.0, "ser_cv": 0.1793893944635558, "ser_min_ns": 2302.0, "ser_max_ns": 4824.0, "ser_p5_ns": 2466.4, "ser_p25_ns": 2841.0, "ser_p50_ns": 3154.0, "ser_p75_ns": 3465.0, "ser_p95_ns": 4424.999999999998, "ser_p99_ns": 4729.24, "ser_ci_low_ns": 3119.673387096774, "ser_ci_high_ns": 3351.4, "deser_mean_ns": 2467.7311827956987, "deser_median_ns": 2404.0, "deser_std_ns": 437.9123433178238, "deser_mad_ns": 325.0, "deser_cv": 0.17745544829632207, "deser_min_ns": 1657.0, "deser_max_ns": 3692.0, "deser_p5_ns": 1875.8, "deser_p25_ns": 2136.0, "deser_p50_ns": 2404.0, "deser_p75_ns": 2808.0, "deser_p95_ns": 3193.0, "deser_p99_ns": 3458.3199999999997, "deser_ci_low_ns": 2381.8016129032258, "deser_ci_high_ns": 2554.94811827957, "total_mean_ns": 5702.193548387097, "total_median_ns": 5609.0, "total_std_ns": 908.0537388098899, "total_mad_ns": 679.0, "total_cv": 0.15924639020131803, "total_min_ns": 4038.0, "total_max_ns": 8262.0, "total_p5_ns": 4506.2, "total_p25_ns": 5024.0, "total_p50_ns": 5609.0, "total_p75_ns": 6318.0, "total_p95_ns": 7323.399999999999, "total_p99_ns": 7839.719999999999, "total_ci_low_ns": 5524.56935483871, "total_ci_high_ns": 5887.588440860215, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "MemoryPack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 4461.688172043011, "avg_time_deser_ns": 3534.6451612903224, "avg_time_total_ns": 7996.333333333333, "median_size_bytes": 264.0, "avg_ops_per_sec": 125057.31793738797, "min_ops_per_sec": 78536.08733212911, "max_ops_per_sec": 264830.5084745763, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 4461.688172043011, "ser_median_ns": 4162.0, "ser_std_ns": 1164.0993997833561, "ser_mad_ns": 634.0, "ser_cv": 0.26091007593888255, "ser_min_ns": 1784.0, "ser_max_ns": 7729.0, "ser_p5_ns": 3026.0, "ser_p25_ns": 3695.0, "ser_p50_ns": 4162.0, "ser_p75_ns": 4984.0, "ser_p95_ns": 6585.799999999999, "ser_p99_ns": 7448.4, "ser_ci_low_ns": 4240.48064516129, "ser_ci_high_ns": 4698.540860215053, "deser_mean_ns": 3534.6451612903224, "deser_median_ns": 3380.0, "deser_std_ns": 702.8193942840275, "deser_mad_ns": 447.0, "deser_cv": 0.19883732658116754, "deser_min_ns": 1992.0, "deser_max_ns": 5393.0, "deser_p5_ns": 2592.8, "deser_p25_ns": 3110.0, "deser_p50_ns": 3380.0, "deser_p75_ns": 3939.0, "deser_p95_ns": 4931.799999999999, "deser_p99_ns": 5168.5199999999995, "deser_ci_low_ns": 3397.5672043010754, "deser_ci_high_ns": 3675.7516129032256, "total_mean_ns": 7996.333333333333, "total_median_ns": 7539.0, "total_std_ns": 1806.3654676998644, "total_mad_ns": 1063.0, "total_cv": 0.22589922060526046, "total_min_ns": 3776.0, "total_max_ns": 12733.0, "total_p5_ns": 5823.6, "total_p25_ns": 6752.0, "total_p50_ns": 7539.0, "total_p75_ns": 8916.0, "total_p95_ns": 11369.799999999997, "total_p99_ns": 12480.0, "total_ci_low_ns": 7645.783870967743, "total_ci_high_ns": 8352.990322580645, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.7888773268585964, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.598191395351432}, {"serializer": "GroBuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.9.2", "avg_time_ser_ns": 2942.2580645161293, "avg_time_deser_ns": 3911.2473118279568, "avg_time_total_ns": 6853.5053763440865, "median_size_bytes": 603.0, "avg_ops_per_sec": 145910.7340094387, "min_ops_per_sec": 92481.27254231018, "max_ops_per_sec": 240963.85542168675, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 2942.2580645161293, "ser_median_ns": 2783.0, "ser_std_ns": 670.5823540389256, "ser_mad_ns": 447.0, "ser_cv": 0.227914186769068, "ser_min_ns": 1702.0, "ser_max_ns": 4748.0, "ser_p5_ns": 2182.6, "ser_p25_ns": 2395.0, "ser_p50_ns": 2783.0, "ser_p75_ns": 3300.0, "ser_p95_ns": 4294.799999999999, "ser_p99_ns": 4656.92, "ser_ci_low_ns": 2806.9344086021506, "ser_ci_high_ns": 3075.872580645161, "deser_mean_ns": 3911.2473118279568, "deser_median_ns": 3752.0, "deser_std_ns": 811.379684561962, "deser_mad_ns": 525.0, "deser_cv": 0.20744780881236485, "deser_min_ns": 2448.0, "deser_max_ns": 6065.0, "deser_p5_ns": 2985.8, "deser_p25_ns": 3248.0, "deser_p50_ns": 3752.0, "deser_p75_ns": 4324.0, "deser_p95_ns": 5556.199999999999, "deser_p99_ns": 6035.5599999999995, "deser_ci_low_ns": 3746.718817204301, "deser_ci_high_ns": 4089.1201612903224, "total_mean_ns": 6853.5053763440865, "total_median_ns": 6512.0, "total_std_ns": 1433.0435581812208, "total_mad_ns": 890.0, "total_cv": 0.20909643744171968, "total_min_ns": 4150.0, "total_max_ns": 10813.0, "total_p5_ns": 5318.8, "total_p25_ns": 5653.0, "total_p50_ns": 6512.0, "total_p75_ns": 7466.0, "total_p95_ns": 9450.599999999999, "total_p99_ns": 10688.8, "total_ci_low_ns": 6575.05940860215, "total_ci_high_ns": 7126.176612903226, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.4977454040929587, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 0.955813313074796}, {"serializer": "MS XmlSerializer", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 14166.3908045977, "avg_time_deser_ns": 22944.827586206895, "avg_time_total_ns": 37111.2183908046, "median_size_bytes": 1257.0, "avg_ops_per_sec": 26946.02988965136, "min_ops_per_sec": 21533.624755055018, "max_ops_per_sec": 31310.66441229883, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 14166.3908045977, "ser_median_ns": 13622.0, "ser_std_ns": 1816.1502816385696, "ser_mad_ns": 822.0, "ser_cv": 0.12820133982532364, "ser_min_ns": 11462.0, "ser_max_ns": 19219.0, "ser_p5_ns": 12273.0, "ser_p25_ns": 12868.5, "ser_p50_ns": 13622.0, "ser_p75_ns": 15351.5, "ser_p95_ns": 18483.4, "ser_p99_ns": 19138.16, "ser_ci_low_ns": 13789.180172413793, "ser_ci_high_ns": 14555.781034482758, "deser_mean_ns": 22944.827586206895, "deser_median_ns": 22489.0, "deser_std_ns": 1859.9981320751847, "deser_mad_ns": 1004.0, "deser_cv": 0.08106394023171079, "deser_min_ns": 19684.0, "deser_max_ns": 28234.0, "deser_p5_ns": 20585.4, "deser_p25_ns": 21660.5, "deser_p50_ns": 22489.0, "deser_p75_ns": 23722.5, "deser_p95_ns": 27056.800000000003, "deser_p99_ns": 28025.02, "deser_ci_low_ns": 22572.516379310346, "deser_ci_high_ns": 23357.16551724138, "total_mean_ns": 37111.2183908046, "total_median_ns": 35972.0, "total_std_ns": 3435.3735500662888, "total_mad_ns": 1719.0, "total_cv": 0.09256967836220392, "total_min_ns": 31938.0, "total_max_ns": 46439.0, "total_p5_ns": 32827.3, "total_p25_ns": 34655.0, "total_p50_ns": 35972.0, "total_p75_ns": 39183.5, "total_p95_ns": 43606.0, "total_p99_ns": 46297.1, "total_ci_low_ns": 36427.26781609195, "total_ci_high_ns": 37807.933333333334, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.634347374585417}, {"serializer": "YAXLib", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "4.4.0", "avg_time_ser_ns": 180624.4347826087, "avg_time_deser_ns": 134060.98913043478, "avg_time_total_ns": 314685.42391304346, "median_size_bytes": 1122.0, "avg_ops_per_sec": 3177.776674766889, "min_ops_per_sec": 2535.316965327005, "max_ops_per_sec": 3863.271108913339, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 180624.4347826087, "ser_median_ns": 173927.0, "ser_std_ns": 22911.267224465453, "ser_mad_ns": 12178.5, "ser_cv": 0.12684478294445822, "ser_min_ns": 131753.0, "ser_max_ns": 248065.0, "ser_p5_ns": 149277.4, "ser_p25_ns": 166461.75, "ser_p50_ns": 173927.0, "ser_p75_ns": 194123.75, "ser_p95_ns": 224390.45, "ser_p99_ns": 235868.27000000005, "ser_ci_low_ns": 175943.00380434783, "ser_ci_high_ns": 185482.87364130435, "deser_mean_ns": 134060.98913043478, "deser_median_ns": 132202.0, "deser_std_ns": 8055.154068409532, "deser_mad_ns": 5127.5, "deser_cv": 0.06008574247182572, "deser_min_ns": 123155.0, "deser_max_ns": 157728.0, "deser_p5_ns": 124183.95, "deser_p25_ns": 127422.5, "deser_p50_ns": 132202.0, "deser_p75_ns": 137841.0, "deser_p95_ns": 147220.05, "deser_p99_ns": 156275.64, "deser_ci_low_ns": 132420.09510869565, "deser_ci_high_ns": 135645.1097826087, "total_mean_ns": 314685.42391304346, "total_median_ns": 306062.0, "total_std_ns": 29760.9149219937, "total_mad_ns": 15739.0, "total_cv": 0.09457354125883341, "total_min_ns": 258848.0, "total_max_ns": 394428.0, "total_p5_ns": 278249.35, "total_p25_ns": 293697.75, "total_p50_ns": 306062.0, "total_p75_ns": 333551.5, "total_p95_ns": 369962.45, "total_p99_ns": 392573.42, "total_ci_low_ns": 308631.76277173916, "total_ci_high_ns": 320605.27418478264, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.655586446792675}, {"serializer": "SpanJson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "4.2.1", "avg_time_ser_ns": 4869.284210526316, "avg_time_deser_ns": 4735.8421052631575, "avg_time_total_ns": 9605.126315789474, "median_size_bytes": 440.0, "avg_ops_per_sec": 104111.07226733094, "min_ops_per_sec": 67150.14773032501, "max_ops_per_sec": 149499.17775452236, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 4869.284210526316, "ser_median_ns": 4563.0, "ser_std_ns": 1144.4972292350749, "ser_mad_ns": 718.0, "ser_cv": 0.23504424464707252, "ser_min_ns": 3002.0, "ser_max_ns": 7856.0, "ser_p5_ns": 3574.1, "ser_p25_ns": 3964.0, "ser_p50_ns": 4563.0, "ser_p75_ns": 5534.0, "ser_p95_ns": 7217.799999999999, "ser_p99_ns": 7758.24, "ser_ci_low_ns": 4645.746578947368, "ser_ci_high_ns": 5100.424736842105, "deser_mean_ns": 4735.8421052631575, "deser_median_ns": 4564.0, "deser_std_ns": 845.2114215653128, "deser_mad_ns": 517.0, "deser_cv": 0.1784711995837004, "deser_min_ns": 3388.0, "deser_max_ns": 7140.0, "deser_p5_ns": 3689.1, "deser_p25_ns": 4089.5, "deser_p50_ns": 4564.0, "deser_p75_ns": 5144.0, "deser_p95_ns": 6402.9, "deser_p99_ns": 6908.76, "deser_ci_low_ns": 4567.9152631578945, "deser_ci_high_ns": 4908.4186842105255, "total_mean_ns": 9605.126315789474, "total_median_ns": 9210.0, "total_std_ns": 1942.2044244692092, "total_mad_ns": 1263.0, "total_cv": 0.20220498519384372, "total_min_ns": 6689.0, "total_max_ns": 14892.0, "total_p5_ns": 7337.8, "total_p25_ns": 8105.5, "total_p50_ns": 9210.0, "total_p75_ns": 10626.5, "total_p95_ns": 13711.9, "total_p99_ns": 14556.42, "total_ci_low_ns": 9223.255789473684, "total_ci_high_ns": 10000.370263157894, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9812110922467459, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.5552468703992663}, {"serializer": "MS Bond Fast", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 7183.45744680851, "avg_time_deser_ns": 5786.574468085107, "avg_time_total_ns": 12970.031914893618, "median_size_bytes": 282.0, "avg_ops_per_sec": 77100.81259335144, "min_ops_per_sec": 57012.54275940707, "max_ops_per_sec": 105999.576001696, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 7183.45744680851, "ser_median_ns": 6979.5, "ser_std_ns": 1094.2808181277983, "ser_mad_ns": 684.0, "ser_cv": 0.15233344475562655, "ser_min_ns": 4902.0, "ser_max_ns": 10018.0, "ser_p5_ns": 5584.6, "ser_p25_ns": 6545.25, "ser_p50_ns": 6979.5, "ser_p75_ns": 7824.0, "ser_p95_ns": 9085.399999999998, "ser_p99_ns": 9978.94, "ser_ci_low_ns": 6964.346542553192, "ser_ci_high_ns": 7401.547340425532, "deser_mean_ns": 5786.574468085107, "deser_median_ns": 5870.5, "deser_std_ns": 792.0145878063744, "deser_mad_ns": 568.5, "deser_cv": 0.13687106113895184, "deser_min_ns": 4440.0, "deser_max_ns": 7522.0, "deser_p5_ns": 4578.8, "deser_p25_ns": 5221.25, "deser_p50_ns": 5870.5, "deser_p75_ns": 6272.5, "deser_p95_ns": 7364.2, "deser_p99_ns": 7495.96, "deser_ci_low_ns": 5626.293882978724, "deser_ci_high_ns": 5945.840425531915, "total_mean_ns": 12970.031914893618, "total_median_ns": 12849.0, "total_std_ns": 1739.373663393226, "total_mad_ns": 1101.0, "total_cv": 0.13410712285109228, "total_min_ns": 9434.0, "total_max_ns": 17540.0, "total_p5_ns": 10525.45, "total_p25_ns": 11779.75, "total_p50_ns": 12849.0, "total_p75_ns": 13932.25, "total_p95_ns": 16024.65, "total_p99_ns": 17456.3, "total_ci_low_ns": 12613.009308510638, "total_ci_high_ns": 13320.772340425532, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.208999432904926}, {"serializer": "ProtoBuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "2.4.9.1", "avg_time_ser_ns": 5218.81914893617, "avg_time_deser_ns": 5925.989361702128, "avg_time_total_ns": 11144.808510638299, "median_size_bytes": 155.0, "avg_ops_per_sec": 89727.87635116818, "min_ops_per_sec": 65006.82571670025, "max_ops_per_sec": 127291.24236252546, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 5218.81914893617, "ser_median_ns": 5142.0, "ser_std_ns": 953.5589021368471, "ser_mad_ns": 724.0, "ser_cv": 0.18271545246614368, "ser_min_ns": 3191.0, "ser_max_ns": 7923.0, "ser_p5_ns": 4040.4, "ser_p25_ns": 4417.0, "ser_p50_ns": 5142.0, "ser_p75_ns": 5818.25, "ser_p95_ns": 6872.35, "ser_p99_ns": 7859.759999999999, "ser_ci_low_ns": 5030.433510638298, "ser_ci_high_ns": 5416.294414893617, "deser_mean_ns": 5925.989361702128, "deser_median_ns": 5789.5, "deser_std_ns": 718.7434449583217, "deser_mad_ns": 430.0, "deser_cv": 0.12128665798884868, "deser_min_ns": 4485.0, "deser_max_ns": 7704.0, "deser_p5_ns": 4940.9, "deser_p25_ns": 5433.75, "deser_p50_ns": 5789.5, "deser_p75_ns": 6369.0, "deser_p95_ns": 7226.6, "deser_p99_ns": 7602.629999999999, "deser_ci_low_ns": 5776.115425531915, "deser_ci_high_ns": 6070.330053191489, "total_mean_ns": 11144.808510638299, "total_median_ns": 10936.5, "total_std_ns": 1575.3828841760173, "total_mad_ns": 1107.0, "total_cv": 0.14135576063709238, "total_min_ns": 7856.0, "total_max_ns": 15383.0, "total_p5_ns": 9017.95, "total_p25_ns": 10044.25, "total_p50_ns": 10936.5, "total_p75_ns": 12281.0, "total_p95_ns": 13935.25, "total_p99_ns": 14911.489999999996, "total_ci_low_ns": 10837.731117021276, "total_ci_high_ns": 11470.11994680851, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9995424388011896, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.210088500674834}, {"serializer": "FsPicklerJson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 19097.852631578946, "avg_time_deser_ns": 16165.747368421053, "avg_time_total_ns": 35263.6, "median_size_bytes": 768.0, "avg_ops_per_sec": 28357.853423927223, "min_ops_per_sec": 18408.070097930933, "max_ops_per_sec": 48466.04953230262, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 19097.852631578946, "ser_median_ns": 17754.0, "ser_std_ns": 5095.445928679263, "ser_mad_ns": 2753.0, "ser_cv": 0.2668072702715158, "ser_min_ns": 10083.0, "ser_max_ns": 32174.0, "ser_p5_ns": 13891.1, "ser_p25_ns": 15364.0, "ser_p50_ns": 17754.0, "ser_p75_ns": 21876.5, "ser_p95_ns": 29472.699999999997, "ser_p99_ns": 31474.640000000003, "ser_ci_low_ns": 18096.582894736843, "ser_ci_high_ns": 20093.623157894734, "deser_mean_ns": 16165.747368421053, "deser_median_ns": 15631.0, "deser_std_ns": 2477.0219893045605, "deser_mad_ns": 1245.0, "deser_cv": 0.1532265680548302, "deser_min_ns": 10004.0, "deser_max_ns": 23321.0, "deser_p5_ns": 13352.6, "deser_p25_ns": 14510.5, "deser_p50_ns": 15631.0, "deser_p75_ns": 17275.0, "deser_p95_ns": 20759.499999999996, "deser_p99_ns": 22842.54, "deser_ci_low_ns": 15675.73842105263, "deser_ci_high_ns": 16657.079210526314, "total_mean_ns": 35263.6, "total_median_ns": 33567.0, "total_std_ns": 7456.330616585466, "total_mad_ns": 3885.0, "total_cv": 0.21144553070547153, "total_min_ns": 20633.0, "total_max_ns": 54324.0, "total_p5_ns": 27733.3, "total_p25_ns": 29719.5, "total_p50_ns": 33567.0, "total_p75_ns": 38693.5, "total_p95_ns": 50235.799999999996, "total_p99_ns": 53960.22, "total_ci_low_ns": 33784.62526315789, "total_ci_high_ns": 36772.191578947364, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.514498700309324}, {"serializer": "Migrant", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "0.13.0.0", "avg_time_ser_ns": 13925.576086956522, "avg_time_deser_ns": 39754.75, "avg_time_total_ns": 53680.32608695652, "median_size_bytes": 1030.0, "avg_ops_per_sec": 18628.798908190394, "min_ops_per_sec": 13384.551550600298, "max_ops_per_sec": 30626.933325166152, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 13925.576086956522, "ser_median_ns": 13580.5, "ser_std_ns": 2013.4750302508994, "ser_mad_ns": 1243.5, "ser_cv": 0.14458827539184058, "ser_min_ns": 9040.0, "ser_max_ns": 19431.0, "ser_p5_ns": 11426.2, "ser_p25_ns": 12577.75, "ser_p50_ns": 13580.5, "ser_p75_ns": 15048.75, "ser_p95_ns": 17836.0, "ser_p99_ns": 19367.3, "ser_ci_low_ns": 13510.481249999999, "ser_ci_high_ns": 14338.290489130435, "deser_mean_ns": 39754.75, "deser_median_ns": 38341.0, "deser_std_ns": 6210.547167812702, "deser_mad_ns": 3683.0, "deser_cv": 0.15622151234286977, "deser_min_ns": 23611.0, "deser_max_ns": 56844.0, "deser_p5_ns": 32043.75, "deser_p25_ns": 35363.25, "deser_p50_ns": 38341.0, "deser_p75_ns": 43049.75, "deser_p95_ns": 51427.700000000004, "deser_p99_ns": 56560.08, "deser_ci_low_ns": 38512.32880434783, "deser_ci_high_ns": 41032.07255434782, "total_mean_ns": 53680.32608695652, "total_median_ns": 51643.0, "total_std_ns": 8012.160038710247, "total_mad_ns": 4810.0, "total_cv": 0.14925691818137216, "total_min_ns": 32651.0, "total_max_ns": 74713.0, "total_p5_ns": 43641.95, "total_p25_ns": 48242.0, "total_p50_ns": 51643.0, "total_p75_ns": 58362.5, "total_p95_ns": 68942.05, "total_p99_ns": 74586.51, "total_ci_low_ns": 52107.128532608695, "total_ci_high_ns": 55323.15434782609, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.402545762214347}, {"serializer": "MS Binary", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 24896.344086021505, "avg_time_deser_ns": 26581.827956989247, "avg_time_total_ns": 51478.17204301075, "median_size_bytes": 1407.0, "avg_ops_per_sec": 19425.709195044565, "min_ops_per_sec": 14646.220542788933, "max_ops_per_sec": 23359.573921371673, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 24896.344086021505, "ser_median_ns": 24053.0, "ser_std_ns": 3518.0415701087954, "ser_mad_ns": 2167.0, "ser_cv": 0.1413075573647804, "ser_min_ns": 19784.0, "ser_max_ns": 34495.0, "ser_p5_ns": 20396.6, "ser_p25_ns": 22227.0, "ser_p50_ns": 24053.0, "ser_p75_ns": 26591.0, "ser_p95_ns": 32447.79999999999, "ser_p99_ns": 33607.2, "ser_ci_low_ns": 24169.162903225806, "ser_ci_high_ns": 25625.26935483871, "deser_mean_ns": 26581.827956989247, "deser_median_ns": 25951.0, "deser_std_ns": 2710.3149489041657, "deser_mad_ns": 1688.0, "deser_cv": 0.1019611951928059, "deser_min_ns": 22516.0, "deser_max_ns": 33782.0, "deser_p5_ns": 23088.0, "deser_p25_ns": 24662.0, "deser_p50_ns": 25951.0, "deser_p75_ns": 28143.0, "deser_p95_ns": 32105.999999999996, "deser_p99_ns": 32808.64, "deser_ci_low_ns": 26038.448387096774, "deser_ci_high_ns": 27136.79005376344, "total_mean_ns": 51478.17204301075, "total_median_ns": 50331.0, "total_std_ns": 6103.805394683422, "total_mad_ns": 3893.0, "total_cv": 0.11857074858026435, "total_min_ns": 42809.0, "total_max_ns": 68277.0, "total_p5_ns": 43735.4, "total_p25_ns": 46550.0, "total_p50_ns": 50331.0, "total_p75_ns": 55140.0, "total_p95_ns": 63812.799999999996, "total_p99_ns": 66415.84, "total_ci_low_ns": 50227.43655913979, "total_ci_high_ns": 52767.1440860215, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.44773607813942}, {"serializer": "Jil", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "2.17.0", "avg_time_ser_ns": 11107.684210526315, "avg_time_deser_ns": 9815.336842105264, "avg_time_total_ns": 20923.02105263158, "median_size_bytes": 440.0, "avg_ops_per_sec": 47794.24527101098, "min_ops_per_sec": 33318.895145436974, "max_ops_per_sec": 68535.39853334246, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 11107.684210526315, "ser_median_ns": 10558.0, "ser_std_ns": 2269.42689955143, "ser_mad_ns": 1451.0, "ser_cv": 0.20431143490744752, "ser_min_ns": 7027.0, "ser_max_ns": 16944.0, "ser_p5_ns": 8371.1, "ser_p25_ns": 9301.5, "ser_p50_ns": 10558.0, "ser_p75_ns": 12525.5, "ser_p95_ns": 15679.599999999999, "ser_p99_ns": 16726.86, "ser_ci_low_ns": 10669.456578947369, "ser_ci_high_ns": 11564.711842105262, "deser_mean_ns": 9815.336842105264, "deser_median_ns": 9811.0, "deser_std_ns": 1438.3008489668834, "deser_mad_ns": 970.0, "deser_cv": 0.1465360661691144, "deser_min_ns": 6927.0, "deser_max_ns": 13632.0, "deser_p5_ns": 7733.4, "deser_p25_ns": 8782.0, "deser_p50_ns": 9811.0, "deser_p75_ns": 10607.0, "deser_p95_ns": 12415.0, "deser_p99_ns": 13472.2, "deser_ci_low_ns": 9518.167631578946, "deser_ci_high_ns": 10108.734999999999, "total_mean_ns": 20923.02105263158, "total_median_ns": 20460.0, "total_std_ns": 3562.284722809307, "total_mad_ns": 2400.0, "total_cv": 0.17025670976712337, "total_min_ns": 14591.0, "total_max_ns": 30013.0, "total_p5_ns": 15951.5, "total_p25_ns": 18165.0, "total_p50_ns": 20460.0, "total_p75_ns": 23394.5, "total_p95_ns": 27839.699999999997, "total_p99_ns": 29274.160000000003, "total_ci_low_ns": 20195.686578947367, "total_ci_high_ns": 21645.26789473684, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.8043936516899866}, {"serializer": "ExtendedXmlSerializer", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "3.10.0.0", "avg_time_ser_ns": 25401.08510638298, "avg_time_deser_ns": 27837.40425531915, "avg_time_total_ns": 53238.48936170213, "median_size_bytes": 798.0, "avg_ops_per_sec": 18783.402985122346, "min_ops_per_sec": 12441.370043669209, "max_ops_per_sec": 30094.194829817327, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 25401.08510638298, "ser_median_ns": 24508.5, "ser_std_ns": 5092.908913084947, "ser_mad_ns": 3334.0, "ser_cv": 0.2004996594340437, "ser_min_ns": 15526.0, "ser_max_ns": 39778.0, "ser_p5_ns": 19264.05, "ser_p25_ns": 21551.75, "ser_p50_ns": 24508.5, "ser_p75_ns": 28920.0, "ser_p95_ns": 34980.14999999999, "ser_p99_ns": 39687.79, "ser_ci_low_ns": 24349.675531914894, "ser_ci_high_ns": 26438.599468085107, "deser_mean_ns": 27837.40425531915, "deser_median_ns": 26635.0, "deser_std_ns": 5118.3716293266225, "deser_mad_ns": 3168.5, "deser_cv": 0.18386669900619804, "deser_min_ns": 17703.0, "deser_max_ns": 42409.0, "deser_p5_ns": 21228.25, "deser_p25_ns": 24138.0, "deser_p50_ns": 26635.0, "deser_p75_ns": 31209.0, "deser_p95_ns": 37754.149999999994, "deser_p99_ns": 40725.69999999999, "deser_ci_low_ns": 26827.37659574468, "deser_ci_high_ns": 28940.04414893617, "total_mean_ns": 53238.48936170213, "total_median_ns": 51271.0, "total_std_ns": 9952.368589041691, "total_mad_ns": 6839.0, "total_cv": 0.18693934986444355, "total_min_ns": 33229.0, "total_max_ns": 80377.0, "total_p5_ns": 40478.65, "total_p25_ns": 45957.0, "total_p50_ns": 51271.0, "total_p75_ns": 59871.25, "total_p95_ns": 72953.04999999999, "total_p99_ns": 79167.06999999999, "total_ci_low_ns": 51284.777659574465, "total_ci_high_ns": 55264.17393617021, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.681834574844104}, {"serializer": "fastJson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "2.4.0.4", "avg_time_ser_ns": 14304.630434782608, "avg_time_deser_ns": 19608.217391304348, "avg_time_total_ns": 33912.84782608696, "median_size_bytes": 972.0, "avg_ops_per_sec": 29487.349606504136, "min_ops_per_sec": 23816.895705813706, "max_ops_per_sec": 38695.19792593739, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 14304.630434782608, "ser_median_ns": 13870.5, "ser_std_ns": 1757.1982989750156, "ser_mad_ns": 1118.5, "ser_cv": 0.12284122312606395, "ser_min_ns": 10941.0, "ser_max_ns": 19367.0, "ser_p5_ns": 12253.5, "ser_p25_ns": 12982.25, "ser_p50_ns": 13870.5, "ser_p75_ns": 15291.0, "ser_p95_ns": 17828.15, "ser_p99_ns": 19046.68, "ser_ci_low_ns": 13966.43043478261, "ser_ci_high_ns": 14661.428804347826, "deser_mean_ns": 19608.217391304348, "deser_median_ns": 19390.0, "deser_std_ns": 1547.4370361320425, "deser_mad_ns": 1072.5, "deser_cv": 0.07891778254245, "deser_min_ns": 14902.0, "deser_max_ns": 23667.0, "deser_p5_ns": 17539.75, "deser_p25_ns": 18446.75, "deser_p50_ns": 19390.0, "deser_p75_ns": 20621.75, "deser_p95_ns": 22098.45, "deser_p99_ns": 23034.550000000003, "deser_ci_low_ns": 19295.72472826087, "deser_ci_high_ns": 19920.15570652174, "total_mean_ns": 33912.84782608696, "total_median_ns": 33592.0, "total_std_ns": 3077.6189166901167, "total_mad_ns": 2112.5, "total_cv": 0.090750824952032, "total_min_ns": 25843.0, "total_max_ns": 41987.0, "total_p5_ns": 30066.95, "total_p25_ns": 31620.5, "total_p50_ns": 33592.0, "total_p75_ns": 35948.0, "total_p95_ns": 39158.55, "total_p99_ns": 40913.200000000004, "total_ci_low_ns": 33313.32744565217, "total_ci_high_ns": 34570.55190217391, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.410817997476599}, {"serializer": "FlatSharp", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "7.5.1", "avg_time_ser_ns": 7667.266666666666, "avg_time_deser_ns": 5392.8, "avg_time_total_ns": 13060.066666666668, "median_size_bytes": 429.0, "avg_ops_per_sec": 76569.28754830245, "min_ops_per_sec": 50906.12909794339, "max_ops_per_sec": 137551.5818431912, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 7667.266666666666, "ser_median_ns": 7468.5, "ser_std_ns": 1539.833398255156, "ser_mad_ns": 966.0, "ser_cv": 0.20083211725888706, "ser_min_ns": 3555.0, "ser_max_ns": 11818.0, "ser_p5_ns": 5742.9, "ser_p25_ns": 6648.25, "ser_p50_ns": 7468.5, "ser_p75_ns": 8455.75, "ser_p95_ns": 10537.5, "ser_p99_ns": 11670.26, "ser_ci_low_ns": 7344.603611111111, "ser_ci_high_ns": 7975.928611111111, "deser_mean_ns": 5392.8, "deser_median_ns": 5264.5, "deser_std_ns": 1101.0353983022558, "deser_mad_ns": 663.0, "deser_cv": 0.20416766768696332, "deser_min_ns": 3178.0, "deser_max_ns": 8105.0, "deser_p5_ns": 3743.1, "deser_p25_ns": 4625.5, "deser_p50_ns": 5264.5, "deser_p75_ns": 5959.75, "deser_p95_ns": 7422.05, "deser_p99_ns": 7989.3, "deser_ci_low_ns": 5162.639722222222, "deser_ci_high_ns": 5620.485277777778, "total_mean_ns": 13060.066666666668, "total_median_ns": 12863.0, "total_std_ns": 2570.5810946252877, "total_mad_ns": 1385.0, "total_cv": 0.19682756300059373, "total_min_ns": 7270.0, "total_max_ns": 19644.0, "total_p5_ns": 9833.3, "total_p25_ns": 11443.0, "total_p50_ns": 12863.0, "total_p75_ns": 14165.0, "total_p95_ns": 17911.05, "total_p99_ns": 19395.69, "total_ci_low_ns": 12562.7125, "total_ci_high_ns": 13608.338333333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9983273596176822, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.825729781266402}, {"serializer": "FsPickler", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 14420.04347826087, "avg_time_deser_ns": 8426.434782608696, "avg_time_total_ns": 22846.478260869564, "median_size_bytes": 386.0, "avg_ops_per_sec": 43770.4222323296, "min_ops_per_sec": 27659.456768269072, "max_ops_per_sec": 80282.59473346178, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 14420.04347826087, "ser_median_ns": 13805.5, "ser_std_ns": 3402.6911001975473, "ser_mad_ns": 2099.5, "ser_cv": 0.23596954512150534, "ser_min_ns": 7898.0, "ser_max_ns": 23431.0, "ser_p5_ns": 10123.3, "ser_p25_ns": 12070.75, "ser_p50_ns": 13805.5, "ser_p75_ns": 16258.5, "ser_p95_ns": 21171.0, "ser_p99_ns": 23082.47, "ser_ci_low_ns": 13783.019836956522, "ser_ci_high_ns": 15098.387499999999, "deser_mean_ns": 8426.434782608696, "deser_median_ns": 7986.5, "deser_std_ns": 1596.070210416532, "deser_mad_ns": 800.5, "deser_cv": 0.18941227833515767, "deser_min_ns": 4558.0, "deser_max_ns": 12723.0, "deser_p5_ns": 6494.65, "deser_p25_ns": 7449.5, "deser_p50_ns": 7986.5, "deser_p75_ns": 9196.5, "deser_p95_ns": 11589.6, "deser_p99_ns": 12262.54, "deser_ci_low_ns": 8105.663858695652, "deser_ci_high_ns": 8735.416032608697, "total_mean_ns": 22846.478260869564, "total_median_ns": 21935.5, "total_std_ns": 4929.767282647395, "total_mad_ns": 2840.0, "total_cv": 0.21577799546860063, "total_min_ns": 12456.0, "total_max_ns": 36154.0, "total_p5_ns": 16761.9, "total_p25_ns": 19416.25, "total_p50_ns": 21935.5, "total_p75_ns": 24838.25, "total_p95_ns": 32206.850000000002, "total_p99_ns": 35345.01, "total_ci_low_ns": 21829.12527173913, "total_ci_high_ns": 23847.760597826084, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.829344273739379}, {"serializer": "NetSerializer", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "4.1.2", "avg_time_ser_ns": 3652.967032967033, "avg_time_deser_ns": 2921.285714285714, "avg_time_total_ns": 6574.252747252747, "median_size_bytes": 136.0, "avg_ops_per_sec": 152108.54198112182, "min_ops_per_sec": 100270.7309736288, "max_ops_per_sec": 212449.54323348205, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 3652.967032967033, "ser_median_ns": 3353.0, "ser_std_ns": 919.9515259035174, "ser_mad_ns": 503.0, "ser_cv": 0.2518367994020218, "ser_min_ns": 2254.0, "ser_max_ns": 6141.0, "ser_p5_ns": 2500.5, "ser_p25_ns": 2985.0, "ser_p50_ns": 3353.0, "ser_p75_ns": 4240.5, "ser_p95_ns": 5374.0, "ser_p99_ns": 5901.5999999999985, "ser_ci_low_ns": 3468.8104395604396, "ser_ci_high_ns": 3839.3505494505494, "deser_mean_ns": 2921.285714285714, "deser_median_ns": 2888.0, "deser_std_ns": 363.7813533097498, "deser_mad_ns": 243.0, "deser_cv": 0.12452782400940138, "deser_min_ns": 2058.0, "deser_max_ns": 3931.0, "deser_p5_ns": 2406.5, "deser_p25_ns": 2650.0, "deser_p50_ns": 2888.0, "deser_p75_ns": 3140.5, "deser_p95_ns": 3518.5, "deser_p99_ns": 3887.7999999999997, "deser_ci_low_ns": 2850.9445054945054, "deser_ci_high_ns": 2995.0016483516483, "total_mean_ns": 6574.252747252747, "total_median_ns": 6366.0, "total_std_ns": 1220.8725804240414, "total_mad_ns": 774.0, "total_cv": 0.18570514815303082, "total_min_ns": 4707.0, "total_max_ns": 9973.0, "total_p5_ns": 4875.0, "total_p25_ns": 5621.5, "total_p50_ns": 6366.0, "total_p75_ns": 7209.5, "total_p95_ns": 8777.0, "total_p99_ns": 9395.199999999997, "total_ci_low_ns": 6336.721428571428, "total_ci_high_ns": 6826.662362637362, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.4120288313836701, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.8084786685884178}, {"serializer": "Json.Net (Helper)", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 12796.522727272728, "avg_time_deser_ns": 13477.625, "avg_time_total_ns": 26274.147727272728, "median_size_bytes": 541.0, "avg_ops_per_sec": 38060.22598259177, "min_ops_per_sec": 27407.772844378665, "max_ops_per_sec": 55099.4545154003, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 12796.522727272728, "ser_median_ns": 12501.5, "ser_std_ns": 1909.1649313534222, "ser_mad_ns": 981.5, "ser_cv": 0.14919404060327215, "ser_min_ns": 8555.0, "ser_max_ns": 17698.0, "ser_p5_ns": 10058.15, "ser_p25_ns": 11640.75, "ser_p50_ns": 12501.5, "ser_p75_ns": 13587.0, "ser_p95_ns": 16793.8, "ser_p99_ns": 17281.269999999997, "ser_ci_low_ns": 12406.295738636363, "ser_ci_high_ns": 13204.42159090909, "deser_mean_ns": 13477.625, "deser_median_ns": 13915.0, "deser_std_ns": 1945.6375683599947, "deser_mad_ns": 1258.0, "deser_cv": 0.14436056563081365, "deser_min_ns": 9119.0, "deser_max_ns": 18788.0, "deser_p5_ns": 10086.4, "deser_p25_ns": 12087.0, "deser_p50_ns": 13915.0, "deser_p75_ns": 14721.0, "deser_p95_ns": 15940.099999999999, "deser_p99_ns": 18125.059999999998, "deser_ci_low_ns": 13072.212500000001, "deser_ci_high_ns": 13874.765625, "total_mean_ns": 26274.147727272728, "total_median_ns": 26820.0, "total_std_ns": 3559.774723402323, "total_mad_ns": 1969.0, "total_cv": 0.13548583041981052, "total_min_ns": 18149.0, "total_max_ns": 36486.0, "total_p5_ns": 20062.45, "total_p25_ns": 23877.5, "total_p50_ns": 26820.0, "total_p75_ns": 28367.75, "total_p95_ns": 31965.7, "total_p99_ns": 34844.30999999999, "total_ci_low_ns": 25569.95284090909, "total_ci_high_ns": 27035.917045454542, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.984427434382157}, {"serializer": "Utf8Json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.3.7", "avg_time_ser_ns": 7268.387096774193, "avg_time_deser_ns": 6830.021505376344, "avg_time_total_ns": 14098.408602150537, "median_size_bytes": 440.0, "avg_ops_per_sec": 70929.99133586342, "min_ops_per_sec": 48123.195380173245, "max_ops_per_sec": 110229.27689594356, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 7268.387096774193, "ser_median_ns": 7153.0, "ser_std_ns": 1657.308451993499, "ser_mad_ns": 1154.0, "ser_cv": 0.22801598620539, "ser_min_ns": 3961.0, "ser_max_ns": 11779.0, "ser_p5_ns": 4723.2, "ser_p25_ns": 6092.0, "ser_p50_ns": 7153.0, "ser_p75_ns": 8405.0, "ser_p95_ns": 9967.8, "ser_p99_ns": 11611.56, "ser_ci_low_ns": 6948.741397849462, "ser_ci_high_ns": 7605.869623655914, "deser_mean_ns": 6830.021505376344, "deser_median_ns": 6768.0, "deser_std_ns": 863.3959867681077, "deser_mad_ns": 564.0, "deser_cv": 0.1264118987163472, "deser_min_ns": 5099.0, "deser_max_ns": 9183.0, "deser_p5_ns": 5551.4, "deser_p25_ns": 6188.0, "deser_p50_ns": 6768.0, "deser_p75_ns": 7327.0, "deser_p95_ns": 8158.799999999999, "deser_p99_ns": 8868.359999999999, "deser_ci_low_ns": 6654.141666666666, "deser_ci_high_ns": 7002.804032258065, "total_mean_ns": 14098.408602150537, "total_median_ns": 13855.0, "total_std_ns": 2459.595071995809, "total_mad_ns": 1626.0, "total_cv": 0.17445905714639512, "total_min_ns": 9072.0, "total_max_ns": 20780.0, "total_p5_ns": 10469.2, "total_p25_ns": 12371.0, "total_p50_ns": 13855.0, "total_p75_ns": 15731.0, "total_p95_ns": 18063.0, "total_p99_ns": 20632.8, "total_ci_low_ns": 13624.60752688172, "total_ci_high_ns": 14616.14489247312, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.510370051975687}, {"serializer": "Hyperion", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "0.12.2", "avg_time_ser_ns": 6922.855670103093, "avg_time_deser_ns": 7228.81443298969, "avg_time_total_ns": 14151.670103092783, "median_size_bytes": 581.0, "avg_ops_per_sec": 70663.037840421, "min_ops_per_sec": 50291.691812512574, "max_ops_per_sec": 100200.4008016032, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 6922.855670103093, "ser_median_ns": 6647.0, "ser_std_ns": 1386.4361085598414, "ser_mad_ns": 756.0, "ser_cv": 0.20026939382071432, "ser_min_ns": 4641.0, "ser_max_ns": 10461.0, "ser_p5_ns": 5225.6, "ser_p25_ns": 5891.0, "ser_p50_ns": 6647.0, "ser_p75_ns": 7400.0, "ser_p95_ns": 9651.199999999999, "ser_p99_ns": 10191.239999999998, "ser_ci_low_ns": 6646.118298969072, "ser_ci_high_ns": 7212.819845360825, "deser_mean_ns": 7228.81443298969, "deser_median_ns": 6968.0, "deser_std_ns": 1240.331460486612, "deser_mad_ns": 755.0, "deser_cv": 0.1715815880991755, "deser_min_ns": 5276.0, "deser_max_ns": 10216.0, "deser_p5_ns": 5663.6, "deser_p25_ns": 6384.0, "deser_p50_ns": 6968.0, "deser_p75_ns": 8079.0, "deser_p95_ns": 9616.8, "deser_p99_ns": 10184.32, "deser_ci_low_ns": 6988.954381443299, "deser_ci_high_ns": 7470.134793814433, "total_mean_ns": 14151.670103092783, "total_median_ns": 13433.0, "total_std_ns": 2501.183206344755, "total_mad_ns": 1490.0, "total_cv": 0.17674120355576498, "total_min_ns": 9980.0, "total_max_ns": 19884.0, "total_p5_ns": 10984.800000000001, "total_p25_ns": 12323.0, "total_p50_ns": 13433.0, "total_p75_ns": 15851.0, "total_p95_ns": 19357.2, "total_p99_ns": 19860.0, "total_ci_low_ns": 13681.288917525773, "total_ci_high_ns": 14689.810567010309, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.436696141619097}, {"serializer": "Ceras", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "4.1.7", "avg_time_ser_ns": 7341.591397849463, "avg_time_deser_ns": 16542.354838709678, "avg_time_total_ns": 23883.94623655914, "median_size_bytes": 211.0, "avg_ops_per_sec": 41869.12791108618, "min_ops_per_sec": 30374.825344754267, "max_ops_per_sec": 64341.78355424012, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 7341.591397849463, "ser_median_ns": 7025.0, "ser_std_ns": 1340.8065161827944, "ser_mad_ns": 896.0, "ser_cv": 0.18263159082587332, "ser_min_ns": 5124.0, "ser_max_ns": 11492.0, "ser_p5_ns": 5722.6, "ser_p25_ns": 6378.0, "ser_p50_ns": 7025.0, "ser_p75_ns": 8242.0, "ser_p95_ns": 9812.399999999998, "ser_p99_ns": 10807.519999999999, "ser_ci_low_ns": 7083.876344086022, "ser_ci_high_ns": 7619.945161290322, "deser_mean_ns": 16542.354838709678, "deser_median_ns": 15689.0, "deser_std_ns": 2675.1171394309854, "deser_mad_ns": 1573.0, "deser_cv": 0.16171320017698565, "deser_min_ns": 10418.0, "deser_max_ns": 23067.0, "deser_p5_ns": 13009.0, "deser_p25_ns": 14717.0, "deser_p50_ns": 15689.0, "deser_p75_ns": 18476.0, "deser_p95_ns": 21463.399999999998, "deser_p99_ns": 22796.52, "deser_ci_low_ns": 15996.638440860215, "deser_ci_high_ns": 17050.823924731183, "total_mean_ns": 23883.94623655914, "total_median_ns": 22712.0, "total_std_ns": 3757.714885421931, "total_mad_ns": 2432.0, "total_cv": 0.15733224519112338, "total_min_ns": 15542.0, "total_max_ns": 32922.0, "total_p5_ns": 18893.2, "total_p25_ns": 21131.0, "total_p50_ns": 22712.0, "total_p75_ns": 26573.0, "total_p95_ns": 30559.6, "total_p99_ns": 32827.24, "total_ci_low_ns": 23137.16559139785, "total_ci_high_ns": 24621.732258064512, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.624098424737962}, {"serializer": "MS DataContract", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 11046.166666666666, "avg_time_deser_ns": 19059.40625, "avg_time_total_ns": 30105.572916666668, "median_size_bytes": 978.0, "avg_ops_per_sec": 33216.441446506826, "min_ops_per_sec": 24991.2530614285, "max_ops_per_sec": 43453.70008256203, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 11046.166666666666, "ser_median_ns": 10377.5, "ser_std_ns": 2155.8714670536697, "ser_mad_ns": 1327.0, "ser_cv": 0.19516919598536475, "ser_min_ns": 8042.0, "ser_max_ns": 16722.0, "ser_p5_ns": 8406.75, "ser_p25_ns": 9400.0, "ser_p50_ns": 10377.5, "ser_p75_ns": 12490.0, "ser_p95_ns": 15150.25, "ser_p99_ns": 16255.55, "ser_ci_low_ns": 10610.174739583334, "ser_ci_high_ns": 11461.643489583332, "deser_mean_ns": 19059.40625, "deser_median_ns": 18360.0, "deser_std_ns": 2239.381618488391, "deser_mad_ns": 1199.5, "deser_cv": 0.11749482586785151, "deser_min_ns": 14743.0, "deser_max_ns": 24724.0, "deser_p5_ns": 16465.25, "deser_p25_ns": 17449.75, "deser_p50_ns": 18360.0, "deser_p75_ns": 20247.5, "deser_p95_ns": 23352.0, "deser_p99_ns": 24709.75, "deser_ci_low_ns": 18631.321354166666, "deser_ci_high_ns": 19503.88671875, "total_mean_ns": 30105.572916666668, "total_median_ns": 28756.5, "total_std_ns": 4128.5778072378225, "total_mad_ns": 2462.5, "total_cv": 0.13713666299146265, "total_min_ns": 23013.0, "total_max_ns": 40014.0, "total_p5_ns": 25096.75, "total_p25_ns": 26987.0, "total_p50_ns": 28756.5, "total_p75_ns": 33010.25, "total_p95_ns": 37278.25, "total_p99_ns": 39875.3, "total_ci_low_ns": 29275.405729166665, "total_ci_high_ns": 30915.98828125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.072705752416036}, {"serializer": "Google.Protobuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "3.35.1", "avg_time_ser_ns": 4616.263157894737, "avg_time_deser_ns": 5024.557894736842, "avg_time_total_ns": 9640.82105263158, "median_size_bytes": 155.0, "avg_ops_per_sec": 103725.60537538842, "min_ops_per_sec": 69657.2861521315, "max_ops_per_sec": 148434.02107763098, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 4616.263157894737, "ser_median_ns": 4439.0, "ser_std_ns": 1011.1410997621547, "ser_mad_ns": 664.0, "ser_cv": 0.21903887737268626, "ser_min_ns": 2761.0, "ser_max_ns": 7362.0, "ser_p5_ns": 3233.3, "ser_p25_ns": 3829.5, "ser_p50_ns": 4439.0, "ser_p75_ns": 5288.5, "ser_p95_ns": 6594.7, "ser_p99_ns": 6894.8200000000015, "ser_ci_low_ns": 4426.691842105263, "ser_ci_high_ns": 4824.305789473684, "deser_mean_ns": 5024.557894736842, "deser_median_ns": 4929.0, "deser_std_ns": 784.4699079672586, "deser_mad_ns": 571.0, "deser_cv": 0.1561271507666337, "deser_min_ns": 3747.0, "deser_max_ns": 7225.0, "deser_p5_ns": 4026.2, "deser_p25_ns": 4384.5, "deser_p50_ns": 4929.0, "deser_p75_ns": 5512.5, "deser_p95_ns": 6505.2, "deser_p99_ns": 7007.860000000001, "deser_ci_low_ns": 4871.212631578947, "deser_ci_high_ns": 5177.127105263158, "total_mean_ns": 9640.82105263158, "total_median_ns": 9265.0, "total_std_ns": 1736.2214596643134, "total_mad_ns": 1122.0, "total_cv": 0.18009062196942144, "total_min_ns": 6737.0, "total_max_ns": 14356.0, "total_p5_ns": 7494.7, "total_p25_ns": 8261.0, "total_p50_ns": 9265.0, "total_p75_ns": 10746.0, "total_p95_ns": 12953.599999999999, "total_p99_ns": 14105.960000000001, "total_ci_low_ns": 9288.852631578948, "total_ci_high_ns": 10008.856578947367, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9855121675155631, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.822697980241621}, {"serializer": "NetJSON", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.0.0", "avg_time_ser_ns": 5383.136363636364, "avg_time_deser_ns": 7795.306818181818, "avg_time_total_ns": 13178.443181818182, "median_size_bytes": 440.0, "avg_ops_per_sec": 75881.49724541542, "min_ops_per_sec": 56911.957202208185, "max_ops_per_sec": 102574.62303826034, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 5383.136363636364, "ser_median_ns": 5166.5, "ser_std_ns": 881.0409227884958, "ser_mad_ns": 518.0, "ser_cv": 0.16366684090338435, "ser_min_ns": 3739.0, "ser_max_ns": 7604.0, "ser_p5_ns": 4230.75, "ser_p25_ns": 4743.25, "ser_p50_ns": 5166.5, "ser_p75_ns": 5906.0, "ser_p95_ns": 7134.949999999998, "ser_p99_ns": 7396.069999999999, "ser_ci_low_ns": 5209.201988636363, "ser_ci_high_ns": 5566.409943181818, "deser_mean_ns": 7795.306818181818, "deser_median_ns": 7796.5, "deser_std_ns": 862.7977661308206, "deser_mad_ns": 596.0, "deser_cv": 0.11068169428795621, "deser_min_ns": 6010.0, "deser_max_ns": 10089.0, "deser_p5_ns": 6530.15, "deser_p25_ns": 7135.5, "deser_p50_ns": 7796.5, "deser_p75_ns": 8219.5, "deser_p95_ns": 9365.699999999999, "deser_p99_ns": 9985.47, "deser_ci_low_ns": 7623.439204545455, "deser_ci_high_ns": 7979.506818181818, "total_mean_ns": 13178.443181818182, "total_median_ns": 12870.5, "total_std_ns": 1639.821218584055, "total_mad_ns": 1005.0, "total_cv": 0.12443208928095972, "total_min_ns": 9749.0, "total_max_ns": 17571.0, "total_p5_ns": 11092.05, "total_p25_ns": 12041.25, "total_p50_ns": 12870.5, "total_p75_ns": 14229.75, "total_p95_ns": 15931.5, "total_p99_ns": 17311.739999999998, "total_ci_low_ns": 12870.957954545454, "total_ci_high_ns": 13524.59943181818, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.659015124162327}, {"serializer": "YamlDotNet", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "17.1.0", "avg_time_ser_ns": 130392.38144329897, "avg_time_deser_ns": 99737.46391752578, "avg_time_total_ns": 230129.84536082475, "median_size_bytes": 424.0, "avg_ops_per_sec": 4345.372928192264, "min_ops_per_sec": 3579.802752868317, "max_ops_per_sec": 5489.649266308375, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 130392.38144329897, "ser_median_ns": 127275.0, "ser_std_ns": 12250.533476005663, "ser_mad_ns": 6674.0, "ser_cv": 0.09395129792404933, "ser_min_ns": 102341.0, "ser_max_ns": 159638.0, "ser_p5_ns": 115403.6, "ser_p25_ns": 121952.0, "ser_p50_ns": 127275.0, "ser_p75_ns": 139813.0, "ser_p95_ns": 154110.2, "ser_p99_ns": 159317.36, "ser_ci_low_ns": 127716.8574742268, "ser_ci_high_ns": 132896.39768041237, "deser_mean_ns": 99737.46391752578, "deser_median_ns": 98901.0, "deser_std_ns": 8082.169176988026, "deser_mad_ns": 5379.0, "deser_cv": 0.08103443640467216, "deser_min_ns": 79820.0, "deser_max_ns": 121277.0, "deser_p5_ns": 90319.2, "deser_p25_ns": 93647.0, "deser_p50_ns": 98901.0, "deser_p75_ns": 104403.0, "deser_p95_ns": 114613.4, "deser_p99_ns": 120115.4, "deser_ci_low_ns": 98201.46804123712, "deser_ci_high_ns": 101282.35463917526, "total_mean_ns": 230129.84536082475, "total_median_ns": 226086.0, "total_std_ns": 19816.653707772013, "total_mad_ns": 11269.0, "total_cv": 0.08611075054911337, "total_min_ns": 182161.0, "total_max_ns": 279345.0, "total_p5_ns": 207433.8, "total_p25_ns": 215674.0, "total_p50_ns": 226086.0, "total_p75_ns": 242528.0, "total_p95_ns": 267470.6, "total_p99_ns": 275400.36, "total_ci_low_ns": 226276.2474226804, "total_ci_high_ns": 234143.81726804125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.769375750294673}, {"serializer": "System.Text.Json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "8.0.0.0", "avg_time_ser_ns": 10453.979166666666, "avg_time_deser_ns": 10920.53125, "avg_time_total_ns": 21374.510416666668, "median_size_bytes": 440.0, "avg_ops_per_sec": 46784.69731031851, "min_ops_per_sec": 32288.2696716283, "max_ops_per_sec": 66225.16556291391, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 10453.979166666666, "ser_median_ns": 10004.0, "ser_std_ns": 2205.979448199188, "ser_mad_ns": 1558.0, "ser_cv": 0.21101815997808057, "ser_min_ns": 7387.0, "ser_max_ns": 16534.0, "ser_p5_ns": 7736.25, "ser_p25_ns": 8717.75, "ser_p50_ns": 10004.0, "ser_p75_ns": 11935.25, "ser_p95_ns": 14479.5, "ser_p99_ns": 15728.399999999998, "ser_ci_low_ns": 10025.94921875, "ser_ci_high_ns": 10905.57734375, "deser_mean_ns": 10920.53125, "deser_median_ns": 10606.5, "deser_std_ns": 1645.5463463423102, "deser_mad_ns": 1084.5, "deser_cv": 0.15068372670444125, "deser_min_ns": 7713.0, "deser_max_ns": 15285.0, "deser_p5_ns": 8695.25, "deser_p25_ns": 9833.25, "deser_p50_ns": 10606.5, "deser_p75_ns": 12124.5, "deser_p95_ns": 13826.0, "deser_p99_ns": 15044.65, "deser_ci_low_ns": 10602.946614583334, "deser_ci_high_ns": 11248.348697916666, "total_mean_ns": 21374.510416666668, "total_median_ns": 20622.0, "total_std_ns": 3655.0423685204837, "total_mad_ns": 2804.0, "total_cv": 0.17100005086762046, "total_min_ns": 15100.0, "total_max_ns": 30971.0, "total_p5_ns": 16727.0, "total_p25_ns": 18709.5, "total_p50_ns": 20622.0, "total_p75_ns": 24006.0, "total_p95_ns": 27776.5, "total_p99_ns": 30825.649999999998, "total_ci_low_ns": 20630.070052083334, "total_ci_high_ns": 22099.640885416666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.820305347720697}, {"serializer": "ZeroFormatter", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.6.4", "avg_time_ser_ns": 4674.340425531915, "avg_time_deser_ns": 3437.095744680851, "avg_time_total_ns": 8111.436170212766, "median_size_bytes": 214.0, "avg_ops_per_sec": 123282.73058133053, "min_ops_per_sec": 83984.21096833795, "max_ops_per_sec": 170532.06002728513, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 4674.340425531915, "ser_median_ns": 4506.0, "ser_std_ns": 895.3278915581528, "ser_mad_ns": 627.5, "ser_cv": 0.1915410111483845, "ser_min_ns": 2917.0, "ser_max_ns": 7043.0, "ser_p5_ns": 3504.3, "ser_p25_ns": 3984.5, "ser_p50_ns": 4506.0, "ser_p75_ns": 5249.0, "ser_p95_ns": 6265.9, "ser_p99_ns": 6931.4, "ser_ci_low_ns": 4490.996808510638, "ser_ci_high_ns": 4860.159042553191, "deser_mean_ns": 3437.095744680851, "deser_median_ns": 3350.0, "deser_std_ns": 519.5450257149407, "deser_mad_ns": 359.5, "deser_cv": 0.15115814754912585, "deser_min_ns": 2578.0, "deser_max_ns": 5044.0, "deser_p5_ns": 2755.8, "deser_p25_ns": 3056.25, "deser_p50_ns": 3350.0, "deser_p75_ns": 3774.75, "deser_p95_ns": 4171.75, "deser_p99_ns": 4876.5999999999985, "deser_ci_low_ns": 3336.7952127659573, "deser_ci_high_ns": 3541.247606382979, "total_mean_ns": 8111.436170212766, "total_median_ns": 7885.5, "total_std_ns": 1305.734083143252, "total_mad_ns": 863.5, "total_cv": 0.16097446318301017, "total_min_ns": 5864.0, "total_max_ns": 11907.0, "total_p5_ns": 6364.8, "total_p25_ns": 7143.75, "total_p50_ns": 7885.5, "total_p75_ns": 9021.5, "total_p95_ns": 10214.949999999999, "total_p99_ns": 11591.729999999998, "total_ci_low_ns": 7850.971276595745, "total_ci_high_ns": 8379.18324468085, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.8937314115762983, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.1315874975812106}, {"serializer": "MS Bond Compact", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 7262.5888888888885, "avg_time_deser_ns": 5825.133333333333, "avg_time_total_ns": 13087.722222222223, "median_size_bytes": 154.0, "avg_ops_per_sec": 76407.48963192814, "min_ops_per_sec": 55475.42438699656, "max_ops_per_sec": 114508.18733539448, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 7262.5888888888885, "ser_median_ns": 7246.0, "ser_std_ns": 1133.9904077279386, "ser_mad_ns": 755.5, "ser_cv": 0.15614134643678407, "ser_min_ns": 4964.0, "ser_max_ns": 10510.0, "ser_p5_ns": 5873.7, "ser_p25_ns": 6313.5, "ser_p50_ns": 7246.0, "ser_p75_ns": 7830.75, "ser_p95_ns": 9520.5, "ser_p99_ns": 10079.24, "ser_ci_low_ns": 7025.620277777778, "ser_ci_high_ns": 7512.366111111111, "deser_mean_ns": 5825.133333333333, "deser_median_ns": 5772.0, "deser_std_ns": 858.6621839043662, "deser_mad_ns": 548.0, "deser_cv": 0.14740644286901008, "deser_min_ns": 3769.0, "deser_max_ns": 8027.0, "deser_p5_ns": 4692.7, "deser_p25_ns": 5227.0, "deser_p50_ns": 5772.0, "deser_p75_ns": 6313.5, "deser_p95_ns": 7410.9, "deser_p99_ns": 8002.97, "deser_ci_low_ns": 5653.009444444444, "deser_ci_high_ns": 6008.126388888889, "total_mean_ns": 13087.722222222223, "total_median_ns": 13063.0, "total_std_ns": 1921.9875832812088, "total_mad_ns": 1272.0, "total_cv": 0.14685424634225358, "total_min_ns": 8733.0, "total_max_ns": 18026.0, "total_p5_ns": 10805.65, "total_p25_ns": 11571.75, "total_p50_ns": 13063.0, "total_p75_ns": 14097.0, "total_p95_ns": 16775.85, "total_p99_ns": 17725.18, "total_ci_low_ns": 12708.995833333332, "total_ci_high_ns": 13472.218333333332, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.91911107199262}, {"serializer": "ServiceStack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 11915.849462365592, "avg_time_deser_ns": 10595.79569892473, "avg_time_total_ns": 22511.645161290322, "median_size_bytes": 360.0, "avg_ops_per_sec": 44421.45355593736, "min_ops_per_sec": 30228.832260209787, "max_ops_per_sec": 66533.5994677312, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 11915.849462365592, "ser_median_ns": 11745.0, "ser_std_ns": 2158.2600477268347, "ser_mad_ns": 1613.0, "ser_cv": 0.18112515222212003, "ser_min_ns": 7854.0, "ser_max_ns": 17240.0, "ser_p5_ns": 8913.6, "ser_p25_ns": 10149.0, "ser_p50_ns": 11745.0, "ser_p75_ns": 13366.0, "ser_p95_ns": 16011.4, "ser_p99_ns": 16872.92, "ser_ci_low_ns": 11473.670967741937, "ser_ci_high_ns": 12358.272043010753, "deser_mean_ns": 10595.79569892473, "deser_median_ns": 10280.0, "deser_std_ns": 1820.3975590581244, "deser_mad_ns": 1346.0, "deser_cv": 0.17180376167906483, "deser_min_ns": 7176.0, "deser_max_ns": 15841.0, "deser_p5_ns": 8122.0, "deser_p25_ns": 9081.0, "deser_p50_ns": 10280.0, "deser_p75_ns": 11672.0, "deser_p95_ns": 14095.4, "deser_p99_ns": 14678.119999999997, "deser_ci_low_ns": 10230.536290322581, "deser_ci_high_ns": 10972.59623655914, "total_mean_ns": 22511.645161290322, "total_median_ns": 22559.0, "total_std_ns": 3758.705054661551, "total_mad_ns": 2521.0, "total_cv": 0.16696714201611507, "total_min_ns": 15030.0, "total_max_ns": 33081.0, "total_p5_ns": 17097.6, "total_p25_ns": 20011.0, "total_p50_ns": 22559.0, "total_p75_ns": 24646.0, "total_p95_ns": 28884.799999999992, "total_p99_ns": 31114.039999999997, "total_ci_low_ns": 21767.643548387096, "total_ci_high_ns": 23296.655645161292, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.122608142683105}, {"serializer": "LightProto", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.3.4", "avg_time_ser_ns": 5469.5161290322585, "avg_time_deser_ns": 5046.881720430108, "avg_time_total_ns": 10516.397849462366, "median_size_bytes": 155.0, "avg_ops_per_sec": 95089.59382428874, "min_ops_per_sec": 68572.99595419323, "max_ops_per_sec": 142267.74790155073, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 5469.5161290322585, "ser_median_ns": 5398.0, "ser_std_ns": 979.5197538113215, "ser_mad_ns": 684.0, "ser_cv": 0.17908709485506746, "ser_min_ns": 2860.0, "ser_max_ns": 7896.0, "ser_p5_ns": 4004.8, "ser_p25_ns": 4814.0, "ser_p50_ns": 5398.0, "ser_p75_ns": 6181.0, "ser_p95_ns": 7209.599999999999, "ser_p99_ns": 7478.319999999999, "ser_ci_low_ns": 5277.168817204301, "ser_ci_high_ns": 5662.379032258064, "deser_mean_ns": 5046.881720430108, "deser_median_ns": 4984.0, "deser_std_ns": 661.6108282304564, "deser_mad_ns": 436.0, "deser_cv": 0.1310929926398339, "deser_min_ns": 3845.0, "deser_max_ns": 6867.0, "deser_p5_ns": 4115.8, "deser_p25_ns": 4593.0, "deser_p50_ns": 4984.0, "deser_p75_ns": 5461.0, "deser_p95_ns": 6260.599999999999, "deser_p99_ns": 6701.4, "deser_ci_low_ns": 4908.908333333334, "deser_ci_high_ns": 5183.878225806452, "total_mean_ns": 10516.397849462366, "total_median_ns": 10409.0, "total_std_ns": 1529.421751624826, "total_mad_ns": 1007.0, "total_cv": 0.1454320931480369, "total_min_ns": 7029.0, "total_max_ns": 14583.0, "total_p5_ns": 8265.2, "total_p25_ns": 9473.0, "total_p50_ns": 10409.0, "total_p75_ns": 11487.0, "total_p95_ns": 13176.599999999997, "total_p99_ns": 13778.919999999998, "total_ci_low_ns": 10211.09758064516, "total_ci_high_ns": 10818.568548387097, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9963001503063939, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.8121161521542457}, {"serializer": "ServiceStack Json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 13066.168421052631, "avg_time_deser_ns": 13128.021052631579, "avg_time_total_ns": 26194.18947368421, "median_size_bytes": 440.0, "avg_ops_per_sec": 38176.40553469471, "min_ops_per_sec": 26372.00348110446, "max_ops_per_sec": 66746.76278200507, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 13066.168421052631, "ser_median_ns": 12635.0, "ser_std_ns": 2569.829063992603, "ser_mad_ns": 1732.0, "ser_cv": 0.19667809117262042, "ser_min_ns": 7560.0, "ser_max_ns": 20135.0, "ser_p5_ns": 9500.1, "ser_p25_ns": 11230.0, "ser_p50_ns": 12635.0, "ser_p75_ns": 14469.0, "ser_p95_ns": 17544.399999999998, "ser_p99_ns": 19178.08, "ser_ci_low_ns": 12582.235, "ser_ci_high_ns": 13586.23947368421, "deser_mean_ns": 13128.021052631579, "deser_median_ns": 12431.0, "deser_std_ns": 2464.8647495541463, "deser_mad_ns": 1541.0, "deser_cv": 0.18775600219349523, "deser_min_ns": 7422.0, "deser_max_ns": 19796.0, "deser_p5_ns": 10170.9, "deser_p25_ns": 11408.5, "deser_p50_ns": 12431.0, "deser_p75_ns": 14509.0, "deser_p95_ns": 17930.1, "deser_p99_ns": 19436.920000000002, "deser_ci_low_ns": 12659.00605263158, "deser_ci_high_ns": 13596.528157894736, "total_mean_ns": 26194.18947368421, "total_median_ns": 24926.0, "total_std_ns": 4698.383851366514, "total_mad_ns": 3065.0, "total_cv": 0.17936740726742886, "total_min_ns": 14982.0, "total_max_ns": 37919.0, "total_p5_ns": 19844.2, "total_p25_ns": 22886.5, "total_p50_ns": 24926.0, "total_p75_ns": 29841.0, "total_p95_ns": 35033.0, "total_p99_ns": 37528.9, "total_ci_low_ns": 25233.357631578947, "total_ci_high_ns": 27120.597105263158, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.001700905732816}, {"serializer": "SpanJson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "4.2.1", "avg_time_ser_ns": 62188.638554216865, "avg_time_deser_ns": 97751.01204819277, "avg_time_total_ns": 159939.65060240965, "median_size_bytes": 44614.0, "avg_ops_per_sec": 6252.358287851193, "min_ops_per_sec": 4986.511486429209, "max_ops_per_sec": 7005.155794664874, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 62188.638554216865, "ser_median_ns": 57543.0, "ser_std_ns": 10923.762119497727, "ser_mad_ns": 3059.0, "ser_cv": 0.17565527037505813, "ser_min_ns": 51112.0, "ser_max_ns": 100185.0, "ser_p5_ns": 52357.8, "ser_p25_ns": 55238.5, "ser_p50_ns": 57543.0, "ser_p75_ns": 64079.5, "ser_p95_ns": 83383.79999999999, "ser_p99_ns": 91579.91999999993, "ser_ci_low_ns": 59868.52198795181, "ser_ci_high_ns": 64645.44789156627, "deser_mean_ns": 97751.01204819277, "deser_median_ns": 96901.0, "deser_std_ns": 5407.343927799637, "deser_mad_ns": 3952.0, "deser_cv": 0.055317523721736324, "deser_min_ns": 89555.0, "deser_max_ns": 117050.0, "deser_p5_ns": 90619.8, "deser_p25_ns": 93298.5, "deser_p50_ns": 96901.0, "deser_p75_ns": 101907.5, "deser_p95_ns": 104644.5, "deser_p99_ns": 115796.21999999999, "deser_ci_low_ns": 96632.58493975904, "deser_ci_high_ns": 98942.59006024097, "total_mean_ns": 159939.65060240965, "total_median_ns": 156552.0, "total_std_ns": 12711.914346472066, "total_mad_ns": 6623.0, "total_cv": 0.0794794430186191, "total_min_ns": 142752.0, "total_max_ns": 200541.0, "total_p5_ns": 145061.8, "total_p25_ns": 150731.0, "total_p50_ns": 156552.0, "total_p75_ns": 166344.0, "total_p95_ns": 182182.4, "total_p99_ns": 194097.43999999994, "total_ci_low_ns": 157341.69698795181, "total_ci_high_ns": 162683.27680722892, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 0.9973552747575668, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.802085106143623}, {"serializer": "ServiceStack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 316761.97647058824, "avg_time_deser_ns": 330077.6705882353, "avg_time_total_ns": 646839.6470588235, "median_size_bytes": 36612.0, "avg_ops_per_sec": 1545.9782104374628, "min_ops_per_sec": 1360.6238188084474, "max_ops_per_sec": 1702.6841112329475, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 316761.97647058824, "ser_median_ns": 315001.0, "ser_std_ns": 17457.99589625698, "ser_mad_ns": 11797.0, "ser_cv": 0.055113925259517305, "ser_min_ns": 289506.0, "ser_max_ns": 365660.0, "ser_p5_ns": 293308.0, "ser_p25_ns": 304413.0, "ser_p50_ns": 315001.0, "ser_p75_ns": 326798.0, "ser_p95_ns": 349387.4, "ser_p99_ns": 360813.19999999995, "ser_ci_low_ns": 313192.5073529412, "ser_ci_high_ns": 320494.6723529412, "deser_mean_ns": 330077.6705882353, "deser_median_ns": 332810.0, "deser_std_ns": 18507.15048516849, "deser_mad_ns": 14337.0, "deser_cv": 0.05606907747557319, "deser_min_ns": 293400.0, "deser_max_ns": 375067.0, "deser_p5_ns": 301077.2, "deser_p25_ns": 315191.0, "deser_p50_ns": 332810.0, "deser_p75_ns": 343573.0, "deser_p95_ns": 358806.6, "deser_p99_ns": 365144.92, "deser_ci_low_ns": 326228.5126470588, "deser_ci_high_ns": 334029.59264705883, "total_mean_ns": 646839.6470588235, "total_median_ns": 651580.0, "total_std_ns": 30829.54547597, "total_mad_ns": 21424.0, "total_cv": 0.04766180554354048, "total_min_ns": 587308.0, "total_max_ns": 734957.0, "total_p5_ns": 598691.8, "total_p25_ns": 619784.0, "total_p50_ns": 651580.0, "total_p75_ns": 665936.0, "total_p95_ns": 692912.0, "total_p99_ns": 713133.7999999999, "total_ci_low_ns": 640899.115, "total_ci_high_ns": 653536.9585294117, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.974355761918382}, {"serializer": "SharpSerializer", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 1640839.9714285715, "avg_time_deser_ns": 6035360.485714286, "avg_time_total_ns": 7676200.457142857, "median_size_bytes": 392152.0, "avg_ops_per_sec": 130.27278346665375, "min_ops_per_sec": 110.1608028254924, "max_ops_per_sec": 147.24357090396362, "runs": 70, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 29, "ser_mean_ns": 1640839.9714285715, "ser_median_ns": 1522509.0, "ser_std_ns": 316296.2444407655, "ser_mad_ns": 64573.0, "ser_cv": 0.1927648338340924, "ser_min_ns": 1376690.0, "ser_max_ns": 2684326.0, "ser_p5_ns": 1424981.2, "ser_p25_ns": 1479068.0, "ser_p50_ns": 1522509.0, "ser_p75_ns": 1623344.25, "ser_p95_ns": 2369546.1, "ser_p99_ns": 2679943.12, "ser_ci_low_ns": 1570860.29, "ser_ci_high_ns": 1719869.1928571428, "deser_mean_ns": 6035360.485714286, "deser_median_ns": 5991468.5, "deser_std_ns": 375216.0990762037, "deser_mad_ns": 166066.0, "deser_cv": 0.06216962515567069, "deser_min_ns": 5319178.0, "deser_max_ns": 7206419.0, "deser_p5_ns": 5436556.4, "deser_p25_ns": 5861114.75, "deser_p50_ns": 5991468.5, "deser_p75_ns": 6169124.5, "deser_p95_ns": 6684496.8, "deser_p99_ns": 7135914.8, "deser_ci_low_ns": 5947224.616071428, "deser_ci_high_ns": 6121373.935, "total_mean_ns": 7676200.457142857, "total_median_ns": 7620383.0, "total_std_ns": 500092.30464430724, "total_mad_ns": 242078.0, "total_cv": 0.06514841651626768, "total_min_ns": 6791468.0, "total_max_ns": 9077639.0, "total_p5_ns": 6853412.7, "total_p25_ns": 7408183.0, "total_p50_ns": 7620383.0, "total_p75_ns": 7948522.25, "total_p95_ns": 8613790.0, "total_p99_ns": 8833162.340000002, "total_ci_low_ns": 7562141.139642857, "total_ci_high_ns": 7794540.507142857, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.16957415663982}, {"serializer": "Utf8Json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.3.7", "avg_time_ser_ns": 69107.3552631579, "avg_time_deser_ns": 123647.80263157895, "avg_time_total_ns": 192755.15789473685, "median_size_bytes": 44614.0, "avg_ops_per_sec": 5187.928618470992, "min_ops_per_sec": 4294.388951396106, "max_ops_per_sec": 5873.40463646562, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 69107.3552631579, "ser_median_ns": 65045.5, "ser_std_ns": 10614.180646291321, "ser_mad_ns": 2894.0, "ser_cv": 0.153589738832762, "ser_min_ns": 57418.0, "ser_max_ns": 98446.0, "ser_p5_ns": 58749.25, "ser_p25_ns": 62568.25, "ser_p50_ns": 65045.5, "ser_p75_ns": 70704.5, "ser_p95_ns": 89434.25, "ser_p99_ns": 96977.5, "ser_ci_low_ns": 66953.44177631578, "ser_ci_high_ns": 71602.37006578947, "deser_mean_ns": 123647.80263157895, "deser_median_ns": 122676.0, "deser_std_ns": 7821.480344145835, "deser_mad_ns": 5293.5, "deser_cv": 0.06325612083419486, "deser_min_ns": 110511.0, "deser_max_ns": 147212.0, "deser_p5_ns": 113692.5, "deser_p25_ns": 117442.75, "deser_p50_ns": 122676.0, "deser_p75_ns": 128173.0, "deser_p95_ns": 136618.25, "deser_p99_ns": 144724.25, "deser_ci_low_ns": 121935.27565789473, "deser_ci_high_ns": 125330.55625000001, "total_mean_ns": 192755.15789473685, "total_median_ns": 189667.5, "total_std_ns": 13992.935044088146, "total_mad_ns": 10191.5, "total_cv": 0.07259434817163053, "total_min_ns": 170259.0, "total_max_ns": 232862.0, "total_p5_ns": 173471.25, "total_p25_ns": 182628.25, "total_p50_ns": 189667.5, "total_p75_ns": 201152.0, "total_p95_ns": 216358.0, "total_p99_ns": 225334.25, "total_ci_low_ns": 189572.7299342105, "total_ci_high_ns": 195952.4365131579, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.363360926859449}, {"serializer": "ProtoBuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "2.4.9.1", "avg_time_ser_ns": 67181.87654320987, "avg_time_deser_ns": 154468.85185185185, "avg_time_total_ns": 221650.72839506174, "median_size_bytes": 21688.0, "avg_ops_per_sec": 4511.602588635028, "min_ops_per_sec": 3956.3691608936647, "max_ops_per_sec": 5084.323505335998, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 67181.87654320987, "ser_median_ns": 65663.0, "ser_std_ns": 5200.601134442815, "ser_mad_ns": 2739.0, "ser_cv": 0.07741077507857205, "ser_min_ns": 58680.0, "ser_max_ns": 81885.0, "ser_p5_ns": 60073.0, "ser_p25_ns": 64270.0, "ser_p50_ns": 65663.0, "ser_p75_ns": 69431.0, "ser_p95_ns": 77086.0, "ser_p99_ns": 81444.2, "ser_ci_low_ns": 66084.63364197532, "ser_ci_high_ns": 68345.62932098766, "deser_mean_ns": 154468.85185185185, "deser_median_ns": 151617.0, "deser_std_ns": 11496.523574662811, "deser_mad_ns": 7027.0, "deser_cv": 0.07442616059378047, "deser_min_ns": 136838.0, "deser_max_ns": 188343.0, "deser_p5_ns": 139762.0, "deser_p25_ns": 145452.0, "deser_p50_ns": 151617.0, "deser_p75_ns": 163448.0, "deser_p95_ns": 174895.0, "deser_p99_ns": 185963.0, "deser_ci_low_ns": 152091.10030864197, "deser_ci_high_ns": 157022.17561728394, "total_mean_ns": 221650.72839506174, "total_median_ns": 219204.0, "total_std_ns": 13174.564230945502, "total_mad_ns": 8721.0, "total_cv": 0.05943839808847217, "total_min_ns": 196683.0, "total_max_ns": 252757.0, "total_p5_ns": 202499.0, "total_p25_ns": 212990.0, "total_p50_ns": 219204.0, "total_p75_ns": 230917.0, "total_p95_ns": 244174.0, "total_p99_ns": 251841.80000000002, "total_ci_low_ns": 218877.7913580247, "total_ci_high_ns": 224406.37839506174, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.113053945493585}, {"serializer": "BinaryPack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.0.3", "avg_time_ser_ns": 62766.8375, "avg_time_deser_ns": 93635.525, "avg_time_total_ns": 156402.3625, "median_size_bytes": 30592.0, "avg_ops_per_sec": 6393.765311569383, "min_ops_per_sec": 5528.282694263854, "max_ops_per_sec": 7245.011809369249, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 62766.8375, "ser_median_ns": 61937.0, "ser_std_ns": 5433.40520182174, "ser_mad_ns": 3697.5, "ser_cv": 0.08656490303214241, "ser_min_ns": 54632.0, "ser_max_ns": 80702.0, "ser_p5_ns": 56160.4, "ser_p25_ns": 58277.5, "ser_p50_ns": 61937.0, "ser_p75_ns": 66033.0, "ser_p95_ns": 72354.9, "ser_p99_ns": 79922.26999999999, "ser_ci_low_ns": 61648.194375, "ser_ci_high_ns": 63913.329687499994, "deser_mean_ns": 93635.525, "deser_median_ns": 92550.5, "deser_std_ns": 6436.725262168093, "deser_mad_ns": 4221.5, "deser_cv": 0.0687423417785941, "deser_min_ns": 82504.0, "deser_max_ns": 110385.0, "deser_p5_ns": 83866.0, "deser_p25_ns": 89575.5, "deser_p50_ns": 92550.5, "deser_p75_ns": 98525.75, "deser_p95_ns": 104999.34999999999, "deser_p99_ns": 108524.54999999999, "deser_ci_low_ns": 92290.568125, "deser_ci_high_ns": 95029.9334375, "total_mean_ns": 156402.3625, "total_median_ns": 155439.5, "total_std_ns": 9954.26662576424, "total_mad_ns": 7336.5, "total_cv": 0.0636452446539242, "total_min_ns": 138026.0, "total_max_ns": 180888.0, "total_p5_ns": 140971.65, "total_p25_ns": 149665.75, "total_p50_ns": 155439.5, "total_p75_ns": 163937.25, "total_p95_ns": 172560.6, "total_p99_ns": 178136.42999999996, "total_ci_low_ns": 154258.0184375, "total_ci_high_ns": 158655.54906249998, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 0.9914634146341463, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.03597690483746}, {"serializer": "Jil", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "2.17.0", "avg_time_ser_ns": 220822.4938271605, "avg_time_deser_ns": 158060.6049382716, "avg_time_total_ns": 378883.0987654321, "median_size_bytes": 44614.0, "avg_ops_per_sec": 2639.3365216301286, "min_ops_per_sec": 2369.8591829673483, "max_ops_per_sec": 2842.8312324810527, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 220822.4938271605, "ser_median_ns": 219657.0, "ser_std_ns": 11886.709133653705, "ser_mad_ns": 8550.0, "ser_cv": 0.053829249582506414, "ser_min_ns": 202056.0, "ser_max_ns": 254056.0, "ser_p5_ns": 204898.0, "ser_p25_ns": 211342.0, "ser_p50_ns": 219657.0, "ser_p75_ns": 228438.0, "ser_p95_ns": 242985.0, "ser_p99_ns": 251225.6, "ser_ci_low_ns": 218373.14907407406, "ser_ci_high_ns": 223342.4009259259, "deser_mean_ns": 158060.6049382716, "deser_median_ns": 157474.0, "deser_std_ns": 9274.968196278374, "deser_mad_ns": 6717.0, "deser_cv": 0.058679822210604506, "deser_min_ns": 144636.0, "deser_max_ns": 187801.0, "deser_p5_ns": 146515.0, "deser_p25_ns": 149763.0, "deser_p50_ns": 157474.0, "deser_p75_ns": 163354.0, "deser_p95_ns": 173075.0, "deser_p99_ns": 185080.2, "deser_ci_low_ns": 156146.4141975309, "deser_ci_high_ns": 160007.43703703705, "total_mean_ns": 378883.0987654321, "total_median_ns": 375306.0, "total_std_ns": 18414.561381964097, "total_mad_ns": 14049.0, "total_cv": 0.048602224385217614, "total_min_ns": 351762.0, "total_max_ns": 421966.0, "total_p5_ns": 353366.0, "total_p25_ns": 363566.0, "total_p50_ns": 375306.0, "total_p75_ns": 394336.0, "total_p95_ns": 412888.0, "total_p99_ns": 421047.6, "total_ci_low_ns": 374966.6231481481, "total_ci_high_ns": 382988.27839506173, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.877819605321715}, {"serializer": "MS XmlSerializer", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 480295.4683544304, "avg_time_deser_ns": 643817.0253164558, "avg_time_total_ns": 1124112.4936708861, "median_size_bytes": 132695.0, "avg_ops_per_sec": 889.590682098385, "min_ops_per_sec": 797.6593484080315, "max_ops_per_sec": 977.9874582888349, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 480295.4683544304, "ser_median_ns": 477692.0, "ser_std_ns": 33196.806226455075, "ser_mad_ns": 23833.0, "ser_cv": 0.06911746708790045, "ser_min_ns": 427150.0, "ser_max_ns": 560536.0, "ser_p5_ns": 432586.8, "ser_p25_ns": 456843.5, "ser_p50_ns": 477692.0, "ser_p75_ns": 505049.5, "ser_p95_ns": 535338.5, "ser_p99_ns": 553276.54, "ser_ci_low_ns": 473428.920886076, "ser_ci_high_ns": 487883.9601265823, "deser_mean_ns": 643817.0253164558, "deser_median_ns": 647724.0, "deser_std_ns": 35885.004674824435, "deser_mad_ns": 31460.0, "deser_cv": 0.055737893320211375, "deser_min_ns": 582028.0, "deser_max_ns": 756078.0, "deser_p5_ns": 593389.2, "deser_p25_ns": 609718.0, "deser_p50_ns": 647724.0, "deser_p75_ns": 666322.5, "deser_p95_ns": 700893.8, "deser_p99_ns": 717361.9199999999, "deser_ci_low_ns": 636021.1212025316, "deser_ci_high_ns": 651361.8262658227, "total_mean_ns": 1124112.4936708861, "total_median_ns": 1123445.0, "total_std_ns": 61505.56000463644, "total_mad_ns": 49345.0, "total_cv": 0.054714773077367676, "total_min_ns": 1022508.0, "total_max_ns": 1253668.0, "total_p5_ns": 1035745.9, "total_p25_ns": 1075302.0, "total_p50_ns": 1123445.0, "total_p75_ns": 1172899.5, "total_p95_ns": 1225869.7, "total_p99_ns": 1239257.5, "total_ci_low_ns": 1110658.5329113924, "total_ci_high_ns": 1138558.3287974682, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.98839574893336}, {"serializer": "ExtendedXmlSerializer", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "3.10.0.0", "avg_time_ser_ns": 103194.45569620254, "avg_time_deser_ns": 95506.11392405063, "avg_time_total_ns": 198700.56962025317, "median_size_bytes": 44983.0, "avg_ops_per_sec": 5032.698204696399, "min_ops_per_sec": 4068.248944289399, "max_ops_per_sec": 5777.107633292316, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 103194.45569620254, "ser_median_ns": 99213.0, "ser_std_ns": 11280.81960879124, "ser_mad_ns": 5822.0, "ser_cv": 0.10931614041360135, "ser_min_ns": 87653.0, "ser_max_ns": 137805.0, "ser_p5_ns": 91181.3, "ser_p25_ns": 94662.0, "ser_p50_ns": 99213.0, "ser_p75_ns": 109783.0, "ser_p95_ns": 123536.99999999999, "ser_p99_ns": 132917.52, "ser_ci_low_ns": 100818.93797468355, "ser_ci_high_ns": 105807.60348101266, "deser_mean_ns": 95506.11392405063, "deser_median_ns": 93642.0, "deser_std_ns": 7965.034273249199, "deser_mad_ns": 4716.0, "deser_cv": 0.08339816108090459, "deser_min_ns": 84015.0, "deser_max_ns": 118035.0, "deser_p5_ns": 85359.5, "deser_p25_ns": 90788.5, "deser_p50_ns": 93642.0, "deser_p75_ns": 98969.5, "deser_p95_ns": 111212.09999999999, "deser_p99_ns": 116742.54, "deser_ci_low_ns": 93747.01772151899, "deser_ci_high_ns": 97298.1911392405, "total_mean_ns": 198700.56962025317, "total_median_ns": 195762.0, "total_std_ns": 16059.299708271554, "total_mad_ns": 10950.0, "total_cv": 0.08082160881049966, "total_min_ns": 173097.0, "total_max_ns": 245806.0, "total_p5_ns": 176245.4, "total_p25_ns": 187386.5, "total_p50_ns": 195762.0, "total_p75_ns": 211511.5, "total_p95_ns": 222718.89999999997, "total_p99_ns": 237574.65999999997, "total_ci_low_ns": 195204.57373417722, "total_ci_high_ns": 202412.2446202532, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.198691468913322}, {"serializer": "MS DataContract", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 251609.3103448276, "avg_time_deser_ns": 695433.9310344828, "avg_time_total_ns": 947043.2413793104, "median_size_bytes": 113180.0, "avg_ops_per_sec": 1055.9179943500376, "min_ops_per_sec": 935.7092863532415, "max_ops_per_sec": 1140.806299076061, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 251609.3103448276, "ser_median_ns": 250737.0, "ser_std_ns": 16469.312865539694, "ser_mad_ns": 11227.0, "ser_cv": 0.06545589605952457, "ser_min_ns": 219657.0, "ser_max_ns": 286936.0, "ser_p5_ns": 225713.5, "ser_p25_ns": 240951.0, "ser_p50_ns": 250737.0, "ser_p75_ns": 263116.5, "ser_p95_ns": 281917.2, "ser_p99_ns": 286390.76, "ser_ci_low_ns": 248322.26637931034, "ser_ci_high_ns": 255087.91781609197, "deser_mean_ns": 695433.9310344828, "deser_median_ns": 692290.0, "deser_std_ns": 34973.2541645134, "deser_mad_ns": 25871.0, "deser_cv": 0.050289829995049905, "deser_min_ns": 638254.0, "deser_max_ns": 808700.0, "deser_p5_ns": 648958.0, "deser_p25_ns": 666798.0, "deser_p50_ns": 692290.0, "deser_p75_ns": 717693.0, "deser_p95_ns": 759722.9, "deser_p99_ns": 785785.3, "deser_ci_low_ns": 688083.010632184, "deser_ci_high_ns": 702848.0574712644, "total_mean_ns": 947043.2413793104, "total_median_ns": 937085.0, "total_std_ns": 41641.77527685991, "total_mad_ns": 25408.0, "total_cv": 0.0439702998315169, "total_min_ns": 876573.0, "total_max_ns": 1068708.0, "total_p5_ns": 891020.8, "total_p25_ns": 916710.0, "total_p50_ns": 937085.0, "total_p75_ns": 974677.5, "total_p95_ns": 1022966.6, "total_p99_ns": 1057242.48, "total_ci_low_ns": 938483.2597701149, "total_ci_high_ns": 956032.7778735632, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.012703250595912}, {"serializer": "Hyperion", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "0.12.2", "avg_time_ser_ns": 135664.2658227848, "avg_time_deser_ns": 180455.37974683545, "avg_time_total_ns": 316119.64556962025, "median_size_bytes": 30440.0, "avg_ops_per_sec": 3163.3592344382346, "min_ops_per_sec": 2715.5170072830165, "max_ops_per_sec": 3500.7509110704245, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 135664.2658227848, "ser_median_ns": 131502.0, "ser_std_ns": 12228.776117251811, "ser_mad_ns": 5637.0, "ser_cv": 0.09013999407350193, "ser_min_ns": 117834.0, "ser_max_ns": 180046.0, "ser_p5_ns": 123361.6, "ser_p25_ns": 127069.5, "ser_p50_ns": 131502.0, "ser_p75_ns": 139321.5, "ser_p95_ns": 162661.19999999998, "ser_p99_ns": 169114.3, "ser_ci_low_ns": 133097.83069620252, "ser_ci_high_ns": 138424.8569620253, "deser_mean_ns": 180455.37974683545, "deser_median_ns": 178810.0, "deser_std_ns": 12454.550944877894, "deser_mad_ns": 9109.0, "deser_cv": 0.06901734358017278, "deser_min_ns": 163240.0, "deser_max_ns": 214548.0, "deser_p5_ns": 164023.5, "deser_p25_ns": 169697.5, "deser_p50_ns": 178810.0, "deser_p75_ns": 186782.5, "deser_p95_ns": 203047.59999999998, "deser_p99_ns": 212325.78, "deser_ci_low_ns": 177899.125, "deser_ci_high_ns": 183320.31075949367, "total_mean_ns": 316119.64556962025, "total_median_ns": 313979.0, "total_std_ns": 20370.19617810067, "total_mad_ns": 13464.0, "total_cv": 0.06443824818731318, "total_min_ns": 285653.0, "total_max_ns": 368254.0, "total_p5_ns": 288813.4, "total_p25_ns": 300526.0, "total_p50_ns": 313979.0, "total_p75_ns": 327376.0, "total_p95_ns": 356424.7, "total_p99_ns": 367524.7, "total_ci_low_ns": 311723.18860759493, "total_ci_high_ns": 320580.18797468353, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.571567766283453}, {"serializer": "SharpYaml", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "3.13.0", "avg_time_ser_ns": 399909.75, "avg_time_deser_ns": 2492208.75, "avg_time_total_ns": 2892118.5, "median_size_bytes": 59410.0, "avg_ops_per_sec": 345.76729826250204, "min_ops_per_sec": 289.5408576895103, "max_ops_per_sec": 384.33230908772964, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 399909.75, "ser_median_ns": 397618.0, "ser_std_ns": 21203.45157619334, "ser_mad_ns": 13471.5, "ser_cv": 0.053020591711488256, "ser_min_ns": 371474.0, "ser_max_ns": 463435.0, "ser_p5_ns": 374485.95, "ser_p25_ns": 383556.0, "ser_p50_ns": 397618.0, "ser_p75_ns": 409101.5, "ser_p95_ns": 441694.35, "ser_p99_ns": 461878.75, "ser_ci_low_ns": 395533.3163690476, "ser_ci_high_ns": 404466.6425595238, "deser_mean_ns": 2492208.75, "deser_median_ns": 2429750.5, "deser_std_ns": 219650.4327794274, "deser_mad_ns": 117445.5, "deser_cv": 0.08813484535732707, "deser_min_ns": 2204856.0, "deser_max_ns": 3002723.0, "deser_p5_ns": 2243969.2, "deser_p25_ns": 2334146.25, "deser_p50_ns": 2429750.5, "deser_p75_ns": 2590923.0, "deser_p95_ns": 2949777.5, "deser_p99_ns": 2997598.58, "deser_ci_low_ns": 2445970.126190476, "deser_ci_high_ns": 2540834.5547619048, "total_mean_ns": 2892118.5, "total_median_ns": 2836687.5, "total_std_ns": 228281.98464921743, "total_mad_ns": 126362.5, "total_cv": 0.07893244507416187, "total_min_ns": 2601915.0, "total_max_ns": 3453744.0, "total_p5_ns": 2621768.9, "total_p25_ns": 2723630.75, "total_p50_ns": 2836687.5, "total_p75_ns": 2992662.75, "total_p95_ns": 3377051.1, "total_p99_ns": 3422989.18, "total_ci_low_ns": 2845452.325297619, "total_ci_high_ns": 2942908.1107142856, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.993828435633954}, {"serializer": "MS Binary", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 698547.6621621621, "avg_time_deser_ns": 758218.972972973, "avg_time_total_ns": 1456766.6351351351, "median_size_bytes": 64760.0, "avg_ops_per_sec": 686.4517458606101, "min_ops_per_sec": 622.7510901257833, "max_ops_per_sec": 746.847742391302, "runs": 74, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 25, "ser_mean_ns": 698547.6621621621, "ser_median_ns": 693583.5, "ser_std_ns": 36588.390356938355, "ser_mad_ns": 24849.0, "ser_cv": 0.05237780088432199, "ser_min_ns": 633924.0, "ser_max_ns": 838742.0, "ser_p5_ns": 648475.25, "ser_p25_ns": 671647.25, "ser_p50_ns": 693583.5, "ser_p75_ns": 720424.0, "ser_p95_ns": 753634.25, "ser_p99_ns": 788949.4299999997, "ser_ci_low_ns": 690500.6310810811, "ser_ci_high_ns": 707396.7030405406, "deser_mean_ns": 758218.972972973, "deser_median_ns": 754772.0, "deser_std_ns": 36899.87399947786, "deser_mad_ns": 25557.0, "deser_cv": 0.0486665136521098, "deser_min_ns": 686567.0, "deser_max_ns": 871045.0, "deser_p5_ns": 705436.75, "deser_p25_ns": 732259.5, "deser_p50_ns": 754772.0, "deser_p75_ns": 781495.0, "deser_p95_ns": 818572.5, "deser_p99_ns": 852659.2199999999, "deser_ci_low_ns": 750233.4523648649, "deser_ci_high_ns": 767259.385472973, "total_mean_ns": 1456766.6351351351, "total_median_ns": 1457230.0, "total_std_ns": 61888.3106712549, "total_mad_ns": 44096.5, "total_cv": 0.04248333890864676, "total_min_ns": 1338961.0, "total_max_ns": 1605778.0, "total_p5_ns": 1359575.05, "total_p25_ns": 1412751.75, "total_p50_ns": 1457230.0, "total_p75_ns": 1500031.75, "total_p95_ns": 1560070.4999999998, "total_p99_ns": 1585759.21, "total_ci_low_ns": 1443222.066554054, "total_ci_high_ns": 1470906.7493243243, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.896307145434584}, {"serializer": "MS Bond Compact", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 65926.50588235294, "avg_time_deser_ns": 85572.55294117647, "avg_time_total_ns": 151499.0588235294, "median_size_bytes": 21236.0, "avg_ops_per_sec": 6600.701072109166, "min_ops_per_sec": 5692.037977277384, "max_ops_per_sec": 7360.734895771994, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 65926.50588235294, "ser_median_ns": 65640.0, "ser_std_ns": 4025.533888352514, "ser_mad_ns": 2795.0, "ser_cv": 0.06106093193435965, "ser_min_ns": 58226.0, "ser_max_ns": 79337.0, "ser_p5_ns": 60091.6, "ser_p25_ns": 62832.0, "ser_p50_ns": 65640.0, "ser_p75_ns": 68059.0, "ser_p95_ns": 71934.4, "ser_p99_ns": 78399.56, "ser_ci_low_ns": 65103.291470588236, "ser_ci_high_ns": 66812.02588235294, "deser_mean_ns": 85572.55294117647, "deser_median_ns": 84825.0, "deser_std_ns": 5599.170500865205, "deser_mad_ns": 3454.0, "deser_cv": 0.06543185061586439, "deser_min_ns": 76047.0, "deser_max_ns": 101430.0, "deser_p5_ns": 77944.4, "deser_p25_ns": 81485.0, "deser_p50_ns": 84825.0, "deser_p75_ns": 88773.0, "deser_p95_ns": 95381.8, "deser_p99_ns": 100316.15999999999, "deser_ci_low_ns": 84417.41970588235, "deser_ci_high_ns": 86735.45823529412, "total_mean_ns": 151499.0588235294, "total_median_ns": 150954.0, "total_std_ns": 8393.687703882491, "total_mad_ns": 5417.0, "total_cv": 0.05540422342596668, "total_min_ns": 135856.0, "total_max_ns": 175684.0, "total_p5_ns": 138622.4, "total_p25_ns": 146079.0, "total_p50_ns": 150954.0, "total_p75_ns": 156764.0, "total_p95_ns": 166230.0, "total_p99_ns": 173017.0, "total_ci_low_ns": 149746.63617647058, "total_ci_high_ns": 153260.8294117647, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 0.9836441893830703, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.8400679459858504}, {"serializer": "fastJson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "2.4.0.4", "avg_time_ser_ns": 327130.9868421053, "avg_time_deser_ns": 774965.8684210526, "avg_time_total_ns": 1102096.855263158, "median_size_bytes": 57174.0, "avg_ops_per_sec": 907.3612679542767, "min_ops_per_sec": 573.6359224581905, "max_ops_per_sec": 1061.3581776055548, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 327130.9868421053, "ser_median_ns": 326682.5, "ser_std_ns": 19101.72119678812, "ser_mad_ns": 12729.5, "ser_cv": 0.058391659503683316, "ser_min_ns": 293473.0, "ser_max_ns": 365636.0, "ser_p5_ns": 299919.5, "ser_p25_ns": 311307.25, "ser_p50_ns": 326682.5, "ser_p75_ns": 336237.0, "ser_p95_ns": 362921.0, "ser_p99_ns": 365449.25, "ser_ci_low_ns": 323131.7345394737, "ser_ci_high_ns": 331355.8717105263, "deser_mean_ns": 774965.8684210526, "deser_median_ns": 736052.0, "deser_std_ns": 151274.67694727512, "deser_mad_ns": 28503.5, "deser_cv": 0.1952017283748101, "deser_min_ns": 647273.0, "deser_max_ns": 1389614.0, "deser_p5_ns": 667895.25, "deser_p25_ns": 702583.5, "deser_p50_ns": 736052.0, "deser_p75_ns": 758621.0, "deser_p95_ns": 1150770.0, "deser_p99_ns": 1337070.5, "deser_ci_low_ns": 743347.4105263158, "deser_ci_high_ns": 810274.3865131579, "total_mean_ns": 1102096.855263158, "total_median_ns": 1070319.0, "total_std_ns": 153782.73002646334, "total_mad_ns": 40137.0, "total_cv": 0.139536492906282, "total_min_ns": 942189.0, "total_max_ns": 1743266.0, "total_p5_ns": 974076.5, "total_p25_ns": 1027669.0, "total_p50_ns": 1070319.0, "total_p75_ns": 1098455.0, "total_p95_ns": 1471949.75, "total_p99_ns": 1654007.75, "total_ci_low_ns": 1071271.1085526317, "total_ci_high_ns": 1138134.7467105263, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.172584008039866}, {"serializer": "ZeroFormatter", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.6.4", "avg_time_ser_ns": 52156.10256410256, "avg_time_deser_ns": 75373.76923076923, "avg_time_total_ns": 127529.8717948718, "median_size_bytes": 29260.0, "avg_ops_per_sec": 7841.30012777298, "min_ops_per_sec": 5865.618676129865, "max_ops_per_sec": 9455.996520193281, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 52156.10256410256, "ser_median_ns": 49634.5, "ser_std_ns": 9540.042698575446, "ser_mad_ns": 4094.0, "ser_cv": 0.18291325903522482, "ser_min_ns": 38308.0, "ser_max_ns": 77866.0, "ser_p5_ns": 41598.25, "ser_p25_ns": 46026.25, "ser_p50_ns": 49634.5, "ser_p75_ns": 53888.25, "ser_p95_ns": 72462.25, "ser_p99_ns": 77212.27, "ser_ci_low_ns": 50065.82916666667, "ser_ci_high_ns": 54263.586217948716, "deser_mean_ns": 75373.76923076923, "deser_median_ns": 74372.0, "deser_std_ns": 6076.424800953135, "deser_mad_ns": 3363.0, "deser_cv": 0.08061723412490036, "deser_min_ns": 65917.0, "deser_max_ns": 95886.0, "deser_p5_ns": 66743.3, "deser_p25_ns": 71687.75, "deser_p50_ns": 74372.0, "deser_p75_ns": 78101.75, "deser_p95_ns": 88391.99999999999, "deser_p99_ns": 95555.67, "deser_ci_low_ns": 74063.23653846154, "deser_ci_high_ns": 76678.2891025641, "total_mean_ns": 127529.8717948718, "total_median_ns": 126292.0, "total_std_ns": 12297.404733444988, "total_mad_ns": 6773.5, "total_cv": 0.09642764130763823, "total_min_ns": 105753.0, "total_max_ns": 170485.0, "total_p5_ns": 110389.3, "total_p25_ns": 119392.5, "total_p50_ns": 126292.0, "total_p75_ns": 132336.0, "total_p95_ns": 147703.94999999995, "total_p99_ns": 160458.83000000005, "total_ci_low_ns": 124986.78557692308, "total_ci_high_ns": 130241.97692307693, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 0.5268918073796123, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 0.9315582241848297}, {"serializer": "MS Bond Fast", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 73853.43037974683, "avg_time_deser_ns": 101992.98734177215, "avg_time_total_ns": 175846.41772151898, "median_size_bytes": 38132.0, "avg_ops_per_sec": 5686.780617752819, "min_ops_per_sec": 5012.80772373414, "max_ops_per_sec": 6317.478567953958, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 73853.43037974683, "ser_median_ns": 72521.0, "ser_std_ns": 5252.351838751818, "ser_mad_ns": 3165.0, "ser_cv": 0.0711185900471347, "ser_min_ns": 64294.0, "ser_max_ns": 90050.0, "ser_p5_ns": 66988.6, "ser_p25_ns": 70490.5, "ser_p50_ns": 72521.0, "ser_p75_ns": 76934.0, "ser_p95_ns": 83043.8, "ser_p99_ns": 89718.5, "ser_ci_low_ns": 72771.52658227849, "ser_ci_high_ns": 74975.9829113924, "deser_mean_ns": 101992.98734177215, "deser_median_ns": 101128.0, "deser_std_ns": 7198.536000543429, "deser_mad_ns": 5409.0, "deser_cv": 0.07057873475576887, "deser_min_ns": 91106.0, "deser_max_ns": 123461.0, "deser_p5_ns": 92788.9, "deser_p25_ns": 96106.5, "deser_p50_ns": 101128.0, "deser_p75_ns": 106957.5, "deser_p95_ns": 114546.4, "deser_p99_ns": 120513.37999999999, "deser_ci_low_ns": 100450.00253164557, "deser_ci_high_ns": 103520.55569620253, "total_mean_ns": 175846.41772151898, "total_median_ns": 173588.0, "total_std_ns": 10902.496637864937, "total_mad_ns": 8938.0, "total_cv": 0.0620001065653256, "total_min_ns": 158291.0, "total_max_ns": 199489.0, "total_p5_ns": 160926.0, "total_p25_ns": 166596.0, "total_p50_ns": 173588.0, "total_p75_ns": 183631.5, "total_p95_ns": 195919.2, "total_p99_ns": 199075.6, "total_ci_low_ns": 173381.64620253164, "total_ci_high_ns": 178297.65253164558, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.75346110902519}, {"serializer": "MS Bond Json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 133287.54761904763, "avg_time_deser_ns": 282349.3214285714, "avg_time_total_ns": 415636.86904761905, "median_size_bytes": 44383.0, "avg_ops_per_sec": 2405.946330727054, "min_ops_per_sec": 2098.4553270337706, "max_ops_per_sec": 2616.965262403107, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 133287.54761904763, "ser_median_ns": 132560.0, "ser_std_ns": 8142.224957759725, "ser_mad_ns": 6252.5, "ser_cv": 0.06108766425076118, "ser_min_ns": 121001.0, "ser_max_ns": 155241.0, "ser_p5_ns": 122067.95, "ser_p25_ns": 126527.75, "ser_p50_ns": 132560.0, "ser_p75_ns": 138956.75, "ser_p95_ns": 148181.05, "ser_p99_ns": 150783.07, "ser_ci_low_ns": 131571.08363095237, "ser_ci_high_ns": 135019.39107142857, "deser_mean_ns": 282349.3214285714, "deser_median_ns": 283696.5, "deser_std_ns": 15452.887006874997, "deser_mad_ns": 11802.5, "deser_cv": 0.05472967644720995, "deser_min_ns": 258669.0, "deser_max_ns": 326671.0, "deser_p5_ns": 261354.15, "deser_p25_ns": 269820.25, "deser_p50_ns": 283696.5, "deser_p75_ns": 292659.75, "deser_p95_ns": 308752.74999999994, "deser_p99_ns": 317358.4, "deser_ci_low_ns": 278929.2898809524, "deser_ci_high_ns": 285626.42142857146, "total_mean_ns": 415636.86904761905, "total_median_ns": 414319.5, "total_std_ns": 20910.036174958343, "total_mad_ns": 15732.5, "total_cv": 0.05030842481051098, "total_min_ns": 382122.0, "total_max_ns": 476541.0, "total_p5_ns": 384312.15, "total_p25_ns": 400121.25, "total_p50_ns": 414319.5, "total_p75_ns": 430311.0, "total_p95_ns": 447253.1, "total_p99_ns": 464516.79000000004, "total_ci_low_ns": 411265.3717261905, "total_ci_high_ns": 419995.6458333334, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.27404136605243}, {"serializer": "GroBuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.9.2", "avg_time_ser_ns": 58551.759493670885, "avg_time_deser_ns": 125892.84810126582, "avg_time_total_ns": 184444.6075949367, "median_size_bytes": 81868.0, "avg_ops_per_sec": 5421.68195123451, "min_ops_per_sec": 4577.874218327977, "max_ops_per_sec": 6176.690405746793, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 58551.759493670885, "ser_median_ns": 56333.0, "ser_std_ns": 7762.588203743793, "ser_mad_ns": 3515.0, "ser_cv": 0.13257651470888565, "ser_min_ns": 48425.0, "ser_max_ns": 83020.0, "ser_p5_ns": 49978.1, "ser_p25_ns": 53076.0, "ser_p50_ns": 56333.0, "ser_p75_ns": 61634.0, "ser_p95_ns": 78523.3, "ser_p99_ns": 81655.78, "ser_ci_low_ns": 56930.46234177215, "ser_ci_high_ns": 60286.26360759494, "deser_mean_ns": 125892.84810126582, "deser_median_ns": 125843.0, "deser_std_ns": 6510.619991132846, "deser_mad_ns": 4575.0, "deser_cv": 0.051715566764331415, "deser_min_ns": 113474.0, "deser_max_ns": 141794.0, "deser_p5_ns": 114793.5, "deser_p25_ns": 121797.0, "deser_p50_ns": 125843.0, "deser_p75_ns": 130533.5, "deser_p95_ns": 136706.8, "deser_p99_ns": 140375.96, "deser_ci_low_ns": 124544.7006329114, "deser_ci_high_ns": 127329.23892405063, "total_mean_ns": 184444.6075949367, "total_median_ns": 183820.0, "total_std_ns": 11022.13541181344, "total_mad_ns": 7586.0, "total_cv": 0.059758512626291685, "total_min_ns": 161899.0, "total_max_ns": 218442.0, "total_p5_ns": 166687.1, "total_p25_ns": 176071.0, "total_p50_ns": 183820.0, "total_p75_ns": 191260.5, "total_p95_ns": 204335.1, "total_p99_ns": 211989.06, "total_ci_low_ns": 182071.53892405063, "total_ci_high_ns": 186750.885443038, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.558210274410059}, {"serializer": "MS DataContract Json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 289449.0120481928, "avg_time_deser_ns": 1135828.9638554216, "avg_time_total_ns": 1425277.9759036144, "median_size_bytes": 59488.0, "avg_ops_per_sec": 701.6175208671194, "min_ops_per_sec": 619.867112888339, "max_ops_per_sec": 759.7058115215464, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 289449.0120481928, "ser_median_ns": 289947.0, "ser_std_ns": 16150.803429757987, "ser_mad_ns": 9538.0, "ser_cv": 0.05579844033832427, "ser_min_ns": 252298.0, "ser_max_ns": 342929.0, "ser_p5_ns": 261453.7, "ser_p25_ns": 279810.5, "ser_p50_ns": 289947.0, "ser_p75_ns": 299184.5, "ser_p95_ns": 312130.8, "ser_p99_ns": 327421.15999999986, "ser_ci_low_ns": 286023.62379518076, "ser_ci_high_ns": 292763.77771084337, "deser_mean_ns": 1135828.9638554216, "deser_median_ns": 1138209.0, "deser_std_ns": 60088.766605594465, "deser_mad_ns": 43026.0, "deser_cv": 0.05290300610193199, "deser_min_ns": 1031245.0, "deser_max_ns": 1318543.0, "deser_p5_ns": 1049835.4, "deser_p25_ns": 1082420.5, "deser_p50_ns": 1138209.0, "deser_p75_ns": 1169747.0, "deser_p95_ns": 1243442.7, "deser_p99_ns": 1285265.7599999998, "deser_ci_low_ns": 1123080.6569277109, "deser_ci_high_ns": 1149308.373493976, "total_mean_ns": 1425277.9759036144, "total_median_ns": 1425144.0, "total_std_ns": 63823.62293222263, "total_mad_ns": 46049.0, "total_cv": 0.04477977209446388, "total_min_ns": 1316299.0, "total_max_ns": 1613249.0, "total_p5_ns": 1330389.9, "total_p25_ns": 1374987.5, "total_p50_ns": 1425144.0, "total_p75_ns": 1468083.0, "total_p95_ns": 1534262.0, "total_p99_ns": 1561066.6599999995, "total_ci_low_ns": 1411671.7147590362, "total_ci_high_ns": 1438575.1427710843, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.462543498602482}, {"serializer": "NetSerializer", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "4.1.2", "avg_time_ser_ns": 70770.62962962964, "avg_time_deser_ns": 133612.96296296295, "avg_time_total_ns": 204383.59259259258, "median_size_bytes": 18896.0, "avg_ops_per_sec": 4892.760653216166, "min_ops_per_sec": 4399.9560004399955, "max_ops_per_sec": 5381.378278604716, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 70770.62962962964, "ser_median_ns": 70081.0, "ser_std_ns": 4557.706233524832, "ser_mad_ns": 2731.0, "ser_cv": 0.06440109770645097, "ser_min_ns": 63860.0, "ser_max_ns": 86319.0, "ser_p5_ns": 64681.0, "ser_p25_ns": 67417.0, "ser_p50_ns": 70081.0, "ser_p75_ns": 73226.0, "ser_p95_ns": 78860.0, "ser_p99_ns": 83276.6, "ser_ci_low_ns": 69768.27438271604, "ser_ci_high_ns": 71807.01141975308, "deser_mean_ns": 133612.96296296295, "deser_median_ns": 133367.0, "deser_std_ns": 7418.561849247541, "deser_mad_ns": 5472.0, "deser_cv": 0.05552277028168248, "deser_min_ns": 121966.0, "deser_max_ns": 151565.0, "deser_p5_ns": 123263.0, "deser_p25_ns": 127558.0, "deser_p50_ns": 133367.0, "deser_p75_ns": 137514.0, "deser_p95_ns": 147953.0, "deser_p99_ns": 149821.80000000002, "deser_ci_low_ns": 132071.27037037036, "deser_ci_high_ns": 135322.39722222224, "total_mean_ns": 204383.59259259258, "total_median_ns": 203467.0, "total_std_ns": 9561.979602542793, "total_mad_ns": 6380.0, "total_cv": 0.04678447756617693, "total_min_ns": 185826.0, "total_max_ns": 227275.0, "total_p5_ns": 189587.0, "total_p25_ns": 198419.0, "total_p50_ns": 203467.0, "total_p75_ns": 210126.0, "total_p95_ns": 221400.0, "total_p99_ns": 223791.0, "total_ci_low_ns": 202264.23055555555, "total_ci_high_ns": 206464.11419753084, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.184851599745079}, {"serializer": "System.Text.Json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "8.0.0.0", "avg_time_ser_ns": 160856.32954545456, "avg_time_deser_ns": 314865.61363636365, "avg_time_total_ns": 475721.9431818182, "median_size_bytes": 59488.0, "avg_ops_per_sec": 2102.068265574636, "min_ops_per_sec": 1858.8846320430814, "max_ops_per_sec": 2355.285378152844, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 160856.32954545456, "ser_median_ns": 155401.0, "ser_std_ns": 15524.916617187073, "ser_mad_ns": 9268.0, "ser_cv": 0.09651417921232663, "ser_min_ns": 136694.0, "ser_max_ns": 209498.0, "ser_p5_ns": 142427.45, "ser_p25_ns": 149495.25, "ser_p50_ns": 155401.0, "ser_p75_ns": 171137.25, "ser_p95_ns": 188400.39999999997, "ser_p99_ns": 207319.52, "ser_ci_low_ns": 157785.7286931818, "ser_ci_high_ns": 164095.11818181816, "deser_mean_ns": 314865.61363636365, "deser_median_ns": 313628.0, "deser_std_ns": 14462.224562538198, "deser_mad_ns": 10473.5, "deser_cv": 0.0459314194253061, "deser_min_ns": 282772.0, "deser_max_ns": 348004.0, "deser_p5_ns": 293701.45, "deser_p25_ns": 306059.5, "deser_p50_ns": 313628.0, "deser_p75_ns": 324532.0, "deser_p95_ns": 340327.75, "deser_p99_ns": 347071.36, "deser_ci_low_ns": 311903.76363636367, "deser_ci_high_ns": 317930.8278409091, "total_mean_ns": 475721.9431818182, "total_median_ns": 475250.5, "total_std_ns": 22961.59678573678, "total_mad_ns": 15171.5, "total_cv": 0.048266843930217844, "total_min_ns": 424577.0, "total_max_ns": 537957.0, "total_p5_ns": 439609.7, "total_p25_ns": 460136.75, "total_p50_ns": 475250.5, "total_p75_ns": 491559.0, "total_p95_ns": 510019.35, "total_p99_ns": 531768.69, "total_ci_low_ns": 470990.30681818177, "total_ci_high_ns": 480518.21534090914, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.110017434872997}, {"serializer": "YamlDotNet", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "17.1.0", "avg_time_ser_ns": 8088587.494252874, "avg_time_deser_ns": 6726477.137931035, "avg_time_total_ns": 14815064.632183908, "median_size_bytes": 48610.0, "avg_ops_per_sec": 67.49886178880536, "min_ops_per_sec": 62.59276247398645, "max_ops_per_sec": 74.35785670318975, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 8088587.494252874, "ser_median_ns": 8073915.0, "ser_std_ns": 339860.89447588776, "ser_mad_ns": 184629.0, "ser_cv": 0.04201733550108306, "ser_min_ns": 7118344.0, "ser_max_ns": 8969357.0, "ser_p5_ns": 7545312.9, "ser_p25_ns": 7909051.0, "ser_p50_ns": 8073915.0, "ser_p75_ns": 8277876.0, "ser_p95_ns": 8623378.6, "ser_p99_ns": 8853379.12, "ser_ci_low_ns": 8019031.379885058, "ser_ci_high_ns": 8160129.452011494, "deser_mean_ns": 6726477.137931035, "deser_median_ns": 6706604.0, "deser_std_ns": 322511.8715943024, "deser_mad_ns": 249550.0, "deser_cv": 0.04794662421070865, "deser_min_ns": 6016738.0, "deser_max_ns": 7457601.0, "deser_p5_ns": 6302316.2, "deser_p25_ns": 6465715.0, "deser_p50_ns": 6706604.0, "deser_p75_ns": 6963339.5, "deser_p95_ns": 7240412.5, "deser_p99_ns": 7456683.38, "deser_ci_low_ns": 6660354.142528735, "deser_ci_high_ns": 6795273.743390804, "total_mean_ns": 14815064.632183908, "total_median_ns": 14816561.0, "total_std_ns": 494083.4086315112, "total_mad_ns": 362329.0, "total_cv": 0.03335006771136021, "total_min_ns": 13448478.0, "total_max_ns": 15976288.0, "total_p5_ns": 14089072.6, "total_p25_ns": 14455117.0, "total_p50_ns": 14816561.0, "total_p75_ns": 15165442.0, "total_p95_ns": 15608607.9, "total_p99_ns": 15891368.16, "total_ci_low_ns": 14711233.569827586, "total_ci_high_ns": 14917036.364367817, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 41.25988753416678}, {"serializer": "NetJSON", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.0.0", "avg_time_ser_ns": 100608.98765432098, "avg_time_deser_ns": 214511.0, "avg_time_total_ns": 315119.987654321, "median_size_bytes": 44383.0, "avg_ops_per_sec": 3173.3943868294887, "min_ops_per_sec": 2724.120177285741, "max_ops_per_sec": 3463.023565875366, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 100608.98765432098, "ser_median_ns": 99249.0, "ser_std_ns": 7385.335086327883, "ser_mad_ns": 4271.0, "ser_cv": 0.07340631546460745, "ser_min_ns": 88122.0, "ser_max_ns": 130926.0, "ser_p5_ns": 91859.0, "ser_p25_ns": 95290.0, "ser_p50_ns": 99249.0, "ser_p75_ns": 103596.0, "ser_p95_ns": 113461.0, "ser_p99_ns": 121291.60000000003, "ser_ci_low_ns": 99093.09722222223, "ser_ci_high_ns": 102269.8561728395, "deser_mean_ns": 214511.0, "deser_median_ns": 212887.0, "deser_std_ns": 11823.749405328244, "deser_mad_ns": 8358.0, "deser_cv": 0.055119548206517356, "deser_min_ns": 195058.0, "deser_max_ns": 253787.0, "deser_p5_ns": 199807.0, "deser_p25_ns": 204820.0, "deser_p50_ns": 212887.0, "deser_p75_ns": 221726.0, "deser_p95_ns": 238792.0, "deser_p99_ns": 245930.20000000004, "deser_ci_low_ns": 211936.75308641975, "deser_ci_high_ns": 217076.21172839508, "total_mean_ns": 315119.987654321, "total_median_ns": 313019.0, "total_std_ns": 16393.728103678724, "total_mad_ns": 11792.0, "total_cv": 0.0520237647434229, "total_min_ns": 288765.0, "total_max_ns": 367091.0, "total_p5_ns": 293329.0, "total_p25_ns": 301336.0, "total_p50_ns": 313019.0, "total_p75_ns": 325902.0, "total_p95_ns": 343509.0, "total_p99_ns": 359129.4, "total_ci_low_ns": 311616.31574074074, "total_ci_high_ns": 318827.99043209874, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.793341920146604}, {"serializer": "FsPickler", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 181956.0119047619, "avg_time_deser_ns": 165223.91666666666, "avg_time_total_ns": 347179.9285714286, "median_size_bytes": 34808.0, "avg_ops_per_sec": 2880.3508431918485, "min_ops_per_sec": 2409.9230993538995, "max_ops_per_sec": 3243.046907430469, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 181956.0119047619, "ser_median_ns": 182325.0, "ser_std_ns": 12312.753158788419, "ser_mad_ns": 8670.5, "ser_cv": 0.06766884495815984, "ser_min_ns": 159977.0, "ser_max_ns": 214514.0, "ser_p5_ns": 161951.85, "ser_p25_ns": 171702.5, "ser_p50_ns": 182325.0, "ser_p75_ns": 188954.5, "ser_p95_ns": 204013.0, "ser_p99_ns": 210781.49000000002, "ser_ci_low_ns": 179385.01577380951, "ser_ci_high_ns": 184699.8675595238, "deser_mean_ns": 165223.91666666666, "deser_median_ns": 165003.0, "deser_std_ns": 11935.700612593037, "deser_mad_ns": 8117.0, "deser_cv": 0.07223954529944285, "deser_min_ns": 145150.0, "deser_max_ns": 200437.0, "deser_p5_ns": 148328.95, "deser_p25_ns": 155666.25, "deser_p50_ns": 165003.0, "deser_p75_ns": 172055.75, "deser_p95_ns": 186413.8, "deser_p99_ns": 195173.97, "deser_ci_low_ns": 162671.2050595238, "deser_ci_high_ns": 167699.50773809524, "total_mean_ns": 347179.9285714286, "total_median_ns": 348978.5, "total_std_ns": 21225.38503534037, "total_mad_ns": 14730.5, "total_cv": 0.06113655568361427, "total_min_ns": 308352.0, "total_max_ns": 414951.0, "total_p5_ns": 311991.35, "total_p25_ns": 333445.0, "total_p50_ns": 348978.5, "total_p75_ns": 362211.0, "total_p95_ns": 380890.25, "total_p99_ns": 391667.01000000007, "total_ci_low_ns": 342560.14345238096, "total_ci_high_ns": 351892.64464285714, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.90400537146005}, {"serializer": "YAXLib", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "4.4.0", "avg_time_ser_ns": 1839312.536231884, "avg_time_deser_ns": 2281917.637681159, "avg_time_total_ns": 4121230.1739130435, "median_size_bytes": 132556.0, "avg_ops_per_sec": 242.645995928569, "min_ops_per_sec": 202.87559931987985, "max_ops_per_sec": 274.10875593822357, "runs": 69, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 30, "ser_mean_ns": 1839312.536231884, "ser_median_ns": 1781137.0, "ser_std_ns": 197461.81055851397, "ser_mad_ns": 109640.0, "ser_cv": 0.10735631202897415, "ser_min_ns": 1564983.0, "ser_max_ns": 2527368.0, "ser_p5_ns": 1632657.6, "ser_p25_ns": 1697691.0, "ser_p50_ns": 1781137.0, "ser_p75_ns": 1943362.0, "ser_p95_ns": 2186000.1999999997, "ser_p99_ns": 2442950.7599999993, "ser_ci_low_ns": 1793304.2952898552, "ser_ci_high_ns": 1884226.4851449276, "deser_mean_ns": 2281917.637681159, "deser_median_ns": 2281193.0, "deser_std_ns": 111079.88594514932, "deser_mad_ns": 62582.0, "deser_cv": 0.04867830639936092, "deser_min_ns": 2062772.0, "deser_max_ns": 2601069.0, "deser_p5_ns": 2101573.6, "deser_p25_ns": 2218611.0, "deser_p50_ns": 2281193.0, "deser_p75_ns": 2329233.0, "deser_p95_ns": 2465732.8, "deser_p99_ns": 2566246.1999999997, "deser_ci_low_ns": 2255663.6699275365, "deser_ci_high_ns": 2306808.3807971017, "total_mean_ns": 4121230.1739130435, "total_median_ns": 4088668.0, "total_std_ns": 261408.34895905436, "total_mad_ns": 136996.0, "total_cv": 0.06342968917721264, "total_min_ns": 3648187.0, "total_max_ns": 4929129.0, "total_p5_ns": 3752396.8, "total_p25_ns": 3961148.0, "total_p50_ns": 4088668.0, "total_p75_ns": 4257794.0, "total_p95_ns": 4597583.199999999, "total_p99_ns": 4891767.08, "total_ci_low_ns": 4063210.052173913, "total_ci_high_ns": 4181288.8014492756, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.541187526163323}, {"serializer": "MemoryPack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 45326.18292682927, "avg_time_deser_ns": 72034.9756097561, "avg_time_total_ns": 117361.15853658537, "median_size_bytes": 35928.0, "avg_ops_per_sec": 8520.706615964998, "min_ops_per_sec": 6871.482659813508, "max_ops_per_sec": 10033.31059116266, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 45326.18292682927, "ser_median_ns": 45017.0, "ser_std_ns": 4152.458281661536, "ser_mad_ns": 2317.5, "ser_cv": 0.09161279449374571, "ser_min_ns": 39533.0, "ser_max_ns": 57547.0, "ser_p5_ns": 39786.55, "ser_p25_ns": 42293.25, "ser_p50_ns": 45017.0, "ser_p75_ns": 47079.5, "ser_p95_ns": 54571.100000000006, "ser_p99_ns": 56545.03, "ser_ci_low_ns": 44435.828658536586, "ser_ci_high_ns": 46216.59176829268, "deser_mean_ns": 72034.9756097561, "deser_median_ns": 70627.0, "deser_std_ns": 6437.299587148824, "deser_mad_ns": 2726.5, "deser_cv": 0.08936352837852539, "deser_min_ns": 59947.0, "deser_max_ns": 90298.0, "deser_p5_ns": 64753.25, "deser_p25_ns": 68384.25, "deser_p50_ns": 70627.0, "deser_p75_ns": 73898.0, "deser_p95_ns": 87111.40000000001, "deser_p99_ns": 88733.08, "deser_ci_low_ns": 70740.41128048781, "deser_ci_high_ns": 73477.03658536584, "total_mean_ns": 117361.15853658537, "total_median_ns": 116214.5, "total_std_ns": 9298.528571329973, "total_mad_ns": 4686.0, "total_cv": 0.07923003391647086, "total_min_ns": 99668.0, "total_max_ns": 145529.0, "total_p5_ns": 106031.85, "total_p25_ns": 111493.25, "total_p50_ns": 116214.5, "total_p75_ns": 120420.0, "total_p95_ns": 137525.4, "total_p99_ns": 143507.24, "total_ci_low_ns": 115465.54695121951, "total_ci_high_ns": 119583.79024390243, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "Json.Net", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 369276.606741573, "avg_time_deser_ns": 567270.9550561798, "avg_time_total_ns": 936547.5617977529, "median_size_bytes": 58628.0, "avg_ops_per_sec": 1067.7514317376972, "min_ops_per_sec": 959.8458103690223, "max_ops_per_sec": 1157.246678702032, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 369276.606741573, "ser_median_ns": 369483.0, "ser_std_ns": 20476.017487548907, "ser_mad_ns": 14785.0, "ser_cv": 0.0554489970762714, "ser_min_ns": 337776.0, "ser_max_ns": 429392.0, "ser_p5_ns": 342535.0, "ser_p25_ns": 352062.0, "ser_p50_ns": 369483.0, "ser_p75_ns": 380493.0, "ser_p95_ns": 399004.8, "ser_p99_ns": 427975.2, "ser_ci_low_ns": 365088.74213483144, "ser_ci_high_ns": 373711.25646067417, "deser_mean_ns": 567270.9550561798, "deser_median_ns": 562172.0, "deser_std_ns": 30041.617777339743, "deser_mad_ns": 24055.0, "deser_cv": 0.052958145502733464, "deser_min_ns": 519899.0, "deser_max_ns": 642951.0, "deser_p5_ns": 524274.6, "deser_p25_ns": 544418.0, "deser_p50_ns": 562172.0, "deser_p75_ns": 589837.0, "deser_p95_ns": 618450.3999999999, "deser_p99_ns": 638868.68, "deser_ci_low_ns": 561217.9834269662, "deser_ci_high_ns": 573350.5384831461, "total_mean_ns": 936547.5617977529, "total_median_ns": 930713.0, "total_std_ns": 41560.13186936464, "total_mad_ns": 32638.0, "total_cv": 0.04437589030672159, "total_min_ns": 864120.0, "total_max_ns": 1041834.0, "total_p5_ns": 877155.2, "total_p25_ns": 902844.0, "total_p50_ns": 930713.0, "total_p75_ns": 967007.0, "total_p95_ns": 1004925.2, "total_p99_ns": 1026764.8800000001, "total_ci_low_ns": 928082.0460674157, "total_ci_high_ns": 945258.6601123596, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.58836715503013}, {"serializer": "Ceras", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "4.1.7", "avg_time_ser_ns": 94783.71951219512, "avg_time_deser_ns": 192018.74390243902, "avg_time_total_ns": 286802.46341463417, "median_size_bytes": 22780.0, "avg_ops_per_sec": 3486.720400146238, "min_ops_per_sec": 3006.081302474907, "max_ops_per_sec": 3886.75549198551, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 94783.71951219512, "ser_median_ns": 94325.5, "ser_std_ns": 5280.1449458088155, "ser_mad_ns": 3734.5, "ser_cv": 0.055707298394525005, "ser_min_ns": 86289.0, "ser_max_ns": 108223.0, "ser_p5_ns": 87470.8, "ser_p25_ns": 90770.25, "ser_p50_ns": 94325.5, "ser_p75_ns": 98109.0, "ser_p95_ns": 103742.25, "ser_p99_ns": 106905.12999999999, "ser_ci_low_ns": 93690.79664634146, "ser_ci_high_ns": 95855.60335365853, "deser_mean_ns": 192018.74390243902, "deser_median_ns": 191269.0, "deser_std_ns": 12028.851222112933, "deser_mad_ns": 8228.5, "deser_cv": 0.06264415117841078, "deser_min_ns": 169902.0, "deser_max_ns": 228913.0, "deser_p5_ns": 174391.4, "deser_p25_ns": 183210.25, "deser_p50_ns": 191269.0, "deser_p75_ns": 199515.75, "deser_p95_ns": 210316.25, "deser_p99_ns": 223685.25999999998, "deser_ci_low_ns": 189428.85670731706, "deser_ci_high_ns": 194650.8792682927, "total_mean_ns": 286802.46341463417, "total_median_ns": 286073.5, "total_std_ns": 15680.921792943895, "total_mad_ns": 12451.5, "total_cv": 0.0546749899085552, "total_min_ns": 257284.0, "total_max_ns": 332659.0, "total_p5_ns": 263748.75, "total_p25_ns": 272676.0, "total_p50_ns": 286073.5, "total_p75_ns": 298187.75, "total_p95_ns": 310961.2, "total_p99_ns": 323344.0, "total_ci_low_ns": 283413.46981707314, "total_ci_high_ns": 290160.6487804878, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.083244416198694}, {"serializer": "FlatSharp", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "7.5.1", "avg_time_ser_ns": 87501.97468354431, "avg_time_deser_ns": 102038.41772151898, "avg_time_total_ns": 189540.3924050633, "median_size_bytes": 51364.0, "avg_ops_per_sec": 5275.920279108203, "min_ops_per_sec": 3906.051645814861, "max_ops_per_sec": 6189.804154596549, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 87501.97468354431, "ser_median_ns": 83815.0, "ser_std_ns": 12258.959710303237, "ser_mad_ns": 5460.0, "ser_cv": 0.14009923495599313, "ser_min_ns": 70179.0, "ser_max_ns": 124924.0, "ser_p5_ns": 73456.4, "ser_p25_ns": 78988.5, "ser_p50_ns": 83815.0, "ser_p75_ns": 95935.0, "ser_p95_ns": 109561.49999999999, "ser_p99_ns": 119073.21999999999, "ser_ci_low_ns": 84888.89556962026, "ser_ci_high_ns": 90514.91582278481, "deser_mean_ns": 102038.41772151898, "deser_median_ns": 100630.0, "deser_std_ns": 8963.192528202808, "deser_mad_ns": 4205.0, "deser_cv": 0.08784135160410814, "deser_min_ns": 87597.0, "deser_max_ns": 133219.0, "deser_p5_ns": 91059.7, "deser_p25_ns": 96556.5, "deser_p50_ns": 100630.0, "deser_p75_ns": 104298.0, "deser_p95_ns": 123231.2, "deser_p99_ns": 131557.6, "deser_ci_low_ns": 100229.73164556961, "deser_ci_high_ns": 103953.71645569621, "total_mean_ns": 189540.3924050633, "total_median_ns": 185207.0, "total_std_ns": 17636.189671050684, "total_mad_ns": 8657.0, "total_cv": 0.09304713073169495, "total_min_ns": 161556.0, "total_max_ns": 256013.0, "total_p5_ns": 166760.8, "total_p25_ns": 178746.5, "total_p50_ns": 185207.0, "total_p75_ns": 197093.0, "total_p95_ns": 222124.3, "total_p99_ns": 246867.5, "total_ci_low_ns": 185899.44651898736, "total_ci_high_ns": 193432.88069620254, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.123071287720538}, {"serializer": "ServiceStack Json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 330324.0120481928, "avg_time_deser_ns": 436332.578313253, "avg_time_total_ns": 766656.5903614458, "median_size_bytes": 44614.0, "avg_ops_per_sec": 1304.3649693646314, "min_ops_per_sec": 1149.4794582273416, "max_ops_per_sec": 1412.5012006260206, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 330324.0120481928, "ser_median_ns": 326097.0, "ser_std_ns": 20657.977075834573, "ser_mad_ns": 14489.0, "ser_cv": 0.06253852678690723, "ser_min_ns": 301128.0, "ser_max_ns": 386218.0, "ser_p5_ns": 304305.9, "ser_p25_ns": 312343.5, "ser_p50_ns": 326097.0, "ser_p75_ns": 343826.5, "ser_p95_ns": 370922.69999999995, "ser_p99_ns": 382877.31999999995, "ser_ci_low_ns": 325885.31987951807, "ser_ci_high_ns": 334990.228313253, "deser_mean_ns": 436332.578313253, "deser_median_ns": 436796.0, "deser_std_ns": 23119.21695447976, "deser_mad_ns": 19317.0, "deser_cv": 0.05298531006750074, "deser_min_ns": 387128.0, "deser_max_ns": 487815.0, "deser_p5_ns": 405422.7, "deser_p25_ns": 416051.5, "deser_p50_ns": 436796.0, "deser_p75_ns": 452388.0, "deser_p95_ns": 476069.8, "deser_p99_ns": 484764.6, "deser_ci_low_ns": 431331.61385542166, "deser_ci_high_ns": 441092.77620481927, "total_mean_ns": 766656.5903614458, "total_median_ns": 761622.0, "total_std_ns": 38676.560543676664, "total_mad_ns": 32954.0, "total_cv": 0.05044835070868212, "total_min_ns": 707964.0, "total_max_ns": 869959.0, "total_p5_ns": 716987.1, "total_p25_ns": 732198.5, "total_p50_ns": 761622.0, "total_p75_ns": 798285.5, "total_p95_ns": 830950.8, "total_p99_ns": 851162.1399999998, "total_ci_low_ns": 758489.0337349398, "total_ci_high_ns": 775195.2765060241, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.91491376924294}, {"serializer": "LightProto", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.3.4", "avg_time_ser_ns": 91584.20512820513, "avg_time_deser_ns": 98945.93589743589, "avg_time_total_ns": 190530.14102564103, "median_size_bytes": 21688.0, "avg_ops_per_sec": 5248.513409043363, "min_ops_per_sec": 3809.6834534018567, "max_ops_per_sec": 5946.964966429383, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 91584.20512820513, "ser_median_ns": 88956.0, "ser_std_ns": 10737.983959562313, "ser_mad_ns": 5500.0, "ser_cv": 0.11724711640539578, "ser_min_ns": 79297.0, "ser_max_ns": 126227.0, "ser_p5_ns": 79861.65, "ser_p25_ns": 83790.25, "ser_p50_ns": 88956.0, "ser_p75_ns": 94888.25, "ser_p95_ns": 112771.29999999999, "ser_p99_ns": 121212.76000000002, "ser_ci_low_ns": 89444.37275641026, "ser_ci_high_ns": 94150.18397435897, "deser_mean_ns": 98945.93589743589, "deser_median_ns": 96272.0, "deser_std_ns": 10004.445279948002, "deser_mad_ns": 3801.0, "deser_cv": 0.10111021932541304, "deser_min_ns": 87385.0, "deser_max_ns": 143220.0, "deser_p5_ns": 89106.05, "deser_p25_ns": 92969.75, "deser_p50_ns": 96272.0, "deser_p75_ns": 100643.0, "deser_p95_ns": 120651.09999999995, "deser_p99_ns": 133214.62000000005, "deser_ci_low_ns": 96882.78237179488, "deser_ci_high_ns": 101189.12980769231, "total_mean_ns": 190530.14102564103, "total_median_ns": 186360.0, "total_std_ns": 16100.157170906918, "total_mad_ns": 9321.5, "total_cv": 0.08450189079921062, "total_min_ns": 168153.0, "total_max_ns": 262489.0, "total_p5_ns": 171555.95, "total_p25_ns": 179173.5, "total_p50_ns": 186360.0, "total_p75_ns": 202035.25, "total_p95_ns": 216368.55, "total_p99_ns": 233321.40000000014, "total_ci_low_ns": 187169.94647435896, "total_ci_high_ns": 194138.11826923076, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.574442908009553}, {"serializer": "FsPicklerJson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 318295.9240506329, "avg_time_deser_ns": 451140.7341772152, "avg_time_total_ns": 769436.6582278481, "median_size_bytes": 66872.0, "avg_ops_per_sec": 1299.6521407014593, "min_ops_per_sec": 1165.4780732782683, "max_ops_per_sec": 1429.89305829817, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 318295.9240506329, "ser_median_ns": 318560.0, "ser_std_ns": 15504.59726345222, "ser_mad_ns": 9288.0, "ser_cv": 0.04871126549828463, "ser_min_ns": 290931.0, "ser_max_ns": 369471.0, "ser_p5_ns": 294166.1, "ser_p25_ns": 307468.5, "ser_p50_ns": 318560.0, "ser_p75_ns": 326667.0, "ser_p95_ns": 346822.2, "ser_p99_ns": 359443.32, "ser_ci_low_ns": 315007.59430379746, "ser_ci_high_ns": 321878.6962025317, "deser_mean_ns": 451140.7341772152, "deser_median_ns": 450177.0, "deser_std_ns": 25345.15525935361, "deser_mad_ns": 15435.0, "deser_cv": 0.056180152531732225, "deser_min_ns": 405195.0, "deser_max_ns": 520500.0, "deser_p5_ns": 417198.2, "deser_p25_ns": 434598.5, "deser_p50_ns": 450177.0, "deser_p75_ns": 465586.5, "deser_p95_ns": 502142.29999999993, "deser_p99_ns": 516132.0, "deser_ci_low_ns": 445959.4351265823, "deser_ci_high_ns": 456857.43860759493, "total_mean_ns": 769436.6582278481, "total_median_ns": 767087.0, "total_std_ns": 33552.226631330384, "total_mad_ns": 23752.0, "total_cv": 0.04360622316670905, "total_min_ns": 699353.0, "total_max_ns": 858017.0, "total_p5_ns": 720566.5, "total_p25_ns": 745025.5, "total_p50_ns": 767087.0, "total_p75_ns": 792727.0, "total_p95_ns": 823983.6, "total_p99_ns": 846732.74, "total_ci_low_ns": 762280.9585443038, "total_ci_high_ns": 776597.0053797468, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.577116714511508}, {"serializer": "Migrant", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "0.13.0.0", "avg_time_ser_ns": 107745.83333333333, "avg_time_deser_ns": 131711.77380952382, "avg_time_total_ns": 239457.60714285713, "median_size_bytes": 65544.0, "avg_ops_per_sec": 4176.104538635157, "min_ops_per_sec": 3677.349366576572, "max_ops_per_sec": 4525.030204576616, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 107745.83333333333, "ser_median_ns": 105946.0, "ser_std_ns": 8252.054664673218, "ser_mad_ns": 3290.0, "ser_cv": 0.07658815574931639, "ser_min_ns": 96496.0, "ser_max_ns": 132736.0, "ser_p5_ns": 98710.1, "ser_p25_ns": 102679.5, "ser_p50_ns": 105946.0, "ser_p75_ns": 108920.0, "ser_p95_ns": 128884.19999999998, "ser_p99_ns": 131338.28, "ser_ci_low_ns": 106039.58363095237, "ser_ci_high_ns": 109510.02797619048, "deser_mean_ns": 131711.77380952382, "deser_median_ns": 131162.0, "deser_std_ns": 7270.057974199482, "deser_mad_ns": 4777.5, "deser_cv": 0.05519672056587092, "deser_min_ns": 117548.0, "deser_max_ns": 155276.0, "deser_p5_ns": 120382.3, "deser_p25_ns": 126531.25, "deser_p50_ns": 131162.0, "deser_p75_ns": 136293.5, "deser_p95_ns": 145285.24999999997, "deser_p99_ns": 150348.29, "deser_ci_low_ns": 130253.84226190476, "deser_ci_high_ns": 133287.43184523808, "total_mean_ns": 239457.60714285713, "total_median_ns": 238312.0, "total_std_ns": 12175.904610531721, "total_mad_ns": 8658.5, "total_cv": 0.05084785050603025, "total_min_ns": 220993.0, "total_max_ns": 271935.0, "total_p5_ns": 222985.4, "total_p25_ns": 229713.25, "total_p50_ns": 238312.0, "total_p75_ns": 247476.75, "total_p95_ns": 260656.3, "total_p99_ns": 265646.09, "total_ci_low_ns": 236889.5086309524, "total_ci_high_ns": 242186.8723214286, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.2010211821223}, {"serializer": "Google.Protobuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "3.35.1", "avg_time_ser_ns": 97594.68831168831, "avg_time_deser_ns": 98467.25974025975, "avg_time_total_ns": 196061.94805194804, "median_size_bytes": 21688.0, "avg_ops_per_sec": 5100.4287672131195, "min_ops_per_sec": 4258.018914120016, "max_ops_per_sec": 5766.01510695958, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 97594.68831168831, "ser_median_ns": 94890.0, "ser_std_ns": 8897.218548601137, "ser_mad_ns": 3430.0, "ser_cv": 0.09116498758811623, "ser_min_ns": 83064.0, "ser_max_ns": 123488.0, "ser_p5_ns": 87928.8, "ser_p25_ns": 92050.0, "ser_p50_ns": 94890.0, "ser_p75_ns": 100885.0, "ser_p95_ns": 118695.6, "ser_p99_ns": 120450.27999999998, "ser_ci_low_ns": 95601.32402597403, "ser_ci_high_ns": 99730.90746753247, "deser_mean_ns": 98467.25974025975, "deser_median_ns": 97435.0, "deser_std_ns": 5875.784591288744, "deser_mad_ns": 3837.0, "deser_cv": 0.05967246988276191, "deser_min_ns": 88235.0, "deser_max_ns": 119865.0, "deser_p5_ns": 90240.6, "deser_p25_ns": 94870.0, "deser_p50_ns": 97435.0, "deser_p75_ns": 102095.0, "deser_p95_ns": 108213.00000000001, "deser_p99_ns": 115361.99999999997, "deser_ci_low_ns": 97225.01980519481, "deser_ci_high_ns": 99864.03474025974, "total_mean_ns": 196061.94805194804, "total_median_ns": 193943.0, "total_std_ns": 11899.98123162618, "total_mad_ns": 5788.0, "total_cv": 0.06069500660308237, "total_min_ns": 173430.0, "total_max_ns": 234851.0, "total_p5_ns": 180708.6, "total_p25_ns": 189014.0, "total_p50_ns": 193943.0, "total_p75_ns": 201532.0, "total_p95_ns": 218825.2, "total_p99_ns": 231814.8, "total_ci_low_ns": 193545.09480519482, "total_ci_high_ns": 198640.46266233767, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.362979435966737}, {"serializer": "Apache.Avro", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.12.1", "avg_time_ser_ns": 375521.4942528736, "avg_time_deser_ns": 407785.9195402299, "avg_time_total_ns": 783307.4137931034, "median_size_bytes": 15956.0, "avg_ops_per_sec": 1276.6379870676571, "min_ops_per_sec": 1099.831725745961, "max_ops_per_sec": 1412.1780587070662, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 375521.4942528736, "ser_median_ns": 368443.0, "ser_std_ns": 34889.21146531515, "ser_mad_ns": 25675.0, "ser_cv": 0.09290869364143774, "ser_min_ns": 309692.0, "ser_max_ns": 476691.0, "ser_p5_ns": 323597.3, "ser_p25_ns": 347629.0, "ser_p50_ns": 368443.0, "ser_p75_ns": 398923.5, "ser_p95_ns": 431368.2, "ser_p99_ns": 464915.88, "ser_ci_low_ns": 368328.50114942534, "ser_ci_high_ns": 383041.2022988506, "deser_mean_ns": 407785.9195402299, "deser_median_ns": 405541.0, "deser_std_ns": 21392.764769196972, "deser_mad_ns": 14300.0, "deser_cv": 0.05246077351890146, "deser_min_ns": 367802.0, "deser_max_ns": 468720.0, "deser_p5_ns": 373376.1, "deser_p25_ns": 391693.0, "deser_p50_ns": 405541.0, "deser_p75_ns": 419006.5, "deser_p95_ns": 451209.4, "deser_p99_ns": 460255.02, "deser_ci_low_ns": 403382.68764367816, "deser_ci_high_ns": 412272.47586206894, "total_mean_ns": 783307.4137931034, "total_median_ns": 781920.0, "total_std_ns": 40772.54235262443, "total_mad_ns": 25983.0, "total_cv": 0.05205177639668525, "total_min_ns": 708126.0, "total_max_ns": 909230.0, "total_p5_ns": 723404.3, "total_p25_ns": 756866.5, "total_p50_ns": 781920.0, "total_p75_ns": 808062.5, "total_p95_ns": 846636.3, "total_p99_ns": 897822.96, "total_ci_low_ns": 775473.440229885, "total_ci_high_ns": 791709.411494253, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.122674208931834}, {"serializer": "Json.Net (Helper)", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 376706.3125, "avg_time_deser_ns": 573529.9375, "avg_time_total_ns": 950236.25, "median_size_bytes": 56520.0, "avg_ops_per_sec": 1052.3698711767731, "min_ops_per_sec": 904.4919785128885, "max_ops_per_sec": 1164.7111167017244, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 376706.3125, "ser_median_ns": 372025.5, "ser_std_ns": 24917.23605250077, "ser_mad_ns": 17167.5, "ser_cv": 0.06614499206859129, "ser_min_ns": 336740.0, "ser_max_ns": 443879.0, "ser_p5_ns": 343393.1, "ser_p25_ns": 360735.0, "ser_p50_ns": 372025.5, "ser_p75_ns": 392814.75, "ser_p95_ns": 420807.7, "ser_p99_ns": 441358.89999999997, "ser_ci_low_ns": 371321.5365625, "ser_ci_high_ns": 381973.546875, "deser_mean_ns": 573529.9375, "deser_median_ns": 571083.5, "deser_std_ns": 36596.64669923948, "deser_mad_ns": 26909.0, "deser_cv": 0.06380947934254867, "deser_min_ns": 517144.0, "deser_max_ns": 661714.0, "deser_p5_ns": 523663.85, "deser_p25_ns": 542249.75, "deser_p50_ns": 571083.5, "deser_p75_ns": 596980.25, "deser_p95_ns": 645971.1, "deser_p99_ns": 655554.37, "deser_ci_low_ns": 566008.774375, "deser_ci_high_ns": 581173.953125, "total_mean_ns": 950236.25, "total_median_ns": 942355.0, "total_std_ns": 49467.72955246631, "total_mad_ns": 38638.5, "total_cv": 0.05205834817653643, "total_min_ns": 858582.0, "total_max_ns": 1105593.0, "total_p5_ns": 869745.6, "total_p25_ns": 919398.25, "total_p50_ns": 942355.0, "total_p75_ns": 986311.25, "total_p95_ns": 1019247.15, "total_p99_ns": 1042690.8299999995, "total_ci_low_ns": 940018.3971875, "total_ci_high_ns": 961023.895625, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.427878953165177}, {"serializer": "NetSerializer", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "4.1.2", "avg_time_ser_ns": 64245.14864864865, "avg_time_deser_ns": 106581.77027027027, "avg_time_total_ns": 170826.9189189189, "median_size_bytes": 14171.0, "avg_ops_per_sec": 5853.878336789759, "min_ops_per_sec": 4954.419342053111, "max_ops_per_sec": 6535.178867845613, "runs": 74, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 25, "ser_mean_ns": 64245.14864864865, "ser_median_ns": 62062.0, "ser_std_ns": 7569.2355899362165, "ser_mad_ns": 3120.5, "ser_cv": 0.11781801037354173, "ser_min_ns": 54679.0, "ser_max_ns": 82205.0, "ser_p5_ns": 56105.0, "ser_p25_ns": 59273.25, "ser_p50_ns": 62062.0, "ser_p75_ns": 65454.0, "ser_p95_ns": 80947.84999999999, "ser_p99_ns": 82121.78, "ser_ci_low_ns": 62579.391554054055, "ser_ci_high_ns": 65960.85304054055, "deser_mean_ns": 106581.77027027027, "deser_median_ns": 106746.0, "deser_std_ns": 5819.19693312585, "deser_mad_ns": 5149.0, "deser_cv": 0.054598426338477196, "deser_min_ns": 98339.0, "deser_max_ns": 122390.0, "deser_p5_ns": 99029.0, "deser_p25_ns": 101192.0, "deser_p50_ns": 106746.0, "deser_p75_ns": 110732.25, "deser_p95_ns": 115596.2, "deser_p99_ns": 122149.1, "deser_ci_low_ns": 105313.925, "deser_ci_high_ns": 107867.19020270271, "total_mean_ns": 170826.9189189189, "total_median_ns": 170298.0, "total_std_ns": 10299.182838653789, "total_mad_ns": 8050.0, "total_cv": 0.06029016330583227, "total_min_ns": 153018.0, "total_max_ns": 201840.0, "total_p5_ns": 156647.85, "total_p25_ns": 163467.5, "total_p50_ns": 170298.0, "total_p75_ns": 178856.75, "total_p95_ns": 185369.94999999998, "total_p99_ns": 200577.1, "total_ci_low_ns": 168569.7831081081, "total_ci_high_ns": 173141.45844594593, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.327320720197092}, {"serializer": "Google.Protobuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "3.35.1", "avg_time_ser_ns": 77371.54761904762, "avg_time_deser_ns": 74269.61904761905, "avg_time_total_ns": 151641.16666666666, "median_size_bytes": 16265.0, "avg_ops_per_sec": 6594.5153415904, "min_ops_per_sec": 5326.430279690854, "max_ops_per_sec": 7488.897709146191, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 77371.54761904762, "ser_median_ns": 72793.0, "ser_std_ns": 11560.431472963222, "ser_mad_ns": 4480.5, "ser_cv": 0.1494145047981079, "ser_min_ns": 63753.0, "ser_max_ns": 112635.0, "ser_p5_ns": 65720.0, "ser_p25_ns": 69252.25, "ser_p50_ns": 72793.0, "ser_p75_ns": 85162.25, "ser_p95_ns": 98967.09999999999, "ser_p99_ns": 103574.72000000002, "ser_ci_low_ns": 75018.67470238094, "ser_ci_high_ns": 79870.14910714286, "deser_mean_ns": 74269.61904761905, "deser_median_ns": 73465.0, "deser_std_ns": 5027.1565747070945, "deser_mad_ns": 2894.0, "deser_cv": 0.0676879273001772, "deser_min_ns": 67522.0, "deser_max_ns": 90149.0, "deser_p5_ns": 68530.9, "deser_p25_ns": 70584.5, "deser_p50_ns": 73465.0, "deser_p75_ns": 76364.0, "deser_p95_ns": 85823.34999999999, "deser_p99_ns": 88292.29000000001, "deser_ci_low_ns": 73286.4669642857, "deser_ci_high_ns": 75479.28303571428, "total_mean_ns": 151641.16666666666, "total_median_ns": 147805.5, "total_std_ns": 13651.413801034247, "total_mad_ns": 8599.5, "total_cv": 0.09002445774531925, "total_min_ns": 133531.0, "total_max_ns": 187743.0, "total_p5_ns": 136080.3, "total_p25_ns": 140044.75, "total_p50_ns": 147805.5, "total_p75_ns": 160745.0, "total_p95_ns": 175285.24999999997, "total_p99_ns": 186512.11000000002, "total_ci_low_ns": 148739.95773809523, "total_ci_high_ns": 154590.40803571427, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.474642431836119}, {"serializer": "YAXLib", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "4.4.0", "avg_time_ser_ns": 1823997.1492537314, "avg_time_deser_ns": 2354008.76119403, "avg_time_total_ns": 4178005.9104477614, "median_size_bytes": 132559.0, "avg_ops_per_sec": 239.348632202588, "min_ops_per_sec": 206.25220560952374, "max_ops_per_sec": 261.9635477723275, "runs": 67, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 32, "ser_mean_ns": 1823997.1492537314, "ser_median_ns": 1783317.0, "ser_std_ns": 162525.1934186367, "ser_mad_ns": 68536.0, "ser_cv": 0.08910386372321477, "ser_min_ns": 1623209.0, "ser_max_ns": 2524192.0, "ser_p5_ns": 1667933.9, "ser_p25_ns": 1718364.5, "ser_p50_ns": 1783317.0, "ser_p75_ns": 1856858.0, "ser_p95_ns": 2100194.9, "ser_p99_ns": 2484021.1, "ser_ci_low_ns": 1788065.7332089553, "ser_ci_high_ns": 1864537.096641791, "deser_mean_ns": 2354008.76119403, "deser_median_ns": 2323452.0, "deser_std_ns": 149904.55496769707, "deser_mad_ns": 68373.0, "deser_cv": 0.06368054250217005, "deser_min_ns": 2095942.0, "deser_max_ns": 2941235.0, "deser_p5_ns": 2157569.1, "deser_p25_ns": 2270871.0, "deser_p50_ns": 2323452.0, "deser_p75_ns": 2409027.0, "deser_p95_ns": 2598500.4999999995, "deser_p99_ns": 2910985.8800000004, "deser_ci_low_ns": 2319691.0179104474, "deser_ci_high_ns": 2390708.5324626868, "total_mean_ns": 4178005.9104477614, "total_median_ns": 4128847.0, "total_std_ns": 239590.07882079654, "total_mad_ns": 140306.0, "total_cv": 0.057345557655067894, "total_min_ns": 3817325.0, "total_max_ns": 4848433.0, "total_p5_ns": 3864413.6, "total_p25_ns": 4016178.5, "total_p50_ns": 4128847.0, "total_p75_ns": 4307348.5, "total_p95_ns": 4695525.9, "total_p99_ns": 4832445.16, "total_ci_low_ns": 4123597.914552239, "total_ci_high_ns": 4235513.601119403, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.014981238819644}, {"serializer": "ExtendedXmlSerializer", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "3.10.0.0", "avg_time_ser_ns": 111491.4125, "avg_time_deser_ns": 112677.5125, "avg_time_total_ns": 224168.925, "median_size_bytes": 44986.0, "avg_ops_per_sec": 4460.921601867877, "min_ops_per_sec": 3540.6251327734426, "max_ops_per_sec": 5241.74948630855, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 111491.4125, "ser_median_ns": 107322.0, "ser_std_ns": 12917.256011952491, "ser_mad_ns": 8458.5, "ser_cv": 0.11585875290576743, "ser_min_ns": 90374.0, "ser_max_ns": 157697.0, "ser_p5_ns": 96108.95, "ser_p25_ns": 101144.0, "ser_p50_ns": 107322.0, "ser_p75_ns": 121096.5, "ser_p95_ns": 131474.19999999998, "ser_p99_ns": 140726.21999999986, "ser_ci_low_ns": 108823.5721875, "ser_ci_high_ns": 114264.89562499999, "deser_mean_ns": 112677.5125, "deser_median_ns": 111620.0, "deser_std_ns": 8681.561195122218, "deser_mad_ns": 5139.0, "deser_cv": 0.07704785988350797, "deser_min_ns": 100128.0, "deser_max_ns": 139602.0, "deser_p5_ns": 101066.8, "deser_p25_ns": 106485.0, "deser_p50_ns": 111620.0, "deser_p75_ns": 116285.75, "deser_p95_ns": 128913.55, "deser_p99_ns": 137400.27, "deser_ci_low_ns": 110814.6953125, "deser_ci_high_ns": 114608.518125, "total_mean_ns": 224168.925, "total_median_ns": 221623.0, "total_std_ns": 17525.98077197451, "total_mad_ns": 11442.0, "total_cv": 0.07818202621962216, "total_min_ns": 190776.0, "total_max_ns": 282436.0, "total_p5_ns": 198408.75, "total_p25_ns": 211208.75, "total_p50_ns": 221623.0, "total_p75_ns": 234216.75, "total_p95_ns": 255126.75, "total_p99_ns": 266830.33999999985, "total_ci_low_ns": 220477.29468750002, "total_ci_high_ns": 227932.133125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.80418782397991}, {"serializer": "FsPicklerJson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 292941.06097560975, "avg_time_deser_ns": 379561.8292682927, "avg_time_total_ns": 672502.8902439025, "median_size_bytes": 50153.0, "avg_ops_per_sec": 1486.9824568892504, "min_ops_per_sec": 1332.4308335154321, "max_ops_per_sec": 1631.1776776597167, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 292941.06097560975, "ser_median_ns": 291435.0, "ser_std_ns": 16742.83613476947, "ser_mad_ns": 14239.5, "ser_cv": 0.057154282431452916, "ser_min_ns": 267179.0, "ser_max_ns": 333498.0, "ser_p5_ns": 268605.85, "ser_p25_ns": 277913.0, "ser_p50_ns": 291435.0, "ser_p75_ns": 305457.0, "ser_p95_ns": 318804.35, "ser_p99_ns": 330420.81, "ser_ci_low_ns": 289329.30914634146, "ser_ci_high_ns": 296423.45335365855, "deser_mean_ns": 379561.8292682927, "deser_median_ns": 378273.5, "deser_std_ns": 19789.45534831205, "deser_mad_ns": 12901.0, "deser_cv": 0.05213763298185578, "deser_min_ns": 345066.0, "deser_max_ns": 443120.0, "deser_p5_ns": 350161.95, "deser_p25_ns": 365248.75, "deser_p50_ns": 378273.5, "deser_p75_ns": 391133.5, "deser_p95_ns": 415032.7, "deser_p99_ns": 433821.19999999995, "deser_ci_low_ns": 375299.5164634146, "deser_ci_high_ns": 383768.1304878048, "total_mean_ns": 672502.8902439025, "total_median_ns": 669352.0, "total_std_ns": 31004.54509293603, "total_mad_ns": 22753.0, "total_cv": 0.04610321463702757, "total_min_ns": 613054.0, "total_max_ns": 750508.0, "total_p5_ns": 625267.3, "total_p25_ns": 647683.0, "total_p50_ns": 669352.0, "total_p75_ns": 692407.0, "total_p95_ns": 722718.9, "total_p99_ns": 745488.4299999999, "total_ci_low_ns": 666040.6585365854, "total_ci_high_ns": 679372.2762195122, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.361266388163898}, {"serializer": "SharpYaml", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "3.13.0", "avg_time_ser_ns": 409904.8375, "avg_time_deser_ns": 2562539.35, "avg_time_total_ns": 2972444.1875, "median_size_bytes": 59413.0, "avg_ops_per_sec": 336.42347405723996, "min_ops_per_sec": 279.4926202768542, "max_ops_per_sec": 387.12080065872476, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 409904.8375, "ser_median_ns": 407457.5, "ser_std_ns": 24691.92014847831, "ser_mad_ns": 17222.0, "ser_cv": 0.060238176985355316, "ser_min_ns": 374718.0, "ser_max_ns": 502676.0, "ser_p5_ns": 377974.7, "ser_p25_ns": 389392.5, "ser_p50_ns": 407457.5, "ser_p75_ns": 420671.75, "ser_p95_ns": 456825.6, "ser_p99_ns": 472569.8899999998, "ser_ci_low_ns": 404608.35593749996, "ser_ci_high_ns": 415229.02999999997, "deser_mean_ns": 2562539.35, "deser_median_ns": 2529001.5, "deser_std_ns": 202842.90852582874, "deser_mad_ns": 114422.5, "deser_cv": 0.07915699266269949, "deser_min_ns": 2194073.0, "deser_max_ns": 3166862.0, "deser_p5_ns": 2295529.0, "deser_p25_ns": 2429057.25, "deser_p50_ns": 2529001.5, "deser_p75_ns": 2648273.25, "deser_p95_ns": 2918909.1999999997, "deser_p99_ns": 3155419.64, "deser_ci_low_ns": 2519865.4628125, "deser_ci_high_ns": 2607089.953125, "total_mean_ns": 2972444.1875, "total_median_ns": 2938899.0, "total_std_ns": 209802.0383457408, "total_mad_ns": 116862.5, "total_cv": 0.0705823306045644, "total_min_ns": 2583173.0, "total_max_ns": 3577912.0, "total_p5_ns": 2673051.55, "total_p25_ns": 2833055.0, "total_p50_ns": 2938899.0, "total_p75_ns": 3086893.75, "total_p95_ns": 3317615.15, "total_p99_ns": 3577884.35, "total_ci_low_ns": 2925580.3234375003, "total_ci_high_ns": 3019349.6484375, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.972502934526716}, {"serializer": "ServiceStack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 352857.6567164179, "avg_time_deser_ns": 337680.2388059702, "avg_time_total_ns": 690537.895522388, "median_size_bytes": 36612.0, "avg_ops_per_sec": 1448.1464471164259, "min_ops_per_sec": 1326.0260458035916, "max_ops_per_sec": 1621.3420496681924, "runs": 67, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 32, "ser_mean_ns": 352857.6567164179, "ser_median_ns": 351601.0, "ser_std_ns": 20416.66410183205, "ser_mad_ns": 12281.0, "ser_cv": 0.057860907119950546, "ser_min_ns": 320805.0, "ser_max_ns": 432680.0, "ser_p5_ns": 323353.7, "ser_p25_ns": 338863.5, "ser_p50_ns": 351601.0, "ser_p75_ns": 361323.5, "ser_p95_ns": 389642.6, "ser_p99_ns": 409302.8000000001, "ser_ci_low_ns": 348132.13992537314, "ser_ci_high_ns": 357726.1899253731, "deser_mean_ns": 337680.2388059702, "deser_median_ns": 340693.0, "deser_std_ns": 18658.007281861224, "deser_mad_ns": 12829.0, "deser_cv": 0.055253476921941075, "deser_min_ns": 295700.0, "deser_max_ns": 379724.0, "deser_p5_ns": 309312.1, "deser_p25_ns": 322004.0, "deser_p50_ns": 340693.0, "deser_p75_ns": 349746.5, "deser_p95_ns": 368603.2, "deser_p99_ns": 375515.18, "deser_ci_low_ns": 333164.8779850746, "deser_ci_high_ns": 341989.05970149254, "total_mean_ns": 690537.895522388, "total_median_ns": 688638.0, "total_std_ns": 30493.656524205024, "total_mad_ns": 20593.0, "total_cv": 0.044159280355116126, "total_min_ns": 616773.0, "total_max_ns": 754133.0, "total_p5_ns": 641152.1, "total_p25_ns": 667563.5, "total_p50_ns": 688638.0, "total_p75_ns": 708121.5, "total_p95_ns": 746979.0, "total_p99_ns": 751140.56, "total_ci_low_ns": 683346.7817164179, "total_ci_high_ns": 697917.569402985, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.21832348357389}, {"serializer": "Ceras", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "4.1.7", "avg_time_ser_ns": 89440.86666666667, "avg_time_deser_ns": 159259.48, "avg_time_total_ns": 248700.34666666668, "median_size_bytes": 17083.0, "avg_ops_per_sec": 4020.903120574661, "min_ops_per_sec": 3545.432950544756, "max_ops_per_sec": 4349.736188500167, "runs": 75, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 24, "ser_mean_ns": 89440.86666666667, "ser_median_ns": 88558.0, "ser_std_ns": 5112.292631975888, "ser_mad_ns": 3295.0, "ser_cv": 0.05715835302701921, "ser_min_ns": 81038.0, "ser_max_ns": 102880.0, "ser_p5_ns": 82579.8, "ser_p25_ns": 85591.0, "ser_p50_ns": 88558.0, "ser_p75_ns": 92199.0, "ser_p95_ns": 98618.49999999999, "ser_p99_ns": 102582.52, "ser_ci_low_ns": 88360.44799999999, "ser_ci_high_ns": 90599.51633333333, "deser_mean_ns": 159259.48, "deser_median_ns": 160405.0, "deser_std_ns": 7674.061691670688, "deser_mad_ns": 6174.0, "deser_cv": 0.04818590197375181, "deser_min_ns": 147468.0, "deser_max_ns": 179173.0, "deser_p5_ns": 148554.5, "deser_p25_ns": 151519.0, "deser_p50_ns": 160405.0, "deser_p75_ns": 165856.5, "deser_p95_ns": 171545.6, "deser_p99_ns": 175633.58000000002, "deser_ci_low_ns": 157483.003, "deser_ci_high_ns": 161034.67799999999, "total_mean_ns": 248700.34666666668, "total_median_ns": 249636.0, "total_std_ns": 12117.160438585206, "total_mad_ns": 10143.0, "total_cv": 0.04872192822001108, "total_min_ns": 229899.0, "total_max_ns": 282053.0, "total_p5_ns": 232062.6, "total_p25_ns": 238100.0, "total_p50_ns": 249636.0, "total_p75_ns": 256922.0, "total_p95_ns": 269823.0, "total_p99_ns": 276792.34, "total_ci_low_ns": 245867.036, "total_ci_high_ns": 251607.606, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.5542125228232}, {"serializer": "Jil", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "2.17.0", "avg_time_ser_ns": 219475.85, "avg_time_deser_ns": 230496.925, "avg_time_total_ns": 449972.775, "median_size_bytes": 44614.0, "avg_ops_per_sec": 2222.3566748010476, "min_ops_per_sec": 1958.3037955844165, "max_ops_per_sec": 2403.4070698622368, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 219475.85, "ser_median_ns": 219163.0, "ser_std_ns": 12597.511313496443, "ser_mad_ns": 7843.0, "ser_cv": 0.05739816619230062, "ser_min_ns": 197489.0, "ser_max_ns": 262689.0, "ser_p5_ns": 201724.9, "ser_p25_ns": 210717.75, "ser_p50_ns": 219163.0, "ser_p75_ns": 226126.75, "ser_p95_ns": 238263.09999999998, "ser_p99_ns": 258957.82999999996, "ser_ci_low_ns": 216762.7171875, "ser_ci_high_ns": 222335.31875, "deser_mean_ns": 230496.925, "deser_median_ns": 230677.5, "deser_std_ns": 12786.949334592791, "deser_mad_ns": 10257.0, "deser_cv": 0.055475574498847616, "deser_min_ns": 209231.0, "deser_max_ns": 265427.0, "deser_p5_ns": 214254.5, "deser_p25_ns": 219511.75, "deser_p50_ns": 230677.5, "deser_p75_ns": 238162.25, "deser_p95_ns": 251248.45, "deser_p99_ns": 262827.11, "deser_ci_low_ns": 227749.9865625, "deser_ci_high_ns": 233207.583125, "total_mean_ns": 449972.775, "total_median_ns": 450453.5, "total_std_ns": 22191.896035946393, "total_mad_ns": 17574.5, "total_cv": 0.04931830828197637, "total_min_ns": 416076.0, "total_max_ns": 510646.0, "total_p5_ns": 419128.3, "total_p25_ns": 431772.25, "total_p50_ns": 450453.5, "total_p75_ns": 464973.5, "total_p95_ns": 486700.25, "total_p99_ns": 505518.11, "total_ci_low_ns": 445185.951875, "total_ci_high_ns": 454888.0278125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.87247105732933}, {"serializer": "MS Bond Json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 152296.19318181818, "avg_time_deser_ns": 289804.95454545453, "avg_time_total_ns": 442101.1477272727, "median_size_bytes": 44383.0, "avg_ops_per_sec": 2261.925817521037, "min_ops_per_sec": 2033.0864488688924, "max_ops_per_sec": 2465.32520104727, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 152296.19318181818, "ser_median_ns": 151177.0, "ser_std_ns": 8712.541710328042, "ser_mad_ns": 5474.0, "ser_cv": 0.05720787583919849, "ser_min_ns": 139693.0, "ser_max_ns": 180335.0, "ser_p5_ns": 140197.8, "ser_p25_ns": 145803.75, "ser_p50_ns": 151177.0, "ser_p75_ns": 157500.5, "ser_p95_ns": 166771.35, "ser_p99_ns": 176302.55, "ser_ci_low_ns": 150549.20681818182, "ser_ci_high_ns": 154183.80710227272, "deser_mean_ns": 289804.95454545453, "deser_median_ns": 288901.5, "deser_std_ns": 15364.208357662956, "deser_mad_ns": 12694.0, "deser_cv": 0.05301568560744931, "deser_min_ns": 264591.0, "deser_max_ns": 330410.0, "deser_p5_ns": 269393.6, "deser_p25_ns": 275491.5, "deser_p50_ns": 288901.5, "deser_p75_ns": 300538.75, "deser_p95_ns": 314596.4, "deser_p99_ns": 319368.82999999996, "deser_ci_low_ns": 286639.48011363635, "deser_ci_high_ns": 293097.66874999995, "total_mean_ns": 442101.1477272727, "total_median_ns": 442705.0, "total_std_ns": 21001.481883423487, "total_mad_ns": 19803.0, "total_cv": 0.04750379407831591, "total_min_ns": 405626.0, "total_max_ns": 491863.0, "total_p5_ns": 412246.55, "total_p25_ns": 421436.75, "total_p50_ns": 442705.0, "total_p75_ns": 456504.0, "total_p95_ns": 474673.5, "total_p99_ns": 486793.50999999995, "total_ci_low_ns": 437672.4477272727, "total_ci_high_ns": 446275.73352272727, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.086476241760025}, {"serializer": "BinaryPack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.0.3", "avg_time_ser_ns": 55648.583333333336, "avg_time_deser_ns": 60838.01388888889, "avg_time_total_ns": 116486.59722222222, "median_size_bytes": 22944.0, "avg_ops_per_sec": 8584.678614075177, "min_ops_per_sec": 7517.101405697963, "max_ops_per_sec": 9694.995443352142, "runs": 72, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 27, "ser_mean_ns": 55648.583333333336, "ser_median_ns": 53937.5, "ser_std_ns": 6226.918422077751, "ser_mad_ns": 2115.5, "ser_cv": 0.11189715980330886, "ser_min_ns": 47980.0, "ser_max_ns": 74372.0, "ser_p5_ns": 49720.4, "ser_p25_ns": 51872.75, "ser_p50_ns": 53937.5, "ser_p75_ns": 56120.25, "ser_p95_ns": 71976.05, "ser_p99_ns": 73756.43000000001, "ser_ci_low_ns": 54281.71111111111, "ser_ci_high_ns": 57151.856250000004, "deser_mean_ns": 60838.01388888889, "deser_median_ns": 60923.5, "deser_std_ns": 2640.3099129503908, "deser_mad_ns": 1728.5, "deser_cv": 0.043399015585428274, "deser_min_ns": 55166.0, "deser_max_ns": 66663.0, "deser_p5_ns": 56486.2, "deser_p25_ns": 59103.5, "deser_p50_ns": 60923.5, "deser_p75_ns": 62583.75, "deser_p95_ns": 64856.75, "deser_p99_ns": 66631.05, "deser_ci_low_ns": 60245.49930555556, "deser_ci_high_ns": 61451.40347222222, "total_mean_ns": 116486.59722222222, "total_median_ns": 115536.0, "total_std_ns": 6665.815894525627, "total_mad_ns": 3181.5, "total_cv": 0.05722388715509655, "total_min_ns": 103146.0, "total_max_ns": 133030.0, "total_p5_ns": 107529.8, "total_p25_ns": 112390.25, "total_p50_ns": 115536.0, "total_p75_ns": 118713.25, "total_p95_ns": 131589.35, "total_p99_ns": 132983.85, "total_ci_low_ns": 115031.27604166667, "total_ci_high_ns": 117996.725, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.273266738717712}, {"serializer": "ServiceStack Json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 376429.8333333333, "avg_time_deser_ns": 451170.90277777775, "avg_time_total_ns": 827600.7361111111, "median_size_bytes": 44614.0, "avg_ops_per_sec": 1208.3121200435266, "min_ops_per_sec": 1092.4042944597625, "max_ops_per_sec": 1326.2722598220407, "runs": 72, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 27, "ser_mean_ns": 376429.8333333333, "ser_median_ns": 373483.5, "ser_std_ns": 21554.61737403021, "ser_mad_ns": 16420.0, "ser_cv": 0.05726065116348876, "ser_min_ns": 345417.0, "ser_max_ns": 437392.0, "ser_p5_ns": 349141.1, "ser_p25_ns": 358763.75, "ser_p50_ns": 373483.5, "ser_p75_ns": 390889.5, "ser_p95_ns": 415382.35, "ser_p99_ns": 430545.4700000001, "ser_ci_low_ns": 371427.0802083333, "ser_ci_high_ns": 381449.6611111111, "deser_mean_ns": 451170.90277777775, "deser_median_ns": 450603.0, "deser_std_ns": 23511.49817726872, "deser_mad_ns": 16999.5, "deser_cv": 0.05211217751967752, "deser_min_ns": 403302.0, "deser_max_ns": 508527.0, "deser_p5_ns": 415301.45, "deser_p25_ns": 433740.5, "deser_p50_ns": 450603.0, "deser_p75_ns": 467969.0, "deser_p95_ns": 487682.4, "deser_p99_ns": 507851.08, "deser_ci_low_ns": 445735.8774305555, "deser_ci_high_ns": 456604.6927083333, "total_mean_ns": 827600.7361111111, "total_median_ns": 822689.0, "total_std_ns": 40144.12362552926, "total_mad_ns": 33125.0, "total_cv": 0.04850663112525269, "total_min_ns": 753993.0, "total_max_ns": 915412.0, "total_p5_ns": 769942.85, "total_p25_ns": 794194.25, "total_p50_ns": 822689.0, "total_p75_ns": 857795.5, "total_p95_ns": 897397.75, "total_p99_ns": 908113.91, "total_ci_low_ns": 818367.4604166667, "total_ci_high_ns": 836869.4638888888, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.671221387738118}, {"serializer": "Json.Net (Helper)", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 386708.10256410256, "avg_time_deser_ns": 606571.4102564103, "avg_time_total_ns": 993279.5128205129, "median_size_bytes": 56520.0, "avg_ops_per_sec": 1006.7659577115445, "min_ops_per_sec": 867.9425422037061, "max_ops_per_sec": 1105.9756972900277, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 386708.10256410256, "ser_median_ns": 382171.5, "ser_std_ns": 26597.259033465085, "ser_mad_ns": 14160.5, "ser_cv": 0.06877864429814008, "ser_min_ns": 340722.0, "ser_max_ns": 471084.0, "ser_p5_ns": 347292.8, "ser_p25_ns": 369923.5, "ser_p50_ns": 382171.5, "ser_p75_ns": 396532.0, "ser_p95_ns": 434212.89999999997, "ser_p99_ns": 467347.96, "ser_ci_low_ns": 381021.73333333334, "ser_ci_high_ns": 392730.37147435895, "deser_mean_ns": 606571.4102564103, "deser_median_ns": 601109.5, "deser_std_ns": 38758.540944096676, "deser_mad_ns": 19698.5, "deser_cv": 0.06389773782399774, "deser_min_ns": 539573.0, "deser_max_ns": 709568.0, "deser_p5_ns": 550575.2, "deser_p25_ns": 582649.75, "deser_p50_ns": 601109.5, "deser_p75_ns": 625938.75, "deser_p95_ns": 688843.4, "deser_p99_ns": 704079.4400000001, "deser_ci_low_ns": 598036.3878205129, "deser_ci_high_ns": 615265.0522435898, "total_mean_ns": 993279.5128205129, "total_median_ns": 990361.0, "total_std_ns": 51984.192646267475, "total_mad_ns": 32342.0, "total_cv": 0.05233591549538091, "total_min_ns": 904179.0, "total_max_ns": 1152150.0, "total_p5_ns": 909642.1, "total_p25_ns": 960062.75, "total_p50_ns": 990361.0, "total_p75_ns": 1024201.0, "total_p95_ns": 1078709.0499999998, "total_p99_ns": 1126693.03, "total_ci_low_ns": 982078.0532051282, "total_ci_high_ns": 1004530.7548076923, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.596515989263544}, {"serializer": "ZeroFormatter", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.6.4", "avg_time_ser_ns": 39093.53333333333, "avg_time_deser_ns": 45057.17333333333, "avg_time_total_ns": 84150.70666666667, "median_size_bytes": 21943.0, "avg_ops_per_sec": 11883.441501699412, "min_ops_per_sec": 9937.789438117385, "max_ops_per_sec": 13560.241372296427, "runs": 75, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 24, "ser_mean_ns": 39093.53333333333, "ser_median_ns": 38538.0, "ser_std_ns": 4157.397393813838, "ser_mad_ns": 2146.0, "ser_cv": 0.10634488723149024, "ser_min_ns": 33518.0, "ser_max_ns": 53505.0, "ser_p5_ns": 34179.2, "ser_p25_ns": 36339.0, "ser_p50_ns": 38538.0, "ser_p75_ns": 40439.0, "ser_p95_ns": 47330.7, "ser_p99_ns": 53407.32, "ser_ci_low_ns": 38177.865000000005, "ser_ci_high_ns": 40025.72866666667, "deser_mean_ns": 45057.17333333333, "deser_median_ns": 44955.0, "deser_std_ns": 2525.877280692219, "deser_mad_ns": 1872.0, "deser_cv": 0.056059381754948505, "deser_min_ns": 39673.0, "deser_max_ns": 51581.0, "deser_p5_ns": 40928.2, "deser_p25_ns": 43159.5, "deser_p50_ns": 44955.0, "deser_p75_ns": 46865.0, "deser_p95_ns": 49096.799999999996, "deser_p99_ns": 50738.880000000005, "deser_ci_low_ns": 44518.55133333333, "deser_ci_high_ns": 45646.196, "total_mean_ns": 84150.70666666667, "total_median_ns": 83643.0, "total_std_ns": 5859.9481682361675, "total_mad_ns": 4024.0, "total_cv": 0.06963635126022512, "total_min_ns": 73745.0, "total_max_ns": 100626.0, "total_p5_ns": 76408.1, "total_p25_ns": 79871.0, "total_p50_ns": 83643.0, "total_p75_ns": 87894.0, "total_p95_ns": 95061.7, "total_p99_ns": 100113.92, "total_ci_low_ns": 82782.41266666666, "total_ci_high_ns": 85432.16500000001, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 0.7054681647940075, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.4654830097971407}, {"serializer": "fastJson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "2.4.0.4", "avg_time_ser_ns": 329320.81333333335, "avg_time_deser_ns": 764137.4, "avg_time_total_ns": 1093458.2133333334, "median_size_bytes": 57174.0, "avg_ops_per_sec": 914.5296892064742, "min_ops_per_sec": 712.2776002228004, "max_ops_per_sec": 1029.7855162726707, "runs": 75, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 24, "ser_mean_ns": 329320.81333333335, "ser_median_ns": 327705.0, "ser_std_ns": 20435.847389630122, "ser_mad_ns": 15378.0, "ser_cv": 0.06205452726410365, "ser_min_ns": 302075.0, "ser_max_ns": 397631.0, "ser_p5_ns": 306296.7, "ser_p25_ns": 312331.5, "ser_p50_ns": 327705.0, "ser_p75_ns": 342997.5, "ser_p95_ns": 371305.2, "ser_p99_ns": 386369.68000000005, "ser_ci_low_ns": 324737.8383333334, "ser_ci_high_ns": 333734.70866666664, "deser_mean_ns": 764137.4, "deser_median_ns": 751050.0, "deser_std_ns": 72200.37228735341, "deser_mad_ns": 35520.0, "deser_cv": 0.0944861124286724, "deser_min_ns": 667514.0, "deser_max_ns": 1047419.0, "deser_p5_ns": 689478.9, "deser_p25_ns": 719487.5, "deser_p50_ns": 751050.0, "deser_p75_ns": 791256.5, "deser_p95_ns": 856738.3999999999, "deser_p99_ns": 1034247.7400000001, "deser_ci_low_ns": 748986.0026666666, "deser_ci_high_ns": 780709.2069999999, "total_mean_ns": 1093458.2133333334, "total_median_ns": 1084259.0, "total_std_ns": 82292.40821316047, "total_mad_ns": 52287.0, "total_cv": 0.07525885050723395, "total_min_ns": 971076.0, "total_max_ns": 1403947.0, "total_p5_ns": 998729.5, "total_p25_ns": 1034082.0, "total_p50_ns": 1084259.0, "total_p75_ns": 1137894.5, "total_p95_ns": 1233631.3, "total_p99_ns": 1381834.32, "total_ci_low_ns": 1076287.392, "total_ci_high_ns": 1113161.757, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.16722565945068}, {"serializer": "MemoryPack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 37065.02247191011, "avg_time_deser_ns": 39691.52808988764, "avg_time_total_ns": 76756.55056179775, "median_size_bytes": 26944.0, "avg_ops_per_sec": 13028.204012306238, "min_ops_per_sec": 11348.419165210285, "max_ops_per_sec": 14652.658724925637, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 37065.02247191011, "ser_median_ns": 36602.0, "ser_std_ns": 2606.4895408886646, "ser_mad_ns": 1532.0, "ser_cv": 0.07032208176493092, "ser_min_ns": 32405.0, "ser_max_ns": 44167.0, "ser_p5_ns": 33618.4, "ser_p25_ns": 35326.0, "ser_p50_ns": 36602.0, "ser_p75_ns": 38380.0, "ser_p95_ns": 42293.2, "ser_p99_ns": 43683.0, "ser_ci_low_ns": 36544.64101123595, "ser_ci_high_ns": 37585.85140449438, "deser_mean_ns": 39691.52808988764, "deser_median_ns": 39270.0, "deser_std_ns": 2129.479503678858, "deser_mad_ns": 1521.0, "deser_cv": 0.05365073118012288, "deser_min_ns": 35334.0, "deser_max_ns": 44796.0, "deser_p5_ns": 36683.8, "deser_p25_ns": 38204.0, "deser_p50_ns": 39270.0, "deser_p75_ns": 41008.0, "deser_p95_ns": 43777.799999999996, "deser_p99_ns": 44645.520000000004, "deser_ci_low_ns": 39268.33089887641, "deser_ci_high_ns": 40117.11797752809, "total_mean_ns": 76756.55056179775, "total_median_ns": 76339.0, "total_std_ns": 4189.912168235522, "total_mad_ns": 2775.0, "total_cv": 0.05458703052141675, "total_min_ns": 68247.0, "total_max_ns": 88118.0, "total_p5_ns": 71027.8, "total_p25_ns": 73629.0, "total_p50_ns": 76339.0, "total_p75_ns": 79266.0, "total_p95_ns": 84118.59999999999, "total_p99_ns": 87166.72, "total_ci_low_ns": 75912.40140449439, "total_ci_high_ns": 77642.16432584269, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "System.Text.Json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "8.0.0.0", "avg_time_ser_ns": 152254.98765432098, "avg_time_deser_ns": 293713.7530864198, "avg_time_total_ns": 445968.74074074073, "median_size_bytes": 44614.0, "avg_ops_per_sec": 2242.3096254213465, "min_ops_per_sec": 1956.346093274669, "max_ops_per_sec": 2470.0994462037042, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 152254.98765432098, "ser_median_ns": 149749.0, "ser_std_ns": 14476.717126556894, "ser_mad_ns": 10498.0, "ser_cv": 0.09508205510761175, "ser_min_ns": 131400.0, "ser_max_ns": 185594.0, "ser_p5_ns": 133000.0, "ser_p25_ns": 140539.0, "ser_p50_ns": 149749.0, "ser_p75_ns": 161107.0, "ser_p95_ns": 177907.0, "ser_p99_ns": 184551.6, "ser_ci_low_ns": 149107.48209876544, "ser_ci_high_ns": 155519.11203703703, "deser_mean_ns": 293713.7530864198, "deser_median_ns": 293788.0, "deser_std_ns": 15582.189252100348, "deser_mad_ns": 12112.0, "deser_cv": 0.053052296967229795, "deser_min_ns": 269777.0, "deser_max_ns": 335888.0, "deser_p5_ns": 271344.0, "deser_p25_ns": 278564.0, "deser_p50_ns": 293788.0, "deser_p75_ns": 305122.0, "deser_p95_ns": 319443.0, "deser_p99_ns": 334210.4, "deser_ci_low_ns": 290306.35648148146, "deser_ci_high_ns": 297184.60771604936, "total_mean_ns": 445968.74074074073, "total_median_ns": 443437.0, "total_std_ns": 25679.26369990862, "total_mad_ns": 18836.0, "total_cv": 0.05758086016803808, "total_min_ns": 404842.0, "total_max_ns": 511157.0, "total_p5_ns": 407012.0, "total_p25_ns": 427374.0, "total_p50_ns": 443437.0, "total_p75_ns": 463799.0, "total_p95_ns": 487603.0, "total_p99_ns": 508006.60000000003, "total_ci_low_ns": 440731.73055555555, "total_ci_high_ns": 451746.8030864197, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.44510492996123}, {"serializer": "MS DataContract Json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 256958.2857142857, "avg_time_deser_ns": 1075692.619047619, "avg_time_total_ns": 1332650.9047619049, "median_size_bytes": 44614.0, "avg_ops_per_sec": 750.384062642919, "min_ops_per_sec": 613.9459039985069, "max_ops_per_sec": 823.9098642608499, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 256958.2857142857, "ser_median_ns": 255393.0, "ser_std_ns": 12819.927860605096, "ser_mad_ns": 6757.5, "ser_cv": 0.04989108572610767, "ser_min_ns": 229570.0, "ser_max_ns": 287570.0, "ser_p5_ns": 235727.2, "ser_p25_ns": 249152.25, "ser_p50_ns": 255393.0, "ser_p75_ns": 262707.0, "ser_p95_ns": 281696.15, "ser_p99_ns": 286039.48, "ser_ci_low_ns": 254174.70535714287, "ser_ci_high_ns": 259690.92232142857, "deser_mean_ns": 1075692.619047619, "deser_median_ns": 1065131.5, "deser_std_ns": 85801.81266514253, "deser_mad_ns": 43217.5, "deser_cv": 0.07976424783978577, "deser_min_ns": 964648.0, "deser_max_ns": 1378583.0, "deser_p5_ns": 981887.15, "deser_p25_ns": 1019160.5, "deser_p50_ns": 1065131.5, "deser_p75_ns": 1097572.5, "deser_p95_ns": 1253262.7999999998, "deser_p99_ns": 1344622.72, "deser_ci_low_ns": 1058808.5276785714, "deser_ci_high_ns": 1095268.7369047618, "total_mean_ns": 1332650.9047619049, "total_median_ns": 1323443.5, "total_std_ns": 87059.97093717169, "total_mad_ns": 49103.0, "total_cv": 0.06532841468540936, "total_min_ns": 1213725.0, "total_max_ns": 1628808.0, "total_p5_ns": 1232231.6, "total_p25_ns": 1267721.75, "total_p50_ns": 1323443.5, "total_p75_ns": 1361710.75, "total_p95_ns": 1506183.0999999999, "total_p99_ns": 1592463.1300000001, "total_ci_low_ns": 1315393.0770833334, "total_ci_high_ns": 1351438.9788690477, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.58966169908349}, {"serializer": "Json.Net", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 414681.625, "avg_time_deser_ns": 589181.2125, "avg_time_total_ns": 1003862.8375, "median_size_bytes": 59629.0, "avg_ops_per_sec": 996.1520265959641, "min_ops_per_sec": 852.0972242932919, "max_ops_per_sec": 1091.2015329199135, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 414681.625, "ser_median_ns": 410020.0, "ser_std_ns": 25493.81584698284, "ser_mad_ns": 17024.5, "ser_cv": 0.061478045589752964, "ser_min_ns": 377848.0, "ser_max_ns": 504786.0, "ser_p5_ns": 384512.8, "ser_p25_ns": 393886.0, "ser_p50_ns": 410020.0, "ser_p75_ns": 432745.0, "ser_p95_ns": 451696.89999999997, "ser_p99_ns": 498376.7299999999, "ser_ci_low_ns": 409660.3978125, "ser_ci_high_ns": 420160.67406249995, "deser_mean_ns": 589181.2125, "deser_median_ns": 588572.5, "deser_std_ns": 34215.073585676524, "deser_mad_ns": 24390.0, "deser_cv": 0.058072241374594956, "deser_min_ns": 529936.0, "deser_max_ns": 681693.0, "deser_p5_ns": 544927.05, "deser_p25_ns": 561699.25, "deser_p50_ns": 588572.5, "deser_p75_ns": 604574.5, "deser_p95_ns": 651626.15, "deser_p99_ns": 677908.11, "deser_ci_low_ns": 581711.6234375, "deser_ci_high_ns": 596773.1281249999, "total_mean_ns": 1003862.8375, "total_median_ns": 996483.5, "total_std_ns": 53362.29453520404, "total_mad_ns": 36701.0, "total_cv": 0.05315695784505425, "total_min_ns": 916421.0, "total_max_ns": 1173575.0, "total_p5_ns": 935230.35, "total_p25_ns": 962666.75, "total_p50_ns": 996483.5, "total_p75_ns": 1037180.25, "total_p95_ns": 1105005.45, "total_p99_ns": 1159572.25, "total_ci_low_ns": 992120.0478124999, "total_ci_high_ns": 1015684.4662499999, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.06085087063555}, {"serializer": "Hyperion", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "0.12.2", "avg_time_ser_ns": 121367.02380952382, "avg_time_deser_ns": 139329.07142857142, "avg_time_total_ns": 260696.09523809524, "median_size_bytes": 22828.0, "avg_ops_per_sec": 3835.8840744687573, "min_ops_per_sec": 3354.0614329892064, "max_ops_per_sec": 4221.742819870899, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 121367.02380952382, "ser_median_ns": 118747.5, "ser_std_ns": 10276.80536125703, "ser_mad_ns": 6245.5, "ser_cv": 0.0846754335624616, "ser_min_ns": 107227.0, "ser_max_ns": 149607.0, "ser_p5_ns": 108705.7, "ser_p25_ns": 112964.5, "ser_p50_ns": 118747.5, "ser_p75_ns": 128320.0, "ser_p95_ns": 141315.2, "ser_p99_ns": 147983.52, "ser_ci_low_ns": 119256.7806547619, "ser_ci_high_ns": 123572.20327380951, "deser_mean_ns": 139329.07142857142, "deser_median_ns": 139933.5, "deser_std_ns": 7517.302106387099, "deser_mad_ns": 6359.0, "deser_cv": 0.05395357931629457, "deser_min_ns": 126358.0, "deser_max_ns": 158599.0, "deser_p5_ns": 129670.5, "deser_p25_ns": 132951.25, "deser_p50_ns": 139933.5, "deser_p75_ns": 144862.25, "deser_p95_ns": 152021.65, "deser_p99_ns": 157450.28, "deser_ci_low_ns": 137692.26071428572, "deser_ci_high_ns": 141000.65982142856, "total_mean_ns": 260696.09523809524, "total_median_ns": 261686.5, "total_std_ns": 14919.596970087918, "total_mad_ns": 10081.5, "total_cv": 0.05722984441505257, "total_min_ns": 236869.0, "total_max_ns": 298146.0, "total_p5_ns": 238774.9, "total_p25_ns": 247845.0, "total_p50_ns": 261686.5, "total_p75_ns": 268543.5, "total_p95_ns": 289336.7, "total_p99_ns": 293583.49, "total_ci_low_ns": 257673.09613095238, "total_ci_high_ns": 263985.5800595238, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.92493894423171}, {"serializer": "SpanJson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "4.2.1", "avg_time_ser_ns": 60669.5243902439, "avg_time_deser_ns": 677248.2804878049, "avg_time_total_ns": 737917.8048780488, "median_size_bytes": 44614.0, "avg_ops_per_sec": 1355.1644822627147, "min_ops_per_sec": 358.4923246793286, "max_ops_per_sec": 6637.549947563355, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 60669.5243902439, "ser_median_ns": 60234.5, "ser_std_ns": 3881.152286022671, "ser_mad_ns": 2030.0, "ser_cv": 0.06397202425814283, "ser_min_ns": 54897.0, "ser_max_ns": 74262.0, "ser_p5_ns": 55559.3, "ser_p25_ns": 58033.25, "ser_p50_ns": 60234.5, "ser_p75_ns": 62041.5, "ser_p95_ns": 68228.65, "ser_p99_ns": 72850.17, "ser_ci_low_ns": 59868.093902439025, "ser_ci_high_ns": 61547.16737804878, "deser_mean_ns": 677248.2804878049, "deser_median_ns": 106560.5, "deser_std_ns": 977037.679959579, "deser_mad_ns": 6456.5, "deser_cv": 1.4426580444853154, "deser_min_ns": 95757.0, "deser_max_ns": 2725300.0, "deser_p5_ns": 98714.95, "deser_p25_ns": 101739.75, "deser_p50_ns": 106560.5, "deser_p75_ns": 1724414.75, "deser_p95_ns": 2381101.25, "deser_p99_ns": 2714838.04, "deser_ci_low_ns": 477026.8015243903, "deser_ci_high_ns": 883101.4076219511, "total_mean_ns": 737917.8048780488, "total_median_ns": 168165.5, "total_std_ns": 977940.7147556801, "total_mad_ns": 10278.5, "total_cv": 1.3252705223955104, "total_min_ns": 150658.0, "total_max_ns": 2789460.0, "total_p5_ns": 155953.6, "total_p25_ns": 160195.75, "total_p50_ns": 168165.5, "total_p75_ns": 1782558.25, "total_p95_ns": 2448781.5, "total_p99_ns": 2776837.77, "total_ci_low_ns": 543527.8286585367, "total_ci_high_ns": 945315.6926829267, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 0.9722028279248786}, {"serializer": "MS Binary", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 679307.3235294118, "avg_time_deser_ns": 688093.1470588235, "avg_time_total_ns": 1367400.4705882352, "median_size_bytes": 48568.0, "avg_ops_per_sec": 731.3146525171335, "min_ops_per_sec": 643.7603846597051, "max_ops_per_sec": 799.0839301824388, "runs": 68, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 31, "ser_mean_ns": 679307.3235294118, "ser_median_ns": 680516.5, "ser_std_ns": 36790.002405521045, "ser_mad_ns": 23517.5, "ser_cv": 0.05415811243484726, "ser_min_ns": 618873.0, "ser_max_ns": 810800.0, "ser_p5_ns": 628348.95, "ser_p25_ns": 652423.0, "ser_p50_ns": 680516.5, "ser_p75_ns": 697763.0, "ser_p95_ns": 732922.1, "ser_p99_ns": 791122.7699999999, "ser_ci_low_ns": 670825.5338235294, "ser_ci_high_ns": 687958.0977941176, "deser_mean_ns": 688093.1470588235, "deser_median_ns": 692401.5, "deser_std_ns": 35201.208267197144, "deser_mad_ns": 22644.0, "deser_cv": 0.05115762076349799, "deser_min_ns": 620821.0, "deser_max_ns": 781707.0, "deser_p5_ns": 632977.65, "deser_p25_ns": 666203.0, "deser_p50_ns": 692401.5, "deser_p75_ns": 711367.25, "deser_p95_ns": 741740.0, "deser_p99_ns": 762207.99, "deser_ci_low_ns": 679612.3496323529, "deser_ci_high_ns": 696265.9786764706, "total_mean_ns": 1367400.4705882352, "total_median_ns": 1372168.0, "total_std_ns": 59856.841226097844, "total_mad_ns": 42217.5, "total_cv": 0.04377418504203697, "total_min_ns": 1251433.0, "total_max_ns": 1553373.0, "total_p5_ns": 1288783.05, "total_p25_ns": 1311683.75, "total_p50_ns": 1372168.0, "total_p75_ns": 1409781.0, "total_p95_ns": 1451394.15, "total_p99_ns": 1511437.7, "total_ci_low_ns": 1353462.8474264706, "total_ci_high_ns": 1381118.517647059, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 32.53255387406168}, {"serializer": "FsPickler", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 269206.0232558139, "avg_time_deser_ns": 123836.40697674418, "avg_time_total_ns": 393042.43023255817, "median_size_bytes": 26104.0, "avg_ops_per_sec": 2544.2545717222256, "min_ops_per_sec": 2341.103455702811, "max_ops_per_sec": 2835.6405995678483, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 269206.0232558139, "ser_median_ns": 269452.0, "ser_std_ns": 13077.613427692328, "ser_mad_ns": 9113.0, "ser_cv": 0.04857845775339611, "ser_min_ns": 238929.0, "ser_max_ns": 299341.0, "ser_p5_ns": 246899.5, "ser_p25_ns": 260253.25, "ser_p50_ns": 269452.0, "ser_p75_ns": 277036.75, "ser_p95_ns": 292716.25, "ser_p99_ns": 295649.45, "ser_ci_low_ns": 266498.1726744186, "ser_ci_high_ns": 271964.0136627907, "deser_mean_ns": 123836.40697674418, "deser_median_ns": 124352.5, "deser_std_ns": 6014.7236724516915, "deser_mad_ns": 4169.5, "deser_cv": 0.04856991428684801, "deser_min_ns": 110613.0, "deser_max_ns": 141824.0, "deser_p5_ns": 114275.25, "deser_p25_ns": 118901.5, "deser_p50_ns": 124352.5, "deser_p75_ns": 128100.0, "deser_p95_ns": 133378.0, "deser_p99_ns": 135857.85000000003, "deser_ci_low_ns": 122555.2590116279, "deser_ci_high_ns": 125090.16976744185, "total_mean_ns": 393042.43023255817, "total_median_ns": 394564.5, "total_std_ns": 16779.566349679913, "total_mad_ns": 10551.0, "total_cv": 0.042691488396689535, "total_min_ns": 352654.0, "total_max_ns": 427149.0, "total_p5_ns": 367666.75, "total_p25_ns": 381196.5, "total_p50_ns": 394564.5, "total_p75_ns": 403549.0, "total_p95_ns": 422737.75, "total_p99_ns": 426485.15, "total_ci_low_ns": 389334.6055232558, "total_ci_high_ns": 396448.135755814, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.95012995391248}, {"serializer": "GroBuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.9.2", "avg_time_ser_ns": 37577.1125, "avg_time_deser_ns": 64277.15, "avg_time_total_ns": 101854.2625, "median_size_bytes": 61400.0, "avg_ops_per_sec": 9817.949445169268, "min_ops_per_sec": 7418.012417752788, "max_ops_per_sec": 11946.43219802406, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 37577.1125, "ser_median_ns": 36030.0, "ser_std_ns": 4297.727515479562, "ser_mad_ns": 2008.0, "ser_cv": 0.11437088242156875, "ser_min_ns": 31503.0, "ser_max_ns": 49901.0, "ser_p5_ns": 32379.15, "ser_p25_ns": 34473.25, "ser_p50_ns": 36030.0, "ser_p75_ns": 41182.75, "ser_p95_ns": 45258.95, "ser_p99_ns": 48094.26999999998, "ser_ci_low_ns": 36712.0696875, "ser_ci_high_ns": 38522.098125, "deser_mean_ns": 64277.15, "deser_median_ns": 61899.0, "deser_std_ns": 8890.573305402424, "deser_mad_ns": 3743.5, "deser_cv": 0.1383162337689587, "deser_min_ns": 52204.0, "deser_max_ns": 93322.0, "deser_p5_ns": 55509.2, "deser_p25_ns": 58549.25, "deser_p50_ns": 61899.0, "deser_p75_ns": 66352.0, "deser_p95_ns": 83093.99999999999, "deser_p99_ns": 90101.16999999997, "deser_ci_low_ns": 62372.5346875, "deser_ci_high_ns": 66323.9753125, "total_mean_ns": 101854.2625, "total_median_ns": 98183.0, "total_std_ns": 10805.260416901436, "total_mad_ns": 6546.0, "total_cv": 0.10608550051502691, "total_min_ns": 83707.0, "total_max_ns": 134807.0, "total_p5_ns": 89841.65, "total_p25_ns": 94048.0, "total_p50_ns": 98183.0, "total_p75_ns": 109874.75, "total_p95_ns": 122283.54999999999, "total_p99_ns": 130138.09999999996, "total_ci_low_ns": 99624.18875, "total_ci_high_ns": 104322.53093749999, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 0.9974719101123596, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.1114212114364577}, {"serializer": "MS XmlSerializer", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 439124.2702702703, "avg_time_deser_ns": 721610.1486486486, "avg_time_total_ns": 1160734.4189189188, "median_size_bytes": 132694.0, "avg_ops_per_sec": 861.5235179563098, "min_ops_per_sec": 759.3025957518538, "max_ops_per_sec": 931.9595007679346, "runs": 74, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 25, "ser_mean_ns": 439124.2702702703, "ser_median_ns": 438051.5, "ser_std_ns": 25241.333710012233, "ser_mad_ns": 17498.0, "ser_cv": 0.057481071803379954, "ser_min_ns": 399732.0, "ser_max_ns": 512537.0, "ser_p5_ns": 404047.7, "ser_p25_ns": 419767.75, "ser_p50_ns": 438051.5, "ser_p75_ns": 452557.5, "ser_p95_ns": 483892.89999999997, "ser_p99_ns": 495867.4499999999, "ser_ci_low_ns": 433682.5351351351, "ser_ci_high_ns": 444689.96317567566, "deser_mean_ns": 721610.1486486486, "deser_median_ns": 717387.5, "deser_std_ns": 42326.91348535562, "deser_mad_ns": 28362.0, "deser_cv": 0.05865620593698794, "deser_min_ns": 657944.0, "deser_max_ns": 829729.0, "deser_p5_ns": 665071.0, "deser_p25_ns": 689444.5, "deser_p50_ns": 717387.5, "deser_p75_ns": 745581.75, "deser_p95_ns": 804850.2, "deser_p99_ns": 822962.63, "deser_ci_low_ns": 712565.4712837838, "deser_ci_high_ns": 730982.2841216216, "total_mean_ns": 1160734.4189189188, "total_median_ns": 1157711.0, "total_std_ns": 58522.956664605634, "total_mad_ns": 43436.0, "total_cv": 0.050418903506895714, "total_min_ns": 1073008.0, "total_max_ns": 1316998.0, "total_p5_ns": 1083247.2, "total_p25_ns": 1114247.0, "total_p50_ns": 1157711.0, "total_p75_ns": 1195559.75, "total_p95_ns": 1264596.25, "total_p99_ns": 1299610.8599999999, "total_ci_low_ns": 1147925.7260135135, "total_ci_high_ns": 1174222.1949324326, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.29461946831682}, {"serializer": "MS Bond Fast", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 61536.54347826087, "avg_time_deser_ns": 67573.78260869565, "avg_time_total_ns": 129110.32608695653, "median_size_bytes": 28598.0, "avg_ops_per_sec": 7745.31387463536, "min_ops_per_sec": 6994.278680039727, "max_ops_per_sec": 8685.003604276495, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 61536.54347826087, "ser_median_ns": 61564.0, "ser_std_ns": 3404.4906395189846, "ser_mad_ns": 2559.5, "ser_cv": 0.05532469727880792, "ser_min_ns": 55134.0, "ser_max_ns": 70537.0, "ser_p5_ns": 56293.3, "ser_p25_ns": 58970.75, "ser_p50_ns": 61564.0, "ser_p75_ns": 64108.75, "ser_p95_ns": 66955.35, "ser_p99_ns": 69629.73000000001, "ser_ci_low_ns": 60861.58641304348, "ser_ci_high_ns": 62236.28369565217, "deser_mean_ns": 67573.78260869565, "deser_median_ns": 66990.5, "deser_std_ns": 3182.3505336864855, "deser_mad_ns": 2058.5, "deser_cv": 0.04709445602763946, "deser_min_ns": 60007.0, "deser_max_ns": 75397.0, "deser_p5_ns": 62044.95, "deser_p25_ns": 65600.0, "deser_p50_ns": 66990.5, "deser_p75_ns": 69973.75, "deser_p95_ns": 73031.85, "deser_p99_ns": 74331.39, "deser_ci_low_ns": 66958.90923913043, "deser_ci_high_ns": 68195.78641304348, "total_mean_ns": 129110.32608695653, "total_median_ns": 129469.0, "total_std_ns": 6156.839656174218, "total_mad_ns": 4573.0, "total_cv": 0.04768665561287137, "total_min_ns": 115141.0, "total_max_ns": 142974.0, "total_p5_ns": 118651.75, "total_p25_ns": 124500.0, "total_p50_ns": 129469.0, "total_p75_ns": 133185.5, "total_p95_ns": 139126.3, "total_p99_ns": 142684.62, "total_ci_low_ns": 127851.03532608695, "total_ci_high_ns": 130341.6894021739, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.869785356957022}, {"serializer": "Apache.Avro", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.12.1", "avg_time_ser_ns": 374491.1142857143, "avg_time_deser_ns": 371127.9142857143, "avg_time_total_ns": 745619.0285714286, "median_size_bytes": 11967.0, "avg_ops_per_sec": 1341.1674885979687, "min_ops_per_sec": 1132.45153107447, "max_ops_per_sec": 1508.6984006288255, "runs": 70, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 29, "ser_mean_ns": 374491.1142857143, "ser_median_ns": 366940.0, "ser_std_ns": 39455.650856847795, "ser_mad_ns": 31714.0, "ser_cv": 0.10535804282593872, "ser_min_ns": 310742.0, "ser_max_ns": 477471.0, "ser_p5_ns": 321667.2, "ser_p25_ns": 340080.25, "ser_p50_ns": 366940.0, "ser_p75_ns": 402618.5, "ser_p95_ns": 444601.29999999993, "ser_p99_ns": 477157.74, "ser_ci_low_ns": 365430.4335714286, "ser_ci_high_ns": 384095.0035714286, "deser_mean_ns": 371127.9142857143, "deser_median_ns": 371322.0, "deser_std_ns": 22487.036727304807, "deser_mad_ns": 14368.0, "deser_cv": 0.06059106809732742, "deser_min_ns": 338452.0, "deser_max_ns": 443645.0, "deser_p5_ns": 341755.05, "deser_p25_ns": 351585.5, "deser_p50_ns": 371322.0, "deser_p75_ns": 384013.5, "deser_p95_ns": 411358.0, "deser_p99_ns": 426885.5900000001, "deser_ci_low_ns": 365999.5653571429, "deser_ci_high_ns": 376506.8775, "total_mean_ns": 745619.0285714286, "total_median_ns": 749322.5, "total_std_ns": 50863.41727307382, "total_mad_ns": 39969.0, "total_cv": 0.06821636160563896, "total_min_ns": 662823.0, "total_max_ns": 883040.0, "total_p5_ns": 667828.95, "total_p25_ns": 702869.5, "total_p50_ns": 749322.5, "total_p75_ns": 780268.5, "total_p95_ns": 831406.5499999999, "total_p99_ns": 856693.04, "total_ci_low_ns": 733722.3339285714, "total_ci_high_ns": 757358.4746428571, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.656330886957292}, {"serializer": "Migrant", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "0.13.0.0", "avg_time_ser_ns": 84311.15463917526, "avg_time_deser_ns": 81507.62886597938, "avg_time_total_ns": 165818.78350515463, "median_size_bytes": 49158.0, "avg_ops_per_sec": 6030.679871493051, "min_ops_per_sec": 4782.903987985345, "max_ops_per_sec": 7501.312729727702, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 84311.15463917526, "ser_median_ns": 80162.0, "ser_std_ns": 9882.49088491464, "ser_mad_ns": 4248.0, "ser_cv": 0.11721451244747548, "ser_min_ns": 70402.0, "ser_max_ns": 107001.0, "ser_p5_ns": 74341.0, "ser_p25_ns": 77267.0, "ser_p50_ns": 80162.0, "ser_p75_ns": 89190.0, "ser_p95_ns": 103702.0, "ser_p99_ns": 105744.35999999999, "ser_ci_low_ns": 82454.53608247422, "ser_ci_high_ns": 86221.33891752578, "deser_mean_ns": 81507.62886597938, "deser_median_ns": 73674.0, "deser_std_ns": 16459.966482043375, "deser_mad_ns": 5043.0, "deser_cv": 0.20194387581937906, "deser_min_ns": 60992.0, "deser_max_ns": 121727.0, "deser_p5_ns": 66810.4, "deser_p25_ns": 70243.0, "deser_p50_ns": 73674.0, "deser_p75_ns": 92066.0, "deser_p95_ns": 116701.59999999998, "deser_p99_ns": 120839.95999999999, "deser_ci_low_ns": 78388.52448453607, "deser_ci_high_ns": 84747.80025773196, "total_mean_ns": 165818.78350515463, "total_median_ns": 161138.0, "total_std_ns": 19641.118413307286, "total_mad_ns": 13453.0, "total_cv": 0.11844929746874379, "total_min_ns": 133310.0, "total_max_ns": 209078.0, "total_p5_ns": 142339.4, "total_p25_ns": 150377.0, "total_p50_ns": 161138.0, "total_p75_ns": 179684.0, "total_p95_ns": 200160.6, "total_p99_ns": 208890.8, "total_ci_low_ns": 162085.67757731958, "total_ci_high_ns": 169811.34252577322, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.125619429802149}, {"serializer": "SharpSerializer", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 1497207.717948718, "avg_time_deser_ns": 5827886.358974359, "avg_time_total_ns": 7325094.076923077, "median_size_bytes": 294114.0, "avg_ops_per_sec": 136.5170180066892, "min_ops_per_sec": 118.03106247077255, "max_ops_per_sec": 158.79957683088767, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 1497207.717948718, "ser_median_ns": 1384843.5, "ser_std_ns": 322171.0928066097, "ser_mad_ns": 57620.0, "ser_cv": 0.21518129311276007, "ser_min_ns": 1252094.0, "ser_max_ns": 2488024.0, "ser_p5_ns": 1269841.05, "ser_p25_ns": 1333214.0, "ser_p50_ns": 1384843.5, "ser_p75_ns": 1443184.25, "ser_p95_ns": 2338620.4, "ser_p99_ns": 2456544.0900000003, "ser_ci_low_ns": 1428716.5240384615, "ser_ci_high_ns": 1571010.3419871794, "deser_mean_ns": 5827886.358974359, "deser_median_ns": 5756943.0, "deser_std_ns": 357269.10716978513, "deser_mad_ns": 161278.5, "deser_cv": 0.061303375728942726, "deser_min_ns": 5003642.0, "deser_max_ns": 6839045.0, "deser_p5_ns": 5366059.2, "deser_p25_ns": 5626909.75, "deser_p50_ns": 5756943.0, "deser_p75_ns": 5938666.25, "deser_p95_ns": 6538965.95, "deser_p99_ns": 6770442.62, "deser_ci_low_ns": 5753506.585897435, "deser_ci_high_ns": 5902194.209294871, "total_mean_ns": 7325094.076923077, "total_median_ns": 7197762.0, "total_std_ns": 493133.7826495501, "total_mad_ns": 268938.0, "total_cv": 0.06732115348567538, "total_min_ns": 6297246.0, "total_max_ns": 8472346.0, "total_p5_ns": 6689104.45, "total_p25_ns": 7012723.5, "total_p50_ns": 7197762.0, "total_p75_ns": 7676279.75, "total_p95_ns": 8211446.05, "total_p99_ns": 8458602.27, "total_ci_low_ns": 7217649.281730769, "total_ci_high_ns": 7434881.55576923, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.417598494689376}, {"serializer": "Utf8Json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.3.7", "avg_time_ser_ns": 58394.5, "avg_time_deser_ns": 118649.1282051282, "avg_time_total_ns": 177043.62820512822, "median_size_bytes": 44614.0, "avg_ops_per_sec": 5648.325275176631, "min_ops_per_sec": 4987.207811962317, "max_ops_per_sec": 6172.953820132471, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 58394.5, "ser_median_ns": 57204.5, "ser_std_ns": 4779.866913188296, "ser_mad_ns": 2889.5, "ser_cv": 0.08185474510764364, "ser_min_ns": 50759.0, "ser_max_ns": 72445.0, "ser_p5_ns": 52862.2, "ser_p25_ns": 55000.0, "ser_p50_ns": 57204.5, "ser_p75_ns": 61064.25, "ser_p95_ns": 68344.04999999999, "ser_p99_ns": 71480.96, "ser_ci_low_ns": 57403.50512820513, "ser_ci_high_ns": 59456.465064102566, "deser_mean_ns": 118649.1282051282, "deser_median_ns": 118349.0, "deser_std_ns": 7077.973131178702, "deser_mad_ns": 5352.0, "deser_cv": 0.05965465771431417, "deser_min_ns": 107407.0, "deser_max_ns": 138987.0, "deser_p5_ns": 109671.05, "deser_p25_ns": 112850.5, "deser_p50_ns": 118349.0, "deser_p75_ns": 123314.25, "deser_p95_ns": 130912.65, "deser_p99_ns": 138746.76, "deser_ci_low_ns": 117122.92435897436, "deser_ci_high_ns": 120294.08653846153, "total_mean_ns": 177043.62820512822, "total_median_ns": 175688.0, "total_std_ns": 10262.434040927568, "total_mad_ns": 8414.0, "total_cv": 0.05796556557820423, "total_min_ns": 161997.0, "total_max_ns": 200513.0, "total_p5_ns": 164523.1, "total_p25_ns": 168340.5, "total_p50_ns": 175688.0, "total_p75_ns": 184993.0, "total_p95_ns": 195911.65, "total_p99_ns": 198986.86000000002, "total_ci_low_ns": 174718.49647435898, "total_ci_high_ns": 179377.38685897435, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.051019781962127}, {"serializer": "FlatSharp", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "7.5.1", "avg_time_ser_ns": 70741.35, "avg_time_deser_ns": 58045.7125, "avg_time_total_ns": 128787.0625, "median_size_bytes": 38521.0, "avg_ops_per_sec": 7764.755097197748, "min_ops_per_sec": 6379.381837899908, "max_ops_per_sec": 9073.751451800232, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 70741.35, "ser_median_ns": 67028.5, "ser_std_ns": 9542.779336801521, "ser_mad_ns": 4066.0, "ser_cv": 0.1348967659904924, "ser_min_ns": 58401.0, "ser_max_ns": 95206.0, "ser_p5_ns": 60568.65, "ser_p25_ns": 63742.0, "ser_p50_ns": 67028.5, "ser_p75_ns": 76923.0, "ser_p95_ns": 88688.44999999998, "ser_p99_ns": 94364.65, "ser_ci_low_ns": 68651.92875, "ser_ci_high_ns": 73029.3753125, "deser_mean_ns": 58045.7125, "deser_median_ns": 57480.5, "deser_std_ns": 4022.01858191375, "deser_mad_ns": 2145.0, "deser_cv": 0.06929053686633185, "deser_min_ns": 51210.0, "deser_max_ns": 72242.0, "deser_p5_ns": 52398.85, "deser_p25_ns": 55310.5, "deser_p50_ns": 57480.5, "deser_p75_ns": 59534.25, "deser_p95_ns": 67087.45, "deser_p99_ns": 69819.85999999999, "deser_ci_low_ns": 57183.68, "deser_ci_high_ns": 58922.064375, "total_mean_ns": 128787.0625, "total_median_ns": 125183.0, "total_std_ns": 11803.5811164773, "total_mad_ns": 6757.5, "total_cv": 0.09165191663935421, "total_min_ns": 110208.0, "total_max_ns": 156755.0, "total_p5_ns": 114017.15, "total_p25_ns": 120199.25, "total_p50_ns": 125183.0, "total_p75_ns": 136649.25, "total_p95_ns": 152717.44999999998, "total_p99_ns": 155844.13, "total_ci_low_ns": 126328.5696875, "total_ci_high_ns": 131386.03187500002, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.9746242521267945}, {"serializer": "MS DataContract", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 198573.13043478262, "avg_time_deser_ns": 588175.1195652174, "avg_time_total_ns": 786748.25, "median_size_bytes": 84885.0, "avg_ops_per_sec": 1271.0546226191161, "min_ops_per_sec": 1089.323432109551, "max_ops_per_sec": 1389.409917607992, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 198573.13043478262, "ser_median_ns": 196793.5, "ser_std_ns": 13543.992919467288, "ser_mad_ns": 9608.0, "ser_cv": 0.06820657402042389, "ser_min_ns": 174303.0, "ser_max_ns": 229913.0, "ser_p5_ns": 177054.15, "ser_p25_ns": 188428.0, "ser_p50_ns": 196793.5, "ser_p75_ns": 207857.25, "ser_p95_ns": 221676.6, "ser_p99_ns": 227837.29, "ser_ci_low_ns": 195866.82119565218, "ser_ci_high_ns": 201281.7858695652, "deser_mean_ns": 588175.1195652174, "deser_median_ns": 578823.0, "deser_std_ns": 38677.10720140615, "deser_mad_ns": 23543.0, "deser_cv": 0.06575780905182882, "deser_min_ns": 538278.0, "deser_max_ns": 693336.0, "deser_p5_ns": 542770.65, "deser_p25_ns": 559390.25, "deser_p50_ns": 578823.0, "deser_p75_ns": 607548.0, "deser_p95_ns": 677251.45, "deser_p99_ns": 692240.36, "deser_ci_low_ns": 580569.3307065218, "deser_ci_high_ns": 595988.3866847826, "total_mean_ns": 786748.25, "total_median_ns": 778069.0, "total_std_ns": 43651.10980164004, "total_mad_ns": 30541.0, "total_cv": 0.05548294489582918, "total_min_ns": 719730.0, "total_max_ns": 918001.0, "total_p5_ns": 731108.55, "total_p25_ns": 751987.75, "total_p50_ns": 778069.0, "total_p75_ns": 814095.5, "total_p95_ns": 869926.0, "total_p99_ns": 895747.8600000001, "total_ci_low_ns": 777821.416576087, "total_ci_high_ns": 795575.9929347826, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.615782310645315}, {"serializer": "LightProto", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.3.4", "avg_time_ser_ns": 79465.83783783784, "avg_time_deser_ns": 78797.13513513513, "avg_time_total_ns": 158262.97297297296, "median_size_bytes": 16265.0, "avg_ops_per_sec": 6318.597339699748, "min_ops_per_sec": 5322.942948697476, "max_ops_per_sec": 7278.497135911377, "runs": 74, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 25, "ser_mean_ns": 79465.83783783784, "ser_median_ns": 78495.0, "ser_std_ns": 5132.524984164153, "ser_mad_ns": 2657.5, "ser_cv": 0.06458781690111734, "ser_min_ns": 72041.0, "ser_max_ns": 96961.0, "ser_p5_ns": 73246.05, "ser_p25_ns": 76322.25, "ser_p50_ns": 78495.0, "ser_p75_ns": 81355.5, "ser_p95_ns": 90044.69999999997, "ser_p99_ns": 96765.36, "ser_ci_low_ns": 78365.71081081081, "ser_ci_high_ns": 80682.38614864866, "deser_mean_ns": 78797.13513513513, "deser_median_ns": 75419.5, "deser_std_ns": 9484.635071906654, "deser_mad_ns": 3212.5, "deser_cv": 0.12036776534630021, "deser_min_ns": 65350.0, "deser_max_ns": 105450.0, "deser_p5_ns": 69099.45, "deser_p25_ns": 73039.75, "deser_p50_ns": 75419.5, "deser_p75_ns": 80466.25, "deser_p95_ns": 100191.49999999999, "deser_p99_ns": 104437.48999999999, "deser_ci_low_ns": 76755.96554054055, "deser_ci_high_ns": 81001.4902027027, "total_mean_ns": 158262.97297297296, "total_median_ns": 155531.5, "total_std_ns": 10512.718634832283, "total_mad_ns": 5809.0, "total_cv": 0.06642563599906323, "total_min_ns": 137391.0, "total_max_ns": 187866.0, "total_p5_ns": 146222.75, "total_p25_ns": 150868.25, "total_p50_ns": 155531.5, "total_p75_ns": 162719.25, "total_p95_ns": 181308.65, "total_p99_ns": 185581.83, "total_ci_low_ns": 156013.4195945946, "total_ci_high_ns": 160462.1554054054, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.499113311972533}, {"serializer": "NetJSON", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.0.0", "avg_time_ser_ns": 109377.87804878049, "avg_time_deser_ns": 237672.19512195123, "avg_time_total_ns": 347050.0731707317, "median_size_bytes": 44383.0, "avg_ops_per_sec": 2881.428581367994, "min_ops_per_sec": 2443.040510497745, "max_ops_per_sec": 3257.6897767179426, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 109377.87804878049, "ser_median_ns": 106867.0, "ser_std_ns": 10479.42988906167, "ser_mad_ns": 5407.5, "ser_cv": 0.09580940932487317, "ser_min_ns": 93199.0, "ser_max_ns": 138949.0, "ser_p5_ns": 97095.85, "ser_p25_ns": 102306.75, "ser_p50_ns": 106867.0, "ser_p75_ns": 113476.5, "ser_p95_ns": 135042.45, "ser_p99_ns": 137614.12, "ser_ci_low_ns": 107054.24451219513, "ser_ci_high_ns": 111730.7481707317, "deser_mean_ns": 237672.19512195123, "deser_median_ns": 239089.5, "deser_std_ns": 13998.854259500717, "deser_mad_ns": 10066.0, "deser_cv": 0.05889983997630774, "deser_min_ns": 210108.0, "deser_max_ns": 275055.0, "deser_p5_ns": 217084.8, "deser_p25_ns": 224122.25, "deser_p50_ns": 239089.5, "deser_p75_ns": 246400.5, "deser_p95_ns": 259351.05000000002, "deser_p99_ns": 274379.46, "deser_ci_low_ns": 234651.84085365853, "deser_ci_high_ns": 240699.32042682925, "total_mean_ns": 347050.0731707317, "total_median_ns": 347710.5, "total_std_ns": 19673.581729534, "total_mad_ns": 11673.0, "total_cv": 0.05668802069335843, "total_min_ns": 306966.0, "total_max_ns": 409326.0, "total_p5_ns": 315272.95, "total_p25_ns": 336786.0, "total_p50_ns": 347710.5, "total_p75_ns": 359524.0, "total_p95_ns": 377552.15, "total_p99_ns": 394516.76999999996, "total_ci_low_ns": 342870.9579268293, "total_ci_high_ns": 351341.9670731707, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.28739417720732}, {"serializer": "MS Bond Compact", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 59695.848837209305, "avg_time_deser_ns": 64597.651162790695, "avg_time_total_ns": 124293.5, "median_size_bytes": 15926.0, "avg_ops_per_sec": 8045.473013472145, "min_ops_per_sec": 7006.235549639179, "max_ops_per_sec": 9038.567567811853, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 59695.848837209305, "ser_median_ns": 59326.5, "ser_std_ns": 3669.718586798278, "ser_mad_ns": 2340.0, "ser_cv": 0.06147359754956509, "ser_min_ns": 53035.0, "ser_max_ns": 69142.0, "ser_p5_ns": 54142.5, "ser_p25_ns": 57021.5, "ser_p50_ns": 59326.5, "ser_p75_ns": 61757.75, "ser_p95_ns": 66332.5, "ser_p99_ns": 68676.2, "ser_ci_low_ns": 58968.49534883721, "ser_ci_high_ns": 60519.49941860465, "deser_mean_ns": 64597.651162790695, "deser_median_ns": 64148.5, "deser_std_ns": 3816.3088288136464, "deser_mad_ns": 2487.0, "deser_cv": 0.05907813612597578, "deser_min_ns": 57378.0, "deser_max_ns": 74766.0, "deser_p5_ns": 59430.25, "deser_p25_ns": 61926.75, "deser_p50_ns": 64148.5, "deser_p75_ns": 66712.5, "deser_p95_ns": 72941.25, "deser_p99_ns": 74230.5, "deser_ci_low_ns": 63813.95755813954, "deser_ci_high_ns": 65364.98343023256, "total_mean_ns": 124293.5, "total_median_ns": 124325.5, "total_std_ns": 6999.22567271888, "total_mad_ns": 5319.0, "total_cv": 0.05631208126506116, "total_min_ns": 110637.0, "total_max_ns": 142730.0, "total_p5_ns": 114498.75, "total_p25_ns": 118640.5, "total_p50_ns": 124325.5, "total_p75_ns": 128703.0, "total_p95_ns": 137066.5, "total_p99_ns": 142035.55000000002, "total_ci_low_ns": 122893.0625, "total_ci_high_ns": 125777.2386627907, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.239229635787764}, {"serializer": "ProtoBuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "2.4.9.1", "avg_time_ser_ns": 59767.693333333336, "avg_time_deser_ns": 124713.34666666666, "avg_time_total_ns": 184481.04, "median_size_bytes": 16265.0, "avg_ops_per_sec": 5420.611245469995, "min_ops_per_sec": 4927.880469331336, "max_ops_per_sec": 5941.382322011039, "runs": 75, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 24, "ser_mean_ns": 59767.693333333336, "ser_median_ns": 59589.0, "ser_std_ns": 3230.753104293317, "ser_mad_ns": 2016.0, "ser_cv": 0.05405517469571605, "ser_min_ns": 54769.0, "ser_max_ns": 69908.0, "ser_p5_ns": 55006.3, "ser_p25_ns": 57633.0, "ser_p50_ns": 59589.0, "ser_p75_ns": 61593.0, "ser_p95_ns": 66552.8, "ser_p99_ns": 67915.18000000001, "ser_ci_low_ns": 59080.609000000004, "ser_ci_high_ns": 60507.761999999995, "deser_mean_ns": 124713.34666666666, "deser_median_ns": 122805.0, "deser_std_ns": 7867.79484799204, "deser_mad_ns": 4873.0, "deser_cv": 0.06308703164723059, "deser_min_ns": 112258.0, "deser_max_ns": 143095.0, "deser_p5_ns": 115006.0, "deser_p25_ns": 118907.5, "deser_p50_ns": 122805.0, "deser_p75_ns": 129247.5, "deser_p95_ns": 140351.9, "deser_p99_ns": 141917.66, "deser_ci_low_ns": 123054.21833333334, "deser_ci_high_ns": 126482.46633333334, "total_mean_ns": 184481.04, "total_median_ns": 183213.0, "total_std_ns": 9419.386698116212, "total_mad_ns": 7183.0, "total_cv": 0.051058833461239225, "total_min_ns": 168311.0, "total_max_ns": 202927.0, "total_p5_ns": 170795.6, "total_p25_ns": 176410.0, "total_p50_ns": 183213.0, "total_p75_ns": 191955.5, "total_p95_ns": 200942.2, "total_p99_ns": 202409.0, "total_ci_low_ns": 182473.335, "total_ci_high_ns": 186586.402, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.154075261745481}, {"serializer": "YamlDotNet", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "17.1.0", "avg_time_ser_ns": 8406197.1, "avg_time_deser_ns": 6750599.075, "avg_time_total_ns": 15156796.175, "median_size_bytes": 48613.0, "avg_ops_per_sec": 65.97700387694235, "min_ops_per_sec": 54.912321770390825, "max_ops_per_sec": 71.95300087545216, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 8406197.1, "ser_median_ns": 8205826.5, "ser_std_ns": 679646.5241375425, "ser_mad_ns": 255951.5, "ser_cv": 0.08085065292337036, "ser_min_ns": 7560277.0, "ser_max_ns": 11735397.0, "ser_p5_ns": 7867668.15, "ser_p25_ns": 7996877.0, "ser_p50_ns": 8205826.5, "ser_p75_ns": 8500498.5, "ser_p95_ns": 9891612.2, "ser_p99_ns": 10920792.449999994, "ser_ci_low_ns": 8273873.01, "ser_ci_high_ns": 8555703.3325, "deser_mean_ns": 6750599.075, "deser_median_ns": 6677631.5, "deser_std_ns": 311693.27697763644, "deser_mad_ns": 202226.5, "deser_cv": 0.046172683863266825, "deser_min_ns": 5960967.0, "deser_max_ns": 7429793.0, "deser_p5_ns": 6367935.8, "deser_p25_ns": 6542894.75, "deser_p50_ns": 6677631.5, "deser_p75_ns": 7008525.5, "deser_p95_ns": 7251910.3, "deser_p99_ns": 7412591.54, "deser_ci_low_ns": 6680062.6284375, "deser_ci_high_ns": 6818125.086875, "total_mean_ns": 15156796.175, "total_median_ns": 15062940.5, "total_std_ns": 710534.2276221655, "total_mad_ns": 293017.5, "total_cv": 0.046878919490527846, "total_min_ns": 13897961.0, "total_max_ns": 18210849.0, "total_p5_ns": 14264055.35, "total_p25_ns": 14792555.5, "total_p50_ns": 15062940.5, "total_p75_ns": 15385362.25, "total_p95_ns": 16712176.8, "total_p99_ns": 17474766.499999993, "total_ci_low_ns": 15013950.35375, "total_ci_high_ns": 15324212.465625001, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.71821697995264}, {"serializer": "Jil", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "2.17.0", "avg_time_ser_ns": 12261.113636363636, "avg_time_deser_ns": 10533.545454545454, "avg_time_total_ns": 22794.659090909092, "median_size_bytes": 663.0, "avg_ops_per_sec": 43869.925670387296, "min_ops_per_sec": 34137.84863277916, "max_ops_per_sec": 57971.014492753624, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 12261.113636363636, "ser_median_ns": 11881.5, "ser_std_ns": 1570.8920551735293, "ser_mad_ns": 805.0, "ser_cv": 0.1281198512437423, "ser_min_ns": 9374.0, "ser_max_ns": 17152.0, "ser_p5_ns": 10383.1, "ser_p25_ns": 11234.75, "ser_p50_ns": 11881.5, "ser_p75_ns": 12897.5, "ser_p95_ns": 15191.499999999998, "ser_p99_ns": 16837.059999999998, "ser_ci_low_ns": 11948.75909090909, "ser_ci_high_ns": 12594.98096590909, "deser_mean_ns": 10533.545454545454, "deser_median_ns": 10402.0, "deser_std_ns": 1032.1513288884667, "deser_mad_ns": 675.5, "deser_cv": 0.09798707693837984, "deser_min_ns": 7876.0, "deser_max_ns": 14154.0, "deser_p5_ns": 9220.8, "deser_p25_ns": 9822.5, "deser_p50_ns": 10402.0, "deser_p75_ns": 11106.75, "deser_p95_ns": 12201.5, "deser_p99_ns": 12717.629999999992, "deser_ci_low_ns": 10316.541477272727, "deser_ci_high_ns": 10749.03125, "total_mean_ns": 22794.659090909092, "total_median_ns": 22223.5, "total_std_ns": 2372.033643644852, "total_mad_ns": 1386.0, "total_cv": 0.10406093963435761, "total_min_ns": 17250.0, "total_max_ns": 29293.0, "total_p5_ns": 19766.5, "total_p25_ns": 21190.5, "total_p50_ns": 22223.5, "total_p75_ns": 24739.25, "total_p95_ns": 27125.649999999994, "total_p99_ns": 29096.379999999997, "total_ci_low_ns": 22322.32869318182, "total_ci_high_ns": 23302.62556818182, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.072113574455726}, {"serializer": "MS XmlSerializer", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 17043.488372093023, "avg_time_deser_ns": 21011.523255813954, "avg_time_total_ns": 38055.01162790698, "median_size_bytes": 1571.0, "avg_ops_per_sec": 26277.747850342726, "min_ops_per_sec": 22477.971587843913, "max_ops_per_sec": 29990.403071017274, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 17043.488372093023, "ser_median_ns": 16714.5, "ser_std_ns": 1382.7758420203058, "ser_mad_ns": 939.0, "ser_cv": 0.08113220790436661, "ser_min_ns": 14585.0, "ser_max_ns": 20829.0, "ser_p5_ns": 14979.5, "ser_p25_ns": 16141.0, "ser_p50_ns": 16714.5, "ser_p75_ns": 17923.75, "ser_p95_ns": 19607.5, "ser_p99_ns": 20384.450000000004, "ser_ci_low_ns": 16752.086046511628, "ser_ci_high_ns": 17323.149999999998, "deser_mean_ns": 21011.523255813954, "deser_median_ns": 20908.0, "deser_std_ns": 1130.5991407655779, "deser_mad_ns": 744.5, "deser_cv": 0.05380852815860162, "deser_min_ns": 18759.0, "deser_max_ns": 24182.0, "deser_p5_ns": 19319.0, "deser_p25_ns": 20181.5, "deser_p50_ns": 20908.0, "deser_p75_ns": 21652.0, "deser_p95_ns": 23107.25, "deser_p99_ns": 23971.2, "deser_ci_low_ns": 20781.99796511628, "deser_ci_high_ns": 21258.450290697674, "total_mean_ns": 38055.01162790698, "total_median_ns": 37680.5, "total_std_ns": 2331.394752928137, "total_mad_ns": 1667.0, "total_cv": 0.06126380345705767, "total_min_ns": 33344.0, "total_max_ns": 44488.0, "total_p5_ns": 34692.25, "total_p25_ns": 36472.0, "total_p50_ns": 37680.5, "total_p75_ns": 39463.5, "total_p95_ns": 41840.25, "total_p99_ns": 43873.450000000004, "total_ci_low_ns": 37545.210755813954, "total_ci_high_ns": 38564.72529069767, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.31270507519022}, {"serializer": "Json.Net (Helper)", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 11885.303797468354, "avg_time_deser_ns": 12385.556962025317, "avg_time_total_ns": 24270.86075949367, "median_size_bytes": 673.0, "avg_ops_per_sec": 41201.67018010867, "min_ops_per_sec": 33028.3713710077, "max_ops_per_sec": 54954.113315381655, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 11885.303797468354, "ser_median_ns": 11892.0, "ser_std_ns": 1071.9367010879141, "ser_mad_ns": 492.0, "ser_cv": 0.09019009689228503, "ser_min_ns": 9261.0, "ser_max_ns": 14702.0, "ser_p5_ns": 9913.4, "ser_p25_ns": 11419.5, "ser_p50_ns": 11892.0, "ser_p75_ns": 12420.5, "ser_p95_ns": 13497.9, "ser_p99_ns": 14539.76, "ser_ci_low_ns": 11648.171835443038, "ser_ci_high_ns": 12108.317088607595, "deser_mean_ns": 12385.556962025317, "deser_median_ns": 12704.0, "deser_std_ns": 1512.94388482746, "deser_mad_ns": 832.0, "deser_cv": 0.1221538837103745, "deser_min_ns": 8936.0, "deser_max_ns": 15724.0, "deser_p5_ns": 9338.3, "deser_p25_ns": 11590.0, "deser_p50_ns": 12704.0, "deser_p75_ns": 13464.5, "deser_p95_ns": 14238.899999999998, "deser_p99_ns": 15607.78, "deser_ci_low_ns": 12055.56170886076, "deser_ci_high_ns": 12698.384493670885, "total_mean_ns": 24270.86075949367, "total_median_ns": 24605.0, "total_std_ns": 2253.612676514785, "total_mad_ns": 1190.0, "total_cv": 0.0928526062114741, "total_min_ns": 18197.0, "total_max_ns": 30277.0, "total_p5_ns": 19775.2, "total_p25_ns": 22783.5, "total_p50_ns": 24605.0, "total_p75_ns": 25634.0, "total_p95_ns": 27315.8, "total_p99_ns": 29607.76, "total_ci_low_ns": 23748.450316455695, "total_ci_high_ns": 24767.990189873417, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.822869437314843}, {"serializer": "SharpYaml", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "3.13.0", "avg_time_ser_ns": 62667.221052631576, "avg_time_deser_ns": 68775.88421052632, "avg_time_total_ns": 131443.1052631579, "median_size_bytes": 784.0, "avg_ops_per_sec": 7607.854348829732, "min_ops_per_sec": 6490.429861169705, "max_ops_per_sec": 8770.545001666404, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 62667.221052631576, "ser_median_ns": 61567.0, "ser_std_ns": 7563.892432287205, "ser_mad_ns": 5216.0, "ser_cv": 0.12069934337657336, "ser_min_ns": 50565.0, "ser_max_ns": 81838.0, "ser_p5_ns": 53248.6, "ser_p25_ns": 56431.5, "ser_p50_ns": 61567.0, "ser_p75_ns": 67182.5, "ser_p95_ns": 77768.59999999999, "ser_p99_ns": 81250.5, "ser_ci_low_ns": 61141.34210526316, "ser_ci_high_ns": 64263.841315789476, "deser_mean_ns": 68775.88421052632, "deser_median_ns": 68199.0, "deser_std_ns": 2610.6316055826774, "deser_mad_ns": 1547.0, "deser_cv": 0.03795853205742012, "deser_min_ns": 62735.0, "deser_max_ns": 76747.0, "deser_p5_ns": 65272.1, "deser_p25_ns": 66892.0, "deser_p50_ns": 68199.0, "deser_p75_ns": 70169.5, "deser_p95_ns": 73638.7, "deser_p99_ns": 74645.16, "deser_ci_low_ns": 68266.74710526316, "deser_ci_high_ns": 69281.76842105263, "total_mean_ns": 131443.1052631579, "total_median_ns": 129376.0, "total_std_ns": 9338.016828356764, "total_mad_ns": 4869.0, "total_cv": 0.07104227193705923, "total_min_ns": 114018.0, "total_max_ns": 154073.0, "total_p5_ns": 119269.6, "total_p25_ns": 125372.5, "total_p50_ns": 129376.0, "total_p75_ns": 136682.0, "total_p95_ns": 151207.0, "total_p99_ns": 153955.5, "total_ci_low_ns": 129573.88552631579, "total_ci_high_ns": 133352.42236842107, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.884219021235623}, {"serializer": "NetJSON", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.0.0", "avg_time_ser_ns": 7060.978021978022, "avg_time_deser_ns": 7176.153846153846, "avg_time_total_ns": 14237.131868131868, "median_size_bytes": 663.0, "avg_ops_per_sec": 70238.8661748917, "min_ops_per_sec": 57620.28233938346, "max_ops_per_sec": 82054.64839583162, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 7060.978021978022, "ser_median_ns": 6926.0, "ser_std_ns": 695.3919434873796, "ser_mad_ns": 403.0, "ser_cv": 0.09848379945708662, "ser_min_ns": 5742.0, "ser_max_ns": 9202.0, "ser_p5_ns": 6232.0, "ser_p25_ns": 6538.0, "ser_p50_ns": 6926.0, "ser_p75_ns": 7487.0, "ser_p95_ns": 8262.5, "ser_p99_ns": 9181.3, "ser_ci_low_ns": 6924.52445054945, "ser_ci_high_ns": 7202.312637362637, "deser_mean_ns": 7176.153846153846, "deser_median_ns": 7204.0, "deser_std_ns": 509.5577150404701, "deser_mad_ns": 311.0, "deser_cv": 0.0710070778810817, "deser_min_ns": 5990.0, "deser_max_ns": 8528.0, "deser_p5_ns": 6369.0, "deser_p25_ns": 6850.0, "deser_p50_ns": 7204.0, "deser_p75_ns": 7501.0, "deser_p95_ns": 8019.0, "deser_p99_ns": 8292.199999999999, "deser_ci_low_ns": 7068.647252747252, "deser_ci_high_ns": 7275.555769230769, "total_mean_ns": 14237.131868131868, "total_median_ns": 13915.0, "total_std_ns": 1083.6158729897604, "total_mad_ns": 695.0, "total_cv": 0.07611195028791622, "total_min_ns": 12187.0, "total_max_ns": 17355.0, "total_p5_ns": 12741.5, "total_p25_ns": 13487.0, "total_p50_ns": 13915.0, "total_p75_ns": 14946.0, "total_p95_ns": 16090.5, "total_p99_ns": 16964.399999999998, "total_ci_low_ns": 14026.753296703297, "total_ci_high_ns": 14464.682417582417, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.164824153593157}, {"serializer": "BinaryPack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.0.3", "avg_time_ser_ns": 2103.034090909091, "avg_time_deser_ns": 1511.3295454545455, "avg_time_total_ns": 3614.3636363636365, "median_size_bytes": 408.0, "avg_ops_per_sec": 276673.87695558125, "min_ops_per_sec": 191094.97420217848, "max_ops_per_sec": 361271.67630057805, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 2103.034090909091, "ser_median_ns": 2008.0, "ser_std_ns": 454.47788532528045, "ser_mad_ns": 308.0, "ser_cv": 0.21610580983440958, "ser_min_ns": 1462.0, "ser_max_ns": 3257.0, "ser_p5_ns": 1551.45, "ser_p25_ns": 1766.5, "ser_p50_ns": 2008.0, "ser_p75_ns": 2361.25, "ser_p95_ns": 3015.099999999999, "ser_p99_ns": 3225.68, "ser_ci_low_ns": 2009.4051136363637, "ser_ci_high_ns": 2197.625852272727, "deser_mean_ns": 1511.3295454545455, "deser_median_ns": 1456.0, "deser_std_ns": 220.74277544267636, "deser_mad_ns": 136.0, "deser_cv": 0.14605866477405896, "deser_min_ns": 1129.0, "deser_max_ns": 2054.0, "deser_p5_ns": 1240.2, "deser_p25_ns": 1355.0, "deser_p50_ns": 1456.0, "deser_p75_ns": 1624.75, "deser_p95_ns": 1988.6999999999998, "deser_p99_ns": 2051.39, "deser_ci_low_ns": 1466.3178977272726, "deser_ci_high_ns": 1556.5801136363636, "total_mean_ns": 3614.3636363636365, "total_median_ns": 3542.0, "total_std_ns": 568.7940697958276, "total_mad_ns": 382.0, "total_cv": 0.1573704604797551, "total_min_ns": 2768.0, "total_max_ns": 5233.0, "total_p5_ns": 2846.1, "total_p25_ns": 3184.0, "total_p50_ns": 3542.0, "total_p75_ns": 3957.25, "total_p95_ns": 4719.95, "total_p99_ns": 4983.309999999999, "total_ci_low_ns": 3492.4735795454544, "total_ci_high_ns": 3736.5857954545454, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "MS Bond Compact", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 2508.3010752688174, "avg_time_deser_ns": 2053.3225806451615, "avg_time_total_ns": 4561.623655913979, "median_size_bytes": 392.0, "avg_ops_per_sec": 219220.1890008038, "min_ops_per_sec": 160616.76839061998, "max_ops_per_sec": 337154.4167228591, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 2508.3010752688174, "ser_median_ns": 2468.0, "ser_std_ns": 456.33301591258413, "ser_mad_ns": 253.0, "ser_cv": 0.1819291234261734, "ser_min_ns": 1411.0, "ser_max_ns": 3655.0, "ser_p5_ns": 1894.4, "ser_p25_ns": 2218.0, "ser_p50_ns": 2468.0, "ser_p75_ns": 2733.0, "ser_p95_ns": 3434.7999999999997, "ser_p99_ns": 3505.0399999999995, "ser_ci_low_ns": 2415.563440860215, "ser_ci_high_ns": 2600.487365591398, "deser_mean_ns": 2053.3225806451615, "deser_median_ns": 2026.0, "deser_std_ns": 303.35254140335894, "deser_mad_ns": 241.0, "deser_cv": 0.14773740096309879, "deser_min_ns": 1555.0, "deser_max_ns": 2806.0, "deser_p5_ns": 1652.6, "deser_p25_ns": 1802.0, "deser_p50_ns": 2026.0, "deser_p75_ns": 2278.0, "deser_p95_ns": 2585.7999999999997, "deser_p99_ns": 2762.7599999999998, "deser_ci_low_ns": 1992.7809139784947, "deser_ci_high_ns": 2111.5443548387098, "total_mean_ns": 4561.623655913979, "total_median_ns": 4501.0, "total_std_ns": 611.7424492520719, "total_mad_ns": 388.0, "total_cv": 0.13410629534485383, "total_min_ns": 2966.0, "total_max_ns": 6226.0, "total_p5_ns": 3718.4, "total_p25_ns": 4156.0, "total_p50_ns": 4501.0, "total_p75_ns": 4931.0, "total_p95_ns": 5605.4, "total_p99_ns": 5942.639999999999, "total_ci_low_ns": 4440.9674731182795, "total_ci_high_ns": 4690.491666666666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.7410801564027371, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.595387600212677}, {"serializer": "MS DataContract Json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 13625.164835164835, "avg_time_deser_ns": 24159.31868131868, "avg_time_total_ns": 37784.48351648352, "median_size_bytes": 884.0, "avg_ops_per_sec": 26465.890411436987, "min_ops_per_sec": 21950.523519985953, "max_ops_per_sec": 30282.84174186906, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 13625.164835164835, "ser_median_ns": 13119.0, "ser_std_ns": 1667.995352136718, "ser_mad_ns": 895.0, "ser_cv": 0.12242019618227533, "ser_min_ns": 11454.0, "ser_max_ns": 18476.0, "ser_p5_ns": 11743.5, "ser_p25_ns": 12329.0, "ser_p50_ns": 13119.0, "ser_p75_ns": 14375.0, "ser_p95_ns": 17045.5, "ser_p99_ns": 18160.999999999996, "ser_ci_low_ns": 13303.837912087913, "ser_ci_high_ns": 13997.012912087912, "deser_mean_ns": 24159.31868131868, "deser_median_ns": 23712.0, "deser_std_ns": 1334.9089846554325, "deser_mad_ns": 727.0, "deser_cv": 0.055254413514883506, "deser_min_ns": 21336.0, "deser_max_ns": 27483.0, "deser_p5_ns": 22483.5, "deser_p25_ns": 23210.5, "deser_p50_ns": 23712.0, "deser_p75_ns": 24958.5, "deser_p95_ns": 26796.0, "deser_p99_ns": 27077.1, "deser_ci_low_ns": 23897.424725274726, "deser_ci_high_ns": 24435.538736263738, "total_mean_ns": 37784.48351648352, "total_median_ns": 36960.0, "total_std_ns": 2866.5400916344247, "total_mad_ns": 1527.0, "total_cv": 0.07586553592518722, "total_min_ns": 33022.0, "total_max_ns": 45557.0, "total_p5_ns": 34449.5, "total_p25_ns": 35617.5, "total_p50_ns": 36960.0, "total_p75_ns": 39632.5, "total_p95_ns": 43611.0, "total_p99_ns": 45395.0, "total_ci_low_ns": 37203.00604395604, "total_ci_high_ns": 38382.766758241756, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.33788521087804}, {"serializer": "Migrant", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "0.13.0.0", "avg_time_ser_ns": 14699.21875, "avg_time_deser_ns": 39999.020833333336, "avg_time_total_ns": 54698.239583333336, "median_size_bytes": 5472.0, "avg_ops_per_sec": 18282.12402478675, "min_ops_per_sec": 13139.223209123877, "max_ops_per_sec": 24498.39535510424, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 14699.21875, "ser_median_ns": 14112.0, "ser_std_ns": 2285.150149175392, "ser_mad_ns": 1412.5, "ser_cv": 0.15546065325243166, "ser_min_ns": 10492.0, "ser_max_ns": 20627.0, "ser_p5_ns": 11885.0, "ser_p25_ns": 12876.75, "ser_p50_ns": 14112.0, "ser_p75_ns": 16211.5, "ser_p95_ns": 19197.75, "ser_p99_ns": 20034.199999999997, "ser_ci_low_ns": 14251.310156250001, "ser_ci_high_ns": 15188.502604166666, "deser_mean_ns": 39999.020833333336, "deser_median_ns": 38903.5, "deser_std_ns": 5702.672446418464, "deser_mad_ns": 3827.5, "deser_cv": 0.14257030116262545, "deser_min_ns": 29329.0, "deser_max_ns": 55481.0, "deser_p5_ns": 32803.0, "deser_p25_ns": 35741.0, "deser_p50_ns": 38903.5, "deser_p75_ns": 43523.25, "deser_p95_ns": 50539.75, "deser_p99_ns": 53015.74999999999, "deser_ci_low_ns": 38872.95807291666, "deser_ci_high_ns": 41134.105729166666, "total_mean_ns": 54698.239583333336, "total_median_ns": 52947.5, "total_std_ns": 7665.40898863513, "total_mad_ns": 5310.5, "total_cv": 0.14013995783094263, "total_min_ns": 40819.0, "total_max_ns": 76108.0, "total_p5_ns": 45151.75, "total_p25_ns": 48658.75, "total_p50_ns": 52947.5, "total_p75_ns": 60781.75, "total_p95_ns": 68992.0, "total_p99_ns": 72864.7, "total_ci_low_ns": 53193.015625, "total_ci_high_ns": 56179.34869791666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.16293002973267}, {"serializer": "FsPicklerJson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 20320.183908045976, "avg_time_deser_ns": 22098.344827586207, "avg_time_total_ns": 42418.528735632186, "median_size_bytes": 1340.0, "avg_ops_per_sec": 23574.603594395423, "min_ops_per_sec": 18135.654697134567, "max_ops_per_sec": 30750.30750307503, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 20320.183908045976, "ser_median_ns": 19636.0, "ser_std_ns": 3200.344209426199, "ser_mad_ns": 1525.0, "ser_cv": 0.15749582897027775, "ser_min_ns": 13526.0, "ser_max_ns": 29882.0, "ser_p5_ns": 16442.5, "ser_p25_ns": 18250.0, "ser_p50_ns": 19636.0, "ser_p75_ns": 22124.0, "ser_p95_ns": 26394.0, "ser_p99_ns": 29106.28, "ser_ci_low_ns": 19667.641666666666, "ser_ci_high_ns": 21006.234770114945, "deser_mean_ns": 22098.344827586207, "deser_median_ns": 21992.0, "deser_std_ns": 1607.8896817096986, "deser_mad_ns": 868.0, "deser_cv": 0.07276063860233137, "deser_min_ns": 18012.0, "deser_max_ns": 26046.0, "deser_p5_ns": 19668.8, "deser_p25_ns": 21056.5, "deser_p50_ns": 21992.0, "deser_p75_ns": 22843.0, "deser_p95_ns": 25042.5, "deser_p99_ns": 25679.64, "deser_ci_low_ns": 21731.0316091954, "deser_ci_high_ns": 22440.327298850574, "total_mean_ns": 42418.528735632186, "total_median_ns": 41705.0, "total_std_ns": 4503.509530275354, "total_mad_ns": 2585.0, "total_cv": 0.1061684519598234, "total_min_ns": 32520.0, "total_max_ns": 55140.0, "total_p5_ns": 36785.0, "total_p25_ns": 39317.5, "total_p50_ns": 41705.0, "total_p75_ns": 44830.5, "total_p95_ns": 51331.2, "total_p99_ns": 54675.6, "total_ci_low_ns": 41470.136781609195, "total_ci_high_ns": 43367.12729885057, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.070778883616237}, {"serializer": "GroBuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.9.2", "avg_time_ser_ns": 2094.211111111111, "avg_time_deser_ns": 2531.8555555555554, "avg_time_total_ns": 4626.066666666667, "median_size_bytes": 492.0, "avg_ops_per_sec": 216166.36163191192, "min_ops_per_sec": 130975.76948264572, "max_ops_per_sec": 466200.4662004662, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 2094.211111111111, "ser_median_ns": 1866.0, "ser_std_ns": 669.9881852797719, "ser_mad_ns": 350.0, "ser_cv": 0.3199238996131106, "ser_min_ns": 661.0, "ser_max_ns": 3984.0, "ser_p5_ns": 1465.4, "ser_p25_ns": 1618.0, "ser_p50_ns": 1866.0, "ser_p75_ns": 2433.25, "ser_p95_ns": 3514.649999999999, "ser_p99_ns": 3879.87, "ser_ci_low_ns": 1965.105, "ser_ci_high_ns": 2234.4761111111106, "deser_mean_ns": 2531.8555555555554, "deser_median_ns": 2454.0, "deser_std_ns": 535.6440114397443, "deser_mad_ns": 324.0, "deser_cv": 0.2115618366396933, "deser_min_ns": 1128.0, "deser_max_ns": 3984.0, "deser_p5_ns": 1856.95, "deser_p25_ns": 2180.5, "deser_p50_ns": 2454.0, "deser_p75_ns": 2844.75, "deser_p95_ns": 3487.85, "deser_p99_ns": 3750.8199999999997, "deser_ci_low_ns": 2419.5019444444442, "deser_ci_high_ns": 2639.9219444444443, "total_mean_ns": 4626.066666666667, "total_median_ns": 4337.0, "total_std_ns": 1149.2169957718108, "total_mad_ns": 497.5, "total_cv": 0.24842205670154865, "total_min_ns": 2145.0, "total_max_ns": 7635.0, "total_p5_ns": 3368.2, "total_p25_ns": 3893.5, "total_p50_ns": 4337.0, "total_p75_ns": 5283.5, "total_p95_ns": 6788.749999999999, "total_p99_ns": 7582.49, "total_ci_low_ns": 4394.481944444445, "total_ci_high_ns": 4863.918611111111, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.602020202020202, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.1072318641616354}, {"serializer": "ExtendedXmlSerializer", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "3.10.0.0", "avg_time_ser_ns": 18656.887640449437, "avg_time_deser_ns": 22486.16853932584, "avg_time_total_ns": 41143.05617977528, "median_size_bytes": 1019.0, "avg_ops_per_sec": 24305.43797306848, "min_ops_per_sec": 16505.190882532555, "max_ops_per_sec": 34545.8942204719, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 18656.887640449437, "ser_median_ns": 17741.0, "ser_std_ns": 3665.2083577081517, "ser_mad_ns": 2158.0, "ser_cv": 0.19645336501688115, "ser_min_ns": 13325.0, "ser_max_ns": 29286.0, "ser_p5_ns": 14667.2, "ser_p25_ns": 15691.0, "ser_p50_ns": 17741.0, "ser_p75_ns": 20342.0, "ser_p95_ns": 26484.399999999994, "ser_p99_ns": 28248.480000000007, "ser_ci_low_ns": 17886.655898876405, "ser_ci_high_ns": 19451.825842696628, "deser_mean_ns": 22486.16853932584, "deser_median_ns": 21773.0, "deser_std_ns": 3575.8927595902383, "deser_mad_ns": 2099.0, "deser_cv": 0.15902632559817356, "deser_min_ns": 15622.0, "deser_max_ns": 32063.0, "deser_p5_ns": 17807.4, "deser_p25_ns": 19968.0, "deser_p50_ns": 21773.0, "deser_p75_ns": 24516.0, "deser_p95_ns": 30351.19999999999, "deser_p99_ns": 31392.440000000002, "deser_ci_low_ns": 21741.17191011236, "deser_ci_high_ns": 23219.541573033704, "total_mean_ns": 41143.05617977528, "total_median_ns": 39693.0, "total_std_ns": 7162.79734327999, "total_mad_ns": 4430.0, "total_cv": 0.1740949265407515, "total_min_ns": 28947.0, "total_max_ns": 60587.0, "total_p5_ns": 32944.4, "total_p25_ns": 35726.0, "total_p50_ns": 39693.0, "total_p75_ns": 45045.0, "total_p95_ns": 57333.799999999996, "total_p99_ns": 59173.72000000001, "total_ci_low_ns": 39746.67471910112, "total_ci_high_ns": 42679.78230337079, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.334001316758988}, {"serializer": "Ceras", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "4.1.7", "avg_time_ser_ns": 6802.309523809524, "avg_time_deser_ns": 14026.511904761905, "avg_time_total_ns": 20828.821428571428, "median_size_bytes": 452.0, "avg_ops_per_sec": 48010.39768041193, "min_ops_per_sec": 36627.35330745, "max_ops_per_sec": 59715.753015645525, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 6802.309523809524, "ser_median_ns": 6655.0, "ser_std_ns": 1052.3682869957977, "ser_mad_ns": 611.5, "ser_cv": 0.15470749799201078, "ser_min_ns": 4936.0, "ser_max_ns": 10317.0, "ser_p5_ns": 5375.4, "ser_p25_ns": 6051.25, "ser_p50_ns": 6655.0, "ser_p75_ns": 7274.0, "ser_p95_ns": 8577.65, "ser_p99_ns": 10142.7, "ser_ci_low_ns": 6587.144047619048, "ser_ci_high_ns": 7012.928571428572, "deser_mean_ns": 14026.511904761905, "deser_median_ns": 13775.5, "deser_std_ns": 1382.2061420546781, "deser_mad_ns": 964.0, "deser_cv": 0.09854239966712099, "deser_min_ns": 11221.0, "deser_max_ns": 18321.0, "deser_p5_ns": 12197.85, "deser_p25_ns": 13094.5, "deser_p50_ns": 13775.5, "deser_p75_ns": 14853.5, "deser_p95_ns": 16487.0, "deser_p99_ns": 17957.46, "deser_ci_low_ns": 13742.822619047618, "deser_ci_high_ns": 14312.788095238095, "total_mean_ns": 20828.821428571428, "total_median_ns": 20303.5, "total_std_ns": 2241.503159380148, "total_mad_ns": 1254.5, "total_cv": 0.10761545808374068, "total_min_ns": 16746.0, "total_max_ns": 27302.0, "total_p5_ns": 18003.4, "total_p25_ns": 19365.75, "total_p50_ns": 20303.5, "total_p75_ns": 22103.75, "total_p95_ns": 25356.75, "total_p99_ns": 27241.41, "total_ci_low_ns": 20385.88898809524, "total_ci_high_ns": 21320.406547619048, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.590912345348105}, {"serializer": "MemoryPack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 5148.483516483517, "avg_time_deser_ns": 3456.054945054945, "avg_time_total_ns": 8604.538461538461, "median_size_bytes": 424.0, "avg_ops_per_sec": 116217.73840281069, "min_ops_per_sec": 69881.20195667366, "max_ops_per_sec": 171291.538198013, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 5148.483516483517, "ser_median_ns": 4735.0, "ser_std_ns": 1394.4798182885845, "ser_mad_ns": 831.0, "ser_cv": 0.27085253625149663, "ser_min_ns": 3317.0, "ser_max_ns": 8983.0, "ser_p5_ns": 3537.0, "ser_p25_ns": 4094.5, "ser_p50_ns": 4735.0, "ser_p75_ns": 5977.5, "ser_p95_ns": 8017.5, "ser_p99_ns": 8382.699999999997, "ser_ci_low_ns": 4863.715384615385, "ser_ci_high_ns": 5441.132967032967, "deser_mean_ns": 3456.054945054945, "deser_median_ns": 3338.0, "deser_std_ns": 710.7544092588031, "deser_mad_ns": 474.0, "deser_cv": 0.20565483493709424, "deser_min_ns": 2428.0, "deser_max_ns": 5544.0, "deser_p5_ns": 2589.5, "deser_p25_ns": 2897.5, "deser_p50_ns": 3338.0, "deser_p75_ns": 3843.0, "deser_p95_ns": 4861.5, "deser_p99_ns": 5451.299999999999, "deser_ci_low_ns": 3313.38021978022, "deser_ci_high_ns": 3598.3664835164836, "total_mean_ns": 8604.538461538461, "total_median_ns": 8266.0, "total_std_ns": 1929.984849150044, "total_mad_ns": 1367.0, "total_cv": 0.22429847431990788, "total_min_ns": 5838.0, "total_max_ns": 14310.0, "total_p5_ns": 6398.0, "total_p25_ns": 6967.0, "total_p50_ns": 8266.0, "total_p75_ns": 9811.0, "total_p95_ns": 12272.0, "total_p99_ns": 13441.499999999995, "total_ci_low_ns": 8226.140384615384, "total_ci_high_ns": 8989.042582417582, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.467956169895555}, {"serializer": "SharpSerializer", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 27610.963855421687, "avg_time_deser_ns": 49754.34939759036, "avg_time_total_ns": 77365.31325301205, "median_size_bytes": 2772.0, "avg_ops_per_sec": 12925.689277953867, "min_ops_per_sec": 11731.306163628258, "max_ops_per_sec": 14151.277152763038, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 27610.963855421687, "ser_median_ns": 27109.0, "ser_std_ns": 1927.3216246955517, "ser_mad_ns": 1297.0, "ser_cv": 0.06980276511850574, "ser_min_ns": 25111.0, "ser_max_ns": 33531.0, "ser_p5_ns": 25271.6, "ser_p25_ns": 26321.0, "ser_p50_ns": 27109.0, "ser_p75_ns": 28779.5, "ser_p95_ns": 31781.2, "ser_p99_ns": 32524.85999999999, "ser_ci_low_ns": 27231.062951807227, "ser_ci_high_ns": 28050.907530120483, "deser_mean_ns": 49754.34939759036, "deser_median_ns": 49532.0, "deser_std_ns": 2189.1602824567726, "deser_mad_ns": 1385.0, "deser_cv": 0.04399937510915971, "deser_min_ns": 45554.0, "deser_max_ns": 55563.0, "deser_p5_ns": 46666.1, "deser_p25_ns": 48343.5, "deser_p50_ns": 49532.0, "deser_p75_ns": 50993.5, "deser_p95_ns": 54209.799999999996, "deser_p99_ns": 55530.2, "deser_ci_low_ns": 49283.453012048194, "deser_ci_high_ns": 50234.046987951806, "total_mean_ns": 77365.31325301205, "total_median_ns": 77047.0, "total_std_ns": 3568.691841789017, "total_mad_ns": 2719.0, "total_cv": 0.04612780187573373, "total_min_ns": 70665.0, "total_max_ns": 85242.0, "total_p5_ns": 72037.2, "total_p25_ns": 74647.5, "total_p50_ns": 77047.0, "total_p75_ns": 79950.5, "total_p95_ns": 83859.9, "total_p99_ns": 85163.28, "total_ci_low_ns": 76605.70692771085, "total_ci_high_ns": 78109.34096385543, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.14642800763791}, {"serializer": "ProtoBuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "2.4.9.1", "avg_time_ser_ns": 3694.4269662921347, "avg_time_deser_ns": 4094.1685393258426, "avg_time_total_ns": 7788.595505617977, "median_size_bytes": 428.0, "avg_ops_per_sec": 128392.85327870627, "min_ops_per_sec": 92038.65623561895, "max_ops_per_sec": 188217.57952192734, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 3694.4269662921347, "ser_median_ns": 3583.0, "ser_std_ns": 652.6679144383328, "ser_mad_ns": 409.0, "ser_cv": 0.17666282765724145, "ser_min_ns": 2157.0, "ser_max_ns": 5590.0, "ser_p5_ns": 2802.8, "ser_p25_ns": 3273.0, "ser_p50_ns": 3583.0, "ser_p75_ns": 4085.0, "ser_p95_ns": 4827.5999999999985, "ser_p99_ns": 5524.88, "ser_ci_low_ns": 3564.5845505617976, "ser_ci_high_ns": 3840.157865168539, "deser_mean_ns": 4094.1685393258426, "deser_median_ns": 3981.0, "deser_std_ns": 479.58652257475103, "deser_mad_ns": 334.0, "deser_cv": 0.11713893015594348, "deser_min_ns": 3156.0, "deser_max_ns": 5349.0, "deser_p5_ns": 3519.4, "deser_p25_ns": 3755.0, "deser_p50_ns": 3981.0, "deser_p75_ns": 4377.0, "deser_p95_ns": 4955.599999999999, "deser_p99_ns": 5235.4800000000005, "deser_ci_low_ns": 3991.591011235955, "deser_ci_high_ns": 4193.998033707866, "total_mean_ns": 7788.595505617977, "total_median_ns": 7570.0, "total_std_ns": 1045.8763802222727, "total_mad_ns": 533.0, "total_cv": 0.13428305263354268, "total_min_ns": 5313.0, "total_max_ns": 10865.0, "total_p5_ns": 6397.2, "total_p25_ns": 7082.0, "total_p50_ns": 7570.0, "total_p75_ns": 8379.0, "total_p95_ns": 9723.4, "total_p99_ns": 10543.800000000001, "total_ci_low_ns": 7567.945224719101, "total_ci_high_ns": 8012.46095505618, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.929541379535558}, {"serializer": "ZeroFormatter", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.6.4", "avg_time_ser_ns": 4431.451612903225, "avg_time_deser_ns": 3336.6236559139784, "avg_time_total_ns": 7768.075268817204, "median_size_bytes": 404.0, "avg_ops_per_sec": 128732.01731376423, "min_ops_per_sec": 89309.6365097794, "max_ops_per_sec": 230467.849734962, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 4431.451612903225, "ser_median_ns": 4205.0, "ser_std_ns": 1011.2891526910744, "ser_mad_ns": 655.0, "ser_cv": 0.22820719733156183, "ser_min_ns": 2098.0, "ser_max_ns": 7008.0, "ser_p5_ns": 3223.0, "ser_p25_ns": 3694.0, "ser_p50_ns": 4205.0, "ser_p75_ns": 4951.0, "ser_p95_ns": 6403.599999999999, "ser_p99_ns": 6678.639999999999, "ser_ci_low_ns": 4227.957526881721, "ser_ci_high_ns": 4641.290591397849, "deser_mean_ns": 3336.6236559139784, "deser_median_ns": 3291.0, "deser_std_ns": 413.74787307947986, "deser_mad_ns": 305.0, "deser_cv": 0.124001959989145, "deser_min_ns": 2241.0, "deser_max_ns": 4421.0, "deser_p5_ns": 2775.4, "deser_p25_ns": 3014.0, "deser_p50_ns": 3291.0, "deser_p75_ns": 3603.0, "deser_p95_ns": 4073.7999999999997, "deser_p99_ns": 4394.32, "deser_ci_low_ns": 3255.7997311827958, "deser_ci_high_ns": 3423.68064516129, "total_mean_ns": 7768.075268817204, "total_median_ns": 7572.0, "total_std_ns": 1341.2087202331882, "total_mad_ns": 836.0, "total_cv": 0.17265650419443032, "total_min_ns": 4339.0, "total_max_ns": 11197.0, "total_p5_ns": 6005.4, "total_p25_ns": 6820.0, "total_p50_ns": 7572.0, "total_p75_ns": 8604.0, "total_p95_ns": 10189.199999999999, "total_p99_ns": 10552.079999999998, "total_ci_low_ns": 7501.15188172043, "total_ci_high_ns": 8036.23440860215, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9975562072336266, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.9768487372820776}, {"serializer": "ServiceStack Json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 12760.397727272728, "avg_time_deser_ns": 14193.318181818182, "avg_time_total_ns": 26953.715909090908, "median_size_bytes": 663.0, "avg_ops_per_sec": 37100.635896467305, "min_ops_per_sec": 28975.42883634678, "max_ops_per_sec": 50400.68544932211, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 12760.397727272728, "ser_median_ns": 12561.0, "ser_std_ns": 1550.4813011713916, "ser_mad_ns": 1098.5, "ser_cv": 0.12150728639574897, "ser_min_ns": 9414.0, "ser_max_ns": 16627.0, "ser_p5_ns": 10653.15, "ser_p25_ns": 11630.0, "ser_p50_ns": 12561.0, "ser_p75_ns": 13772.75, "ser_p95_ns": 15724.449999999999, "ser_p99_ns": 16433.86, "ser_ci_low_ns": 12436.091761363636, "ser_ci_high_ns": 13088.997443181817, "deser_mean_ns": 14193.318181818182, "deser_median_ns": 13830.5, "deser_std_ns": 1755.975830126218, "deser_mad_ns": 1069.5, "deser_cv": 0.12371848553185012, "deser_min_ns": 10427.0, "deser_max_ns": 19363.0, "deser_p5_ns": 11812.95, "deser_p25_ns": 13111.5, "deser_p50_ns": 13830.5, "deser_p75_ns": 15205.0, "deser_p95_ns": 17694.0, "deser_p99_ns": 18298.119999999995, "deser_ci_low_ns": 13837.03380681818, "deser_ci_high_ns": 14544.345454545455, "total_mean_ns": 26953.715909090908, "total_median_ns": 26694.0, "total_std_ns": 3110.583605473504, "total_mad_ns": 2062.5, "total_cv": 0.11540462977219297, "total_min_ns": 19841.0, "total_max_ns": 34512.0, "total_p5_ns": 22782.15, "total_p25_ns": 24518.0, "total_p50_ns": 26694.0, "total_p75_ns": 28460.25, "total_p95_ns": 33615.15, "total_p99_ns": 34355.4, "total_ci_low_ns": 26297.887215909093, "total_ci_high_ns": 27598.43011363636, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.39300700746065}, {"serializer": "FsPickler", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 10996.81111111111, "avg_time_deser_ns": 8260.722222222223, "avg_time_total_ns": 19257.533333333333, "median_size_bytes": 628.0, "avg_ops_per_sec": 51927.7304466131, "min_ops_per_sec": 35143.208574942895, "max_ops_per_sec": 98039.2156862745, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 10996.81111111111, "ser_median_ns": 10562.0, "ser_std_ns": 2420.2055855401313, "ser_mad_ns": 1169.5, "ser_cv": 0.2200824912864758, "ser_min_ns": 5116.0, "ser_max_ns": 17258.0, "ser_p5_ns": 7618.75, "ser_p25_ns": 9500.5, "ser_p50_ns": 10562.0, "ser_p75_ns": 11910.5, "ser_p95_ns": 15659.25, "ser_p99_ns": 16446.32, "ser_ci_low_ns": 10513.94, "ser_ci_high_ns": 11527.295277777775, "deser_mean_ns": 8260.722222222223, "deser_median_ns": 8143.0, "deser_std_ns": 1269.698717052551, "deser_mad_ns": 626.0, "deser_cv": 0.15370311249988847, "deser_min_ns": 5082.0, "deser_max_ns": 11860.0, "deser_p5_ns": 6542.95, "deser_p25_ns": 7524.5, "deser_p50_ns": 8143.0, "deser_p75_ns": 8769.75, "deser_p95_ns": 10677.699999999999, "deser_p99_ns": 11565.41, "deser_ci_low_ns": 8006.011388888889, "deser_ci_high_ns": 8522.639166666666, "total_mean_ns": 19257.533333333333, "total_median_ns": 18632.5, "total_std_ns": 3583.5196376270114, "total_mad_ns": 1732.5, "total_cv": 0.1860840417928401, "total_min_ns": 10200.0, "total_max_ns": 28455.0, "total_p5_ns": 14286.2, "total_p25_ns": 17115.5, "total_p50_ns": 18632.5, "total_p75_ns": 20646.25, "total_p95_ns": 25805.9, "total_p99_ns": 28233.39, "total_ci_low_ns": 18568.561388888887, "total_ci_high_ns": 19998.655833333334, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.038596570345225}, {"serializer": "ServiceStack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 12801.946808510638, "avg_time_deser_ns": 12942.372340425532, "avg_time_total_ns": 25744.31914893617, "median_size_bytes": 649.0, "avg_ops_per_sec": 38843.52094202976, "min_ops_per_sec": 30399.756801945583, "max_ops_per_sec": 49733.92350922564, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 12801.946808510638, "ser_median_ns": 12391.5, "ser_std_ns": 1778.6817479754784, "ser_mad_ns": 916.5, "ser_cv": 0.13893837980900092, "ser_min_ns": 8801.0, "ser_max_ns": 17694.0, "ser_p5_ns": 10406.25, "ser_p25_ns": 11696.0, "ser_p50_ns": 12391.5, "ser_p75_ns": 13700.75, "ser_p95_ns": 16241.85, "ser_p99_ns": 17568.45, "ser_ci_low_ns": 12454.225265957448, "ser_ci_high_ns": 13165.082978723403, "deser_mean_ns": 12942.372340425532, "deser_median_ns": 12684.5, "deser_std_ns": 1521.928099300941, "deser_mad_ns": 661.0, "deser_cv": 0.11759266842812077, "deser_min_ns": 10168.0, "deser_max_ns": 16620.0, "deser_p5_ns": 10775.15, "deser_p25_ns": 12089.25, "deser_p50_ns": 12684.5, "deser_p75_ns": 13496.25, "deser_p95_ns": 16139.25, "deser_p99_ns": 16386.57, "deser_ci_low_ns": 12638.212234042554, "deser_ci_high_ns": 13263.266489361702, "total_mean_ns": 25744.31914893617, "total_median_ns": 25168.5, "total_std_ns": 3096.0538783229913, "total_mad_ns": 1614.5, "total_cv": 0.12026163366029158, "total_min_ns": 20107.0, "total_max_ns": 32895.0, "total_p5_ns": 21545.0, "total_p25_ns": 24112.25, "total_p50_ns": 25168.5, "total_p75_ns": 27057.75, "total_p95_ns": 32073.1, "total_p99_ns": 32880.12, "total_ci_low_ns": 25155.23989361702, "total_ci_high_ns": 26380.462234042556, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.749913227742875}, {"serializer": "FlatSharp", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "7.5.1", "avg_time_ser_ns": 5680.728260869565, "avg_time_deser_ns": 4048.5978260869565, "avg_time_total_ns": 9729.326086956522, "median_size_bytes": 472.0, "avg_ops_per_sec": 102782.0417429153, "min_ops_per_sec": 64536.947402387865, "max_ops_per_sec": 153491.94167306216, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 5680.728260869565, "ser_median_ns": 5371.0, "ser_std_ns": 1402.9451604209592, "ser_mad_ns": 834.0, "ser_cv": 0.2469657227022872, "ser_min_ns": 3606.0, "ser_max_ns": 9588.0, "ser_p5_ns": 3956.75, "ser_p25_ns": 4662.75, "ser_p50_ns": 5371.0, "ser_p75_ns": 6467.0, "ser_p95_ns": 8742.6, "ser_p99_ns": 8895.490000000003, "ser_ci_low_ns": 5419.192934782609, "ser_ci_high_ns": 5984.327445652172, "deser_mean_ns": 4048.5978260869565, "deser_median_ns": 3804.5, "deser_std_ns": 947.3371710218162, "deser_mad_ns": 554.5, "deser_cv": 0.2339914241216285, "deser_min_ns": 2748.0, "deser_max_ns": 6690.0, "deser_p5_ns": 2905.05, "deser_p25_ns": 3343.0, "deser_p50_ns": 3804.5, "deser_p75_ns": 4441.25, "deser_p95_ns": 6005.6, "deser_p99_ns": 6588.08, "deser_ci_low_ns": 3862.917934782609, "deser_ci_high_ns": 4244.479347826087, "total_mean_ns": 9729.326086956522, "total_median_ns": 9172.5, "total_std_ns": 2259.6189560553653, "total_mad_ns": 1294.0, "total_cv": 0.23224824986436524, "total_min_ns": 6515.0, "total_max_ns": 15495.0, "total_p5_ns": 6885.35, "total_p25_ns": 8066.5, "total_p50_ns": 9172.5, "total_p75_ns": 10962.75, "total_p95_ns": 14397.000000000002, "total_p99_ns": 15413.1, "total_ci_low_ns": 9294.745923913044, "total_ci_high_ns": 10183.166847826087, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.6596551606510275}, {"serializer": "NetSerializer", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "4.1.2", "avg_time_ser_ns": 3466.0, "avg_time_deser_ns": 2785.8709677419356, "avg_time_total_ns": 6251.870967741936, "median_size_bytes": 440.0, "avg_ops_per_sec": 159952.11755964666, "min_ops_per_sec": 109829.76386600769, "max_ops_per_sec": 221631.20567375887, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 3466.0, "ser_median_ns": 3304.0, "ser_std_ns": 746.2883665761892, "ser_mad_ns": 445.0, "ser_cv": 0.2153168974541804, "ser_min_ns": 2111.0, "ser_max_ns": 5439.0, "ser_p5_ns": 2646.2, "ser_p25_ns": 2880.0, "ser_p50_ns": 3304.0, "ser_p75_ns": 3802.0, "ser_p95_ns": 4904.999999999997, "ser_p99_ns": 5429.8, "ser_ci_low_ns": 3316.6784946236558, "ser_ci_high_ns": 3613.0602150537634, "deser_mean_ns": 2785.8709677419356, "deser_median_ns": 2667.0, "deser_std_ns": 369.38492430003186, "deser_mad_ns": 187.0, "deser_cv": 0.13259225878628317, "deser_min_ns": 2299.0, "deser_max_ns": 3912.0, "deser_p5_ns": 2344.2, "deser_p25_ns": 2531.0, "deser_p50_ns": 2667.0, "deser_p75_ns": 2952.0, "deser_p95_ns": 3540.9999999999995, "deser_p99_ns": 3810.7999999999997, "deser_ci_low_ns": 2718.076075268817, "deser_ci_high_ns": 2861.9190860215053, "total_mean_ns": 6251.870967741936, "total_median_ns": 5959.0, "total_std_ns": 991.6066149546803, "total_mad_ns": 537.0, "total_cv": 0.1586095778481543, "total_min_ns": 4512.0, "total_max_ns": 9105.0, "total_p5_ns": 5109.8, "total_p25_ns": 5563.0, "total_p50_ns": 5959.0, "total_p75_ns": 6752.0, "total_p95_ns": 8158.599999999996, "total_p99_ns": 9031.4, "total_ci_low_ns": 6068.589784946237, "total_ci_high_ns": 6475.501881720429, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9963343108504399, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.2265282029974722}, {"serializer": "SpanJson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "4.2.1", "avg_time_ser_ns": 7699.831325301205, "avg_time_deser_ns": 12250.807228915663, "avg_time_total_ns": 19950.63855421687, "median_size_bytes": 663.0, "avg_ops_per_sec": 50123.7089370573, "min_ops_per_sec": 39763.0124458229, "max_ops_per_sec": 59059.76848570754, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 7699.831325301205, "ser_median_ns": 7455.0, "ser_std_ns": 922.5156065740093, "ser_mad_ns": 494.0, "ser_cv": 0.11980984616411997, "ser_min_ns": 6378.0, "ser_max_ns": 10415.0, "ser_p5_ns": 6548.2, "ser_p25_ns": 7010.5, "ser_p50_ns": 7455.0, "ser_p75_ns": 8073.0, "ser_p95_ns": 9388.5, "ser_p99_ns": 10186.219999999998, "ser_ci_low_ns": 7516.024397590361, "ser_ci_high_ns": 7890.349096385542, "deser_mean_ns": 12250.807228915663, "deser_median_ns": 12258.0, "deser_std_ns": 1216.681947916599, "deser_mad_ns": 922.0, "deser_cv": 0.09931443089275427, "deser_min_ns": 10019.0, "deser_max_ns": 15280.0, "deser_p5_ns": 10235.1, "deser_p25_ns": 11380.5, "deser_p50_ns": 12258.0, "deser_p75_ns": 13139.5, "deser_p95_ns": 14262.199999999999, "deser_p99_ns": 14832.279999999995, "deser_ci_low_ns": 11986.196987951807, "deser_ci_high_ns": 12527.67108433735, "total_mean_ns": 19950.63855421687, "total_median_ns": 20022.0, "total_std_ns": 1761.1026103975612, "total_mad_ns": 1115.0, "total_cv": 0.08827299465185919, "total_min_ns": 16932.0, "total_max_ns": 25149.0, "total_p5_ns": 17119.0, "total_p25_ns": 18713.0, "total_p50_ns": 20022.0, "total_p75_ns": 20879.0, "total_p95_ns": 22677.899999999998, "total_p99_ns": 23983.779999999988, "total_ci_low_ns": 19572.189759036144, "total_ci_high_ns": 20337.924096385545, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.579893565702976}, {"serializer": "Utf8Json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.3.7", "avg_time_ser_ns": 10126.36170212766, "avg_time_deser_ns": 9823.021276595744, "avg_time_total_ns": 19949.382978723403, "median_size_bytes": 663.0, "avg_ops_per_sec": 50126.863626134655, "min_ops_per_sec": 36112.816438554044, "max_ops_per_sec": 68898.9940746865, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 10126.36170212766, "ser_median_ns": 9458.0, "ser_std_ns": 2081.1645770570553, "ser_mad_ns": 1234.5, "ser_cv": 0.20551947859217587, "ser_min_ns": 7192.0, "ser_max_ns": 15462.0, "ser_p5_ns": 7727.3, "ser_p25_ns": 8537.75, "ser_p50_ns": 9458.0, "ser_p75_ns": 11338.75, "ser_p95_ns": 14335.4, "ser_p99_ns": 15169.979999999998, "ser_ci_low_ns": 9709.207180851063, "ser_ci_high_ns": 10541.209574468085, "deser_mean_ns": 9823.021276595744, "deser_median_ns": 9612.0, "deser_std_ns": 1061.973006346727, "deser_mad_ns": 657.5, "deser_cv": 0.10811062874077, "deser_min_ns": 7322.0, "deser_max_ns": 12484.0, "deser_p5_ns": 8395.2, "deser_p25_ns": 9185.5, "deser_p50_ns": 9612.0, "deser_p75_ns": 10400.25, "deser_p95_ns": 11821.0, "deser_p99_ns": 12315.669999999998, "deser_ci_low_ns": 9630.211170212766, "deser_ci_high_ns": 10047.438829787234, "total_mean_ns": 19949.382978723403, "total_median_ns": 19241.0, "total_std_ns": 2971.9346839607138, "total_mad_ns": 1889.5, "total_cv": 0.1489737646086783, "total_min_ns": 14514.0, "total_max_ns": 27691.0, "total_p5_ns": 16285.8, "total_p25_ns": 17858.75, "total_p50_ns": 19241.0, "total_p75_ns": 21793.5, "total_p95_ns": 25713.149999999998, "total_p99_ns": 27233.439999999995, "total_ci_low_ns": 19355.967819148937, "total_ci_high_ns": 20522.621542553192, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.487608081333087}, {"serializer": "MS Bond Fast", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 2485.7311827956987, "avg_time_deser_ns": 2079.6236559139784, "avg_time_total_ns": 4565.354838709677, "median_size_bytes": 404.0, "avg_ops_per_sec": 219041.02426409282, "min_ops_per_sec": 171467.76406035665, "max_ops_per_sec": 273373.4281027884, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 2485.7311827956987, "ser_median_ns": 2478.0, "ser_std_ns": 367.6305192594558, "ser_mad_ns": 265.0, "ser_cv": 0.14789632998286734, "ser_min_ns": 1695.0, "ser_max_ns": 3300.0, "ser_p5_ns": 1891.6, "ser_p25_ns": 2212.0, "ser_p50_ns": 2478.0, "ser_p75_ns": 2722.0, "ser_p95_ns": 3128.9999999999995, "ser_p99_ns": 3287.12, "ser_ci_low_ns": 2408.763978494624, "ser_ci_high_ns": 2560.7887096774193, "deser_mean_ns": 2079.6236559139784, "deser_median_ns": 2034.0, "deser_std_ns": 277.9843565343082, "deser_mad_ns": 164.0, "deser_cv": 0.1336705108848823, "deser_min_ns": 1653.0, "deser_max_ns": 2841.0, "deser_p5_ns": 1707.2, "deser_p25_ns": 1883.0, "deser_p50_ns": 2034.0, "deser_p75_ns": 2228.0, "deser_p95_ns": 2608.2, "deser_p99_ns": 2754.52, "deser_ci_low_ns": 2027.7491935483872, "deser_ci_high_ns": 2137.7112903225807, "total_mean_ns": 4565.354838709677, "total_median_ns": 4513.0, "total_std_ns": 482.3622498830127, "total_mad_ns": 358.0, "total_cv": 0.1056571212807074, "total_min_ns": 3658.0, "total_max_ns": 5832.0, "total_p5_ns": 3925.4, "total_p25_ns": 4216.0, "total_p50_ns": 4513.0, "total_p75_ns": 4878.0, "total_p95_ns": 5389.199999999999, "total_p99_ns": 5622.24, "total_ci_low_ns": 4469.609946236559, "total_ci_high_ns": 4661.642741935484, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.7838465298142717, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.799877715082533}, {"serializer": "Google.Protobuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "3.35.1", "avg_time_ser_ns": 5216.144444444444, "avg_time_deser_ns": 4046.011111111111, "avg_time_total_ns": 9262.155555555555, "median_size_bytes": 388.0, "avg_ops_per_sec": 107966.22816383035, "min_ops_per_sec": 62617.407639323734, "max_ops_per_sec": 255623.7218813906, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 5216.144444444444, "ser_median_ns": 4780.5, "ser_std_ns": 1521.5528478462436, "ser_mad_ns": 682.0, "ser_cv": 0.2917006735629806, "ser_min_ns": 1650.0, "ser_max_ns": 9477.0, "ser_p5_ns": 3648.4, "ser_p25_ns": 4239.75, "ser_p50_ns": 4780.5, "ser_p75_ns": 5900.5, "ser_p95_ns": 8427.899999999998, "ser_p99_ns": 9291.88, "ser_ci_low_ns": 4930.811944444445, "ser_ci_high_ns": 5535.8052777777775, "deser_mean_ns": 4046.011111111111, "deser_median_ns": 3827.5, "deser_std_ns": 861.5451691738753, "deser_mad_ns": 390.0, "deser_cv": 0.21293692615126772, "deser_min_ns": 2262.0, "deser_max_ns": 6493.0, "deser_p5_ns": 3037.3, "deser_p25_ns": 3519.25, "deser_p50_ns": 3827.5, "deser_p75_ns": 4555.0, "deser_p95_ns": 5755.849999999999, "deser_p99_ns": 6410.23, "deser_ci_low_ns": 3874.0380555555553, "deser_ci_high_ns": 4226.1275, "total_mean_ns": 9262.155555555555, "total_median_ns": 8677.0, "total_std_ns": 2282.6942188735884, "total_mad_ns": 1098.0, "total_cv": 0.24645388486316236, "total_min_ns": 3912.0, "total_max_ns": 15970.0, "total_p5_ns": 7157.65, "total_p25_ns": 7672.25, "total_p50_ns": 8677.0, "total_p75_ns": 10265.5, "total_p95_ns": 13647.15, "total_p99_ns": 14966.08, "total_ci_low_ns": 8797.147222222222, "total_ci_high_ns": 9747.346944444444, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9936868686868687, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.3638761042378595}, {"serializer": "MS Binary", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 19075.011627906977, "avg_time_deser_ns": 20145.24418604651, "avg_time_total_ns": 39220.25581395349, "median_size_bytes": 1596.0, "avg_ops_per_sec": 25497.02900316697, "min_ops_per_sec": 20278.217139149125, "max_ops_per_sec": 31736.96404201974, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 19075.011627906977, "ser_median_ns": 18762.0, "ser_std_ns": 2321.954468288381, "ser_mad_ns": 1261.0, "ser_cv": 0.12172755191883255, "ser_min_ns": 12709.0, "ser_max_ns": 25215.0, "ser_p5_ns": 16121.5, "ser_p25_ns": 17416.25, "ser_p50_ns": 18762.0, "ser_p75_ns": 19974.5, "ser_p95_ns": 24247.5, "ser_p99_ns": 24650.600000000002, "ser_ci_low_ns": 18605.406104651163, "ser_ci_high_ns": 19580.34476744186, "deser_mean_ns": 20145.24418604651, "deser_median_ns": 19596.0, "deser_std_ns": 1877.5421789641184, "deser_mad_ns": 1074.5, "deser_cv": 0.09320026908706261, "deser_min_ns": 17242.0, "deser_max_ns": 25462.0, "deser_p5_ns": 18013.75, "deser_p25_ns": 18810.0, "deser_p50_ns": 19596.0, "deser_p75_ns": 21075.0, "deser_p95_ns": 23861.0, "deser_p99_ns": 25320.05, "deser_ci_low_ns": 19739.975872093022, "deser_ci_high_ns": 20543.798837209302, "total_mean_ns": 39220.25581395349, "total_median_ns": 38477.0, "total_std_ns": 3844.5155594340495, "total_mad_ns": 2045.5, "total_cv": 0.09802372472201665, "total_min_ns": 31509.0, "total_max_ns": 49314.0, "total_p5_ns": 33939.0, "total_p25_ns": 36931.75, "total_p50_ns": 38477.0, "total_p75_ns": 40902.25, "total_p95_ns": 47266.5, "total_p99_ns": 49206.9, "total_ci_low_ns": 38406.33459302326, "total_ci_high_ns": 40049.84651162791, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.9724823004053}, {"serializer": "YAXLib", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "4.4.0", "avg_time_ser_ns": 145966.93506493507, "avg_time_deser_ns": 108662.4025974026, "avg_time_total_ns": 254629.33766233767, "median_size_bytes": 1432.0, "avg_ops_per_sec": 3927.277230426973, "min_ops_per_sec": 3009.4738235966825, "max_ops_per_sec": 4457.38075392138, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 145966.93506493507, "ser_median_ns": 142524.0, "ser_std_ns": 18395.401136051758, "ser_mad_ns": 11696.0, "ser_cv": 0.12602443921884332, "ser_min_ns": 120563.0, "ser_max_ns": 210720.0, "ser_p5_ns": 124151.6, "ser_p25_ns": 131301.0, "ser_p50_ns": 142524.0, "ser_p75_ns": 154220.0, "ser_p95_ns": 182778.8, "ser_p99_ns": 194626.2399999999, "ser_ci_low_ns": 141928.93961038959, "ser_ci_high_ns": 150127.7409090909, "deser_mean_ns": 108662.4025974026, "deser_median_ns": 107238.0, "deser_std_ns": 4791.780927192279, "deser_mad_ns": 2960.0, "deser_cv": 0.04409787389798446, "deser_min_ns": 100129.0, "deser_max_ns": 124451.0, "deser_p5_ns": 102646.8, "deser_p25_ns": 105542.0, "deser_p50_ns": 107238.0, "deser_p75_ns": 111187.0, "deser_p95_ns": 117691.8, "deser_p99_ns": 122256.87999999999, "deser_ci_low_ns": 107660.9288961039, "deser_ci_high_ns": 109771.01071428572, "total_mean_ns": 254629.33766233767, "total_median_ns": 250996.0, "total_std_ns": 21884.26722112341, "total_mad_ns": 11878.0, "total_cv": 0.08594558436209733, "total_min_ns": 224347.0, "total_max_ns": 332284.0, "total_p5_ns": 228222.8, "total_p25_ns": 239118.0, "total_p50_ns": 250996.0, "total_p75_ns": 262714.0, "total_p95_ns": 293900.2, "total_p99_ns": 311996.5599999999, "total_ci_low_ns": 249892.35616883117, "total_ci_high_ns": 259627.6866883117, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.71401498927083}, {"serializer": "YamlDotNet", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "17.1.0", "avg_time_ser_ns": 94174.55555555556, "avg_time_deser_ns": 70273.96666666666, "avg_time_total_ns": 164448.52222222224, "median_size_bytes": 716.0, "avg_ops_per_sec": 6080.930290444824, "min_ops_per_sec": 5233.629207837883, "max_ops_per_sec": 7164.298865891489, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 94174.55555555556, "ser_median_ns": 92961.0, "ser_std_ns": 7378.683397236541, "ser_mad_ns": 5448.5, "ser_cv": 0.07835113586369621, "ser_min_ns": 80267.0, "ser_max_ns": 113626.0, "ser_p5_ns": 83832.55, "ser_p25_ns": 88747.75, "ser_p50_ns": 92961.0, "ser_p75_ns": 99473.0, "ser_p95_ns": 105567.65, "ser_p99_ns": 110119.4, "ser_ci_low_ns": 92662.52777777778, "ser_ci_high_ns": 95743.48305555555, "deser_mean_ns": 70273.96666666666, "deser_median_ns": 70124.0, "deser_std_ns": 4486.547070616103, "deser_mad_ns": 3262.5, "deser_cv": 0.06384365766482662, "deser_min_ns": 59314.0, "deser_max_ns": 80840.0, "deser_p5_ns": 64003.95, "deser_p25_ns": 66744.75, "deser_p50_ns": 70124.0, "deser_p75_ns": 73284.75, "deser_p95_ns": 77419.0, "deser_p99_ns": 80188.52, "deser_ci_low_ns": 69356.09805555556, "deser_ci_high_ns": 71195.11222222222, "total_mean_ns": 164448.52222222224, "total_median_ns": 163413.5, "total_std_ns": 11360.9683963998, "total_mad_ns": 8031.0, "total_cv": 0.0690852568504539, "total_min_ns": 139581.0, "total_max_ns": 191072.0, "total_p5_ns": 147745.6, "total_p25_ns": 156643.0, "total_p50_ns": 163413.5, "total_p75_ns": 173034.75, "total_p95_ns": 183029.1, "total_p99_ns": 189934.58, "total_ci_low_ns": 162202.50666666668, "total_ci_high_ns": 166754.75027777776, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.798649763923894}, {"serializer": "MS Bond Json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 8806.955555555556, "avg_time_deser_ns": 10731.422222222222, "avg_time_total_ns": 19538.37777777778, "median_size_bytes": 663.0, "avg_ops_per_sec": 51181.321774695265, "min_ops_per_sec": 45357.64503106999, "max_ops_per_sec": 58979.65202005308, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 8806.955555555556, "ser_median_ns": 8767.0, "ser_std_ns": 553.9180345626353, "ser_mad_ns": 349.0, "ser_cv": 0.06289551832848932, "ser_min_ns": 7406.0, "ser_max_ns": 10126.0, "ser_p5_ns": 7960.2, "ser_p25_ns": 8422.5, "ser_p50_ns": 8767.0, "ser_p75_ns": 9135.25, "ser_p95_ns": 9864.85, "ser_p99_ns": 10069.04, "ser_ci_low_ns": 8690.299166666666, "ser_ci_high_ns": 8926.034444444444, "deser_mean_ns": 10731.422222222222, "deser_median_ns": 10669.5, "deser_std_ns": 638.7470878190002, "deser_mad_ns": 443.5, "deser_cv": 0.05952119622097311, "deser_min_ns": 9398.0, "deser_max_ns": 12420.0, "deser_p5_ns": 9820.8, "deser_p25_ns": 10252.0, "deser_p50_ns": 10669.5, "deser_p75_ns": 11145.0, "deser_p95_ns": 11960.7, "deser_p99_ns": 12091.59, "deser_ci_low_ns": 10596.97, "deser_ci_high_ns": 10868.715, "total_mean_ns": 19538.37777777778, "total_median_ns": 19565.0, "total_std_ns": 1051.1684090666565, "total_mad_ns": 738.0, "total_cv": 0.05380018858383505, "total_min_ns": 16955.0, "total_max_ns": 22047.0, "total_p5_ns": 18000.5, "total_p25_ns": 18704.75, "total_p50_ns": 19565.0, "total_p75_ns": 20171.0, "total_p95_ns": 21298.85, "total_p99_ns": 21954.44, "total_ci_low_ns": 19315.03638888889, "total_ci_high_ns": 19755.71888888889, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.703688050622826}, {"serializer": "Hyperion", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "0.12.2", "avg_time_ser_ns": 8007.043956043956, "avg_time_deser_ns": 6346.2307692307695, "avg_time_total_ns": 14353.274725274725, "median_size_bytes": 852.0, "avg_ops_per_sec": 69670.51207060763, "min_ops_per_sec": 49280.50463236743, "max_ops_per_sec": 88347.02712253733, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 8007.043956043956, "ser_median_ns": 7526.0, "ser_std_ns": 1381.1879099133623, "ser_mad_ns": 620.0, "ser_cv": 0.17249660642499662, "ser_min_ns": 5796.0, "ser_max_ns": 11705.0, "ser_p5_ns": 6443.5, "ser_p25_ns": 7003.0, "ser_p50_ns": 7526.0, "ser_p75_ns": 8608.0, "ser_p95_ns": 10773.5, "ser_p99_ns": 11506.099999999999, "ser_ci_low_ns": 7736.811813186813, "ser_ci_high_ns": 8309.183241758241, "deser_mean_ns": 6346.2307692307695, "deser_median_ns": 6113.0, "deser_std_ns": 914.2580729376274, "deser_mad_ns": 546.0, "deser_cv": 0.14406316224275045, "deser_min_ns": 4853.0, "deser_max_ns": 8808.0, "deser_p5_ns": 5250.0, "deser_p25_ns": 5723.5, "deser_p50_ns": 6113.0, "deser_p75_ns": 6785.5, "deser_p95_ns": 8163.5, "deser_p99_ns": 8688.3, "deser_ci_low_ns": 6164.121703296703, "deser_ci_high_ns": 6538.279395604395, "total_mean_ns": 14353.274725274725, "total_median_ns": 13654.0, "total_std_ns": 2154.47233584227, "total_mad_ns": 1121.0, "total_cv": 0.15010319088008905, "total_min_ns": 11319.0, "total_max_ns": 20292.0, "total_p5_ns": 11907.0, "total_p25_ns": 12795.5, "total_p50_ns": 13654.0, "total_p75_ns": 15270.0, "total_p95_ns": 18694.5, "total_p99_ns": 19284.899999999994, "total_ci_low_ns": 13933.547527472529, "total_ci_high_ns": 14818.35302197802, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.737196871558947}, {"serializer": "MS DataContract", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 16714.26595744681, "avg_time_deser_ns": 23502.521276595744, "avg_time_total_ns": 40216.78723404255, "median_size_bytes": 2204.0, "avg_ops_per_sec": 24865.23834389048, "min_ops_per_sec": 20219.584689730473, "max_ops_per_sec": 29786.727034433457, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 16714.26595744681, "ser_median_ns": 16060.5, "ser_std_ns": 2285.3206366672116, "ser_mad_ns": 1151.5, "ser_cv": 0.13672874671765162, "ser_min_ns": 12906.0, "ser_max_ns": 22626.0, "ser_p5_ns": 13856.7, "ser_p25_ns": 15131.75, "ser_p50_ns": 16060.5, "ser_p75_ns": 18196.5, "ser_p95_ns": 21341.7, "ser_p99_ns": 22129.379999999997, "ser_ci_low_ns": 16247.808510638299, "ser_ci_high_ns": 17161.4539893617, "deser_mean_ns": 23502.521276595744, "deser_median_ns": 22889.5, "deser_std_ns": 1898.1809613174478, "deser_mad_ns": 944.5, "deser_cv": 0.08076499278431426, "deser_min_ns": 20279.0, "deser_max_ns": 28031.0, "deser_p5_ns": 21210.05, "deser_p25_ns": 22151.75, "deser_p50_ns": 22889.5, "deser_p75_ns": 24476.0, "deser_p95_ns": 27017.649999999998, "deser_p99_ns": 28030.07, "deser_ci_low_ns": 23104.136436170214, "deser_ci_high_ns": 23910.27260638298, "total_mean_ns": 40216.78723404255, "total_median_ns": 39023.5, "total_std_ns": 3960.188411593462, "total_mad_ns": 2011.0, "total_cv": 0.09847102874098448, "total_min_ns": 33572.0, "total_max_ns": 49457.0, "total_p5_ns": 35563.45, "total_p25_ns": 37398.25, "total_p50_ns": 39023.5, "total_p75_ns": 42401.5, "total_p95_ns": 48407.15, "total_p99_ns": 48817.159999999996, "total_ci_low_ns": 39437.270744680856, "total_ci_high_ns": 41024.2920212766, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.68300884713161}, {"serializer": "LightProto", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.3.4", "avg_time_ser_ns": 5252.078651685393, "avg_time_deser_ns": 4999.0, "avg_time_total_ns": 10251.078651685393, "median_size_bytes": 428.0, "avg_ops_per_sec": 97550.70992803169, "min_ops_per_sec": 68064.25265450585, "max_ops_per_sec": 136276.9146906514, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 5252.078651685393, "ser_median_ns": 5099.0, "ser_std_ns": 936.1294493905975, "ser_mad_ns": 573.0, "ser_cv": 0.17823980017705815, "ser_min_ns": 3539.0, "ser_max_ns": 8047.0, "ser_p5_ns": 4067.8, "ser_p25_ns": 4609.0, "ser_p50_ns": 5099.0, "ser_p75_ns": 5785.0, "ser_p95_ns": 7027.4, "ser_p99_ns": 7992.4400000000005, "ser_ci_low_ns": 5065.15308988764, "ser_ci_high_ns": 5446.405617977528, "deser_mean_ns": 4999.0, "deser_median_ns": 4733.0, "deser_std_ns": 873.1833739515741, "deser_mad_ns": 568.0, "deser_cv": 0.17467160911213725, "deser_min_ns": 3693.0, "deser_max_ns": 7377.0, "deser_p5_ns": 3830.2, "deser_p25_ns": 4430.0, "deser_p50_ns": 4733.0, "deser_p75_ns": 5490.0, "deser_p95_ns": 6742.2, "deser_p99_ns": 6972.200000000003, "deser_ci_low_ns": 4823.185112359551, "deser_ci_high_ns": 5179.712640449438, "total_mean_ns": 10251.078651685393, "total_median_ns": 9832.0, "total_std_ns": 1739.7251756888022, "total_mad_ns": 1144.0, "total_cv": 0.1697114259681123, "total_min_ns": 7338.0, "total_max_ns": 14692.0, "total_p5_ns": 8114.0, "total_p25_ns": 8964.0, "total_p50_ns": 9832.0, "total_p75_ns": 11387.0, "total_p95_ns": 13726.0, "total_p99_ns": 14597.84, "total_ci_low_ns": 9912.491011235956, "total_ci_high_ns": 10619.53202247191, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.094105086308578}, {"serializer": "fastJson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "2.4.0.4", "avg_time_ser_ns": 11775.17441860465, "avg_time_deser_ns": 16716.95348837209, "avg_time_total_ns": 28492.127906976744, "median_size_bytes": 818.0, "avg_ops_per_sec": 35097.41368790971, "min_ops_per_sec": 28613.121977738992, "max_ops_per_sec": 41554.124246831496, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 11775.17441860465, "ser_median_ns": 11584.0, "ser_std_ns": 820.5365560463968, "ser_mad_ns": 411.0, "ser_cv": 0.06968360101315847, "ser_min_ns": 9965.0, "ser_max_ns": 14308.0, "ser_p5_ns": 10787.5, "ser_p25_ns": 11283.0, "ser_p50_ns": 11584.0, "ser_p75_ns": 12169.0, "ser_p95_ns": 13527.0, "ser_p99_ns": 13984.150000000001, "ser_ci_low_ns": 11604.200581395347, "ser_ci_high_ns": 11951.904069767443, "deser_mean_ns": 16716.95348837209, "deser_median_ns": 16244.5, "deser_std_ns": 1708.3626761040337, "deser_mad_ns": 890.5, "deser_cv": 0.10219342162388197, "deser_min_ns": 14100.0, "deser_max_ns": 22046.0, "deser_p5_ns": 14696.25, "deser_p25_ns": 15496.0, "deser_p50_ns": 16244.5, "deser_p75_ns": 17572.5, "deser_p95_ns": 20260.25, "deser_p99_ns": 21122.050000000007, "deser_ci_low_ns": 16348.148546511628, "deser_ci_high_ns": 17080.82238372093, "total_mean_ns": 28492.127906976744, "total_median_ns": 27863.0, "total_std_ns": 2298.28813939476, "total_mad_ns": 1236.5, "total_cv": 0.08066396960235421, "total_min_ns": 24065.0, "total_max_ns": 34949.0, "total_p5_ns": 25820.0, "total_p25_ns": 26748.25, "total_p50_ns": 27863.0, "total_p75_ns": 29464.5, "total_p95_ns": 32995.75, "total_p99_ns": 34340.4, "total_ci_low_ns": 28009.331976744186, "total_ci_high_ns": 28994.72180232558, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.871596917136335}, {"serializer": "Apache.Avro", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.12.1", "avg_time_ser_ns": 8625.530120481928, "avg_time_deser_ns": 8479.409638554216, "avg_time_total_ns": 17104.939759036144, "median_size_bytes": 384.0, "avg_ops_per_sec": 58462.643779363396, "min_ops_per_sec": 42197.65381044814, "max_ops_per_sec": 81532.81695882593, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 8625.530120481928, "ser_median_ns": 8438.0, "ser_std_ns": 1282.3338701638888, "ser_mad_ns": 730.0, "ser_cv": 0.1486672531719409, "ser_min_ns": 5757.0, "ser_max_ns": 12565.0, "ser_p5_ns": 6962.9, "ser_p25_ns": 7732.0, "ser_p50_ns": 8438.0, "ser_p75_ns": 9196.0, "ser_p95_ns": 11071.3, "ser_p99_ns": 12192.719999999998, "ser_ci_low_ns": 8357.160542168675, "ser_ci_high_ns": 8896.960542168676, "deser_mean_ns": 8479.409638554216, "deser_median_ns": 8342.0, "deser_std_ns": 1090.0283285213902, "deser_mad_ns": 669.0, "deser_cv": 0.1285500258844961, "deser_min_ns": 6508.0, "deser_max_ns": 11587.0, "deser_p5_ns": 7213.1, "deser_p25_ns": 7628.5, "deser_p50_ns": 8342.0, "deser_p75_ns": 8954.0, "deser_p95_ns": 10736.499999999998, "deser_p99_ns": 11541.9, "deser_ci_low_ns": 8238.602409638554, "deser_ci_high_ns": 8722.670481927711, "total_mean_ns": 17104.939759036144, "total_median_ns": 16895.0, "total_std_ns": 2238.3096755462243, "total_mad_ns": 1210.0, "total_cv": 0.13085750122936135, "total_min_ns": 12265.0, "total_max_ns": 23698.0, "total_p5_ns": 14510.3, "total_p25_ns": 15579.5, "total_p50_ns": 16895.0, "total_p75_ns": 17902.5, "total_p95_ns": 21784.399999999998, "total_p99_ns": 23679.96, "total_ci_low_ns": 16646.04939759036, "total_ci_high_ns": 17611.67469879518, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.33340091021444}, {"serializer": "Json.Net", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 11904.308641975309, "avg_time_deser_ns": 12373.530864197532, "avg_time_total_ns": 24277.83950617284, "median_size_bytes": 678.0, "avg_ops_per_sec": 41189.82662134091, "min_ops_per_sec": 33873.04383171872, "max_ops_per_sec": 51184.931156267594, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 11904.308641975309, "ser_median_ns": 11779.0, "ser_std_ns": 990.7966446498408, "ser_mad_ns": 456.0, "ser_cv": 0.08323008705908651, "ser_min_ns": 9412.0, "ser_max_ns": 14181.0, "ser_p5_ns": 10249.0, "ser_p25_ns": 11347.0, "ser_p50_ns": 11779.0, "ser_p75_ns": 12303.0, "ser_p95_ns": 13972.0, "ser_p99_ns": 14102.6, "ser_ci_low_ns": 11684.02561728395, "ser_ci_high_ns": 12130.35925925926, "deser_mean_ns": 12373.530864197532, "deser_median_ns": 12465.0, "deser_std_ns": 1359.0584892345487, "deser_mad_ns": 790.0, "deser_cv": 0.10983594772991974, "deser_min_ns": 9032.0, "deser_max_ns": 15476.0, "deser_p5_ns": 9980.0, "deser_p25_ns": 11568.0, "deser_p50_ns": 12465.0, "deser_p75_ns": 13161.0, "deser_p95_ns": 14556.0, "deser_p99_ns": 15375.2, "deser_ci_low_ns": 12075.07685185185, "deser_ci_high_ns": 12661.76635802469, "total_mean_ns": 24277.83950617284, "total_median_ns": 24118.0, "total_std_ns": 2100.4249656723646, "total_mad_ns": 1235.0, "total_cv": 0.08651614016718062, "total_min_ns": 19537.0, "total_max_ns": 29522.0, "total_p5_ns": 20575.0, "total_p25_ns": 23008.0, "total_p50_ns": 24118.0, "total_p75_ns": 25501.0, "total_p95_ns": 27542.0, "total_p99_ns": 29362.0, "total_ci_low_ns": 23821.66790123457, "total_ci_high_ns": 24738.686728395063, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.617277741728724}, {"serializer": "System.Text.Json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "8.0.0.0", "avg_time_ser_ns": 11431.76404494382, "avg_time_deser_ns": 11713.595505617977, "avg_time_total_ns": 23145.3595505618, "median_size_bytes": 884.0, "avg_ops_per_sec": 43205.20481937069, "min_ops_per_sec": 31771.247021445593, "max_ops_per_sec": 55872.164487652255, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 11431.76404494382, "ser_median_ns": 10739.0, "ser_std_ns": 1976.7347848413135, "ser_mad_ns": 913.0, "ser_cv": 0.17291598891210563, "ser_min_ns": 8172.0, "ser_max_ns": 16153.0, "ser_p5_ns": 9186.8, "ser_p25_ns": 10124.0, "ser_p50_ns": 10739.0, "ser_p75_ns": 12515.0, "ser_p95_ns": 15602.8, "ser_p99_ns": 15857.320000000002, "ser_ci_low_ns": 11023.284269662921, "ser_ci_high_ns": 11833.937078651687, "deser_mean_ns": 11713.595505617977, "deser_median_ns": 11361.0, "deser_std_ns": 1329.5894591863953, "deser_mad_ns": 651.0, "deser_cv": 0.1135082271321994, "deser_min_ns": 9726.0, "deser_max_ns": 15658.0, "deser_p5_ns": 10025.6, "deser_p25_ns": 10825.0, "deser_p50_ns": 11361.0, "deser_p75_ns": 12300.0, "deser_p95_ns": 14348.199999999997, "deser_p99_ns": 15169.600000000002, "deser_ci_low_ns": 11453.110393258428, "deser_ci_high_ns": 12009.812921348315, "total_mean_ns": 23145.3595505618, "total_median_ns": 22132.0, "total_std_ns": 3162.313843774376, "total_mad_ns": 1414.0, "total_cv": 0.1366284173234033, "total_min_ns": 17898.0, "total_max_ns": 31475.0, "total_p5_ns": 19234.2, "total_p25_ns": 21091.0, "total_p50_ns": 22132.0, "total_p75_ns": 24813.0, "total_p95_ns": 29719.2, "total_p99_ns": 31282.280000000002, "total_ci_low_ns": 22508.183988764045, "total_ci_high_ns": 23800.64129213483, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.536751278519166}, {"serializer": "FlatSharp", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "7.5.1", "avg_time_ser_ns": 4435.926315789474, "avg_time_deser_ns": 3261.8526315789472, "avg_time_total_ns": 7697.778947368421, "median_size_bytes": 352.0, "avg_ops_per_sec": 129907.6015091161, "min_ops_per_sec": 71607.59040458288, "max_ops_per_sec": 249190.13207077, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 4435.926315789474, "ser_median_ns": 4161.0, "ser_std_ns": 1535.0913843620729, "ser_mad_ns": 1190.0, "ser_cv": 0.3460588105122455, "ser_min_ns": 2221.0, "ser_max_ns": 8497.0, "ser_p5_ns": 2372.6, "ser_p25_ns": 3023.0, "ser_p50_ns": 4161.0, "ser_p75_ns": 5531.5, "ser_p95_ns": 6905.9, "ser_p99_ns": 8186.800000000001, "ser_ci_low_ns": 4129.871052631579, "ser_ci_high_ns": 4747.80947368421, "deser_mean_ns": 3261.8526315789472, "deser_median_ns": 3127.0, "deser_std_ns": 946.23663281737, "deser_mad_ns": 685.0, "deser_cv": 0.29009177902661115, "deser_min_ns": 1703.0, "deser_max_ns": 5798.0, "deser_p5_ns": 1951.2, "deser_p25_ns": 2504.0, "deser_p50_ns": 3127.0, "deser_p75_ns": 3840.0, "deser_p95_ns": 5068.399999999999, "deser_p99_ns": 5561.120000000001, "deser_ci_low_ns": 3070.480789473684, "deser_ci_high_ns": 3447.4331578947363, "total_mean_ns": 7697.778947368421, "total_median_ns": 7516.0, "total_std_ns": 2396.296553855586, "total_mad_ns": 1893.0, "total_cv": 0.31129713781593965, "total_min_ns": 4013.0, "total_max_ns": 13965.0, "total_p5_ns": 4606.3, "total_p25_ns": 5615.5, "total_p50_ns": 7516.0, "total_p75_ns": 9351.5, "total_p95_ns": 11634.199999999997, "total_p99_ns": 13884.16, "total_ci_low_ns": 7236.732105263158, "total_ci_high_ns": 8174.957368421053, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9818849449204406, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.308746102292975}, {"serializer": "MS DataContract Json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 12508.546511627907, "avg_time_deser_ns": 23342.511627906977, "avg_time_total_ns": 35851.058139534885, "median_size_bytes": 663.0, "avg_ops_per_sec": 27893.179501367253, "min_ops_per_sec": 22956.314134202614, "max_ops_per_sec": 33340.001333600056, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 12508.546511627907, "ser_median_ns": 12199.5, "ser_std_ns": 1478.8684200068546, "ser_mad_ns": 919.0, "ser_cv": 0.118228638206054, "ser_min_ns": 9774.0, "ser_max_ns": 17142.0, "ser_p5_ns": 10629.75, "ser_p25_ns": 11448.0, "ser_p50_ns": 12199.5, "ser_p75_ns": 13372.0, "ser_p95_ns": 15528.75, "ser_p99_ns": 16779.050000000003, "ser_ci_low_ns": 12211.550872093023, "ser_ci_high_ns": 12826.331686046511, "deser_mean_ns": 23342.511627906977, "deser_median_ns": 23193.5, "deser_std_ns": 1885.3084487483807, "deser_mad_ns": 1006.5, "deser_cv": 0.08076716331135564, "deser_min_ns": 20220.0, "deser_max_ns": 29692.0, "deser_p5_ns": 20528.25, "deser_p25_ns": 22073.75, "deser_p50_ns": 23193.5, "deser_p75_ns": 24135.75, "deser_p95_ns": 26551.25, "deser_p99_ns": 28339.65000000001, "deser_ci_low_ns": 22966.67209302326, "deser_ci_high_ns": 23758.590988372092, "total_mean_ns": 35851.058139534885, "total_median_ns": 35661.5, "total_std_ns": 3052.2961900631703, "total_mad_ns": 1966.5, "total_cv": 0.08513824552077139, "total_min_ns": 29994.0, "total_max_ns": 43561.0, "total_p5_ns": 31421.75, "total_p25_ns": 33782.0, "total_p50_ns": 35661.5, "total_p75_ns": 37629.75, "total_p95_ns": 41474.0, "total_p99_ns": 43440.3, "total_ci_low_ns": 35215.1976744186, "total_ci_high_ns": 36509.06540697674, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.656058125051405}, {"serializer": "MS Bond Fast", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 5615.967741935484, "avg_time_deser_ns": 4361.4838709677415, "avg_time_total_ns": 9977.451612903225, "median_size_bytes": 303.0, "avg_ops_per_sec": 100225.99344974637, "min_ops_per_sec": 73136.8390258173, "max_ops_per_sec": 141743.4443656981, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 5615.967741935484, "ser_median_ns": 5454.0, "ser_std_ns": 950.3201800447471, "ser_mad_ns": 651.0, "ser_cv": 0.16921752825404038, "ser_min_ns": 3822.0, "ser_max_ns": 7878.0, "ser_p5_ns": 4294.0, "ser_p25_ns": 4914.0, "ser_p50_ns": 5454.0, "ser_p75_ns": 6323.0, "ser_p95_ns": 7507.4, "ser_p99_ns": 7866.04, "ser_ci_low_ns": 5428.837634408603, "ser_ci_high_ns": 5819.391129032258, "deser_mean_ns": 4361.4838709677415, "deser_median_ns": 4358.0, "deser_std_ns": 596.8492019310424, "deser_mad_ns": 410.0, "deser_cv": 0.1368454451715332, "deser_min_ns": 3122.0, "deser_max_ns": 5915.0, "deser_p5_ns": 3337.2, "deser_p25_ns": 3927.0, "deser_p50_ns": 4358.0, "deser_p75_ns": 4739.0, "deser_p95_ns": 5320.5999999999985, "deser_p99_ns": 5804.599999999999, "deser_ci_low_ns": 4244.818548387097, "deser_ci_high_ns": 4482.448387096773, "total_mean_ns": 9977.451612903225, "total_median_ns": 9825.0, "total_std_ns": 1493.2280360822103, "total_mad_ns": 1078.0, "total_cv": 0.14966026336335325, "total_min_ns": 7055.0, "total_max_ns": 13673.0, "total_p5_ns": 7728.8, "total_p25_ns": 8858.0, "total_p50_ns": 9825.0, "total_p75_ns": 10935.0, "total_p95_ns": 12966.8, "total_p99_ns": 13443.0, "total_ci_low_ns": 9693.183870967741, "total_ci_high_ns": 10283.55806451613, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.586350280762253}, {"serializer": "Json.Net (Helper)", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 12846.197674418605, "avg_time_deser_ns": 12856.290697674418, "avg_time_total_ns": 25702.488372093023, "median_size_bytes": 673.0, "avg_ops_per_sec": 38906.73873763015, "min_ops_per_sec": 28505.45879535931, "max_ops_per_sec": 54561.326931470976, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 12846.197674418605, "ser_median_ns": 12674.5, "ser_std_ns": 1563.898987408732, "ser_mad_ns": 783.0, "ser_cv": 0.12174022438740895, "ser_min_ns": 9251.0, "ser_max_ns": 16954.0, "ser_p5_ns": 10080.0, "ser_p25_ns": 12111.0, "ser_p50_ns": 12674.5, "ser_p75_ns": 13721.25, "ser_p95_ns": 16052.5, "ser_p99_ns": 16712.600000000002, "ser_ci_low_ns": 12537.397965116279, "ser_ci_high_ns": 13167.513662790698, "deser_mean_ns": 12856.290697674418, "deser_median_ns": 12861.5, "deser_std_ns": 1941.6120341024034, "deser_mad_ns": 1337.0, "deser_cv": 0.15102427906780475, "deser_min_ns": 8990.0, "deser_max_ns": 18127.0, "deser_p5_ns": 10195.75, "deser_p25_ns": 11450.25, "deser_p50_ns": 12861.5, "deser_p75_ns": 13969.75, "deser_p95_ns": 16197.25, "deser_p99_ns": 17978.25, "deser_ci_low_ns": 12468.423837209302, "deser_ci_high_ns": 13249.933430232557, "total_mean_ns": 25702.488372093023, "total_median_ns": 25748.0, "total_std_ns": 3239.029955527484, "total_mad_ns": 2168.0, "total_cv": 0.12602009224306562, "total_min_ns": 18328.0, "total_max_ns": 35081.0, "total_p5_ns": 20258.0, "total_p25_ns": 23457.0, "total_p50_ns": 25748.0, "total_p75_ns": 27811.25, "total_p95_ns": 31256.25, "total_p99_ns": 34299.00000000001, "total_ci_low_ns": 25010.191860465115, "total_ci_high_ns": 26390.832848837206, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.48423389702121}, {"serializer": "fastJson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "2.4.0.4", "avg_time_ser_ns": 12825.52808988764, "avg_time_deser_ns": 17728.685393258427, "avg_time_total_ns": 30554.213483146068, "median_size_bytes": 818.0, "avg_ops_per_sec": 32728.71024978625, "min_ops_per_sec": 26646.770411426136, "max_ops_per_sec": 40743.15514993481, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 12825.52808988764, "ser_median_ns": 12547.0, "ser_std_ns": 1219.2964261286809, "ser_mad_ns": 687.0, "ser_cv": 0.09506793151777056, "ser_min_ns": 9980.0, "ser_max_ns": 16226.0, "ser_p5_ns": 11390.0, "ser_p25_ns": 11964.0, "ser_p50_ns": 12547.0, "ser_p75_ns": 13541.0, "ser_p95_ns": 15045.0, "ser_p99_ns": 16185.52, "ser_ci_low_ns": 12582.271067415732, "ser_ci_high_ns": 13074.040168539326, "deser_mean_ns": 17728.685393258427, "deser_median_ns": 17514.0, "deser_std_ns": 1518.71782491549, "deser_mad_ns": 868.0, "deser_cv": 0.08566443541792461, "deser_min_ns": 14564.0, "deser_max_ns": 21348.0, "deser_p5_ns": 15476.8, "deser_p25_ns": 16757.0, "deser_p50_ns": 17514.0, "deser_p75_ns": 18596.0, "deser_p95_ns": 20483.8, "deser_p99_ns": 21139.440000000002, "deser_ci_low_ns": 17412.702808988764, "deser_ci_high_ns": 18024.071629213482, "total_mean_ns": 30554.213483146068, "total_median_ns": 29988.0, "total_std_ns": 2620.6471202561875, "total_mad_ns": 1560.0, "total_cv": 0.0857704002658015, "total_min_ns": 24544.0, "total_max_ns": 37528.0, "total_p5_ns": 27185.0, "total_p25_ns": 28776.0, "total_p50_ns": 29988.0, "total_p75_ns": 32204.0, "total_p95_ns": 35443.0, "total_p99_ns": 36503.68000000001, "total_ci_low_ns": 30044.606460674157, "total_ci_high_ns": 31153.23988764045, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.080369833492657}, {"serializer": "BinaryPack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.0.3", "avg_time_ser_ns": 2030.5813953488373, "avg_time_deser_ns": 1548.6511627906978, "avg_time_total_ns": 3579.232558139535, "median_size_bytes": 304.0, "avg_ops_per_sec": 279389.50145217567, "min_ops_per_sec": 196889.15140775742, "max_ops_per_sec": 417536.5344467641, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 2030.5813953488373, "ser_median_ns": 1940.5, "ser_std_ns": 387.38084210020685, "ser_mad_ns": 210.5, "ser_cv": 0.1907733632286422, "ser_min_ns": 1339.0, "ser_max_ns": 3283.0, "ser_p5_ns": 1515.5, "ser_p25_ns": 1789.25, "ser_p50_ns": 1940.5, "ser_p75_ns": 2257.0, "ser_p95_ns": 2704.0, "ser_p99_ns": 2987.200000000002, "ser_ci_low_ns": 1953.0252906976746, "ser_ci_high_ns": 2112.18023255814, "deser_mean_ns": 1548.6511627906978, "deser_median_ns": 1563.0, "deser_std_ns": 243.93947018938752, "deser_mad_ns": 159.0, "deser_cv": 0.1575173777352184, "deser_min_ns": 1056.0, "deser_max_ns": 2374.0, "deser_p5_ns": 1223.0, "deser_p25_ns": 1361.25, "deser_p50_ns": 1563.0, "deser_p75_ns": 1676.5, "deser_p95_ns": 1950.5, "deser_p99_ns": 2246.500000000001, "deser_ci_low_ns": 1499.5412790697674, "deser_ci_high_ns": 1600.9072674418605, "total_mean_ns": 3579.232558139535, "total_median_ns": 3528.5, "total_std_ns": 543.2375208911542, "total_mad_ns": 416.5, "total_cv": 0.15177486013189542, "total_min_ns": 2395.0, "total_max_ns": 5079.0, "total_p5_ns": 2805.0, "total_p25_ns": 3110.5, "total_p50_ns": 3528.5, "total_p75_ns": 3927.25, "total_p95_ns": 4473.25, "total_p99_ns": 5032.25, "total_ci_low_ns": 3464.8005813953487, "total_ci_high_ns": 3693.279069767442, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "ServiceStack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 12300.989247311827, "avg_time_deser_ns": 11643.247311827958, "avg_time_total_ns": 23944.236559139787, "median_size_bytes": 649.0, "avg_ops_per_sec": 41763.70365912914, "min_ops_per_sec": 31573.629704470826, "max_ops_per_sec": 54498.882772903155, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 12300.989247311827, "ser_median_ns": 12180.0, "ser_std_ns": 1579.190040706226, "ser_mad_ns": 1082.0, "ser_cv": 0.12837910910712577, "ser_min_ns": 9546.0, "ser_max_ns": 16847.0, "ser_p5_ns": 10104.4, "ser_p25_ns": 11111.0, "ser_p50_ns": 12180.0, "ser_p75_ns": 13319.0, "ser_p95_ns": 14910.599999999991, "ser_p99_ns": 16813.88, "ser_ci_low_ns": 11993.683602150539, "ser_ci_high_ns": 12612.57123655914, "deser_mean_ns": 11643.247311827958, "deser_median_ns": 11387.0, "deser_std_ns": 1747.644661275594, "deser_mad_ns": 1283.0, "deser_cv": 0.15009941938622437, "deser_min_ns": 8481.0, "deser_max_ns": 15929.0, "deser_p5_ns": 9223.0, "deser_p25_ns": 10367.0, "deser_p50_ns": 11387.0, "deser_p75_ns": 12928.0, "deser_p95_ns": 14885.8, "deser_p99_ns": 15764.32, "deser_ci_low_ns": 11288.46505376344, "deser_ci_high_ns": 11989.267741935484, "total_mean_ns": 23944.236559139787, "total_median_ns": 23732.0, "total_std_ns": 2996.4089463666824, "total_mad_ns": 2178.0, "total_cv": 0.1251411352776215, "total_min_ns": 18349.0, "total_max_ns": 31672.0, "total_p5_ns": 19346.4, "total_p25_ns": 21590.0, "total_p50_ns": 23732.0, "total_p75_ns": 25910.0, "total_p95_ns": 28826.199999999993, "total_p99_ns": 30725.32, "total_ci_low_ns": 23352.0873655914, "total_ci_high_ns": 24542.676881720432, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.247691054315457}, {"serializer": "Ceras", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "4.1.7", "avg_time_ser_ns": 6062.127906976744, "avg_time_deser_ns": 13743.755813953489, "avg_time_total_ns": 19805.883720930233, "median_size_bytes": 338.0, "avg_ops_per_sec": 50490.047002711195, "min_ops_per_sec": 35555.555555555555, "max_ops_per_sec": 68222.13125938055, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 6062.127906976744, "ser_median_ns": 6044.5, "ser_std_ns": 1264.3062528890662, "ser_mad_ns": 801.5, "ser_cv": 0.2085581618022294, "ser_min_ns": 3784.0, "ser_max_ns": 9804.0, "ser_p5_ns": 4199.5, "ser_p25_ns": 5172.75, "ser_p50_ns": 6044.5, "ser_p75_ns": 6662.5, "ser_p95_ns": 8141.0, "ser_p99_ns": 9494.600000000002, "ser_ci_low_ns": 5810.609593023256, "ser_ci_high_ns": 6334.203197674418, "deser_mean_ns": 13743.755813953489, "deser_median_ns": 13385.0, "deser_std_ns": 1848.6299469737457, "deser_mad_ns": 1096.0, "deser_cv": 0.13450689695002477, "deser_min_ns": 10572.0, "deser_max_ns": 19133.0, "deser_p5_ns": 11480.25, "deser_p25_ns": 12384.25, "deser_p50_ns": 13385.0, "deser_p75_ns": 14825.5, "deser_p95_ns": 17372.0, "deser_p99_ns": 18831.250000000004, "deser_ci_low_ns": 13375.21976744186, "deser_ci_high_ns": 14121.479941860465, "total_mean_ns": 19805.883720930233, "total_median_ns": 19411.0, "total_std_ns": 2875.902830799828, "total_mad_ns": 1675.0, "total_cv": 0.1452044691023135, "total_min_ns": 14658.0, "total_max_ns": 28125.0, "total_p5_ns": 15909.0, "total_p25_ns": 17909.25, "total_p50_ns": 19411.0, "total_p75_ns": 21228.25, "total_p95_ns": 25240.0, "total_p99_ns": 28114.8, "total_ci_low_ns": 19239.890406976745, "total_ci_high_ns": 20417.37063953488, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.806092774427765}, {"serializer": "ExtendedXmlSerializer", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "3.10.0.0", "avg_time_ser_ns": 19768.483870967742, "avg_time_deser_ns": 24307.36559139785, "avg_time_total_ns": 44075.84946236559, "median_size_bytes": 1022.0, "avg_ops_per_sec": 22688.161707554962, "min_ops_per_sec": 15830.54979499438, "max_ops_per_sec": 29921.30696268813, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 19768.483870967742, "ser_median_ns": 18861.0, "ser_std_ns": 3733.844305261359, "ser_mad_ns": 2368.0, "ser_cv": 0.18887863781728512, "ser_min_ns": 15100.0, "ser_max_ns": 29881.0, "ser_p5_ns": 15563.4, "ser_p25_ns": 16770.0, "ser_p50_ns": 18861.0, "ser_p75_ns": 21682.0, "ser_p95_ns": 26909.599999999995, "ser_p99_ns": 29639.96, "ser_ci_low_ns": 18982.111559139787, "ser_ci_high_ns": 20570.690591397848, "deser_mean_ns": 24307.36559139785, "deser_median_ns": 23399.0, "deser_std_ns": 3972.3597186628695, "deser_mad_ns": 2645.0, "deser_cv": 0.16342205837676832, "deser_min_ns": 17956.0, "deser_max_ns": 33550.0, "deser_p5_ns": 19350.0, "deser_p25_ns": 21116.0, "deser_p50_ns": 23399.0, "deser_p75_ns": 26525.0, "deser_p95_ns": 31974.399999999998, "deser_p99_ns": 33369.68, "deser_ci_low_ns": 23500.22177419355, "deser_ci_high_ns": 25095.875268817206, "total_mean_ns": 44075.84946236559, "total_median_ns": 42626.0, "total_std_ns": 7505.996008910993, "total_mad_ns": 5097.0, "total_cv": 0.17029725122643474, "total_min_ns": 33421.0, "total_max_ns": 63169.0, "total_p5_ns": 34849.4, "total_p25_ns": 37640.0, "total_p50_ns": 42626.0, "total_p75_ns": 47830.0, "total_p95_ns": 59334.6, "total_p99_ns": 61510.24, "total_ci_low_ns": 42626.106451612904, "total_ci_high_ns": 45672.336021505376, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.433751613125685}, {"serializer": "MS Binary", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 17677.370786516854, "avg_time_deser_ns": 18190.20224719101, "avg_time_total_ns": 35867.573033707864, "median_size_bytes": 1197.0, "avg_ops_per_sec": 27880.336343365452, "min_ops_per_sec": 21466.59797355315, "max_ops_per_sec": 38364.15253587048, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 17677.370786516854, "ser_median_ns": 17178.0, "ser_std_ns": 2359.094117269778, "ser_mad_ns": 1532.0, "ser_cv": 0.13345277110265408, "ser_min_ns": 12771.0, "ser_max_ns": 23980.0, "ser_p5_ns": 15165.0, "ser_p25_ns": 15955.0, "ser_p50_ns": 17178.0, "ser_p75_ns": 19303.0, "ser_p95_ns": 22754.399999999998, "ser_p99_ns": 23563.760000000002, "ser_ci_low_ns": 17207.377528089888, "ser_ci_high_ns": 18187.7345505618, "deser_mean_ns": 18190.20224719101, "deser_median_ns": 17838.0, "deser_std_ns": 1794.3989825652645, "deser_mad_ns": 1027.0, "deser_cv": 0.0986464558326921, "deser_min_ns": 13295.0, "deser_max_ns": 22604.0, "deser_p5_ns": 16070.6, "deser_p25_ns": 16913.0, "deser_p50_ns": 17838.0, "deser_p75_ns": 19233.0, "deser_p95_ns": 21507.399999999998, "deser_p99_ns": 22092.72, "deser_ci_low_ns": 17834.86264044944, "deser_ci_high_ns": 18576.052808988763, "total_mean_ns": 35867.573033707864, "total_median_ns": 35104.0, "total_std_ns": 3980.3665114695395, "total_mad_ns": 2557.0, "total_cv": 0.11097395710963896, "total_min_ns": 26066.0, "total_max_ns": 46584.0, "total_p5_ns": 31302.8, "total_p25_ns": 32897.0, "total_p50_ns": 35104.0, "total_p75_ns": 39077.0, "total_p95_ns": 42611.799999999996, "total_p99_ns": 45656.48, "total_ci_low_ns": 35077.03061797753, "total_ci_high_ns": 36697.64213483146, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.223871112114944}, {"serializer": "YamlDotNet", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "17.1.0", "avg_time_ser_ns": 97272.02150537634, "avg_time_deser_ns": 71318.2688172043, "avg_time_total_ns": 168590.29032258064, "median_size_bytes": 719.0, "avg_ops_per_sec": 5931.539699508199, "min_ops_per_sec": 4880.286570427415, "max_ops_per_sec": 7138.981695650932, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 97272.02150537634, "ser_median_ns": 95962.0, "ser_std_ns": 8941.97751202828, "ser_mad_ns": 6219.0, "ser_cv": 0.09192753860403781, "ser_min_ns": 80044.0, "ser_max_ns": 121582.0, "ser_p5_ns": 84427.4, "ser_p25_ns": 90150.0, "ser_p50_ns": 95962.0, "ser_p75_ns": 103181.0, "ser_p95_ns": 114087.99999999996, "ser_p99_ns": 119238.76, "ser_ci_low_ns": 95514.05134408602, "ser_ci_high_ns": 99033.37338709677, "deser_mean_ns": 71318.2688172043, "deser_median_ns": 70654.0, "deser_std_ns": 5197.97816701628, "deser_mad_ns": 3127.0, "deser_cv": 0.07288424485371633, "deser_min_ns": 60032.0, "deser_max_ns": 84532.0, "deser_p5_ns": 64526.2, "deser_p25_ns": 67643.0, "deser_p50_ns": 70654.0, "deser_p75_ns": 73885.0, "deser_p95_ns": 81270.99999999997, "deser_p99_ns": 84299.24, "deser_ci_low_ns": 70291.61102150538, "deser_ci_high_ns": 72444.54919354839, "total_mean_ns": 168590.29032258064, "total_median_ns": 166526.0, "total_std_ns": 13588.681330255391, "total_mad_ns": 8633.0, "total_cv": 0.08060180277437574, "total_min_ns": 140076.0, "total_max_ns": 204906.0, "total_p5_ns": 150339.6, "total_p25_ns": 158415.0, "total_p50_ns": 166526.0, "total_p75_ns": 175466.0, "total_p95_ns": 194937.59999999998, "total_p99_ns": 202252.72, "total_ci_low_ns": 165789.6502688172, "total_ci_high_ns": 171371.34677419355, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.75950938341945}, {"serializer": "YAXLib", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "4.4.0", "avg_time_ser_ns": 194727.04, "avg_time_deser_ns": 114942.16, "avg_time_total_ns": 309669.2, "median_size_bytes": 1435.0, "avg_ops_per_sec": 3229.2523764068237, "min_ops_per_sec": 2048.1940049361474, "max_ops_per_sec": 4649.432769202157, "runs": 75, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 24, "ser_mean_ns": 194727.04, "ser_median_ns": 155486.0, "ser_std_ns": 79298.85486519217, "ser_mad_ns": 18754.0, "ser_cv": 0.40723083381328123, "ser_min_ns": 113772.0, "ser_max_ns": 354833.0, "ser_p5_ns": 126364.8, "ser_p25_ns": 142649.0, "ser_p50_ns": 155486.0, "ser_p75_ns": 214655.5, "ser_p95_ns": 347776.0, "ser_p99_ns": 354773.06, "ser_ci_low_ns": 177099.21366666668, "ser_ci_high_ns": 212934.7713333333, "deser_mean_ns": 114942.16, "deser_median_ns": 111615.0, "deser_std_ns": 10298.908274653664, "deser_mad_ns": 5302.0, "deser_cv": 0.08960078942881937, "deser_min_ns": 101308.0, "deser_max_ns": 142283.0, "deser_p5_ns": 102789.4, "deser_p25_ns": 107661.0, "deser_p50_ns": 111615.0, "deser_p75_ns": 121809.0, "deser_p95_ns": 133803.8, "deser_p99_ns": 139545.00000000003, "deser_ci_low_ns": 112640.18333333333, "deser_ci_high_ns": 117243.14766666666, "total_mean_ns": 309669.2, "total_median_ns": 271778.0, "total_std_ns": 86383.204051576, "total_mad_ns": 27861.0, "total_cv": 0.27895316696518735, "total_min_ns": 215080.0, "total_max_ns": 488235.0, "total_p5_ns": 232187.9, "total_p25_ns": 247503.5, "total_p50_ns": 271778.0, "total_p75_ns": 349845.5, "total_p95_ns": 476617.5, "total_p99_ns": 485525.12, "total_ci_low_ns": 291047.8036666667, "total_ci_high_ns": 328809.41, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.16935047784355}, {"serializer": "MS XmlSerializer", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 16069.758241758242, "avg_time_deser_ns": 23395.824175824175, "avg_time_total_ns": 39465.58241758242, "median_size_bytes": 1570.0, "avg_ops_per_sec": 25338.53395140793, "min_ops_per_sec": 20664.999690025004, "max_ops_per_sec": 30416.40052316209, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 16069.758241758242, "ser_median_ns": 15706.0, "ser_std_ns": 1615.194713688032, "ser_mad_ns": 902.0, "ser_cv": 0.10051145072555295, "ser_min_ns": 13000.0, "ser_max_ns": 20827.0, "ser_p5_ns": 14000.5, "ser_p25_ns": 14949.5, "ser_p50_ns": 15706.0, "ser_p75_ns": 16733.0, "ser_p95_ns": 19252.0, "ser_p99_ns": 20359.899999999998, "ser_ci_low_ns": 15761.792032967034, "ser_ci_high_ns": 16412.652472527472, "deser_mean_ns": 23395.824175824175, "deser_median_ns": 23038.0, "deser_std_ns": 1642.4058003997711, "deser_mad_ns": 891.0, "deser_cv": 0.07020080968538538, "deser_min_ns": 19877.0, "deser_max_ns": 27564.0, "deser_p5_ns": 21324.5, "deser_p25_ns": 22260.5, "deser_p50_ns": 23038.0, "deser_p75_ns": 24424.5, "deser_p95_ns": 26518.0, "deser_p99_ns": 27272.399999999998, "deser_ci_low_ns": 23065.228846153845, "deser_ci_high_ns": 23730.542857142857, "total_mean_ns": 39465.58241758242, "total_median_ns": 38542.0, "total_std_ns": 2945.346389988919, "total_mad_ns": 1432.0, "total_cv": 0.074630759501391, "total_min_ns": 32877.0, "total_max_ns": 48391.0, "total_p5_ns": 36087.0, "total_p25_ns": 37388.0, "total_p50_ns": 38542.0, "total_p75_ns": 41190.5, "total_p95_ns": 45077.5, "total_p99_ns": 46603.59999999999, "total_ci_low_ns": 38871.893956043954, "total_ci_high_ns": 40078.28489010989, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.65160002906277}, {"serializer": "SharpYaml", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "3.13.0", "avg_time_ser_ns": 64895.54945054945, "avg_time_deser_ns": 69179.94505494506, "avg_time_total_ns": 134075.4945054945, "median_size_bytes": 787.0, "avg_ops_per_sec": 7458.484517907329, "min_ops_per_sec": 6147.755147207997, "max_ops_per_sec": 8741.18233232227, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 64895.54945054945, "ser_median_ns": 64275.0, "ser_std_ns": 7725.365753676846, "ser_mad_ns": 5553.0, "ser_cv": 0.11904307489627762, "ser_min_ns": 49688.0, "ser_max_ns": 87174.0, "ser_p5_ns": 53696.0, "ser_p25_ns": 58984.5, "ser_p50_ns": 64275.0, "ser_p75_ns": 69707.5, "ser_p95_ns": 77801.0, "ser_p99_ns": 85437.9, "ser_ci_low_ns": 63328.458516483515, "ser_ci_high_ns": 66528.78873626374, "deser_mean_ns": 69179.94505494506, "deser_median_ns": 68895.0, "deser_std_ns": 3328.3116719797117, "deser_mad_ns": 1977.0, "deser_cv": 0.048110932573540696, "deser_min_ns": 62816.0, "deser_max_ns": 77583.0, "deser_p5_ns": 64479.5, "deser_p25_ns": 67060.5, "deser_p50_ns": 68895.0, "deser_p75_ns": 70984.0, "deser_p95_ns": 75513.0, "deser_p99_ns": 77235.59999999999, "deser_ci_low_ns": 68503.29395604396, "deser_ci_high_ns": 69834.87335164835, "total_mean_ns": 134075.4945054945, "total_median_ns": 133893.0, "total_std_ns": 9958.954176879804, "total_mad_ns": 6859.0, "total_cv": 0.07427870554280655, "total_min_ns": 114401.0, "total_max_ns": 162661.0, "total_p5_ns": 118454.0, "total_p25_ns": 127487.5, "total_p50_ns": 133893.0, "total_p75_ns": 140937.5, "total_p95_ns": 151300.0, "total_p99_ns": 160338.09999999998, "total_ci_low_ns": 132111.41675824177, "total_ci_high_ns": 136146.49615384615, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.167903391794905}, {"serializer": "FsPicklerJson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 19724.166666666668, "avg_time_deser_ns": 19675.37777777778, "avg_time_total_ns": 39399.544444444444, "median_size_bytes": 1004.0, "avg_ops_per_sec": 25381.004123285125, "min_ops_per_sec": 19400.900201769364, "max_ops_per_sec": 33627.00921380053, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 19724.166666666668, "ser_median_ns": 19301.5, "ser_std_ns": 3176.9800770719917, "ser_mad_ns": 1977.0, "ser_cv": 0.1610704335834378, "ser_min_ns": 13291.0, "ser_max_ns": 27946.0, "ser_p5_ns": 14591.7, "ser_p25_ns": 17922.25, "ser_p50_ns": 19301.5, "ser_p75_ns": 21797.25, "ser_p95_ns": 25853.349999999995, "ser_p99_ns": 27350.59, "ser_ci_low_ns": 19055.176666666666, "ser_ci_high_ns": 20409.79472222222, "deser_mean_ns": 19675.37777777778, "deser_median_ns": 19561.5, "deser_std_ns": 1837.0645709127568, "deser_mad_ns": 1201.5, "deser_cv": 0.09336870639340998, "deser_min_ns": 15311.0, "deser_max_ns": 24283.0, "deser_p5_ns": 16960.25, "deser_p25_ns": 18390.5, "deser_p50_ns": 19561.5, "deser_p75_ns": 20760.5, "deser_p95_ns": 22950.85, "deser_p99_ns": 24088.98, "deser_ci_low_ns": 19291.151944444446, "deser_ci_high_ns": 20056.37583333333, "total_mean_ns": 39399.544444444444, "total_median_ns": 38952.0, "total_std_ns": 4621.7187672089085, "total_mad_ns": 2831.5, "total_cv": 0.11730386308719355, "total_min_ns": 29738.0, "total_max_ns": 51544.0, "total_p5_ns": 31694.45, "total_p25_ns": 37149.5, "total_p50_ns": 38952.0, "total_p75_ns": 42677.0, "total_p95_ns": 46885.35, "total_p99_ns": 50114.659999999996, "total_ci_low_ns": 38450.68805555556, "total_ci_high_ns": 40343.48833333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.719642247209412}, {"serializer": "Hyperion", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "0.12.2", "avg_time_ser_ns": 7184.5, "avg_time_deser_ns": 5499.739130434783, "avg_time_total_ns": 12684.239130434782, "median_size_bytes": 637.0, "avg_ops_per_sec": 78837.99648656756, "min_ops_per_sec": 55894.02492873512, "max_ops_per_sec": 117096.018735363, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 7184.5, "ser_median_ns": 7007.0, "ser_std_ns": 1284.3594675005288, "ser_mad_ns": 858.0, "ser_cv": 0.17876810738402515, "ser_min_ns": 4088.0, "ser_max_ns": 10561.0, "ser_p5_ns": 5284.1, "ser_p25_ns": 6291.5, "ser_p50_ns": 7007.0, "ser_p75_ns": 8046.25, "ser_p95_ns": 9311.5, "ser_p99_ns": 10506.4, "ser_ci_low_ns": 6929.861684782609, "ser_ci_high_ns": 7440.399456521739, "deser_mean_ns": 5499.739130434783, "deser_median_ns": 5341.0, "deser_std_ns": 932.8027466545478, "deser_mad_ns": 522.0, "deser_cv": 0.16960854406576278, "deser_min_ns": 3839.0, "deser_max_ns": 8141.0, "deser_p5_ns": 4343.6, "deser_p25_ns": 4805.25, "deser_p50_ns": 5341.0, "deser_p75_ns": 5838.25, "deser_p95_ns": 7203.45, "deser_p99_ns": 7901.670000000001, "deser_ci_low_ns": 5314.211956521739, "deser_ci_high_ns": 5694.013315217391, "total_mean_ns": 12684.239130434782, "total_median_ns": 12386.0, "total_std_ns": 2072.356191378907, "total_mad_ns": 1310.5, "total_cv": 0.1633804101348468, "total_min_ns": 8540.0, "total_max_ns": 17891.0, "total_p5_ns": 9587.65, "total_p25_ns": 11086.75, "total_p50_ns": 12386.0, "total_p75_ns": 13685.5, "total_p95_ns": 16623.850000000002, "total_p99_ns": 17761.78, "total_ci_low_ns": 12259.6875, "total_ci_high_ns": 13108.795923913043, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.89774249622822}, {"serializer": "ServiceStack Json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 13315.152173913044, "avg_time_deser_ns": 13032.641304347826, "avg_time_total_ns": 26347.793478260868, "median_size_bytes": 663.0, "avg_ops_per_sec": 37953.84235211513, "min_ops_per_sec": 26780.93197643278, "max_ops_per_sec": 51738.41059602649, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 13315.152173913044, "ser_median_ns": 12761.5, "ser_std_ns": 1942.238206635299, "ser_mad_ns": 1011.5, "ser_cv": 0.14586676751922664, "ser_min_ns": 10033.0, "ser_max_ns": 18432.0, "ser_p5_ns": 11222.75, "ser_p25_ns": 11875.75, "ser_p50_ns": 12761.5, "ser_p75_ns": 14626.25, "ser_p95_ns": 16934.85, "ser_p99_ns": 17631.200000000004, "ser_ci_low_ns": 12929.486141304349, "ser_ci_high_ns": 13716.772554347825, "deser_mean_ns": 13032.641304347826, "deser_median_ns": 12988.5, "deser_std_ns": 2600.001540918908, "deser_mad_ns": 2016.0, "deser_cv": 0.1994992020574924, "deser_min_ns": 9295.0, "deser_max_ns": 19962.0, "deser_p5_ns": 9758.15, "deser_p25_ns": 10924.25, "deser_p50_ns": 12988.5, "deser_p75_ns": 14766.0, "deser_p95_ns": 17663.95, "deser_p99_ns": 19803.66, "deser_ci_low_ns": 12512.682608695653, "deser_ci_high_ns": 13589.28831521739, "total_mean_ns": 26347.793478260868, "total_median_ns": 25456.0, "total_std_ns": 4216.2171512826735, "total_mad_ns": 2688.5, "total_cv": 0.1600216410820665, "total_min_ns": 19328.0, "total_max_ns": 37340.0, "total_p5_ns": 21246.25, "total_p25_ns": 22919.5, "total_p50_ns": 25456.0, "total_p75_ns": 28863.0, "total_p95_ns": 34546.0, "total_p99_ns": 36461.850000000006, "total_ci_low_ns": 25476.18233695652, "total_ci_high_ns": 27209.47119565217, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.420781270063374}, {"serializer": "System.Text.Json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "8.0.0.0", "avg_time_ser_ns": 11515.489130434782, "avg_time_deser_ns": 10592.739130434782, "avg_time_total_ns": 22108.228260869564, "median_size_bytes": 663.0, "avg_ops_per_sec": 45232.02801239161, "min_ops_per_sec": 32598.774286086842, "max_ops_per_sec": 69715.56051310652, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 11515.489130434782, "ser_median_ns": 11324.0, "ser_std_ns": 1749.851846127848, "ser_mad_ns": 1145.5, "ser_cv": 0.15195636297403026, "ser_min_ns": 8503.0, "ser_max_ns": 16166.0, "ser_p5_ns": 8886.95, "ser_p25_ns": 10275.25, "ser_p50_ns": 11324.0, "ser_p75_ns": 12577.25, "ser_p95_ns": 14515.3, "ser_p99_ns": 15513.530000000002, "ser_ci_low_ns": 11147.96114130435, "ser_ci_high_ns": 11872.31277173913, "deser_mean_ns": 10592.739130434782, "deser_median_ns": 10217.0, "deser_std_ns": 1722.441749247528, "deser_mad_ns": 1107.0, "deser_cv": 0.16260588767815995, "deser_min_ns": 5756.0, "deser_max_ns": 15453.0, "deser_p5_ns": 8540.75, "deser_p25_ns": 9297.5, "deser_p50_ns": 10217.0, "deser_p75_ns": 11660.75, "deser_p95_ns": 14037.95, "deser_p99_ns": 15379.29, "deser_ci_low_ns": 10252.154891304348, "deser_ci_high_ns": 10951.335869565217, "total_mean_ns": 22108.228260869564, "total_median_ns": 22017.5, "total_std_ns": 3266.462387620895, "total_mad_ns": 2291.5, "total_cv": 0.14774871821829189, "total_min_ns": 14344.0, "total_max_ns": 30676.0, "total_p5_ns": 17565.75, "total_p25_ns": 19818.75, "total_p50_ns": 22017.5, "total_p75_ns": 24300.0, "total_p95_ns": 27617.9, "total_p99_ns": 30489.45, "total_ci_low_ns": 21464.786141304347, "total_ci_high_ns": 22785.108152173914, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.755573181049768}, {"serializer": "Google.Protobuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "3.35.1", "avg_time_ser_ns": 3140.633333333333, "avg_time_deser_ns": 3251.5555555555557, "avg_time_total_ns": 6392.188888888889, "median_size_bytes": 291.0, "avg_ops_per_sec": 156440.93398714057, "min_ops_per_sec": 82966.89620841284, "max_ops_per_sec": 275558.0049600441, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 3140.633333333333, "ser_median_ns": 2889.0, "ser_std_ns": 1057.2566519487536, "ser_mad_ns": 681.5, "ser_cv": 0.33663804071856646, "ser_min_ns": 1628.0, "ser_max_ns": 6459.0, "ser_p5_ns": 1850.45, "ser_p25_ns": 2300.0, "ser_p50_ns": 2889.0, "ser_p75_ns": 3819.0, "ser_p95_ns": 4918.7, "ser_p99_ns": 6445.65, "ser_ci_low_ns": 2925.3516666666665, "ser_ci_high_ns": 3359.8241666666668, "deser_mean_ns": 3251.5555555555557, "deser_median_ns": 3129.5, "deser_std_ns": 810.827682425043, "deser_mad_ns": 482.0, "deser_cv": 0.24936608603831967, "deser_min_ns": 1791.0, "deser_max_ns": 5594.0, "deser_p5_ns": 2102.6, "deser_p25_ns": 2684.5, "deser_p50_ns": 3129.5, "deser_p75_ns": 3630.0, "deser_p95_ns": 4691.499999999999, "deser_p99_ns": 5471.18, "deser_ci_low_ns": 3082.130277777778, "deser_ci_high_ns": 3427.916388888889, "total_mean_ns": 6392.188888888889, "total_median_ns": 6192.0, "total_std_ns": 1782.8509103159697, "total_mad_ns": 1278.0, "total_cv": 0.27891086156965406, "total_min_ns": 3629.0, "total_max_ns": 12053.0, "total_p5_ns": 4200.8, "total_p25_ns": 4964.25, "total_p50_ns": 6192.0, "total_p75_ns": 7593.5, "total_p95_ns": 9114.2, "total_p99_ns": 11659.619999999999, "total_ci_low_ns": 6039.235833333333, "total_ci_high_ns": 6761.44, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9485788113695091, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.105235466054372}, {"serializer": "MS DataContract", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 14217.183908045978, "avg_time_deser_ns": 21184.25287356322, "avg_time_total_ns": 35401.4367816092, "median_size_bytes": 1651.0, "avg_ops_per_sec": 28247.441090286287, "min_ops_per_sec": 23186.792802819513, "max_ops_per_sec": 33893.70932754881, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 14217.183908045978, "ser_median_ns": 13994.0, "ser_std_ns": 1505.6681629586712, "ser_mad_ns": 934.0, "ser_cv": 0.10590481017176429, "ser_min_ns": 11296.0, "ser_max_ns": 18436.0, "ser_p5_ns": 12092.7, "ser_p25_ns": 13090.0, "ser_p50_ns": 13994.0, "ser_p75_ns": 15134.0, "ser_p95_ns": 16896.0, "ser_p99_ns": 18314.74, "ser_ci_low_ns": 13904.958045977011, "ser_ci_high_ns": 14553.561781609196, "deser_mean_ns": 21184.25287356322, "deser_median_ns": 20927.0, "deser_std_ns": 1406.1478073949575, "deser_mad_ns": 885.0, "deser_cv": 0.06637703089117447, "deser_min_ns": 18208.0, "deser_max_ns": 24692.0, "deser_p5_ns": 19226.1, "deser_p25_ns": 20281.0, "deser_p50_ns": 20927.0, "deser_p75_ns": 21897.0, "deser_p95_ns": 23850.8, "deser_p99_ns": 24604.28, "deser_ci_low_ns": 20889.424425287358, "deser_ci_high_ns": 21499.825, "total_mean_ns": 35401.4367816092, "total_median_ns": 35336.0, "total_std_ns": 2765.5431347674344, "total_mad_ns": 1775.0, "total_cv": 0.07811951678198878, "total_min_ns": 29504.0, "total_max_ns": 43128.0, "total_p5_ns": 31593.6, "total_p25_ns": 33344.5, "total_p50_ns": 35336.0, "total_p75_ns": 36928.0, "total_p95_ns": 40897.3, "total_p99_ns": 42867.42, "total_ci_low_ns": 34839.027586206896, "total_ci_high_ns": 35981.66637931034, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.854759610059556}, {"serializer": "Apache.Avro", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.12.1", "avg_time_ser_ns": 16955.679012345678, "avg_time_deser_ns": 7532.83950617284, "avg_time_total_ns": 24488.51851851852, "median_size_bytes": 288.0, "avg_ops_per_sec": 40835.46333126635, "min_ops_per_sec": 9654.466638990529, "max_ops_per_sec": 120598.16690786301, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 16955.679012345678, "ser_median_ns": 7913.0, "ser_std_ns": 25324.183852015427, "ser_mad_ns": 775.0, "ser_cv": 1.4935517376553613, "ser_min_ns": 3733.0, "ser_max_ns": 95803.0, "ser_p5_ns": 6467.0, "ser_p25_ns": 7302.0, "ser_p50_ns": 7913.0, "ser_p75_ns": 8989.0, "ser_p95_ns": 91895.0, "ser_p99_ns": 94918.2, "ser_ci_low_ns": 11954.271296296298, "ser_ci_high_ns": 22570.89074074073, "deser_mean_ns": 7532.83950617284, "deser_median_ns": 7336.0, "deser_std_ns": 1320.0529483394796, "deser_mad_ns": 728.0, "deser_cv": 0.17523975484380794, "deser_min_ns": 4559.0, "deser_max_ns": 11504.0, "deser_p5_ns": 5837.0, "deser_p25_ns": 6734.0, "deser_p50_ns": 7336.0, "deser_p75_ns": 8168.0, "deser_p95_ns": 9826.0, "deser_p99_ns": 11477.6, "deser_ci_low_ns": 7251.941358024691, "deser_ci_high_ns": 7835.855555555556, "total_mean_ns": 24488.51851851852, "total_median_ns": 15316.0, "total_std_ns": 25591.20617375777, "total_mad_ns": 1709.0, "total_cv": 1.0450287613113627, "total_min_ns": 8292.0, "total_max_ns": 103579.0, "total_p5_ns": 12543.0, "total_p25_ns": 13934.0, "total_p50_ns": 15316.0, "total_p75_ns": 17053.0, "total_p95_ns": 99310.0, "total_p99_ns": 103189.4, "total_ci_low_ns": 19135.55216049383, "total_ci_high_ns": 30265.211419753086, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.1677769834168146}, {"serializer": "ZeroFormatter", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.6.4", "avg_time_ser_ns": 3232.9270833333335, "avg_time_deser_ns": 2309.5, "avg_time_total_ns": 5542.427083333333, "median_size_bytes": 303.0, "avg_ops_per_sec": 180426.37006576167, "min_ops_per_sec": 102606.19741432382, "max_ops_per_sec": 321130.3789338471, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 3232.9270833333335, "ser_median_ns": 3057.5, "ser_std_ns": 906.821983862691, "ser_mad_ns": 641.0, "ser_cv": 0.28049565006820554, "ser_min_ns": 1870.0, "ser_max_ns": 5724.0, "ser_p5_ns": 2105.0, "ser_p25_ns": 2478.0, "ser_p50_ns": 3057.5, "ser_p75_ns": 3781.0, "ser_p95_ns": 5073.0, "ser_p99_ns": 5420.949999999999, "ser_ci_low_ns": 3056.551041666667, "ser_ci_high_ns": 3425.5421874999997, "deser_mean_ns": 2309.5, "deser_median_ns": 2190.0, "deser_std_ns": 784.7547119289802, "deser_mad_ns": 649.5, "deser_cv": 0.3397942030435073, "deser_min_ns": 1148.0, "deser_max_ns": 4022.0, "deser_p5_ns": 1282.75, "deser_p25_ns": 1655.75, "deser_p50_ns": 2190.0, "deser_p75_ns": 2933.75, "deser_p95_ns": 3619.0, "deser_p99_ns": 3931.7499999999995, "deser_ci_low_ns": 2162.1328125, "deser_ci_high_ns": 2462.445572916666, "total_mean_ns": 5542.427083333333, "total_median_ns": 5195.0, "total_std_ns": 1626.9850110576126, "total_mad_ns": 1244.5, "total_cv": 0.29355099969652815, "total_min_ns": 3114.0, "total_max_ns": 9746.0, "total_p5_ns": 3472.25, "total_p25_ns": 4125.25, "total_p50_ns": 5195.0, "total_p75_ns": 6687.75, "total_p95_ns": 8564.0, "total_p99_ns": 9344.15, "total_ci_low_ns": 5215.134635416667, "total_ci_high_ns": 5864.469270833333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.7753149224806202, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.5772175951206662}, {"serializer": "MS Bond Json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 8938.359550561798, "avg_time_deser_ns": 11610.303370786516, "avg_time_total_ns": 20548.662921348314, "median_size_bytes": 663.0, "avg_ops_per_sec": 48664.96685587679, "min_ops_per_sec": 41182.76912939626, "max_ops_per_sec": 57867.02158439905, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 8938.359550561798, "ser_median_ns": 8820.0, "ser_std_ns": 834.4620783255715, "ser_mad_ns": 550.0, "ser_cv": 0.09335740787839794, "ser_min_ns": 6820.0, "ser_max_ns": 11143.0, "ser_p5_ns": 7776.0, "ser_p25_ns": 8353.0, "ser_p50_ns": 8820.0, "ser_p75_ns": 9465.0, "ser_p95_ns": 10428.599999999999, "ser_p99_ns": 10796.280000000002, "ser_ci_low_ns": 8774.191011235955, "ser_ci_high_ns": 9112.476685393258, "deser_mean_ns": 11610.303370786516, "deser_median_ns": 11577.0, "deser_std_ns": 876.4089488113927, "deser_mad_ns": 525.0, "deser_cv": 0.07548544778051068, "deser_min_ns": 9515.0, "deser_max_ns": 13690.0, "deser_p5_ns": 10238.2, "deser_p25_ns": 11080.0, "deser_p50_ns": 11577.0, "deser_p75_ns": 12124.0, "deser_p95_ns": 13212.199999999999, "deser_p99_ns": 13539.52, "deser_ci_low_ns": 11438.817134831459, "deser_ci_high_ns": 11782.459831460674, "total_mean_ns": 20548.662921348314, "total_median_ns": 20560.0, "total_std_ns": 1597.0886648112687, "total_mad_ns": 967.0, "total_cv": 0.0777222669389369, "total_min_ns": 17281.0, "total_max_ns": 24282.0, "total_p5_ns": 17718.4, "total_p25_ns": 19559.0, "total_p50_ns": 20560.0, "total_p75_ns": 21513.0, "total_p95_ns": 23470.6, "total_p99_ns": 24251.2, "total_ci_low_ns": 20222.982584269663, "total_ci_high_ns": 20897.485393258426, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.067802484852068}, {"serializer": "GroBuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.9.2", "avg_time_ser_ns": 1992.1914893617022, "avg_time_deser_ns": 2449.1702127659573, "avg_time_total_ns": 4441.36170212766, "median_size_bytes": 369.0, "avg_ops_per_sec": 225156.17215345113, "min_ops_per_sec": 132415.25423728814, "max_ops_per_sec": 586854.4600938967, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 1992.1914893617022, "ser_median_ns": 1865.5, "ser_std_ns": 555.1071247307049, "ser_mad_ns": 331.0, "ser_cv": 0.2786414497275867, "ser_min_ns": 652.0, "ser_max_ns": 3416.0, "ser_p5_ns": 1337.35, "ser_p25_ns": 1565.5, "ser_p50_ns": 1865.5, "ser_p75_ns": 2370.0, "ser_p95_ns": 3026.7, "ser_p99_ns": 3325.7899999999995, "ser_ci_low_ns": 1881.2683510638296, "ser_ci_high_ns": 2110.311968085106, "deser_mean_ns": 2449.1702127659573, "deser_median_ns": 2253.5, "deser_std_ns": 633.0605236705743, "deser_mad_ns": 381.5, "deser_cv": 0.2584795945871115, "deser_min_ns": 1052.0, "deser_max_ns": 4320.0, "deser_p5_ns": 1779.95, "deser_p25_ns": 1932.0, "deser_p50_ns": 2253.5, "deser_p75_ns": 2864.0, "deser_p95_ns": 3663.25, "deser_p99_ns": 4148.879999999999, "deser_ci_low_ns": 2326.9422872340424, "deser_ci_high_ns": 2579.006914893617, "total_mean_ns": 4441.36170212766, "total_median_ns": 4277.5, "total_std_ns": 1134.5994115784042, "total_mad_ns": 749.0, "total_cv": 0.2554620604385515, "total_min_ns": 1704.0, "total_max_ns": 7552.0, "total_p5_ns": 3205.7, "total_p25_ns": 3533.0, "total_p50_ns": 4277.5, "total_p75_ns": 5041.25, "total_p95_ns": 6665.9, "total_p99_ns": 7347.399999999999, "total_ci_low_ns": 4215.33085106383, "total_ci_high_ns": 4669.04255319149, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.48503216229589313, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 0.9518203917392333}, {"serializer": "NetJSON", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.0.0", "avg_time_ser_ns": 8211.770114942528, "avg_time_deser_ns": 8084.379310344828, "avg_time_total_ns": 16296.149425287356, "median_size_bytes": 663.0, "avg_ops_per_sec": 61364.18941079798, "min_ops_per_sec": 50236.10971566362, "max_ops_per_sec": 70806.48587410607, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 8211.770114942528, "ser_median_ns": 8101.0, "ser_std_ns": 773.9917327415793, "ser_mad_ns": 550.0, "ser_cv": 0.09425394548407864, "ser_min_ns": 6717.0, "ser_max_ns": 10367.0, "ser_p5_ns": 7144.4, "ser_p25_ns": 7609.5, "ser_p50_ns": 8101.0, "ser_p75_ns": 8719.0, "ser_p95_ns": 9509.1, "ser_p99_ns": 10037.62, "ser_ci_low_ns": 8049.677873563219, "ser_ci_high_ns": 8369.004310344826, "deser_mean_ns": 8084.379310344828, "deser_median_ns": 8066.0, "deser_std_ns": 505.04469618871957, "deser_mad_ns": 360.0, "deser_cv": 0.06247167244397611, "deser_min_ns": 6961.0, "deser_max_ns": 9539.0, "deser_p5_ns": 7379.4, "deser_p25_ns": 7734.5, "deser_p50_ns": 8066.0, "deser_p75_ns": 8394.0, "deser_p95_ns": 9114.0, "deser_p99_ns": 9363.56, "deser_ci_low_ns": 7981.433908045977, "deser_ci_high_ns": 8186.201724137931, "total_mean_ns": 16296.149425287356, "total_median_ns": 16245.0, "total_std_ns": 1177.8543611232706, "total_mad_ns": 842.0, "total_cv": 0.07227807811430283, "total_min_ns": 14123.0, "total_max_ns": 19906.0, "total_p5_ns": 14602.4, "total_p25_ns": 15396.5, "total_p50_ns": 16245.0, "total_p75_ns": 17052.0, "total_p95_ns": 18124.4, "total_p99_ns": 19401.18, "total_ci_low_ns": 16055.136781609195, "total_ci_high_ns": 16543.54712643678, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.77816555187972}, {"serializer": "Jil", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "2.17.0", "avg_time_ser_ns": 12537.417582417582, "avg_time_deser_ns": 12554.813186813188, "avg_time_total_ns": 25092.23076923077, "median_size_bytes": 663.0, "avg_ops_per_sec": 39852.97318508027, "min_ops_per_sec": 32051.28205128205, "max_ops_per_sec": 51514.52709664125, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 12537.417582417582, "ser_median_ns": 12432.0, "ser_std_ns": 1442.1446996742507, "ser_mad_ns": 982.0, "ser_cv": 0.1150272526374736, "ser_min_ns": 9500.0, "ser_max_ns": 15777.0, "ser_p5_ns": 10226.5, "ser_p25_ns": 11621.0, "ser_p50_ns": 12432.0, "ser_p75_ns": 13512.0, "ser_p95_ns": 15110.0, "ser_p99_ns": 15743.699999999999, "ser_ci_low_ns": 12239.334340659341, "ser_ci_high_ns": 12832.154395604395, "deser_mean_ns": 12554.813186813188, "deser_median_ns": 12473.0, "deser_std_ns": 1159.8863633236558, "deser_mad_ns": 832.0, "deser_cv": 0.09238579229055593, "deser_min_ns": 9912.0, "deser_max_ns": 15559.0, "deser_p5_ns": 11019.0, "deser_p25_ns": 11739.0, "deser_p50_ns": 12473.0, "deser_p75_ns": 13389.5, "deser_p95_ns": 14527.0, "deser_p99_ns": 15436.599999999999, "deser_ci_low_ns": 12331.06565934066, "deser_ci_high_ns": 12801.516758241758, "total_mean_ns": 25092.23076923077, "total_median_ns": 24905.0, "total_std_ns": 2453.3958057123964, "total_mad_ns": 1598.0, "total_cv": 0.09777511725744455, "total_min_ns": 19412.0, "total_max_ns": 31200.0, "total_p5_ns": 21427.0, "total_p25_ns": 23384.5, "total_p50_ns": 24905.0, "total_p75_ns": 26579.5, "total_p95_ns": 29493.0, "total_p99_ns": 30889.499999999996, "total_ci_low_ns": 24593.070879120878, "total_ci_high_ns": 25572.980494505497, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.902389682914807}, {"serializer": "Json.Net", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 12132.604395604396, "avg_time_deser_ns": 12697.945054945056, "avg_time_total_ns": 24830.54945054945, "median_size_bytes": 678.0, "avg_ops_per_sec": 40272.97108312164, "min_ops_per_sec": 28865.027133125506, "max_ops_per_sec": 57836.8999421631, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 12132.604395604396, "ser_median_ns": 12075.0, "ser_std_ns": 1835.0151611793954, "ser_mad_ns": 947.0, "ser_cv": 0.15124659976914895, "ser_min_ns": 8439.0, "ser_max_ns": 16507.0, "ser_p5_ns": 9018.0, "ser_p25_ns": 11078.5, "ser_p50_ns": 12075.0, "ser_p75_ns": 13003.0, "ser_p95_ns": 15675.5, "ser_p99_ns": 16353.999999999998, "ser_ci_low_ns": 11746.340384615385, "ser_ci_high_ns": 12520.87445054945, "deser_mean_ns": 12697.945054945056, "deser_median_ns": 12750.0, "deser_std_ns": 2028.0941757808944, "deser_mad_ns": 1447.0, "deser_cv": 0.15971829827623002, "deser_min_ns": 8757.0, "deser_max_ns": 18732.0, "deser_p5_ns": 9610.0, "deser_p25_ns": 11202.5, "deser_p50_ns": 12750.0, "deser_p75_ns": 14075.5, "deser_p95_ns": 15577.5, "deser_p99_ns": 18147.899999999998, "deser_ci_low_ns": 12294.165659340659, "deser_ci_high_ns": 13113.290934065933, "total_mean_ns": 24830.54945054945, "total_median_ns": 24819.0, "total_std_ns": 3516.83609153877, "total_mad_ns": 2451.0, "total_cv": 0.14163343821861943, "total_min_ns": 17290.0, "total_max_ns": 34644.0, "total_p5_ns": 18769.0, "total_p25_ns": 22392.5, "total_p50_ns": 24819.0, "total_p75_ns": 27271.5, "total_p95_ns": 30605.0, "total_p99_ns": 32732.399999999987, "total_ci_low_ns": 24129.2228021978, "total_ci_high_ns": 25517.977472527473, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.297065658584902}, {"serializer": "Utf8Json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.3.7", "avg_time_ser_ns": 9715.885416666666, "avg_time_deser_ns": 9272.354166666666, "avg_time_total_ns": 18988.239583333332, "median_size_bytes": 663.0, "avg_ops_per_sec": 52664.1764557119, "min_ops_per_sec": 36429.87249544627, "max_ops_per_sec": 79082.64136022143, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 9715.885416666666, "ser_median_ns": 9559.0, "ser_std_ns": 2129.7783816992574, "ser_mad_ns": 1598.0, "ser_cv": 0.21920579446581653, "ser_min_ns": 6358.0, "ser_max_ns": 15678.0, "ser_p5_ns": 6934.75, "ser_p25_ns": 7884.25, "ser_p50_ns": 9559.0, "ser_p75_ns": 11049.25, "ser_p95_ns": 13165.0, "ser_p99_ns": 15667.55, "ser_ci_low_ns": 9293.1078125, "ser_ci_high_ns": 10159.98828125, "deser_mean_ns": 9272.354166666666, "deser_median_ns": 9177.5, "deser_std_ns": 1285.4817076154895, "deser_mad_ns": 897.5, "deser_cv": 0.1386359585181386, "deser_min_ns": 6287.0, "deser_max_ns": 12689.0, "deser_p5_ns": 7314.25, "deser_p25_ns": 8382.75, "deser_p50_ns": 9177.5, "deser_p75_ns": 10141.75, "deser_p95_ns": 11661.75, "deser_p99_ns": 12319.449999999999, "deser_ci_low_ns": 9018.434114583333, "deser_ci_high_ns": 9526.104687500001, "total_mean_ns": 18988.239583333332, "total_median_ns": 18787.0, "total_std_ns": 3220.2766234392498, "total_mad_ns": 2338.0, "total_cv": 0.16959321633300875, "total_min_ns": 12645.0, "total_max_ns": 27450.0, "total_p5_ns": 14446.0, "total_p25_ns": 16438.0, "total_p50_ns": 18787.0, "total_p75_ns": 20947.25, "total_p95_ns": 24618.0, "total_p99_ns": 27391.1, "total_ci_low_ns": 18370.899999999998, "total_ci_high_ns": 19632.973437499997, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.477095789725359}, {"serializer": "Migrant", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "0.13.0.0", "avg_time_ser_ns": 12732.222222222223, "avg_time_deser_ns": 35997.57777777778, "avg_time_total_ns": 48729.8, "median_size_bytes": 4102.0, "avg_ops_per_sec": 20521.323707464424, "min_ops_per_sec": 15237.166496518308, "max_ops_per_sec": 31618.55376735068, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 12732.222222222223, "ser_median_ns": 12709.0, "ser_std_ns": 1631.168959605817, "ser_mad_ns": 1246.5, "ser_cv": 0.12811345349901695, "ser_min_ns": 9692.0, "ser_max_ns": 17522.0, "ser_p5_ns": 10482.75, "ser_p25_ns": 11320.5, "ser_p50_ns": 12709.0, "ser_p75_ns": 13902.5, "ser_p95_ns": 15486.5, "ser_p99_ns": 16537.66, "ser_ci_low_ns": 12392.947222222223, "ser_ci_high_ns": 13081.211944444443, "deser_mean_ns": 35997.57777777778, "deser_median_ns": 34884.5, "deser_std_ns": 5285.810386090563, "deser_mad_ns": 3125.5, "deser_cv": 0.14683794611740872, "deser_min_ns": 21935.0, "deser_max_ns": 49567.0, "deser_p5_ns": 29238.3, "deser_p25_ns": 32357.5, "deser_p50_ns": 34884.5, "deser_p75_ns": 39551.5, "deser_p95_ns": 45904.85, "deser_p99_ns": 49509.15, "deser_ci_low_ns": 34941.3925, "deser_ci_high_ns": 37097.01638888889, "total_mean_ns": 48729.8, "total_median_ns": 47439.5, "total_std_ns": 6651.66712937441, "total_mad_ns": 4605.0, "total_cv": 0.1365010143561929, "total_min_ns": 31627.0, "total_max_ns": 65629.0, "total_p5_ns": 39711.25, "total_p25_ns": 44434.25, "total_p50_ns": 47439.5, "total_p75_ns": 53239.25, "total_p95_ns": 60332.149999999994, "total_p99_ns": 65103.9, "total_ci_low_ns": 47471.472222222226, "total_ci_high_ns": 50066.66166666667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.420083439473101}, {"serializer": "NetSerializer", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "4.1.2", "avg_time_ser_ns": 2737.9887640449438, "avg_time_deser_ns": 2355.674157303371, "avg_time_total_ns": 5093.662921348315, "median_size_bytes": 328.0, "avg_ops_per_sec": 196322.37457426722, "min_ops_per_sec": 141123.34180073385, "max_ops_per_sec": 270270.2702702703, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 2737.9887640449438, "ser_median_ns": 2672.0, "ser_std_ns": 512.3093546601689, "ser_mad_ns": 374.0, "ser_cv": 0.1871115621027287, "ser_min_ns": 1905.0, "ser_max_ns": 4244.0, "ser_p5_ns": 2089.0, "ser_p25_ns": 2298.0, "ser_p50_ns": 2672.0, "ser_p75_ns": 3027.0, "ser_p95_ns": 3723.3999999999987, "ser_p99_ns": 3997.6000000000013, "ser_ci_low_ns": 2628.9325842696626, "ser_ci_high_ns": 2848.7014044943817, "deser_mean_ns": 2355.674157303371, "deser_median_ns": 2304.0, "deser_std_ns": 293.00848480116576, "deser_mad_ns": 190.0, "deser_cv": 0.12438413177507691, "deser_min_ns": 1725.0, "deser_max_ns": 3044.0, "deser_p5_ns": 1887.8, "deser_p25_ns": 2169.0, "deser_p50_ns": 2304.0, "deser_p75_ns": 2546.0, "deser_p95_ns": 2886.0, "deser_p99_ns": 3036.96, "deser_ci_low_ns": 2296.523595505618, "deser_ci_high_ns": 2416.5516853932586, "total_mean_ns": 5093.662921348315, "total_median_ns": 5017.0, "total_std_ns": 690.7614860003189, "total_mad_ns": 526.0, "total_cv": 0.13561193519603204, "total_min_ns": 3700.0, "total_max_ns": 7086.0, "total_p5_ns": 4165.4, "total_p25_ns": 4491.0, "total_p50_ns": 5017.0, "total_p75_ns": 5519.0, "total_p95_ns": 6375.799999999999, "total_p99_ns": 6883.600000000001, "total_ci_low_ns": 4955.350561797753, "total_ci_high_ns": 5237.887640449438, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9310164619806637, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.4216285113349123}, {"serializer": "ProtoBuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "2.4.9.1", "avg_time_ser_ns": 3380.5434782608695, "avg_time_deser_ns": 3533.8152173913045, "avg_time_total_ns": 6914.358695652174, "median_size_bytes": 320.0, "avg_ops_per_sec": 144626.57261747372, "min_ops_per_sec": 102986.61174047375, "max_ops_per_sec": 205044.0844781628, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 3380.5434782608695, "ser_median_ns": 3289.0, "ser_std_ns": 656.9599217214154, "ser_mad_ns": 433.0, "ser_cv": 0.19433559306250672, "ser_min_ns": 2027.0, "ser_max_ns": 5139.0, "ser_p5_ns": 2534.75, "ser_p25_ns": 2891.0, "ser_p50_ns": 3289.0, "ser_p75_ns": 3753.5, "ser_p95_ns": 4662.55, "ser_p99_ns": 4939.710000000001, "ser_ci_low_ns": 3254.7989130434785, "ser_ci_high_ns": 3515.2508152173914, "deser_mean_ns": 3533.8152173913045, "deser_median_ns": 3470.0, "deser_std_ns": 410.2474709954883, "deser_mad_ns": 262.5, "deser_cv": 0.11609194192624957, "deser_min_ns": 2707.0, "deser_max_ns": 4571.0, "deser_p5_ns": 2943.3, "deser_p25_ns": 3226.75, "deser_p50_ns": 3470.0, "deser_p75_ns": 3776.25, "deser_p95_ns": 4277.35, "deser_p99_ns": 4499.110000000001, "deser_ci_low_ns": 3451.1834239130435, "deser_ci_high_ns": 3617.458967391304, "total_mean_ns": 6914.358695652174, "total_median_ns": 6834.5, "total_std_ns": 1018.4298578783224, "total_mad_ns": 635.5, "total_cv": 0.14729201979624262, "total_min_ns": 4877.0, "total_max_ns": 9710.0, "total_p5_ns": 5527.1, "total_p25_ns": 6161.5, "total_p50_ns": 6834.5, "total_p75_ns": 7400.25, "total_p95_ns": 8799.2, "total_p99_ns": 9438.820000000002, "total_ci_low_ns": 6714.351086956522, "total_ci_high_ns": 7106.526630434782, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9989888776541962, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.030725891847926}, {"serializer": "FsPickler", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 12499.777777777777, "avg_time_deser_ns": 7388.222222222223, "avg_time_total_ns": 19888.0, "median_size_bytes": 470.0, "avg_ops_per_sec": 50281.576830249396, "min_ops_per_sec": 30815.69135003544, "max_ops_per_sec": 99285.14694201747, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 12499.777777777777, "ser_median_ns": 11657.5, "ser_std_ns": 3124.383577056325, "ser_mad_ns": 1532.0, "ser_cv": 0.24995512981125823, "ser_min_ns": 5571.0, "ser_max_ns": 21112.0, "ser_p5_ns": 8009.700000000001, "ser_p25_ns": 10603.75, "ser_p50_ns": 11657.5, "ser_p75_ns": 14271.0, "ser_p95_ns": 19254.3, "ser_p99_ns": 20730.19, "ser_ci_low_ns": 11860.508055555556, "ser_ci_high_ns": 13180.975555555555, "deser_mean_ns": 7388.222222222223, "deser_median_ns": 7044.0, "deser_std_ns": 1459.9842370841995, "deser_mad_ns": 569.0, "deser_cv": 0.19760968108036508, "deser_min_ns": 4501.0, "deser_max_ns": 11720.0, "deser_p5_ns": 5104.25, "deser_p25_ns": 6598.25, "deser_p50_ns": 7044.0, "deser_p75_ns": 8078.5, "deser_p95_ns": 9991.3, "deser_p99_ns": 11421.85, "deser_ci_low_ns": 7084.548888888889, "deser_ci_high_ns": 7688.403333333333, "total_mean_ns": 19888.0, "total_median_ns": 18742.5, "total_std_ns": 4468.237042689535, "total_mad_ns": 2004.5, "total_cv": 0.2246700041577602, "total_min_ns": 10072.0, "total_max_ns": 32451.0, "total_p5_ns": 12963.9, "total_p25_ns": 17287.5, "total_p50_ns": 18742.5, "total_p75_ns": 22063.5, "total_p95_ns": 29099.6, "total_p99_ns": 32408.28, "total_ci_low_ns": 18988.276944444446, "total_ci_high_ns": 20776.180833333332, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.04593740595711}, {"serializer": "MemoryPack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 5230.84375, "avg_time_deser_ns": 2928.9479166666665, "avg_time_total_ns": 8159.791666666667, "median_size_bytes": 316.0, "avg_ops_per_sec": 122552.14849235326, "min_ops_per_sec": 68469.70215679561, "max_ops_per_sec": 224265.53038797938, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 5230.84375, "ser_median_ns": 4730.0, "ser_std_ns": 1762.5759577697338, "ser_mad_ns": 1061.5, "ser_cv": 0.336958250333846, "ser_min_ns": 2554.0, "ser_max_ns": 9482.0, "ser_p5_ns": 2958.25, "ser_p25_ns": 3901.25, "ser_p50_ns": 4730.0, "ser_p75_ns": 6388.75, "ser_p95_ns": 8666.0, "ser_p99_ns": 9308.15, "ser_ci_low_ns": 4880.79296875, "ser_ci_high_ns": 5580.922135416666, "deser_mean_ns": 2928.9479166666665, "deser_median_ns": 2660.0, "deser_std_ns": 908.3169325132891, "deser_mad_ns": 566.5, "deser_cv": 0.3101171336453852, "deser_min_ns": 1577.0, "deser_max_ns": 5204.0, "deser_p5_ns": 1758.75, "deser_p25_ns": 2265.75, "deser_p50_ns": 2660.0, "deser_p75_ns": 3481.25, "deser_p95_ns": 4708.5, "deser_p99_ns": 5176.45, "deser_ci_low_ns": 2757.1330729166666, "deser_ci_high_ns": 3113.71171875, "total_mean_ns": 8159.791666666667, "total_median_ns": 7519.5, "total_std_ns": 2538.7628479725345, "total_mad_ns": 1570.0, "total_cv": 0.3111308415315997, "total_min_ns": 4459.0, "total_max_ns": 14605.0, "total_p5_ns": 4971.75, "total_p25_ns": 6292.0, "total_p50_ns": 7519.5, "total_p75_ns": 9711.75, "total_p95_ns": 13376.0, "total_p99_ns": 14449.199999999999, "total_ci_low_ns": 7668.263541666666, "total_ci_high_ns": 8673.349999999999, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9956395348837209, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.424021843162722}, {"serializer": "SpanJson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "4.2.1", "avg_time_ser_ns": 8916.882978723404, "avg_time_deser_ns": 8606.031914893618, "avg_time_total_ns": 17522.91489361702, "median_size_bytes": 663.0, "avg_ops_per_sec": 57068.13084872453, "min_ops_per_sec": 33975.469710868754, "max_ops_per_sec": 96089.17075045643, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 8916.882978723404, "ser_median_ns": 8369.5, "ser_std_ns": 1581.2378699021021, "ser_mad_ns": 767.0, "ser_cv": 0.1773307862932706, "ser_min_ns": 6213.0, "ser_max_ns": 13240.0, "ser_p5_ns": 6910.45, "ser_p25_ns": 7872.0, "ser_p50_ns": 8369.5, "ser_p75_ns": 9991.5, "ser_p95_ns": 11809.099999999999, "ser_p99_ns": 12819.639999999998, "ser_ci_low_ns": 8607.581914893617, "ser_ci_high_ns": 9234.14813829787, "deser_mean_ns": 8606.031914893618, "deser_median_ns": 6756.0, "deser_std_ns": 3651.7658578680694, "deser_mad_ns": 2307.0, "deser_cv": 0.4243263206528801, "deser_min_ns": 4088.0, "deser_max_ns": 16708.0, "deser_p5_ns": 4572.55, "deser_p25_ns": 5341.0, "deser_p50_ns": 6756.0, "deser_p75_ns": 11547.5, "deser_p95_ns": 14817.299999999997, "deser_p99_ns": 16229.049999999996, "deser_ci_low_ns": 7916.988563829787, "deser_ci_high_ns": 9354.109574468084, "total_mean_ns": 17522.91489361702, "total_median_ns": 17753.5, "total_std_ns": 4331.964035086299, "total_mad_ns": 3318.5, "total_cv": 0.24721709038627362, "total_min_ns": 10407.0, "total_max_ns": 29433.0, "total_p5_ns": 11482.2, "total_p25_ns": 14172.0, "total_p50_ns": 17753.5, "total_p75_ns": 19938.0, "total_p95_ns": 25475.149999999994, "total_p99_ns": 28646.219999999994, "total_ci_low_ns": 16680.25531914894, "total_ci_high_ns": 18432.591489361705, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.402769939522254}, {"serializer": "MS Bond Compact", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 5839.090909090909, "avg_time_deser_ns": 4531.647727272727, "avg_time_total_ns": 10370.738636363636, "median_size_bytes": 293.0, "avg_ops_per_sec": 96425.1472401041, "min_ops_per_sec": 76196.28162145687, "max_ops_per_sec": 129988.30105290524, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 5839.090909090909, "ser_median_ns": 5727.5, "ser_std_ns": 756.227443077499, "ser_mad_ns": 419.5, "ser_cv": 0.12951116104394347, "ser_min_ns": 4358.0, "ser_max_ns": 7958.0, "ser_p5_ns": 4651.95, "ser_p25_ns": 5355.5, "ser_p50_ns": 5727.5, "ser_p75_ns": 6369.5, "ser_p95_ns": 7204.3, "ser_p99_ns": 7569.109999999998, "ser_ci_low_ns": 5681.8119318181825, "ser_ci_high_ns": 5992.273295454545, "deser_mean_ns": 4531.647727272727, "deser_median_ns": 4558.5, "deser_std_ns": 541.5842456785363, "deser_mad_ns": 317.5, "deser_cv": 0.11951155038356807, "deser_min_ns": 3334.0, "deser_max_ns": 5661.0, "deser_p5_ns": 3577.25, "deser_p25_ns": 4274.0, "deser_p50_ns": 4558.5, "deser_p75_ns": 4891.75, "deser_p95_ns": 5348.65, "deser_p99_ns": 5580.089999999999, "deser_ci_low_ns": 4421.715909090909, "deser_ci_high_ns": 4640.250284090909, "total_mean_ns": 10370.738636363636, "total_median_ns": 10342.5, "total_std_ns": 1233.4570658124735, "total_mad_ns": 718.5, "total_cv": 0.11893627918531453, "total_min_ns": 7693.0, "total_max_ns": 13124.0, "total_p5_ns": 8300.75, "total_p25_ns": 9652.25, "total_p50_ns": 10342.5, "total_p75_ns": 11098.25, "total_p95_ns": 12454.399999999998, "total_p99_ns": 12886.489999999998, "total_ci_low_ns": 10121.318465909091, "total_ci_high_ns": 10636.205113636364, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.067438704154247}, {"serializer": "LightProto", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.3.4", "avg_time_ser_ns": 4008.4545454545455, "avg_time_deser_ns": 3660.909090909091, "avg_time_total_ns": 7669.363636363636, "median_size_bytes": 320.0, "avg_ops_per_sec": 130388.91457155389, "min_ops_per_sec": 69108.5003455425, "max_ops_per_sec": 289519.3977996526, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 4008.4545454545455, "ser_median_ns": 3792.0, "ser_std_ns": 1565.626048561153, "ser_mad_ns": 1194.0, "ser_cv": 0.3905809660075904, "ser_min_ns": 1587.0, "ser_max_ns": 8453.0, "ser_p5_ns": 2177.0, "ser_p25_ns": 2623.5, "ser_p50_ns": 3792.0, "ser_p75_ns": 4995.0, "ser_p95_ns": 6967.699999999999, "ser_p99_ns": 8144.299999999998, "ser_ci_low_ns": 3702.437373737374, "ser_ci_high_ns": 4327.566666666667, "deser_mean_ns": 3660.909090909091, "deser_median_ns": 3338.0, "deser_std_ns": 1158.6384786913763, "deser_mad_ns": 847.0, "deser_cv": 0.3164892790068324, "deser_min_ns": 1867.0, "deser_max_ns": 6422.0, "deser_p5_ns": 2305.2, "deser_p25_ns": 2624.0, "deser_p50_ns": 3338.0, "deser_p75_ns": 4632.0, "deser_p95_ns": 5776.4, "deser_p99_ns": 6218.159999999999, "deser_ci_low_ns": 3443.4088383838384, "deser_ci_high_ns": 3895.095707070707, "total_mean_ns": 7669.363636363636, "total_median_ns": 7057.0, "total_std_ns": 2631.7651268199875, "total_mad_ns": 2037.0, "total_cv": 0.343152998293326, "total_min_ns": 3454.0, "total_max_ns": 14470.0, "total_p5_ns": 4592.3, "total_p25_ns": 5295.5, "total_p50_ns": 7057.0, "total_p75_ns": 9553.5, "total_p95_ns": 12826.3, "total_p99_ns": 13645.819999999996, "total_ci_low_ns": 7172.127272727273, "total_ci_high_ns": 8198.128787878786, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9783885365280715, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.077000329195173}, {"serializer": "SharpSerializer", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 26673.247191011236, "avg_time_deser_ns": 47562.48314606742, "avg_time_total_ns": 74235.73033707865, "median_size_bytes": 2077.0, "avg_ops_per_sec": 13470.602302413508, "min_ops_per_sec": 11398.609369656902, "max_ops_per_sec": 15856.404401737862, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 26673.247191011236, "ser_median_ns": 26549.0, "ser_std_ns": 1977.448989578256, "ser_mad_ns": 1208.0, "ser_cv": 0.07413604258294608, "ser_min_ns": 22720.0, "ser_max_ns": 31819.0, "ser_p5_ns": 24101.8, "ser_p25_ns": 25278.0, "ser_p50_ns": 26549.0, "ser_p75_ns": 27606.0, "ser_p95_ns": 30605.0, "ser_p99_ns": 31650.04, "ser_ci_low_ns": 26258.2202247191, "ser_ci_high_ns": 27093.36404494382, "deser_mean_ns": 47562.48314606742, "deser_median_ns": 47185.0, "deser_std_ns": 3339.4535587031964, "deser_mad_ns": 1974.0, "deser_cv": 0.07021192624547212, "deser_min_ns": 40192.0, "deser_max_ns": 56562.0, "deser_p5_ns": 42301.4, "deser_p25_ns": 45655.0, "deser_p50_ns": 47185.0, "deser_p75_ns": 49159.0, "deser_p95_ns": 54362.2, "deser_p99_ns": 55052.80000000001, "deser_ci_low_ns": 46874.64859550562, "deser_ci_high_ns": 48286.21235955056, "total_mean_ns": 74235.73033707865, "total_median_ns": 73689.0, "total_std_ns": 5081.78235277752, "total_mad_ns": 3271.0, "total_cv": 0.06845466906168919, "total_min_ns": 63066.0, "total_max_ns": 87730.0, "total_p5_ns": 66076.6, "total_p25_ns": 70628.0, "total_p50_ns": 73689.0, "total_p75_ns": 76960.0, "total_p95_ns": 84201.59999999999, "total_p99_ns": 86786.64, "total_ci_low_ns": 73180.30674157303, "total_ci_high_ns": 75359.60337078651, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.303872922738904}, {"serializer": "Ceras", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "4.1.7", "avg_time_ser_ns": 56658.732558139534, "avg_time_deser_ns": 115391.80232558139, "avg_time_total_ns": 172050.53488372092, "median_size_bytes": 38916.0, "avg_ops_per_sec": 5812.245807174285, "min_ops_per_sec": 4834.3509642112995, "max_ops_per_sec": 6736.4109749607605, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 56658.732558139534, "ser_median_ns": 54862.5, "ser_std_ns": 4904.934635109035, "ser_mad_ns": 2736.5, "ser_cv": 0.08656979098633927, "ser_min_ns": 49336.0, "ser_max_ns": 71517.0, "ser_p5_ns": 50671.25, "ser_p25_ns": 53084.75, "ser_p50_ns": 54862.5, "ser_p75_ns": 58742.25, "ser_p95_ns": 65948.75, "ser_p99_ns": 69821.25000000001, "ser_ci_low_ns": 55700.527325581395, "ser_ci_high_ns": 57722.76569767442, "deser_mean_ns": 115391.80232558139, "deser_median_ns": 114049.0, "deser_std_ns": 8066.765067521353, "deser_mad_ns": 5317.5, "deser_cv": 0.06990760959570365, "deser_min_ns": 99111.0, "deser_max_ns": 135336.0, "deser_p5_ns": 102892.75, "deser_p25_ns": 109591.75, "deser_p50_ns": 114049.0, "deser_p75_ns": 121396.5, "deser_p95_ns": 128139.25, "deser_p99_ns": 134844.7, "deser_ci_low_ns": 113637.67936046512, "deser_ci_high_ns": 117153.66627906976, "total_mean_ns": 172050.53488372092, "total_median_ns": 170418.0, "total_std_ns": 11792.765419026216, "total_mad_ns": 8690.5, "total_cv": 0.06854245136172503, "total_min_ns": 148447.0, "total_max_ns": 206853.0, "total_p5_ns": 156785.25, "total_p25_ns": 162469.0, "total_p50_ns": 170418.0, "total_p75_ns": 179568.75, "total_p95_ns": 193526.25, "total_p99_ns": 199253.15000000005, "total_ci_low_ns": 169651.04127906976, "total_ci_high_ns": 174517.91249999998, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.871902292310962}, {"serializer": "FlatSharp", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "7.5.1", "avg_time_ser_ns": 45887.87804878049, "avg_time_deser_ns": 73281.89024390244, "avg_time_total_ns": 119169.76829268293, "median_size_bytes": 45560.0, "avg_ops_per_sec": 8391.389983607112, "min_ops_per_sec": 6777.179879908373, "max_ops_per_sec": 10424.159030970177, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 45887.87804878049, "ser_median_ns": 43747.0, "ser_std_ns": 9109.536093391154, "ser_mad_ns": 3766.0, "ser_cv": 0.19851726601320255, "ser_min_ns": 33954.0, "ser_max_ns": 73079.0, "ser_p5_ns": 36397.7, "ser_p25_ns": 39980.0, "ser_p50_ns": 43747.0, "ser_p75_ns": 47428.75, "ser_p95_ns": 67819.95, "ser_p99_ns": 72620.54, "ser_ci_low_ns": 44012.667987804874, "ser_ci_high_ns": 47826.167987804874, "deser_mean_ns": 73281.89024390244, "deser_median_ns": 71041.0, "deser_std_ns": 8736.390908087618, "deser_mad_ns": 5136.0, "deser_cv": 0.11921623308310536, "deser_min_ns": 59949.0, "deser_max_ns": 93386.0, "deser_p5_ns": 61900.35, "deser_p25_ns": 66650.75, "deser_p50_ns": 71041.0, "deser_p75_ns": 78681.0, "deser_p95_ns": 90901.15000000001, "deser_p99_ns": 92229.31999999999, "deser_ci_low_ns": 71489.61798780487, "deser_ci_high_ns": 75208.27439024391, "total_mean_ns": 119169.76829268293, "total_median_ns": 117704.0, "total_std_ns": 11706.629173249228, "total_mad_ns": 8612.5, "total_cv": 0.09823489078620638, "total_min_ns": 95931.0, "total_max_ns": 147554.0, "total_p5_ns": 99374.15, "total_p25_ns": 110186.0, "total_p50_ns": 117704.0, "total_p75_ns": 127553.0, "total_p95_ns": 139108.2, "total_p99_ns": 143960.03, "total_ci_low_ns": 116782.19085365853, "total_ci_high_ns": 121633.92134146341, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 0.926829268292683, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.5599957823764306}, {"serializer": "Json.Net", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 556239.4155844155, "avg_time_deser_ns": 708038.025974026, "avg_time_total_ns": 1264277.4415584416, "median_size_bytes": 67483.0, "avg_ops_per_sec": 790.9656275819699, "min_ops_per_sec": 693.5505348661725, "max_ops_per_sec": 875.2382836227163, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 556239.4155844155, "ser_median_ns": 547602.0, "ser_std_ns": 37281.7966902964, "ser_mad_ns": 21457.0, "ser_cv": 0.06702473008160724, "ser_min_ns": 489746.0, "ser_max_ns": 692473.0, "ser_p5_ns": 506466.4, "ser_p25_ns": 529684.0, "ser_p50_ns": 547602.0, "ser_p75_ns": 580680.0, "ser_p95_ns": 622681.8, "ser_p99_ns": 648329.1599999997, "ser_ci_low_ns": 548500.4655844156, "ser_ci_high_ns": 564799.4724025974, "deser_mean_ns": 708038.025974026, "deser_median_ns": 705799.0, "deser_std_ns": 46955.01960498558, "deser_mad_ns": 34457.0, "deser_cv": 0.06631708733495072, "deser_min_ns": 627606.0, "deser_max_ns": 871126.0, "deser_p5_ns": 639499.2, "deser_p25_ns": 671082.0, "deser_p50_ns": 705799.0, "deser_p75_ns": 735856.0, "deser_p95_ns": 788949.2000000001, "deser_p99_ns": 819502.9999999997, "deser_ci_low_ns": 697575.1730519481, "deser_ci_high_ns": 718635.0912337662, "total_mean_ns": 1264277.4415584416, "total_median_ns": 1261237.0, "total_std_ns": 70237.86739349844, "total_mad_ns": 54416.0, "total_cv": 0.05555573886291767, "total_min_ns": 1142546.0, "total_max_ns": 1441856.0, "total_p5_ns": 1164680.0, "total_p25_ns": 1202385.0, "total_p50_ns": 1261237.0, "total_p75_ns": 1304078.0, "total_p95_ns": 1402509.2, "total_p99_ns": 1425436.96, "total_ci_low_ns": 1249408.4905844156, "total_ci_high_ns": 1280182.8474025973, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.129466651997667}, {"serializer": "System.Text.Json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "8.0.0.0", "avg_time_ser_ns": 442211.5326086957, "avg_time_deser_ns": 392111.75, "avg_time_total_ns": 834323.2826086957, "median_size_bytes": 87960.0, "avg_ops_per_sec": 1198.5761644734155, "min_ops_per_sec": 1065.7015673272952, "max_ops_per_sec": 1363.8880629788953, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 442211.5326086957, "ser_median_ns": 437635.5, "ser_std_ns": 33498.45201260326, "ser_mad_ns": 25562.5, "ser_cv": 0.07575209948729533, "ser_min_ns": 368765.0, "ser_max_ns": 508676.0, "ser_p5_ns": 394238.05, "ser_p25_ns": 416328.25, "ser_p50_ns": 437635.5, "ser_p75_ns": 464510.75, "ser_p95_ns": 503642.25, "ser_p99_ns": 508435.76, "ser_ci_low_ns": 435696.7097826087, "ser_ci_high_ns": 448918.9755434782, "deser_mean_ns": 392111.75, "deser_median_ns": 394937.0, "deser_std_ns": 21249.854576684043, "deser_mad_ns": 12929.0, "deser_cv": 0.05419336343959099, "deser_min_ns": 343443.0, "deser_max_ns": 441077.0, "deser_p5_ns": 356404.95, "deser_p25_ns": 378011.25, "deser_p50_ns": 394937.0, "deser_p75_ns": 405391.75, "deser_p95_ns": 424771.60000000003, "deser_p99_ns": 432586.7, "deser_ci_low_ns": 387724.1489130435, "deser_ci_high_ns": 396372.8763586956, "total_mean_ns": 834323.2826086957, "total_median_ns": 834439.0, "total_std_ns": 46249.169959721556, "total_mad_ns": 31459.5, "total_cv": 0.055433152740402176, "total_min_ns": 733198.0, "total_max_ns": 938349.0, "total_p5_ns": 760795.5, "total_p25_ns": 799888.25, "total_p50_ns": 834439.0, "total_p75_ns": 861878.5, "total_p95_ns": 913230.05, "total_p99_ns": 926532.65, "total_ci_low_ns": 825294.6459239131, "total_ci_high_ns": 844049.7760869565, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.01504957803223}, {"serializer": "fastJson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "2.4.0.4", "avg_time_ser_ns": 492275.4074074074, "avg_time_deser_ns": 797453.925925926, "avg_time_total_ns": 1289729.3333333333, "median_size_bytes": 67460.0, "avg_ops_per_sec": 775.3564830656976, "min_ops_per_sec": 702.693282814371, "max_ops_per_sec": 845.9435315773801, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 492275.4074074074, "ser_median_ns": 493883.0, "ser_std_ns": 27644.10195899741, "ser_mad_ns": 23851.0, "ser_cv": 0.056155764726469735, "ser_min_ns": 442384.0, "ser_max_ns": 547996.0, "ser_p5_ns": 452517.0, "ser_p25_ns": 468514.0, "ser_p50_ns": 493883.0, "ser_p75_ns": 515390.0, "ser_p95_ns": 533715.0, "ser_p99_ns": 542010.4, "ser_ci_low_ns": 486343.59567901236, "ser_ci_high_ns": 498457.0027777778, "deser_mean_ns": 797453.925925926, "deser_median_ns": 794756.0, "deser_std_ns": 46398.29328616997, "deser_mad_ns": 33650.0, "deser_cv": 0.05818303951829791, "deser_min_ns": 712446.0, "deser_max_ns": 920892.0, "deser_p5_ns": 728698.0, "deser_p25_ns": 763437.0, "deser_p50_ns": 794756.0, "deser_p75_ns": 828406.0, "deser_p95_ns": 877046.0, "deser_p99_ns": 909146.4, "deser_ci_low_ns": 787609.8037037037, "deser_ci_high_ns": 808635.7401234568, "total_mean_ns": 1289729.3333333333, "total_median_ns": 1291624.0, "total_std_ns": 63371.47802659332, "total_mad_ns": 47971.0, "total_cv": 0.04913548632937453, "total_min_ns": 1182112.0, "total_max_ns": 1423096.0, "total_p5_ns": 1196863.0, "total_p25_ns": 1234292.0, "total_p50_ns": 1291624.0, "total_p75_ns": 1334083.0, "total_p95_ns": 1375935.0, "total_p99_ns": 1414664.0, "total_ci_low_ns": 1275840.4919753086, "total_ci_high_ns": 1302818.5836419752, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.932431502454527}, {"serializer": "SharpYaml", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "3.13.0", "avg_time_ser_ns": 677806.5180722892, "avg_time_deser_ns": 2154353.493975904, "avg_time_total_ns": 2832160.012048193, "median_size_bytes": 93164.0, "avg_ops_per_sec": 353.0873946902488, "min_ops_per_sec": 305.2915885756224, "max_ops_per_sec": 393.6457699809672, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 677806.5180722892, "ser_median_ns": 673530.0, "ser_std_ns": 33747.468428400505, "ser_mad_ns": 22359.0, "ser_cv": 0.049789235613106456, "ser_min_ns": 607114.0, "ser_max_ns": 764022.0, "ser_p5_ns": 620224.9, "ser_p25_ns": 654303.5, "ser_p50_ns": 673530.0, "ser_p75_ns": 701283.0, "ser_p95_ns": 733390.0, "ser_p99_ns": 759194.6599999999, "ser_ci_low_ns": 670777.0743975904, "ser_ci_high_ns": 684915.4599397591, "deser_mean_ns": 2154353.493975904, "deser_median_ns": 2128535.0, "deser_std_ns": 153559.47435975177, "deser_mad_ns": 68130.0, "deser_cv": 0.07127868049005949, "deser_min_ns": 1892119.0, "deser_max_ns": 2618148.0, "deser_p5_ns": 1954806.3, "deser_p25_ns": 2065889.0, "deser_p50_ns": 2128535.0, "deser_p75_ns": 2204040.5, "deser_p95_ns": 2499532.1, "deser_p99_ns": 2610481.0, "deser_ci_low_ns": 2123256.1644578315, "deser_ci_high_ns": 2188025.513554217, "total_mean_ns": 2832160.012048193, "total_median_ns": 2829029.0, "total_std_ns": 158381.67356863702, "total_mad_ns": 86602.0, "total_cv": 0.05592257248703148, "total_min_ns": 2540355.0, "total_max_ns": 3275557.0, "total_p5_ns": 2597324.5, "total_p25_ns": 2732318.5, "total_p50_ns": 2829029.0, "total_p75_ns": 2902343.5, "total_p95_ns": 3170809.6999999997, "total_p99_ns": 3272261.42, "total_ci_low_ns": 2799050.980120482, "total_ci_high_ns": 2867223.5873493976, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.679006441608514}, {"serializer": "ServiceStack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 542956.8554216868, "avg_time_deser_ns": 586637.578313253, "avg_time_total_ns": 1129594.4337349397, "median_size_bytes": 64566.0, "avg_ops_per_sec": 885.273484124348, "min_ops_per_sec": 793.0987717279322, "max_ops_per_sec": 994.6062503045981, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 542956.8554216868, "ser_median_ns": 543832.0, "ser_std_ns": 34413.16410454231, "ser_mad_ns": 26308.0, "ser_cv": 0.06338102882560598, "ser_min_ns": 479519.0, "ser_max_ns": 615122.0, "ser_p5_ns": 488877.9, "ser_p25_ns": 516451.5, "ser_p50_ns": 543832.0, "ser_p75_ns": 565899.5, "ser_p95_ns": 599499.7999999999, "ser_p99_ns": 607930.6, "ser_ci_low_ns": 535907.7373493976, "ser_ci_high_ns": 550491.0117469879, "deser_mean_ns": 586637.578313253, "deser_median_ns": 587216.0, "deser_std_ns": 33949.40357467432, "deser_mad_ns": 23919.0, "deser_cv": 0.05787117094047801, "deser_min_ns": 519016.0, "deser_max_ns": 698234.0, "deser_p5_ns": 530893.7, "deser_p25_ns": 563408.0, "deser_p50_ns": 587216.0, "deser_p75_ns": 611803.5, "deser_p95_ns": 634931.4, "deser_p99_ns": 667944.8399999997, "deser_ci_low_ns": 578777.638554217, "deser_ci_high_ns": 594229.9515060241, "total_mean_ns": 1129594.4337349397, "total_median_ns": 1139244.0, "total_std_ns": 60255.85469645106, "total_mad_ns": 43092.0, "total_cv": 0.05334291042601769, "total_min_ns": 1005423.0, "total_max_ns": 1260877.0, "total_p5_ns": 1030367.5, "total_p25_ns": 1078246.0, "total_p50_ns": 1139244.0, "total_p75_ns": 1169700.5, "total_p95_ns": 1217090.0, "total_p99_ns": 1239534.8599999999, "total_ci_low_ns": 1116774.3861445785, "total_ci_high_ns": 1142881.4427710844, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.36190455936329}, {"serializer": "Google.Protobuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "3.35.1", "avg_time_ser_ns": 58172.967391304344, "avg_time_deser_ns": 68891.09782608696, "avg_time_total_ns": 127064.06521739131, "median_size_bytes": 39244.0, "avg_ops_per_sec": 7870.04569930232, "min_ops_per_sec": 6020.723329700831, "max_ops_per_sec": 9159.522239319997, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 58172.967391304344, "ser_median_ns": 52962.5, "ser_std_ns": 11583.137852732674, "ser_mad_ns": 4373.5, "ser_cv": 0.19911547187919648, "ser_min_ns": 44413.0, "ser_max_ns": 89134.0, "ser_p5_ns": 46779.75, "ser_p25_ns": 49294.25, "ser_p50_ns": 52962.5, "ser_p75_ns": 69132.5, "ser_p95_ns": 77863.15000000001, "ser_p99_ns": 85820.69000000002, "ser_ci_low_ns": 55957.365760869565, "ser_ci_high_ns": 60690.67010869565, "deser_mean_ns": 68891.09782608696, "deser_median_ns": 68251.5, "deser_std_ns": 4181.187365035641, "deser_mad_ns": 3016.5, "deser_cv": 0.060692709173990736, "deser_min_ns": 60397.0, "deser_max_ns": 81688.0, "deser_p5_ns": 63089.45, "deser_p25_ns": 65736.5, "deser_p50_ns": 68251.5, "deser_p75_ns": 71679.75, "deser_p95_ns": 75481.45, "deser_p99_ns": 79574.98000000001, "deser_ci_low_ns": 68077.29076086955, "deser_ci_high_ns": 69755.85027173914, "total_mean_ns": 127064.06521739131, "total_median_ns": 124198.0, "total_std_ns": 12708.280736213896, "total_mad_ns": 8220.5, "total_cv": 0.10001475015356669, "total_min_ns": 109176.0, "total_max_ns": 166093.0, "total_p5_ns": 110974.8, "total_p25_ns": 117260.5, "total_p50_ns": 124198.0, "total_p75_ns": 135047.75, "total_p95_ns": 148493.1, "total_p99_ns": 162926.2, "total_ci_low_ns": 124582.96467391305, "total_ci_high_ns": 129742.10842391304, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 0.9898715415019763, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.130805815443589}, {"serializer": "MS Bond Json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 446999.8051948052, "avg_time_deser_ns": 657104.5714285715, "avg_time_total_ns": 1104104.3766233767, "median_size_bytes": 65968.0, "avg_ops_per_sec": 905.7114718250157, "min_ops_per_sec": 788.2450590829084, "max_ops_per_sec": 1018.4855120435911, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 446999.8051948052, "ser_median_ns": 444143.0, "ser_std_ns": 29120.126915588346, "ser_mad_ns": 22512.0, "ser_cv": 0.06514572618862242, "ser_min_ns": 380669.0, "ser_max_ns": 508612.0, "ser_p5_ns": 398629.2, "ser_p25_ns": 424641.0, "ser_p50_ns": 444143.0, "ser_p75_ns": 469007.0, "ser_p95_ns": 489892.0, "ser_p99_ns": 499464.63999999996, "ser_ci_low_ns": 440445.2136363636, "ser_ci_high_ns": 453106.3909090909, "deser_mean_ns": 657104.5714285715, "deser_median_ns": 654345.0, "deser_std_ns": 43373.26659191562, "deser_mad_ns": 28530.0, "deser_cv": 0.06600664259209217, "deser_min_ns": 578201.0, "deser_max_ns": 827171.0, "deser_p5_ns": 591871.0, "deser_p25_ns": 625815.0, "deser_p50_ns": 654345.0, "deser_p75_ns": 682681.0, "deser_p95_ns": 730379.2, "deser_p99_ns": 761899.1599999996, "deser_ci_low_ns": 647724.700974026, "deser_ci_high_ns": 666488.5746753247, "total_mean_ns": 1104104.3766233767, "total_median_ns": 1102012.0, "total_std_ns": 58444.05639922474, "total_mad_ns": 43769.0, "total_cv": 0.05293345234076607, "total_min_ns": 981850.0, "total_max_ns": 1268641.0, "total_p5_ns": 1021813.6, "total_p25_ns": 1058243.0, "total_p50_ns": 1102012.0, "total_p75_ns": 1143963.0, "total_p95_ns": 1200628.0, "total_p99_ns": 1241790.1999999997, "total_ci_low_ns": 1091050.3935064934, "total_ci_high_ns": 1116941.540909091, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.95789065465422}, {"serializer": "Apache.Avro", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.12.1", "avg_time_ser_ns": 404829.5975609756, "avg_time_deser_ns": 329585.89024390245, "avg_time_total_ns": 734415.487804878, "median_size_bytes": 38448.0, "avg_ops_per_sec": 1361.627057987213, "min_ops_per_sec": 1101.0354137030463, "max_ops_per_sec": 1619.674510210428, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 404829.5975609756, "ser_median_ns": 396832.5, "ser_std_ns": 56554.46300185898, "ser_mad_ns": 38920.5, "ser_cv": 0.13969942746921, "ser_min_ns": 281434.0, "ser_max_ns": 550786.0, "ser_p5_ns": 331685.85, "ser_p25_ns": 361876.75, "ser_p50_ns": 396832.5, "ser_p75_ns": 443021.25, "ser_p95_ns": 521644.3500000001, "ser_p99_ns": 537835.72, "ser_ci_low_ns": 393405.8493902439, "ser_ci_high_ns": 417038.26402439026, "deser_mean_ns": 329585.89024390245, "deser_median_ns": 325534.0, "deser_std_ns": 24052.035263080063, "deser_mad_ns": 16423.5, "deser_cv": 0.07297653199073816, "deser_min_ns": 289910.0, "deser_max_ns": 400712.0, "deser_p5_ns": 300997.85, "deser_p25_ns": 311235.25, "deser_p50_ns": 325534.0, "deser_p75_ns": 342058.0, "deser_p95_ns": 376321.65, "deser_p99_ns": 394389.13999999996, "deser_ci_low_ns": 324453.7323170732, "deser_ci_high_ns": 334886.12408536585, "total_mean_ns": 734415.487804878, "total_median_ns": 728608.5, "total_std_ns": 65518.1094760423, "total_mad_ns": 41279.5, "total_cv": 0.08921123065074762, "total_min_ns": 617408.0, "total_max_ns": 908236.0, "total_p5_ns": 639888.7, "total_p25_ns": 689115.5, "total_p50_ns": 728608.5, "total_p75_ns": 770316.0, "total_p95_ns": 848027.6, "total_p99_ns": 895889.98, "total_ci_low_ns": 720565.9536585367, "total_ci_high_ns": 749249.1704268293, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.914781285053028}, {"serializer": "Hyperion", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "0.12.2", "avg_time_ser_ns": 215778.7415730337, "avg_time_deser_ns": 146757.07865168538, "avg_time_total_ns": 362535.8202247191, "median_size_bytes": 45680.0, "avg_ops_per_sec": 2758.3481251042904, "min_ops_per_sec": 2410.3238993255914, "max_ops_per_sec": 3183.344740318653, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 215778.7415730337, "ser_median_ns": 213488.0, "ser_std_ns": 17415.472722506434, "ser_mad_ns": 11851.0, "ser_cv": 0.0807098632402205, "ser_min_ns": 188713.0, "ser_max_ns": 263635.0, "ser_p5_ns": 191920.6, "ser_p25_ns": 202635.0, "ser_p50_ns": 213488.0, "ser_p75_ns": 227957.0, "ser_p95_ns": 249190.8, "ser_p99_ns": 259518.36000000002, "ser_ci_low_ns": 212305.57921348314, "ser_ci_high_ns": 219265.47780898874, "deser_mean_ns": 146757.07865168538, "deser_median_ns": 145419.0, "deser_std_ns": 9378.011447511284, "deser_mad_ns": 5310.0, "deser_cv": 0.06390159530068831, "deser_min_ns": 123115.0, "deser_max_ns": 173638.0, "deser_p5_ns": 132119.4, "deser_p25_ns": 141304.0, "deser_p50_ns": 145419.0, "deser_p75_ns": 152437.0, "deser_p95_ns": 162867.19999999998, "deser_p99_ns": 169843.44000000003, "deser_ci_low_ns": 144962.86235955058, "deser_ci_high_ns": 148658.64606741574, "total_mean_ns": 362535.8202247191, "total_median_ns": 363512.0, "total_std_ns": 21533.5188646581, "total_mad_ns": 17045.0, "total_cv": 0.059396941387227536, "total_min_ns": 314135.0, "total_max_ns": 414882.0, "total_p5_ns": 330298.8, "total_p25_ns": 344995.0, "total_p50_ns": 363512.0, "total_p75_ns": 377496.0, "total_p95_ns": 399149.2, "total_p99_ns": 411415.68, "total_ci_low_ns": 357881.99775280897, "total_ci_high_ns": 367170.4758426966, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.53881426635218}, {"serializer": "MS DataContract", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 693469.4074074074, "avg_time_deser_ns": 1196192.7283950618, "avg_time_total_ns": 1889662.1358024692, "median_size_bytes": 201656.0, "avg_ops_per_sec": 529.1951302052931, "min_ops_per_sec": 475.9814976472235, "max_ops_per_sec": 574.6631037554234, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 693469.4074074074, "ser_median_ns": 687558.0, "ser_std_ns": 40919.96030324864, "ser_mad_ns": 24909.0, "ser_cv": 0.05900759264382158, "ser_min_ns": 625147.0, "ser_max_ns": 853623.0, "ser_p5_ns": 637739.0, "ser_p25_ns": 663609.0, "ser_p50_ns": 687558.0, "ser_p75_ns": 713071.0, "ser_p95_ns": 763125.0, "ser_p99_ns": 808490.2000000002, "ser_ci_low_ns": 685202.8108024691, "ser_ci_high_ns": 702844.5009259259, "deser_mean_ns": 1196192.7283950618, "deser_median_ns": 1203114.0, "deser_std_ns": 49019.45810288307, "deser_mad_ns": 37841.0, "deser_cv": 0.040979565365401226, "deser_min_ns": 1094747.0, "deser_max_ns": 1296453.0, "deser_p5_ns": 1110262.0, "deser_p25_ns": 1157959.0, "deser_p50_ns": 1203114.0, "deser_p75_ns": 1231319.0, "deser_p95_ns": 1265342.0, "deser_p99_ns": 1294465.0, "deser_ci_low_ns": 1185400.2317901235, "deser_ci_high_ns": 1206259.8552469136, "total_mean_ns": 1889662.1358024692, "total_median_ns": 1897016.0, "total_std_ns": 77875.01346143593, "total_mad_ns": 58536.0, "total_cv": 0.04121107788846354, "total_min_ns": 1740150.0, "total_max_ns": 2100922.0, "total_p5_ns": 1769272.0, "total_p25_ns": 1827410.0, "total_p50_ns": 1897016.0, "total_p75_ns": 1946822.0, "total_p95_ns": 2016430.0, "total_p99_ns": 2051567.6, "total_ci_low_ns": 1872065.899691358, "total_ci_high_ns": 1906705.4462962963, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 32.99730516472834}, {"serializer": "YAXLib", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "4.4.0", "avg_time_ser_ns": 1773672.0, "avg_time_deser_ns": 1825113.7866666666, "avg_time_total_ns": 3598785.7866666666, "median_size_bytes": 159712.0, "avg_ops_per_sec": 277.8714986885169, "min_ops_per_sec": 244.62964539465122, "max_ops_per_sec": 310.22017256307316, "runs": 75, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 24, "ser_mean_ns": 1773672.0, "ser_median_ns": 1750148.0, "ser_std_ns": 146307.91130075362, "ser_mad_ns": 81031.0, "ser_cv": 0.08248870777728555, "ser_min_ns": 1517770.0, "ser_max_ns": 2269724.0, "ser_p5_ns": 1558790.6, "ser_p25_ns": 1668596.0, "ser_p50_ns": 1750148.0, "ser_p75_ns": 1829949.0, "ser_p95_ns": 2037533.0, "ser_p99_ns": 2175584.900000001, "ser_ci_low_ns": 1740668.8223333333, "ser_ci_high_ns": 1808276.8703333333, "deser_mean_ns": 1825113.7866666666, "deser_median_ns": 1818088.0, "deser_std_ns": 98949.37720578809, "deser_mad_ns": 53762.0, "deser_cv": 0.054215456553263056, "deser_min_ns": 1648984.0, "deser_max_ns": 2078255.0, "deser_p5_ns": 1678481.4, "deser_p25_ns": 1767298.0, "deser_p50_ns": 1818088.0, "deser_p75_ns": 1876758.0, "deser_p95_ns": 2032644.3, "deser_p99_ns": 2067341.48, "deser_ci_low_ns": 1803618.1863333334, "deser_ci_high_ns": 1846855.5003333334, "total_mean_ns": 3598785.7866666666, "total_median_ns": 3581147.0, "total_std_ns": 199831.63288914762, "total_mad_ns": 124344.0, "total_cv": 0.05552751531628098, "total_min_ns": 3223517.0, "total_max_ns": 4087812.0, "total_p5_ns": 3321623.5, "total_p25_ns": 3460835.0, "total_p50_ns": 3581147.0, "total_p75_ns": 3704468.5, "total_p95_ns": 3971677.5, "total_p99_ns": 4084707.7, "total_ci_low_ns": 3553670.8953333334, "total_ci_high_ns": 3640461.5816666665, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.72732872559319}, {"serializer": "ProtoBuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "2.4.9.1", "avg_time_ser_ns": 58223.5, "avg_time_deser_ns": 117517.75675675676, "avg_time_total_ns": 175741.25675675675, "median_size_bytes": 43112.0, "avg_ops_per_sec": 5690.183503035367, "min_ops_per_sec": 4904.6535352742685, "max_ops_per_sec": 6255.121380630391, "runs": 74, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 25, "ser_mean_ns": 58223.5, "ser_median_ns": 57388.0, "ser_std_ns": 3778.98428859193, "ser_mad_ns": 2222.5, "ser_cv": 0.06490479425991104, "ser_min_ns": 51565.0, "ser_max_ns": 71211.0, "ser_p5_ns": 53468.35, "ser_p25_ns": 55379.5, "ser_p50_ns": 57388.0, "ser_p75_ns": 60873.0, "ser_p95_ns": 64473.899999999994, "ser_p99_ns": 67801.89999999998, "ser_ci_low_ns": 57404.81283783784, "ser_ci_high_ns": 59112.11756756757, "deser_mean_ns": 117517.75675675676, "deser_median_ns": 116707.0, "deser_std_ns": 8390.061264508979, "deser_mad_ns": 5832.5, "deser_cv": 0.07139398756457786, "deser_min_ns": 103508.0, "deser_max_ns": 139531.0, "deser_p5_ns": 106643.4, "deser_p25_ns": 111016.0, "deser_p50_ns": 116707.0, "deser_p75_ns": 122480.0, "deser_p95_ns": 132318.19999999998, "deser_p99_ns": 139501.8, "deser_ci_low_ns": 115680.88750000001, "deser_ci_high_ns": 119383.59966216216, "total_mean_ns": 175741.25675675675, "total_median_ns": 175163.0, "total_std_ns": 9578.227936973777, "total_mad_ns": 7395.5, "total_cv": 0.054501874595280664, "total_min_ns": 159869.0, "total_max_ns": 203888.0, "total_p5_ns": 162078.9, "total_p25_ns": 167927.5, "total_p50_ns": 175163.0, "total_p75_ns": 182251.0, "total_p95_ns": 190683.34999999998, "total_p99_ns": 198453.87999999998, "total_ci_low_ns": 173507.7108108108, "total_ci_high_ns": 177939.52263513513, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.543078242534843}, {"serializer": "Utf8Json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.3.7", "avg_time_ser_ns": 341355.23255813954, "avg_time_deser_ns": 430075.988372093, "avg_time_total_ns": 771431.2209302326, "median_size_bytes": 65974.0, "avg_ops_per_sec": 1296.2918441311556, "min_ops_per_sec": 1169.4470269732956, "max_ops_per_sec": 1428.7449190258817, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 341355.23255813954, "ser_median_ns": 338299.0, "ser_std_ns": 22017.39666166382, "ser_mad_ns": 13114.0, "ser_cv": 0.0644999536016013, "ser_min_ns": 302201.0, "ser_max_ns": 405223.0, "ser_p5_ns": 308989.75, "ser_p25_ns": 326328.5, "ser_p50_ns": 338299.0, "ser_p75_ns": 353456.25, "ser_p95_ns": 380550.0, "ser_p99_ns": 400758.80000000005, "ser_ci_low_ns": 336650.4151162791, "ser_ci_high_ns": 346035.5584302326, "deser_mean_ns": 430075.988372093, "deser_median_ns": 425045.5, "deser_std_ns": 25354.326479155938, "deser_mad_ns": 14775.5, "deser_cv": 0.05895313192239854, "deser_min_ns": 370011.0, "deser_max_ns": 500332.0, "deser_p5_ns": 398606.5, "deser_p25_ns": 413039.0, "deser_p50_ns": 425045.5, "deser_p75_ns": 445796.0, "deser_p95_ns": 473102.0, "deser_p99_ns": 498209.55, "deser_ci_low_ns": 424826.136627907, "deser_ci_high_ns": 435383.9970930232, "total_mean_ns": 771431.2209302326, "total_median_ns": 769514.5, "total_std_ns": 39174.89828881309, "total_mad_ns": 28618.5, "total_cv": 0.05078210114645597, "total_min_ns": 699915.0, "total_max_ns": 855105.0, "total_p5_ns": 714636.5, "total_p25_ns": 739905.75, "total_p50_ns": 769514.5, "total_p75_ns": 797817.25, "total_p95_ns": 837158.5, "total_p99_ns": 851265.55, "total_ci_low_ns": 763368.5645348837, "total_ci_high_ns": 779707.8200581396, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.040398106410578}, {"serializer": "Json.Net (Helper)", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 561988.197368421, "avg_time_deser_ns": 718199.7236842106, "avg_time_total_ns": 1280187.9210526317, "median_size_bytes": 67072.0, "avg_ops_per_sec": 781.1353189286087, "min_ops_per_sec": 706.2032184505478, "max_ops_per_sec": 873.8279782242067, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 561988.197368421, "ser_median_ns": 562619.5, "ser_std_ns": 30393.358919351547, "ser_mad_ns": 22112.5, "ser_cv": 0.05408184560044534, "ser_min_ns": 486265.0, "ser_max_ns": 623193.0, "ser_p5_ns": 511273.25, "ser_p25_ns": 539234.25, "ser_p50_ns": 562619.5, "ser_p75_ns": 583954.0, "ser_p95_ns": 612373.25, "ser_p99_ns": 619812.75, "ser_ci_low_ns": 555262.4171052631, "ser_ci_high_ns": 569077.0726973683, "deser_mean_ns": 718199.7236842106, "deser_median_ns": 722329.5, "deser_std_ns": 42859.49197695455, "deser_mad_ns": 29530.5, "deser_cv": 0.05967628580681506, "deser_min_ns": 637332.0, "deser_max_ns": 858742.0, "deser_p5_ns": 650793.5, "deser_p25_ns": 686378.75, "deser_p50_ns": 722329.5, "deser_p75_ns": 745979.0, "deser_p95_ns": 779181.0, "deser_p99_ns": 837912.25, "deser_ci_low_ns": 708901.902631579, "deser_ci_high_ns": 728508.6845394737, "total_mean_ns": 1280187.9210526317, "total_median_ns": 1292452.5, "total_std_ns": 59804.94430301744, "total_mad_ns": 37808.5, "total_cv": 0.04671575424164521, "total_min_ns": 1144390.0, "total_max_ns": 1416023.0, "total_p5_ns": 1180039.75, "total_p25_ns": 1241236.75, "total_p50_ns": 1292452.5, "total_p75_ns": 1321201.75, "total_p95_ns": 1367218.5, "total_p99_ns": 1384209.5, "total_ci_low_ns": 1266762.0927631578, "total_ci_high_ns": 1293736.8644736842, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.75146871056029}, {"serializer": "MS Bond Compact", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 42984.97701149425, "avg_time_deser_ns": 68226.4367816092, "avg_time_total_ns": 111211.41379310345, "median_size_bytes": 39116.0, "avg_ops_per_sec": 8991.882810341658, "min_ops_per_sec": 7919.537499010058, "max_ops_per_sec": 10450.19437361535, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 42984.97701149425, "ser_median_ns": 42948.0, "ser_std_ns": 3049.466903380691, "ser_mad_ns": 2132.0, "ser_cv": 0.07094262031512215, "ser_min_ns": 36924.0, "ser_max_ns": 51392.0, "ser_p5_ns": 38685.2, "ser_p25_ns": 40709.5, "ser_p50_ns": 42948.0, "ser_p75_ns": 44723.5, "ser_p95_ns": 47656.0, "ser_p99_ns": 51332.66, "ser_ci_low_ns": 42357.974137931036, "ser_ci_high_ns": 43601.22988505747, "deser_mean_ns": 68226.4367816092, "deser_median_ns": 67270.0, "deser_std_ns": 4858.667339778613, "deser_mad_ns": 2774.0, "deser_cv": 0.07121385153574798, "deser_min_ns": 56885.0, "deser_max_ns": 79876.0, "deser_p5_ns": 61236.4, "deser_p25_ns": 65492.5, "deser_p50_ns": 67270.0, "deser_p75_ns": 71227.0, "deser_p95_ns": 77139.2, "deser_p99_ns": 78973.86, "deser_ci_low_ns": 67271.63304597701, "deser_ci_high_ns": 69227.61925287357, "total_mean_ns": 111211.41379310345, "total_median_ns": 111196.0, "total_std_ns": 6506.416894384225, "total_mad_ns": 3963.0, "total_cv": 0.05850493822953006, "total_min_ns": 95692.0, "total_max_ns": 126270.0, "total_p5_ns": 101805.3, "total_p25_ns": 106529.0, "total_p50_ns": 111196.0, "total_p75_ns": 114832.0, "total_p95_ns": 123499.1, "total_p99_ns": 126062.74, "total_ci_low_ns": 109904.0646551724, "total_ci_high_ns": 112615.28620689656, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 0.89576802507837, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.4280378452186198}, {"serializer": "MS XmlSerializer", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 734181.9358974359, "avg_time_deser_ns": 889684.9615384615, "avg_time_total_ns": 1623866.8974358975, "median_size_bytes": 159851.0, "avg_ops_per_sec": 615.8140187345467, "min_ops_per_sec": 562.8877945099301, "max_ops_per_sec": 692.7486534698048, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 734181.9358974359, "ser_median_ns": 734118.0, "ser_std_ns": 49087.24187179652, "ser_mad_ns": 29405.5, "ser_cv": 0.06685977885276373, "ser_min_ns": 633675.0, "ser_max_ns": 860651.0, "ser_p5_ns": 654466.5, "ser_p25_ns": 705941.75, "ser_p50_ns": 734118.0, "ser_p75_ns": 763059.25, "ser_p95_ns": 816736.7499999998, "ser_p99_ns": 853267.4700000001, "ser_ci_low_ns": 723848.2676282051, "ser_ci_high_ns": 744475.1842948718, "deser_mean_ns": 889684.9615384615, "deser_median_ns": 895051.5, "deser_std_ns": 45782.93260634865, "deser_mad_ns": 21027.5, "deser_cv": 0.051459712803484804, "deser_min_ns": 790452.0, "deser_max_ns": 1011634.0, "deser_p5_ns": 808862.55, "deser_p25_ns": 864790.25, "deser_p50_ns": 895051.5, "deser_p75_ns": 915886.5, "deser_p95_ns": 966688.2, "deser_p99_ns": 1002607.29, "deser_ci_low_ns": 879909.6298076924, "deser_ci_high_ns": 899740.8615384615, "total_mean_ns": 1623866.8974358975, "total_median_ns": 1640850.5, "total_std_ns": 80651.26432605964, "total_mad_ns": 53476.0, "total_cv": 0.049666179200652964, "total_min_ns": 1443525.0, "total_max_ns": 1776553.0, "total_p5_ns": 1493323.85, "total_p25_ns": 1563055.0, "total_p50_ns": 1640850.5, "total_p75_ns": 1684362.5, "total_p95_ns": 1744640.55, "total_p99_ns": 1764504.81, "total_ci_low_ns": 1604846.2567307693, "total_ci_high_ns": 1642298.682051282, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.421259232373075}, {"serializer": "Jil", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "2.17.0", "avg_time_ser_ns": 546533.8, "avg_time_deser_ns": 499666.77647058823, "avg_time_total_ns": 1046200.5764705882, "median_size_bytes": 65968.0, "avg_ops_per_sec": 955.8396568405188, "min_ops_per_sec": 870.3742870546621, "max_ops_per_sec": 1074.9555774607613, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 546533.8, "ser_median_ns": 543992.0, "ser_std_ns": 33750.93892760968, "ser_mad_ns": 20526.0, "ser_cv": 0.06175453179219597, "ser_min_ns": 469777.0, "ser_max_ns": 625645.0, "ser_p5_ns": 495096.6, "ser_p25_ns": 524791.0, "ser_p50_ns": 543992.0, "ser_p75_ns": 570115.0, "ser_p95_ns": 602516.6, "ser_p99_ns": 620090.9199999999, "ser_ci_low_ns": 539338.1202941177, "ser_ci_high_ns": 553347.2217647058, "deser_mean_ns": 499666.77647058823, "deser_median_ns": 496813.0, "deser_std_ns": 32740.35896819255, "deser_mad_ns": 22894.0, "deser_cv": 0.06552438647102994, "deser_min_ns": 444883.0, "deser_max_ns": 585116.0, "deser_p5_ns": 452227.2, "deser_p25_ns": 474324.0, "deser_p50_ns": 496813.0, "deser_p75_ns": 522173.0, "deser_p95_ns": 564060.0, "deser_p99_ns": 584903.48, "deser_ci_low_ns": 492872.72029411764, "deser_ci_high_ns": 506639.7570588235, "total_mean_ns": 1046200.5764705882, "total_median_ns": 1052964.0, "total_std_ns": 53725.87814398474, "total_mad_ns": 43824.0, "total_cv": 0.0513533249286019, "total_min_ns": 930271.0, "total_max_ns": 1148931.0, "total_p5_ns": 951385.4, "total_p25_ns": 1005495.0, "total_p50_ns": 1052964.0, "total_p75_ns": 1082892.0, "total_p95_ns": 1126816.8, "total_p99_ns": 1141273.56, "total_ci_low_ns": 1035192.4811764705, "total_ci_high_ns": 1056912.1835294117, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.92332749377476}, {"serializer": "MS Bond Fast", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 44366.23809523809, "avg_time_deser_ns": 70819.36904761905, "avg_time_total_ns": 115185.60714285714, "median_size_bytes": 40452.0, "avg_ops_per_sec": 8681.640222287197, "min_ops_per_sec": 7475.908883622526, "max_ops_per_sec": 9784.64007201495, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 44366.23809523809, "ser_median_ns": 44060.5, "ser_std_ns": 3774.4174931381367, "ser_mad_ns": 2373.5, "ser_cv": 0.08507409361676874, "ser_min_ns": 37617.0, "ser_max_ns": 53922.0, "ser_p5_ns": 39069.05, "ser_p25_ns": 42133.75, "ser_p50_ns": 44060.5, "ser_p75_ns": 47065.0, "ser_p95_ns": 51449.35, "ser_p99_ns": 53727.78, "ser_ci_low_ns": 43552.79226190476, "ser_ci_high_ns": 45171.987499999996, "deser_mean_ns": 70819.36904761905, "deser_median_ns": 70224.0, "deser_std_ns": 4702.320943933251, "deser_mad_ns": 3306.0, "deser_cv": 0.06639879749241205, "deser_min_ns": 58803.0, "deser_max_ns": 83706.0, "deser_p5_ns": 64392.15, "deser_p25_ns": 67505.0, "deser_p50_ns": 70224.0, "deser_p75_ns": 74185.0, "deser_p95_ns": 78174.9, "deser_p99_ns": 81927.31, "deser_ci_low_ns": 69807.29642857143, "deser_ci_high_ns": 71873.37589285713, "total_mean_ns": 115185.60714285714, "total_median_ns": 114319.5, "total_std_ns": 6525.5930811437565, "total_mad_ns": 4595.0, "total_cv": 0.05665285136753667, "total_min_ns": 102201.0, "total_max_ns": 133763.0, "total_p5_ns": 105487.75, "total_p25_ns": 110214.0, "total_p50_ns": 114319.5, "total_p75_ns": 119457.75, "total_p95_ns": 127517.29999999999, "total_p99_ns": 129888.56000000001, "total_ci_low_ns": 113739.91488095239, "total_ci_high_ns": 116599.39553571428, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 0.9475108225108225, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.9830650697537644}, {"serializer": "MemoryPack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 34700.86363636364, "avg_time_deser_ns": 59362.46590909091, "avg_time_total_ns": 94063.32954545454, "median_size_bytes": 42184.0, "avg_ops_per_sec": 10631.135478962251, "min_ops_per_sec": 8764.39551964101, "max_ops_per_sec": 12757.542897237992, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 34700.86363636364, "ser_median_ns": 33873.0, "ser_std_ns": 3856.711383268769, "ser_mad_ns": 2667.5, "ser_cv": 0.11114165410071392, "ser_min_ns": 28144.0, "ser_max_ns": 45022.0, "ser_p5_ns": 29663.3, "ser_p25_ns": 32032.75, "ser_p50_ns": 33873.0, "ser_p75_ns": 36869.0, "ser_p95_ns": 41754.1, "ser_p99_ns": 44302.509999999995, "ser_ci_low_ns": 33939.02698863637, "ser_ci_high_ns": 35524.821874999994, "deser_mean_ns": 59362.46590909091, "deser_median_ns": 58564.0, "deser_std_ns": 4998.256672975028, "deser_mad_ns": 2925.0, "deser_cv": 0.08419893945493229, "deser_min_ns": 48777.0, "deser_max_ns": 72815.0, "deser_p5_ns": 52752.45, "deser_p25_ns": 55969.25, "deser_p50_ns": 58564.0, "deser_p75_ns": 61759.25, "deser_p95_ns": 69353.2, "deser_p99_ns": 71968.48999999999, "deser_ci_low_ns": 58379.892045454544, "deser_ci_high_ns": 60441.37727272727, "total_mean_ns": 94063.32954545454, "total_median_ns": 92990.5, "total_std_ns": 7515.253437076148, "total_mad_ns": 4716.0, "total_cv": 0.07989567744829323, "total_min_ns": 78385.0, "total_max_ns": 114098.0, "total_p5_ns": 83959.8, "total_p25_ns": 88620.5, "total_p50_ns": 92990.5, "total_p75_ns": 98394.75, "total_p95_ns": 110669.7, "total_p99_ns": 113695.19, "total_ci_low_ns": 92572.52982954546, "total_ci_high_ns": 95622.53806818182, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "ExtendedXmlSerializer", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "3.10.0.0", "avg_time_ser_ns": 126335.67105263157, "avg_time_deser_ns": 124747.07894736843, "avg_time_total_ns": 251082.75, "median_size_bytes": 66338.0, "avg_ops_per_sec": 3982.7507066893286, "min_ops_per_sec": 3226.0874334216205, "max_ops_per_sec": 4599.90064214613, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 126335.67105263157, "ser_median_ns": 126530.0, "ser_std_ns": 17012.689994149, "ser_mad_ns": 13950.5, "ser_cv": 0.13466260045479553, "ser_min_ns": 103179.0, "ser_max_ns": 180465.0, "ser_p5_ns": 104907.75, "ser_p25_ns": 110968.75, "ser_p50_ns": 126530.0, "ser_p75_ns": 139129.25, "ser_p95_ns": 148558.25, "ser_p99_ns": 172725.0, "ser_ci_low_ns": 122514.16249999999, "ser_ci_high_ns": 130302.36875, "deser_mean_ns": 124747.07894736843, "deser_median_ns": 122955.5, "deser_std_ns": 9841.847326273875, "deser_mad_ns": 5692.5, "deser_cv": 0.07889441107014789, "deser_min_ns": 106986.0, "deser_max_ns": 153038.0, "deser_p5_ns": 113176.5, "deser_p25_ns": 117885.75, "deser_p50_ns": 122955.5, "deser_p75_ns": 130118.0, "deser_p95_ns": 144080.25, "deser_p99_ns": 152516.75, "deser_ci_low_ns": 122593.11052631578, "deser_ci_high_ns": 127073.80526315789, "total_mean_ns": 251082.75, "total_median_ns": 251037.5, "total_std_ns": 22644.574518487498, "total_mad_ns": 14636.5, "total_cv": 0.09018769516618524, "total_min_ns": 217396.0, "total_max_ns": 309973.0, "total_p5_ns": 219864.75, "total_p25_ns": 234334.25, "total_p50_ns": 251037.5, "total_p75_ns": 261998.25, "total_p95_ns": 297798.5, "total_p99_ns": 308137.75, "total_ci_low_ns": 246114.10822368422, "total_ci_high_ns": 256218.9207236842, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.551862824706355}, {"serializer": "LightProto", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.3.4", "avg_time_ser_ns": 60675.379310344826, "avg_time_deser_ns": 88249.6091954023, "avg_time_total_ns": 148924.98850574714, "median_size_bytes": 43112.0, "avg_ops_per_sec": 6714.789841742437, "min_ops_per_sec": 5478.761580732291, "max_ops_per_sec": 7862.438771258069, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 60675.379310344826, "ser_median_ns": 58284.0, "ser_std_ns": 9294.67074393556, "ser_mad_ns": 3553.0, "ser_cv": 0.15318685848496819, "ser_min_ns": 49882.0, "ser_max_ns": 89300.0, "ser_p5_ns": 51529.8, "ser_p25_ns": 54657.5, "ser_p50_ns": 58284.0, "ser_p75_ns": 61565.5, "ser_p95_ns": 83399.90000000001, "ser_p99_ns": 88363.46, "ser_ci_low_ns": 58793.159482758616, "ser_ci_high_ns": 62744.1882183908, "deser_mean_ns": 88249.6091954023, "deser_median_ns": 84823.0, "deser_std_ns": 8785.418119996923, "deser_mad_ns": 4988.0, "deser_cv": 0.09955192096708608, "deser_min_ns": 74602.0, "deser_max_ns": 110299.0, "deser_p5_ns": 77782.2, "deser_p25_ns": 81665.0, "deser_p50_ns": 84823.0, "deser_p75_ns": 94601.5, "deser_p95_ns": 104700.1, "deser_p99_ns": 109095.0, "deser_ci_low_ns": 86508.46494252874, "deser_ci_high_ns": 90152.8591954023, "total_mean_ns": 148924.98850574714, "total_median_ns": 147488.0, "total_std_ns": 13339.09072813266, "total_mad_ns": 9690.0, "total_cv": 0.0895691909193459, "total_min_ns": 127187.0, "total_max_ns": 182523.0, "total_p5_ns": 130786.1, "total_p25_ns": 138042.0, "total_p50_ns": 147488.0, "total_p75_ns": 157471.5, "total_p95_ns": 172952.9, "total_p99_ns": 181541.74, "total_ci_low_ns": 146218.65545977012, "total_ci_high_ns": 151787.24080459768, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.0530921721335105}, {"serializer": "SharpSerializer", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 1550328.0273972603, "avg_time_deser_ns": 4094782.904109589, "avg_time_total_ns": 5645110.931506849, "median_size_bytes": 322092.0, "avg_ops_per_sec": 177.14443739603715, "min_ops_per_sec": 165.23430554995596, "max_ops_per_sec": 192.63439282891503, "runs": 73, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 26, "ser_mean_ns": 1550328.0273972603, "ser_median_ns": 1550629.0, "ser_std_ns": 70653.30210219254, "ser_mad_ns": 57092.0, "ser_cv": 0.04557313088173187, "ser_min_ns": 1422940.0, "ser_max_ns": 1742217.0, "ser_p5_ns": 1443029.0, "ser_p25_ns": 1490439.0, "ser_p50_ns": 1550629.0, "ser_p75_ns": 1605676.0, "ser_p95_ns": 1643910.5999999999, "ser_p99_ns": 1707285.48, "ser_ci_low_ns": 1534087.112328767, "ser_ci_high_ns": 1566469.5688356163, "deser_mean_ns": 4094782.904109589, "deser_median_ns": 4105717.0, "deser_std_ns": 145512.0875948078, "deser_mad_ns": 80385.0, "deser_cv": 0.03553597125961661, "deser_min_ns": 3749493.0, "deser_max_ns": 4467863.0, "deser_p5_ns": 3838962.4, "deser_p25_ns": 4018546.0, "deser_p50_ns": 4105717.0, "deser_p75_ns": 4174491.0, "deser_p95_ns": 4359008.8, "deser_p99_ns": 4443798.44, "deser_ci_low_ns": 4061426.184589041, "deser_ci_high_ns": 4128396.0410958906, "total_mean_ns": 5645110.931506849, "total_median_ns": 5653884.0, "total_std_ns": 183534.73036892083, "total_mad_ns": 100992.0, "total_cv": 0.03251215655383586, "total_min_ns": 5191181.0, "total_max_ns": 6052012.0, "total_p5_ns": 5291329.2, "total_p25_ns": 5558196.0, "total_p50_ns": 5653884.0, "total_p75_ns": 5754876.0, "total_p95_ns": 5929632.0, "total_p99_ns": 5992909.36, "total_ci_low_ns": 5604613.84760274, "total_ci_high_ns": 5688249.888013698, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 44.68820051950231}, {"serializer": "BinaryPack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.0.3", "avg_time_ser_ns": 35820.83561643836, "avg_time_deser_ns": 62047.520547945205, "avg_time_total_ns": 97868.35616438356, "median_size_bytes": 40584.0, "avg_ops_per_sec": 10217.807258562312, "min_ops_per_sec": 8460.952703274388, "max_ops_per_sec": 12553.666926109116, "runs": 73, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 26, "ser_mean_ns": 35820.83561643836, "ser_median_ns": 34794.0, "ser_std_ns": 4604.7694236329535, "ser_mad_ns": 1867.0, "ser_cv": 0.12855002806019974, "ser_min_ns": 28289.0, "ser_max_ns": 54002.0, "ser_p5_ns": 30822.8, "ser_p25_ns": 33051.0, "ser_p50_ns": 34794.0, "ser_p75_ns": 37175.0, "ser_p95_ns": 43004.99999999999, "ser_p99_ns": 52871.6, "ser_ci_low_ns": 34843.06643835616, "ser_ci_high_ns": 37005.33116438356, "deser_mean_ns": 62047.520547945205, "deser_median_ns": 61584.0, "deser_std_ns": 4178.919517815278, "deser_mad_ns": 3123.0, "deser_cv": 0.06735030636052819, "deser_min_ns": 51369.0, "deser_max_ns": 73074.0, "deser_p5_ns": 56471.4, "deser_p25_ns": 59130.0, "deser_p50_ns": 61584.0, "deser_p75_ns": 65183.0, "deser_p95_ns": 69218.4, "deser_p99_ns": 72594.48, "deser_ci_low_ns": 61042.60136986301, "deser_ci_high_ns": 63025.26506849315, "total_mean_ns": 97868.35616438356, "total_median_ns": 97667.0, "total_std_ns": 7280.4866030328385, "total_mad_ns": 4732.0, "total_cv": 0.07439060885833461, "total_min_ns": 79658.0, "total_max_ns": 118190.0, "total_p5_ns": 87941.4, "total_p25_ns": 92900.0, "total_p50_ns": 97667.0, "total_p75_ns": 101170.0, "total_p95_ns": 111250.8, "total_p99_ns": 118053.92, "total_ci_low_ns": 96180.42876712327, "total_ci_high_ns": 99591.66849315068, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 0.32036114570361146, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.5110821685145296}, {"serializer": "ServiceStack Json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 534890.2023809524, "avg_time_deser_ns": 634941.4642857143, "avg_time_total_ns": 1169831.6666666667, "median_size_bytes": 65968.0, "avg_ops_per_sec": 854.8238421767234, "min_ops_per_sec": 777.1040285849946, "max_ops_per_sec": 944.1105440153776, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 534890.2023809524, "ser_median_ns": 526187.5, "ser_std_ns": 32006.390813560276, "ser_mad_ns": 22212.0, "ser_cv": 0.05983730992097161, "ser_min_ns": 473643.0, "ser_max_ns": 603745.0, "ser_p5_ns": 486702.15, "ser_p25_ns": 513536.75, "ser_p50_ns": 526187.5, "ser_p75_ns": 558599.0, "ser_p95_ns": 595033.0499999999, "ser_p99_ns": 602263.45, "ser_ci_low_ns": 528126.6904761905, "ser_ci_high_ns": 541815.9023809524, "deser_mean_ns": 634941.4642857143, "deser_median_ns": 635734.0, "deser_std_ns": 36383.89359746923, "deser_mad_ns": 23888.0, "deser_cv": 0.05730275252758892, "deser_min_ns": 572033.0, "deser_max_ns": 732114.0, "deser_p5_ns": 576401.05, "deser_p25_ns": 611823.25, "deser_p50_ns": 635734.0, "deser_p75_ns": 658353.0, "deser_p95_ns": 688071.85, "deser_p99_ns": 703585.2400000001, "deser_ci_low_ns": 627443.5270833333, "deser_ci_high_ns": 642626.4860119048, "total_mean_ns": 1169831.6666666667, "total_median_ns": 1171246.5, "total_std_ns": 58057.533438580445, "total_mad_ns": 40835.0, "total_cv": 0.04962896380127093, "total_min_ns": 1059198.0, "total_max_ns": 1286829.0, "total_p5_ns": 1070633.2, "total_p25_ns": 1133890.25, "total_p50_ns": 1171246.5, "total_p75_ns": 1212070.25, "total_p95_ns": 1266976.5499999998, "total_p99_ns": 1284222.8, "total_ci_low_ns": 1157321.4937500001, "total_ci_high_ns": 1182265.357440476, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.17229163231616}, {"serializer": "GroBuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.9.2", "avg_time_ser_ns": 27514.155844155845, "avg_time_deser_ns": 66888.77922077922, "avg_time_total_ns": 94402.93506493507, "median_size_bytes": 49316.0, "avg_ops_per_sec": 10592.890987045583, "min_ops_per_sec": 8723.491490234052, "max_ops_per_sec": 12310.116453701652, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 27514.155844155845, "ser_median_ns": 26695.0, "ser_std_ns": 3677.552611756239, "ser_mad_ns": 1999.0, "ser_cv": 0.13366038313464634, "ser_min_ns": 22373.0, "ser_max_ns": 41978.0, "ser_p5_ns": 23590.2, "ser_p25_ns": 24850.0, "ser_p50_ns": 26695.0, "ser_p75_ns": 28980.0, "ser_p95_ns": 34382.200000000004, "ser_p99_ns": 39716.23999999998, "ser_ci_low_ns": 26741.522727272728, "ser_ci_high_ns": 28353.251298701296, "deser_mean_ns": 66888.77922077922, "deser_median_ns": 64676.0, "deser_std_ns": 6761.09791695997, "deser_mad_ns": 3054.0, "deser_cv": 0.10107970269039701, "deser_min_ns": 58187.0, "deser_max_ns": 85775.0, "deser_p5_ns": 60032.8, "deser_p25_ns": 61826.0, "deser_p50_ns": 64676.0, "deser_p75_ns": 68806.0, "deser_p95_ns": 81676.20000000001, "deser_p99_ns": 85682.28, "deser_ci_low_ns": 65487.66915584415, "deser_ci_high_ns": 68464.30454545455, "total_mean_ns": 94402.93506493507, "total_median_ns": 93301.0, "total_std_ns": 8379.07272274781, "total_mad_ns": 5503.0, "total_cv": 0.08875860392459475, "total_min_ns": 81234.0, "total_max_ns": 114633.0, "total_p5_ns": 84622.4, "total_p25_ns": 87798.0, "total_p50_ns": 93301.0, "total_p75_ns": 98118.0, "total_p95_ns": 112671.0, "total_p99_ns": 114392.08, "total_ci_low_ns": 92687.17175324676, "total_ci_high_ns": 96235.0909090909, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": -0.01475796930342385, "effect_vs_fastest_cliffs_label": "negligible", "effect_vs_fastest_hedges_g": 0.04262949372228763}, {"serializer": "Migrant", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "0.13.0.0", "avg_time_ser_ns": 152956.89024390245, "avg_time_deser_ns": 167003.03658536586, "avg_time_total_ns": 319959.9268292683, "median_size_bytes": 92852.0, "avg_ops_per_sec": 3125.3913885709926, "min_ops_per_sec": 2665.422802692077, "max_ops_per_sec": 3571.568883063263, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 152956.89024390245, "ser_median_ns": 149044.0, "ser_std_ns": 13852.873522834774, "ser_mad_ns": 8367.5, "ser_cv": 0.09056717550118348, "ser_min_ns": 135947.0, "ser_max_ns": 197458.0, "ser_p5_ns": 138711.75, "ser_p25_ns": 142384.0, "ser_p50_ns": 149044.0, "ser_p75_ns": 162438.75, "ser_p95_ns": 184771.5, "ser_p99_ns": 188336.58999999997, "ser_ci_low_ns": 150017.13658536586, "ser_ci_high_ns": 155816.3137195122, "deser_mean_ns": 167003.03658536586, "deser_median_ns": 163739.0, "deser_std_ns": 15775.704574623775, "deser_mad_ns": 9001.5, "deser_cv": 0.09446357920899127, "deser_min_ns": 143651.0, "deser_max_ns": 219491.0, "deser_p5_ns": 150225.25, "deser_p25_ns": 155746.25, "deser_p50_ns": 163739.0, "deser_p75_ns": 173283.5, "deser_p95_ns": 199009.05000000002, "deser_p99_ns": 209941.90999999997, "deser_ci_low_ns": 163674.45518292685, "deser_ci_high_ns": 170529.5024390244, "total_mean_ns": 319959.9268292683, "total_median_ns": 316616.0, "total_std_ns": 22246.50183835568, "total_mad_ns": 13585.0, "total_cv": 0.0695290252714256, "total_min_ns": 279989.0, "total_max_ns": 375175.0, "total_p5_ns": 292102.5, "total_p25_ns": 303285.0, "total_p50_ns": 316616.0, "total_p75_ns": 330182.5, "total_p95_ns": 365563.9, "total_p99_ns": 370442.17, "total_ci_low_ns": 315209.8786585366, "total_ci_high_ns": 324534.31768292683, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.740627331802306}, {"serializer": "SpanJson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "4.2.1", "avg_time_ser_ns": 394645.94623655913, "avg_time_deser_ns": 382272.1397849462, "avg_time_total_ns": 776918.0860215054, "median_size_bytes": 65968.0, "avg_ops_per_sec": 1287.1369813526514, "min_ops_per_sec": 1144.2956860052639, "max_ops_per_sec": 1468.8472193253292, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 394645.94623655913, "ser_median_ns": 394966.0, "ser_std_ns": 30551.694183567113, "ser_mad_ns": 19727.0, "ser_cv": 0.07741545168502448, "ser_min_ns": 329070.0, "ser_max_ns": 470478.0, "ser_p5_ns": 342442.0, "ser_p25_ns": 376047.0, "ser_p50_ns": 394966.0, "ser_p75_ns": 416493.0, "ser_p95_ns": 441947.39999999997, "ser_p99_ns": 452189.31999999995, "ser_ci_low_ns": 388518.8809139785, "ser_ci_high_ns": 400862.9317204301, "deser_mean_ns": 382272.1397849462, "deser_median_ns": 382697.0, "deser_std_ns": 21043.061573928848, "deser_mad_ns": 14983.0, "deser_cv": 0.05504733247305698, "deser_min_ns": 348581.0, "deser_max_ns": 441488.0, "deser_p5_ns": 351548.8, "deser_p25_ns": 365475.0, "deser_p50_ns": 382697.0, "deser_p75_ns": 395175.0, "deser_p95_ns": 424738.6, "deser_p99_ns": 432934.76, "deser_ci_low_ns": 377885.7352150537, "deser_ci_high_ns": 386749.3075268817, "total_mean_ns": 776918.0860215054, "total_median_ns": 783539.0, "total_std_ns": 44453.0475772535, "total_mad_ns": 33927.0, "total_cv": 0.05721716147051186, "total_min_ns": 680806.0, "total_max_ns": 873900.0, "total_p5_ns": 705440.4, "total_p25_ns": 745720.0, "total_p50_ns": 783539.0, "total_p75_ns": 810284.0, "total_p95_ns": 845155.2, "total_p99_ns": 866603.48, "total_ci_low_ns": 768000.2661290322, "total_ci_high_ns": 785858.9537634408, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.054366950552957}, {"serializer": "YamlDotNet", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "17.1.0", "avg_time_ser_ns": 5842870.488372093, "avg_time_deser_ns": 4540702.209302326, "avg_time_total_ns": 10383572.697674418, "median_size_bytes": 78764.0, "avg_ops_per_sec": 96.30596607889763, "min_ops_per_sec": 86.97226750095105, "max_ops_per_sec": 106.10616579746264, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 5842870.488372093, "ser_median_ns": 5758062.0, "ser_std_ns": 297182.417624705, "ser_mad_ns": 141829.0, "ser_cv": 0.05086240029042716, "ser_min_ns": 5132310.0, "ser_max_ns": 6766266.0, "ser_p5_ns": 5458867.25, "ser_p25_ns": 5656345.75, "ser_p50_ns": 5758062.0, "ser_p75_ns": 5963862.25, "ser_p95_ns": 6434683.0, "ser_p99_ns": 6606122.6000000015, "ser_ci_low_ns": 5780889.359302326, "ser_ci_high_ns": 5905820.156976744, "deser_mean_ns": 4540702.209302326, "deser_median_ns": 4478064.0, "deser_std_ns": 221420.9762410331, "deser_mad_ns": 117045.0, "deser_cv": 0.048763597794944186, "deser_min_ns": 4013234.0, "deser_max_ns": 5042618.0, "deser_p5_ns": 4299005.5, "deser_p25_ns": 4391145.25, "deser_p50_ns": 4478064.0, "deser_p75_ns": 4699199.75, "deser_p95_ns": 4960315.25, "deser_p99_ns": 5040738.65, "deser_ci_low_ns": 4493940.804069768, "deser_ci_high_ns": 4586306.27877907, "total_mean_ns": 10383572.697674418, "total_median_ns": 10305978.0, "total_std_ns": 401127.1629158506, "total_mad_ns": 320106.0, "total_cv": 0.03863093894509835, "total_min_ns": 9424523.0, "total_max_ns": 11497918.0, "total_p5_ns": 9887266.25, "total_p25_ns": 10064549.75, "total_p50_ns": 10305978.0, "total_p75_ns": 10657244.0, "total_p95_ns": 11174152.0, "total_p99_ns": 11344878.9, "total_ci_low_ns": 10304968.826453488, "total_ci_high_ns": 10468105.492732558, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 36.32358618710344}, {"serializer": "MS DataContract Json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 599752.1666666666, "avg_time_deser_ns": 1300243.7023809524, "avg_time_total_ns": 1899995.869047619, "median_size_bytes": 87960.0, "avg_ops_per_sec": 526.316933784311, "min_ops_per_sec": 468.22047191004924, "max_ops_per_sec": 582.4223762017558, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 599752.1666666666, "ser_median_ns": 596498.5, "ser_std_ns": 37745.94435976456, "ser_mad_ns": 27004.5, "ser_cv": 0.06293590329077244, "ser_min_ns": 515158.0, "ser_max_ns": 714736.0, "ser_p5_ns": 546922.0, "ser_p25_ns": 571673.75, "ser_p50_ns": 596498.5, "ser_p75_ns": 625459.25, "ser_p95_ns": 661233.85, "ser_p99_ns": 692018.9, "ser_ci_low_ns": 591895.1547619047, "ser_ci_high_ns": 607289.9571428571, "deser_mean_ns": 1300243.7023809524, "deser_median_ns": 1301106.5, "deser_std_ns": 73139.12174008077, "deser_mad_ns": 46789.5, "deser_cv": 0.056250318002810884, "deser_min_ns": 1172238.0, "deser_max_ns": 1480594.0, "deser_p5_ns": 1206865.1, "deser_p25_ns": 1243103.75, "deser_p50_ns": 1301106.5, "deser_p75_ns": 1334745.5, "deser_p95_ns": 1458395.5499999998, "deser_p99_ns": 1477874.09, "deser_ci_low_ns": 1285293.3595238095, "deser_ci_high_ns": 1315892.4979166668, "total_mean_ns": 1899995.869047619, "total_median_ns": 1907022.0, "total_std_ns": 87866.27208006327, "total_mad_ns": 70819.0, "total_cv": 0.046245506904236906, "total_min_ns": 1716967.0, "total_max_ns": 2135746.0, "total_p5_ns": 1770510.75, "total_p25_ns": 1821587.25, "total_p50_ns": 1907022.0, "total_p75_ns": 1958412.25, "total_p95_ns": 2046831.9, "total_p99_ns": 2101150.77, "total_ci_low_ns": 1881728.1523809524, "total_ci_high_ns": 1920851.9267857142, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.173122635237632}, {"serializer": "NetJSON", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.0.0", "avg_time_ser_ns": 415705.1379310345, "avg_time_deser_ns": 393182.0804597701, "avg_time_total_ns": 808887.2183908046, "median_size_bytes": 65968.0, "avg_ops_per_sec": 1236.2662893714578, "min_ops_per_sec": 1098.7610370546172, "max_ops_per_sec": 1389.5392704640922, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 415705.1379310345, "ser_median_ns": 409860.0, "ser_std_ns": 29477.976362406804, "ser_mad_ns": 21287.0, "ser_cv": 0.07091078188044239, "ser_min_ns": 361294.0, "ser_max_ns": 481364.0, "ser_p5_ns": 370806.6, "ser_p25_ns": 397260.0, "ser_p50_ns": 409860.0, "ser_p75_ns": 437600.5, "ser_p95_ns": 468695.10000000003, "ser_p99_ns": 476996.92, "ser_ci_low_ns": 409669.53965517244, "ser_ci_high_ns": 421698.64080459764, "deser_mean_ns": 393182.0804597701, "deser_median_ns": 394211.0, "deser_std_ns": 23375.143192805226, "deser_mad_ns": 13899.0, "deser_cv": 0.05945119158398914, "deser_min_ns": 352761.0, "deser_max_ns": 444481.0, "deser_p5_ns": 357800.6, "deser_p25_ns": 376980.0, "deser_p50_ns": 394211.0, "deser_p75_ns": 406388.0, "deser_p95_ns": 438584.0, "deser_p99_ns": 444456.06, "deser_ci_low_ns": 388422.3189655172, "deser_ci_high_ns": 398189.81810344825, "total_mean_ns": 808887.2183908046, "total_median_ns": 809234.0, "total_std_ns": 45044.796124195695, "total_mad_ns": 33883.0, "total_cv": 0.05568736295995323, "total_min_ns": 719663.0, "total_max_ns": 910116.0, "total_p5_ns": 736796.3, "total_p25_ns": 775341.5, "total_p50_ns": 809234.0, "total_p75_ns": 842091.0, "total_p95_ns": 889377.6000000001, "total_p99_ns": 908471.68, "total_ci_low_ns": 799316.0916666667, "total_ci_high_ns": 818610.5850574713, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.100825044851156}, {"serializer": "MS Binary", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 287590.0, "avg_time_deser_ns": 334283.9875, "avg_time_total_ns": 621873.9875, "median_size_bytes": 53644.0, "avg_ops_per_sec": 1608.0428191249919, "min_ops_per_sec": 1460.7389878539552, "max_ops_per_sec": 1775.6343897766073, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 287590.0, "ser_median_ns": 288386.0, "ser_std_ns": 16201.857148589204, "ser_mad_ns": 11581.0, "ser_cv": 0.056336649913380867, "ser_min_ns": 252076.0, "ser_max_ns": 324062.0, "ser_p5_ns": 261822.1, "ser_p25_ns": 276009.5, "ser_p50_ns": 288386.0, "ser_p75_ns": 299131.75, "ser_p95_ns": 316250.8, "ser_p99_ns": 320804.04, "ser_ci_low_ns": 283861.098125, "ser_ci_high_ns": 290886.3471875, "deser_mean_ns": 334283.9875, "deser_median_ns": 334599.0, "deser_std_ns": 13386.973226401804, "deser_mad_ns": 8496.0, "deser_cv": 0.04004670796982702, "deser_min_ns": 304952.0, "deser_max_ns": 369805.0, "deser_p5_ns": 312425.5, "deser_p25_ns": 326204.0, "deser_p50_ns": 334599.0, "deser_p75_ns": 342832.0, "deser_p95_ns": 360528.5, "deser_p99_ns": 364802.72, "deser_ci_low_ns": 331531.5075, "deser_ci_high_ns": 337293.335625, "total_mean_ns": 621873.9875, "total_median_ns": 622557.0, "total_std_ns": 25662.318454656357, "total_mad_ns": 17095.0, "total_cv": 0.04126610691310891, "total_min_ns": 563179.0, "total_max_ns": 684585.0, "total_p5_ns": 582085.45, "total_p25_ns": 604792.25, "total_p50_ns": 622557.0, "total_p75_ns": 638423.0, "total_p95_ns": 662266.55, "total_p99_ns": 679704.38, "total_ci_low_ns": 616461.3009375, "total_ci_high_ns": 627536.64125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.369770734314297}, {"serializer": "ZeroFormatter", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.6.4", "avg_time_ser_ns": 54808.85227272727, "avg_time_deser_ns": 70175.40909090909, "avg_time_total_ns": 124984.26136363637, "median_size_bytes": 40448.0, "avg_ops_per_sec": 8001.007399568036, "min_ops_per_sec": 6429.214350006429, "max_ops_per_sec": 9824.726872592943, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 54808.85227272727, "ser_median_ns": 49735.0, "ser_std_ns": 11752.385401827929, "ser_mad_ns": 4496.5, "ser_cv": 0.2144249498848908, "ser_min_ns": 39957.0, "ser_max_ns": 81861.0, "ser_p5_ns": 42905.05, "ser_p25_ns": 46404.25, "ser_p50_ns": 49735.0, "ser_p75_ns": 62501.25, "ser_p95_ns": 76925.59999999999, "ser_p99_ns": 81057.12, "ser_ci_low_ns": 52518.0903409091, "ser_ci_high_ns": 57409.30795454545, "deser_mean_ns": 70175.40909090909, "deser_median_ns": 69198.0, "deser_std_ns": 5139.314050647302, "deser_mad_ns": 3730.5, "deser_cv": 0.07323525601382033, "deser_min_ns": 59867.0, "deser_max_ns": 83388.0, "deser_p5_ns": 62888.75, "deser_p25_ns": 66194.75, "deser_p50_ns": 69198.0, "deser_p75_ns": 74142.75, "deser_p95_ns": 78837.39999999998, "deser_p99_ns": 81289.55999999998, "deser_ci_low_ns": 69126.00056818181, "deser_ci_high_ns": 71321.76846590909, "total_mean_ns": 124984.26136363637, "total_median_ns": 120731.5, "total_std_ns": 13180.128936015168, "total_mad_ns": 7984.5, "total_cv": 0.10545430914431815, "total_min_ns": 101784.0, "total_max_ns": 155540.0, "total_p5_ns": 107814.9, "total_p25_ns": 115334.25, "total_p50_ns": 120731.5, "total_p75_ns": 136132.0, "total_p95_ns": 150391.9, "total_p99_ns": 153212.75, "total_ci_low_ns": 122354.19176136363, "total_ci_high_ns": 127761.07073863636, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 0.9783057851239669, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.869730247300058}, {"serializer": "FsPickler", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 117520.3595505618, "avg_time_deser_ns": 118447.87640449438, "avg_time_total_ns": 235968.23595505618, "median_size_bytes": 45200.0, "avg_ops_per_sec": 4237.858523426286, "min_ops_per_sec": 3585.463098413791, "max_ops_per_sec": 4950.887198986058, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 117520.3595505618, "ser_median_ns": 113698.0, "ser_std_ns": 13770.065915739104, "ser_mad_ns": 8303.0, "ser_cv": 0.11717174767334412, "ser_min_ns": 92859.0, "ser_max_ns": 153816.0, "ser_p5_ns": 101871.6, "ser_p25_ns": 106871.0, "ser_p50_ns": 113698.0, "ser_p75_ns": 126543.0, "ser_p95_ns": 144476.4, "ser_p99_ns": 151755.92, "ser_ci_low_ns": 114766.21264044945, "ser_ci_high_ns": 120385.61095505618, "deser_mean_ns": 118447.87640449438, "deser_median_ns": 116930.0, "deser_std_ns": 8660.811791182039, "deser_mad_ns": 4692.0, "deser_cv": 0.07311918165257553, "deser_min_ns": 100771.0, "deser_max_ns": 142299.0, "deser_p5_ns": 105572.0, "deser_p25_ns": 113031.0, "deser_p50_ns": 116930.0, "deser_p75_ns": 122872.0, "deser_p95_ns": 134182.4, "deser_p99_ns": 136862.36000000002, "deser_ci_low_ns": 116712.3441011236, "deser_ci_high_ns": 120200.15337078652, "total_mean_ns": 235968.23595505618, "total_median_ns": 232557.0, "total_std_ns": 18508.867923746515, "total_mad_ns": 12286.0, "total_cv": 0.07843796368962057, "total_min_ns": 201984.0, "total_max_ns": 278904.0, "total_p5_ns": 209620.4, "total_p25_ns": 222589.0, "total_p50_ns": 232557.0, "total_p75_ns": 247076.0, "total_p95_ns": 273766.0, "total_p99_ns": 274892.08, "total_ci_low_ns": 232062.44719101122, "total_ci_high_ns": 239922.17949438203, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.982494854399917}, {"serializer": "NetSerializer", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "4.1.2", "avg_time_ser_ns": 93895.98765432098, "avg_time_deser_ns": 118455.56790123456, "avg_time_total_ns": 212351.55555555556, "median_size_bytes": 43788.0, "avg_ops_per_sec": 4709.172001984131, "min_ops_per_sec": 3871.3024222739255, "max_ops_per_sec": 5537.466498327685, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 93895.98765432098, "ser_median_ns": 90027.0, "ser_std_ns": 14074.253589883398, "ser_mad_ns": 8048.0, "ser_cv": 0.1498919596191682, "ser_min_ns": 72959.0, "ser_max_ns": 137798.0, "ser_p5_ns": 78144.0, "ser_p25_ns": 83800.0, "ser_p50_ns": 90027.0, "ser_p75_ns": 99932.0, "ser_p95_ns": 122095.0, "ser_p99_ns": 135214.80000000002, "ser_ci_low_ns": 90866.52407407407, "ser_ci_high_ns": 97004.36697530864, "deser_mean_ns": 118455.56790123456, "deser_median_ns": 117803.0, "deser_std_ns": 7050.350703933585, "deser_mad_ns": 4674.0, "deser_cv": 0.05951894730530522, "deser_min_ns": 103592.0, "deser_max_ns": 136675.0, "deser_p5_ns": 106907.0, "deser_p25_ns": 114558.0, "deser_p50_ns": 117803.0, "deser_p75_ns": 123185.0, "deser_p95_ns": 130241.0, "deser_p99_ns": 135730.2, "deser_ci_low_ns": 116939.47037037037, "deser_ci_high_ns": 119994.58641975309, "total_mean_ns": 212351.55555555556, "total_median_ns": 210990.0, "total_std_ns": 15590.388630499241, "total_mad_ns": 11801.0, "total_cv": 0.07341782163879874, "total_min_ns": 180588.0, "total_max_ns": 258311.0, "total_p5_ns": 192953.0, "total_p25_ns": 200791.0, "total_p50_ns": 210990.0, "total_p75_ns": 224326.0, "total_p95_ns": 238158.0, "total_p99_ns": 252632.6, "total_ci_low_ns": 208877.7916666667, "total_ci_high_ns": 215812.2327160494, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.75027327834347}, {"serializer": "FsPicklerJson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 599335.4230769231, "avg_time_deser_ns": 863246.5384615385, "avg_time_total_ns": 1462581.9615384615, "median_size_bytes": 96944.0, "avg_ops_per_sec": 683.7223665387746, "min_ops_per_sec": 605.2466410324539, "max_ops_per_sec": 786.4974124235131, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 599335.4230769231, "ser_median_ns": 589006.0, "ser_std_ns": 40515.61595125502, "ser_mad_ns": 22396.0, "ser_cv": 0.06760090325255971, "ser_min_ns": 520078.0, "ser_max_ns": 706679.0, "ser_p5_ns": 538330.2, "ser_p25_ns": 575313.25, "ser_p50_ns": 589006.0, "ser_p75_ns": 625476.75, "ser_p95_ns": 669805.1, "ser_p99_ns": 706396.41, "ser_ci_low_ns": 590807.5198717949, "ser_ci_high_ns": 608638.7916666666, "deser_mean_ns": 863246.5384615385, "deser_median_ns": 857531.0, "deser_std_ns": 51902.723276322424, "deser_mad_ns": 36331.5, "deser_cv": 0.060125029135735045, "deser_min_ns": 751382.0, "deser_max_ns": 1017927.0, "deser_p5_ns": 791089.05, "deser_p25_ns": 825657.5, "deser_p50_ns": 857531.0, "deser_p75_ns": 894244.5, "deser_p95_ns": 939766.1999999998, "deser_p99_ns": 987825.3900000001, "deser_ci_low_ns": 851594.6176282051, "deser_ci_high_ns": 874926.548076923, "total_mean_ns": 1462581.9615384615, "total_median_ns": 1442706.5, "total_std_ns": 84143.61466810232, "total_mad_ns": 61692.0, "total_cv": 0.05753087135000167, "total_min_ns": 1271460.0, "total_max_ns": 1652219.0, "total_p5_ns": 1345948.2, "total_p25_ns": 1399691.25, "total_p50_ns": 1442706.5, "total_p75_ns": 1528788.25, "total_p95_ns": 1604806.2999999998, "total_p99_ns": 1644830.85, "total_ci_low_ns": 1443971.2740384615, "total_ci_high_ns": 1481113.3272435896, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.52144552288057}, {"serializer": "Apache.Avro", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.12.1", "avg_time_ser_ns": 378197.0131578947, "avg_time_deser_ns": 273851.7894736842, "avg_time_total_ns": 652048.802631579, "median_size_bytes": 28835.0, "avg_ops_per_sec": 1533.6275382519498, "min_ops_per_sec": 1232.8966413429696, "max_ops_per_sec": 2017.3410637842896, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 378197.0131578947, "ser_median_ns": 367522.0, "ser_std_ns": 46854.712093020324, "ser_mad_ns": 27317.5, "ser_cv": 0.12388969363292882, "ser_min_ns": 241963.0, "ser_max_ns": 505225.0, "ser_p5_ns": 322898.0, "ser_p25_ns": 347960.25, "ser_p50_ns": 367522.0, "ser_p75_ns": 401471.75, "ser_p95_ns": 469873.25, "ser_p99_ns": 493239.25, "ser_ci_low_ns": 368103.14934210526, "ser_ci_high_ns": 388659.89539473684, "deser_mean_ns": 273851.7894736842, "deser_median_ns": 269458.5, "deser_std_ns": 19995.940682925815, "deser_mad_ns": 9132.5, "deser_cv": 0.07301738185226402, "deser_min_ns": 245403.0, "deser_max_ns": 352010.0, "deser_p5_ns": 249580.5, "deser_p25_ns": 261614.25, "deser_p50_ns": 269458.5, "deser_p75_ns": 278391.5, "deser_p95_ns": 311275.25, "deser_p99_ns": 331543.25, "deser_ci_low_ns": 269301.08782894735, "deser_ci_high_ns": 278402.1891447368, "total_mean_ns": 652048.802631579, "total_median_ns": 645993.5, "total_std_ns": 57758.12043202692, "total_mad_ns": 34061.5, "total_cv": 0.08857944405222909, "total_min_ns": 495702.0, "total_max_ns": 811098.0, "total_p5_ns": 578038.0, "total_p25_ns": 613000.0, "total_p50_ns": 645993.5, "total_p75_ns": 680464.75, "total_p95_ns": 751964.25, "total_p99_ns": 802821.0, "total_ci_low_ns": 639048.8009868421, "total_ci_high_ns": 665224.9677631578, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.494403697149494}, {"serializer": "MS Bond Json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 445974.59523809527, "avg_time_deser_ns": 655521.3095238095, "avg_time_total_ns": 1101495.9047619049, "median_size_bytes": 65968.0, "avg_ops_per_sec": 907.8563031209419, "min_ops_per_sec": 823.0771066864315, "max_ops_per_sec": 988.5476751830049, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 445974.59523809527, "ser_median_ns": 442725.0, "ser_std_ns": 29137.767052781273, "ser_mad_ns": 24580.5, "ser_cv": 0.06533503783377013, "ser_min_ns": 387836.0, "ser_max_ns": 515718.0, "ser_p5_ns": 403385.05, "ser_p25_ns": 422919.0, "ser_p50_ns": 442725.0, "ser_p75_ns": 470167.0, "ser_p95_ns": 491629.4, "ser_p99_ns": 508785.01, "ser_ci_low_ns": 440107.01130952383, "ser_ci_high_ns": 452289.12053571426, "deser_mean_ns": 655521.3095238095, "deser_median_ns": 658854.0, "deser_std_ns": 34135.3640865998, "deser_mad_ns": 25306.5, "deser_cv": 0.052073614679890065, "deser_min_ns": 593352.0, "deser_max_ns": 744690.0, "deser_p5_ns": 599433.85, "deser_p25_ns": 629436.0, "deser_p50_ns": 658854.0, "deser_p75_ns": 678939.5, "deser_p95_ns": 707565.25, "deser_p99_ns": 741687.89, "deser_ci_low_ns": 648222.4761904762, "deser_ci_high_ns": 662854.3979166667, "total_mean_ns": 1101495.9047619049, "total_median_ns": 1107264.0, "total_std_ns": 55728.25585349633, "total_mad_ns": 47420.0, "total_cv": 0.05059324833853317, "total_min_ns": 1011585.0, "total_max_ns": 1214953.0, "total_p5_ns": 1021819.2, "total_p25_ns": 1051695.75, "total_p50_ns": 1107264.0, "total_p75_ns": 1138116.75, "total_p95_ns": 1189649.05, "total_p99_ns": 1206683.71, "total_ci_low_ns": 1089830.1419642859, "total_ci_high_ns": 1113166.2589285714, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.117851545196185}, {"serializer": "NetSerializer", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "4.1.2", "avg_time_ser_ns": 63469.322222222225, "avg_time_deser_ns": 73139.96666666666, "avg_time_total_ns": 136609.2888888889, "median_size_bytes": 32839.0, "avg_ops_per_sec": 7320.146441969619, "min_ops_per_sec": 6239.860227130912, "max_ops_per_sec": 8413.825598223, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 63469.322222222225, "ser_median_ns": 62799.5, "ser_std_ns": 5022.817752607108, "ser_mad_ns": 3253.0, "ser_cv": 0.07913772475812718, "ser_min_ns": 53212.0, "ser_max_ns": 77669.0, "ser_p5_ns": 56134.15, "ser_p25_ns": 60069.75, "ser_p50_ns": 62799.5, "ser_p75_ns": 66419.75, "ser_p95_ns": 72141.55, "ser_p99_ns": 75522.31999999999, "ser_ci_low_ns": 62433.815, "ser_ci_high_ns": 64533.53277777778, "deser_mean_ns": 73139.96666666666, "deser_median_ns": 72181.0, "deser_std_ns": 5162.785052010051, "deser_mad_ns": 3486.5, "deser_cv": 0.07058774138549036, "deser_min_ns": 63983.0, "deser_max_ns": 85003.0, "deser_p5_ns": 65668.35, "deser_p25_ns": 70009.5, "deser_p50_ns": 72181.0, "deser_p75_ns": 76517.25, "deser_p95_ns": 82598.9, "deser_p99_ns": 84972.74, "deser_ci_low_ns": 72154.2675, "deser_ci_high_ns": 74163.35555555555, "total_mean_ns": 136609.2888888889, "total_median_ns": 136690.0, "total_std_ns": 8252.535941525326, "total_mad_ns": 5046.0, "total_cv": 0.060409771609583024, "total_min_ns": 118852.0, "total_max_ns": 160260.0, "total_p5_ns": 123461.75, "total_p25_ns": 131525.25, "total_p50_ns": 136690.0, "total_p75_ns": 141467.75, "total_p95_ns": 149001.95, "total_p99_ns": 158804.85, "total_ci_low_ns": 134967.03055555554, "total_ci_high_ns": 138290.33805555556, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.63424052206261}, {"serializer": "Json.Net (Helper)", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 566422.782051282, "avg_time_deser_ns": 733531.4487179487, "avg_time_total_ns": 1299954.2307692308, "median_size_bytes": 67072.0, "avg_ops_per_sec": 769.2578525693656, "min_ops_per_sec": 697.0414077448271, "max_ops_per_sec": 864.5612870205143, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 566422.782051282, "ser_median_ns": 565110.0, "ser_std_ns": 33708.3135298965, "ser_mad_ns": 27043.5, "ser_cv": 0.05951087173404805, "ser_min_ns": 497463.0, "ser_max_ns": 635989.0, "ser_p5_ns": 512566.0, "ser_p25_ns": 542878.25, "ser_p50_ns": 565110.0, "ser_p75_ns": 594081.25, "ser_p95_ns": 617135.5, "ser_p99_ns": 634872.5, "ser_ci_low_ns": 558760.9137820513, "ser_ci_high_ns": 573701.8618589743, "deser_mean_ns": 733531.4487179487, "deser_median_ns": 735024.0, "deser_std_ns": 38990.4429580989, "deser_mad_ns": 26232.0, "deser_cv": 0.05315442579353019, "deser_min_ns": 648575.0, "deser_max_ns": 798646.0, "deser_p5_ns": 659430.15, "deser_p25_ns": 708640.0, "deser_p50_ns": 735024.0, "deser_p75_ns": 758278.25, "deser_p95_ns": 793817.35, "deser_p99_ns": 797216.88, "deser_ci_low_ns": 724903.0307692308, "deser_ci_high_ns": 742375.021474359, "total_mean_ns": 1299954.2307692308, "total_median_ns": 1306348.5, "total_std_ns": 61467.53254623678, "total_mad_ns": 41488.5, "total_cv": 0.04728438208925569, "total_min_ns": 1156656.0, "total_max_ns": 1434635.0, "total_p5_ns": 1194910.3, "total_p25_ns": 1257411.5, "total_p50_ns": 1306348.5, "total_p75_ns": 1339461.25, "total_p95_ns": 1391461.65, "total_p99_ns": 1424541.07, "total_ci_low_ns": 1287008.2166666666, "total_ci_high_ns": 1313394.2596153845, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.755839758571167}, {"serializer": "MemoryPack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 24860.719512195123, "avg_time_deser_ns": 24462.219512195123, "avg_time_total_ns": 49322.939024390245, "median_size_bytes": 31637.0, "avg_ops_per_sec": 20274.54202405698, "min_ops_per_sec": 17394.329448599758, "max_ops_per_sec": 23222.330593098322, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 24860.719512195123, "ser_median_ns": 24339.5, "ser_std_ns": 1953.1296080993516, "ser_mad_ns": 1048.5, "ser_cv": 0.07856287534804725, "ser_min_ns": 21473.0, "ser_max_ns": 30401.0, "ser_p5_ns": 22516.85, "ser_p25_ns": 23649.75, "ser_p50_ns": 24339.5, "ser_p75_ns": 25821.25, "ser_p95_ns": 29581.15, "ser_p99_ns": 30382.37, "ser_ci_low_ns": 24440.25731707317, "ser_ci_high_ns": 25303.57957317073, "deser_mean_ns": 24462.219512195123, "deser_median_ns": 24350.0, "deser_std_ns": 1637.3702042566347, "deser_mad_ns": 799.0, "deser_cv": 0.06693465420994846, "deser_min_ns": 20320.0, "deser_max_ns": 29678.0, "deser_p5_ns": 21737.15, "deser_p25_ns": 23641.0, "deser_p50_ns": 24350.0, "deser_p75_ns": 25174.5, "deser_p95_ns": 27072.05, "deser_p99_ns": 28990.309999999998, "deser_ci_low_ns": 24111.821341463416, "deser_ci_high_ns": 24820.33231707317, "total_mean_ns": 49322.939024390245, "total_median_ns": 48846.0, "total_std_ns": 3172.2746457920125, "total_mad_ns": 1992.0, "total_cv": 0.06431641561796063, "total_min_ns": 43062.0, "total_max_ns": 57490.0, "total_p5_ns": 44268.5, "total_p25_ns": 47481.5, "total_p50_ns": 48846.0, "total_p75_ns": 51399.0, "total_p95_ns": 55669.25, "total_p99_ns": 56863.06, "total_ci_low_ns": 48610.28628048781, "total_ci_high_ns": 50027.70457317073, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 0.9855875831485588, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.294134663291656}, {"serializer": "SharpSerializer", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 1377188.0649350649, "avg_time_deser_ns": 3924686.012987013, "avg_time_total_ns": 5301874.077922078, "median_size_bytes": 241569.0, "avg_ops_per_sec": 188.61255195859388, "min_ops_per_sec": 166.07927196161708, "max_ops_per_sec": 209.10834112261904, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 1377188.0649350649, "ser_median_ns": 1380674.0, "ser_std_ns": 77181.37412824856, "ser_mad_ns": 64386.0, "ser_cv": 0.05604272654794441, "ser_min_ns": 1236351.0, "ser_max_ns": 1619168.0, "ser_p5_ns": 1256192.4, "ser_p25_ns": 1315600.0, "ser_p50_ns": 1380674.0, "ser_p75_ns": 1440930.0, "ser_p95_ns": 1474326.0, "ser_p99_ns": 1548753.2399999995, "ser_ci_low_ns": 1360224.2535714286, "ser_ci_high_ns": 1394455.7181818183, "deser_mean_ns": 3924686.012987013, "deser_median_ns": 3898551.0, "deser_std_ns": 229916.6040649301, "deser_mad_ns": 98543.0, "deser_cv": 0.05858216512203085, "deser_min_ns": 3437491.0, "deser_max_ns": 4636498.0, "deser_p5_ns": 3597017.2, "deser_p25_ns": 3808652.0, "deser_p50_ns": 3898551.0, "deser_p75_ns": 3997094.0, "deser_p95_ns": 4427650.8, "deser_p99_ns": 4600475.52, "deser_ci_low_ns": 3875179.6642857143, "deser_ci_high_ns": 3975918.5743506495, "total_mean_ns": 5301874.077922078, "total_median_ns": 5287200.0, "total_std_ns": 258337.0691986571, "total_mad_ns": 133843.0, "total_cv": 0.04872561388706258, "total_min_ns": 4782210.0, "total_max_ns": 6021221.0, "total_p5_ns": 4881406.2, "total_p25_ns": 5162072.0, "total_p50_ns": 5287200.0, "total_p75_ns": 5441879.0, "total_p95_ns": 5831569.2, "total_p99_ns": 5984700.72, "total_ci_low_ns": 5242881.05, "total_ci_high_ns": 5359151.960714286, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.69271677110999}, {"serializer": "Migrant", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "0.13.0.0", "avg_time_ser_ns": 107644.07058823529, "avg_time_deser_ns": 80137.28235294118, "avg_time_total_ns": 187781.35294117648, "median_size_bytes": 69638.0, "avg_ops_per_sec": 5325.342396021906, "min_ops_per_sec": 4349.736188500167, "max_ops_per_sec": 6195.710090333453, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 107644.07058823529, "ser_median_ns": 107046.0, "ser_std_ns": 6239.537234420506, "ser_mad_ns": 3947.0, "ser_cv": 0.05796452326936103, "ser_min_ns": 94102.0, "ser_max_ns": 125947.0, "ser_p5_ns": 98049.6, "ser_p25_ns": 103099.0, "ser_p50_ns": 107046.0, "ser_p75_ns": 110648.0, "ser_p95_ns": 118539.6, "ser_p99_ns": 123951.99999999999, "ser_ci_low_ns": 106379.30470588236, "ser_ci_high_ns": 108933.26823529412, "deser_mean_ns": 80137.28235294118, "deser_median_ns": 76360.0, "deser_std_ns": 10940.905163663569, "deser_mad_ns": 5431.0, "deser_cv": 0.1365270301465622, "deser_min_ns": 66683.0, "deser_max_ns": 111302.0, "deser_p5_ns": 68058.4, "deser_p25_ns": 72725.0, "deser_p50_ns": 76360.0, "deser_p75_ns": 85378.0, "deser_p95_ns": 105478.59999999998, "deser_p99_ns": 110490.56, "deser_ci_low_ns": 77840.05352941176, "deser_ci_high_ns": 82568.11588235294, "total_mean_ns": 187781.35294117648, "total_median_ns": 184193.0, "total_std_ns": 15192.868198211792, "total_mad_ns": 8677.0, "total_cv": 0.08090722513311022, "total_min_ns": 161402.0, "total_max_ns": 229899.0, "total_p5_ns": 168565.8, "total_p25_ns": 176431.0, "total_p50_ns": 184193.0, "total_p75_ns": 197131.0, "total_p95_ns": 219081.19999999998, "total_p99_ns": 223422.59999999998, "total_ci_low_ns": 184651.0694117647, "total_ci_high_ns": 191163.29735294115, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.63184136173159}, {"serializer": "Google.Protobuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "3.35.1", "avg_time_ser_ns": 35900.03846153846, "avg_time_deser_ns": 35123.53846153846, "avg_time_total_ns": 71023.57692307692, "median_size_bytes": 29432.0, "avg_ops_per_sec": 14079.83156189196, "min_ops_per_sec": 11492.007308916649, "max_ops_per_sec": 15969.848925229167, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 35900.03846153846, "ser_median_ns": 34926.5, "ser_std_ns": 3785.6149955595583, "ser_mad_ns": 1632.5, "ser_cv": 0.10544877269742428, "ser_min_ns": 30182.0, "ser_max_ns": 48019.0, "ser_p5_ns": 31850.55, "ser_p25_ns": 33472.75, "ser_p50_ns": 34926.5, "ser_p75_ns": 37202.75, "ser_p95_ns": 43798.64999999999, "ser_p99_ns": 46789.310000000005, "ser_ci_low_ns": 35132.37467948718, "ser_ci_high_ns": 36769.728525641025, "deser_mean_ns": 35123.53846153846, "deser_median_ns": 35148.5, "deser_std_ns": 2107.4022828160696, "deser_mad_ns": 1315.0, "deser_cv": 0.05999971458239468, "deser_min_ns": 30707.0, "deser_max_ns": 40602.0, "deser_p5_ns": 31934.85, "deser_p25_ns": 33740.5, "deser_p50_ns": 35148.5, "deser_p75_ns": 36172.75, "deser_p95_ns": 39056.5, "deser_p99_ns": 40311.71, "deser_ci_low_ns": 34672.461217948716, "deser_ci_high_ns": 35606.15833333333, "total_mean_ns": 71023.57692307692, "total_median_ns": 69961.0, "total_std_ns": 5589.159178729375, "total_mad_ns": 2920.5, "total_cv": 0.078694419809112, "total_min_ns": 62618.0, "total_max_ns": 87017.0, "total_p5_ns": 64193.3, "total_p25_ns": 67488.75, "total_p50_ns": 69961.0, "total_p75_ns": 72909.0, "total_p95_ns": 83478.25, "total_p99_ns": 86215.43000000001, "total_ci_low_ns": 69814.38205128204, "total_ci_high_ns": 72331.12852564102, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.2473295920608685}, {"serializer": "MS Binary", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 264139.9555555555, "avg_time_deser_ns": 277599.77777777775, "avg_time_total_ns": 541739.7333333333, "median_size_bytes": 40233.0, "avg_ops_per_sec": 1845.9048477891477, "min_ops_per_sec": 1669.15927785493, "max_ops_per_sec": 2075.2743512692377, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 264139.9555555555, "ser_median_ns": 264529.5, "ser_std_ns": 15885.017984174681, "ser_mad_ns": 10805.5, "ser_cv": 0.06013864108807138, "ser_min_ns": 230650.0, "ser_max_ns": 307363.0, "ser_p5_ns": 235377.15, "ser_p25_ns": 254291.5, "ser_p50_ns": 264529.5, "ser_p75_ns": 276614.5, "ser_p95_ns": 287181.15, "ser_p99_ns": 293259.17, "ser_ci_low_ns": 260868.68694444446, "ser_ci_high_ns": 267532.86888888886, "deser_mean_ns": 277599.77777777775, "deser_median_ns": 278648.5, "deser_std_ns": 14821.360839716224, "deser_mad_ns": 9666.5, "deser_cv": 0.0533911120475785, "deser_min_ns": 248765.0, "deser_max_ns": 314135.0, "deser_p5_ns": 254721.65, "deser_p25_ns": 267080.25, "deser_p50_ns": 278648.5, "deser_p75_ns": 287016.25, "deser_p95_ns": 304639.5, "deser_p99_ns": 311970.52, "deser_ci_low_ns": 274712.68583333335, "deser_ci_high_ns": 280725.6163888889, "total_mean_ns": 541739.7333333333, "total_median_ns": 541730.0, "total_std_ns": 26720.311776085924, "total_mad_ns": 19350.5, "total_cv": 0.04932315304191446, "total_min_ns": 481864.0, "total_max_ns": 599104.0, "total_p5_ns": 495983.55, "total_p25_ns": 521576.25, "total_p50_ns": 541730.0, "total_p75_ns": 559248.5, "total_p95_ns": 583577.7, "total_p99_ns": 598843.23, "total_ci_low_ns": 536332.2305555556, "total_ci_high_ns": 547275.7366666667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.182199853185274}, {"serializer": "Ceras", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "4.1.7", "avg_time_ser_ns": 47765.22222222222, "avg_time_deser_ns": 78230.6, "avg_time_total_ns": 125995.82222222222, "median_size_bytes": 29187.0, "avg_ops_per_sec": 7936.7710957612, "min_ops_per_sec": 6890.896436717452, "max_ops_per_sec": 8737.97436278322, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 47765.22222222222, "ser_median_ns": 47102.0, "ser_std_ns": 2832.509372150576, "ser_mad_ns": 1287.0, "ser_cv": 0.0593006635449669, "ser_min_ns": 42665.0, "ser_max_ns": 55318.0, "ser_p5_ns": 44135.9, "ser_p25_ns": 45832.25, "ser_p50_ns": 47102.0, "ser_p75_ns": 48415.5, "ser_p95_ns": 53231.0, "ser_p99_ns": 55200.52, "ser_ci_low_ns": 47183.77277777778, "ser_ci_high_ns": 48349.861666666664, "deser_mean_ns": 78230.6, "deser_median_ns": 77732.0, "deser_std_ns": 4308.495842225208, "deser_mad_ns": 2664.0, "deser_cv": 0.05507430394532584, "deser_min_ns": 70185.0, "deser_max_ns": 90899.0, "deser_p5_ns": 72084.9, "deser_p25_ns": 75411.25, "deser_p50_ns": 77732.0, "deser_p75_ns": 80711.75, "deser_p95_ns": 85886.75, "deser_p99_ns": 90039.26, "deser_ci_low_ns": 77353.88500000001, "deser_ci_high_ns": 79088.62055555555, "total_mean_ns": 125995.82222222222, "total_median_ns": 124761.0, "total_std_ns": 6792.250529017523, "total_mad_ns": 3342.0, "total_cv": 0.053908537673875, "total_min_ns": 114443.0, "total_max_ns": 145119.0, "total_p5_ns": 116207.95, "total_p25_ns": 121545.75, "total_p50_ns": 124761.0, "total_p75_ns": 128954.5, "total_p95_ns": 138587.7, "total_p99_ns": 144888.49, "total_ci_low_ns": 124642.12555555555, "total_ci_high_ns": 127451.10555555555, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.529909265035496}, {"serializer": "BinaryPack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.0.3", "avg_time_ser_ns": 23831.963414634145, "avg_time_deser_ns": 25251.98780487805, "avg_time_total_ns": 49083.95121951219, "median_size_bytes": 30437.0, "avg_ops_per_sec": 20373.25796221705, "min_ops_per_sec": 17596.959245442387, "max_ops_per_sec": 22483.025315886505, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 23831.963414634145, "ser_median_ns": 23400.5, "ser_std_ns": 1713.63491685791, "ser_mad_ns": 950.5, "ser_cv": 0.07190489877160701, "ser_min_ns": 21101.0, "ser_max_ns": 28594.0, "ser_p5_ns": 21648.1, "ser_p25_ns": 22554.5, "ser_p50_ns": 23400.5, "ser_p75_ns": 24895.5, "ser_p95_ns": 27410.5, "ser_p99_ns": 28317.79, "ser_ci_low_ns": 23455.936280487804, "ser_ci_high_ns": 24216.61493902439, "deser_mean_ns": 25251.98780487805, "deser_median_ns": 25179.5, "deser_std_ns": 1326.4339782344523, "deser_mad_ns": 822.5, "deser_cv": 0.05252790348561069, "deser_min_ns": 22116.0, "deser_max_ns": 29522.0, "deser_p5_ns": 23265.0, "deser_p25_ns": 24385.5, "deser_p50_ns": 25179.5, "deser_p75_ns": 26021.25, "deser_p95_ns": 27383.3, "deser_p99_ns": 28528.94, "deser_ci_low_ns": 24966.09481707317, "deser_ci_high_ns": 25542.60304878049, "total_mean_ns": 49083.95121951219, "total_median_ns": 48528.0, "total_std_ns": 2730.389050659531, "total_mad_ns": 1779.0, "total_cv": 0.055626920466299544, "total_min_ns": 44478.0, "total_max_ns": 56828.0, "total_p5_ns": 45393.45, "total_p25_ns": 47001.25, "total_p50_ns": 48528.0, "total_p75_ns": 50555.5, "total_p95_ns": 54474.700000000004, "total_p99_ns": 55581.409999999996, "total_ci_low_ns": 48507.137804878046, "total_ci_high_ns": 49658.160365853655, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 0.9972283813747228, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.4694688725226954}, {"serializer": "ProtoBuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "2.4.9.1", "avg_time_ser_ns": 45338.4625, "avg_time_deser_ns": 69319.7625, "avg_time_total_ns": 114658.225, "median_size_bytes": 32332.0, "avg_ops_per_sec": 8721.57230761247, "min_ops_per_sec": 7661.778452014281, "max_ops_per_sec": 9770.491162590743, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 45338.4625, "ser_median_ns": 44469.0, "ser_std_ns": 3217.4655012510248, "ser_mad_ns": 1868.5, "ser_cv": 0.0709654744302594, "ser_min_ns": 39462.0, "ser_max_ns": 53195.0, "ser_p5_ns": 40746.2, "ser_p25_ns": 43007.5, "ser_p50_ns": 44469.0, "ser_p75_ns": 47613.25, "ser_p95_ns": 51244.1, "ser_p99_ns": 52925.61, "ser_ci_low_ns": 44651.7209375, "ser_ci_high_ns": 46055.2053125, "deser_mean_ns": 69319.7625, "deser_median_ns": 68875.0, "deser_std_ns": 3536.2810267061313, "deser_mad_ns": 2079.0, "deser_cv": 0.05101403840940932, "deser_min_ns": 61500.0, "deser_max_ns": 78373.0, "deser_p5_ns": 64500.15, "deser_p25_ns": 67075.25, "deser_p50_ns": 68875.0, "deser_p75_ns": 71006.0, "deser_p95_ns": 75518.7, "deser_p99_ns": 78267.93, "deser_ci_low_ns": 68564.179375, "deser_ci_high_ns": 70097.1034375, "total_mean_ns": 114658.225, "total_median_ns": 113531.5, "total_std_ns": 6381.0443849267385, "total_mad_ns": 3744.5, "total_cv": 0.0556527400012231, "total_min_ns": 102349.0, "total_max_ns": 130518.0, "total_p5_ns": 105246.35, "total_p25_ns": 110348.5, "total_p50_ns": 113531.5, "total_p75_ns": 119042.5, "total_p95_ns": 126222.5, "total_p99_ns": 130378.17, "total_ci_low_ns": 113286.37406249999, "total_ci_high_ns": 116102.73937499999, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.45765497080195}, {"serializer": "GroBuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.9.2", "avg_time_ser_ns": 14578.977272727272, "avg_time_deser_ns": 24886.409090909092, "avg_time_total_ns": 39465.38636363636, "median_size_bytes": 36986.0, "avg_ops_per_sec": 25338.659826764193, "min_ops_per_sec": 22147.903700914707, "max_ops_per_sec": 29175.784099197666, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 14578.977272727272, "ser_median_ns": 14098.0, "ser_std_ns": 1674.740624812414, "ser_mad_ns": 995.5, "ser_cv": 0.11487367004442295, "ser_min_ns": 12208.0, "ser_max_ns": 19436.0, "ser_p5_ns": 12667.2, "ser_p25_ns": 13312.75, "ser_p50_ns": 14098.0, "ser_p75_ns": 15587.25, "ser_p95_ns": 17981.399999999998, "ser_p99_ns": 18646.039999999997, "ser_ci_low_ns": 14221.778693181817, "ser_ci_high_ns": 14954.554545454544, "deser_mean_ns": 24886.409090909092, "deser_median_ns": 24927.0, "deser_std_ns": 1468.1977820691352, "deser_mad_ns": 926.5, "deser_cv": 0.05899596750603373, "deser_min_ns": 21751.0, "deser_max_ns": 27523.0, "deser_p5_ns": 22097.75, "deser_p25_ns": 24041.0, "deser_p50_ns": 24927.0, "deser_p75_ns": 25868.75, "deser_p95_ns": 27217.95, "deser_p99_ns": 27496.9, "deser_ci_low_ns": 24581.43125, "deser_ci_high_ns": 25197.19744318182, "total_mean_ns": 39465.38636363636, "total_median_ns": 39263.5, "total_std_ns": 2787.190566019153, "total_mad_ns": 1885.5, "total_cv": 0.07062367362472566, "total_min_ns": 34275.0, "total_max_ns": 45151.0, "total_p5_ns": 35066.8, "total_p25_ns": 37547.25, "total_p50_ns": 39263.5, "total_p75_ns": 41200.75, "total_p95_ns": 44178.45, "total_p99_ns": 45069.22, "total_ci_low_ns": 38884.984375, "total_ci_high_ns": 40059.34346590909, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "ServiceStack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 558579.9166666666, "avg_time_deser_ns": 603892.2976190476, "avg_time_total_ns": 1162472.2142857143, "median_size_bytes": 64566.0, "avg_ops_per_sec": 860.2356148481829, "min_ops_per_sec": 783.6898469061884, "max_ops_per_sec": 949.6739294563212, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 558579.9166666666, "ser_median_ns": 561460.0, "ser_std_ns": 28992.10488466773, "ser_mad_ns": 21555.5, "ser_cv": 0.051903235364562546, "ser_min_ns": 492906.0, "ser_max_ns": 613350.0, "ser_p5_ns": 508012.3, "ser_p25_ns": 539120.0, "ser_p50_ns": 561460.0, "ser_p75_ns": 581083.0, "ser_p95_ns": 598821.65, "ser_p99_ns": 610068.18, "ser_ci_low_ns": 552719.1770833334, "ser_ci_high_ns": 564457.1244047619, "deser_mean_ns": 603892.2976190476, "deser_median_ns": 599808.5, "deser_std_ns": 35014.387544654026, "deser_mad_ns": 22210.5, "deser_cv": 0.05798117923130408, "deser_min_ns": 532415.0, "deser_max_ns": 681665.0, "deser_p5_ns": 547129.95, "deser_p25_ns": 581944.5, "deser_p50_ns": 599808.5, "deser_p75_ns": 625077.5, "deser_p95_ns": 663986.3, "deser_p99_ns": 677609.62, "deser_ci_low_ns": 596089.6702380952, "deser_ci_high_ns": 611164.8836309523, "total_mean_ns": 1162472.2142857143, "total_median_ns": 1169504.5, "total_std_ns": 52864.23131710807, "total_mad_ns": 36924.5, "total_cv": 0.04547569453054902, "total_min_ns": 1052993.0, "total_max_ns": 1276015.0, "total_p5_ns": 1061590.15, "total_p25_ns": 1129419.25, "total_p50_ns": 1169504.5, "total_p75_ns": 1204052.0, "total_p95_ns": 1234394.0, "total_p99_ns": 1263018.86, "total_ci_low_ns": 1151184.4973214285, "total_ci_high_ns": 1174196.825595238, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.22393599833225}, {"serializer": "ZeroFormatter", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.6.4", "avg_time_ser_ns": 38375.35, "avg_time_deser_ns": 33653.025, "avg_time_total_ns": 72028.375, "median_size_bytes": 30336.0, "avg_ops_per_sec": 13883.417472627974, "min_ops_per_sec": 12016.775418484203, "max_ops_per_sec": 15374.444598188891, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 38375.35, "ser_median_ns": 37968.5, "ser_std_ns": 3001.525920366658, "ser_mad_ns": 1896.5, "ser_cv": 0.07821494580157987, "ser_min_ns": 33867.0, "ser_max_ns": 46790.0, "ser_p5_ns": 34687.0, "ser_p25_ns": 35988.75, "ser_p50_ns": 37968.5, "ser_p75_ns": 39501.0, "ser_p95_ns": 44298.799999999996, "ser_p99_ns": 46326.27, "ser_ci_low_ns": 37767.3421875, "ser_ci_high_ns": 39062.059375000004, "deser_mean_ns": 33653.025, "deser_median_ns": 33650.0, "deser_std_ns": 1609.0711368419115, "deser_mad_ns": 963.5, "deser_cv": 0.04781356614574504, "deser_min_ns": 30874.0, "deser_max_ns": 37289.0, "deser_p5_ns": 31177.65, "deser_p25_ns": 32533.75, "deser_p50_ns": 33650.0, "deser_p75_ns": 34373.0, "deser_p95_ns": 36665.2, "deser_p99_ns": 37231.33, "deser_ci_low_ns": 33304.370624999996, "deser_ci_high_ns": 33993.879062500004, "total_mean_ns": 72028.375, "total_median_ns": 71696.0, "total_std_ns": 4268.17338090824, "total_mad_ns": 3009.0, "total_cv": 0.05925683289270707, "total_min_ns": 65043.0, "total_max_ns": 83217.0, "total_p5_ns": 66239.4, "total_p25_ns": 68674.25, "total_p50_ns": 71696.0, "total_p75_ns": 74373.75, "total_p95_ns": 80065.29999999999, "total_p99_ns": 82999.75, "total_ci_low_ns": 71098.06093749999, "total_ci_high_ns": 72932.43000000001, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.081370924123219}, {"serializer": "Json.Net", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 569159.4, "avg_time_deser_ns": 726309.9176470588, "avg_time_total_ns": 1295469.3176470587, "median_size_bytes": 67483.0, "avg_ops_per_sec": 771.9210222719013, "min_ops_per_sec": 672.764605046811, "max_ops_per_sec": 871.4938712193507, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 569159.4, "ser_median_ns": 569869.0, "ser_std_ns": 37369.29205631914, "ser_mad_ns": 27217.0, "ser_cv": 0.06565698828187523, "ser_min_ns": 494948.0, "ser_max_ns": 670285.0, "ser_p5_ns": 511013.6, "ser_p25_ns": 538020.0, "ser_p50_ns": 569869.0, "ser_p75_ns": 594549.0, "ser_p95_ns": 630335.6, "ser_p99_ns": 649755.3999999999, "ser_ci_low_ns": 561170.2244117648, "ser_ci_high_ns": 577008.045882353, "deser_mean_ns": 726309.9176470588, "deser_median_ns": 726693.0, "deser_std_ns": 51351.11616170247, "deser_mad_ns": 34168.0, "deser_cv": 0.07070138368488574, "deser_min_ns": 634754.0, "deser_max_ns": 886503.0, "deser_p5_ns": 650290.8, "deser_p25_ns": 691727.0, "deser_p50_ns": 726693.0, "deser_p75_ns": 753859.0, "deser_p95_ns": 817589.4, "deser_p99_ns": 877450.32, "deser_ci_low_ns": 715856.17, "deser_ci_high_ns": 737664.7367647059, "total_mean_ns": 1295469.3176470587, "total_median_ns": 1294507.0, "total_std_ns": 72481.90739110459, "total_mad_ns": 47088.0, "total_cv": 0.05595030804955873, "total_min_ns": 1147455.0, "total_max_ns": 1486404.0, "total_p5_ns": 1168905.0, "total_p25_ns": 1252521.0, "total_p50_ns": 1294507.0, "total_p75_ns": 1341643.0, "total_p95_ns": 1403181.0, "total_p99_ns": 1442057.0399999998, "total_ci_low_ns": 1280083.787647059, "total_ci_high_ns": 1310965.3247058825, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.596635318326953}, {"serializer": "Jil", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "2.17.0", "avg_time_ser_ns": 542547.4534883721, "avg_time_deser_ns": 685630.1976744186, "avg_time_total_ns": 1228177.6511627906, "median_size_bytes": 65968.0, "avg_ops_per_sec": 814.214457536529, "min_ops_per_sec": 714.0230558044719, "max_ops_per_sec": 924.0026315594947, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 542547.4534883721, "ser_median_ns": 541870.0, "ser_std_ns": 33341.34537624136, "ser_mad_ns": 25728.5, "ser_cv": 0.06145332571716869, "ser_min_ns": 483157.0, "ser_max_ns": 616195.0, "ser_p5_ns": 487332.5, "ser_p25_ns": 520811.0, "ser_p50_ns": 541870.0, "ser_p75_ns": 569012.75, "ser_p95_ns": 594504.5, "ser_p99_ns": 615879.65, "ser_ci_low_ns": 535900.4462209302, "ser_ci_high_ns": 549753.0741279069, "deser_mean_ns": 685630.1976744186, "deser_median_ns": 678459.0, "deser_std_ns": 51227.32576819198, "deser_mad_ns": 34672.0, "deser_cv": 0.07471567900881462, "deser_min_ns": 594284.0, "deser_max_ns": 838404.0, "deser_p5_ns": 614249.0, "deser_p25_ns": 651217.0, "deser_p50_ns": 678459.0, "deser_p75_ns": 716145.5, "deser_p95_ns": 769365.25, "deser_p99_ns": 831184.9500000001, "deser_ci_low_ns": 674844.6447674419, "deser_ci_high_ns": 696051.6, "total_mean_ns": 1228177.6511627906, "total_median_ns": 1233378.0, "total_std_ns": 64075.13111887022, "total_mad_ns": 40264.5, "total_cv": 0.05217089812553289, "total_min_ns": 1082248.0, "total_max_ns": 1400515.0, "total_p5_ns": 1127141.25, "total_p25_ns": 1186849.75, "total_p50_ns": 1233378.0, "total_p75_ns": 1269569.5, "total_p95_ns": 1323384.25, "total_p99_ns": 1396659.4000000001, "total_ci_low_ns": 1214641.7302325582, "total_ci_high_ns": 1241588.3822674418, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.249511789777657}, {"serializer": "SpanJson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "4.2.1", "avg_time_ser_ns": 425070.0326086957, "avg_time_deser_ns": 234712.8260869565, "avg_time_total_ns": 659782.8586956522, "median_size_bytes": 65968.0, "avg_ops_per_sec": 1515.6501670518312, "min_ops_per_sec": 1302.7194268034523, "max_ops_per_sec": 1826.7809744415074, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 425070.0326086957, "ser_median_ns": 419784.5, "ser_std_ns": 41357.71651067001, "ser_mad_ns": 28748.5, "ser_cv": 0.09729624141427644, "ser_min_ns": 335757.0, "ser_max_ns": 527539.0, "ser_p5_ns": 360828.3, "ser_p25_ns": 397332.75, "ser_p50_ns": 419784.5, "ser_p75_ns": 454472.0, "ser_p95_ns": 497058.45, "ser_p99_ns": 513944.51000000007, "ser_ci_low_ns": 416815.4182065217, "ser_ci_high_ns": 433666.70108695654, "deser_mean_ns": 234712.8260869565, "deser_median_ns": 235258.0, "deser_std_ns": 11871.709894348654, "deser_mad_ns": 7162.5, "deser_cv": 0.05057972370862433, "deser_min_ns": 211654.0, "deser_max_ns": 266084.0, "deser_p5_ns": 216296.8, "deser_p25_ns": 226845.25, "deser_p50_ns": 235258.0, "deser_p75_ns": 240685.25, "deser_p95_ns": 254168.80000000002, "deser_p99_ns": 265319.6, "deser_ci_low_ns": 232098.11413043478, "deser_ci_high_ns": 237212.51875000002, "total_mean_ns": 659782.8586956522, "total_median_ns": 658100.5, "total_std_ns": 45853.532875402714, "total_mad_ns": 29241.5, "total_cv": 0.06949791476252075, "total_min_ns": 547411.0, "total_max_ns": 767625.0, "total_p5_ns": 594046.75, "total_p25_ns": 629201.75, "total_p50_ns": 658100.5, "total_p75_ns": 688469.75, "total_p95_ns": 737098.95, "total_p99_ns": 751720.02, "total_ci_low_ns": 650543.0478260869, "total_ci_high_ns": 668912.9638586956, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.807387895657442}, {"serializer": "ExtendedXmlSerializer", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "3.10.0.0", "avg_time_ser_ns": 126856.578313253, "avg_time_deser_ns": 149882.02409638555, "avg_time_total_ns": 276738.6024096386, "median_size_bytes": 66341.0, "avg_ops_per_sec": 3613.518285099104, "min_ops_per_sec": 2883.6809610731907, "max_ops_per_sec": 4104.231051791292, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 126856.578313253, "ser_median_ns": 122454.0, "ser_std_ns": 13935.589716945462, "ser_mad_ns": 6891.0, "ser_cv": 0.10985311051456587, "ser_min_ns": 107250.0, "ser_max_ns": 170946.0, "ser_p5_ns": 111772.6, "ser_p25_ns": 116264.0, "ser_p50_ns": 122454.0, "ser_p75_ns": 137373.5, "ser_p95_ns": 155009.79999999996, "ser_p99_ns": 163141.23999999993, "ser_ci_low_ns": 124026.71475903614, "ser_ci_high_ns": 129832.67018072288, "deser_mean_ns": 149882.02409638555, "deser_median_ns": 147403.0, "deser_std_ns": 11576.225196681788, "deser_mad_ns": 6844.0, "deser_cv": 0.07723558089419312, "deser_min_ns": 132793.0, "deser_max_ns": 185351.0, "deser_p5_ns": 135980.7, "deser_p25_ns": 141420.5, "deser_p50_ns": 147403.0, "deser_p75_ns": 154818.5, "deser_p95_ns": 173840.3, "deser_p99_ns": 182104.61999999997, "deser_ci_low_ns": 147279.21355421687, "deser_ci_high_ns": 152324.1656626506, "total_mean_ns": 276738.6024096386, "total_median_ns": 272037.0, "total_std_ns": 23466.54762242635, "total_mad_ns": 13441.0, "total_cv": 0.08479679892178653, "total_min_ns": 243651.0, "total_max_ns": 346779.0, "total_p5_ns": 251515.8, "total_p25_ns": 258937.5, "total_p50_ns": 272037.0, "total_p75_ns": 286818.5, "total_p95_ns": 328584.2, "total_p99_ns": 340572.4199999999, "total_ci_low_ns": 271683.25090361445, "total_ci_high_ns": 281700.8587349398, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.34417053347576}, {"serializer": "MS DataContract Json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 547945.1235955056, "avg_time_deser_ns": 1203234.5168539325, "avg_time_total_ns": 1751179.6404494382, "median_size_bytes": 65968.0, "avg_ops_per_sec": 571.0436421835918, "min_ops_per_sec": 526.5092123316882, "max_ops_per_sec": 630.8909441913871, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 547945.1235955056, "ser_median_ns": 546476.0, "ser_std_ns": 30571.719867469103, "ser_mad_ns": 19746.0, "ser_cv": 0.055793397095796074, "ser_min_ns": 479609.0, "ser_max_ns": 608431.0, "ser_p5_ns": 499987.0, "ser_p25_ns": 529747.0, "ser_p50_ns": 546476.0, "ser_p75_ns": 567734.0, "ser_p95_ns": 599367.6, "ser_p99_ns": 607250.92, "ser_ci_low_ns": 541767.7921348315, "ser_ci_high_ns": 553913.4567415729, "deser_mean_ns": 1203234.5168539325, "deser_median_ns": 1205301.0, "deser_std_ns": 56239.72882105844, "deser_mad_ns": 36467.0, "deser_cv": 0.04674045502626293, "deser_min_ns": 1088061.0, "deser_max_ns": 1335403.0, "deser_p5_ns": 1110663.6, "deser_p25_ns": 1168262.0, "deser_p50_ns": 1205301.0, "deser_p75_ns": 1236124.0, "deser_p95_ns": 1299813.0, "deser_p99_ns": 1325288.28, "deser_ci_low_ns": 1191016.5876404494, "deser_ci_high_ns": 1214957.8859550562, "total_mean_ns": 1751179.6404494382, "total_median_ns": 1763004.0, "total_std_ns": 69605.42399503321, "total_mad_ns": 46164.0, "total_cv": 0.03974773483385694, "total_min_ns": 1585060.0, "total_max_ns": 1899302.0, "total_p5_ns": 1629531.4, "total_p25_ns": 1699567.0, "total_p50_ns": 1763004.0, "total_p75_ns": 1803888.0, "total_p95_ns": 1852513.8, "total_p99_ns": 1871149.04, "total_ci_low_ns": 1736101.1483146069, "total_ci_high_ns": 1765841.1373595505, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 34.50277190241731}, {"serializer": "MS Bond Compact", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 32068.285714285714, "avg_time_deser_ns": 35373.51648351648, "avg_time_total_ns": 67441.8021978022, "median_size_bytes": 29336.0, "avg_ops_per_sec": 14827.599017402712, "min_ops_per_sec": 13207.248137778013, "max_ops_per_sec": 16882.481049415022, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 32068.285714285714, "ser_median_ns": 31746.0, "ser_std_ns": 2027.418814846516, "ser_mad_ns": 1252.0, "ser_cv": 0.06322192688782692, "ser_min_ns": 28055.0, "ser_max_ns": 38219.0, "ser_p5_ns": 29363.0, "ser_p25_ns": 30711.5, "ser_p50_ns": 31746.0, "ser_p75_ns": 33360.5, "ser_p95_ns": 35814.5, "ser_p99_ns": 37113.799999999996, "ser_ci_low_ns": 31666.974725274726, "ser_ci_high_ns": 32506.906043956045, "deser_mean_ns": 35373.51648351648, "deser_median_ns": 35123.0, "deser_std_ns": 1803.75976697217, "deser_mad_ns": 1207.0, "deser_cv": 0.05099181382808504, "deser_min_ns": 30912.0, "deser_max_ns": 39234.0, "deser_p5_ns": 32786.0, "deser_p25_ns": 34099.0, "deser_p50_ns": 35123.0, "deser_p75_ns": 36543.0, "deser_p95_ns": 38604.5, "deser_p99_ns": 39204.3, "deser_ci_low_ns": 35001.9282967033, "deser_ci_high_ns": 35758.7739010989, "total_mean_ns": 67441.8021978022, "total_median_ns": 67093.0, "total_std_ns": 3544.353456853059, "total_mad_ns": 2408.0, "total_cv": 0.052554251834162326, "total_min_ns": 59233.0, "total_max_ns": 75716.0, "total_p5_ns": 62206.0, "total_p25_ns": 64697.5, "total_p50_ns": 67093.0, "total_p75_ns": 69548.5, "total_p95_ns": 73584.5, "total_p99_ns": 75212.9, "total_ci_low_ns": 66704.90467032968, "total_ci_high_ns": 68174.25274725274, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.71999399685573}, {"serializer": "LightProto", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.3.4", "avg_time_ser_ns": 42301.79746835443, "avg_time_deser_ns": 44367.6582278481, "avg_time_total_ns": 86669.45569620254, "median_size_bytes": 32332.0, "avg_ops_per_sec": 11538.090229910322, "min_ops_per_sec": 10158.781758891473, "max_ops_per_sec": 12918.060740721603, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 42301.79746835443, "ser_median_ns": 41735.0, "ser_std_ns": 2885.2654785187397, "ser_mad_ns": 1653.0, "ser_cv": 0.06820668745050797, "ser_min_ns": 37793.0, "ser_max_ns": 49423.0, "ser_p5_ns": 38333.3, "ser_p25_ns": 40451.0, "ser_p50_ns": 41735.0, "ser_p75_ns": 44400.5, "ser_p95_ns": 47438.59999999999, "ser_p99_ns": 49318.48, "ser_ci_low_ns": 41653.10727848101, "ser_ci_high_ns": 42950.10727848101, "deser_mean_ns": 44367.6582278481, "deser_median_ns": 43817.0, "deser_std_ns": 2968.2265182673536, "deser_mad_ns": 1937.0, "deser_cv": 0.0669006802888753, "deser_min_ns": 38603.0, "deser_max_ns": 50318.0, "deser_p5_ns": 39984.3, "deser_p25_ns": 42264.5, "deser_p50_ns": 43817.0, "deser_p75_ns": 46839.5, "deser_p95_ns": 49239.7, "deser_p99_ns": 50176.82, "deser_ci_low_ns": 43693.928164556964, "deser_ci_high_ns": 45021.5246835443, "total_mean_ns": 86669.45569620254, "total_median_ns": 85616.0, "total_std_ns": 5383.7063531893145, "total_mad_ns": 3626.0, "total_cv": 0.06211768967443976, "total_min_ns": 77411.0, "total_max_ns": 98437.0, "total_p5_ns": 79084.1, "total_p25_ns": 82713.0, "total_p50_ns": 85616.0, "total_p75_ns": 90593.5, "total_p95_ns": 95683.4, "total_p99_ns": 97957.3, "total_ci_low_ns": 85496.80664556961, "total_ci_high_ns": 87836.82626582278, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.138208283150961}, {"serializer": "MS XmlSerializer", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 696576.4886363636, "avg_time_deser_ns": 952484.7954545454, "avg_time_total_ns": 1649061.2840909092, "median_size_bytes": 159850.0, "avg_ops_per_sec": 606.4056015670017, "min_ops_per_sec": 548.7694120319888, "max_ops_per_sec": 669.3852633495503, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 696576.4886363636, "ser_median_ns": 693557.5, "ser_std_ns": 38649.11627545231, "ser_mad_ns": 27937.0, "ser_cv": 0.05548438241306828, "ser_min_ns": 620148.0, "ser_max_ns": 778642.0, "ser_p5_ns": 634972.8, "ser_p25_ns": 667793.25, "ser_p50_ns": 693557.5, "ser_p75_ns": 723962.25, "ser_p95_ns": 758996.5, "ser_p99_ns": 775339.48, "ser_ci_low_ns": 688739.4125000001, "ser_ci_high_ns": 704447.8053977273, "deser_mean_ns": 952484.7954545454, "deser_median_ns": 949403.0, "deser_std_ns": 50191.78314378841, "deser_mad_ns": 34068.0, "deser_cv": 0.052695626621352895, "deser_min_ns": 844899.0, "deser_max_ns": 1063301.0, "deser_p5_ns": 869786.85, "deser_p25_ns": 923685.75, "deser_p50_ns": 949403.0, "deser_p75_ns": 986839.5, "deser_p95_ns": 1034280.3, "deser_p99_ns": 1057713.8599999999, "deser_ci_low_ns": 942411.0676136363, "deser_ci_high_ns": 962649.7872159091, "total_mean_ns": 1649061.2840909092, "total_median_ns": 1655727.5, "total_std_ns": 72779.49698207827, "total_mad_ns": 48743.0, "total_cv": 0.044133894649160954, "total_min_ns": 1493908.0, "total_max_ns": 1822259.0, "total_p5_ns": 1523813.25, "total_p25_ns": 1596650.5, "total_p50_ns": 1655727.5, "total_p75_ns": 1701635.75, "total_p95_ns": 1767032.3, "total_p99_ns": 1796156.39, "total_ci_low_ns": 1634178.0420454545, "total_ci_high_ns": 1664370.7059659092, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 31.119016089702086}, {"serializer": "System.Text.Json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "8.0.0.0", "avg_time_ser_ns": 423155.4175824176, "avg_time_deser_ns": 361365.9120879121, "avg_time_total_ns": 784521.3296703297, "median_size_bytes": 65968.0, "avg_ops_per_sec": 1274.6626027621435, "min_ops_per_sec": 1156.775465255092, "max_ops_per_sec": 1446.0897732531237, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 423155.4175824176, "ser_median_ns": 422159.0, "ser_std_ns": 31466.59098792663, "ser_mad_ns": 26794.0, "ser_cv": 0.07436178217379885, "ser_min_ns": 357935.0, "ser_max_ns": 488178.0, "ser_p5_ns": 374598.0, "ser_p25_ns": 401360.5, "ser_p50_ns": 422159.0, "ser_p75_ns": 450542.5, "ser_p95_ns": 472039.5, "ser_p99_ns": 484944.3, "ser_ci_low_ns": 416646.1436813187, "ser_ci_high_ns": 429236.52857142856, "deser_mean_ns": 361365.9120879121, "deser_median_ns": 362442.0, "deser_std_ns": 16967.63086104333, "deser_mad_ns": 10014.0, "deser_cv": 0.04695415448293721, "deser_min_ns": 324969.0, "deser_max_ns": 401053.0, "deser_p5_ns": 333686.0, "deser_p25_ns": 349763.0, "deser_p50_ns": 362442.0, "deser_p75_ns": 371100.0, "deser_p95_ns": 387267.0, "deser_p99_ns": 399158.5, "deser_ci_low_ns": 357899.92609890114, "deser_ci_high_ns": 364897.5398351648, "total_mean_ns": 784521.3296703297, "total_median_ns": 783977.0, "total_std_ns": 41828.93101512262, "total_mad_ns": 33958.0, "total_cv": 0.05331777407849434, "total_min_ns": 691520.0, "total_max_ns": 864472.0, "total_p5_ns": 713726.5, "total_p25_ns": 754157.5, "total_p50_ns": 783977.0, "total_p75_ns": 821778.5, "total_p95_ns": 840056.0, "total_p99_ns": 862278.7, "total_ci_low_ns": 776035.9538461539, "total_ci_high_ns": 793113.2164835165, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.819941101941467}, {"serializer": "SharpYaml", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "3.13.0", "avg_time_ser_ns": 692650.9277108434, "avg_time_deser_ns": 2181174.192771084, "avg_time_total_ns": 2873825.120481928, "median_size_bytes": 93167.0, "avg_ops_per_sec": 347.9682854996773, "min_ops_per_sec": 301.449065658621, "max_ops_per_sec": 388.626609108475, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 692650.9277108434, "ser_median_ns": 690261.0, "ser_std_ns": 42154.64078140561, "ser_mad_ns": 33351.0, "ser_cv": 0.060859863309103424, "ser_min_ns": 614989.0, "ser_max_ns": 841712.0, "ser_p5_ns": 635138.3, "ser_p25_ns": 657435.5, "ser_p50_ns": 690261.0, "ser_p75_ns": 721359.0, "ser_p95_ns": 749883.6, "ser_p99_ns": 795543.5399999996, "ser_ci_low_ns": 683944.0870481927, "ser_ci_high_ns": 701948.1141566265, "deser_mean_ns": 2181174.192771084, "deser_median_ns": 2163003.0, "deser_std_ns": 148533.1811716237, "deser_mad_ns": 76165.0, "deser_cv": 0.06809780789810232, "deser_min_ns": 1958175.0, "deser_max_ns": 2579302.0, "deser_p5_ns": 1976167.0, "deser_p25_ns": 2090966.5, "deser_p50_ns": 2163003.0, "deser_p75_ns": 2238429.5, "deser_p95_ns": 2507654.6999999997, "deser_p99_ns": 2564029.5, "deser_ci_low_ns": 2150625.5692771086, "deser_ci_high_ns": 2212887.103313253, "total_mean_ns": 2873825.120481928, "total_median_ns": 2863974.0, "total_std_ns": 168566.49348922697, "total_mad_ns": 88362.0, "total_cv": 0.058655793732138826, "total_min_ns": 2573164.0, "total_max_ns": 3317310.0, "total_p5_ns": 2615538.6, "total_p25_ns": 2781998.5, "total_p50_ns": 2863974.0, "total_p75_ns": 2958850.5, "total_p95_ns": 3195583.6, "total_p99_ns": 3271153.0199999996, "total_ci_low_ns": 2839858.3289156626, "total_ci_high_ns": 2910365.571686747, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.028278965999746}, {"serializer": "FlatSharp", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "7.5.1", "avg_time_ser_ns": 29473.18604651163, "avg_time_deser_ns": 30737.81395348837, "avg_time_total_ns": 60211.0, "median_size_bytes": 34168.0, "avg_ops_per_sec": 16608.26094899603, "min_ops_per_sec": 13338.846723312303, "max_ops_per_sec": 19037.465732561683, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 29473.18604651163, "ser_median_ns": 28697.5, "ser_std_ns": 2721.140995597372, "ser_mad_ns": 1346.0, "ser_cv": 0.0923259871295604, "ser_min_ns": 24255.0, "ser_max_ns": 37588.0, "ser_p5_ns": 26245.75, "ser_p25_ns": 27573.25, "ser_p50_ns": 28697.5, "ser_p75_ns": 31136.75, "ser_p95_ns": 34697.5, "ser_p99_ns": 35559.05000000001, "ser_ci_low_ns": 28907.7023255814, "ser_ci_high_ns": 30075.954651162785, "deser_mean_ns": 30737.81395348837, "deser_median_ns": 30592.5, "deser_std_ns": 2349.546421867185, "deser_mad_ns": 1616.5, "deser_cv": 0.076438305776151, "deser_min_ns": 25925.0, "deser_max_ns": 37381.0, "deser_p5_ns": 27290.25, "deser_p25_ns": 29065.75, "deser_p50_ns": 30592.5, "deser_p75_ns": 32407.5, "deser_p95_ns": 35122.0, "deser_p99_ns": 36882.9, "deser_ci_low_ns": 30256.741860465117, "deser_ci_high_ns": 31244.79651162791, "total_mean_ns": 60211.0, "total_median_ns": 59122.5, "total_std_ns": 4689.554129062993, "total_mad_ns": 3158.0, "total_cv": 0.07788533870992, "total_min_ns": 52528.0, "total_max_ns": 74969.0, "total_p5_ns": 53697.75, "total_p25_ns": 56869.75, "total_p50_ns": 59122.5, "total_p75_ns": 63135.5, "total_p95_ns": 67791.0, "total_p99_ns": 72259.20000000001, "total_ci_low_ns": 59281.797383720936, "total_ci_high_ns": 61189.176162790696, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.369474332569599}, {"serializer": "NetJSON", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.0.0", "avg_time_ser_ns": 425563.582278481, "avg_time_deser_ns": 423191.2278481013, "avg_time_total_ns": 848754.8101265823, "median_size_bytes": 65968.0, "avg_ops_per_sec": 1178.196562857607, "min_ops_per_sec": 1049.6748107436317, "max_ops_per_sec": 1334.7659821541788, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 425563.582278481, "ser_median_ns": 423026.0, "ser_std_ns": 29714.984069859263, "ser_mad_ns": 25239.0, "ser_cv": 0.06982501630135805, "ser_min_ns": 356277.0, "ser_max_ns": 497611.0, "ser_p5_ns": 380348.4, "ser_p25_ns": 404303.5, "ser_p50_ns": 423026.0, "ser_p75_ns": 449440.0, "ser_p95_ns": 465161.3, "ser_p99_ns": 489641.74, "ser_ci_low_ns": 419035.3446202532, "ser_ci_high_ns": 432188.8977848101, "deser_mean_ns": 423191.2278481013, "deser_median_ns": 421798.0, "deser_std_ns": 22742.390585362027, "deser_mad_ns": 11388.0, "deser_cv": 0.053740222123708804, "deser_min_ns": 377505.0, "deser_max_ns": 475748.0, "deser_p5_ns": 386376.8, "deser_p25_ns": 411181.5, "deser_p50_ns": 421798.0, "deser_p75_ns": 435523.0, "deser_p95_ns": 465168.6, "deser_p99_ns": 475691.84, "deser_ci_low_ns": 418259.19462025317, "deser_ci_high_ns": 428385.3091772152, "total_mean_ns": 848754.8101265823, "total_median_ns": 842478.0, "total_std_ns": 44286.496446890094, "total_mad_ns": 33762.0, "total_cv": 0.05217819789473153, "total_min_ns": 749195.0, "total_max_ns": 952676.0, "total_p5_ns": 787936.6, "total_p25_ns": 813907.0, "total_p50_ns": 842478.0, "total_p75_ns": 881456.0, "total_p95_ns": 924126.7999999999, "total_p99_ns": 941564.9, "total_ci_low_ns": 838954.1338607596, "total_ci_high_ns": 858206.9294303798, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.39905711177467}, {"serializer": "MS Bond Fast", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 31638.590909090908, "avg_time_deser_ns": 35215.35227272727, "avg_time_total_ns": 66853.94318181818, "median_size_bytes": 30338.0, "avg_ops_per_sec": 14957.980822168816, "min_ops_per_sec": 12737.230925996688, "max_ops_per_sec": 17256.25539257981, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 31638.590909090908, "ser_median_ns": 30958.0, "ser_std_ns": 2562.8691161631864, "ser_mad_ns": 1339.0, "ser_cv": 0.08100452777834621, "ser_min_ns": 27021.0, "ser_max_ns": 38753.0, "ser_p5_ns": 28438.3, "ser_p25_ns": 29831.0, "ser_p50_ns": 30958.0, "ser_p75_ns": 32731.25, "ser_p95_ns": 36524.8, "ser_p99_ns": 38576.39, "ser_ci_low_ns": 31102.235795454544, "ser_ci_high_ns": 32156.285511363636, "deser_mean_ns": 35215.35227272727, "deser_median_ns": 35032.0, "deser_std_ns": 2038.7519454723247, "deser_mad_ns": 1178.5, "deser_cv": 0.05789383930290107, "deser_min_ns": 29597.0, "deser_max_ns": 40411.0, "deser_p5_ns": 32068.3, "deser_p25_ns": 33935.75, "deser_p50_ns": 35032.0, "deser_p75_ns": 36376.75, "deser_p95_ns": 38661.6, "deser_p99_ns": 39842.02, "deser_ci_low_ns": 34800.034375, "deser_ci_high_ns": 35625.48011363636, "total_mean_ns": 66853.94318181818, "total_median_ns": 66609.0, "total_std_ns": 4261.913240318127, "total_mad_ns": 2548.0, "total_cv": 0.0637496165144259, "total_min_ns": 57950.0, "total_max_ns": 78510.0, "total_p5_ns": 60575.55, "total_p25_ns": 64088.0, "total_p50_ns": 66609.0, "total_p75_ns": 69209.25, "total_p95_ns": 74698.59999999999, "total_p99_ns": 77144.09999999999, "total_ci_low_ns": 65989.77073863636, "total_ci_high_ns": 67742.75397727273, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.5732905460222195}, {"serializer": "FsPickler", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 124205.25287356322, "avg_time_deser_ns": 71697.97701149425, "avg_time_total_ns": 195903.22988505746, "median_size_bytes": 33898.0, "avg_ops_per_sec": 5104.561066128063, "min_ops_per_sec": 4541.346690947734, "max_ops_per_sec": 5736.543503077655, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 124205.25287356322, "ser_median_ns": 124205.0, "ser_std_ns": 9681.679404839953, "ser_mad_ns": 6257.0, "ser_cv": 0.07794903340115235, "ser_min_ns": 109208.0, "ser_max_ns": 151546.0, "ser_p5_ns": 111198.1, "ser_p25_ns": 117190.5, "ser_p50_ns": 124205.0, "ser_p75_ns": 128569.0, "ser_p95_ns": 144339.5, "ser_p99_ns": 148053.54, "ser_ci_low_ns": 122157.14568965517, "ser_ci_high_ns": 126115.92212643678, "deser_mean_ns": 71697.97701149425, "deser_median_ns": 71615.0, "deser_std_ns": 3764.472105358668, "deser_mad_ns": 2945.0, "deser_cv": 0.05250457910067905, "deser_min_ns": 64346.0, "deser_max_ns": 80259.0, "deser_p5_ns": 65945.0, "deser_p25_ns": 68747.5, "deser_p50_ns": 71615.0, "deser_p75_ns": 74424.0, "deser_p95_ns": 77845.7, "deser_p99_ns": 79376.64, "deser_ci_low_ns": 70948.05747126437, "deser_ci_high_ns": 72461.34022988506, "total_mean_ns": 195903.22988505746, "total_median_ns": 196177.0, "total_std_ns": 12077.014611371576, "total_mad_ns": 8142.0, "total_cv": 0.06164785858026709, "total_min_ns": 174321.0, "total_max_ns": 220199.0, "total_p5_ns": 177899.1, "total_p25_ns": 187453.5, "total_p50_ns": 196177.0, "total_p75_ns": 203065.0, "total_p95_ns": 218136.90000000002, "total_p99_ns": 220037.32, "total_ci_low_ns": 193315.14540229886, "total_ci_high_ns": 198594.3002873563, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.818480915092582}, {"serializer": "YAXLib", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "4.4.0", "avg_time_ser_ns": 1815516.4567901234, "avg_time_deser_ns": 2044295.6049382717, "avg_time_total_ns": 3859812.061728395, "median_size_bytes": 159715.0, "avg_ops_per_sec": 259.0799717725654, "min_ops_per_sec": 197.5138926334231, "max_ops_per_sec": 311.31360331486724, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 1815516.4567901234, "ser_median_ns": 1759176.0, "ser_std_ns": 219480.29850723787, "ser_mad_ns": 75948.0, "ser_cv": 0.12089138475521412, "ser_min_ns": 1532081.0, "ser_max_ns": 2753410.0, "ser_p5_ns": 1584963.0, "ser_p25_ns": 1683228.0, "ser_p50_ns": 1759176.0, "ser_p75_ns": 1830670.0, "ser_p95_ns": 2273002.0, "ser_p99_ns": 2518926.000000001, "ser_ci_low_ns": 1771469.5787037038, "ser_ci_high_ns": 1865460.8922839505, "deser_mean_ns": 2044295.6049382717, "deser_median_ns": 1865424.0, "deser_std_ns": 400001.85247773165, "deser_mad_ns": 98791.0, "deser_cv": 0.19566732497564113, "deser_min_ns": 1680114.0, "deser_max_ns": 3365416.0, "deser_p5_ns": 1720342.0, "deser_p25_ns": 1792221.0, "deser_p50_ns": 1865424.0, "deser_p75_ns": 2046647.0, "deser_p95_ns": 2944488.0, "deser_p99_ns": 3264594.4000000004, "deser_ci_low_ns": 1962613.9330246914, "deser_ci_high_ns": 2133647.5080246916, "total_mean_ns": 3859812.061728395, "total_median_ns": 3718911.0, "total_std_ns": 432923.2233935177, "total_mad_ns": 262736.0, "total_cv": 0.11216173649648059, "total_min_ns": 3212195.0, "total_max_ns": 5062935.0, "total_p5_ns": 3333211.0, "total_p25_ns": 3551087.0, "total_p50_ns": 3718911.0, "total_p75_ns": 4105137.0, "total_p95_ns": 4775158.0, "total_p99_ns": 5039703.8, "total_ci_low_ns": 3766588.365432099, "total_ci_high_ns": 3955569.7435185187, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.692219986624773}, {"serializer": "Hyperion", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "0.12.2", "avg_time_ser_ns": 181907.67441860464, "avg_time_deser_ns": 96106.30232558139, "avg_time_total_ns": 278013.9767441861, "median_size_bytes": 34259.0, "avg_ops_per_sec": 3596.941462119898, "min_ops_per_sec": 3237.450831215501, "max_ops_per_sec": 3975.8427792731363, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 181907.67441860464, "ser_median_ns": 181608.0, "ser_std_ns": 10753.755080891906, "ser_mad_ns": 7247.5, "ser_cv": 0.059116555226501555, "ser_min_ns": 163436.0, "ser_max_ns": 209622.0, "ser_p5_ns": 166154.0, "ser_p25_ns": 174054.75, "ser_p50_ns": 181608.0, "ser_p75_ns": 188623.0, "ser_p95_ns": 203743.25, "ser_p99_ns": 206127.65000000002, "ser_ci_low_ns": 179711.8468023256, "ser_ci_high_ns": 184175.0648255814, "deser_mean_ns": 96106.30232558139, "deser_median_ns": 96482.0, "deser_std_ns": 4595.483058702106, "deser_mad_ns": 3818.0, "deser_cv": 0.047816667039523475, "deser_min_ns": 87255.0, "deser_max_ns": 105618.0, "deser_p5_ns": 89402.25, "deser_p25_ns": 92388.0, "deser_p50_ns": 96482.0, "deser_p75_ns": 99411.25, "deser_p95_ns": 103729.5, "deser_p99_ns": 104993.25, "deser_ci_low_ns": 95176.05145348838, "deser_ci_high_ns": 97084.41976744185, "total_mean_ns": 278013.9767441861, "total_median_ns": 278862.0, "total_std_ns": 13672.043088405533, "total_mad_ns": 9434.5, "total_cv": 0.04917753865657565, "total_min_ns": 251519.0, "total_max_ns": 308885.0, "total_p5_ns": 255777.0, "total_p25_ns": 268094.0, "total_p50_ns": 278862.0, "total_p75_ns": 287359.5, "total_p95_ns": 302165.75, "total_p99_ns": 308498.25, "total_ci_low_ns": 275196.58924418606, "total_ci_high_ns": 280968.6209302326, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.20203160043971}, {"serializer": "YamlDotNet", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "17.1.0", "avg_time_ser_ns": 5858957.45, "avg_time_deser_ns": 4550179.6625, "avg_time_total_ns": 10409137.1125, "median_size_bytes": 78767.0, "avg_ops_per_sec": 96.06944256687059, "min_ops_per_sec": 86.41985444303916, "max_ops_per_sec": 105.18373863608036, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 5858957.45, "ser_median_ns": 5814604.5, "ser_std_ns": 269419.0364810967, "ser_mad_ns": 139829.5, "ser_cv": 0.045984125807415906, "ser_min_ns": 5301071.0, "ser_max_ns": 6835748.0, "ser_p5_ns": 5521223.65, "ser_p25_ns": 5689880.75, "ser_p50_ns": 5814604.5, "ser_p75_ns": 5986578.75, "ser_p95_ns": 6353984.55, "ser_p99_ns": 6665692.599999999, "ser_ci_low_ns": 5800963.1865625, "ser_ci_high_ns": 5918554.158125, "deser_mean_ns": 4550179.6625, "deser_median_ns": 4493146.0, "deser_std_ns": 182316.92762051997, "deser_mad_ns": 92967.0, "deser_cv": 0.04006807228362271, "deser_min_ns": 4180944.0, "deser_max_ns": 4984003.0, "deser_p5_ns": 4320273.4, "deser_p25_ns": 4435375.5, "deser_p50_ns": 4493146.0, "deser_p75_ns": 4693675.75, "deser_p95_ns": 4880598.5, "deser_p99_ns": 4966459.47, "deser_ci_low_ns": 4511168.38875, "deser_ci_high_ns": 4588227.1996875005, "total_mean_ns": 10409137.1125, "total_median_ns": 10411969.5, "total_std_ns": 348675.87706084823, "total_mad_ns": 202862.0, "total_cv": 0.03349709714575039, "total_min_ns": 9507173.0, "total_max_ns": 11571415.0, "total_p5_ns": 9908904.85, "total_p25_ns": 10195138.5, "total_p50_ns": 10411969.5, "total_p75_ns": 10570080.25, "total_p95_ns": 10930722.25, "total_p99_ns": 11402914.319999998, "total_ci_low_ns": 10331900.259375, "total_ci_high_ns": 10485947.066875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 42.91397379798814}, {"serializer": "fastJson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "2.4.0.4", "avg_time_ser_ns": 496449.0779220779, "avg_time_deser_ns": 816254.3376623377, "avg_time_total_ns": 1312703.4155844157, "median_size_bytes": 67460.0, "avg_ops_per_sec": 761.786697686621, "min_ops_per_sec": 668.329023725012, "max_ops_per_sec": 840.8116523042023, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 496449.0779220779, "ser_median_ns": 497007.0, "ser_std_ns": 26260.456415526045, "ser_mad_ns": 17605.0, "ser_cv": 0.05289657607068384, "ser_min_ns": 449116.0, "ser_max_ns": 565062.0, "ser_p5_ns": 451931.2, "ser_p25_ns": 479402.0, "ser_p50_ns": 497007.0, "ser_p75_ns": 513627.0, "ser_p95_ns": 542216.2000000001, "ser_p99_ns": 563275.24, "ser_ci_low_ns": 490665.47987012984, "ser_ci_high_ns": 502041.674025974, "deser_mean_ns": 816254.3376623377, "deser_median_ns": 815428.0, "deser_std_ns": 46183.97154134595, "deser_mad_ns": 28068.0, "deser_cv": 0.05658036890022752, "deser_min_ns": 734599.0, "deser_max_ns": 949724.0, "deser_p5_ns": 743685.0, "deser_p25_ns": 787141.0, "deser_p50_ns": 815428.0, "deser_p75_ns": 842279.0, "deser_p95_ns": 891788.0, "deser_p99_ns": 947930.4, "deser_ci_low_ns": 806376.0301948052, "deser_ci_high_ns": 826494.7737012987, "total_mean_ns": 1312703.4155844157, "total_median_ns": 1316327.0, "total_std_ns": 62848.19725701443, "total_mad_ns": 38598.0, "total_cv": 0.04787692064397837, "total_min_ns": 1189327.0, "total_max_ns": 1496269.0, "total_p5_ns": 1219690.8, "total_p25_ns": 1270675.0, "total_p50_ns": 1316327.0, "total_p75_ns": 1348079.0, "total_p95_ns": 1417171.4, "total_p99_ns": 1472430.0799999998, "total_ci_low_ns": 1298693.6068181817, "total_ci_high_ns": 1327045.6392857144, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.499147380284082}, {"serializer": "MS DataContract", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 590005.2528735632, "avg_time_deser_ns": 1014139.3793103448, "avg_time_total_ns": 1604144.632183908, "median_size_bytes": 151241.0, "avg_ops_per_sec": 623.3851860593045, "min_ops_per_sec": 579.7524920660871, "max_ops_per_sec": 685.7459475843227, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 590005.2528735632, "ser_median_ns": 587646.0, "ser_std_ns": 32825.14465446381, "ser_mad_ns": 24710.0, "ser_cv": 0.055635343066171246, "ser_min_ns": 531350.0, "ser_max_ns": 656428.0, "ser_p5_ns": 535551.1, "ser_p25_ns": 566355.5, "ser_p50_ns": 587646.0, "ser_p75_ns": 612465.5, "ser_p95_ns": 649122.5, "ser_p99_ns": 655161.22, "ser_ci_low_ns": 583113.040229885, "ser_ci_high_ns": 596722.5005747126, "deser_mean_ns": 1014139.3793103448, "deser_median_ns": 1014450.0, "deser_std_ns": 53849.291435868945, "deser_mad_ns": 34647.0, "deser_cv": 0.05309851144177895, "deser_min_ns": 902218.0, "deser_max_ns": 1144456.0, "deser_p5_ns": 925109.4, "deser_p25_ns": 982090.0, "deser_p50_ns": 1014450.0, "deser_p75_ns": 1049215.5, "deser_p95_ns": 1104990.4, "deser_p99_ns": 1127182.9, "deser_ci_low_ns": 1002164.6887931034, "deser_ci_high_ns": 1025842.4712643678, "total_mean_ns": 1604144.632183908, "total_median_ns": 1616912.0, "total_std_ns": 66467.64760884678, "total_mad_ns": 37964.0, "total_cv": 0.04143494687156523, "total_min_ns": 1458266.0, "total_max_ns": 1724874.0, "total_p5_ns": 1479559.6, "total_p25_ns": 1575324.0, "total_p50_ns": 1616912.0, "total_p75_ns": 1646708.0, "total_p95_ns": 1701516.7, "total_p99_ns": 1724396.7, "total_ci_low_ns": 1589661.0672413793, "total_ci_high_ns": 1617258.7925287357, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 33.213397722648494}, {"serializer": "Utf8Json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.3.7", "avg_time_ser_ns": 325965.8461538461, "avg_time_deser_ns": 419199.1538461539, "avg_time_total_ns": 745165.0, "median_size_bytes": 65974.0, "avg_ops_per_sec": 1341.9846611153234, "min_ops_per_sec": 1214.4323136150006, "max_ops_per_sec": 1486.3081295109453, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 325965.8461538461, "ser_median_ns": 326987.0, "ser_std_ns": 18626.233322877993, "ser_mad_ns": 11014.0, "ser_cv": 0.05714167156667993, "ser_min_ns": 290936.0, "ser_max_ns": 375950.0, "ser_p5_ns": 297452.5, "ser_p25_ns": 310556.0, "ser_p50_ns": 326987.0, "ser_p75_ns": 336291.5, "ser_p95_ns": 358366.0, "ser_p99_ns": 371414.0, "ser_ci_low_ns": 322224.9840659341, "ser_ci_high_ns": 329700.53461538465, "deser_mean_ns": 419199.1538461539, "deser_median_ns": 421030.0, "deser_std_ns": 23005.37128243609, "deser_mad_ns": 16769.0, "deser_cv": 0.05487933616125347, "deser_min_ns": 361161.0, "deser_max_ns": 478186.0, "deser_p5_ns": 383939.5, "deser_p25_ns": 402128.5, "deser_p50_ns": 421030.0, "deser_p75_ns": 435499.0, "deser_p95_ns": 454481.0, "deser_p99_ns": 461811.3999999999, "deser_ci_low_ns": 414449.4508241758, "deser_ci_high_ns": 424269.860989011, "total_mean_ns": 745165.0, "total_median_ns": 748102.0, "total_std_ns": 36120.371882852414, "total_mad_ns": 29336.0, "total_cv": 0.048472985020569154, "total_min_ns": 672808.0, "total_max_ns": 823430.0, "total_p5_ns": 688003.0, "total_p25_ns": 714037.5, "total_p50_ns": 748102.0, "total_p75_ns": 775586.0, "total_p95_ns": 795758.5, "total_p99_ns": 815075.2999999999, "total_ci_low_ns": 737861.7728021977, "total_ci_high_ns": 752361.8686813186, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.204454237982063}, {"serializer": "FsPicklerJson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 552943.8375, "avg_time_deser_ns": 769476.1875, "avg_time_total_ns": 1322420.025, "median_size_bytes": 72708.0, "avg_ops_per_sec": 756.1893960279375, "min_ops_per_sec": 679.8230556550741, "max_ops_per_sec": 823.4410613825905, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 552943.8375, "ser_median_ns": 553843.5, "ser_std_ns": 30654.52103044787, "ser_mad_ns": 20498.5, "ser_cv": 0.05543876059645546, "ser_min_ns": 479574.0, "ser_max_ns": 630058.0, "ser_p5_ns": 502784.3, "ser_p25_ns": 532413.25, "ser_p50_ns": 553843.5, "ser_p75_ns": 573420.25, "ser_p95_ns": 602743.95, "ser_p99_ns": 622592.4999999999, "ser_ci_low_ns": 546309.1709375001, "ser_ci_high_ns": 559602.285625, "deser_mean_ns": 769476.1875, "deser_median_ns": 769727.5, "deser_std_ns": 48394.90843003777, "deser_mad_ns": 33340.0, "deser_cv": 0.06289331523990503, "deser_min_ns": 691753.0, "deser_max_ns": 911233.0, "deser_p5_ns": 700136.8, "deser_p25_ns": 733881.5, "deser_p50_ns": 769727.5, "deser_p75_ns": 801063.25, "deser_p95_ns": 852025.05, "deser_p99_ns": 905762.25, "deser_ci_low_ns": 759524.4028125, "deser_ci_high_ns": 780178.0584374999, "total_mean_ns": 1322420.025, "total_median_ns": 1319826.5, "total_std_ns": 63510.00794332648, "total_mad_ns": 51987.0, "total_cv": 0.048025594548393565, "total_min_ns": 1214416.0, "total_max_ns": 1470971.0, "total_p5_ns": 1226914.8, "total_p25_ns": 1273079.5, "total_p50_ns": 1319826.5, "total_p75_ns": 1371612.0, "total_p95_ns": 1425799.85, "total_p99_ns": 1461563.68, "total_ci_low_ns": 1308790.9693749999, "total_ci_high_ns": 1336912.0799999998, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.119234758117013}, {"serializer": "ServiceStack Json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 554935.8414634146, "avg_time_deser_ns": 647518.1341463415, "avg_time_total_ns": 1202453.975609756, "median_size_bytes": 65968.0, "avg_ops_per_sec": 831.6326614437837, "min_ops_per_sec": 753.7612687309676, "max_ops_per_sec": 908.70842545365, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 554935.8414634146, "ser_median_ns": 551047.0, "ser_std_ns": 30144.529814135378, "ser_mad_ns": 22355.0, "ser_cv": 0.054320747664525694, "ser_min_ns": 497256.0, "ser_max_ns": 637104.0, "ser_p5_ns": 510157.75, "ser_p25_ns": 533911.25, "ser_p50_ns": 551047.0, "ser_p75_ns": 580271.25, "ser_p95_ns": 601311.85, "ser_p99_ns": 623628.84, "ser_ci_low_ns": 548831.3664634146, "ser_ci_high_ns": 561311.9652439024, "deser_mean_ns": 647518.1341463415, "deser_median_ns": 647859.5, "deser_std_ns": 37571.043397401634, "deser_mad_ns": 26002.0, "deser_cv": 0.05802315242789855, "deser_min_ns": 580345.0, "deser_max_ns": 757500.0, "deser_p5_ns": 591263.6, "deser_p25_ns": 620276.5, "deser_p50_ns": 647859.5, "deser_p75_ns": 667780.25, "deser_p95_ns": 714350.8, "deser_p99_ns": 746030.4, "deser_ci_low_ns": 639505.8051829268, "deser_ci_high_ns": 655450.4277439024, "total_mean_ns": 1202453.975609756, "total_median_ns": 1204290.5, "total_std_ns": 58102.4768871272, "total_mad_ns": 46328.0, "total_cv": 0.04831991749011753, "total_min_ns": 1100463.0, "total_max_ns": 1326680.0, "total_p5_ns": 1117398.15, "total_p25_ns": 1149230.25, "total_p50_ns": 1204290.5, "total_p75_ns": 1244013.5, "total_p95_ns": 1296149.9, "total_p99_ns": 1324232.18, "total_ci_low_ns": 1189437.3643292682, "total_ci_high_ns": 1215193.3125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.66228708995941}, {"serializer": "MS Binary", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 18012.863157894735, "avg_time_deser_ns": 18713.336842105262, "avg_time_total_ns": 36726.2, "median_size_bytes": 1304.0, "avg_ops_per_sec": 27228.518060676033, "min_ops_per_sec": 19957.68969784058, "max_ops_per_sec": 36224.009273346375, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 18012.863157894735, "ser_median_ns": 17370.0, "ser_std_ns": 2997.213243290487, "ser_mad_ns": 1920.0, "ser_cv": 0.16639293914675962, "ser_min_ns": 12578.0, "ser_max_ns": 25873.0, "ser_p5_ns": 14617.7, "ser_p25_ns": 15832.5, "ser_p50_ns": 17370.0, "ser_p75_ns": 19623.0, "ser_p95_ns": 24265.2, "ser_p99_ns": 25403.0, "ser_ci_low_ns": 17381.438157894736, "ser_ci_high_ns": 18612.507894736842, "deser_mean_ns": 18713.336842105262, "deser_median_ns": 18201.0, "deser_std_ns": 2215.9987595555244, "deser_mad_ns": 1385.0, "deser_cv": 0.11841815162379256, "deser_min_ns": 15028.0, "deser_max_ns": 24733.0, "deser_p5_ns": 15967.6, "deser_p25_ns": 17021.5, "deser_p50_ns": 18201.0, "deser_p75_ns": 20452.5, "deser_p95_ns": 23000.1, "deser_p99_ns": 23985.7, "deser_ci_low_ns": 18272.43289473684, "deser_ci_high_ns": 19168.53184210526, "total_mean_ns": 36726.2, "total_median_ns": 35639.0, "total_std_ns": 4994.206487350905, "total_mad_ns": 3023.0, "total_cv": 0.13598484153957952, "total_min_ns": 27606.0, "total_max_ns": 50106.0, "total_p5_ns": 30993.6, "total_p25_ns": 32805.5, "total_p50_ns": 35639.0, "total_p75_ns": 40223.0, "total_p95_ns": 46304.2, "total_p99_ns": 48890.58, "total_ci_low_ns": 35737.32236842105, "total_ci_high_ns": 37776.942368421056, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.87624574472692}, {"serializer": "NetSerializer", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "4.1.2", "avg_time_ser_ns": 3633.6666666666665, "avg_time_deser_ns": 3315.4895833333335, "avg_time_total_ns": 6949.15625, "median_size_bytes": 496.0, "avg_ops_per_sec": 143902.36224721526, "min_ops_per_sec": 101615.689462453, "max_ops_per_sec": 248385.49428713362, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 3633.6666666666665, "ser_median_ns": 3470.5, "ser_std_ns": 771.0470074640704, "ser_mad_ns": 458.5, "ser_cv": 0.21219530523733704, "ser_min_ns": 1788.0, "ser_max_ns": 5615.0, "ser_p5_ns": 2749.5, "ser_p25_ns": 3059.5, "ser_p50_ns": 3470.5, "ser_p75_ns": 4112.25, "ser_p95_ns": 5041.75, "ser_p99_ns": 5505.75, "ser_ci_low_ns": 3482.6940104166665, "ser_ci_high_ns": 3786.4044270833333, "deser_mean_ns": 3315.4895833333335, "deser_median_ns": 3207.0, "deser_std_ns": 492.087454674721, "deser_mad_ns": 321.0, "deser_cv": 0.14842075123637855, "deser_min_ns": 2238.0, "deser_max_ns": 4529.0, "deser_p5_ns": 2702.25, "deser_p25_ns": 2946.25, "deser_p50_ns": 3207.0, "deser_p75_ns": 3627.0, "deser_p95_ns": 4165.25, "deser_p99_ns": 4333.299999999999, "deser_ci_low_ns": 3217.346875, "deser_ci_high_ns": 3410.273177083333, "total_mean_ns": 6949.15625, "total_median_ns": 6681.0, "total_std_ns": 1159.9682965551938, "total_mad_ns": 670.0, "total_cv": 0.1669221780061707, "total_min_ns": 4026.0, "total_max_ns": 9841.0, "total_p5_ns": 5620.0, "total_p25_ns": 6131.75, "total_p50_ns": 6681.0, "total_p75_ns": 7577.5, "total_p95_ns": 9123.0, "total_p99_ns": 9565.5, "total_ci_low_ns": 6722.434375, "total_ci_high_ns": 7185.97578125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 0.8947251773049646, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.164599966072691}, {"serializer": "ServiceStack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 3958.2872340425533, "avg_time_deser_ns": 4066.8936170212764, "avg_time_total_ns": 8025.18085106383, "median_size_bytes": 344.0, "avg_ops_per_sec": 124607.78374451691, "min_ops_per_sec": 82562.74768824306, "max_ops_per_sec": 210659.3638087213, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 3958.2872340425533, "ser_median_ns": 3618.5, "ser_std_ns": 992.516499928831, "ser_mad_ns": 438.0, "ser_cv": 0.25074393070640943, "ser_min_ns": 2024.0, "ser_max_ns": 6755.0, "ser_p5_ns": 2717.25, "ser_p25_ns": 3288.25, "ser_p50_ns": 3618.5, "ser_p75_ns": 4585.75, "ser_p95_ns": 5798.5, "ser_p99_ns": 6640.609999999999, "ser_ci_low_ns": 3762.551329787234, "ser_ci_high_ns": 4164.375531914893, "deser_mean_ns": 4066.8936170212764, "deser_median_ns": 3867.0, "deser_std_ns": 742.9450184158495, "deser_mad_ns": 447.0, "deser_cv": 0.18268120299640547, "deser_min_ns": 2421.0, "deser_max_ns": 5801.0, "deser_p5_ns": 3170.6, "deser_p25_ns": 3503.0, "deser_p50_ns": 3867.0, "deser_p75_ns": 4628.75, "deser_p95_ns": 5365.299999999999, "deser_p99_ns": 5728.459999999999, "deser_ci_low_ns": 3917.4952127659576, "deser_ci_high_ns": 4220.767553191489, "total_mean_ns": 8025.18085106383, "total_median_ns": 7589.5, "total_std_ns": 1642.80044771945, "total_mad_ns": 870.5, "total_cv": 0.20470572292482078, "total_min_ns": 4747.0, "total_max_ns": 12112.0, "total_p5_ns": 6170.85, "total_p25_ns": 6931.75, "total_p50_ns": 7589.5, "total_p75_ns": 9167.5, "total_p95_ns": 10960.599999999999, "total_p99_ns": 11966.919999999998, "total_ci_low_ns": 7708.115691489362, "total_ci_high_ns": 8358.810638297871, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 0.9634449977365324, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.497054493625953}, {"serializer": "ZeroFormatter", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.6.4", "avg_time_ser_ns": 2591.6483516483518, "avg_time_deser_ns": 3095.043956043956, "avg_time_total_ns": 5686.692307692308, "median_size_bytes": 580.0, "avg_ops_per_sec": 175849.1484843156, "min_ops_per_sec": 132837.4070138151, "max_ops_per_sec": 283768.4449489217, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 2591.6483516483518, "ser_median_ns": 2578.0, "ser_std_ns": 556.1014370623477, "ser_mad_ns": 402.0, "ser_cv": 0.21457441813379258, "ser_min_ns": 1185.0, "ser_max_ns": 4125.0, "ser_p5_ns": 1761.0, "ser_p25_ns": 2177.5, "ser_p50_ns": 2578.0, "ser_p75_ns": 2978.5, "ser_p95_ns": 3446.5, "ser_p99_ns": 3891.8999999999987, "ser_ci_low_ns": 2482.2513736263736, "ser_ci_high_ns": 2705.694505494505, "deser_mean_ns": 3095.043956043956, "deser_median_ns": 3071.0, "deser_std_ns": 427.2377665393231, "deser_mad_ns": 291.0, "deser_cv": 0.1380393211233784, "deser_min_ns": 2291.0, "deser_max_ns": 4399.0, "deser_p5_ns": 2509.0, "deser_p25_ns": 2782.5, "deser_p50_ns": 3071.0, "deser_p75_ns": 3383.5, "deser_p95_ns": 3799.5, "deser_p99_ns": 4217.199999999999, "deser_ci_low_ns": 3006.46978021978, "deser_ci_high_ns": 3185.7324175824174, "total_mean_ns": 5686.692307692308, "total_median_ns": 5603.0, "total_std_ns": 807.8942957852798, "total_mad_ns": 524.0, "total_cv": 0.14206752397917727, "total_min_ns": 3524.0, "total_max_ns": 7528.0, "total_p5_ns": 4451.5, "total_p25_ns": 5173.0, "total_p50_ns": 5603.0, "total_p75_ns": 6250.0, "total_p95_ns": 6948.5, "total_p99_ns": 7518.1, "total_ci_low_ns": 5524.234065934066, "total_ci_high_ns": 5850.591483516483, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 0.580079494973112, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.0983783393478506}, {"serializer": "SharpSerializer", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 18771.079545454544, "avg_time_deser_ns": 38846.556818181816, "avg_time_total_ns": 57617.63636363636, "median_size_bytes": 2004.0, "avg_ops_per_sec": 17355.79699397596, "min_ops_per_sec": 14298.583010423667, "max_ops_per_sec": 20486.765549455053, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 18771.079545454544, "ser_median_ns": 18223.0, "ser_std_ns": 1814.1929349145985, "ser_mad_ns": 816.0, "ser_cv": 0.09664830040922762, "ser_min_ns": 15368.0, "ser_max_ns": 23804.0, "ser_p5_ns": 16807.45, "ser_p25_ns": 17535.75, "ser_p50_ns": 18223.0, "ser_p75_ns": 19251.25, "ser_p95_ns": 22599.149999999994, "ser_p99_ns": 23295.049999999996, "ser_ci_low_ns": 18398.088352272727, "ser_ci_high_ns": 19154.036079545454, "deser_mean_ns": 38846.556818181816, "deser_median_ns": 38468.5, "deser_std_ns": 2849.3813519233627, "deser_mad_ns": 1746.5, "deser_cv": 0.07334965014427566, "deser_min_ns": 32810.0, "deser_max_ns": 46133.0, "deser_p5_ns": 34850.25, "deser_p25_ns": 36925.25, "deser_p50_ns": 38468.5, "deser_p75_ns": 40452.25, "deser_p95_ns": 44578.55, "deser_p99_ns": 45595.34, "deser_ci_low_ns": 38294.082102272725, "deser_ci_high_ns": 39466.60880681818, "total_mean_ns": 57617.63636363636, "total_median_ns": 56902.0, "total_std_ns": 4485.5178078099, "total_mad_ns": 2374.5, "total_cv": 0.0778497364852127, "total_min_ns": 48812.0, "total_max_ns": 69937.0, "total_p5_ns": 52094.95, "total_p25_ns": 54747.5, "total_p50_ns": 56902.0, "total_p75_ns": 60384.25, "total_p95_ns": 66759.9, "total_p99_ns": 68071.71999999999, "total_ci_low_ns": 56673.24232954546, "total_ci_high_ns": 58476.28295454546, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.620910932320836}, {"serializer": "YAXLib", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "4.4.0", "avg_time_ser_ns": 92147.7375, "avg_time_deser_ns": 63634.875, "avg_time_total_ns": 155782.6125, "median_size_bytes": 1048.0, "avg_ops_per_sec": 6419.201629450142, "min_ops_per_sec": 4368.624538564033, "max_ops_per_sec": 9280.742459396752, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 92147.7375, "ser_median_ns": 87895.5, "ser_std_ns": 16769.32028599466, "ser_mad_ns": 8121.0, "ser_cv": 0.18198298450892145, "ser_min_ns": 55859.0, "ser_max_ns": 152907.0, "ser_p5_ns": 74007.05, "ser_p25_ns": 81195.5, "ser_p50_ns": 87895.5, "ser_p75_ns": 100679.25, "ser_p95_ns": 120677.84999999999, "ser_p99_ns": 150619.15999999997, "ser_ci_low_ns": 88561.13875, "ser_ci_high_ns": 96092.80437499999, "deser_mean_ns": 63634.875, "deser_median_ns": 62738.5, "deser_std_ns": 4694.2692381647375, "deser_mad_ns": 2592.5, "deser_cv": 0.0737688136916233, "deser_min_ns": 51891.0, "deser_max_ns": 78894.0, "deser_p5_ns": 58213.75, "deser_p25_ns": 60440.25, "deser_p50_ns": 62738.5, "deser_p75_ns": 65778.5, "deser_p95_ns": 71709.7, "deser_p99_ns": 77691.62, "deser_ci_low_ns": 62630.21, "deser_ci_high_ns": 64647.9996875, "total_mean_ns": 155782.6125, "total_median_ns": 151221.0, "total_std_ns": 20749.20221830334, "total_mad_ns": 11017.0, "total_cv": 0.1331933126895233, "total_min_ns": 107750.0, "total_max_ns": 228905.0, "total_p5_ns": 132115.15, "total_p25_ns": 142006.0, "total_p50_ns": 151221.0, "total_p75_ns": 166725.75, "total_p95_ns": 192048.9, "total_p99_ns": 224910.75999999998, "total_ci_low_ns": 151380.43843749998, "total_ci_high_ns": 160396.60374999998, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.679456129129306}, {"serializer": "LightProto", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.3.4", "avg_time_ser_ns": 3857.7582417582416, "avg_time_deser_ns": 4056.6923076923076, "avg_time_total_ns": 7914.450549450549, "median_size_bytes": 492.0, "avg_ops_per_sec": 126351.1590289011, "min_ops_per_sec": 86482.74669203494, "max_ops_per_sec": 163291.96603527106, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 3857.7582417582416, "ser_median_ns": 3635.0, "ser_std_ns": 869.56341971333, "ser_mad_ns": 455.0, "ser_cv": 0.22540640579825733, "ser_min_ns": 2513.0, "ser_max_ns": 6083.0, "ser_p5_ns": 2864.5, "ser_p25_ns": 3251.5, "ser_p50_ns": 3635.0, "ser_p75_ns": 4269.5, "ser_p95_ns": 5632.5, "ser_p99_ns": 6058.7, "ser_ci_low_ns": 3689.225, "ser_ci_high_ns": 4038.4392857142857, "deser_mean_ns": 4056.6923076923076, "deser_median_ns": 3933.0, "deser_std_ns": 635.3826964437818, "deser_mad_ns": 437.0, "deser_cv": 0.15662580453513025, "deser_min_ns": 3051.0, "deser_max_ns": 5719.0, "deser_p5_ns": 3229.0, "deser_p25_ns": 3538.5, "deser_p50_ns": 3933.0, "deser_p75_ns": 4391.0, "deser_p95_ns": 5201.5, "deser_p99_ns": 5695.599999999999, "deser_ci_low_ns": 3929.591208791209, "deser_ci_high_ns": 4181.775, "total_mean_ns": 7914.450549450549, "total_median_ns": 7447.0, "total_std_ns": 1377.367265343047, "total_mad_ns": 674.0, "total_cv": 0.17403195038456193, "total_min_ns": 6124.0, "total_max_ns": 11563.0, "total_p5_ns": 6421.5, "total_p25_ns": 6916.5, "total_p50_ns": 7447.0, "total_p75_ns": 8547.5, "total_p95_ns": 10703.5, "total_p99_ns": 11322.699999999999, "total_ci_low_ns": 7648.457142857143, "total_ci_high_ns": 8201.883241758242, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 0.9878419452887538, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.7923544579946964}, {"serializer": "Jil", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "2.17.0", "avg_time_ser_ns": 8141.554347826087, "avg_time_deser_ns": 3933.7608695652175, "avg_time_total_ns": 12075.315217391304, "median_size_bytes": 410.0, "avg_ops_per_sec": 82813.5731446384, "min_ops_per_sec": 55169.36996579499, "max_ops_per_sec": 112968.82060551288, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 8141.554347826087, "ser_median_ns": 7654.5, "ser_std_ns": 1774.9442793552853, "ser_mad_ns": 961.0, "ser_cv": 0.21801049327014824, "ser_min_ns": 5729.0, "ser_max_ns": 13173.0, "ser_p5_ns": 6169.1, "ser_p25_ns": 6785.25, "ser_p50_ns": 7654.5, "ser_p75_ns": 8892.75, "ser_p95_ns": 11852.1, "ser_p99_ns": 12787.160000000002, "ser_ci_low_ns": 7793.173641304347, "ser_ci_high_ns": 8515.084239130434, "deser_mean_ns": 3933.7608695652175, "deser_median_ns": 3841.0, "deser_std_ns": 629.2256599974571, "deser_mad_ns": 445.0, "deser_cv": 0.1599552389840623, "deser_min_ns": 2957.0, "deser_max_ns": 5732.0, "deser_p5_ns": 3198.45, "deser_p25_ns": 3399.5, "deser_p50_ns": 3841.0, "deser_p75_ns": 4286.75, "deser_p95_ns": 5147.450000000001, "deser_p99_ns": 5375.280000000002, "deser_ci_low_ns": 3813.690760869565, "deser_ci_high_ns": 4063.470652173913, "total_mean_ns": 12075.315217391304, "total_median_ns": 11479.5, "total_std_ns": 2252.9411542694697, "total_mad_ns": 1148.5, "total_cv": 0.18657410706966082, "total_min_ns": 8852.0, "total_max_ns": 18126.0, "total_p5_ns": 9514.4, "total_p25_ns": 10457.0, "total_p50_ns": 11479.5, "total_p75_ns": 13032.25, "total_p95_ns": 16894.7, "total_p99_ns": 17446.230000000003, "total_ci_low_ns": 11638.13777173913, "total_ci_high_ns": 12552.757336956522, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.323185345489702}, {"serializer": "Json.Net (Helper)", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 6578.604938271605, "avg_time_deser_ns": 6183.7037037037035, "avg_time_total_ns": 12762.308641975309, "median_size_bytes": 420.0, "avg_ops_per_sec": 78355.72920646927, "min_ops_per_sec": 58764.76464711759, "max_ops_per_sec": 119932.83761093787, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 6578.604938271605, "ser_median_ns": 6505.0, "ser_std_ns": 981.6952006479958, "ser_mad_ns": 538.0, "ser_cv": 0.1492254375904075, "ser_min_ns": 3782.0, "ser_max_ns": 9351.0, "ser_p5_ns": 5291.0, "ser_p25_ns": 5967.0, "ser_p50_ns": 6505.0, "ser_p75_ns": 6952.0, "ser_p95_ns": 8048.0, "ser_p99_ns": 9294.2, "ser_ci_low_ns": 6368.134259259259, "ser_ci_high_ns": 6799.061111111111, "deser_mean_ns": 6183.7037037037035, "deser_median_ns": 6244.0, "deser_std_ns": 964.4048222147746, "deser_mad_ns": 644.0, "deser_cv": 0.1559590931947707, "deser_min_ns": 4102.0, "deser_max_ns": 7940.0, "deser_p5_ns": 4515.0, "deser_p25_ns": 5609.0, "deser_p50_ns": 6244.0, "deser_p75_ns": 6962.0, "deser_p95_ns": 7548.0, "deser_p99_ns": 7777.6, "deser_ci_low_ns": 5981.293827160494, "deser_ci_high_ns": 6382.772530864197, "total_mean_ns": 12762.308641975309, "total_median_ns": 12790.0, "total_std_ns": 1740.0895138036383, "total_mad_ns": 915.0, "total_cv": 0.13634598273861467, "total_min_ns": 8338.0, "total_max_ns": 17017.0, "total_p5_ns": 9743.0, "total_p25_ns": 11942.0, "total_p50_ns": 12790.0, "total_p75_ns": 13770.0, "total_p95_ns": 15616.0, "total_p99_ns": 16889.0, "total_ci_low_ns": 12395.782407407407, "total_ci_high_ns": 13133.029320987655, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.075383976265465}, {"serializer": "ProtoBuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "2.4.9.1", "avg_time_ser_ns": 4358.2555555555555, "avg_time_deser_ns": 6512.344444444445, "avg_time_total_ns": 10870.6, "median_size_bytes": 492.0, "avg_ops_per_sec": 91991.24243372031, "min_ops_per_sec": 73616.01884570082, "max_ops_per_sec": 115340.25374855824, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 4358.2555555555555, "ser_median_ns": 4321.0, "ser_std_ns": 731.0370894095487, "ser_mad_ns": 479.5, "ser_cv": 0.1677361687700211, "ser_min_ns": 2878.0, "ser_max_ns": 6113.0, "ser_p5_ns": 3349.05, "ser_p25_ns": 3825.25, "ser_p50_ns": 4321.0, "ser_p75_ns": 4744.75, "ser_p95_ns": 5678.95, "ser_p99_ns": 5848.67, "ser_ci_low_ns": 4209.691111111111, "ser_ci_high_ns": 4514.284166666666, "deser_mean_ns": 6512.344444444445, "deser_median_ns": 6494.5, "deser_std_ns": 488.50032284352403, "deser_mad_ns": 329.5, "deser_cv": 0.07501143820183746, "deser_min_ns": 5547.0, "deser_max_ns": 7935.0, "deser_p5_ns": 5775.3, "deser_p25_ns": 6185.25, "deser_p50_ns": 6494.5, "deser_p75_ns": 6840.25, "deser_p95_ns": 7304.4, "deser_p99_ns": 7506.91, "deser_ci_low_ns": 6413.2275, "deser_ci_high_ns": 6615.7, "total_mean_ns": 10870.6, "total_median_ns": 10743.0, "total_std_ns": 1097.8170146945295, "total_mad_ns": 730.0, "total_cv": 0.10098955114662755, "total_min_ns": 8670.0, "total_max_ns": 13584.0, "total_p5_ns": 9421.5, "total_p25_ns": 10078.0, "total_p50_ns": 10743.0, "total_p75_ns": 11558.5, "total_p95_ns": 12712.3, "total_p99_ns": 13438.93, "total_ci_low_ns": 10642.676666666668, "total_ci_high_ns": 11093.072222222223, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.472666116723093}, {"serializer": "Ceras", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "4.1.7", "avg_time_ser_ns": 5823.358695652174, "avg_time_deser_ns": 14498.20652173913, "avg_time_total_ns": 20321.565217391304, "median_size_bytes": 512.0, "avg_ops_per_sec": 49208.80794872015, "min_ops_per_sec": 34551.86234538042, "max_ops_per_sec": 65027.96202367018, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 5823.358695652174, "ser_median_ns": 5387.5, "ser_std_ns": 1245.952802640241, "ser_mad_ns": 647.0, "ser_cv": 0.21395776351034193, "ser_min_ns": 4179.0, "ser_max_ns": 9194.0, "ser_p5_ns": 4433.5, "ser_p25_ns": 4892.5, "ser_p50_ns": 5387.5, "ser_p75_ns": 6475.0, "ser_p95_ns": 8183.45, "ser_p99_ns": 8944.660000000002, "ser_ci_low_ns": 5578.987228260869, "ser_ci_high_ns": 6084.39402173913, "deser_mean_ns": 14498.20652173913, "deser_median_ns": 14035.5, "deser_std_ns": 2346.0767650802277, "deser_mad_ns": 1282.5, "deser_cv": 0.16181841261279015, "deser_min_ns": 10745.0, "deser_max_ns": 20810.0, "deser_p5_ns": 11747.25, "deser_p25_ns": 12841.25, "deser_p50_ns": 14035.5, "deser_p75_ns": 15318.5, "deser_p95_ns": 19248.15, "deser_p99_ns": 20262.18, "deser_ci_low_ns": 14018.591576086956, "deser_ci_high_ns": 14973.448097826087, "total_mean_ns": 20321.565217391304, "total_median_ns": 19446.5, "total_std_ns": 3406.189783593069, "total_mad_ns": 2122.0, "total_cv": 0.16761453889772396, "total_min_ns": 15378.0, "total_max_ns": 28942.0, "total_p5_ns": 16471.25, "total_p25_ns": 17663.25, "total_p50_ns": 19446.5, "total_p75_ns": 21975.0, "total_p95_ns": 27217.4, "total_p99_ns": 28688.11, "total_ci_low_ns": 19671.096195652175, "total_ci_high_ns": 21024.522826086955, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.29145668688487}, {"serializer": "MS Bond Fast", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 2835.056818181818, "avg_time_deser_ns": 2348.5227272727275, "avg_time_total_ns": 5183.579545454545, "median_size_bytes": 456.0, "avg_ops_per_sec": 192916.88132323444, "min_ops_per_sec": 156421.0855623338, "max_ops_per_sec": 256147.54098360657, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 2835.056818181818, "ser_median_ns": 2786.5, "ser_std_ns": 461.98988290546043, "ser_mad_ns": 273.5, "ser_cv": 0.162956128407241, "ser_min_ns": 1944.0, "ser_max_ns": 4050.0, "ser_p5_ns": 2184.45, "ser_p25_ns": 2513.5, "ser_p50_ns": 2786.5, "ser_p75_ns": 3062.25, "ser_p95_ns": 3818.4999999999995, "ser_p99_ns": 4023.8999999999996, "ser_ci_low_ns": 2742.713352272727, "ser_ci_high_ns": 2931.205965909091, "deser_mean_ns": 2348.5227272727275, "deser_median_ns": 2295.0, "deser_std_ns": 246.85953832380468, "deser_mad_ns": 130.0, "deser_cv": 0.10511268869451207, "deser_min_ns": 1740.0, "deser_max_ns": 2932.0, "deser_p5_ns": 2039.4, "deser_p25_ns": 2207.5, "deser_p50_ns": 2295.0, "deser_p75_ns": 2454.5, "deser_p95_ns": 2840.85, "deser_p99_ns": 2912.8599999999997, "deser_ci_low_ns": 2299.1, "deser_ci_high_ns": 2400.2008522727274, "total_mean_ns": 5183.579545454545, "total_median_ns": 5167.0, "total_std_ns": 522.6019720456458, "total_mad_ns": 325.0, "total_cv": 0.10081874262041812, "total_min_ns": 3904.0, "total_max_ns": 6393.0, "total_p5_ns": 4418.05, "total_p25_ns": 4844.25, "total_p50_ns": 5167.0, "total_p75_ns": 5492.75, "total_p95_ns": 6225.75, "total_p99_ns": 6339.929999999999, "total_ci_low_ns": 5080.981534090909, "total_ci_high_ns": 5289.200568181818, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 0.3557785299806576, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.5387101972064041}, {"serializer": "MS XmlSerializer", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 11872.477777777778, "avg_time_deser_ns": 20164.633333333335, "avg_time_total_ns": 32037.11111111111, "median_size_bytes": 1187.0, "avg_ops_per_sec": 31213.800661732577, "min_ops_per_sec": 23860.084464699004, "max_ops_per_sec": 41133.64320677883, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 11872.477777777778, "ser_median_ns": 11359.5, "ser_std_ns": 1773.5731041263564, "ser_mad_ns": 896.5, "ser_cv": 0.14938525363644214, "ser_min_ns": 8678.0, "ser_max_ns": 16947.0, "ser_p5_ns": 10091.25, "ser_p25_ns": 10570.0, "ser_p50_ns": 11359.5, "ser_p75_ns": 12731.0, "ser_p95_ns": 15164.25, "ser_p99_ns": 16931.87, "ser_ci_low_ns": 11515.394722222221, "ser_ci_high_ns": 12231.949722222222, "deser_mean_ns": 20164.633333333335, "deser_median_ns": 19786.0, "deser_std_ns": 1808.5935155513473, "deser_mad_ns": 885.0, "deser_cv": 0.08969136634692161, "deser_min_ns": 15633.0, "deser_max_ns": 24964.0, "deser_p5_ns": 17869.8, "deser_p25_ns": 19039.25, "deser_p50_ns": 19786.0, "deser_p75_ns": 21067.0, "deser_p95_ns": 23749.85, "deser_p99_ns": 24601.77, "deser_ci_low_ns": 19797.61888888889, "deser_ci_high_ns": 20524.340833333332, "total_mean_ns": 32037.11111111111, "total_median_ns": 31129.5, "total_std_ns": 3439.806022243358, "total_mad_ns": 1898.5, "total_cv": 0.10736941949333142, "total_min_ns": 24311.0, "total_max_ns": 41911.0, "total_p5_ns": 28146.3, "total_p25_ns": 29636.0, "total_p50_ns": 31129.5, "total_p75_ns": 34522.25, "total_p95_ns": 38218.299999999996, "total_p99_ns": 41533.64, "total_ci_low_ns": 31351.650833333333, "total_ci_high_ns": 32760.00277777778, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.004821232830748}, {"serializer": "Hyperion", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "0.12.2", "avg_time_ser_ns": 6955.114583333333, "avg_time_deser_ns": 6134.270833333333, "avg_time_total_ns": 13089.385416666666, "median_size_bytes": 748.0, "avg_ops_per_sec": 76397.78096278712, "min_ops_per_sec": 53490.23803155924, "max_ops_per_sec": 117412.23435481977, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 6955.114583333333, "ser_median_ns": 6650.0, "ser_std_ns": 1182.652850873757, "ser_mad_ns": 592.0, "ser_cv": 0.17004074292431778, "ser_min_ns": 3853.0, "ser_max_ns": 10222.0, "ser_p5_ns": 5630.0, "ser_p25_ns": 6122.0, "ser_p50_ns": 6650.0, "ser_p75_ns": 7637.5, "ser_p95_ns": 9559.0, "ser_p99_ns": 10176.4, "ser_ci_low_ns": 6728.465364583333, "ser_ci_high_ns": 7213.270052083333, "deser_mean_ns": 6134.270833333333, "deser_median_ns": 5829.5, "deser_std_ns": 1043.7052566310558, "deser_mad_ns": 704.5, "deser_cv": 0.17014332835772616, "deser_min_ns": 4664.0, "deser_max_ns": 8816.0, "deser_p5_ns": 4874.0, "deser_p25_ns": 5347.0, "deser_p50_ns": 5829.5, "deser_p75_ns": 6799.25, "deser_p95_ns": 8128.25, "deser_p99_ns": 8699.15, "deser_ci_low_ns": 5939.317447916667, "deser_ci_high_ns": 6349.243229166667, "total_mean_ns": 13089.385416666666, "total_median_ns": 12363.5, "total_std_ns": 2129.311934181614, "total_mad_ns": 1014.5, "total_cv": 0.16267470674905554, "total_min_ns": 8517.0, "total_max_ns": 18695.0, "total_p5_ns": 10969.5, "total_p25_ns": 11552.0, "total_p50_ns": 12363.5, "total_p75_ns": 14289.75, "total_p95_ns": 17834.0, "total_p99_ns": 18674.1, "total_ci_low_ns": 12680.170572916666, "total_ci_high_ns": 13529.717968750001, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.141836418215469}, {"serializer": "FsPickler", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 9623.21590909091, "avg_time_deser_ns": 8508.738636363636, "avg_time_total_ns": 18131.954545454544, "median_size_bytes": 704.0, "avg_ops_per_sec": 55151.252309458694, "min_ops_per_sec": 37551.63349605708, "max_ops_per_sec": 90587.91557206269, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 9623.21590909091, "ser_median_ns": 9129.0, "ser_std_ns": 2225.3083033147254, "ser_mad_ns": 1208.0, "ser_cv": 0.23124372604094953, "ser_min_ns": 5001.0, "ser_max_ns": 15842.0, "ser_p5_ns": 6861.2, "ser_p25_ns": 8265.0, "ser_p50_ns": 9129.0, "ser_p75_ns": 10760.25, "ser_p95_ns": 14199.499999999995, "ser_p99_ns": 15762.83, "ser_ci_low_ns": 9181.132102272728, "ser_ci_high_ns": 10081.847727272725, "deser_mean_ns": 8508.738636363636, "deser_median_ns": 8353.5, "deser_std_ns": 1036.9294248179533, "deser_mad_ns": 559.0, "deser_cv": 0.121866409245014, "deser_min_ns": 5811.0, "deser_max_ns": 11432.0, "deser_p5_ns": 6923.0, "deser_p25_ns": 7807.0, "deser_p50_ns": 8353.5, "deser_p75_ns": 9105.25, "deser_p95_ns": 10326.599999999999, "deser_p99_ns": 10950.889999999998, "deser_ci_low_ns": 8297.311647727274, "deser_ci_high_ns": 8719.338068181818, "total_mean_ns": 18131.954545454544, "total_median_ns": 17442.5, "total_std_ns": 3170.6773231543616, "total_mad_ns": 1614.0, "total_cv": 0.1748668250411653, "total_min_ns": 11039.0, "total_max_ns": 26630.0, "total_p5_ns": 13975.2, "total_p25_ns": 16406.75, "total_p50_ns": 17442.5, "total_p75_ns": 19849.5, "total_p95_ns": 23899.5, "total_p99_ns": 26609.99, "total_ci_low_ns": 17471.24829545455, "total_ci_high_ns": 18792.36846590909, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.842419011309705}, {"serializer": "CsvHelper", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "33.1.0", "avg_time_ser_ns": 376224.90588235296, "avg_time_deser_ns": 399216.7294117647, "avg_time_total_ns": 775441.6352941176, "median_size_bytes": 341.0, "avg_ops_per_sec": 1289.587706521213, "min_ops_per_sec": 1082.4045400376028, "max_ops_per_sec": 1438.3273978356049, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 376224.90588235296, "ser_median_ns": 358100.0, "ser_std_ns": 46833.170003601874, "ser_mad_ns": 19030.0, "ser_cv": 0.12448184389538207, "ser_min_ns": 329168.0, "ser_max_ns": 498504.0, "ser_p5_ns": 331831.2, "ser_p25_ns": 345606.0, "ser_p50_ns": 358100.0, "ser_p75_ns": 388214.0, "ser_p95_ns": 479549.6, "ser_p99_ns": 496897.08, "ser_ci_low_ns": 366851.03794117644, "ser_ci_high_ns": 386381.37970588234, "deser_mean_ns": 399216.7294117647, "deser_median_ns": 390889.0, "deser_std_ns": 25627.309831500457, "deser_mad_ns": 13857.0, "deser_cv": 0.06419397771546703, "deser_min_ns": 364025.0, "deser_max_ns": 487764.0, "deser_p5_ns": 370347.0, "deser_p25_ns": 379416.0, "deser_p50_ns": 390889.0, "deser_p75_ns": 418390.0, "deser_p95_ns": 441984.8, "deser_p99_ns": 467963.5199999999, "deser_ci_low_ns": 394223.7944117647, "deser_ci_high_ns": 405009.42000000004, "total_mean_ns": 775441.6352941176, "total_median_ns": 752403.0, "total_std_ns": 64098.1987515003, "total_mad_ns": 28594.0, "total_cv": 0.08266024912008814, "total_min_ns": 695252.0, "total_max_ns": 923869.0, "total_p5_ns": 705652.0, "total_p25_ns": 728307.0, "total_p50_ns": 752403.0, "total_p75_ns": 813127.0, "total_p95_ns": 898162.8, "total_p99_ns": 919651.36, "total_ci_low_ns": 762030.5626470589, "total_ci_high_ns": 789443.2670588235, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.37617035206421}, {"serializer": "FlatSharp", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "7.5.1", "avg_time_ser_ns": 6574.521276595745, "avg_time_deser_ns": 4674.734042553191, "avg_time_total_ns": 11249.255319148937, "median_size_bytes": 872.0, "avg_ops_per_sec": 88894.77317647504, "min_ops_per_sec": 51279.421568124715, "max_ops_per_sec": 148743.12063067083, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 6574.521276595745, "ser_median_ns": 6129.5, "ser_std_ns": 1853.2853521022153, "ser_mad_ns": 999.5, "ser_cv": 0.28188901885520057, "ser_min_ns": 3513.0, "ser_max_ns": 12111.0, "ser_p5_ns": 4293.15, "ser_p25_ns": 5240.5, "ser_p50_ns": 6129.5, "ser_p75_ns": 7743.75, "ser_p95_ns": 9463.999999999998, "ser_p99_ns": 12074.73, "ser_ci_low_ns": 6227.630585106383, "ser_ci_high_ns": 6966.528989361702, "deser_mean_ns": 4674.734042553191, "deser_median_ns": 4466.5, "deser_std_ns": 965.1284963814755, "deser_mad_ns": 655.5, "deser_cv": 0.20645634331196155, "deser_min_ns": 3070.0, "deser_max_ns": 7429.0, "deser_p5_ns": 3511.05, "deser_p25_ns": 3847.0, "deser_p50_ns": 4466.5, "deser_p75_ns": 5384.75, "deser_p95_ns": 6319.749999999999, "deser_p99_ns": 7322.049999999999, "deser_ci_low_ns": 4484.822606382979, "deser_ci_high_ns": 4868.973670212766, "total_mean_ns": 11249.255319148937, "total_median_ns": 10715.0, "total_std_ns": 2723.8146595725975, "total_mad_ns": 1785.0, "total_cv": 0.2421328863374636, "total_min_ns": 6723.0, "total_max_ns": 19501.0, "total_p5_ns": 7913.15, "total_p25_ns": 9214.0, "total_p50_ns": 10715.0, "total_p75_ns": 12870.75, "total_p95_ns": 16135.549999999996, "total_p99_ns": 19274.079999999998, "total_ci_low_ns": 10688.754521276596, "total_ci_high_ns": 11789.992287234043, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.202187146166437}, {"serializer": "Json.Net", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 6448.548780487805, "avg_time_deser_ns": 6132.5, "avg_time_total_ns": 12581.048780487805, "median_size_bytes": 425.0, "avg_ops_per_sec": 79484.62941745522, "min_ops_per_sec": 58309.03790087464, "max_ops_per_sec": 127404.76493820868, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 6448.548780487805, "ser_median_ns": 6422.5, "ser_std_ns": 897.810356290621, "ser_mad_ns": 481.5, "ser_cv": 0.13922672943209177, "ser_min_ns": 4195.0, "ser_max_ns": 8713.0, "ser_p5_ns": 4736.3, "ser_p25_ns": 5973.5, "ser_p50_ns": 6422.5, "ser_p75_ns": 6942.5, "ser_p95_ns": 8108.200000000001, "ser_p99_ns": 8617.42, "ser_ci_low_ns": 6264.046036585366, "ser_ci_high_ns": 6651.441463414634, "deser_mean_ns": 6132.5, "deser_median_ns": 6133.5, "deser_std_ns": 1005.8516476285342, "deser_mad_ns": 775.0, "deser_cv": 0.1640198365476615, "deser_min_ns": 3654.0, "deser_max_ns": 8437.0, "deser_p5_ns": 4536.35, "deser_p25_ns": 5385.25, "deser_p50_ns": 6133.5, "deser_p75_ns": 6918.75, "deser_p95_ns": 7800.300000000001, "deser_p99_ns": 8392.45, "deser_ci_low_ns": 5918.558231707318, "deser_ci_high_ns": 6357.647865853658, "total_mean_ns": 12581.048780487805, "total_median_ns": 12472.0, "total_std_ns": 1692.0586329510493, "total_mad_ns": 1073.5, "total_cv": 0.13449265339272, "total_min_ns": 7849.0, "total_max_ns": 17150.0, "total_p5_ns": 9817.8, "total_p25_ns": 11423.75, "total_p50_ns": 12472.0, "total_p75_ns": 13541.75, "total_p95_ns": 15534.35, "total_p99_ns": 16634.03, "total_ci_low_ns": 12210.5875, "total_ci_high_ns": 12944.607926829267, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.0619249829115125}, {"serializer": "MS DataContract", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 10760.157894736842, "avg_time_deser_ns": 16795.21052631579, "avg_time_total_ns": 27555.36842105263, "median_size_bytes": 1620.0, "avg_ops_per_sec": 36290.56903612249, "min_ops_per_sec": 26641.800985746635, "max_ops_per_sec": 48372.27301310888, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 10760.157894736842, "ser_median_ns": 10018.0, "ser_std_ns": 2310.298853818044, "ser_mad_ns": 1311.0, "ser_cv": 0.21470863870390688, "ser_min_ns": 7505.0, "ser_max_ns": 16686.0, "ser_p5_ns": 8251.9, "ser_p25_ns": 8991.0, "ser_p50_ns": 10018.0, "ser_p75_ns": 12380.0, "ser_p95_ns": 15163.499999999998, "ser_p99_ns": 16356.060000000001, "ser_ci_low_ns": 10309.327894736842, "ser_ci_high_ns": 11248.400789473684, "deser_mean_ns": 16795.21052631579, "deser_median_ns": 16186.0, "deser_std_ns": 1863.3161578603178, "deser_mad_ns": 924.0, "deser_cv": 0.11094330463680448, "deser_min_ns": 13168.0, "deser_max_ns": 21898.0, "deser_p5_ns": 14584.2, "deser_p25_ns": 15504.0, "deser_p50_ns": 16186.0, "deser_p75_ns": 17870.5, "deser_p95_ns": 20282.8, "deser_p99_ns": 21364.08, "deser_ci_low_ns": 16439.73657894737, "deser_ci_high_ns": 17189.808157894735, "total_mean_ns": 27555.36842105263, "total_median_ns": 26445.0, "total_std_ns": 4046.3006983595956, "total_mad_ns": 2328.0, "total_cv": 0.14684255483472955, "total_min_ns": 20673.0, "total_max_ns": 37535.0, "total_p5_ns": 22747.7, "total_p25_ns": 24503.5, "total_p50_ns": 26445.0, "total_p75_ns": 30365.0, "total_p95_ns": 35343.1, "total_p99_ns": 37384.6, "total_ci_low_ns": 26779.605789473684, "total_ci_high_ns": 28401.04105263158, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.762928906950973}, {"serializer": "ServiceStack Json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 5065.621052631579, "avg_time_deser_ns": 5770.9473684210525, "avg_time_total_ns": 10836.568421052632, "median_size_bytes": 410.0, "avg_ops_per_sec": 92280.13529239203, "min_ops_per_sec": 57860.32517502749, "max_ops_per_sec": 136351.24079629124, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 5065.621052631579, "ser_median_ns": 4574.0, "ser_std_ns": 1346.4262561989271, "ser_mad_ns": 603.0, "ser_cv": 0.2657968770679089, "ser_min_ns": 3419.0, "ser_max_ns": 9070.0, "ser_p5_ns": 3504.7, "ser_p25_ns": 4127.5, "ser_p50_ns": 4574.0, "ser_p75_ns": 5726.0, "ser_p95_ns": 7733.0, "ser_p99_ns": 8524.800000000001, "ser_ci_low_ns": 4803.043947368421, "ser_ci_high_ns": 5336.801842105263, "deser_mean_ns": 5770.9473684210525, "deser_median_ns": 5618.0, "deser_std_ns": 1048.1013062983357, "deser_mad_ns": 686.0, "deser_cv": 0.1816168541119617, "deser_min_ns": 3915.0, "deser_max_ns": 8412.0, "deser_p5_ns": 4532.9, "deser_p25_ns": 4978.5, "deser_p50_ns": 5618.0, "deser_p75_ns": 6439.5, "deser_p95_ns": 7708.799999999999, "deser_p99_ns": 8224.94, "deser_ci_low_ns": 5564.419473684211, "deser_ci_high_ns": 5975.466578947368, "total_mean_ns": 10836.568421052632, "total_median_ns": 10030.0, "total_std_ns": 2317.3746042534794, "total_mad_ns": 939.0, "total_cv": 0.21384764200366452, "total_min_ns": 7334.0, "total_max_ns": 17283.0, "total_p5_ns": 8061.4, "total_p25_ns": 9286.0, "total_p50_ns": 10030.0, "total_p75_ns": 12176.5, "total_p95_ns": 15350.5, "total_p99_ns": 16379.660000000002, "total_ci_low_ns": 10379.808421052632, "total_ci_high_ns": 11296.583947368421, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.4698721035189}, {"serializer": "Utf8Json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.3.7", "avg_time_ser_ns": 5490.073684210526, "avg_time_deser_ns": 4925.9473684210525, "avg_time_total_ns": 10416.021052631579, "median_size_bytes": 410.0, "avg_ops_per_sec": 96005.95034774367, "min_ops_per_sec": 58288.64537188156, "max_ops_per_sec": 236630.38334122102, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 5490.073684210526, "ser_median_ns": 5020.0, "ser_std_ns": 1713.3747664353994, "ser_mad_ns": 1055.0, "ser_cv": 0.3120859327194591, "ser_min_ns": 1723.0, "ser_max_ns": 9822.0, "ser_p5_ns": 3583.8, "ser_p25_ns": 4284.5, "ser_p50_ns": 5020.0, "ser_p75_ns": 6613.5, "ser_p95_ns": 8584.4, "ser_p99_ns": 9447.880000000001, "ser_ci_low_ns": 5167.397894736842, "ser_ci_high_ns": 5837.910263157894, "deser_mean_ns": 4925.9473684210525, "deser_median_ns": 4775.0, "deser_std_ns": 946.6771379849769, "deser_mad_ns": 655.0, "deser_cv": 0.1921817403194102, "deser_min_ns": 2503.0, "deser_max_ns": 7334.0, "deser_p5_ns": 3825.9, "deser_p25_ns": 4171.0, "deser_p50_ns": 4775.0, "deser_p75_ns": 5609.0, "deser_p95_ns": 6528.1, "deser_p99_ns": 7292.64, "deser_ci_low_ns": 4746.112368421052, "deser_ci_high_ns": 5116.888157894737, "total_mean_ns": 10416.021052631579, "total_median_ns": 9707.0, "total_std_ns": 2531.837315279446, "total_mad_ns": 1460.0, "total_cv": 0.24307144757928312, "total_min_ns": 4226.0, "total_max_ns": 17156.0, "total_p5_ns": 7665.8, "total_p25_ns": 8422.5, "total_p50_ns": 9707.0, "total_p75_ns": 12025.0, "total_p95_ns": 15112.599999999999, "total_p99_ns": 16019.540000000003, "total_ci_low_ns": 9928.081315789474, "total_ci_high_ns": 10939.536842105263, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 0.9829787234042553, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.9749068568854207}, {"serializer": "MS Bond Json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 3625.430107526882, "avg_time_deser_ns": 4323.086021505376, "avg_time_total_ns": 7948.5161290322585, "median_size_bytes": 410.0, "avg_ops_per_sec": 125809.64594730604, "min_ops_per_sec": 103273.77878756584, "max_ops_per_sec": 161969.54972465176, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 3625.430107526882, "ser_median_ns": 3553.0, "ser_std_ns": 414.1433641146574, "ser_mad_ns": 292.0, "ser_cv": 0.11423289150019468, "ser_min_ns": 2732.0, "ser_max_ns": 4994.0, "ser_p5_ns": 3120.4, "ser_p25_ns": 3306.0, "ser_p50_ns": 3553.0, "ser_p75_ns": 3873.0, "ser_p95_ns": 4348.0, "ser_p99_ns": 4596.5599999999995, "ser_ci_low_ns": 3542.0139784946236, "ser_ci_high_ns": 3710.445430107527, "deser_mean_ns": 4323.086021505376, "deser_median_ns": 4280.0, "deser_std_ns": 459.4505143413867, "deser_mad_ns": 326.0, "deser_cv": 0.10627836505122278, "deser_min_ns": 3176.0, "deser_max_ns": 5326.0, "deser_p5_ns": 3650.6, "deser_p25_ns": 4009.0, "deser_p50_ns": 4280.0, "deser_p75_ns": 4666.0, "deser_p95_ns": 5056.599999999999, "deser_p99_ns": 5168.679999999999, "deser_ci_low_ns": 4228.154569892473, "deser_ci_high_ns": 4416.351075268817, "total_mean_ns": 7948.5161290322585, "total_median_ns": 7896.0, "total_std_ns": 689.7740589891866, "total_mad_ns": 469.0, "total_cv": 0.08678023014506576, "total_min_ns": 6174.0, "total_max_ns": 9683.0, "total_p5_ns": 6965.2, "total_p25_ns": 7499.0, "total_p50_ns": 7896.0, "total_p75_ns": 8365.0, "total_p95_ns": 9116.6, "total_p99_ns": 9660.92, "total_ci_low_ns": 7804.300537634408, "total_ci_high_ns": 8086.026075268817, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 0.9970258522077328, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.362147085658516}, {"serializer": "NetJSON", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.0.0", "avg_time_ser_ns": 2943.15625, "avg_time_deser_ns": 3592.34375, "avg_time_total_ns": 6535.5, "median_size_bytes": 410.0, "avg_ops_per_sec": 153010.48121796342, "min_ops_per_sec": 103669.91499066971, "max_ops_per_sec": 203915.17128874388, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 2943.15625, "ser_median_ns": 2625.0, "ser_std_ns": 790.559419893014, "ser_mad_ns": 359.5, "ser_cv": 0.26860939506457193, "ser_min_ns": 2005.0, "ser_max_ns": 4898.0, "ser_p5_ns": 2170.5, "ser_p25_ns": 2317.0, "ser_p50_ns": 2625.0, "ser_p75_ns": 3517.25, "ser_p95_ns": 4405.25, "ser_p99_ns": 4747.9, "ser_ci_low_ns": 2794.5908854166664, "ser_ci_high_ns": 3105.9203125, "deser_mean_ns": 3592.34375, "deser_median_ns": 3453.0, "deser_std_ns": 576.8174540779322, "deser_mad_ns": 339.5, "deser_cv": 0.16056855752680466, "deser_min_ns": 2786.0, "deser_max_ns": 5213.0, "deser_p5_ns": 2897.75, "deser_p25_ns": 3162.75, "deser_p50_ns": 3453.0, "deser_p75_ns": 3934.75, "deser_p95_ns": 4834.0, "deser_p99_ns": 5211.1, "deser_ci_low_ns": 3481.5364583333335, "deser_ci_high_ns": 3707.6270833333333, "total_mean_ns": 6535.5, "total_median_ns": 6102.0, "total_std_ns": 1285.1649003348293, "total_mad_ns": 665.0, "total_cv": 0.19664369984466826, "total_min_ns": 4904.0, "total_max_ns": 9646.0, "total_p5_ns": 5093.5, "total_p25_ns": 5502.25, "total_p50_ns": 6102.0, "total_p75_ns": 7254.0, "total_p95_ns": 8939.0, "total_p99_ns": 9589.0, "total_ci_low_ns": 6285.5354166666675, "total_ci_high_ns": 6794.88359375, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 0.8083998226950354, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.6131275913618455}, {"serializer": "GroBuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.9.2", "avg_time_ser_ns": 2330.021505376344, "avg_time_deser_ns": 3024.064516129032, "avg_time_total_ns": 5354.086021505376, "median_size_bytes": 1052.0, "avg_ops_per_sec": 186773.24121864518, "min_ops_per_sec": 125297.5817566721, "max_ops_per_sec": 257201.64609053498, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 2330.021505376344, "ser_median_ns": 2165.0, "ser_std_ns": 532.2086257020101, "ser_mad_ns": 272.0, "ser_cv": 0.22841361097911753, "ser_min_ns": 1382.0, "ser_max_ns": 3740.0, "ser_p5_ns": 1741.0, "ser_p25_ns": 1968.0, "ser_p50_ns": 2165.0, "ser_p75_ns": 2539.0, "ser_p95_ns": 3414.5999999999995, "ser_p99_ns": 3658.12, "ser_ci_low_ns": 2224.1793010752685, "ser_ci_high_ns": 2439.425537634408, "deser_mean_ns": 3024.064516129032, "deser_median_ns": 2907.0, "deser_std_ns": 487.7374963621761, "deser_mad_ns": 296.0, "deser_cv": 0.16128541364140828, "deser_min_ns": 1995.0, "deser_max_ns": 4606.0, "deser_p5_ns": 2437.6, "deser_p25_ns": 2647.0, "deser_p50_ns": 2907.0, "deser_p75_ns": 3335.0, "deser_p95_ns": 3900.7999999999997, "deser_p99_ns": 4409.12, "deser_ci_low_ns": 2926.6803763440857, "deser_ci_high_ns": 3121.546505376344, "total_mean_ns": 5354.086021505376, "total_median_ns": 5055.0, "total_std_ns": 904.4225115931109, "total_mad_ns": 440.0, "total_cv": 0.16892192392135302, "total_min_ns": 3888.0, "total_max_ns": 7981.0, "total_p5_ns": 4256.6, "total_p25_ns": 4670.0, "total_p50_ns": 5055.0, "total_p75_ns": 5788.0, "total_p95_ns": 7073.999999999998, "total_p99_ns": 7929.48, "total_ci_low_ns": 5182.2118279569895, "total_ci_high_ns": 5552.618817204301, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 0.349691146190803, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.625357786470793}, {"serializer": "fastJson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "2.4.0.4", "avg_time_ser_ns": 6651.968421052631, "avg_time_deser_ns": 7882.9157894736845, "avg_time_total_ns": 14534.884210526316, "median_size_bytes": 563.0, "avg_ops_per_sec": 68799.99768252639, "min_ops_per_sec": 49813.200498132006, "max_ops_per_sec": 115580.2126675913, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 6651.968421052631, "ser_median_ns": 6497.0, "ser_std_ns": 1080.3975672165689, "ser_mad_ns": 622.0, "ser_cv": 0.16241772342112276, "ser_min_ns": 4003.0, "ser_max_ns": 9458.0, "ser_p5_ns": 5424.7, "ser_p25_ns": 5879.5, "ser_p50_ns": 6497.0, "ser_p75_ns": 7120.0, "ser_p95_ns": 8762.099999999999, "ser_p99_ns": 9286.92, "ser_ci_low_ns": 6426.102105263158, "ser_ci_high_ns": 6857.488684210526, "deser_mean_ns": 7882.9157894736845, "deser_median_ns": 7713.0, "deser_std_ns": 1165.3576171338436, "deser_mad_ns": 770.0, "deser_cv": 0.14783332059565876, "deser_min_ns": 4649.0, "deser_max_ns": 10617.0, "deser_p5_ns": 6470.8, "deser_p25_ns": 7135.0, "deser_p50_ns": 7713.0, "deser_p75_ns": 8720.5, "deser_p95_ns": 10060.0, "deser_p99_ns": 10273.900000000001, "deser_ci_low_ns": 7663.496315789474, "deser_ci_high_ns": 8117.863157894736, "total_mean_ns": 14534.884210526316, "total_median_ns": 14080.0, "total_std_ns": 2151.2074534378976, "total_mad_ns": 1261.0, "total_cv": 0.14800306781116085, "total_min_ns": 8652.0, "total_max_ns": 20075.0, "total_p5_ns": 12025.1, "total_p25_ns": 12972.5, "total_p50_ns": 14080.0, "total_p75_ns": 15739.5, "total_p95_ns": 18595.7, "total_p99_ns": 19360.600000000002, "total_ci_low_ns": 14103.25052631579, "total_ci_high_ns": 14972.987368421052, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.999771015780973}, {"serializer": "Migrant", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "0.13.0.0", "avg_time_ser_ns": 13646.16304347826, "avg_time_deser_ns": 36856.15217391304, "avg_time_total_ns": 50502.315217391304, "median_size_bytes": 1376.0, "avg_ops_per_sec": 19801.072400253714, "min_ops_per_sec": 14114.12682954369, "max_ops_per_sec": 29909.672788179698, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 13646.16304347826, "ser_median_ns": 12781.5, "ser_std_ns": 2466.9796467584215, "ser_mad_ns": 1339.0, "ser_cv": 0.18078192667772897, "ser_min_ns": 9558.0, "ser_max_ns": 20391.0, "ser_p5_ns": 10785.95, "ser_p25_ns": 11936.0, "ser_p50_ns": 12781.5, "ser_p75_ns": 15220.0, "ser_p95_ns": 18672.15, "ser_p99_ns": 19929.63, "ser_ci_low_ns": 13151.735597826088, "ser_ci_high_ns": 14153.719836956521, "deser_mean_ns": 36856.15217391304, "deser_median_ns": 35862.5, "deser_std_ns": 6277.936687599812, "deser_mad_ns": 4183.0, "deser_cv": 0.17033619402199465, "deser_min_ns": 23876.0, "deser_max_ns": 53134.0, "deser_p5_ns": 29203.5, "deser_p25_ns": 32068.0, "deser_p50_ns": 35862.5, "deser_p75_ns": 41088.0, "deser_p95_ns": 48862.05, "deser_p99_ns": 51162.030000000006, "deser_ci_low_ns": 35635.01603260869, "deser_ci_high_ns": 38097.34619565217, "total_mean_ns": 50502.315217391304, "total_median_ns": 48399.0, "total_std_ns": 8476.882156627418, "total_mad_ns": 5265.5, "total_cv": 0.16785135731179834, "total_min_ns": 33434.0, "total_max_ns": 70851.0, "total_p5_ns": 40624.8, "total_p25_ns": 44366.0, "total_p50_ns": 48399.0, "total_p75_ns": 55956.25, "total_p95_ns": 66065.95, "total_p99_ns": 70689.02, "total_ci_low_ns": 48803.118749999994, "total_ci_high_ns": 52237.94619565218, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.599950118166195}, {"serializer": "MemoryPack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 5356.574468085107, "avg_time_deser_ns": 3735.425531914894, "avg_time_total_ns": 9092.0, "median_size_bytes": 752.0, "avg_ops_per_sec": 109986.80158380994, "min_ops_per_sec": 60942.16588457554, "max_ops_per_sec": 197433.36623889438, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 5356.574468085107, "ser_median_ns": 4821.0, "ser_std_ns": 1780.1666980621503, "ser_mad_ns": 982.5, "ser_cv": 0.33233304393853275, "ser_min_ns": 2558.0, "ser_max_ns": 10608.0, "ser_p5_ns": 3524.2, "ser_p25_ns": 3874.75, "ser_p50_ns": 4821.0, "ser_p75_ns": 6528.0, "ser_p95_ns": 8828.699999999997, "ser_p99_ns": 10587.539999999999, "ser_ci_low_ns": 4999.795212765957, "ser_ci_high_ns": 5734.449202127659, "deser_mean_ns": 3735.425531914894, "deser_median_ns": 3513.5, "deser_std_ns": 788.6134489179285, "deser_mad_ns": 423.0, "deser_cv": 0.2111174328547412, "deser_min_ns": 2507.0, "deser_max_ns": 6055.0, "deser_p5_ns": 2929.95, "deser_p25_ns": 3125.25, "deser_p50_ns": 3513.5, "deser_p75_ns": 4075.75, "deser_p95_ns": 5399.45, "deser_p99_ns": 5818.779999999998, "deser_ci_low_ns": 3582.067819148936, "deser_ci_high_ns": 3902.691755319149, "total_mean_ns": 9092.0, "total_median_ns": 8341.5, "total_std_ns": 2424.1960600649463, "total_mad_ns": 1198.0, "total_cv": 0.26662957105861707, "total_min_ns": 5065.0, "total_max_ns": 16409.0, "total_p5_ns": 6475.75, "total_p25_ns": 7383.25, "total_p50_ns": 8341.5, "total_p75_ns": 10552.25, "total_p95_ns": 13723.749999999998, "total_p99_ns": 15737.539999999995, "total_ci_low_ns": 8626.672074468084, "total_ci_high_ns": 9592.672074468084, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 0.9855138071525578, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.3665367682042886}, {"serializer": "YamlDotNet", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "17.1.0", "avg_time_ser_ns": 70112.2947368421, "avg_time_deser_ns": 50475.336842105266, "avg_time_total_ns": 120587.63157894737, "median_size_bytes": 406.0, "avg_ops_per_sec": 8292.724443678217, "min_ops_per_sec": 6240.677987256536, "max_ops_per_sec": 10174.596068536079, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 70112.2947368421, "ser_median_ns": 66825.0, "ser_std_ns": 9506.653854430102, "ser_mad_ns": 5458.0, "ser_cv": 0.1355918229479175, "ser_min_ns": 55947.0, "ser_max_ns": 96090.0, "ser_p5_ns": 59134.5, "ser_p25_ns": 62778.0, "ser_p50_ns": 66825.0, "ser_p75_ns": 75109.5, "ser_p95_ns": 88133.9, "ser_p99_ns": 95455.5, "ser_ci_low_ns": 68196.58789473685, "ser_ci_high_ns": 72037.25657894736, "deser_mean_ns": 50475.336842105266, "deser_median_ns": 48604.0, "deser_std_ns": 5354.767453501135, "deser_mad_ns": 2467.0, "deser_cv": 0.10608680968790131, "deser_min_ns": 41809.0, "deser_max_ns": 64496.0, "deser_p5_ns": 44461.8, "deser_p25_ns": 46793.0, "deser_p50_ns": 48604.0, "deser_p75_ns": 53353.0, "deser_p95_ns": 60888.1, "deser_p99_ns": 64169.82, "deser_ci_low_ns": 49458.52657894736, "deser_ci_high_ns": 51597.80657894737, "total_mean_ns": 120587.63157894737, "total_median_ns": 115845.0, "total_std_ns": 14428.418791039801, "total_mad_ns": 8093.0, "total_cv": 0.11965090119208185, "total_min_ns": 98284.0, "total_max_ns": 160239.0, "total_p5_ns": 103779.4, "total_p25_ns": 109929.5, "total_p50_ns": 115845.0, "total_p75_ns": 130911.5, "total_p95_ns": 148482.6, "total_p99_ns": 156430.12, "total_ci_low_ns": 117740.49684210528, "total_ci_high_ns": 123504.60736842106, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.255369760849808}, {"serializer": "MS DataContract Json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 8179.904255319149, "avg_time_deser_ns": 16640.212765957447, "avg_time_total_ns": 24820.117021276597, "median_size_bytes": 548.0, "avg_ops_per_sec": 40289.89867947714, "min_ops_per_sec": 29902.517791998085, "max_ops_per_sec": 52868.09410520751, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 8179.904255319149, "ser_median_ns": 7493.0, "ser_std_ns": 1847.4955094400234, "ser_mad_ns": 1023.0, "ser_cv": 0.2258578403578076, "ser_min_ns": 5040.0, "ser_max_ns": 13172.0, "ser_p5_ns": 6146.6, "ser_p25_ns": 6866.25, "ser_p50_ns": 7493.0, "ser_p75_ns": 9389.75, "ser_p95_ns": 11823.449999999997, "ser_p99_ns": 12743.269999999997, "ser_ci_low_ns": 7822.746542553192, "ser_ci_high_ns": 8561.800531914894, "deser_mean_ns": 16640.212765957447, "deser_median_ns": 16135.5, "deser_std_ns": 1622.8067804630957, "deser_mad_ns": 832.0, "deser_cv": 0.09752319896912823, "deser_min_ns": 13800.0, "deser_max_ns": 21174.0, "deser_p5_ns": 14886.3, "deser_p25_ns": 15494.5, "deser_p50_ns": 16135.5, "deser_p75_ns": 17631.5, "deser_p95_ns": 19982.75, "deser_p99_ns": 20988.0, "deser_ci_low_ns": 16320.08324468085, "deser_ci_high_ns": 16969.39654255319, "total_mean_ns": 24820.117021276597, "total_median_ns": 23471.0, "total_std_ns": 3222.89717008695, "total_mad_ns": 1690.5, "total_cv": 0.12985020043717682, "total_min_ns": 18915.0, "total_max_ns": 33442.0, "total_p5_ns": 21073.45, "total_p25_ns": 22426.25, "total_p50_ns": 23471.0, "total_p75_ns": 27147.5, "total_p95_ns": 30578.599999999995, "total_p99_ns": 33319.24, "total_ci_low_ns": 24163.633776595747, "total_ci_high_ns": 25458.161170212767, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.51707935551252}, {"serializer": "SharpYaml", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "3.13.0", "avg_time_ser_ns": 36735.31460674157, "avg_time_deser_ns": 36769.089887640446, "avg_time_total_ns": 73504.40449438202, "median_size_bytes": 470.0, "avg_ops_per_sec": 13604.626918328826, "min_ops_per_sec": 10496.042991792094, "max_ops_per_sec": 17603.15448528376, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 36735.31460674157, "ser_median_ns": 35416.0, "ser_std_ns": 6978.162894141307, "ser_mad_ns": 4990.0, "ser_cv": 0.18995789116940603, "ser_min_ns": 25483.0, "ser_max_ns": 55159.0, "ser_p5_ns": 28267.2, "ser_p25_ns": 31292.0, "ser_p50_ns": 35416.0, "ser_p75_ns": 40737.0, "ser_p95_ns": 49710.799999999996, "ser_p99_ns": 54879.16, "ser_ci_low_ns": 35342.552247191015, "ser_ci_high_ns": 38154.21123595505, "deser_mean_ns": 36769.089887640446, "deser_median_ns": 36340.0, "deser_std_ns": 2080.736624592191, "deser_mad_ns": 1179.0, "deser_cv": 0.05658928820241508, "deser_min_ns": 31325.0, "deser_max_ns": 42723.0, "deser_p5_ns": 34202.4, "deser_p25_ns": 35347.0, "deser_p50_ns": 36340.0, "deser_p75_ns": 37877.0, "deser_p95_ns": 40323.799999999996, "deser_p99_ns": 42086.76, "deser_ci_low_ns": 36344.76629213483, "deser_ci_high_ns": 37194.55926966292, "total_mean_ns": 73504.40449438202, "total_median_ns": 72208.0, "total_std_ns": 8605.764200283938, "total_mad_ns": 5234.0, "total_cv": 0.11707821129197342, "total_min_ns": 56808.0, "total_max_ns": 95274.0, "total_p5_ns": 62841.4, "total_p25_ns": 67331.0, "total_p50_ns": 72208.0, "total_p75_ns": 77685.0, "total_p95_ns": 89224.2, "total_p99_ns": 94390.48000000001, "total_ci_low_ns": 71788.74831460674, "total_ci_high_ns": 75348.33764044943, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.35274689799145}, {"serializer": "BinaryPack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.0.3", "avg_time_ser_ns": 4048.778947368421, "avg_time_deser_ns": 3104.6, "avg_time_total_ns": 7153.378947368421, "median_size_bytes": 584.0, "avg_ops_per_sec": 139794.07596851542, "min_ops_per_sec": 104701.07842110774, "max_ops_per_sec": 195503.4213098729, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 4048.778947368421, "ser_median_ns": 3937.0, "ser_std_ns": 708.0706506843666, "ser_mad_ns": 405.0, "ser_cv": 0.17488498628570232, "ser_min_ns": 2626.0, "ser_max_ns": 5858.0, "ser_p5_ns": 3196.1, "ser_p25_ns": 3552.5, "ser_p50_ns": 3937.0, "ser_p75_ns": 4394.5, "ser_p95_ns": 5646.999999999999, "ser_p99_ns": 5819.46, "ser_ci_low_ns": 3909.3849999999998, "ser_ci_high_ns": 4197.291052631579, "deser_mean_ns": 3104.6, "deser_median_ns": 3013.0, "deser_std_ns": 312.3032963901761, "deser_mad_ns": 163.0, "deser_cv": 0.10059373071898993, "deser_min_ns": 2489.0, "deser_max_ns": 3929.0, "deser_p5_ns": 2752.7, "deser_p25_ns": 2882.5, "deser_p50_ns": 3013.0, "deser_p75_ns": 3276.0, "deser_p95_ns": 3707.1, "deser_p99_ns": 3845.34, "deser_ci_low_ns": 3042.291842105263, "deser_ci_high_ns": 3168.982105263158, "total_mean_ns": 7153.378947368421, "total_median_ns": 6918.0, "total_std_ns": 906.5228069674098, "total_mad_ns": 439.0, "total_cv": 0.12672651814439392, "total_min_ns": 5115.0, "total_max_ns": 9551.0, "total_p5_ns": 6015.8, "total_p25_ns": 6538.5, "total_p50_ns": 6918.0, "total_p75_ns": 7610.5, "total_p95_ns": 8980.699999999999, "total_p99_ns": 9441.02, "total_ci_low_ns": 6989.004473684211, "total_ci_high_ns": 7335.221315789474, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 0.9621500559910414, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.8004800782821024}, {"serializer": "ExtendedXmlSerializer", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "3.10.0.0", "avg_time_ser_ns": 18750.13829787234, "avg_time_deser_ns": 22735.989361702126, "avg_time_total_ns": 41486.12765957447, "median_size_bytes": 764.0, "avg_ops_per_sec": 24104.44301299383, "min_ops_per_sec": 14710.425278394798, "max_ops_per_sec": 41147.183475291116, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 18750.13829787234, "ser_median_ns": 16838.0, "ser_std_ns": 4876.236735547009, "ser_mad_ns": 1978.5, "ser_cv": 0.26006404102631797, "ser_min_ns": 10824.0, "ser_max_ns": 32648.0, "ser_p5_ns": 14085.15, "ser_p25_ns": 15182.5, "ser_p50_ns": 16838.0, "ser_p75_ns": 21132.5, "ser_p95_ns": 28509.44999999999, "ser_p99_ns": 32418.289999999997, "ser_ci_low_ns": 17797.608510638296, "ser_ci_high_ns": 19761.65505319149, "deser_mean_ns": 22735.989361702126, "deser_median_ns": 21132.0, "deser_std_ns": 5208.459823313261, "deser_mad_ns": 2737.0, "deser_cv": 0.2290843710582793, "deser_min_ns": 13479.0, "deser_max_ns": 36679.0, "deser_p5_ns": 17159.45, "deser_p25_ns": 18944.25, "deser_p50_ns": 21132.0, "deser_p75_ns": 25470.0, "deser_p95_ns": 32345.649999999998, "deser_p99_ns": 35655.06999999999, "deser_ci_low_ns": 21667.165159574466, "deser_ci_high_ns": 23754.05132978723, "total_mean_ns": 41486.12765957447, "total_median_ns": 37872.0, "total_std_ns": 9953.609597856375, "total_mad_ns": 4761.5, "total_cv": 0.23992621532511746, "total_min_ns": 24303.0, "total_max_ns": 67979.0, "total_p5_ns": 31663.6, "total_p25_ns": 33922.0, "total_p50_ns": 37872.0, "total_p75_ns": 46353.0, "total_p95_ns": 61749.59999999999, "total_p99_ns": 66579.34999999999, "total_ci_low_ns": 39581.12553191489, "total_ci_high_ns": 43473.29867021277, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.172020237897832}, {"serializer": "System.Text.Json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "8.0.0.0", "avg_time_ser_ns": 5469.136842105263, "avg_time_deser_ns": 5857.421052631579, "avg_time_total_ns": 11326.557894736841, "median_size_bytes": 548.0, "avg_ops_per_sec": 88288.07562663624, "min_ops_per_sec": 54984.32946610216, "max_ops_per_sec": 128008.19252432155, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 5469.136842105263, "ser_median_ns": 4795.0, "ser_std_ns": 1574.2635333908966, "ser_mad_ns": 669.0, "ser_cv": 0.28784497057581526, "ser_min_ns": 3204.0, "ser_max_ns": 9389.0, "ser_p5_ns": 3971.9, "ser_p25_ns": 4395.0, "ser_p50_ns": 4795.0, "ser_p75_ns": 6104.5, "ser_p95_ns": 8524.3, "ser_p99_ns": 9158.7, "ser_ci_low_ns": 5160.82552631579, "ser_ci_high_ns": 5795.947368421052, "deser_mean_ns": 5857.421052631579, "deser_median_ns": 5467.0, "deser_std_ns": 1125.4420368350723, "deser_mad_ns": 563.0, "deser_cv": 0.19213951442494337, "deser_min_ns": 4025.0, "deser_max_ns": 9044.0, "deser_p5_ns": 4689.2, "deser_p25_ns": 5005.0, "deser_p50_ns": 5467.0, "deser_p75_ns": 6621.5, "deser_p95_ns": 7921.999999999999, "deser_p99_ns": 8812.76, "deser_ci_low_ns": 5626.379210526316, "deser_ci_high_ns": 6093.016315789474, "total_mean_ns": 11326.557894736841, "total_median_ns": 10313.0, "total_std_ns": 2584.5326863320815, "total_mad_ns": 1255.0, "total_cv": 0.22818341727040015, "total_min_ns": 7812.0, "total_max_ns": 18187.0, "total_p5_ns": 8687.7, "total_p25_ns": 9529.0, "total_p50_ns": 10313.0, "total_p75_ns": 12766.0, "total_p95_ns": 16171.4, "total_p99_ns": 17736.74, "total_ci_low_ns": 10812.80105263158, "total_ci_high_ns": 11860.01605263158, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.39520875983488}, {"serializer": "FsPicklerJson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 13607.954022988506, "avg_time_deser_ns": 13792.3908045977, "avg_time_total_ns": 27400.344827586207, "median_size_bytes": 960.0, "avg_ops_per_sec": 36495.891066057564, "min_ops_per_sec": 25698.352735589648, "max_ops_per_sec": 49990.00199960008, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 13607.954022988506, "ser_median_ns": 12907.0, "ser_std_ns": 2706.7148581708657, "ser_mad_ns": 1383.0, "ser_cv": 0.19890681976131716, "ser_min_ns": 8804.0, "ser_max_ns": 21525.0, "ser_p5_ns": 9665.5, "ser_p25_ns": 12075.0, "ser_p50_ns": 12907.0, "ser_p75_ns": 14863.5, "ser_p95_ns": 18511.3, "ser_p99_ns": 21157.78, "ser_ci_low_ns": 13058.077586206897, "ser_ci_high_ns": 14191.230747126436, "deser_mean_ns": 13792.3908045977, "deser_median_ns": 13606.0, "deser_std_ns": 1350.5166311738822, "deser_mad_ns": 856.0, "deser_cv": 0.0979175148317061, "deser_min_ns": 10913.0, "deser_max_ns": 17815.0, "deser_p5_ns": 11942.5, "deser_p25_ns": 12801.5, "deser_p50_ns": 13606.0, "deser_p75_ns": 14569.5, "deser_p95_ns": 16326.7, "deser_p99_ns": 17470.14, "deser_ci_low_ns": 13516.840804597701, "deser_ci_high_ns": 14067.337068965518, "total_mean_ns": 27400.344827586207, "total_median_ns": 26449.0, "total_std_ns": 3942.39384198138, "total_mad_ns": 1884.0, "total_cv": 0.1438811761964486, "total_min_ns": 20004.0, "total_max_ns": 38913.0, "total_p5_ns": 21269.1, "total_p25_ns": 25098.0, "total_p50_ns": 26449.0, "total_p75_ns": 28945.5, "total_p95_ns": 34944.7, "total_p99_ns": 37876.7, "total_ci_low_ns": 26595.023850574715, "total_ci_high_ns": 28247.00775862069, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.0736477709611}, {"serializer": "MS Bond Compact", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 2834.5108695652175, "avg_time_deser_ns": 2502.8478260869565, "avg_time_total_ns": 5337.358695652174, "median_size_bytes": 452.0, "avg_ops_per_sec": 187358.59008587946, "min_ops_per_sec": 134102.1858656296, "max_ops_per_sec": 277469.47835738066, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 2834.5108695652175, "ser_median_ns": 2742.0, "ser_std_ns": 492.81250462596734, "ser_mad_ns": 272.5, "ser_cv": 0.1738615681165334, "ser_min_ns": 1825.0, "ser_max_ns": 4094.0, "ser_p5_ns": 2259.5, "ser_p25_ns": 2518.25, "ser_p50_ns": 2742.0, "ser_p75_ns": 3094.0, "ser_p95_ns": 3831.1000000000004, "ser_p99_ns": 4040.3100000000004, "ser_ci_low_ns": 2734.167934782609, "ser_ci_high_ns": 2937.8972826086956, "deser_mean_ns": 2502.8478260869565, "deser_median_ns": 2409.0, "deser_std_ns": 359.15783468414327, "deser_mad_ns": 202.5, "deser_cv": 0.14349966903328026, "deser_min_ns": 1779.0, "deser_max_ns": 3363.0, "deser_p5_ns": 2041.8, "deser_p25_ns": 2244.0, "deser_p50_ns": 2409.0, "deser_p75_ns": 2773.25, "deser_p95_ns": 3132.6000000000004, "deser_p99_ns": 3274.7300000000005, "deser_ci_low_ns": 2431.4692934782606, "deser_ci_high_ns": 2578.9524456521735, "total_mean_ns": 5337.358695652174, "total_median_ns": 5296.0, "total_std_ns": 696.7964935618133, "total_mad_ns": 444.0, "total_cv": 0.13055080861052595, "total_min_ns": 3604.0, "total_max_ns": 7457.0, "total_p5_ns": 4403.15, "total_p25_ns": 4883.5, "total_p50_ns": 5296.0, "total_p75_ns": 5733.25, "total_p95_ns": 6509.5, "total_p99_ns": 7178.540000000001, "total_ci_low_ns": 5201.160054347826, "total_ci_high_ns": 5484.34972826087, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 0.41107770582793707, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.6963289636478304}, {"serializer": "SpanJson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "4.2.1", "avg_time_ser_ns": 2539.191489361702, "avg_time_deser_ns": 2299.255319148936, "avg_time_total_ns": 4838.446808510638, "median_size_bytes": 410.0, "avg_ops_per_sec": 206677.89469981135, "min_ops_per_sec": 149700.59880239522, "max_ops_per_sec": 286286.859433152, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 2539.191489361702, "ser_median_ns": 2367.5, "ser_std_ns": 547.9689826516603, "ser_mad_ns": 327.0, "ser_cv": 0.21580451295124964, "ser_min_ns": 1674.0, "ser_max_ns": 4009.0, "ser_p5_ns": 1883.55, "ser_p25_ns": 2118.0, "ser_p50_ns": 2367.5, "ser_p75_ns": 2846.25, "ser_p95_ns": 3583.15, "ser_p99_ns": 3871.3599999999988, "ser_ci_low_ns": 2433.105585106383, "ser_ci_high_ns": 2648.8545212765957, "deser_mean_ns": 2299.255319148936, "deser_median_ns": 2230.0, "deser_std_ns": 305.76257343809834, "deser_mad_ns": 205.5, "deser_cv": 0.13298330589543908, "deser_min_ns": 1631.0, "deser_max_ns": 2986.0, "deser_p5_ns": 1931.0, "deser_p25_ns": 2059.5, "deser_p50_ns": 2230.0, "deser_p75_ns": 2504.75, "deser_p95_ns": 2848.0499999999997, "deser_p99_ns": 2974.84, "deser_ci_low_ns": 2237.2662234042555, "deser_ci_high_ns": 2358.7781914893617, "total_mean_ns": 4838.446808510638, "total_median_ns": 4764.0, "total_std_ns": 729.5986467313968, "total_mad_ns": 515.5, "total_cv": 0.15079191228227648, "total_min_ns": 3493.0, "total_max_ns": 6680.0, "total_p5_ns": 3877.55, "total_p25_ns": 4283.0, "total_p50_ns": 4764.0, "total_p75_ns": 5310.25, "total_p95_ns": 6356.849999999999, "total_p99_ns": 6659.54, "total_ci_low_ns": 4693.45159574468, "total_ci_high_ns": 4992.2178191489365, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "Google.Protobuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "3.35.1", "avg_time_ser_ns": 3643.2127659574467, "avg_time_deser_ns": 4160.404255319149, "avg_time_total_ns": 7803.617021276596, "median_size_bytes": 492.0, "avg_ops_per_sec": 128145.7043923985, "min_ops_per_sec": 88144.5570736007, "max_ops_per_sec": 179565.4516071108, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 3643.2127659574467, "ser_median_ns": 3382.0, "ser_std_ns": 762.6009663079195, "ser_mad_ns": 451.5, "ser_cv": 0.20932100739043877, "ser_min_ns": 2618.0, "ser_max_ns": 5733.0, "ser_p5_ns": 2832.45, "ser_p25_ns": 3072.75, "ser_p50_ns": 3382.0, "ser_p75_ns": 4208.5, "ser_p95_ns": 5123.749999999998, "ser_p99_ns": 5681.849999999999, "ser_ci_low_ns": 3492.686436170213, "ser_ci_high_ns": 3804.0199468085107, "deser_mean_ns": 4160.404255319149, "deser_median_ns": 3994.0, "deser_std_ns": 751.4410717300277, "deser_mad_ns": 457.5, "deser_cv": 0.1806173212060576, "deser_min_ns": 2951.0, "deser_max_ns": 5917.0, "deser_p5_ns": 3259.5, "deser_p25_ns": 3589.0, "deser_p50_ns": 3994.0, "deser_p75_ns": 4559.75, "deser_p95_ns": 5673.3, "deser_p99_ns": 5899.33, "deser_ci_low_ns": 4014.593085106383, "deser_ci_high_ns": 4314.3180851063835, "total_mean_ns": 7803.617021276596, "total_median_ns": 7224.5, "total_std_ns": 1433.6272149813278, "total_mad_ns": 678.5, "total_cv": 0.18371316929989479, "total_min_ns": 5569.0, "total_max_ns": 11345.0, "total_p5_ns": 6187.15, "total_p25_ns": 6784.5, "total_p50_ns": 7224.5, "total_p75_ns": 8692.5, "total_p95_ns": 10701.899999999998, "total_p99_ns": 11240.84, "total_ci_low_ns": 7503.806117021277, "total_ci_high_ns": 8103.623936170213, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 0.9786102308736985, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.5963238480064406}, {"serializer": "Apache.Avro", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.12.1", "avg_time_ser_ns": 7505.235294117647, "avg_time_deser_ns": 7209.447058823529, "avg_time_total_ns": 14714.682352941176, "median_size_bytes": 452.0, "avg_ops_per_sec": 67959.33313505199, "min_ops_per_sec": 47492.40121580547, "max_ops_per_sec": 91759.95595522114, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 7505.235294117647, "ser_median_ns": 7275.0, "ser_std_ns": 1273.8473468297564, "ser_mad_ns": 729.0, "ser_cv": 0.1697278362249556, "ser_min_ns": 4941.0, "ser_max_ns": 11575.0, "ser_p5_ns": 5928.8, "ser_p25_ns": 6625.0, "ser_p50_ns": 7275.0, "ser_p75_ns": 8198.0, "ser_p95_ns": 9893.6, "ser_p99_ns": 11135.679999999998, "ser_ci_low_ns": 7246.453235294117, "ser_ci_high_ns": 7778.637941176471, "deser_mean_ns": 7209.447058823529, "deser_median_ns": 7174.0, "deser_std_ns": 1008.232948634136, "deser_mad_ns": 653.0, "deser_cv": 0.13984885947670225, "deser_min_ns": 5176.0, "deser_max_ns": 10229.0, "deser_p5_ns": 5794.4, "deser_p25_ns": 6521.0, "deser_p50_ns": 7174.0, "deser_p75_ns": 7809.0, "deser_p95_ns": 9178.0, "deser_p99_ns": 9659.479999999998, "deser_ci_low_ns": 6996.056176470588, "deser_ci_high_ns": 7426.208529411764, "total_mean_ns": 14714.682352941176, "total_median_ns": 14295.0, "total_std_ns": 2038.7980423335139, "total_mad_ns": 1294.0, "total_cv": 0.1385553553540351, "total_min_ns": 10898.0, "total_max_ns": 21056.0, "total_p5_ns": 12195.8, "total_p25_ns": 13251.0, "total_p50_ns": 14295.0, "total_p75_ns": 15897.0, "total_p95_ns": 18340.4, "total_p99_ns": 20352.079999999998, "total_ci_low_ns": 14281.718529411764, "total_ci_high_ns": 15144.760294117646, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.552782224201027}, {"serializer": "NetJSON", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.0.0", "avg_time_ser_ns": 4064.537634408602, "avg_time_deser_ns": 4723.8494623655915, "avg_time_total_ns": 8788.387096774193, "median_size_bytes": 410.0, "avg_ops_per_sec": 113786.5218029658, "min_ops_per_sec": 88652.48226950354, "max_ops_per_sec": 153092.46785058174, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 4064.537634408602, "ser_median_ns": 3828.0, "ser_std_ns": 814.449381339263, "ser_mad_ns": 587.0, "ser_cv": 0.20037934313720948, "ser_min_ns": 2771.0, "ser_max_ns": 6481.0, "ser_p5_ns": 3023.2, "ser_p25_ns": 3390.0, "ser_p50_ns": 3828.0, "ser_p75_ns": 4704.0, "ser_p95_ns": 5364.2, "ser_p99_ns": 6133.24, "ser_ci_low_ns": 3900.0209677419357, "ser_ci_high_ns": 4237.947043010753, "deser_mean_ns": 4723.8494623655915, "deser_median_ns": 4774.0, "deser_std_ns": 598.6066420235477, "deser_mad_ns": 444.0, "deser_cv": 0.1267200927532902, "deser_min_ns": 3511.0, "deser_max_ns": 6506.0, "deser_p5_ns": 3730.2, "deser_p25_ns": 4255.0, "deser_p50_ns": 4774.0, "deser_p75_ns": 5132.0, "deser_p95_ns": 5651.799999999999, "deser_p99_ns": 5919.039999999999, "deser_ci_low_ns": 4602.867741935484, "deser_ci_high_ns": 4846.465591397849, "total_mean_ns": 8788.387096774193, "total_median_ns": 8866.0, "total_std_ns": 1268.0554441336208, "total_mad_ns": 1144.0, "total_cv": 0.1442876184412797, "total_min_ns": 6532.0, "total_max_ns": 11280.0, "total_p5_ns": 7044.4, "total_p25_ns": 7675.0, "total_p50_ns": 8866.0, "total_p75_ns": 9866.0, "total_p95_ns": 10862.199999999999, "total_p99_ns": 11189.84, "total_ci_low_ns": 8531.009677419355, "total_ci_high_ns": 9050.48817204301, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 0.9930627818244884, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.5214846261665222}, {"serializer": "Hyperion", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "0.12.2", "avg_time_ser_ns": 6311.688172043011, "avg_time_deser_ns": 5221.0, "avg_time_total_ns": 11532.68817204301, "median_size_bytes": 561.0, "avg_ops_per_sec": 86710.0527719246, "min_ops_per_sec": 61072.43190423842, "max_ops_per_sec": 113122.17194570135, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 6311.688172043011, "ser_median_ns": 6072.0, "ser_std_ns": 929.2297532446431, "ser_mad_ns": 603.0, "ser_cv": 0.14722364728989196, "ser_min_ns": 4805.0, "ser_max_ns": 9068.0, "ser_p5_ns": 5235.0, "ser_p25_ns": 5569.0, "ser_p50_ns": 6072.0, "ser_p75_ns": 6883.0, "ser_p95_ns": 7999.199999999999, "ser_p99_ns": 8476.439999999999, "ser_ci_low_ns": 6135.196505376344, "ser_ci_high_ns": 6500.829301075269, "deser_mean_ns": 5221.0, "deser_median_ns": 5188.0, "deser_std_ns": 955.036216021698, "deser_mad_ns": 740.0, "deser_cv": 0.18292208696067766, "deser_min_ns": 3874.0, "deser_max_ns": 7718.0, "deser_p5_ns": 4031.4, "deser_p25_ns": 4417.0, "deser_p50_ns": 5188.0, "deser_p75_ns": 5893.0, "deser_p95_ns": 7017.0, "deser_p99_ns": 7346.32, "deser_ci_low_ns": 5033.383602150538, "deser_ci_high_ns": 5420.389516129032, "total_mean_ns": 11532.68817204301, "total_median_ns": 11253.0, "total_std_ns": 1824.3140043558876, "total_mad_ns": 1281.0, "total_cv": 0.1581863635902601, "total_min_ns": 8840.0, "total_max_ns": 16374.0, "total_p5_ns": 9320.8, "total_p25_ns": 9989.0, "total_p50_ns": 11253.0, "total_p75_ns": 12534.0, "total_p95_ns": 14711.599999999999, "total_p99_ns": 16161.48, "total_ci_low_ns": 11188.868548387098, "total_ci_high_ns": 11904.086021505374, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.59184396885938}, {"serializer": "FlatSharp", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "7.5.1", "avg_time_ser_ns": 4303.083333333333, "avg_time_deser_ns": 3336.75, "avg_time_total_ns": 7639.833333333333, "median_size_bytes": 654.0, "avg_ops_per_sec": 130892.90778594647, "min_ops_per_sec": 85807.44808649391, "max_ops_per_sec": 200040.00800160033, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 4303.083333333333, "ser_median_ns": 4062.5, "ser_std_ns": 1092.345411600934, "ser_mad_ns": 750.5, "ser_cv": 0.25385179114222767, "ser_min_ns": 2541.0, "ser_max_ns": 7136.0, "ser_p5_ns": 2829.75, "ser_p25_ns": 3443.0, "ser_p50_ns": 4062.5, "ser_p75_ns": 5058.75, "ser_p95_ns": 6295.25, "ser_p99_ns": 6717.049999999998, "ser_ci_low_ns": 4088.6770833333335, "ser_ci_high_ns": 4527.179166666667, "deser_mean_ns": 3336.75, "deser_median_ns": 3064.5, "deser_std_ns": 795.5500182760021, "deser_mad_ns": 479.0, "deser_cv": 0.23842062434284922, "deser_min_ns": 1995.0, "deser_max_ns": 5208.0, "deser_p5_ns": 2297.5, "deser_p25_ns": 2711.25, "deser_p50_ns": 3064.5, "deser_p75_ns": 3982.5, "deser_p95_ns": 4786.5, "deser_p99_ns": 5204.2, "deser_ci_low_ns": 3176.8044270833334, "deser_ci_high_ns": 3500.8890625, "total_mean_ns": 7639.833333333333, "total_median_ns": 7100.5, "total_std_ns": 1811.6758084954713, "total_mad_ns": 1236.0, "total_cv": 0.23713551453942774, "total_min_ns": 4999.0, "total_max_ns": 11654.0, "total_p5_ns": 5378.25, "total_p25_ns": 6056.75, "total_p50_ns": 7100.5, "total_p75_ns": 8990.5, "total_p95_ns": 11106.5, "total_p99_ns": 11576.1, "total_ci_low_ns": 7282.212760416666, "total_ci_high_ns": 8002.529687499999, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 0.8645833333333334, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.9316519797288145}, {"serializer": "MS DataContract Json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 8661.182795698925, "avg_time_deser_ns": 16100.225806451614, "avg_time_total_ns": 24761.40860215054, "median_size_bytes": 410.0, "avg_ops_per_sec": 40385.42459628688, "min_ops_per_sec": 29443.806495303714, "max_ops_per_sec": 58820.0694076819, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 8661.182795698925, "ser_median_ns": 8171.0, "ser_std_ns": 2235.72843370254, "ser_mad_ns": 1526.0, "ser_cv": 0.2581319995708652, "ser_min_ns": 4449.0, "ser_max_ns": 14136.0, "ser_p5_ns": 6100.6, "ser_p25_ns": 6848.0, "ser_p50_ns": 8171.0, "ser_p75_ns": 10302.0, "ser_p95_ns": 12642.399999999998, "ser_p99_ns": 13788.24, "ser_ci_low_ns": 8214.820967741936, "ser_ci_high_ns": 9139.222043010752, "deser_mean_ns": 16100.225806451614, "deser_median_ns": 15850.0, "deser_std_ns": 1714.792642611017, "deser_mad_ns": 1107.0, "deser_cv": 0.10650736599755468, "deser_min_ns": 12552.0, "deser_max_ns": 20432.0, "deser_p5_ns": 13882.4, "deser_p25_ns": 14854.0, "deser_p50_ns": 15850.0, "deser_p75_ns": 17141.0, "deser_p95_ns": 19593.199999999997, "deser_p99_ns": 20050.2, "deser_ci_low_ns": 15772.47876344086, "deser_ci_high_ns": 16452.220430107525, "total_mean_ns": 24761.40860215054, "total_median_ns": 24167.0, "total_std_ns": 3829.0755787462963, "total_mad_ns": 2799.0, "total_cv": 0.1546388430589421, "total_min_ns": 17001.0, "total_max_ns": 33963.0, "total_p5_ns": 20229.0, "total_p25_ns": 21788.0, "total_p50_ns": 24167.0, "total_p75_ns": 27470.0, "total_p95_ns": 32142.6, "total_p99_ns": 33506.68, "total_ci_low_ns": 23958.03360215054, "total_ci_high_ns": 25551.915322580644, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.117320244053108}, {"serializer": "NetSerializer", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "4.1.2", "avg_time_ser_ns": 3337.6236559139784, "avg_time_deser_ns": 2883.1935483870966, "avg_time_total_ns": 6220.817204301075, "median_size_bytes": 372.0, "avg_ops_per_sec": 160750.58423330614, "min_ops_per_sec": 103766.73238559718, "max_ops_per_sec": 220070.42253521126, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 3337.6236559139784, "ser_median_ns": 3120.0, "ser_std_ns": 724.937942081319, "ser_mad_ns": 493.0, "ser_cv": 0.21720182285884512, "ser_min_ns": 2302.0, "ser_max_ns": 5451.0, "ser_p5_ns": 2512.6, "ser_p25_ns": 2751.0, "ser_p50_ns": 3120.0, "ser_p75_ns": 3829.0, "ser_p95_ns": 4532.2, "ser_p99_ns": 5336.0, "ser_ci_low_ns": 3196.030376344086, "ser_ci_high_ns": 3490.9298387096774, "deser_mean_ns": 2883.1935483870966, "deser_median_ns": 2734.0, "deser_std_ns": 505.4258268823067, "deser_mad_ns": 260.0, "deser_cv": 0.17530069292956407, "deser_min_ns": 2180.0, "deser_max_ns": 4332.0, "deser_p5_ns": 2252.4, "deser_p25_ns": 2522.0, "deser_p50_ns": 2734.0, "deser_p75_ns": 3246.0, "deser_p95_ns": 3788.7999999999993, "deser_p99_ns": 4166.4, "deser_ci_low_ns": 2785.400537634409, "deser_ci_high_ns": 2990.041397849462, "total_mean_ns": 6220.817204301075, "total_median_ns": 5790.0, "total_std_ns": 1175.7862304436103, "total_mad_ns": 707.0, "total_cv": 0.18900832347728708, "total_min_ns": 4544.0, "total_max_ns": 9637.0, "total_p5_ns": 4841.8, "total_p25_ns": 5331.0, "total_p50_ns": 5790.0, "total_p75_ns": 6980.0, "total_p95_ns": 8387.0, "total_p99_ns": 9490.72, "total_ci_low_ns": 5995.977956989247, "total_ci_high_ns": 6462.50188172043, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 0.6620418545496589, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.303872585441411}, {"serializer": "MS Bond Compact", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 6420.579545454545, "avg_time_deser_ns": 5381.454545454545, "avg_time_total_ns": 11802.03409090909, "median_size_bytes": 339.0, "avg_ops_per_sec": 84731.15670546006, "min_ops_per_sec": 67010.65469409636, "max_ops_per_sec": 102259.94477962982, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 6420.579545454545, "ser_median_ns": 6398.0, "ser_std_ns": 715.414624923068, "ser_mad_ns": 435.5, "ser_cv": 0.1114252412665063, "ser_min_ns": 4715.0, "ser_max_ns": 8418.0, "ser_p5_ns": 5516.7, "ser_p25_ns": 5952.75, "ser_p50_ns": 6398.0, "ser_p75_ns": 6829.75, "ser_p95_ns": 7845.999999999998, "ser_p99_ns": 8215.289999999999, "ser_ci_low_ns": 6278.278125, "ser_ci_high_ns": 6567.560227272727, "deser_mean_ns": 5381.454545454545, "deser_median_ns": 5374.0, "deser_std_ns": 494.35802813254827, "deser_mad_ns": 301.5, "deser_cv": 0.09186327301604891, "deser_min_ns": 4213.0, "deser_max_ns": 6570.0, "deser_p5_ns": 4547.95, "deser_p25_ns": 5086.75, "deser_p50_ns": 5374.0, "deser_p75_ns": 5683.0, "deser_p95_ns": 6128.05, "deser_p99_ns": 6559.5599999999995, "deser_ci_low_ns": 5278.853693181819, "deser_ci_high_ns": 5478.836931818181, "total_mean_ns": 11802.03409090909, "total_median_ns": 11815.0, "total_std_ns": 1094.3611840353724, "total_mad_ns": 798.0, "total_cv": 0.09272648897687395, "total_min_ns": 9779.0, "total_max_ns": 14923.0, "total_p5_ns": 10064.35, "total_p25_ns": 10987.75, "total_p50_ns": 11815.0, "total_p75_ns": 12481.5, "total_p95_ns": 13765.749999999996, "total_p99_ns": 14348.799999999997, "total_ci_low_ns": 11582.06903409091, "total_ci_high_ns": 12021.816193181818, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.781600510498348}, {"serializer": "SharpSerializer", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 18152.896551724138, "avg_time_deser_ns": 37027.7816091954, "avg_time_total_ns": 55180.67816091954, "median_size_bytes": 1503.0, "avg_ops_per_sec": 18122.285432661232, "min_ops_per_sec": 14078.756564220248, "max_ops_per_sec": 22159.19163268924, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 18152.896551724138, "ser_median_ns": 17668.0, "ser_std_ns": 2127.4957712333717, "ser_mad_ns": 1218.0, "ser_cv": 0.11719869416824859, "ser_min_ns": 14147.0, "ser_max_ns": 24918.0, "ser_p5_ns": 15579.5, "ser_p25_ns": 16685.5, "ser_p50_ns": 17668.0, "ser_p75_ns": 18976.0, "ser_p95_ns": 21943.0, "ser_p99_ns": 24795.88, "ser_ci_low_ns": 17735.166091954023, "ser_ci_high_ns": 18600.48477011494, "deser_mean_ns": 37027.7816091954, "deser_median_ns": 36801.0, "deser_std_ns": 3250.79191935037, "deser_mad_ns": 2230.0, "deser_cv": 0.08779332107065996, "deser_min_ns": 30320.0, "deser_max_ns": 46111.0, "deser_p5_ns": 31932.5, "deser_p25_ns": 34732.5, "deser_p50_ns": 36801.0, "deser_p75_ns": 39146.0, "deser_p95_ns": 42731.4, "deser_p99_ns": 45491.8, "deser_ci_low_ns": 36327.08793103448, "deser_ci_high_ns": 37715.341091954026, "total_mean_ns": 55180.67816091954, "total_median_ns": 54469.0, "total_std_ns": 5200.3343597652165, "total_mad_ns": 3381.0, "total_cv": 0.09424194361294086, "total_min_ns": 45128.0, "total_max_ns": 71029.0, "total_p5_ns": 48152.8, "total_p25_ns": 51802.0, "total_p50_ns": 54469.0, "total_p75_ns": 58149.5, "total_p95_ns": 64498.9, "total_p99_ns": 70287.68000000001, "total_ci_low_ns": 54037.93908045977, "total_ci_high_ns": 56281.497413793106, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.629873280433094}, {"serializer": "Json.Net (Helper)", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 7901.897727272727, "avg_time_deser_ns": 7181.534090909091, "avg_time_total_ns": 15083.431818181818, "median_size_bytes": 420.0, "avg_ops_per_sec": 66297.90965704393, "min_ops_per_sec": 44454.32318292954, "max_ops_per_sec": 105764.14595452142, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 7901.897727272727, "ser_median_ns": 7553.5, "ser_std_ns": 1652.5839748762432, "ser_mad_ns": 763.0, "ser_cv": 0.2091376061692738, "ser_min_ns": 4829.0, "ser_max_ns": 13236.0, "ser_p5_ns": 5289.35, "ser_p25_ns": 6938.5, "ser_p50_ns": 7553.5, "ser_p75_ns": 8561.5, "ser_p95_ns": 10718.4, "ser_p99_ns": 12442.559999999996, "ser_ci_low_ns": 7574.521306818182, "ser_ci_high_ns": 8247.911079545454, "deser_mean_ns": 7181.534090909091, "deser_median_ns": 7321.5, "deser_std_ns": 1256.3354478184324, "deser_mad_ns": 904.0, "deser_cv": 0.17493970395667874, "deser_min_ns": 4396.0, "deser_max_ns": 9902.0, "deser_p5_ns": 5108.05, "deser_p25_ns": 6296.75, "deser_p50_ns": 7321.5, "deser_p75_ns": 8012.25, "deser_p95_ns": 9092.8, "deser_p99_ns": 9570.529999999999, "deser_ci_low_ns": 6926.146875, "deser_ci_high_ns": 7439.401136363636, "total_mean_ns": 15083.431818181818, "total_median_ns": 15012.0, "total_std_ns": 2685.4134115067095, "total_mad_ns": 1590.0, "total_cv": 0.17803729574788596, "total_min_ns": 9455.0, "total_max_ns": 22495.0, "total_p5_ns": 10516.75, "total_p25_ns": 13441.0, "total_p50_ns": 15012.0, "total_p75_ns": 16654.5, "total_p95_ns": 19865.149999999998, "total_p99_ns": 21007.299999999992, "total_ci_low_ns": 14521.248863636363, "total_ci_high_ns": 15674.91534090909, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.127467679744837}, {"serializer": "Google.Protobuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "3.35.1", "avg_time_ser_ns": 2551.4947368421053, "avg_time_deser_ns": 3894.557894736842, "avg_time_total_ns": 6446.0526315789475, "median_size_bytes": 367.0, "avg_ops_per_sec": 155133.70075525617, "min_ops_per_sec": 109529.0251916758, "max_ops_per_sec": 301841.2315122246, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 2551.4947368421053, "ser_median_ns": 2475.0, "ser_std_ns": 602.0386973086621, "ser_mad_ns": 416.0, "ser_cv": 0.23595529656227474, "ser_min_ns": 956.0, "ser_max_ns": 4127.0, "ser_p5_ns": 1770.7, "ser_p25_ns": 2143.0, "ser_p50_ns": 2475.0, "ser_p75_ns": 2953.0, "ser_p95_ns": 3715.4, "ser_p99_ns": 3956.8600000000006, "ser_ci_low_ns": 2429.0165789473685, "ser_ci_high_ns": 2669.1944736842106, "deser_mean_ns": 3894.557894736842, "deser_median_ns": 3709.0, "deser_std_ns": 701.3798514932028, "deser_mad_ns": 461.0, "deser_cv": 0.18009229043457203, "deser_min_ns": 2357.0, "deser_max_ns": 5441.0, "deser_p5_ns": 2909.5, "deser_p25_ns": 3418.0, "deser_p50_ns": 3709.0, "deser_p75_ns": 4397.5, "deser_p95_ns": 5149.0, "deser_p99_ns": 5421.26, "deser_ci_low_ns": 3759.1613157894735, "deser_ci_high_ns": 4027.5365789473685, "total_mean_ns": 6446.0526315789475, "total_median_ns": 6231.0, "total_std_ns": 1221.0844183654608, "total_mad_ns": 920.0, "total_cv": 0.18943134475561343, "total_min_ns": 3313.0, "total_max_ns": 9130.0, "total_p5_ns": 4901.2, "total_p25_ns": 5456.5, "total_p50_ns": 6231.0, "total_p75_ns": 7325.0, "total_p95_ns": 8432.1, "total_p99_ns": 8918.5, "total_ci_low_ns": 6183.437631578948, "total_ci_high_ns": 6689.855, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 0.7097906055461234, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.476826813557114}, {"serializer": "MS Bond Json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 4318.712643678161, "avg_time_deser_ns": 5436.83908045977, "avg_time_total_ns": 9755.551724137931, "median_size_bytes": 410.0, "avg_ops_per_sec": 102505.7350191403, "min_ops_per_sec": 80586.67096462245, "max_ops_per_sec": 137912.01213625708, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 4318.712643678161, "ser_median_ns": 4265.0, "ser_std_ns": 583.6203151708643, "ser_mad_ns": 300.0, "ser_cv": 0.13513756605806646, "ser_min_ns": 2988.0, "ser_max_ns": 6012.0, "ser_p5_ns": 3424.8, "ser_p25_ns": 3978.0, "ser_p50_ns": 4265.0, "ser_p75_ns": 4630.5, "ser_p95_ns": 5333.8, "ser_p99_ns": 5870.1, "ser_ci_low_ns": 4196.272988505747, "ser_ci_high_ns": 4440.748563218391, "deser_mean_ns": 5436.83908045977, "deser_median_ns": 5392.0, "deser_std_ns": 526.813189465197, "deser_mad_ns": 382.0, "deser_cv": 0.09689696194220386, "deser_min_ns": 4263.0, "deser_max_ns": 7074.0, "deser_p5_ns": 4589.3, "deser_p25_ns": 5054.0, "deser_p50_ns": 5392.0, "deser_p75_ns": 5815.0, "deser_p95_ns": 6309.0, "deser_p99_ns": 6599.280000000001, "deser_ci_low_ns": 5330.908908045976, "deser_ci_high_ns": 5549.9706896551725, "total_mean_ns": 9755.551724137931, "total_median_ns": 9693.0, "total_std_ns": 1019.5069346185758, "total_mad_ns": 633.0, "total_cv": 0.10450530769018772, "total_min_ns": 7251.0, "total_max_ns": 12409.0, "total_p5_ns": 8111.5, "total_p25_ns": 9170.5, "total_p50_ns": 9693.0, "total_p75_ns": 10354.0, "total_p95_ns": 11457.0, "total_p99_ns": 12217.22, "total_ci_low_ns": 9541.168390804598, "total_ci_high_ns": 9952.451724137933, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 0.9997528117661599, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.980780678970302}, {"serializer": "ZeroFormatter", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.6.4", "avg_time_ser_ns": 2610.8064516129034, "avg_time_deser_ns": 2837.7096774193546, "avg_time_total_ns": 5448.5161290322585, "median_size_bytes": 435.0, "avg_ops_per_sec": 183536.20991805996, "min_ops_per_sec": 134716.4219318335, "max_ops_per_sec": 274273.176083379, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 2610.8064516129034, "ser_median_ns": 2559.0, "ser_std_ns": 503.91591038637887, "ser_mad_ns": 370.0, "ser_cv": 0.19301159228983436, "ser_min_ns": 1711.0, "ser_max_ns": 4138.0, "ser_p5_ns": 1888.2, "ser_p25_ns": 2195.0, "ser_p50_ns": 2559.0, "ser_p75_ns": 2939.0, "ser_p95_ns": 3457.6, "ser_p99_ns": 3802.1999999999994, "ser_ci_low_ns": 2511.2709677419357, "ser_ci_high_ns": 2713.3505376344087, "deser_mean_ns": 2837.7096774193546, "deser_median_ns": 2811.0, "deser_std_ns": 446.1392252143885, "deser_mad_ns": 316.0, "deser_cv": 0.15721806524623497, "deser_min_ns": 1935.0, "deser_max_ns": 4049.0, "deser_p5_ns": 2205.6, "deser_p25_ns": 2478.0, "deser_p50_ns": 2811.0, "deser_p75_ns": 3112.0, "deser_p95_ns": 3653.3999999999987, "deser_p99_ns": 3873.2799999999997, "deser_ci_low_ns": 2744.0048387096776, "deser_ci_high_ns": 2929.9690860215055, "total_mean_ns": 5448.5161290322585, "total_median_ns": 5407.0, "total_std_ns": 876.8330441064744, "total_mad_ns": 581.0, "total_cv": 0.1609306136462174, "total_min_ns": 3646.0, "total_max_ns": 7423.0, "total_p5_ns": 4197.4, "total_p25_ns": 4768.0, "total_p50_ns": 5407.0, "total_p75_ns": 5944.0, "total_p95_ns": 6962.5999999999985, "total_p99_ns": 7358.599999999999, "total_ci_low_ns": 5279.8330645161295, "total_ci_high_ns": 5625.889784946236, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 0.401780552665048, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.6846199303934841}, {"serializer": "FsPickler", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 13132.815217391304, "avg_time_deser_ns": 8693.597826086956, "avg_time_total_ns": 21826.41304347826, "median_size_bytes": 526.0, "avg_ops_per_sec": 45816.04856501148, "min_ops_per_sec": 26690.866385522873, "max_ops_per_sec": 87642.41893076249, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 13132.815217391304, "ser_median_ns": 12492.5, "ser_std_ns": 3429.0050392040494, "ser_mad_ns": 2034.5, "ser_cv": 0.2611020548483119, "ser_min_ns": 6255.0, "ser_max_ns": 24481.0, "ser_p5_ns": 9287.2, "ser_p25_ns": 10611.25, "ser_p50_ns": 12492.5, "ser_p75_ns": 15200.0, "ser_p95_ns": 19027.2, "ser_p99_ns": 21416.12000000001, "ser_ci_low_ns": 12443.573369565216, "ser_ci_high_ns": 13867.511684782608, "deser_mean_ns": 8693.597826086956, "deser_median_ns": 8450.0, "deser_std_ns": 1681.9184562937633, "deser_mad_ns": 946.0, "deser_cv": 0.193466328893984, "deser_min_ns": 4888.0, "deser_max_ns": 12985.0, "deser_p5_ns": 6610.9, "deser_p25_ns": 7561.0, "deser_p50_ns": 8450.0, "deser_p75_ns": 9560.75, "deser_p95_ns": 12152.35, "deser_p99_ns": 12590.970000000001, "deser_ci_low_ns": 8356.021195652174, "deser_ci_high_ns": 9038.407880434781, "total_mean_ns": 21826.41304347826, "total_median_ns": 20877.5, "total_std_ns": 4976.20496016214, "total_mad_ns": 3092.5, "total_cv": 0.22799004812423965, "total_min_ns": 11410.0, "total_max_ns": 37466.0, "total_p5_ns": 16295.75, "total_p25_ns": 18251.75, "total_p50_ns": 20877.5, "total_p75_ns": 24598.0, "total_p95_ns": 30365.5, "total_p99_ns": 33593.040000000015, "total_ci_low_ns": 20852.347826086956, "total_ci_high_ns": 22832.85597826087, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.739485302487066}, {"serializer": "ServiceStack Json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 6754.71875, "avg_time_deser_ns": 7782.4375, "avg_time_total_ns": 14537.15625, "median_size_bytes": 410.0, "avg_ops_per_sec": 68789.24480157527, "min_ops_per_sec": 41365.04653567735, "max_ops_per_sec": 103508.95352447986, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 6754.71875, "ser_median_ns": 6173.5, "ser_std_ns": 1766.335413716772, "ser_mad_ns": 1098.0, "ser_cv": 0.2614965151164543, "ser_min_ns": 3855.0, "ser_max_ns": 12650.0, "ser_p5_ns": 4535.5, "ser_p25_ns": 5321.0, "ser_p50_ns": 6173.5, "ser_p75_ns": 8150.25, "ser_p95_ns": 9707.25, "ser_p99_ns": 10922.899999999994, "ser_ci_low_ns": 6404.506510416666, "ser_ci_high_ns": 7109.81640625, "deser_mean_ns": 7782.4375, "deser_median_ns": 7415.5, "deser_std_ns": 1403.5538113359921, "deser_mad_ns": 927.5, "deser_cv": 0.18034887030393654, "deser_min_ns": 5806.0, "deser_max_ns": 11525.0, "deser_p5_ns": 6021.0, "deser_p25_ns": 6612.5, "deser_p50_ns": 7415.5, "deser_p75_ns": 8838.5, "deser_p95_ns": 10419.0, "deser_p99_ns": 11254.25, "deser_ci_low_ns": 7504.797135416667, "deser_ci_high_ns": 8076.633333333333, "total_mean_ns": 14537.15625, "total_median_ns": 13639.5, "total_std_ns": 3013.2914870379304, "total_mad_ns": 2173.5, "total_cv": 0.20728204576035497, "total_min_ns": 9661.0, "total_max_ns": 24175.0, "total_p5_ns": 11079.0, "total_p25_ns": 11967.75, "total_p50_ns": 13639.5, "total_p75_ns": 16776.5, "total_p95_ns": 19772.25, "total_p99_ns": 21930.149999999994, "total_ci_low_ns": 13949.636458333334, "total_ci_high_ns": 15137.633593749999, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.302349576309791}, {"serializer": "YAXLib", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "4.4.0", "avg_time_ser_ns": 127797.58510638298, "avg_time_deser_ns": 113486.55319148937, "avg_time_total_ns": 241284.13829787233, "median_size_bytes": 1051.0, "avg_ops_per_sec": 4144.491250251481, "min_ops_per_sec": 2368.4615657899412, "max_ops_per_sec": 8424.386915242243, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 127797.58510638298, "ser_median_ns": 113925.5, "ser_std_ns": 47122.51504606765, "ser_mad_ns": 28839.0, "ser_cv": 0.3687277424439695, "ser_min_ns": 63431.0, "ser_max_ns": 275957.0, "ser_p5_ns": 79614.75, "ser_p25_ns": 90795.5, "ser_p50_ns": 113925.5, "ser_p75_ns": 162457.75, "ser_p95_ns": 214485.8, "ser_p99_ns": 264565.42999999993, "ser_ci_low_ns": 118455.09707446808, "ser_ci_high_ns": 137633.50957446807, "deser_mean_ns": 113486.55319148937, "deser_median_ns": 79794.5, "deser_std_ns": 60543.39118522201, "deser_mad_ns": 18798.5, "deser_cv": 0.5334851529331874, "deser_min_ns": 55272.0, "deser_max_ns": 260778.0, "deser_p5_ns": 60516.6, "deser_p25_ns": 63564.0, "deser_p50_ns": 79794.5, "deser_p75_ns": 154799.5, "deser_p95_ns": 228308.34999999998, "deser_p99_ns": 257542.52999999997, "deser_ci_low_ns": 101296.38271276596, "deser_ci_high_ns": 125847.2454787234, "total_mean_ns": 241284.13829787233, "total_median_ns": 238549.0, "total_std_ns": 84899.63048941221, "total_mad_ns": 81012.0, "total_cv": 0.35186577571295274, "total_min_ns": 118703.0, "total_max_ns": 422215.0, "total_p5_ns": 140506.15, "total_p25_ns": 154919.5, "total_p50_ns": 238549.0, "total_p75_ns": 302021.0, "total_p95_ns": 387370.3, "total_p99_ns": 398512.08999999985, "total_ci_low_ns": 224096.47127659575, "total_ci_high_ns": 259097.8529255319, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.9121337618853005}, {"serializer": "Migrant", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "0.13.0.0", "avg_time_ser_ns": 12736.058139534884, "avg_time_deser_ns": 37444.33720930233, "avg_time_total_ns": 50180.395348837206, "median_size_bytes": 1030.0, "avg_ops_per_sec": 19928.101264414854, "min_ops_per_sec": 13609.3305570299, "max_ops_per_sec": 28511.960767541983, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 12736.058139534884, "ser_median_ns": 12395.5, "ser_std_ns": 1780.5931421176758, "ser_mad_ns": 1037.5, "ser_cv": 0.13980724040434558, "ser_min_ns": 9746.0, "ser_max_ns": 18580.0, "ser_p5_ns": 10489.75, "ser_p25_ns": 11475.0, "ser_p50_ns": 12395.5, "ser_p75_ns": 13689.75, "ser_p95_ns": 16652.25, "ser_p99_ns": 17598.250000000007, "ser_ci_low_ns": 12379.21976744186, "ser_ci_high_ns": 13104.808430232557, "deser_mean_ns": 37444.33720930233, "deser_median_ns": 36836.0, "deser_std_ns": 5446.063806004275, "deser_mad_ns": 3284.0, "deser_cv": 0.14544425704646483, "deser_min_ns": 25074.0, "deser_max_ns": 54899.0, "deser_p5_ns": 31431.75, "deser_p25_ns": 33539.0, "deser_p50_ns": 36836.0, "deser_p75_ns": 40034.0, "deser_p95_ns": 47347.75, "deser_p99_ns": 53749.80000000001, "deser_ci_low_ns": 36350.14970930233, "deser_ci_high_ns": 38619.59709302325, "total_mean_ns": 50180.395348837206, "total_median_ns": 49061.5, "total_std_ns": 6983.542544951994, "total_mad_ns": 4008.5, "total_cv": 0.13916874302015278, "total_min_ns": 35073.0, "total_max_ns": 73479.0, "total_p5_ns": 42331.0, "total_p25_ns": 45271.0, "total_p50_ns": 49061.5, "total_p75_ns": 53454.25, "total_p95_ns": 64489.5, "total_p99_ns": 71348.05000000002, "total_ci_low_ns": 48700.36715116279, "total_ci_high_ns": 51637.994476744185, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.240410713300292}, {"serializer": "Ceras", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "4.1.7", "avg_time_ser_ns": 6362.123595505618, "avg_time_deser_ns": 15194.258426966293, "avg_time_total_ns": 21556.38202247191, "median_size_bytes": 383.0, "avg_ops_per_sec": 46389.97392779218, "min_ops_per_sec": 32787.960260992164, "max_ops_per_sec": 63008.00201625606, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 6362.123595505618, "ser_median_ns": 6096.0, "ser_std_ns": 1213.8019328860184, "ser_mad_ns": 738.0, "ser_cv": 0.1907856574404625, "ser_min_ns": 4107.0, "ser_max_ns": 10114.0, "ser_p5_ns": 4685.4, "ser_p25_ns": 5492.0, "ser_p50_ns": 6096.0, "ser_p75_ns": 7073.0, "ser_p95_ns": 8784.6, "ser_p99_ns": 9725.040000000003, "ser_ci_low_ns": 6117.221348314607, "ser_ci_high_ns": 6605.556179775281, "deser_mean_ns": 15194.258426966293, "deser_median_ns": 14748.0, "deser_std_ns": 2205.9043266573644, "deser_mad_ns": 1257.0, "deser_cv": 0.14518012427262622, "deser_min_ns": 11415.0, "deser_max_ns": 20827.0, "deser_p5_ns": 12182.0, "deser_p25_ns": 13743.0, "deser_p50_ns": 14748.0, "deser_p75_ns": 16280.0, "deser_p95_ns": 19829.999999999996, "deser_p99_ns": 20602.600000000002, "deser_ci_low_ns": 14744.102808988764, "deser_ci_high_ns": 15658.25308988764, "total_mean_ns": 21556.38202247191, "total_median_ns": 20915.0, "total_std_ns": 3290.226002549818, "total_mad_ns": 1988.0, "total_cv": 0.15263349847482996, "total_min_ns": 15871.0, "total_max_ns": 30499.0, "total_p5_ns": 17307.2, "total_p25_ns": 19154.0, "total_p50_ns": 20915.0, "total_p75_ns": 23126.0, "total_p95_ns": 28450.199999999997, "total_p99_ns": 29170.200000000008, "total_ci_low_ns": 20892.32331460674, "total_ci_high_ns": 22260.838764044944, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.945512635043962}, {"serializer": "YamlDotNet", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "17.1.0", "avg_time_ser_ns": 74261.06521739131, "avg_time_deser_ns": 52772.989130434784, "avg_time_total_ns": 127034.05434782608, "median_size_bytes": 409.0, "avg_ops_per_sec": 7871.904940244969, "min_ops_per_sec": 6268.13842556899, "max_ops_per_sec": 9438.058025180739, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 74261.06521739131, "ser_median_ns": 71816.5, "ser_std_ns": 9487.566230847136, "ser_mad_ns": 6310.0, "ser_cv": 0.12775963020559028, "ser_min_ns": 58140.0, "ser_max_ns": 96094.0, "ser_p5_ns": 62891.95, "ser_p25_ns": 67377.75, "ser_p50_ns": 71816.5, "ser_p75_ns": 81193.75, "ser_p95_ns": 92710.75, "ser_p99_ns": 95467.01000000001, "ser_ci_low_ns": 72343.85652173913, "ser_ci_high_ns": 76291.42527173914, "deser_mean_ns": 52772.989130434784, "deser_median_ns": 50923.0, "deser_std_ns": 5266.428335927772, "deser_mad_ns": 3378.5, "deser_cv": 0.09979401248072498, "deser_min_ns": 44884.0, "deser_max_ns": 65112.0, "deser_p5_ns": 45864.25, "deser_p25_ns": 49026.0, "deser_p50_ns": 50923.0, "deser_p75_ns": 55240.0, "deser_p95_ns": 62891.5, "deser_p99_ns": 63615.05, "deser_ci_low_ns": 51764.897010869565, "deser_ci_high_ns": 53883.98967391304, "total_mean_ns": 127034.05434782608, "total_median_ns": 122779.5, "total_std_ns": 14252.300914962476, "total_mad_ns": 9167.5, "total_cv": 0.11219275798235101, "total_min_ns": 105954.0, "total_max_ns": 159537.0, "total_p5_ns": 109052.75, "total_p25_ns": 116459.5, "total_p50_ns": 122779.5, "total_p75_ns": 136488.0, "total_p95_ns": 154318.75, "total_p99_ns": 158625.18, "total_ci_low_ns": 124138.10190217392, "total_ci_high_ns": 129876.66766304348, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.08305756841664}, {"serializer": "GroBuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.9.2", "avg_time_ser_ns": 2298.7096774193546, "avg_time_deser_ns": 2519.2903225806454, "avg_time_total_ns": 4818.0, "median_size_bytes": 788.0, "avg_ops_per_sec": 207555.00207555003, "min_ops_per_sec": 133886.73182487616, "max_ops_per_sec": 291036.0884749709, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 2298.7096774193546, "ser_median_ns": 2191.0, "ser_std_ns": 566.4221344208322, "ser_mad_ns": 404.0, "ser_cv": 0.24640873094366825, "ser_min_ns": 1516.0, "ser_max_ns": 4095.0, "ser_p5_ns": 1614.0, "ser_p25_ns": 1824.0, "ser_p50_ns": 2191.0, "ser_p75_ns": 2716.0, "ser_p95_ns": 3321.599999999999, "ser_p99_ns": 3921.12, "ser_ci_low_ns": 2185.6575268817205, "ser_ci_high_ns": 2411.5782258064514, "deser_mean_ns": 2519.2903225806454, "deser_median_ns": 2507.0, "deser_std_ns": 482.95630778717094, "deser_mad_ns": 317.0, "deser_cv": 0.19170331559581932, "deser_min_ns": 1731.0, "deser_max_ns": 3633.0, "deser_p5_ns": 1816.4, "deser_p25_ns": 2175.0, "deser_p50_ns": 2507.0, "deser_p75_ns": 2750.0, "deser_p95_ns": 3480.2, "deser_p99_ns": 3604.48, "deser_ci_low_ns": 2426.0825268817202, "deser_ci_high_ns": 2621.400806451613, "total_mean_ns": 4818.0, "total_median_ns": 4607.0, "total_std_ns": 955.8895128986222, "total_mad_ns": 633.0, "total_cv": 0.19839964983367003, "total_min_ns": 3436.0, "total_max_ns": 7469.0, "total_p5_ns": 3648.6, "total_p25_ns": 4015.0, "total_p50_ns": 4607.0, "total_p75_ns": 5343.0, "total_p95_ns": 6554.0, "total_p99_ns": 7072.48, "total_ci_low_ns": 4632.117204301076, "total_ci_high_ns": 5015.200537634409, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "Utf8Json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.3.7", "avg_time_ser_ns": 4941.09375, "avg_time_deser_ns": 4413.333333333333, "avg_time_total_ns": 9354.427083333334, "median_size_bytes": 410.0, "avg_ops_per_sec": 106901.25553297513, "min_ops_per_sec": 66462.84726837698, "max_ops_per_sec": 187546.8867216804, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 4941.09375, "ser_median_ns": 4650.0, "ser_std_ns": 1429.511488719688, "ser_mad_ns": 929.0, "ser_cv": 0.2893107398983652, "ser_min_ns": 2511.0, "ser_max_ns": 8535.0, "ser_p5_ns": 3040.5, "ser_p25_ns": 3838.25, "ser_p50_ns": 4650.0, "ser_p75_ns": 5959.5, "ser_p95_ns": 7556.75, "ser_p99_ns": 8397.25, "ser_ci_low_ns": 4673.923697916666, "ser_ci_high_ns": 5229.399479166667, "deser_mean_ns": 4413.333333333333, "deser_median_ns": 4255.5, "deser_std_ns": 838.216109135368, "deser_mad_ns": 524.0, "deser_cv": 0.1899281214052949, "deser_min_ns": 2691.0, "deser_max_ns": 6712.0, "deser_p5_ns": 3310.25, "deser_p25_ns": 3812.75, "deser_p50_ns": 4255.5, "deser_p75_ns": 4892.5, "deser_p95_ns": 5910.75, "deser_p99_ns": 6606.549999999999, "deser_ci_low_ns": 4249.605208333333, "deser_ci_high_ns": 4582.645052083333, "total_mean_ns": 9354.427083333334, "total_median_ns": 8806.0, "total_std_ns": 2176.5891411481484, "total_mad_ns": 1475.5, "total_cv": 0.2326801119681771, "total_min_ns": 5332.0, "total_max_ns": 15046.0, "total_p5_ns": 6745.25, "total_p25_ns": 7722.75, "total_p50_ns": 8806.0, "total_p75_ns": 10917.5, "total_p95_ns": 13198.75, "total_p99_ns": 14718.249999999998, "total_ci_low_ns": 8926.988541666668, "total_ci_high_ns": 9790.104427083334, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 0.9775985663082437, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.6734002865639988}, {"serializer": "Jil", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "2.17.0", "avg_time_ser_ns": 8577.595744680852, "avg_time_deser_ns": 5898.648936170212, "avg_time_total_ns": 14476.244680851063, "median_size_bytes": 410.0, "avg_ops_per_sec": 69078.68871011716, "min_ops_per_sec": 47773.74355054462, "max_ops_per_sec": 100573.26762546515, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 8577.595744680852, "ser_median_ns": 8210.5, "ser_std_ns": 1831.39306704028, "ser_mad_ns": 1173.0, "ser_cv": 0.21350890407442732, "ser_min_ns": 5138.0, "ser_max_ns": 13102.0, "ser_p5_ns": 6243.85, "ser_p25_ns": 7225.75, "ser_p50_ns": 8210.5, "ser_p75_ns": 9907.0, "ser_p95_ns": 12028.65, "ser_p99_ns": 12869.499999999998, "ser_ci_low_ns": 8215.415957446809, "ser_ci_high_ns": 8932.577925531914, "deser_mean_ns": 5898.648936170212, "deser_median_ns": 5828.5, "deser_std_ns": 837.6865314014123, "deser_mad_ns": 621.0, "deser_cv": 0.14201328820651818, "deser_min_ns": 4496.0, "deser_max_ns": 8311.0, "deser_p5_ns": 4840.35, "deser_p25_ns": 5228.75, "deser_p50_ns": 5828.5, "deser_p75_ns": 6488.25, "deser_p95_ns": 7410.699999999999, "deser_p99_ns": 7863.669999999996, "deser_ci_low_ns": 5728.803989361702, "deser_ci_high_ns": 6080.737234042553, "total_mean_ns": 14476.244680851063, "total_median_ns": 13837.0, "total_std_ns": 2578.5290450684715, "total_mad_ns": 1780.5, "total_cv": 0.17812140523428063, "total_min_ns": 9943.0, "total_max_ns": 20932.0, "total_p5_ns": 11190.3, "total_p25_ns": 12433.0, "total_p50_ns": 13837.0, "total_p75_ns": 16270.5, "total_p95_ns": 19344.799999999996, "total_p99_ns": 20297.739999999994, "total_ci_low_ns": 13986.86409574468, "total_ci_high_ns": 14994.189627659574, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.936561057774295}, {"serializer": "MS Bond Fast", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 6489.284090909091, "avg_time_deser_ns": 5417.068181818182, "avg_time_total_ns": 11906.352272727272, "median_size_bytes": 341.0, "avg_ops_per_sec": 83988.77986254473, "min_ops_per_sec": 68310.67695880866, "max_ops_per_sec": 106394.29726566657, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 6489.284090909091, "ser_median_ns": 6493.0, "ser_std_ns": 670.0084910915654, "ser_mad_ns": 494.5, "ser_cv": 0.10324844492941641, "ser_min_ns": 5056.0, "ser_max_ns": 8507.0, "ser_p5_ns": 5558.2, "ser_p25_ns": 5956.25, "ser_p50_ns": 6493.0, "ser_p75_ns": 6905.0, "ser_p95_ns": 7451.599999999999, "ser_p99_ns": 8203.369999999999, "ser_ci_low_ns": 6353.520170454546, "ser_ci_high_ns": 6629.413636363636, "deser_mean_ns": 5417.068181818182, "deser_median_ns": 5359.5, "deser_std_ns": 486.0178511326973, "deser_mad_ns": 272.0, "deser_cv": 0.08971972196398874, "deser_min_ns": 4293.0, "deser_max_ns": 6609.0, "deser_p5_ns": 4734.5, "deser_p25_ns": 5107.0, "deser_p50_ns": 5359.5, "deser_p75_ns": 5642.25, "deser_p95_ns": 6413.299999999999, "deser_p99_ns": 6534.179999999999, "deser_ci_low_ns": 5314.804261363636, "deser_ci_high_ns": 5522.575, "total_mean_ns": 11906.352272727272, "total_median_ns": 11909.5, "total_std_ns": 987.0340226323791, "total_mad_ns": 642.5, "total_cv": 0.08289978324371289, "total_min_ns": 9399.0, "total_max_ns": 14639.0, "total_p5_ns": 10473.05, "total_p25_ns": 11243.5, "total_p50_ns": 11909.5, "total_p75_ns": 12499.75, "total_p95_ns": 13405.399999999998, "total_p99_ns": 14499.8, "total_ci_low_ns": 11703.918749999999, "total_ci_high_ns": 12116.558238636364, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.268289841888214}, {"serializer": "MS XmlSerializer", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 11036.22105263158, "avg_time_deser_ns": 21383.884210526317, "avg_time_total_ns": 32420.105263157893, "median_size_bytes": 1186.0, "avg_ops_per_sec": 30845.057160761193, "min_ops_per_sec": 22073.593360263116, "max_ops_per_sec": 48430.840759395585, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 11036.22105263158, "ser_median_ns": 10327.0, "ser_std_ns": 2356.2360228331863, "ser_mad_ns": 1237.0, "ser_cv": 0.21350025625586247, "ser_min_ns": 5982.0, "ser_max_ns": 17453.0, "ser_p5_ns": 8250.8, "ser_p25_ns": 9419.5, "ser_p50_ns": 10327.0, "ser_p75_ns": 12594.0, "ser_p95_ns": 15221.1, "ser_p99_ns": 16944.460000000003, "ser_ci_low_ns": 10573.086842105264, "ser_ci_high_ns": 11506.391315789473, "deser_mean_ns": 21383.884210526317, "deser_median_ns": 20940.0, "deser_std_ns": 2499.642965412316, "deser_mad_ns": 1320.0, "deser_cv": 0.11689377574266208, "deser_min_ns": 14666.0, "deser_max_ns": 27983.0, "deser_p5_ns": 18178.4, "deser_p25_ns": 19678.5, "deser_p50_ns": 20940.0, "deser_p75_ns": 22567.0, "deser_p95_ns": 26532.899999999998, "deser_p99_ns": 27857.98, "deser_ci_low_ns": 20895.790789473685, "deser_ci_high_ns": 21892.569736842106, "total_mean_ns": 32420.105263157893, "total_median_ns": 31227.0, "total_std_ns": 4572.36946459018, "total_mad_ns": 2555.0, "total_cv": 0.14103499749540313, "total_min_ns": 20648.0, "total_max_ns": 45303.0, "total_p5_ns": 26638.5, "total_p25_ns": 29270.0, "total_p50_ns": 31227.0, "total_p75_ns": 35634.5, "total_p95_ns": 40534.7, "total_p99_ns": 44211.66, "total_ci_low_ns": 31487.98052631579, "total_ci_high_ns": 33377.48815789474, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.28210976871471}, {"serializer": "LightProto", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.3.4", "avg_time_ser_ns": 3566.8478260869565, "avg_time_deser_ns": 3691.945652173913, "avg_time_total_ns": 7258.79347826087, "median_size_bytes": 367.0, "avg_ops_per_sec": 137763.94148626327, "min_ops_per_sec": 90793.53550027238, "max_ops_per_sec": 241545.89371980677, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 3566.8478260869565, "ser_median_ns": 3303.0, "ser_std_ns": 876.4270991389485, "ser_mad_ns": 520.0, "ser_cv": 0.2457147436257299, "ser_min_ns": 1754.0, "ser_max_ns": 5815.0, "ser_p5_ns": 2415.95, "ser_p25_ns": 2896.25, "ser_p50_ns": 3303.0, "ser_p75_ns": 4116.75, "ser_p95_ns": 5194.400000000001, "ser_p99_ns": 5466.470000000001, "ser_ci_low_ns": 3397.3508152173913, "ser_ci_high_ns": 3748.7489130434783, "deser_mean_ns": 3691.945652173913, "deser_median_ns": 3554.5, "deser_std_ns": 659.2358607439212, "deser_mad_ns": 393.5, "deser_cv": 0.17856055393332945, "deser_min_ns": 2386.0, "deser_max_ns": 5488.0, "deser_p5_ns": 2849.0, "deser_p25_ns": 3252.5, "deser_p50_ns": 3554.5, "deser_p75_ns": 4120.5, "deser_p95_ns": 5023.550000000001, "deser_p99_ns": 5412.47, "deser_ci_low_ns": 3560.5665760869565, "deser_ci_high_ns": 3834.5391304347822, "total_mean_ns": 7258.79347826087, "total_median_ns": 6876.5, "total_std_ns": 1451.9819159867675, "total_mad_ns": 851.0, "total_cv": 0.2000307517131135, "total_min_ns": 4140.0, "total_max_ns": 11014.0, "total_p5_ns": 5421.7, "total_p25_ns": 6205.75, "total_p50_ns": 6876.5, "total_p75_ns": 8026.75, "total_p95_ns": 9879.45, "total_p99_ns": 10607.230000000001, "total_ci_low_ns": 6961.630706521739, "total_ci_high_ns": 7559.125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 0.8576437587657784, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.9796301367051274}, {"serializer": "CsvHelper", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "33.1.0", "avg_time_ser_ns": 408524.35869565216, "avg_time_deser_ns": 409814.3043478261, "avg_time_total_ns": 818338.6630434783, "median_size_bytes": 341.0, "avg_ops_per_sec": 1221.9879680142524, "min_ops_per_sec": 987.300355526858, "max_ops_per_sec": 1554.7747131440653, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 408524.35869565216, "ser_median_ns": 396941.5, "ser_std_ns": 61433.84565970336, "ser_mad_ns": 44783.5, "ser_cv": 0.1503798839703244, "ser_min_ns": 304731.0, "ser_max_ns": 590533.0, "ser_p5_ns": 329167.3, "ser_p25_ns": 357262.25, "ser_p50_ns": 396941.5, "ser_p75_ns": 447344.75, "ser_p95_ns": 507427.60000000003, "ser_p99_ns": 578288.04, "ser_ci_low_ns": 396498.1130434783, "ser_ci_high_ns": 421151.4475543478, "deser_mean_ns": 409814.3043478261, "deser_median_ns": 395051.0, "deser_std_ns": 49150.78523575152, "deser_mad_ns": 29492.0, "deser_cv": 0.11993428417285124, "deser_min_ns": 328645.0, "deser_max_ns": 552735.0, "deser_p5_ns": 357133.05, "deser_p25_ns": 372523.25, "deser_p50_ns": 395051.0, "deser_p75_ns": 441384.75, "deser_p95_ns": 504159.30000000005, "deser_p99_ns": 523927.1300000001, "deser_ci_low_ns": 399739.0418478261, "deser_ci_high_ns": 420368.2861413043, "total_mean_ns": 818338.6630434783, "total_median_ns": 813384.0, "total_std_ns": 83117.08799543725, "total_mad_ns": 60010.0, "total_cv": 0.10156808146680618, "total_min_ns": 643180.0, "total_max_ns": 1012863.0, "total_p5_ns": 696612.75, "total_p25_ns": 759458.25, "total_p50_ns": 813384.0, "total_p75_ns": 877585.0, "total_p95_ns": 946801.9500000001, "total_p99_ns": 1004548.3300000001, "total_ci_low_ns": 801090.8364130436, "total_ci_high_ns": 836249.3336956522, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.821910804473113}, {"serializer": "ExtendedXmlSerializer", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "3.10.0.0", "avg_time_ser_ns": 20997.5, "avg_time_deser_ns": 25062.043478260868, "avg_time_total_ns": 46059.54347826087, "median_size_bytes": 767.0, "avg_ops_per_sec": 21711.027172294464, "min_ops_per_sec": 14326.852820240978, "max_ops_per_sec": 38346.498964644525, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 20997.5, "ser_median_ns": 20055.5, "ser_std_ns": 4158.132387989102, "ser_mad_ns": 2941.5, "ser_cv": 0.1980298791755734, "ser_min_ns": 11723.0, "ser_max_ns": 32991.0, "ser_p5_ns": 16314.35, "ser_p25_ns": 17762.5, "ser_p50_ns": 20055.5, "ser_p75_ns": 23506.25, "ser_p95_ns": 28456.2, "ser_p99_ns": 32665.22, "ser_ci_low_ns": 20151.79130434783, "ser_ci_high_ns": 21882.33695652174, "deser_mean_ns": 25062.043478260868, "deser_median_ns": 24682.5, "deser_std_ns": 4325.212588087989, "deser_mad_ns": 2841.0, "deser_cv": 0.17258020447693076, "deser_min_ns": 14355.0, "deser_max_ns": 36808.0, "deser_p5_ns": 19030.85, "deser_p25_ns": 21851.75, "deser_p50_ns": 24682.5, "deser_p75_ns": 27453.5, "deser_p95_ns": 32508.0, "deser_p99_ns": 36613.26, "deser_ci_low_ns": 24194.040760869568, "deser_ci_high_ns": 25990.779891304348, "total_mean_ns": 46059.54347826087, "total_median_ns": 44918.5, "total_std_ns": 8281.21065154315, "total_mad_ns": 5729.5, "total_cv": 0.17979358947514765, "total_min_ns": 26078.0, "total_max_ns": 69799.0, "total_p5_ns": 34852.25, "total_p25_ns": 39600.25, "total_p50_ns": 44918.5, "total_p75_ns": 51234.5, "total_p95_ns": 61057.700000000004, "total_p99_ns": 68091.84000000001, "total_ci_low_ns": 44417.10489130434, "total_ci_high_ns": 47725.59972826087, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.986415925139034}, {"serializer": "MS DataContract", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 10110.612903225807, "avg_time_deser_ns": 15344.494623655914, "avg_time_total_ns": 25455.107526881722, "median_size_bytes": 1213.0, "avg_ops_per_sec": 39284.84682077872, "min_ops_per_sec": 26535.05280475508, "max_ops_per_sec": 62015.50387596899, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 10110.612903225807, "ser_median_ns": 9331.0, "ser_std_ns": 2417.490227633043, "ser_mad_ns": 1664.0, "ser_cv": 0.23910422155136996, "ser_min_ns": 5664.0, "ser_max_ns": 16697.0, "ser_p5_ns": 7390.0, "ser_p25_ns": 8185.0, "ser_p50_ns": 9331.0, "ser_p75_ns": 11668.0, "ser_p95_ns": 14288.199999999999, "ser_p99_ns": 15264.559999999998, "ser_ci_low_ns": 9624.044892473119, "ser_ci_high_ns": 10583.030376344086, "deser_mean_ns": 15344.494623655914, "deser_median_ns": 14740.0, "deser_std_ns": 2074.461740683047, "deser_mad_ns": 1158.0, "deser_cv": 0.13519257502850196, "deser_min_ns": 10461.0, "deser_max_ns": 20989.0, "deser_p5_ns": 12721.6, "deser_p25_ns": 13878.0, "deser_p50_ns": 14740.0, "deser_p75_ns": 16501.0, "deser_p95_ns": 19473.8, "deser_p99_ns": 20198.719999999998, "deser_ci_low_ns": 14932.268817204302, "deser_ci_high_ns": 15751.354032258065, "total_mean_ns": 25455.107526881722, "total_median_ns": 24451.0, "total_std_ns": 4337.391155036695, "total_mad_ns": 2844.0, "total_cv": 0.17039374712741706, "total_min_ns": 16125.0, "total_max_ns": 37686.0, "total_p5_ns": 20495.4, "total_p25_ns": 21821.0, "total_p50_ns": 24451.0, "total_p75_ns": 28146.0, "total_p95_ns": 33252.0, "total_p99_ns": 34984.88, "total_ci_low_ns": 24580.063440860216, "total_ci_high_ns": 26386.456451612903, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.544259200187949}, {"serializer": "ProtoBuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "2.4.9.1", "avg_time_ser_ns": 4174.903225806452, "avg_time_deser_ns": 6162.440860215053, "avg_time_total_ns": 10337.344086021505, "median_size_bytes": 367.0, "avg_ops_per_sec": 96736.64644211976, "min_ops_per_sec": 70382.88288288288, "max_ops_per_sec": 138370.0013837, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 4174.903225806452, "ser_median_ns": 3990.0, "ser_std_ns": 848.1713586159565, "ser_mad_ns": 499.0, "ser_cv": 0.20315952556052796, "ser_min_ns": 2749.0, "ser_max_ns": 6389.0, "ser_p5_ns": 3101.4, "ser_p25_ns": 3571.0, "ser_p50_ns": 3990.0, "ser_p75_ns": 4651.0, "ser_p95_ns": 5830.399999999999, "ser_p99_ns": 6383.48, "ser_ci_low_ns": 4003.6954301075266, "ser_ci_high_ns": 4345.098387096774, "deser_mean_ns": 6162.440860215053, "deser_median_ns": 6021.0, "deser_std_ns": 817.3817885861511, "deser_mad_ns": 418.0, "deser_cv": 0.13263929133392552, "deser_min_ns": 4478.0, "deser_max_ns": 8617.0, "deser_p5_ns": 5173.2, "deser_p25_ns": 5647.0, "deser_p50_ns": 6021.0, "deser_p75_ns": 6543.0, "deser_p95_ns": 7679.399999999999, "deser_p99_ns": 8253.599999999999, "deser_ci_low_ns": 6007.434139784946, "deser_ci_high_ns": 6340.539784946237, "total_mean_ns": 10337.344086021505, "total_median_ns": 9956.0, "total_std_ns": 1556.8902148794793, "total_mad_ns": 827.0, "total_cv": 0.15060833826599207, "total_min_ns": 7227.0, "total_max_ns": 14208.0, "total_p5_ns": 8559.4, "total_p25_ns": 9162.0, "total_p50_ns": 9956.0, "total_p75_ns": 11041.0, "total_p95_ns": 13628.199999999997, "total_p99_ns": 14009.279999999999, "total_ci_low_ns": 10033.46935483871, "total_ci_high_ns": 10657.337634408603, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 0.9997687593941497, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.255072757527643}, {"serializer": "SpanJson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "4.2.1", "avg_time_ser_ns": 3280.228260869565, "avg_time_deser_ns": 3187.4347826086955, "avg_time_total_ns": 6467.663043478261, "median_size_bytes": 410.0, "avg_ops_per_sec": 154615.352296122, "min_ops_per_sec": 109938.43447669306, "max_ops_per_sec": 282565.69652444194, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 3280.228260869565, "ser_median_ns": 3129.0, "ser_std_ns": 673.3395058821052, "ser_mad_ns": 423.5, "ser_cv": 0.20527214947645372, "ser_min_ns": 1805.0, "ser_max_ns": 5006.0, "ser_p5_ns": 2318.45, "ser_p25_ns": 2814.0, "ser_p50_ns": 3129.0, "ser_p75_ns": 3756.25, "ser_p95_ns": 4449.150000000001, "ser_p99_ns": 4820.360000000001, "ser_ci_low_ns": 3148.965760869565, "ser_ci_high_ns": 3409.8184782608696, "deser_mean_ns": 3187.4347826086955, "deser_median_ns": 3201.5, "deser_std_ns": 499.53222743823324, "deser_mad_ns": 389.5, "deser_cv": 0.15671919945273377, "deser_min_ns": 1734.0, "deser_max_ns": 4197.0, "deser_p5_ns": 2509.3, "deser_p25_ns": 2824.25, "deser_p50_ns": 3201.5, "deser_p75_ns": 3600.25, "deser_p95_ns": 3961.65, "deser_p99_ns": 4099.63, "deser_ci_low_ns": 3087.869565217391, "deser_ci_high_ns": 3291.771467391304, "total_mean_ns": 6467.663043478261, "total_median_ns": 6253.5, "total_std_ns": 1091.5485448993802, "total_mad_ns": 639.0, "total_cv": 0.16877016281793703, "total_min_ns": 3539.0, "total_max_ns": 9096.0, "total_p5_ns": 4809.3, "total_p25_ns": 5832.5, "total_p50_ns": 6253.5, "total_p75_ns": 7296.5, "total_p95_ns": 8357.400000000001, "total_p99_ns": 8742.010000000002, "total_ci_low_ns": 6234.95625, "total_ci_high_ns": 6692.715489130434, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 0.7346891070593735, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.6018943470188454}, {"serializer": "ServiceStack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 5169.244680851064, "avg_time_deser_ns": 6195.627659574468, "avg_time_total_ns": 11364.872340425532, "median_size_bytes": 344.0, "avg_ops_per_sec": 87990.42963667441, "min_ops_per_sec": 56773.021460202115, "max_ops_per_sec": 127210.27859051012, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 5169.244680851064, "ser_median_ns": 4856.0, "ser_std_ns": 1305.764652065718, "ser_mad_ns": 910.0, "ser_cv": 0.2526026010923393, "ser_min_ns": 3034.0, "ser_max_ns": 9159.0, "ser_p5_ns": 3590.3, "ser_p25_ns": 4155.0, "ser_p50_ns": 4856.0, "ser_p75_ns": 6274.0, "ser_p95_ns": 7593.299999999999, "ser_p99_ns": 8431.739999999994, "ser_ci_low_ns": 4911.909574468085, "ser_ci_high_ns": 5436.579787234042, "deser_mean_ns": 6195.627659574468, "deser_median_ns": 6017.5, "deser_std_ns": 1017.8258399731479, "deser_mad_ns": 753.5, "deser_cv": 0.16428131190231254, "deser_min_ns": 4414.0, "deser_max_ns": 9038.0, "deser_p5_ns": 4798.65, "deser_p25_ns": 5520.75, "deser_p50_ns": 6017.5, "deser_p75_ns": 7030.5, "deser_p95_ns": 7873.349999999999, "deser_p99_ns": 8495.809999999996, "deser_ci_low_ns": 5977.677127659575, "deser_ci_high_ns": 6402.268882978723, "total_mean_ns": 11364.872340425532, "total_median_ns": 10617.0, "total_std_ns": 2222.7247650973927, "total_mad_ns": 1338.0, "total_cv": 0.1955785070449958, "total_min_ns": 7861.0, "total_max_ns": 17614.0, "total_p5_ns": 8622.25, "total_p25_ns": 9723.75, "total_p50_ns": 10617.0, "total_p75_ns": 13183.75, "total_p95_ns": 15421.4, "total_p99_ns": 16271.07999999999, "total_ci_low_ns": 10952.516223404255, "total_ci_high_ns": 11846.662499999999, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.804008522223511}, {"serializer": "FsPicklerJson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 15438.434782608696, "avg_time_deser_ns": 13382.326086956522, "avg_time_total_ns": 28820.760869565216, "median_size_bytes": 718.0, "avg_ops_per_sec": 34697.21026886567, "min_ops_per_sec": 22147.903700914707, "max_ops_per_sec": 69454.09084595082, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 15438.434782608696, "ser_median_ns": 14329.0, "ser_std_ns": 4108.686400877402, "ser_mad_ns": 2269.5, "ser_cv": 0.2661336112586888, "ser_min_ns": 6418.0, "ser_max_ns": 25978.0, "ser_p5_ns": 9589.15, "ser_p25_ns": 12749.25, "ser_p50_ns": 14329.0, "ser_p75_ns": 17626.5, "ser_p95_ns": 24549.2, "ser_p99_ns": 25540.29, "ser_ci_low_ns": 14644.686141304348, "ser_ci_high_ns": 16269.365217391303, "deser_mean_ns": 13382.326086956522, "deser_median_ns": 12981.0, "deser_std_ns": 2220.868249718721, "deser_mad_ns": 1160.0, "deser_cv": 0.16595532310958672, "deser_min_ns": 7980.0, "deser_max_ns": 19654.0, "deser_p5_ns": 10209.05, "deser_p25_ns": 11976.5, "deser_p50_ns": 12981.0, "deser_p75_ns": 14368.5, "deser_p95_ns": 17909.85, "deser_p99_ns": 19204.460000000003, "deser_ci_low_ns": 12965.51956521739, "deser_ci_high_ns": 13807.436413043479, "total_mean_ns": 28820.760869565216, "total_median_ns": 26985.0, "total_std_ns": 6221.276538329096, "total_mad_ns": 2971.0, "total_cv": 0.21586094019116536, "total_min_ns": 14398.0, "total_max_ns": 45151.0, "total_p5_ns": 19791.45, "total_p25_ns": 24787.75, "total_p50_ns": 26985.0, "total_p75_ns": 32093.25, "total_p95_ns": 41765.75000000001, "total_p99_ns": 44323.810000000005, "total_ci_low_ns": 27649.550271739132, "total_ci_high_ns": 30084.7625, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.384913262388437}, {"serializer": "MemoryPack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 5486.670212765957, "avg_time_deser_ns": 3281.3297872340427, "avg_time_total_ns": 8768.0, "median_size_bytes": 564.0, "avg_ops_per_sec": 114051.09489051095, "min_ops_per_sec": 70621.46892655367, "max_ops_per_sec": 202388.18053025703, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 5486.670212765957, "ser_median_ns": 5321.5, "ser_std_ns": 1639.4456864709264, "ser_mad_ns": 1257.0, "ser_cv": 0.298805217535472, "ser_min_ns": 2609.0, "ser_max_ns": 10792.0, "ser_p5_ns": 3397.8, "ser_p25_ns": 4124.5, "ser_p50_ns": 5321.5, "ser_p75_ns": 6826.75, "ser_p95_ns": 7906.649999999999, "ser_p99_ns": 9831.309999999992, "ser_ci_low_ns": 5155.0515957446805, "ser_ci_high_ns": 5811.10664893617, "deser_mean_ns": 3281.3297872340427, "deser_median_ns": 3200.0, "deser_std_ns": 709.0306177822241, "deser_mad_ns": 529.5, "deser_cv": 0.21608026737839506, "deser_min_ns": 1960.0, "deser_max_ns": 5227.0, "deser_p5_ns": 2303.9, "deser_p25_ns": 2684.75, "deser_p50_ns": 3200.0, "deser_p75_ns": 3775.25, "deser_p95_ns": 4530.75, "deser_p99_ns": 4742.469999999997, "deser_ci_low_ns": 3138.541755319149, "deser_ci_high_ns": 3425.4792553191487, "total_mean_ns": 8768.0, "total_median_ns": 8448.0, "total_std_ns": 2225.190174305998, "total_mad_ns": 1710.5, "total_cv": 0.25378537571920595, "total_min_ns": 4941.0, "total_max_ns": 14160.0, "total_p5_ns": 5694.85, "total_p25_ns": 6965.75, "total_p50_ns": 8448.0, "total_p75_ns": 10636.0, "total_p95_ns": 12655.65, "total_p99_ns": 13405.769999999995, "total_ci_low_ns": 8308.623936170214, "total_ci_high_ns": 9216.029521276594, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 0.9279341111873713, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.2929661842530056}, {"serializer": "MS Binary", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 18447.23404255319, "avg_time_deser_ns": 17955.787234042553, "avg_time_total_ns": 36403.02127659575, "median_size_bytes": 976.0, "avg_ops_per_sec": 27470.247384189526, "min_ops_per_sec": 19891.392994251386, "max_ops_per_sec": 38946.87646050787, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 18447.23404255319, "ser_median_ns": 17584.0, "ser_std_ns": 3037.0476482520608, "ser_mad_ns": 2127.5, "ser_cv": 0.1646343100134332, "ser_min_ns": 12617.0, "ser_max_ns": 26413.0, "ser_p5_ns": 14630.35, "ser_p25_ns": 16157.0, "ser_p50_ns": 17584.0, "ser_p75_ns": 20416.5, "ser_p95_ns": 24269.149999999998, "ser_p99_ns": 25152.84999999999, "ser_ci_low_ns": 17874.945212765957, "ser_ci_high_ns": 19056.952127659573, "deser_mean_ns": 17955.787234042553, "deser_median_ns": 17537.0, "deser_std_ns": 2511.6489886956583, "deser_mad_ns": 1755.0, "deser_cv": 0.13987963635110348, "deser_min_ns": 13059.0, "deser_max_ns": 25345.0, "deser_p5_ns": 14869.1, "deser_p25_ns": 15973.75, "deser_p50_ns": 17537.0, "deser_p75_ns": 19583.0, "deser_p95_ns": 23324.449999999997, "deser_p99_ns": 25163.649999999998, "deser_ci_low_ns": 17447.554787234043, "deser_ci_high_ns": 18454.662234042553, "total_mean_ns": 36403.02127659575, "total_median_ns": 35616.5, "total_std_ns": 5315.834993391141, "total_mad_ns": 3655.0, "total_cv": 0.14602730232198616, "total_min_ns": 25676.0, "total_max_ns": 50273.0, "total_p5_ns": 29622.7, "total_p25_ns": 32447.5, "total_p50_ns": 35616.5, "total_p75_ns": 39615.5, "total_p95_ns": 47410.2, "total_p99_ns": 50212.55, "total_ci_low_ns": 35404.01781914894, "total_ci_high_ns": 37480.37260638298, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.21580789945999}, {"serializer": "SharpYaml", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "3.13.0", "avg_time_ser_ns": 42137.910112359554, "avg_time_deser_ns": 38728.15730337079, "avg_time_total_ns": 80866.06741573034, "median_size_bytes": 473.0, "avg_ops_per_sec": 12366.126262317495, "min_ops_per_sec": 9402.472850359645, "max_ops_per_sec": 18340.88366377492, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 42137.910112359554, "ser_median_ns": 41158.0, "ser_std_ns": 7970.087815531454, "ser_mad_ns": 6318.0, "ser_cv": 0.18914293077847094, "ser_min_ns": 23145.0, "ser_max_ns": 62702.0, "ser_p5_ns": 30912.6, "ser_p25_ns": 35420.0, "ser_p50_ns": 41158.0, "ser_p75_ns": 47981.0, "ser_p95_ns": 55386.6, "ser_p99_ns": 59445.12000000002, "ser_ci_low_ns": 40520.06179775281, "ser_ci_high_ns": 43829.19831460674, "deser_mean_ns": 38728.15730337079, "deser_median_ns": 38382.0, "deser_std_ns": 2737.6742572137446, "deser_mad_ns": 1631.0, "deser_cv": 0.0706895046869546, "deser_min_ns": 31378.0, "deser_max_ns": 45487.0, "deser_p5_ns": 34940.8, "deser_p25_ns": 36795.0, "deser_p50_ns": 38382.0, "deser_p75_ns": 40396.0, "deser_p95_ns": 43835.799999999996, "deser_p99_ns": 44909.72, "deser_ci_low_ns": 38157.56488764045, "deser_ci_high_ns": 39357.6356741573, "total_mean_ns": 80866.06741573034, "total_median_ns": 80316.0, "total_std_ns": 9859.339802254133, "total_mad_ns": 6801.0, "total_cv": 0.12192184085776701, "total_min_ns": 54523.0, "total_max_ns": 106355.0, "total_p5_ns": 67001.0, "total_p25_ns": 73574.0, "total_p50_ns": 80316.0, "total_p75_ns": 87666.0, "total_p95_ns": 97013.8, "total_p99_ns": 101958.52000000002, "total_ci_low_ns": 78986.23623595505, "total_ci_high_ns": 83036.46292134831, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.931905963986802}, {"serializer": "System.Text.Json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "8.0.0.0", "avg_time_ser_ns": 6980.9375, "avg_time_deser_ns": 6974.875, "avg_time_total_ns": 13955.8125, "median_size_bytes": 410.0, "avg_ops_per_sec": 71654.73167542198, "min_ops_per_sec": 46080.82576839777, "max_ops_per_sec": 125062.53126563282, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 6980.9375, "ser_median_ns": 6804.5, "ser_std_ns": 1906.6396497365117, "ser_mad_ns": 1486.5, "ser_cv": 0.2731208594456707, "ser_min_ns": 3836.0, "ser_max_ns": 12555.0, "ser_p5_ns": 4305.75, "ser_p25_ns": 5298.5, "ser_p50_ns": 6804.5, "ser_p75_ns": 8241.75, "ser_p95_ns": 10289.25, "ser_p99_ns": 11949.849999999999, "ser_ci_low_ns": 6604.191145833333, "ser_ci_high_ns": 7378.735937500001, "deser_mean_ns": 6974.875, "deser_median_ns": 6698.0, "deser_std_ns": 1350.1861567557035, "deser_mad_ns": 1020.0, "deser_cv": 0.19357854538693575, "deser_min_ns": 4160.0, "deser_max_ns": 9822.0, "deser_p5_ns": 5217.25, "deser_p25_ns": 5917.75, "deser_p50_ns": 6698.0, "deser_p75_ns": 7899.25, "deser_p95_ns": 9481.0, "deser_p99_ns": 9784.95, "deser_ci_low_ns": 6713.18203125, "deser_ci_high_ns": 7243.379427083333, "total_mean_ns": 13955.8125, "total_median_ns": 13840.0, "total_std_ns": 3061.834119445402, "total_mad_ns": 2493.0, "total_cv": 0.21939490226351221, "total_min_ns": 7996.0, "total_max_ns": 21701.0, "total_p5_ns": 9979.25, "total_p25_ns": 11369.5, "total_p50_ns": 13840.0, "total_p75_ns": 16327.75, "total_p95_ns": 18967.75, "total_p99_ns": 19971.049999999996, "total_ci_low_ns": 13320.116145833334, "total_ci_high_ns": 14576.348437499999, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.986449604525424}, {"serializer": "Json.Net", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 7824.728260869565, "avg_time_deser_ns": 7185.260869565217, "avg_time_total_ns": 15009.989130434782, "median_size_bytes": 425.0, "avg_ops_per_sec": 66622.30007697773, "min_ops_per_sec": 46772.68475210477, "max_ops_per_sec": 131044.42405975626, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 7824.728260869565, "ser_median_ns": 7494.0, "ser_std_ns": 1613.2351572536286, "ser_mad_ns": 921.0, "ser_cv": 0.20617139707217758, "ser_min_ns": 3783.0, "ser_max_ns": 11881.0, "ser_p5_ns": 5628.05, "ser_p25_ns": 6856.75, "ser_p50_ns": 7494.0, "ser_p75_ns": 8896.5, "ser_p95_ns": 10576.9, "ser_p99_ns": 11677.16, "ser_ci_low_ns": 7507.09972826087, "ser_ci_high_ns": 8168.7967391304355, "deser_mean_ns": 7185.260869565217, "deser_median_ns": 6877.0, "deser_std_ns": 1379.592740268458, "deser_mad_ns": 735.0, "deser_cv": 0.1920031527473181, "deser_min_ns": 3848.0, "deser_max_ns": 10857.0, "deser_p5_ns": 5223.5, "deser_p25_ns": 6283.0, "deser_p50_ns": 6877.0, "deser_p75_ns": 8009.5, "deser_p95_ns": 9506.95, "deser_p99_ns": 10743.25, "deser_ci_low_ns": 6907.6730978260875, "deser_ci_high_ns": 7469.109239130435, "total_mean_ns": 15009.989130434782, "total_median_ns": 14500.5, "total_std_ns": 2820.926161116941, "total_mad_ns": 1576.0, "total_cv": 0.18793658920092965, "total_min_ns": 7631.0, "total_max_ns": 21380.0, "total_p5_ns": 11143.6, "total_p25_ns": 13212.5, "total_p50_ns": 14500.5, "total_p75_ns": 17102.25, "total_p95_ns": 20197.75, "total_p99_ns": 21108.82, "total_ci_low_ns": 14444.61358695652, "total_ci_high_ns": 15543.979891304347, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.829891000638526}, {"serializer": "Apache.Avro", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.12.1", "avg_time_ser_ns": 7390.207792207792, "avg_time_deser_ns": 6846.974025974026, "avg_time_total_ns": 14237.181818181818, "median_size_bytes": 337.0, "avg_ops_per_sec": 70238.61974726868, "min_ops_per_sec": 31333.228889237034, "max_ops_per_sec": 102965.4036243822, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 7390.207792207792, "ser_median_ns": 6631.0, "ser_std_ns": 1903.9348682583816, "ser_mad_ns": 745.0, "ser_cv": 0.2576294093199766, "ser_min_ns": 5055.0, "ser_max_ns": 16373.0, "ser_p5_ns": 5508.6, "ser_p25_ns": 6178.0, "ser_p50_ns": 6631.0, "ser_p75_ns": 8097.0, "ser_p95_ns": 10614.200000000003, "ser_p99_ns": 13142.239999999978, "ser_ci_low_ns": 6991.030519480519, "ser_ci_high_ns": 7837.705519480519, "deser_mean_ns": 6846.974025974026, "deser_median_ns": 6376.0, "deser_std_ns": 1736.3703292699702, "deser_mad_ns": 529.0, "deser_cv": 0.25359674546493705, "deser_min_ns": 4657.0, "deser_max_ns": 15542.0, "deser_p5_ns": 5021.8, "deser_p25_ns": 5982.0, "deser_p50_ns": 6376.0, "deser_p75_ns": 6973.0, "deser_p95_ns": 9947.200000000003, "deser_p99_ns": 12577.23999999998, "deser_ci_low_ns": 6486.9574675324675, "deser_ci_high_ns": 7254.459415584414, "total_mean_ns": 14237.181818181818, "total_median_ns": 13122.0, "total_std_ns": 3451.208147451193, "total_mad_ns": 1158.0, "total_cv": 0.2424080967374999, "total_min_ns": 9712.0, "total_max_ns": 31915.0, "total_p5_ns": 10815.6, "total_p25_ns": 12233.0, "total_p50_ns": 13122.0, "total_p75_ns": 15535.0, "total_p95_ns": 20595.4, "total_p99_ns": 24484.47999999995, "total_ci_low_ns": 13468.82077922078, "total_ci_high_ns": 15088.972402597403, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.864210326846959}, {"serializer": "BinaryPack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.0.3", "avg_time_ser_ns": 3856.3655913978496, "avg_time_deser_ns": 3118.1397849462364, "avg_time_total_ns": 6974.5053763440865, "median_size_bytes": 436.0, "avg_ops_per_sec": 143379.34319927107, "min_ops_per_sec": 102574.62303826034, "max_ops_per_sec": 211999.152003392, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 3856.3655913978496, "ser_median_ns": 3625.0, "ser_std_ns": 706.1808455553478, "ser_mad_ns": 378.0, "ser_cv": 0.18312082421090486, "ser_min_ns": 2373.0, "ser_max_ns": 5724.0, "ser_p5_ns": 2945.4, "ser_p25_ns": 3383.0, "ser_p50_ns": 3625.0, "ser_p75_ns": 4192.0, "ser_p95_ns": 5200.4, "ser_p99_ns": 5328.4, "ser_ci_low_ns": 3716.769623655914, "ser_ci_high_ns": 3998.3887096774192, "deser_mean_ns": 3118.1397849462364, "deser_median_ns": 3029.0, "deser_std_ns": 521.4326750363899, "deser_mad_ns": 363.0, "deser_cv": 0.1672255610713041, "deser_min_ns": 2086.0, "deser_max_ns": 4491.0, "deser_p5_ns": 2456.6, "deser_p25_ns": 2687.0, "deser_p50_ns": 3029.0, "deser_p75_ns": 3492.0, "deser_p95_ns": 4103.4, "deser_p99_ns": 4325.4, "deser_ci_low_ns": 3015.094623655914, "deser_ci_high_ns": 3221.4112903225805, "total_mean_ns": 6974.5053763440865, "total_median_ns": 6752.0, "total_std_ns": 1144.5501358864701, "total_mad_ns": 745.0, "total_cv": 0.16410484674203854, "total_min_ns": 4717.0, "total_max_ns": 9749.0, "total_p5_ns": 5570.2, "total_p25_ns": 6117.0, "total_p50_ns": 6752.0, "total_p75_ns": 7573.0, "total_p95_ns": 9125.4, "total_p99_ns": 9675.4, "total_ci_low_ns": 6748.297580645161, "total_ci_high_ns": 7201.177150537635, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 0.8489998843796971, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.0368040787506567}, {"serializer": "fastJson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "2.4.0.4", "avg_time_ser_ns": 7941.3707865168535, "avg_time_deser_ns": 9196.651685393259, "avg_time_total_ns": 17138.022471910113, "median_size_bytes": 563.0, "avg_ops_per_sec": 58349.78928514296, "min_ops_per_sec": 42551.38079230671, "max_ops_per_sec": 71828.76023559834, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 7941.3707865168535, "ser_median_ns": 7697.0, "ser_std_ns": 1095.0882527949982, "ser_mad_ns": 729.0, "ser_cv": 0.13789662795424168, "ser_min_ns": 6356.0, "ser_max_ns": 11382.0, "ser_p5_ns": 6629.4, "ser_p25_ns": 7153.0, "ser_p50_ns": 7697.0, "ser_p75_ns": 8719.0, "ser_p95_ns": 9920.999999999998, "ser_p99_ns": 10978.960000000003, "ser_ci_low_ns": 7729.34691011236, "ser_ci_high_ns": 8176.513764044944, "deser_mean_ns": 9196.651685393259, "deser_median_ns": 9025.0, "deser_std_ns": 1154.0578319871975, "deser_mad_ns": 849.0, "deser_cv": 0.12548673924664883, "deser_min_ns": 7140.0, "deser_max_ns": 12119.0, "deser_p5_ns": 7599.6, "deser_p25_ns": 8289.0, "deser_p50_ns": 9025.0, "deser_p75_ns": 9915.0, "deser_p95_ns": 11021.2, "deser_p99_ns": 12024.84, "deser_ci_low_ns": 8958.876123595506, "deser_ci_high_ns": 9438.129775280899, "total_mean_ns": 17138.022471910113, "total_median_ns": 16748.0, "total_std_ns": 2178.4818576326793, "total_mad_ns": 1689.0, "total_cv": 0.12711395735437364, "total_min_ns": 13922.0, "total_max_ns": 23501.0, "total_p5_ns": 14349.0, "total_p25_ns": 15366.0, "total_p50_ns": 16748.0, "total_p75_ns": 18850.0, "total_p95_ns": 21167.6, "total_p99_ns": 22139.640000000007, "total_ci_low_ns": 16700.866853932584, "total_ci_high_ns": 17579.314325842697, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.348749941057967}, {"serializer": "Apache.Avro", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.12.1", "avg_time_ser_ns": 398245.4418604651, "avg_time_deser_ns": 323671.22093023255, "avg_time_total_ns": 721916.6627906977, "median_size_bytes": 45556.0, "avg_ops_per_sec": 1385.201438811956, "min_ops_per_sec": 1059.5442688190956, "max_ops_per_sec": 1770.4598769530385, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 398245.4418604651, "ser_median_ns": 400941.5, "ser_std_ns": 61732.00743833921, "ser_mad_ns": 46486.5, "ser_cv": 0.1550099535350577, "ser_min_ns": 250050.0, "ser_max_ns": 556808.0, "ser_p5_ns": 320909.25, "ser_p25_ns": 345967.5, "ser_p50_ns": 400941.5, "ser_p75_ns": 433953.0, "ser_p95_ns": 521293.5, "ser_p99_ns": 544640.2500000001, "ser_ci_low_ns": 384563.449127907, "ser_ci_high_ns": 411433.5360465116, "deser_mean_ns": 323671.22093023255, "deser_median_ns": 322525.5, "deser_std_ns": 21652.052000242467, "deser_mad_ns": 14237.0, "deser_cv": 0.06689520290996022, "deser_min_ns": 279203.0, "deser_max_ns": 386994.0, "deser_p5_ns": 290833.25, "deser_p25_ns": 308917.75, "deser_p50_ns": 322525.5, "deser_p75_ns": 338332.5, "deser_p95_ns": 368024.25, "deser_p99_ns": 376542.4000000001, "deser_ci_low_ns": 319222.71598837205, "deser_ci_high_ns": 328108.66337209305, "total_mean_ns": 721916.6627906977, "total_median_ns": 718039.0, "total_std_ns": 72128.9938282324, "total_mad_ns": 48708.0, "total_cv": 0.09991318603092621, "total_min_ns": 564825.0, "total_max_ns": 943802.0, "total_p5_ns": 624590.5, "total_p25_ns": 669398.0, "total_p50_ns": 718039.0, "total_p75_ns": 765757.0, "total_p95_ns": 843738.75, "total_p99_ns": 908071.4000000003, "total_ci_low_ns": 707619.1729651163, "total_ci_high_ns": 736780.4200581395, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.257666707217458}, {"serializer": "BinaryPack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.0.3", "avg_time_ser_ns": 160031.51612903227, "avg_time_deser_ns": 215170.18279569893, "avg_time_total_ns": 375201.6989247312, "median_size_bytes": 58760.0, "avg_ops_per_sec": 2665.233134247105, "min_ops_per_sec": 2344.5669350414287, "max_ops_per_sec": 3031.2399590176356, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 160031.51612903227, "ser_median_ns": 157622.0, "ser_std_ns": 11048.400917753253, "ser_mad_ns": 6371.0, "ser_cv": 0.06903890674162586, "ser_min_ns": 141337.0, "ser_max_ns": 188171.0, "ser_p5_ns": 144659.6, "ser_p25_ns": 151962.0, "ser_p50_ns": 157622.0, "ser_p75_ns": 165394.0, "ser_p95_ns": 181826.4, "ser_p99_ns": 186917.04, "ser_ci_low_ns": 157862.35349462365, "ser_ci_high_ns": 162313.44059139787, "deser_mean_ns": 215170.18279569893, "deser_median_ns": 215830.0, "deser_std_ns": 13430.282124935165, "deser_mad_ns": 10003.0, "deser_cv": 0.06241702242585828, "deser_min_ns": 185966.0, "deser_max_ns": 248641.0, "deser_p5_ns": 195719.2, "deser_p25_ns": 205971.0, "deser_p50_ns": 215830.0, "deser_p75_ns": 226200.0, "deser_p95_ns": 235592.99999999997, "deser_p99_ns": 247988.72, "deser_ci_low_ns": 212456.29516129033, "deser_ci_high_ns": 217910.4440860215, "total_mean_ns": 375201.6989247312, "total_median_ns": 372185.0, "total_std_ns": 18692.19528991163, "total_mad_ns": 11132.0, "total_cv": 0.04981905823849015, "total_min_ns": 329898.0, "total_max_ns": 426518.0, "total_p5_ns": 348591.8, "total_p25_ns": 362875.0, "total_p50_ns": 372185.0, "total_p75_ns": 386707.0, "total_p95_ns": 404909.8, "total_p99_ns": 420008.08, "total_ci_low_ns": 371315.9970430107, "total_ci_high_ns": 379232.53091397847, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.192265658461293}, {"serializer": "MS Bond Compact", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 117246.675, "avg_time_deser_ns": 155138.125, "avg_time_total_ns": 272384.8, "median_size_bytes": 45824.0, "avg_ops_per_sec": 3671.2768113345533, "min_ops_per_sec": 3325.6842595363996, "max_ops_per_sec": 4118.0903591386605, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 117246.675, "ser_median_ns": 116277.5, "ser_std_ns": 5899.536082973287, "ser_mad_ns": 3450.0, "ser_cv": 0.05031729968439009, "ser_min_ns": 106540.0, "ser_max_ns": 134833.0, "ser_p5_ns": 109659.55, "ser_p25_ns": 113123.75, "ser_p50_ns": 116277.5, "ser_p75_ns": 119890.0, "ser_p95_ns": 127496.99999999999, "ser_p99_ns": 134769.8, "ser_ci_low_ns": 115944.47125, "ser_ci_high_ns": 118557.22374999999, "deser_mean_ns": 155138.125, "deser_median_ns": 157117.5, "deser_std_ns": 10456.361298483827, "deser_mad_ns": 6528.0, "deser_cv": 0.06740033308049731, "deser_min_ns": 132018.0, "deser_max_ns": 175031.0, "deser_p5_ns": 136224.35, "deser_p25_ns": 148463.0, "deser_p50_ns": 157117.5, "deser_p75_ns": 162667.5, "deser_p95_ns": 171454.45, "deser_p99_ns": 174014.27, "deser_ci_low_ns": 152868.46843749998, "deser_ci_high_ns": 157295.4171875, "total_mean_ns": 272384.8, "total_median_ns": 272809.5, "total_std_ns": 13819.823460925223, "total_mad_ns": 9120.0, "total_cv": 0.050736397408832005, "total_min_ns": 242831.0, "total_max_ns": 300690.0, "total_p5_ns": 249015.8, "total_p25_ns": 263537.0, "total_p50_ns": 272809.5, "total_p75_ns": 281283.75, "total_p95_ns": 292441.05, "total_p99_ns": 300594.41, "total_ci_low_ns": 269311.93906249997, "total_ci_high_ns": 275380.781875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.821097474249766}, {"serializer": "GroBuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.9.2", "avg_time_ser_ns": 68539.45238095238, "avg_time_deser_ns": 157097.11904761905, "avg_time_total_ns": 225636.57142857142, "median_size_bytes": 106332.0, "avg_ops_per_sec": 4431.905668787228, "min_ops_per_sec": 3784.2808541878744, "max_ops_per_sec": 5271.7869776318075, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 68539.45238095238, "ser_median_ns": 66884.0, "ser_std_ns": 5871.109752048301, "ser_mad_ns": 2579.5, "ser_cv": 0.0856602956121652, "ser_min_ns": 60357.0, "ser_max_ns": 88996.0, "ser_p5_ns": 61517.3, "ser_p25_ns": 64826.25, "ser_p50_ns": 66884.0, "ser_p75_ns": 70823.75, "ser_p95_ns": 80442.59999999998, "ser_p99_ns": 87441.41, "ser_ci_low_ns": 67352.20892857143, "ser_ci_high_ns": 69853.09166666666, "deser_mean_ns": 157097.11904761905, "deser_median_ns": 157536.5, "deser_std_ns": 11595.933258269266, "deser_mad_ns": 7819.5, "deser_cv": 0.07381378683815534, "deser_min_ns": 128825.0, "deser_max_ns": 188213.0, "deser_p5_ns": 140783.35, "deser_p25_ns": 148933.25, "deser_p50_ns": 157536.5, "deser_p75_ns": 164108.75, "deser_p95_ns": 176876.05, "deser_p99_ns": 181606.2, "deser_ci_low_ns": 154741.23095238095, "deser_ci_high_ns": 159543.69583333333, "total_mean_ns": 225636.57142857142, "total_median_ns": 224761.5, "total_std_ns": 14573.54813722758, "total_mad_ns": 7960.5, "total_cv": 0.06458859060372246, "total_min_ns": 189689.0, "total_max_ns": 264251.0, "total_p5_ns": 203795.8, "total_p25_ns": 217181.5, "total_p50_ns": 224761.5, "total_p75_ns": 233403.5, "total_p95_ns": 253266.3, "total_p99_ns": 256720.41, "total_ci_low_ns": 222617.20208333334, "total_ci_high_ns": 228856.41964285713, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 0.9454595791805094, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.7392387757526726}, {"serializer": "SpanJson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "4.2.1", "avg_time_ser_ns": 83185.91860465116, "avg_time_deser_ns": 108811.75581395348, "avg_time_total_ns": 191997.67441860464, "median_size_bytes": 41574.0, "avg_ops_per_sec": 5208.396419530275, "min_ops_per_sec": 4634.392755517245, "max_ops_per_sec": 5808.853855045861, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 83185.91860465116, "ser_median_ns": 82629.5, "ser_std_ns": 5396.60761462588, "ser_mad_ns": 3200.0, "ser_cv": 0.0648740520649145, "ser_min_ns": 73177.0, "ser_max_ns": 96357.0, "ser_p5_ns": 75750.0, "ser_p25_ns": 79418.75, "ser_p50_ns": 82629.5, "ser_p75_ns": 85439.5, "ser_p95_ns": 93059.75, "ser_p99_ns": 96266.9, "ser_ci_low_ns": 82129.4726744186, "ser_ci_high_ns": 84320.45087209302, "deser_mean_ns": 108811.75581395348, "deser_median_ns": 108547.5, "deser_std_ns": 5097.637053371589, "deser_mad_ns": 3829.0, "deser_cv": 0.04684821980161351, "deser_min_ns": 98974.0, "deser_max_ns": 120330.0, "deser_p5_ns": 101711.0, "deser_p25_ns": 104755.75, "deser_p50_ns": 108547.5, "deser_p75_ns": 112344.5, "deser_p95_ns": 118381.75, "deser_p99_ns": 119647.45000000001, "deser_ci_low_ns": 107795.11715116279, "deser_ci_high_ns": 109905.26424418604, "total_mean_ns": 191997.67441860464, "total_median_ns": 191037.0, "total_std_ns": 9381.730294995896, "total_mad_ns": 6534.5, "total_cv": 0.04886377047745534, "total_min_ns": 172151.0, "total_max_ns": 215778.0, "total_p5_ns": 177089.0, "total_p25_ns": 185158.75, "total_p50_ns": 191037.0, "total_p75_ns": 198520.25, "total_p95_ns": 208914.5, "total_p99_ns": 211931.75000000003, "total_ci_low_ns": 190086.7659883721, "total_ci_high_ns": 194085.43779069767, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "Json.Net (Helper)", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 188743.29787234042, "avg_time_deser_ns": 261269.1595744681, "avg_time_total_ns": 450012.4574468085, "median_size_bytes": 42678.0, "avg_ops_per_sec": 2222.160705669354, "min_ops_per_sec": 1959.485674200236, "max_ops_per_sec": 2464.7904681623017, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 188743.29787234042, "ser_median_ns": 186882.0, "ser_std_ns": 17555.707515888847, "ser_mad_ns": 12636.5, "ser_cv": 0.09301367367101392, "ser_min_ns": 165148.0, "ser_max_ns": 238013.0, "ser_p5_ns": 166989.65, "ser_p25_ns": 174474.5, "ser_p50_ns": 186882.0, "ser_p75_ns": 199515.0, "ser_p95_ns": 225056.59999999998, "ser_p99_ns": 237711.68, "ser_ci_low_ns": 185402.5180851064, "ser_ci_high_ns": 192420.08404255318, "deser_mean_ns": 261269.1595744681, "deser_median_ns": 259219.0, "deser_std_ns": 15587.284847264005, "deser_mad_ns": 10692.0, "deser_cv": 0.0596598728784185, "deser_min_ns": 236776.0, "deser_max_ns": 300869.0, "deser_p5_ns": 240973.3, "deser_p25_ns": 248540.0, "deser_p50_ns": 259219.0, "deser_p75_ns": 269372.25, "deser_p95_ns": 294338.25, "deser_p99_ns": 300467.24, "deser_ci_low_ns": 258301.03218085106, "deser_ci_high_ns": 264512.7135638298, "total_mean_ns": 450012.4574468085, "total_median_ns": 453483.5, "total_std_ns": 26636.148973590964, "total_mad_ns": 16560.0, "total_cv": 0.059189803599468925, "total_min_ns": 405714.0, "total_max_ns": 510338.0, "total_p5_ns": 409938.05, "total_p25_ns": 431383.0, "total_p50_ns": 453483.5, "total_p75_ns": 466541.0, "total_p95_ns": 496336.6, "total_p99_ns": 507646.57999999996, "total_ci_low_ns": 444828.73643617023, "total_ci_high_ns": 455220.7978723404, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.646853353408382}, {"serializer": "FsPicklerJson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 212431.51086956522, "avg_time_deser_ns": 339970.45652173914, "avg_time_total_ns": 552401.9673913043, "median_size_bytes": 60284.0, "avg_ops_per_sec": 1810.2759566959166, "min_ops_per_sec": 1612.393501409232, "max_ops_per_sec": 2099.301142649612, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 212431.51086956522, "ser_median_ns": 211261.5, "ser_std_ns": 16225.461402535067, "ser_mad_ns": 11780.0, "ser_cv": 0.0763797298061757, "ser_min_ns": 182554.0, "ser_max_ns": 254278.0, "ser_p5_ns": 190929.15, "ser_p25_ns": 199347.75, "ser_p50_ns": 211261.5, "ser_p75_ns": 222354.25, "ser_p95_ns": 243553.3, "ser_p99_ns": 251671.76, "ser_ci_low_ns": 209227.71114130437, "ser_ci_high_ns": 215734.76875000002, "deser_mean_ns": 339970.45652173914, "deser_median_ns": 336042.0, "deser_std_ns": 20907.958086043676, "deser_mad_ns": 14174.0, "deser_cv": 0.06149933820707369, "deser_min_ns": 293795.0, "deser_max_ns": 403578.0, "deser_p5_ns": 312711.8, "deser_p25_ns": 324804.75, "deser_p50_ns": 336042.0, "deser_p75_ns": 352932.75, "deser_p95_ns": 374325.15, "deser_p99_ns": 388225.3900000001, "deser_ci_low_ns": 335798.7323369565, "deser_ci_high_ns": 344290.1111413043, "total_mean_ns": 552401.9673913043, "total_median_ns": 555532.0, "total_std_ns": 30785.181061298746, "total_mad_ns": 26253.0, "total_cv": 0.0557296730977996, "total_min_ns": 476349.0, "total_max_ns": 620196.0, "total_p5_ns": 506243.85, "total_p25_ns": 527084.25, "total_p50_ns": 555532.0, "total_p75_ns": 576849.25, "total_p95_ns": 598346.2000000001, "total_p99_ns": 616389.47, "total_ci_low_ns": 546306.3230978261, "total_ci_high_ns": 558769.933423913, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.551137101450038}, {"serializer": "Json.Net", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 188448.71264367815, "avg_time_deser_ns": 262366.0344827586, "avg_time_total_ns": 450814.7471264368, "median_size_bytes": 43089.0, "avg_ops_per_sec": 2218.2060510978295, "min_ops_per_sec": 2008.6976608715738, "max_ops_per_sec": 2478.3884526925212, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 188448.71264367815, "ser_median_ns": 187129.0, "ser_std_ns": 12958.03883103839, "ser_mad_ns": 8572.0, "ser_cv": 0.06876162033295317, "ser_min_ns": 166254.0, "ser_max_ns": 219861.0, "ser_p5_ns": 167966.6, "ser_p25_ns": 179084.0, "ser_p50_ns": 187129.0, "ser_p75_ns": 196822.0, "ser_p95_ns": 209392.3, "ser_p99_ns": 218354.28, "ser_ci_low_ns": 185791.09798850573, "ser_ci_high_ns": 191203.45862068966, "deser_mean_ns": 262366.0344827586, "deser_median_ns": 262732.0, "deser_std_ns": 11190.093760074678, "deser_mad_ns": 8071.0, "deser_cv": 0.042650695171482025, "deser_min_ns": 237216.0, "deser_max_ns": 290766.0, "deser_p5_ns": 242980.3, "deser_p25_ns": 255576.5, "deser_p50_ns": 262732.0, "deser_p75_ns": 271536.5, "deser_p95_ns": 279240.5, "deser_p99_ns": 286201.12, "deser_ci_low_ns": 260045.04626436782, "deser_ci_high_ns": 264711.700862069, "total_mean_ns": 450814.7471264368, "total_median_ns": 447505.0, "total_std_ns": 19848.507181414432, "total_mad_ns": 11862.0, "total_cv": 0.044028078735072224, "total_min_ns": 403488.0, "total_max_ns": 497835.0, "total_p5_ns": 413936.8, "total_p25_ns": 438014.0, "total_p50_ns": 447505.0, "total_p75_ns": 463138.5, "total_p95_ns": 482137.8, "total_p99_ns": 496226.8, "total_ci_low_ns": 446708.3224137931, "total_ci_high_ns": 455245.8543103448, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.568263507039948}, {"serializer": "Migrant", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "0.13.0.0", "avg_time_ser_ns": 103812.77647058823, "avg_time_deser_ns": 125550.01176470588, "avg_time_total_ns": 229362.7882352941, "median_size_bytes": 60084.0, "avg_ops_per_sec": 4359.905142826133, "min_ops_per_sec": 3750.3609722435785, "max_ops_per_sec": 5108.295872496935, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 103812.77647058823, "ser_median_ns": 101096.0, "ser_std_ns": 10591.218001111054, "ser_mad_ns": 6130.0, "ser_cv": 0.10202229784415515, "ser_min_ns": 88765.0, "ser_max_ns": 132450.0, "ser_p5_ns": 90400.0, "ser_p25_ns": 96030.0, "ser_p50_ns": 101096.0, "ser_p75_ns": 110936.0, "ser_p95_ns": 123815.8, "ser_p99_ns": 131972.04, "ser_ci_low_ns": 101574.74117647059, "ser_ci_high_ns": 106037.78588235294, "deser_mean_ns": 125550.01176470588, "deser_median_ns": 125259.0, "deser_std_ns": 8836.247919647738, "deser_mad_ns": 4496.0, "deser_cv": 0.07038030339820127, "deser_min_ns": 106083.0, "deser_max_ns": 148574.0, "deser_p5_ns": 112463.8, "deser_p25_ns": 120882.0, "deser_p50_ns": 125259.0, "deser_p75_ns": 129755.0, "deser_p95_ns": 141121.6, "deser_p99_ns": 147807.08, "deser_ci_low_ns": 123741.84588235295, "deser_ci_high_ns": 127445.09529411765, "total_mean_ns": 229362.7882352941, "total_median_ns": 227064.0, "total_std_ns": 15797.304988731552, "total_mad_ns": 9768.0, "total_cv": 0.06887475126316361, "total_min_ns": 195760.0, "total_max_ns": 266641.0, "total_p5_ns": 205725.4, "total_p25_ns": 219967.0, "total_p50_ns": 227064.0, "total_p75_ns": 238010.0, "total_p95_ns": 257230.6, "total_p99_ns": 265576.72, "total_ci_low_ns": 226063.66147058824, "total_ci_high_ns": 232626.63617647058, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 0.9685362517099864, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.8673421503829823}, {"serializer": "ServiceStack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 91815.04819277108, "avg_time_deser_ns": 239016.9518072289, "avg_time_total_ns": 330832.0, "median_size_bytes": 34972.0, "avg_ops_per_sec": 3022.682207283455, "min_ops_per_sec": 2695.1199463132107, "max_ops_per_sec": 3473.1146197286803, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 91815.04819277108, "ser_median_ns": 91180.0, "ser_std_ns": 4446.897638512183, "ser_mad_ns": 2763.0, "ser_cv": 0.04843321139662924, "ser_min_ns": 83629.0, "ser_max_ns": 102541.0, "ser_p5_ns": 85747.6, "ser_p25_ns": 88623.5, "ser_p50_ns": 91180.0, "ser_p75_ns": 93990.0, "ser_p95_ns": 101203.9, "ser_p99_ns": 102259.73999999999, "ser_ci_low_ns": 90879.72319277108, "ser_ci_high_ns": 92767.2108433735, "deser_mean_ns": 239016.9518072289, "deser_median_ns": 241784.0, "deser_std_ns": 18380.848624815473, "deser_mad_ns": 13212.0, "deser_cv": 0.07690186192165956, "deser_min_ns": 200575.0, "deser_max_ns": 280053.0, "deser_p5_ns": 205896.6, "deser_p25_ns": 225910.0, "deser_p50_ns": 241784.0, "deser_p75_ns": 253315.5, "deser_p95_ns": 264939.39999999997, "deser_p99_ns": 273661.9199999999, "deser_ci_low_ns": 235137.13072289157, "deser_ci_high_ns": 242848.94487951807, "total_mean_ns": 330832.0, "total_median_ns": 334399.0, "total_std_ns": 20691.455508223207, "total_mad_ns": 16041.0, "total_cv": 0.06254369440750353, "total_min_ns": 287926.0, "total_max_ns": 371041.0, "total_p5_ns": 294830.5, "total_p25_ns": 313282.5, "total_p50_ns": 334399.0, "total_p75_ns": 346833.5, "total_p95_ns": 358511.8, "total_p99_ns": 370722.84, "total_ci_low_ns": 326616.2713855422, "total_ci_high_ns": 335458.33945783135, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.65467153688074}, {"serializer": "Hyperion", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "0.12.2", "avg_time_ser_ns": 240374.96629213484, "avg_time_deser_ns": 210448.04494382022, "avg_time_total_ns": 450823.01123595505, "median_size_bytes": 51428.0, "avg_ops_per_sec": 2218.165388804017, "min_ops_per_sec": 1990.83816277491, "max_ops_per_sec": 2471.6990459241683, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 240374.96629213484, "ser_median_ns": 238766.0, "ser_std_ns": 13935.82948525249, "ser_mad_ns": 8242.0, "ser_cv": 0.05797537780334356, "ser_min_ns": 219240.0, "ser_max_ns": 280797.0, "ser_p5_ns": 220528.6, "ser_p25_ns": 230565.0, "ser_p50_ns": 238766.0, "ser_p75_ns": 247861.0, "ser_p95_ns": 266792.6, "ser_p99_ns": 274529.64, "ser_ci_low_ns": 237613.56460674157, "ser_ci_high_ns": 243370.62471910112, "deser_mean_ns": 210448.04494382022, "deser_median_ns": 209763.0, "deser_std_ns": 12818.209338946217, "deser_mad_ns": 7783.0, "deser_cv": 0.06090913955683494, "deser_min_ns": 180618.0, "deser_max_ns": 242630.0, "deser_p5_ns": 190039.0, "deser_p25_ns": 202765.0, "deser_p50_ns": 209763.0, "deser_p75_ns": 218607.0, "deser_p95_ns": 233138.8, "deser_p99_ns": 238123.52000000002, "deser_ci_low_ns": 207808.25393258428, "deser_ci_high_ns": 213075.50393258428, "total_mean_ns": 450823.01123595505, "total_median_ns": 450266.0, "total_std_ns": 22488.976910666894, "total_mad_ns": 18464.0, "total_cv": 0.04988427021285399, "total_min_ns": 404580.0, "total_max_ns": 502301.0, "total_p5_ns": 412723.0, "total_p25_ns": 434847.0, "total_p50_ns": 450266.0, "total_p75_ns": 468923.0, "total_p95_ns": 482203.0, "total_p99_ns": 500797.96, "total_ci_low_ns": 446121.09578651685, "total_ci_high_ns": 455450.9634831461, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.865842979250855}, {"serializer": "CsvHelper", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "33.1.0", "avg_time_ser_ns": 517174.20930232556, "avg_time_deser_ns": 631535.2093023256, "avg_time_total_ns": 1148709.4186046512, "median_size_bytes": 33969.0, "avg_ops_per_sec": 870.5421787302049, "min_ops_per_sec": 725.3088546430283, "max_ops_per_sec": 982.7768359499767, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 517174.20930232556, "ser_median_ns": 513794.0, "ser_std_ns": 48849.72534960814, "ser_mad_ns": 28620.0, "ser_cv": 0.09445506846814157, "ser_min_ns": 437081.0, "ser_max_ns": 671380.0, "ser_p5_ns": 448003.5, "ser_p25_ns": 483296.5, "ser_p50_ns": 513794.0, "ser_p75_ns": 537067.5, "ser_p95_ns": 604121.25, "ser_p99_ns": 659595.6000000001, "ser_ci_low_ns": 507644.47180232557, "ser_ci_high_ns": 527742.9212209302, "deser_mean_ns": 631535.2093023256, "deser_median_ns": 628838.5, "deser_std_ns": 38054.10775697161, "deser_mad_ns": 24230.5, "deser_cv": 0.060256510161976605, "deser_min_ns": 541403.0, "deser_max_ns": 731599.0, "deser_p5_ns": 576442.5, "deser_p25_ns": 607182.75, "deser_p50_ns": 628838.5, "deser_p75_ns": 653391.0, "deser_p95_ns": 697642.75, "deser_p99_ns": 720488.65, "deser_ci_low_ns": 623818.6834302326, "deser_ci_high_ns": 639669.2796511628, "total_mean_ns": 1148709.4186046512, "total_median_ns": 1135702.5, "total_std_ns": 76442.9606528662, "total_mad_ns": 40537.5, "total_cv": 0.06654682151533346, "total_min_ns": 1017525.0, "total_max_ns": 1378723.0, "total_p5_ns": 1040565.75, "total_p25_ns": 1096090.5, "total_p50_ns": 1135702.5, "total_p75_ns": 1186122.25, "total_p95_ns": 1292105.0, "total_p99_ns": 1344026.0000000002, "total_ci_low_ns": 1133108.5712209304, "total_ci_high_ns": 1165352.1712209303, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.489974633621678}, {"serializer": "Jil", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "2.17.0", "avg_time_ser_ns": 222988.55555555556, "avg_time_deser_ns": 154952.55555555556, "avg_time_total_ns": 377941.1111111111, "median_size_bytes": 41574.0, "avg_ops_per_sec": 2645.9148544599834, "min_ops_per_sec": 2342.0355567838233, "max_ops_per_sec": 2949.1391462832, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 222988.55555555556, "ser_median_ns": 223590.0, "ser_std_ns": 14004.14161140053, "ser_mad_ns": 9731.0, "ser_cv": 0.06280206433245192, "ser_min_ns": 198842.0, "ser_max_ns": 256761.0, "ser_p5_ns": 202409.15, "ser_p25_ns": 212415.25, "ser_p50_ns": 223590.0, "ser_p75_ns": 232769.0, "ser_p95_ns": 246533.9, "ser_p99_ns": 252663.44, "ser_ci_low_ns": 220096.15833333335, "ser_ci_high_ns": 225794.17277777777, "deser_mean_ns": 154952.55555555556, "deser_median_ns": 154017.5, "deser_std_ns": 9827.990647116036, "deser_mad_ns": 6842.5, "deser_cv": 0.06342580547884143, "deser_min_ns": 139300.0, "deser_max_ns": 185655.0, "deser_p5_ns": 141449.85, "deser_p25_ns": 147209.75, "deser_p50_ns": 154017.5, "deser_p75_ns": 160862.0, "deser_p95_ns": 171513.25, "deser_p99_ns": 184343.13999999998, "deser_ci_low_ns": 152839.58611111113, "deser_ci_high_ns": 157031.9363888889, "total_mean_ns": 377941.1111111111, "total_median_ns": 378094.0, "total_std_ns": 21302.314860467202, "total_mad_ns": 14892.5, "total_cv": 0.056364111323693816, "total_min_ns": 339082.0, "total_max_ns": 426979.0, "total_p5_ns": 346109.45, "total_p25_ns": 360314.75, "total_p50_ns": 378094.0, "total_p75_ns": 390569.5, "total_p95_ns": 412071.05, "total_p99_ns": 426346.21, "total_ci_low_ns": 373831.92027777777, "total_ci_high_ns": 382272.35666666663, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.162238864906874}, {"serializer": "MS DataContract", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 280238.09523809527, "avg_time_deser_ns": 717752.8928571428, "avg_time_total_ns": 997990.9880952381, "median_size_bytes": 144460.0, "avg_ops_per_sec": 1002.0130561585494, "min_ops_per_sec": 912.5827826656725, "max_ops_per_sec": 1124.1449472494983, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 280238.09523809527, "ser_median_ns": 277708.0, "ser_std_ns": 16190.45391329506, "ser_mad_ns": 10030.5, "ser_cv": 0.057773922205470896, "ser_min_ns": 249138.0, "ser_max_ns": 316378.0, "ser_p5_ns": 258071.45, "ser_p25_ns": 268423.0, "ser_p50_ns": 277708.0, "ser_p75_ns": 290525.5, "ser_p95_ns": 306810.45, "ser_p99_ns": 316274.25, "ser_ci_low_ns": 276793.11904761905, "ser_ci_high_ns": 283630.1458333333, "deser_mean_ns": 717752.8928571428, "deser_median_ns": 716508.5, "deser_std_ns": 33734.42570025065, "deser_mad_ns": 21030.0, "deser_cv": 0.04700005536162283, "deser_min_ns": 640427.0, "deser_max_ns": 786254.0, "deser_p5_ns": 666761.65, "deser_p25_ns": 695563.75, "deser_p50_ns": 716508.5, "deser_p75_ns": 737630.5, "deser_p95_ns": 778630.2999999999, "deser_p99_ns": 785309.46, "deser_ci_low_ns": 710946.844047619, "deser_ci_high_ns": 724724.9544642858, "total_mean_ns": 997990.9880952381, "total_median_ns": 995022.0, "total_std_ns": 43290.71404518555, "total_mad_ns": 30036.5, "total_cv": 0.04337786068370221, "total_min_ns": 889565.0, "total_max_ns": 1095791.0, "total_p5_ns": 932588.95, "total_p25_ns": 967787.0, "total_p50_ns": 995022.0, "total_p75_ns": 1028676.0, "total_p95_ns": 1075857.2, "total_p99_ns": 1082544.2, "total_ci_low_ns": 988922.6175595238, "total_ci_high_ns": 1007191.2913690477, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.757606574011472}, {"serializer": "NetJSON", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.0.0", "avg_time_ser_ns": 93297.77380952382, "avg_time_deser_ns": 156504.52380952382, "avg_time_total_ns": 249802.29761904763, "median_size_bytes": 41574.0, "avg_ops_per_sec": 4003.1657415938403, "min_ops_per_sec": 3398.932735121172, "max_ops_per_sec": 4402.454808801388, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 93297.77380952382, "ser_median_ns": 93085.0, "ser_std_ns": 5649.575363830007, "ser_mad_ns": 3388.5, "ser_cv": 0.060554235467227185, "ser_min_ns": 80213.0, "ser_max_ns": 109553.0, "ser_p5_ns": 85501.3, "ser_p25_ns": 89744.5, "ser_p50_ns": 93085.0, "ser_p75_ns": 96426.75, "ser_p95_ns": 105592.54999999996, "ser_p99_ns": 108942.95, "ser_ci_low_ns": 92182.34613095238, "ser_ci_high_ns": 94572.3806547619, "deser_mean_ns": 156504.52380952382, "deser_median_ns": 155568.0, "deser_std_ns": 10767.51024065261, "deser_mad_ns": 7656.5, "deser_cv": 0.06879999362674889, "deser_min_ns": 137988.0, "deser_max_ns": 186830.0, "deser_p5_ns": 141150.35, "deser_p25_ns": 148266.0, "deser_p50_ns": 155568.0, "deser_p75_ns": 163290.5, "deser_p95_ns": 175538.75, "deser_p99_ns": 180039.77000000002, "deser_ci_low_ns": 154379.7648809524, "deser_ci_high_ns": 158747.96904761906, "total_mean_ns": 249802.29761904763, "total_median_ns": 249421.5, "total_std_ns": 13520.195723595556, "total_mad_ns": 10732.0, "total_cv": 0.05412358434034127, "total_min_ns": 227146.0, "total_max_ns": 294210.0, "total_p5_ns": 231044.85, "total_p25_ns": 238552.0, "total_p50_ns": 249421.5, "total_p75_ns": 259279.0, "total_p95_ns": 271809.45, "total_p99_ns": 280275.13, "total_ci_low_ns": 247120.49672619047, "total_ci_high_ns": 252789.4723214286, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.955685462290547}, {"serializer": "FlatSharp", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "7.5.1", "avg_time_ser_ns": 118902.31707317074, "avg_time_deser_ns": 181842.51219512196, "avg_time_total_ns": 300744.8292682927, "median_size_bytes": 88052.0, "avg_ops_per_sec": 3325.0779487480595, "min_ops_per_sec": 2909.327887071529, "max_ops_per_sec": 3874.482272306363, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 118902.31707317074, "ser_median_ns": 116635.0, "ser_std_ns": 10220.366208169236, "ser_mad_ns": 4784.5, "ser_cv": 0.0859559885774116, "ser_min_ns": 102076.0, "ser_max_ns": 151389.0, "ser_p5_ns": 105877.2, "ser_p25_ns": 112375.5, "ser_p50_ns": 116635.0, "ser_p75_ns": 122421.5, "ser_p95_ns": 142133.25, "ser_p99_ns": 148137.66, "ser_ci_low_ns": 116817.59481707317, "ser_ci_high_ns": 121049.63170731706, "deser_mean_ns": 181842.51219512196, "deser_median_ns": 179715.0, "deser_std_ns": 13869.327193348123, "deser_mad_ns": 9593.0, "deser_cv": 0.0762710931889566, "deser_min_ns": 154036.0, "deser_max_ns": 216213.0, "deser_p5_ns": 162489.15, "deser_p25_ns": 170826.0, "deser_p50_ns": 179715.0, "deser_p75_ns": 189968.0, "deser_p95_ns": 205430.55, "deser_p99_ns": 212222.94, "deser_ci_low_ns": 179005.6399390244, "deser_ci_high_ns": 184802.01524390242, "total_mean_ns": 300744.8292682927, "total_median_ns": 300955.5, "total_std_ns": 18221.230349566744, "total_mad_ns": 12865.5, "total_cv": 0.06058701123440327, "total_min_ns": 258099.0, "total_max_ns": 343722.0, "total_p5_ns": 272442.3, "total_p25_ns": 288502.75, "total_p50_ns": 300955.5, "total_p75_ns": 313839.5, "total_p95_ns": 333712.10000000003, "total_p99_ns": 342204.06, "total_ci_low_ns": 296771.50945121946, "total_ci_high_ns": 304649.0600609756, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.522879841468024}, {"serializer": "System.Text.Json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "8.0.0.0", "avg_time_ser_ns": 139881.78651685393, "avg_time_deser_ns": 237034.8202247191, "avg_time_total_ns": 376916.606741573, "median_size_bytes": 55432.0, "avg_ops_per_sec": 2653.106767157209, "min_ops_per_sec": 2298.126796847889, "max_ops_per_sec": 3074.113809841468, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 139881.78651685393, "ser_median_ns": 137494.0, "ser_std_ns": 12549.365375544177, "ser_mad_ns": 8063.0, "ser_cv": 0.08971407706486607, "ser_min_ns": 117010.0, "ser_max_ns": 180055.0, "ser_p5_ns": 123807.8, "ser_p25_ns": 130321.0, "ser_p50_ns": 137494.0, "ser_p75_ns": 149582.0, "ser_p95_ns": 159782.6, "ser_p99_ns": 175105.88000000003, "ser_ci_low_ns": 137330.76320224718, "ser_ci_high_ns": 142498.49522471908, "deser_mean_ns": 237034.8202247191, "deser_median_ns": 237504.0, "deser_std_ns": 17351.08862026307, "deser_mad_ns": 12555.0, "deser_cv": 0.07320058970160376, "deser_min_ns": 193284.0, "deser_max_ns": 277307.0, "deser_p5_ns": 211259.0, "deser_p25_ns": 222949.0, "deser_p50_ns": 237504.0, "deser_p75_ns": 249532.0, "deser_p95_ns": 265450.6, "deser_p99_ns": 271747.16000000003, "deser_ci_low_ns": 233475.6632022472, "deser_ci_high_ns": 240567.90702247192, "total_mean_ns": 376916.606741573, "total_median_ns": 377027.0, "total_std_ns": 21953.130789157683, "total_mad_ns": 15686.0, "total_cv": 0.05824399985700154, "total_min_ns": 325297.0, "total_max_ns": 435137.0, "total_p5_ns": 344596.2, "total_p25_ns": 361341.0, "total_p50_ns": 377027.0, "total_p75_ns": 391215.0, "total_p95_ns": 408000.8, "total_p99_ns": 428567.80000000005, "total_ci_low_ns": 372175.84129213484, "total_ci_high_ns": 381489.7949438202, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.841733154627356}, {"serializer": "ServiceStack Json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 122003.93406593407, "avg_time_deser_ns": 365199.2197802198, "avg_time_total_ns": 487203.1538461539, "median_size_bytes": 41574.0, "avg_ops_per_sec": 2052.531869109727, "min_ops_per_sec": 1752.7992203549068, "max_ops_per_sec": 2353.223563298184, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 122003.93406593407, "ser_median_ns": 120486.0, "ser_std_ns": 8664.929609000741, "ser_mad_ns": 5150.0, "ser_cv": 0.07102172299065365, "ser_min_ns": 107673.0, "ser_max_ns": 143252.0, "ser_p5_ns": 110043.5, "ser_p25_ns": 116278.0, "ser_p50_ns": 120486.0, "ser_p75_ns": 126431.0, "ser_p95_ns": 140347.0, "ser_p99_ns": 142157.6, "ser_ci_low_ns": 120284.6771978022, "ser_ci_high_ns": 123794.47142857143, "deser_mean_ns": 365199.2197802198, "deser_median_ns": 364501.0, "deser_std_ns": 27204.97056699676, "deser_mad_ns": 18346.0, "deser_cv": 0.07449350681353853, "deser_min_ns": 317276.0, "deser_max_ns": 428480.0, "deser_p5_ns": 324992.5, "deser_p25_ns": 346293.5, "deser_p50_ns": 364501.0, "deser_p75_ns": 382353.0, "deser_p95_ns": 415022.0, "deser_p99_ns": 424160.0, "deser_ci_low_ns": 359524.2321428571, "deser_ci_high_ns": 370899.9895604396, "total_mean_ns": 487203.1538461539, "total_median_ns": 487266.0, "total_std_ns": 32573.46108547846, "total_mad_ns": 22897.0, "total_cv": 0.06685806696515005, "total_min_ns": 424949.0, "total_max_ns": 570516.0, "total_p5_ns": 436249.5, "total_p25_ns": 463740.5, "total_p50_ns": 487266.0, "total_p75_ns": 508230.0, "total_p95_ns": 546336.5, "total_p99_ns": 557096.9999999999, "total_ci_low_ns": 480615.59807692305, "total_ci_high_ns": 494095.27747252746, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.117453450391016}, {"serializer": "SharpYaml", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "3.13.0", "avg_time_ser_ns": 364186.6296296296, "avg_time_deser_ns": 1264552.2839506173, "avg_time_total_ns": 1628738.913580247, "median_size_bytes": 60670.0, "avg_ops_per_sec": 613.9719458177792, "min_ops_per_sec": 562.7861063868344, "max_ops_per_sec": 673.9516345348992, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 364186.6296296296, "ser_median_ns": 365020.0, "ser_std_ns": 17948.739855101558, "ser_mad_ns": 13350.0, "ser_cv": 0.04928445581144772, "ser_min_ns": 331796.0, "ser_max_ns": 396811.0, "ser_p5_ns": 336559.0, "ser_p25_ns": 351273.0, "ser_p50_ns": 365020.0, "ser_p75_ns": 375411.0, "ser_p95_ns": 394585.0, "ser_p99_ns": 395922.2, "ser_ci_low_ns": 360288.56265432097, "ser_ci_high_ns": 367973.0839506173, "deser_mean_ns": 1264552.2839506173, "deser_median_ns": 1265711.0, "deser_std_ns": 60907.308846154614, "deser_mad_ns": 45672.0, "deser_cv": 0.04816511710838295, "deser_min_ns": 1151566.0, "deser_max_ns": 1412795.0, "deser_p5_ns": 1167706.0, "deser_p25_ns": 1217559.0, "deser_p50_ns": 1265711.0, "deser_p75_ns": 1308404.0, "deser_p95_ns": 1362229.0, "deser_p99_ns": 1383573.4000000001, "deser_ci_low_ns": 1251373.7283950618, "deser_ci_high_ns": 1277776.3839506174, "total_mean_ns": 1628738.913580247, "total_median_ns": 1636417.0, "total_std_ns": 70163.88155404416, "total_mad_ns": 52936.0, "total_cv": 0.04307865488386468, "total_min_ns": 1483786.0, "total_max_ns": 1776874.0, "total_p5_ns": 1515273.0, "total_p25_ns": 1575774.0, "total_p50_ns": 1636417.0, "total_p75_ns": 1682554.0, "total_p95_ns": 1733109.0, "total_p99_ns": 1754374.8, "total_ci_low_ns": 1612846.8009259258, "total_ci_high_ns": 1643784.2657407408, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.9997373044928}, {"serializer": "MS Bond Json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 99415.01204819277, "avg_time_deser_ns": 204604.8674698795, "avg_time_total_ns": 304019.8795180723, "median_size_bytes": 41574.0, "avg_ops_per_sec": 3289.2585892251022, "min_ops_per_sec": 2819.085206850377, "max_ops_per_sec": 3659.3577095348223, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 99415.01204819277, "ser_median_ns": 98950.0, "ser_std_ns": 5193.671300055848, "ser_mad_ns": 3329.0, "ser_cv": 0.05224232430347789, "ser_min_ns": 89491.0, "ser_max_ns": 113832.0, "ser_p5_ns": 92593.0, "ser_p25_ns": 95809.0, "ser_p50_ns": 98950.0, "ser_p75_ns": 102196.0, "ser_p95_ns": 110304.49999999997, "ser_p99_ns": 112397.81999999999, "ser_ci_low_ns": 98291.56174698795, "ser_ci_high_ns": 100507.47379518072, "deser_mean_ns": 204604.8674698795, "deser_median_ns": 201916.0, "deser_std_ns": 14391.249012533906, "deser_mad_ns": 6691.0, "deser_cv": 0.07033678714731693, "deser_min_ns": 183781.0, "deser_max_ns": 242527.0, "deser_p5_ns": 184978.8, "deser_p25_ns": 196395.5, "deser_p50_ns": 201916.0, "deser_p75_ns": 208966.5, "deser_p95_ns": 236235.59999999995, "deser_p99_ns": 241187.12, "deser_ci_low_ns": 201611.4472891566, "deser_ci_high_ns": 207769.4984939759, "total_mean_ns": 304019.8795180723, "total_median_ns": 302130.0, "total_std_ns": 17228.499925780656, "total_mad_ns": 8818.0, "total_cv": 0.05666899136033806, "total_min_ns": 273272.0, "total_max_ns": 354725.0, "total_p5_ns": 278153.4, "total_p25_ns": 293799.5, "total_p50_ns": 302130.0, "total_p75_ns": 313361.0, "total_p95_ns": 334665.3, "total_p99_ns": 347668.07999999996, "total_ci_low_ns": 300453.23674698797, "total_ci_high_ns": 307555.4436746988, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.078844303992351}, {"serializer": "LightProto", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.3.4", "avg_time_ser_ns": 179882.07954545456, "avg_time_deser_ns": 184699.48863636365, "avg_time_total_ns": 364581.5681818182, "median_size_bytes": 49952.0, "avg_ops_per_sec": 2742.870422624592, "min_ops_per_sec": 2282.906962409654, "max_ops_per_sec": 3237.1783458666087, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 179882.07954545456, "ser_median_ns": 178787.0, "ser_std_ns": 13248.701228232867, "ser_mad_ns": 9046.5, "ser_cv": 0.07365214623775261, "ser_min_ns": 155423.0, "ser_max_ns": 212001.0, "ser_p5_ns": 162670.9, "ser_p25_ns": 169876.5, "ser_p50_ns": 178787.0, "ser_p75_ns": 187838.25, "ser_p95_ns": 204346.94999999998, "ser_p99_ns": 211833.96, "ser_ci_low_ns": 177229.54232954545, "ser_ci_high_ns": 182613.78125, "deser_mean_ns": 184699.48863636365, "deser_median_ns": 184134.0, "deser_std_ns": 14709.582808178959, "deser_mad_ns": 9359.5, "deser_cv": 0.07964062551975543, "deser_min_ns": 151561.0, "deser_max_ns": 226229.0, "deser_p5_ns": 160757.75, "deser_p25_ns": 175551.0, "deser_p50_ns": 184134.0, "deser_p75_ns": 194087.0, "deser_p95_ns": 209138.55, "deser_p99_ns": 217949.20999999996, "deser_ci_low_ns": 181818.71846590907, "deser_ci_high_ns": 187725.77414772726, "total_mean_ns": 364581.5681818182, "total_median_ns": 364761.0, "total_std_ns": 22824.89041244504, "total_mad_ns": 15317.5, "total_cv": 0.06260571681194312, "total_min_ns": 308911.0, "total_max_ns": 438038.0, "total_p5_ns": 327529.4, "total_p25_ns": 348554.5, "total_p50_ns": 364761.0, "total_p75_ns": 378315.25, "total_p95_ns": 401647.05, "total_p99_ns": 413461.3699999999, "total_ci_low_ns": 359938.4204545454, "total_ci_high_ns": 369183.7585227273, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.806655753983431}, {"serializer": "NetSerializer", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "4.1.2", "avg_time_ser_ns": 136491.80459770115, "avg_time_deser_ns": 180548.33333333334, "avg_time_total_ns": 317040.1379310345, "median_size_bytes": 50228.0, "avg_ops_per_sec": 3154.174756943644, "min_ops_per_sec": 2815.133029111291, "max_ops_per_sec": 3705.680066405787, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 136491.80459770115, "ser_median_ns": 134899.0, "ser_std_ns": 10374.753105315696, "ser_mad_ns": 5113.0, "ser_cv": 0.07601008086818446, "ser_min_ns": 118888.0, "ser_max_ns": 162700.0, "ser_p5_ns": 121045.9, "ser_p25_ns": 130523.0, "ser_p50_ns": 134899.0, "ser_p75_ns": 140657.0, "ser_p95_ns": 157115.0, "ser_p99_ns": 162154.76, "ser_ci_low_ns": 134416.475, "ser_ci_high_ns": 138605.8948275862, "deser_mean_ns": 180548.33333333334, "deser_median_ns": 180345.0, "deser_std_ns": 12993.773598067246, "deser_mad_ns": 8619.0, "deser_cv": 0.07196839404813436, "deser_min_ns": 150447.0, "deser_max_ns": 209791.0, "deser_p5_ns": 160455.4, "deser_p25_ns": 172563.0, "deser_p50_ns": 180345.0, "deser_p75_ns": 189364.0, "deser_p95_ns": 200646.8, "deser_p99_ns": 208053.8, "deser_ci_low_ns": 177816.8985632184, "deser_ci_high_ns": 183294.85574712645, "total_mean_ns": 317040.1379310345, "total_median_ns": 318753.0, "total_std_ns": 18979.988918057643, "total_mad_ns": 11427.0, "total_cv": 0.05986620193240752, "total_min_ns": 269856.0, "total_max_ns": 355223.0, "total_p5_ns": 282023.6, "total_p25_ns": 307605.5, "total_p50_ns": 318753.0, "total_p75_ns": 330028.0, "total_p95_ns": 346363.4, "total_p99_ns": 350494.72000000003, "total_ci_low_ns": 313036.2416666667, "total_ci_high_ns": 321001.68591954024, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.300943340061583}, {"serializer": "YamlDotNet", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "17.1.0", "avg_time_ser_ns": 3663222.793103448, "avg_time_deser_ns": 2997528.942528736, "avg_time_total_ns": 6660751.735632184, "median_size_bytes": 47670.0, "avg_ops_per_sec": 150.13320413226424, "min_ops_per_sec": 132.46057708304855, "max_ops_per_sec": 164.24913834902023, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 3663222.793103448, "ser_median_ns": 3646903.0, "ser_std_ns": 192715.10546533408, "ser_mad_ns": 93763.0, "ser_cv": 0.05260807664446411, "ser_min_ns": 3281727.0, "ser_max_ns": 4286020.0, "ser_p5_ns": 3322141.7, "ser_p25_ns": 3563595.5, "ser_p50_ns": 3646903.0, "ser_p75_ns": 3762655.0, "ser_p95_ns": 3983774.6, "ser_p99_ns": 4131844.3600000003, "ser_ci_low_ns": 3622619.0945402295, "ser_ci_high_ns": 3704318.211781609, "deser_mean_ns": 2997528.942528736, "deser_median_ns": 2888098.0, "deser_std_ns": 283339.379025067, "deser_mad_ns": 92206.0, "deser_cv": 0.09452431801577202, "deser_min_ns": 2653688.0, "deser_max_ns": 3788552.0, "deser_p5_ns": 2753058.3, "deser_p25_ns": 2817909.5, "deser_p50_ns": 2888098.0, "deser_p75_ns": 3017703.5, "deser_p95_ns": 3600961.8, "deser_p99_ns": 3759032.5, "deser_ci_low_ns": 2940332.095402299, "deser_ci_high_ns": 3056257.656321839, "total_mean_ns": 6660751.735632184, "total_median_ns": 6577783.0, "total_std_ns": 338649.91370342363, "total_mad_ns": 208012.0, "total_cv": 0.05084259662340977, "total_min_ns": 6088312.0, "total_max_ns": 7549416.0, "total_p5_ns": 6220758.8, "total_p25_ns": 6430369.0, "total_p50_ns": 6577783.0, "total_p75_ns": 6830270.0, "total_p95_ns": 7331176.2, "total_p99_ns": 7525207.0, "total_ci_low_ns": 6592405.750574713, "total_ci_high_ns": 6729360.338505747, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.80661978046147}, {"serializer": "YAXLib", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "4.4.0", "avg_time_ser_ns": 989765.8666666667, "avg_time_deser_ns": 1294246.0133333334, "avg_time_total_ns": 2284011.88, "median_size_bytes": 119814.0, "avg_ops_per_sec": 437.8260939693536, "min_ops_per_sec": 391.0267188556994, "max_ops_per_sec": 486.3444213376806, "runs": 75, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 24, "ser_mean_ns": 989765.8666666667, "ser_median_ns": 985259.0, "ser_std_ns": 62998.93016752151, "ser_mad_ns": 41413.0, "ser_cv": 0.06365033619485111, "ser_min_ns": 870650.0, "ser_max_ns": 1158883.0, "ser_p5_ns": 880581.5, "ser_p25_ns": 949293.5, "ser_p50_ns": 985259.0, "ser_p75_ns": 1029214.0, "ser_p95_ns": 1098043.7, "ser_p99_ns": 1123832.1600000001, "ser_ci_low_ns": 975671.3359999999, "ser_ci_high_ns": 1004265.1266666667, "deser_mean_ns": 1294246.0133333334, "deser_median_ns": 1291447.0, "deser_std_ns": 63819.40902063465, "deser_mad_ns": 37934.0, "deser_cv": 0.049310106705500005, "deser_min_ns": 1175336.0, "deser_max_ns": 1475241.0, "deser_p5_ns": 1193669.7, "deser_p25_ns": 1257849.0, "deser_p50_ns": 1291447.0, "deser_p75_ns": 1334372.5, "deser_p95_ns": 1418736.4, "deser_p99_ns": 1457828.8, "deser_ci_low_ns": 1279843.7043333333, "deser_ci_high_ns": 1308892.5506666666, "total_mean_ns": 2284011.88, "total_median_ns": 2287328.0, "total_std_ns": 109788.80396014395, "total_mad_ns": 63472.0, "total_cv": 0.04806840319943693, "total_min_ns": 2056156.0, "total_max_ns": 2557370.0, "total_p5_ns": 2085795.1, "total_p25_ns": 2228101.0, "total_p50_ns": 2287328.0, "total_p75_ns": 2352112.5, "total_p95_ns": 2460075.1999999997, "total_p99_ns": 2525792.72, "total_ci_low_ns": 2260105.995666667, "total_ci_high_ns": 2309294.6826666663, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.68336541378007}, {"serializer": "Utf8Json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.3.7", "avg_time_ser_ns": 97074.43181818182, "avg_time_deser_ns": 175117.7159090909, "avg_time_total_ns": 272192.1477272727, "median_size_bytes": 41574.0, "avg_ops_per_sec": 3673.875269179205, "min_ops_per_sec": 3309.515850926168, "max_ops_per_sec": 4234.865648887289, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 97074.43181818182, "ser_median_ns": 96308.0, "ser_std_ns": 7412.365638789947, "ser_mad_ns": 4837.0, "ser_cv": 0.0763575485321731, "ser_min_ns": 84345.0, "ser_max_ns": 115001.0, "ser_p5_ns": 87040.2, "ser_p25_ns": 91337.0, "ser_p50_ns": 96308.0, "ser_p75_ns": 100969.0, "ser_p95_ns": 112621.85, "ser_p99_ns": 114691.28, "ser_ci_low_ns": 95655.23153409091, "ser_ci_high_ns": 98661.4596590909, "deser_mean_ns": 175117.7159090909, "deser_median_ns": 174755.0, "deser_std_ns": 9953.10371502492, "deser_mad_ns": 6576.5, "deser_cv": 0.05683664650007134, "deser_min_ns": 151790.0, "deser_max_ns": 199108.0, "deser_p5_ns": 159855.35, "deser_p25_ns": 168139.5, "deser_p50_ns": 174755.0, "deser_p75_ns": 180997.5, "deser_p95_ns": 193558.9, "deser_p99_ns": 198753.04, "deser_ci_low_ns": 173042.10227272726, "deser_ci_high_ns": 177241.68863636363, "total_mean_ns": 272192.1477272727, "total_median_ns": 271860.5, "total_std_ns": 13983.65461294892, "total_mad_ns": 10772.5, "total_cv": 0.05137420285525675, "total_min_ns": 236135.0, "total_max_ns": 302159.0, "total_p5_ns": 251756.65, "total_p25_ns": 261245.0, "total_p50_ns": 271860.5, "total_p75_ns": 282866.0, "total_p95_ns": 294307.6, "total_p99_ns": 301296.83, "total_ci_low_ns": 269427.2224431818, "total_ci_high_ns": 275282.1815340909, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.690851158138387}, {"serializer": "fastJson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "2.4.0.4", "avg_time_ser_ns": 148077.57954545456, "avg_time_deser_ns": 230645.19318181818, "avg_time_total_ns": 378722.7727272727, "median_size_bytes": 43062.0, "avg_ops_per_sec": 2640.4538412062266, "min_ops_per_sec": 2260.3876112675803, "max_ops_per_sec": 2902.471163948986, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 148077.57954545456, "ser_median_ns": 145077.5, "ser_std_ns": 12664.878540806063, "ser_mad_ns": 6137.5, "ser_cv": 0.08552867071222214, "ser_min_ns": 131077.0, "ser_max_ns": 184258.0, "ser_p5_ns": 133951.05, "ser_p25_ns": 139215.75, "ser_p50_ns": 145077.5, "ser_p75_ns": 151531.75, "ser_p95_ns": 176806.8, "ser_p99_ns": 184017.88, "ser_ci_low_ns": 145450.38977272727, "ser_ci_high_ns": 150744.42954545454, "deser_mean_ns": 230645.19318181818, "deser_median_ns": 228115.0, "deser_std_ns": 12686.92586684251, "deser_mad_ns": 9214.5, "deser_cv": 0.055006244404327886, "deser_min_ns": 209342.0, "deser_max_ns": 271316.0, "deser_p5_ns": 213665.8, "deser_p25_ns": 220088.75, "deser_p50_ns": 228115.0, "deser_p75_ns": 239271.25, "deser_p95_ns": 250233.44999999998, "deser_p99_ns": 263063.17999999993, "deser_ci_low_ns": 227967.4153409091, "deser_ci_high_ns": 233338.68267045452, "total_mean_ns": 378722.7727272727, "total_median_ns": 375324.5, "total_std_ns": 21995.61054576769, "total_mad_ns": 16361.0, "total_cv": 0.05807839435524848, "total_min_ns": 344534.0, "total_max_ns": 442402.0, "total_p5_ns": 349024.85, "total_p25_ns": 360624.75, "total_p50_ns": 375324.5, "total_p75_ns": 394944.25, "total_p95_ns": 422265.05, "total_p99_ns": 432758.04999999993, "total_ci_low_ns": 374367.78721590905, "total_ci_high_ns": 383345.9244318182, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.950786072379875}, {"serializer": "ZeroFormatter", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.6.4", "avg_time_ser_ns": 99652.3908045977, "avg_time_deser_ns": 161350.6091954023, "avg_time_total_ns": 261003.0, "median_size_bytes": 58624.0, "avg_ops_per_sec": 3831.3735857442252, "min_ops_per_sec": 3306.834565680348, "max_ops_per_sec": 4494.8668620435465, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 99652.3908045977, "ser_median_ns": 96498.0, "ser_std_ns": 10834.943129197207, "ser_mad_ns": 4495.0, "ser_cv": 0.10872737765461932, "ser_min_ns": 83903.0, "ser_max_ns": 132654.0, "ser_p5_ns": 88051.4, "ser_p25_ns": 92518.0, "ser_p50_ns": 96498.0, "ser_p75_ns": 102023.5, "ser_p95_ns": 121975.8, "ser_p99_ns": 131296.06, "ser_ci_low_ns": 97432.13218390805, "ser_ci_high_ns": 101993.84942528735, "deser_mean_ns": 161350.6091954023, "deser_median_ns": 160765.0, "deser_std_ns": 12413.284692971143, "deser_mad_ns": 9024.0, "deser_cv": 0.07693360908193497, "deser_min_ns": 137552.0, "deser_max_ns": 192359.0, "deser_p5_ns": 141107.9, "deser_p25_ns": 152232.5, "deser_p50_ns": 160765.0, "deser_p75_ns": 170101.0, "deser_p95_ns": 180938.5, "deser_p99_ns": 185820.42, "deser_ci_low_ns": 158820.0870689655, "deser_ci_high_ns": 163962.12873563217, "total_mean_ns": 261003.0, "total_median_ns": 258968.0, "total_std_ns": 18127.433955581066, "total_mad_ns": 12139.0, "total_cv": 0.06945297163473625, "total_min_ns": 222476.0, "total_max_ns": 302404.0, "total_p5_ns": 235988.6, "total_p25_ns": 248188.5, "total_p50_ns": 258968.0, "total_p75_ns": 271371.5, "total_p95_ns": 295825.9, "total_p99_ns": 301689.34, "total_ci_low_ns": 257068.19913793105, "total_ci_high_ns": 264894.7068965517, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.752075184488388}, {"serializer": "MS Bond Fast", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 119367.03571428571, "avg_time_deser_ns": 153346.30952380953, "avg_time_total_ns": 272713.34523809527, "median_size_bytes": 46092.0, "avg_ops_per_sec": 3666.853923583899, "min_ops_per_sec": 3192.399535186628, "max_ops_per_sec": 4294.591820520419, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 119367.03571428571, "ser_median_ns": 117356.5, "ser_std_ns": 10725.239273817477, "ser_mad_ns": 4798.0, "ser_cv": 0.08985093086745634, "ser_min_ns": 103489.0, "ser_max_ns": 155669.0, "ser_p5_ns": 107677.1, "ser_p25_ns": 112333.5, "ser_p50_ns": 117356.5, "ser_p75_ns": 122036.75, "ser_p95_ns": 145536.25, "ser_p99_ns": 150470.71000000002, "ser_ci_low_ns": 117205.13363095238, "ser_ci_high_ns": 121641.51458333332, "deser_mean_ns": 153346.30952380953, "deser_median_ns": 151835.5, "deser_std_ns": 11827.011716575096, "deser_mad_ns": 7183.0, "deser_cv": 0.07712615812732525, "deser_min_ns": 127190.0, "deser_max_ns": 183786.0, "deser_p5_ns": 130646.85, "deser_p25_ns": 147291.25, "deser_p50_ns": 151835.5, "deser_p75_ns": 160600.5, "deser_p95_ns": 172129.6, "deser_p99_ns": 182421.48, "deser_ci_low_ns": 150850.9886904762, "deser_ci_high_ns": 155834.66160714286, "total_mean_ns": 272713.34523809527, "total_median_ns": 270477.0, "total_std_ns": 18339.973995523633, "total_mad_ns": 11061.5, "total_cv": 0.0672500056039125, "total_min_ns": 232851.0, "total_max_ns": 313244.0, "total_p5_ns": 241848.2, "total_p25_ns": 262025.75, "total_p50_ns": 270477.0, "total_p75_ns": 283080.25, "total_p95_ns": 306737.0, "total_p99_ns": 312443.88, "total_ci_low_ns": 268902.00238095236, "total_ci_high_ns": 276693.9895833333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.535689857416617}, {"serializer": "FsPickler", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 161809.24137931035, "avg_time_deser_ns": 246607.2643678161, "avg_time_total_ns": 408416.5057471264, "median_size_bytes": 53504.0, "avg_ops_per_sec": 2448.4808667824905, "min_ops_per_sec": 2166.6500556829064, "max_ops_per_sec": 2817.3775849439344, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 161809.24137931035, "ser_median_ns": 158915.0, "ser_std_ns": 12596.356544066406, "ser_mad_ns": 7386.0, "ser_cv": 0.07784695383706948, "ser_min_ns": 140565.0, "ser_max_ns": 200506.0, "ser_p5_ns": 146962.7, "ser_p25_ns": 152913.0, "ser_p50_ns": 158915.0, "ser_p75_ns": 168273.0, "ser_p95_ns": 188315.0, "ser_p99_ns": 194581.46, "ser_ci_low_ns": 159202.35229885057, "ser_ci_high_ns": 164462.25747126437, "deser_mean_ns": 246607.2643678161, "deser_median_ns": 245831.0, "deser_std_ns": 15965.319539158512, "deser_mad_ns": 11907.0, "deser_cv": 0.06473985906330054, "deser_min_ns": 211479.0, "deser_max_ns": 281573.0, "deser_p5_ns": 222183.7, "deser_p25_ns": 234748.5, "deser_p50_ns": 245831.0, "deser_p75_ns": 258029.0, "deser_p95_ns": 273158.6, "deser_p99_ns": 280213.34, "deser_ci_low_ns": 243268.22327586208, "deser_ci_high_ns": 249946.41925287357, "total_mean_ns": 408416.5057471264, "total_median_ns": 407197.0, "total_std_ns": 22681.391077921515, "total_mad_ns": 15661.0, "total_cv": 0.05553495208630191, "total_min_ns": 354940.0, "total_max_ns": 461542.0, "total_p5_ns": 377124.7, "total_p25_ns": 391614.0, "total_p50_ns": 407197.0, "total_p75_ns": 422994.0, "total_p95_ns": 442721.0, "total_p99_ns": 461408.7, "total_ci_low_ns": 403725.86867816094, "total_ci_high_ns": 413183.80229885055, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.389002041019934}, {"serializer": "MS Binary", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 397574.5375, "avg_time_deser_ns": 479303.6125, "avg_time_total_ns": 876878.15, "median_size_bytes": 69780.0, "avg_ops_per_sec": 1140.4093031625887, "min_ops_per_sec": 1036.6271469843998, "max_ops_per_sec": 1286.0876185772784, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 397574.5375, "ser_median_ns": 393562.5, "ser_std_ns": 24626.49329993494, "ser_mad_ns": 15983.5, "ser_cv": 0.06194182719745965, "ser_min_ns": 351323.0, "ser_max_ns": 457241.0, "ser_p5_ns": 359118.4, "ser_p25_ns": 380164.5, "ser_p50_ns": 393562.5, "ser_p75_ns": 416706.5, "ser_p95_ns": 442693.8, "ser_p99_ns": 455270.74, "ser_ci_low_ns": 392210.2909375, "ser_ci_high_ns": 403098.77749999997, "deser_mean_ns": 479303.6125, "deser_median_ns": 478271.5, "deser_std_ns": 27112.316839723662, "deser_mad_ns": 20409.5, "deser_cv": 0.05656605986820862, "deser_min_ns": 426229.0, "deser_max_ns": 545098.0, "deser_p5_ns": 437012.05, "deser_p25_ns": 458819.75, "deser_p50_ns": 478271.5, "deser_p75_ns": 501246.75, "deser_p95_ns": 523921.2, "deser_p99_ns": 536528.8699999999, "deser_ci_low_ns": 473411.53250000003, "deser_ci_high_ns": 485286.81093750003, "total_mean_ns": 876878.15, "total_median_ns": 875316.5, "total_std_ns": 44677.53628342729, "total_mad_ns": 32297.5, "total_cv": 0.05095067802000459, "total_min_ns": 777552.0, "total_max_ns": 964667.0, "total_p5_ns": 806736.25, "total_p25_ns": 847262.0, "total_p50_ns": 875316.5, "total_p75_ns": 910045.75, "total_p95_ns": 952545.3, "total_p99_ns": 964264.89, "total_ci_low_ns": 866978.765, "total_ci_high_ns": 886287.9543750001, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.482008413157008}, {"serializer": "Google.Protobuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "3.35.1", "avg_time_ser_ns": 193354.68292682926, "avg_time_deser_ns": 171382.51219512196, "avg_time_total_ns": 364737.1951219512, "median_size_bytes": 49952.0, "avg_ops_per_sec": 2741.700088102192, "min_ops_per_sec": 2408.303831611396, "max_ops_per_sec": 3076.6201481700264, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 193354.68292682926, "ser_median_ns": 191029.5, "ser_std_ns": 9791.93114521055, "ser_mad_ns": 4575.5, "ser_cv": 0.05064232733849062, "ser_min_ns": 173159.0, "ser_max_ns": 224535.0, "ser_p5_ns": 181040.5, "ser_p25_ns": 187416.5, "ser_p50_ns": 191029.5, "ser_p75_ns": 197095.25, "ser_p95_ns": 214147.85, "ser_p99_ns": 221520.18, "ser_ci_low_ns": 191277.22896341461, "ser_ci_high_ns": 195553.8256097561, "deser_mean_ns": 171382.51219512196, "deser_median_ns": 171892.0, "deser_std_ns": 15045.137266374373, "deser_mad_ns": 11374.0, "deser_cv": 0.08778688720145042, "deser_min_ns": 145244.0, "deser_max_ns": 207024.0, "deser_p5_ns": 148086.6, "deser_p25_ns": 158281.25, "deser_p50_ns": 171892.0, "deser_p75_ns": 181799.0, "deser_p95_ns": 196298.25, "deser_p99_ns": 206779.38, "deser_ci_low_ns": 168103.72347560976, "deser_ci_high_ns": 174623.1292682927, "total_mean_ns": 364737.1951219512, "total_median_ns": 362889.0, "total_std_ns": 20276.282564928304, "total_mad_ns": 14536.0, "total_cv": 0.05559148569464887, "total_min_ns": 325032.0, "total_max_ns": 415230.0, "total_p5_ns": 335287.7, "total_p25_ns": 349573.75, "total_p50_ns": 362889.0, "total_p75_ns": 380751.5, "total_p95_ns": 399803.45, "total_p99_ns": 414957.84, "total_ci_low_ns": 360380.79298780486, "total_ci_high_ns": 369190.56707317074, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.970787217046153}, {"serializer": "MS DataContract Json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 218228.07954545456, "avg_time_deser_ns": 753662.8409090909, "avg_time_total_ns": 971890.9204545454, "median_size_bytes": 55432.0, "avg_ops_per_sec": 1028.922051800122, "min_ops_per_sec": 923.8139845113348, "max_ops_per_sec": 1140.1663502705044, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 218228.07954545456, "ser_median_ns": 217121.5, "ser_std_ns": 15152.56829960055, "ser_mad_ns": 10332.5, "ser_cv": 0.06943454907893479, "ser_min_ns": 187344.0, "ser_max_ns": 261596.0, "ser_p5_ns": 197988.1, "ser_p25_ns": 206842.25, "ser_p50_ns": 217121.5, "ser_p75_ns": 227434.0, "ser_p95_ns": 240849.4, "ser_p99_ns": 261061.82, "ser_ci_low_ns": 215100.60397727272, "ser_ci_high_ns": 221433.6071022727, "deser_mean_ns": 753662.8409090909, "deser_median_ns": 749021.5, "deser_std_ns": 34785.381009806224, "deser_mad_ns": 26379.0, "deser_cv": 0.04615509631315648, "deser_min_ns": 689721.0, "deser_max_ns": 866131.0, "deser_p5_ns": 706434.6, "deser_p25_ns": 726164.0, "deser_p50_ns": 749021.5, "deser_p75_ns": 777943.75, "deser_p95_ns": 804792.5499999999, "deser_p99_ns": 857296.1499999999, "deser_ci_low_ns": 746920.8400568181, "deser_ci_high_ns": 761488.4181818182, "total_mean_ns": 971890.9204545454, "total_median_ns": 966691.0, "total_std_ns": 40621.27000375219, "total_mad_ns": 31457.0, "total_cv": 0.04179612047898745, "total_min_ns": 877065.0, "total_max_ns": 1082469.0, "total_p5_ns": 912669.6, "total_p25_ns": 941072.25, "total_p50_ns": 966691.0, "total_p75_ns": 1002449.5, "total_p95_ns": 1034778.45, "total_p99_ns": 1080362.73, "total_ci_low_ns": 963759.1991477273, "total_ci_high_ns": 980054.712215909, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.20318729330122}, {"serializer": "MemoryPack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 108775.03658536586, "avg_time_deser_ns": 166409.1463414634, "avg_time_total_ns": 275184.18292682926, "median_size_bytes": 75824.0, "avg_ops_per_sec": 3633.929789728857, "min_ops_per_sec": 3093.8009510344123, "max_ops_per_sec": 4412.342203611944, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 108775.03658536586, "ser_median_ns": 104787.5, "ser_std_ns": 12436.334715131832, "ser_mad_ns": 4030.5, "ser_cv": 0.11433077942816307, "ser_min_ns": 92881.0, "ser_max_ns": 148116.0, "ser_p5_ns": 98133.95, "ser_p25_ns": 100877.5, "ser_p50_ns": 104787.5, "ser_p75_ns": 109891.0, "ser_p95_ns": 137881.30000000002, "ser_p99_ns": 143635.08, "ser_ci_low_ns": 106217.72499999999, "ser_ci_high_ns": 111453.88262195123, "deser_mean_ns": 166409.1463414634, "deser_median_ns": 164621.0, "deser_std_ns": 13061.74612485527, "deser_mad_ns": 8855.0, "deser_cv": 0.07849175608444747, "deser_min_ns": 133756.0, "deser_max_ns": 198844.0, "deser_p5_ns": 146561.8, "deser_p25_ns": 158264.0, "deser_p50_ns": 164621.0, "deser_p75_ns": 175028.5, "deser_p95_ns": 190414.35, "deser_p99_ns": 197807.2, "deser_ci_low_ns": 163659.84542682927, "deser_ci_high_ns": 169254.48231707315, "total_mean_ns": 275184.18292682926, "total_median_ns": 272604.0, "total_std_ns": 19556.427979357675, "total_mad_ns": 10548.5, "total_cv": 0.07106668621487477, "total_min_ns": 226637.0, "total_max_ns": 323227.0, "total_p5_ns": 245671.6, "total_p25_ns": 262649.0, "total_p50_ns": 272604.0, "total_p75_ns": 286619.25, "total_p95_ns": 313098.7, "total_p99_ns": 320034.79, "total_ci_low_ns": 271014.03109756095, "total_ci_high_ns": 279555.70457317075, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.440409544718878}, {"serializer": "MS XmlSerializer", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 323863.2298850575, "avg_time_deser_ns": 804796.4367816092, "avg_time_total_ns": 1128659.6666666667, "median_size_bytes": 119953.0, "avg_ops_per_sec": 886.0066763556418, "min_ops_per_sec": 769.9823905027292, "max_ops_per_sec": 965.8140460268341, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 323863.2298850575, "ser_median_ns": 322886.0, "ser_std_ns": 20725.849197796313, "ser_mad_ns": 14096.0, "ser_cv": 0.06399568486102031, "ser_min_ns": 282721.0, "ser_max_ns": 384310.0, "ser_p5_ns": 294478.8, "ser_p25_ns": 308226.0, "ser_p50_ns": 322886.0, "ser_p75_ns": 335195.5, "ser_p95_ns": 360950.9, "ser_p99_ns": 376021.32, "ser_ci_low_ns": 319610.20862068963, "ser_ci_high_ns": 328426.2327586207, "deser_mean_ns": 804796.4367816092, "deser_median_ns": 806485.0, "deser_std_ns": 43498.00239297313, "deser_mad_ns": 31103.0, "deser_cv": 0.05404845300623121, "deser_min_ns": 715581.0, "deser_max_ns": 914421.0, "deser_p5_ns": 739498.6, "deser_p25_ns": 767763.0, "deser_p50_ns": 806485.0, "deser_p75_ns": 835032.0, "deser_p95_ns": 870031.3, "deser_p99_ns": 911273.4, "deser_ci_low_ns": 795787.2166666667, "deser_ci_high_ns": 813835.7896551724, "total_mean_ns": 1128659.6666666667, "total_median_ns": 1123584.0, "total_std_ns": 57753.03296267302, "total_mad_ns": 49629.0, "total_cv": 0.051169572784715754, "total_min_ns": 1035396.0, "total_max_ns": 1298731.0, "total_p5_ns": 1047373.1, "total_p25_ns": 1078047.0, "total_p50_ns": 1123584.0, "total_p75_ns": 1175732.0, "total_p95_ns": 1210848.8, "total_p99_ns": 1280161.8800000001, "total_ci_low_ns": 1116943.5066091956, "total_ci_high_ns": 1140760.0735632183, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.47781837328716}, {"serializer": "Ceras", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "4.1.7", "avg_time_ser_ns": 134424.69318181818, "avg_time_deser_ns": 211871.4090909091, "avg_time_total_ns": 346296.1022727273, "median_size_bytes": 45756.0, "avg_ops_per_sec": 2887.7021526867916, "min_ops_per_sec": 2589.6739341549505, "max_ops_per_sec": 3223.2590372125255, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 134424.69318181818, "ser_median_ns": 132571.5, "ser_std_ns": 9777.709670420443, "ser_mad_ns": 5122.5, "ser_cv": 0.07273745201854731, "ser_min_ns": 118848.0, "ser_max_ns": 158640.0, "ser_p5_ns": 120816.65, "ser_p25_ns": 127487.5, "ser_p50_ns": 132571.5, "ser_p75_ns": 138106.25, "ser_p95_ns": 154617.3, "ser_p99_ns": 158544.3, "ser_ci_low_ns": 132399.41505681816, "ser_ci_high_ns": 136548.76647727273, "deser_mean_ns": 211871.4090909091, "deser_median_ns": 210738.0, "deser_std_ns": 13125.647063753286, "deser_mad_ns": 7584.5, "deser_cv": 0.06195100660382816, "deser_min_ns": 185532.0, "deser_max_ns": 249668.0, "deser_p5_ns": 191035.05, "deser_p25_ns": 203810.5, "deser_p50_ns": 210738.0, "deser_p75_ns": 221374.0, "deser_p95_ns": 231972.4, "deser_p99_ns": 238622.47999999995, "deser_ci_low_ns": 209125.57386363635, "deser_ci_high_ns": 214625.0536931818, "total_mean_ns": 346296.1022727273, "total_median_ns": 345072.5, "total_std_ns": 18650.99736511584, "total_mad_ns": 12123.5, "total_cv": 0.05385852524100069, "total_min_ns": 310245.0, "total_max_ns": 386149.0, "total_p5_ns": 315744.4, "total_p25_ns": 336166.0, "total_p50_ns": 345072.5, "total_p75_ns": 358800.25, "total_p95_ns": 377796.64999999997, "total_p99_ns": 383545.95999999996, "total_ci_low_ns": 342478.2147727273, "total_ci_high_ns": 350087.7553977273, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.37036555224627}, {"serializer": "ExtendedXmlSerializer", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "3.10.0.0", "avg_time_ser_ns": 112574.22727272728, "avg_time_deser_ns": 93064.45454545454, "avg_time_total_ns": 205638.68181818182, "median_size_bytes": 41942.0, "avg_ops_per_sec": 4862.898318343449, "min_ops_per_sec": 4092.892283260889, "max_ops_per_sec": 5648.919644118062, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 112574.22727272728, "ser_median_ns": 110408.5, "ser_std_ns": 9989.846293074166, "ser_mad_ns": 6315.5, "ser_cv": 0.08874008318859987, "ser_min_ns": 97320.0, "ser_max_ns": 137335.0, "ser_p5_ns": 99998.4, "ser_p25_ns": 105126.75, "ser_p50_ns": 110408.5, "ser_p75_ns": 118184.5, "ser_p95_ns": 131765.94999999998, "ser_p99_ns": 136805.16999999998, "ser_ci_low_ns": 110389.24573863635, "ser_ci_high_ns": 114679.75198863637, "deser_mean_ns": 93064.45454545454, "deser_median_ns": 91226.5, "deser_std_ns": 9572.887345824203, "deser_mad_ns": 5598.5, "deser_cv": 0.102862982355402, "deser_min_ns": 79679.0, "deser_max_ns": 119904.0, "deser_p5_ns": 80888.8, "deser_p25_ns": 86351.25, "deser_p50_ns": 91226.5, "deser_p75_ns": 98182.0, "deser_p95_ns": 114407.29999999997, "deser_p99_ns": 117623.72999999998, "deser_ci_low_ns": 91138.42698863636, "deser_ci_high_ns": 95109.64829545454, "total_mean_ns": 205638.68181818182, "total_median_ns": 202370.0, "total_std_ns": 16225.662471320818, "total_mad_ns": 11701.0, "total_cv": 0.07890374674579442, "total_min_ns": 177025.0, "total_max_ns": 244326.0, "total_p5_ns": 182481.75, "total_p25_ns": 193231.0, "total_p50_ns": 202370.0, "total_p75_ns": 217940.25, "total_p95_ns": 233820.8, "total_p99_ns": 240709.40999999997, "total_ci_low_ns": 202290.48011363638, "total_ci_high_ns": 208921.1255681818, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 0.5096458773784355, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.021815517546901}, {"serializer": "SharpSerializer", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 893774.6666666666, "avg_time_deser_ns": 3016017.8266666667, "avg_time_total_ns": 3909792.493333333, "median_size_bytes": 235300.0, "avg_ops_per_sec": 255.7680495077732, "min_ops_per_sec": 230.44469373439313, "max_ops_per_sec": 282.8035103834137, "runs": 75, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 24, "ser_mean_ns": 893774.6666666666, "ser_median_ns": 885739.0, "ser_std_ns": 48859.18277389966, "ser_mad_ns": 26253.0, "ser_cv": 0.05466610835605804, "ser_min_ns": 810622.0, "ser_max_ns": 1057718.0, "ser_p5_ns": 825518.3, "ser_p25_ns": 863338.5, "ser_p50_ns": 885739.0, "ser_p75_ns": 917670.5, "ser_p95_ns": 970977.2999999999, "ser_p99_ns": 1054629.98, "ser_ci_low_ns": 882903.973, "ser_ci_high_ns": 905193.558, "deser_mean_ns": 3016017.8266666667, "deser_median_ns": 2997402.0, "deser_std_ns": 137877.688292566, "deser_mad_ns": 61440.0, "deser_cv": 0.04571514368167704, "deser_min_ns": 2712455.0, "deser_max_ns": 3455410.0, "deser_p5_ns": 2809774.0, "deser_p25_ns": 2939184.5, "deser_p50_ns": 2997402.0, "deser_p75_ns": 3063359.0, "deser_p95_ns": 3277487.1999999997, "deser_p99_ns": 3414266.0000000005, "deser_ci_low_ns": 2984705.8716666666, "deser_ci_high_ns": 3049039.5579999997, "total_mean_ns": 3909792.493333333, "total_median_ns": 3899449.0, "total_std_ns": 159164.24218027396, "total_mad_ns": 77981.0, "total_cv": 0.04070912777383151, "total_min_ns": 3536024.0, "total_max_ns": 4339436.0, "total_p5_ns": 3651260.6, "total_p25_ns": 3823960.5, "total_p50_ns": 3899449.0, "total_p75_ns": 3977387.0, "total_p95_ns": 4201662.3, "total_p99_ns": 4329502.24, "total_ci_low_ns": 3875420.1366666663, "total_ci_high_ns": 3944832.345333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 34.009566519134374}, {"serializer": "ProtoBuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "2.4.9.1", "avg_time_ser_ns": 115104.96551724138, "avg_time_deser_ns": 297470.8620689655, "avg_time_total_ns": 412575.8275862069, "median_size_bytes": 49952.0, "avg_ops_per_sec": 2423.796871112261, "min_ops_per_sec": 2109.7046413502107, "max_ops_per_sec": 2774.9488715670414, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 115104.96551724138, "ser_median_ns": 111907.0, "ser_std_ns": 10671.249942532806, "ser_mad_ns": 4725.0, "ser_cv": 0.09270885834142731, "ser_min_ns": 98832.0, "ser_max_ns": 148253.0, "ser_p5_ns": 103547.7, "ser_p25_ns": 107715.0, "ser_p50_ns": 111907.0, "ser_p75_ns": 117941.0, "ser_p95_ns": 138601.1, "ser_p99_ns": 142645.80000000002, "ser_ci_low_ns": 112870.44166666667, "ser_ci_high_ns": 117381.88103448275, "deser_mean_ns": 297470.8620689655, "deser_median_ns": 297459.0, "deser_std_ns": 20724.066330231228, "deser_mad_ns": 13899.0, "deser_cv": 0.06966755058324525, "deser_min_ns": 257102.0, "deser_max_ns": 340552.0, "deser_p5_ns": 263667.2, "deser_p25_ns": 283495.5, "deser_p50_ns": 297459.0, "deser_p75_ns": 311102.0, "deser_p95_ns": 334708.9, "deser_p99_ns": 339990.42, "deser_ci_low_ns": 293365.2867816092, "deser_ci_high_ns": 301585.6629310345, "total_mean_ns": 412575.8275862069, "total_median_ns": 411792.0, "total_std_ns": 26297.6103606246, "total_mad_ns": 19821.0, "total_cv": 0.06374006570981129, "total_min_ns": 360367.0, "total_max_ns": 474000.0, "total_p5_ns": 370949.2, "total_p25_ns": 391299.0, "total_p50_ns": 411792.0, "total_p75_ns": 429614.5, "total_p95_ns": 456071.4, "total_p99_ns": 470736.3, "total_ci_low_ns": 406990.81034482754, "total_ci_high_ns": 417916.47758620686, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "SpanJson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.098240364597542}, {"serializer": "System.Text.Json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "8.0.0.0", "avg_time_ser_ns": 126747.6559139785, "avg_time_deser_ns": 221171.40860215054, "avg_time_total_ns": 347919.06451612903, "median_size_bytes": 41574.0, "avg_ops_per_sec": 2874.231687736794, "min_ops_per_sec": 2604.7160989687927, "max_ops_per_sec": 3368.080699213553, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 126747.6559139785, "ser_median_ns": 123101.0, "ser_std_ns": 13055.584902300909, "ser_mad_ns": 7900.0, "ser_cv": 0.10300454717017817, "ser_min_ns": 102931.0, "ser_max_ns": 163498.0, "ser_p5_ns": 109902.2, "ser_p25_ns": 116739.0, "ser_p50_ns": 123101.0, "ser_p75_ns": 135892.0, "ser_p95_ns": 149925.8, "ser_p99_ns": 161051.72, "ser_ci_low_ns": 124270.89865591399, "ser_ci_high_ns": 129487.14650537634, "deser_mean_ns": 221171.40860215054, "deser_median_ns": 221570.0, "deser_std_ns": 12441.770582297919, "deser_mad_ns": 8852.0, "deser_cv": 0.05625397360776651, "deser_min_ns": 193974.0, "deser_max_ns": 252899.0, "deser_p5_ns": 201772.4, "deser_p25_ns": 211506.0, "deser_p50_ns": 221570.0, "deser_p75_ns": 227259.0, "deser_p95_ns": 241714.4, "deser_p99_ns": 250254.91999999998, "deser_ci_low_ns": 218591.12688172044, "deser_ci_high_ns": 223544.1809139785, "total_mean_ns": 347919.06451612903, "total_median_ns": 346912.0, "total_std_ns": 19725.112265513137, "total_mad_ns": 16432.0, "total_cv": 0.05669454271770356, "total_min_ns": 296905.0, "total_max_ns": 383919.0, "total_p5_ns": 314965.4, "total_p25_ns": 335258.0, "total_p50_ns": 346912.0, "total_p75_ns": 365180.0, "total_p95_ns": 380304.4, "total_p99_ns": 382948.4, "total_ci_low_ns": 343945.58387096773, "total_ci_high_ns": 351962.0008064516, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.213246047723572}, {"serializer": "ZeroFormatter", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.6.4", "avg_time_ser_ns": 87555.93478260869, "avg_time_deser_ns": 107463.57608695653, "avg_time_total_ns": 195019.51086956522, "median_size_bytes": 43967.0, "avg_ops_per_sec": 5127.692073173281, "min_ops_per_sec": 4444.325929086335, "max_ops_per_sec": 5931.444366017569, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 87555.93478260869, "ser_median_ns": 84670.0, "ser_std_ns": 9208.041938835222, "ser_mad_ns": 3841.5, "ser_cv": 0.10516753617784712, "ser_min_ns": 72720.0, "ser_max_ns": 112936.0, "ser_p5_ns": 76833.65, "ser_p25_ns": 81686.75, "ser_p50_ns": 84670.0, "ser_p75_ns": 92783.0, "ser_p95_ns": 106444.1, "ser_p99_ns": 108081.15000000002, "ser_ci_low_ns": 85692.71711956522, "ser_ci_high_ns": 89431.44076086956, "deser_mean_ns": 107463.57608695653, "deser_median_ns": 107259.0, "deser_std_ns": 5556.63037712545, "deser_mad_ns": 4143.0, "deser_cv": 0.05170710467171853, "deser_min_ns": 95698.0, "deser_max_ns": 123739.0, "deser_p5_ns": 98141.15, "deser_p25_ns": 103843.75, "deser_p50_ns": 107259.0, "deser_p75_ns": 111779.0, "deser_p95_ns": 115215.3, "deser_p99_ns": 119180.81000000001, "deser_ci_low_ns": 106365.94673913044, "deser_ci_high_ns": 108524.28858695652, "total_mean_ns": 195019.51086956522, "total_median_ns": 194804.5, "total_std_ns": 11775.973850207025, "total_mad_ns": 7577.5, "total_cv": 0.0603835677656024, "total_min_ns": 168593.0, "total_max_ns": 225006.0, "total_p5_ns": 176401.8, "total_p25_ns": 186789.25, "total_p50_ns": 194804.5, "total_p75_ns": 201971.25, "total_p95_ns": 215367.45, "total_p99_ns": 223858.49, "total_ci_low_ns": 192647.50489130433, "total_ci_high_ns": 197442.76820652175, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.959937979834127}, {"serializer": "LightProto", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.3.4", "avg_time_ser_ns": 165211.1914893617, "avg_time_deser_ns": 131215.6170212766, "avg_time_total_ns": 296426.8085106383, "median_size_bytes": 37463.0, "avg_ops_per_sec": 3373.514038842784, "min_ops_per_sec": 2986.215628658114, "max_ops_per_sec": 3764.9751888135056, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 165211.1914893617, "ser_median_ns": 162089.0, "ser_std_ns": 11925.651399243183, "ser_mad_ns": 8046.0, "ser_cv": 0.07218428298794215, "ser_min_ns": 144670.0, "ser_max_ns": 193539.0, "ser_p5_ns": 148486.1, "ser_p25_ns": 156821.75, "ser_p50_ns": 162089.0, "ser_p75_ns": 172931.0, "ser_p95_ns": 185951.75, "ser_p99_ns": 191030.78999999998, "ser_ci_low_ns": 162808.11462765958, "ser_ci_high_ns": 167586.33909574465, "deser_mean_ns": 131215.6170212766, "deser_median_ns": 130106.0, "deser_std_ns": 7213.254541298027, "deser_mad_ns": 4458.5, "deser_cv": 0.054972530747833155, "deser_min_ns": 117884.0, "deser_max_ns": 149969.0, "deser_p5_ns": 119883.2, "deser_p25_ns": 126900.75, "deser_p50_ns": 130106.0, "deser_p75_ns": 135548.75, "deser_p95_ns": 144645.44999999998, "deser_p99_ns": 148109.93, "deser_ci_low_ns": 129783.65186170214, "deser_ci_high_ns": 132711.56170212766, "total_mean_ns": 296426.8085106383, "total_median_ns": 295371.5, "total_std_ns": 15993.387106058173, "total_mad_ns": 11453.0, "total_cv": 0.05395391593093441, "total_min_ns": 265606.0, "total_max_ns": 334872.0, "total_p5_ns": 270294.1, "total_p25_ns": 285880.75, "total_p50_ns": 295371.5, "total_p75_ns": 309560.75, "total_p95_ns": 320258.35, "total_p99_ns": 331791.83999999997, "total_ci_low_ns": 293359.7968085106, "total_ci_high_ns": 299585.48856382974, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.013932888326389}, {"serializer": "ProtoBuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "2.4.9.1", "avg_time_ser_ns": 95890.908045977, "avg_time_deser_ns": 245031.8735632184, "avg_time_total_ns": 340922.7816091954, "median_size_bytes": 37463.0, "avg_ops_per_sec": 2933.2155371954996, "min_ops_per_sec": 2516.292997156589, "max_ops_per_sec": 3256.554630332201, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 95890.908045977, "ser_median_ns": 95029.0, "ser_std_ns": 5846.492835864783, "ser_mad_ns": 3856.0, "ser_cv": 0.0609702520812667, "ser_min_ns": 85659.0, "ser_max_ns": 112586.0, "ser_p5_ns": 88250.2, "ser_p25_ns": 91346.5, "ser_p50_ns": 95029.0, "ser_p75_ns": 99216.0, "ser_p95_ns": 106703.9, "ser_p99_ns": 111643.44, "ser_ci_low_ns": 94646.87988505748, "ser_ci_high_ns": 97093.12068965516, "deser_mean_ns": 245031.8735632184, "deser_median_ns": 239829.0, "deser_std_ns": 20243.046030102563, "deser_mad_ns": 11696.0, "deser_cv": 0.08261392991748824, "deser_min_ns": 216818.0, "deser_max_ns": 299208.0, "deser_p5_ns": 221015.2, "deser_p25_ns": 228669.0, "deser_p50_ns": 239829.0, "deser_p75_ns": 253950.0, "deser_p95_ns": 289424.0, "deser_p99_ns": 298114.94, "deser_ci_low_ns": 240945.00545977012, "deser_ci_high_ns": 249317.40775862068, "total_mean_ns": 340922.7816091954, "total_median_ns": 337639.0, "total_std_ns": 23866.487690573762, "total_mad_ns": 16491.0, "total_cv": 0.0700055525122761, "total_min_ns": 307073.0, "total_max_ns": 397410.0, "total_p5_ns": 311768.1, "total_p25_ns": 321053.0, "total_p50_ns": 337639.0, "total_p75_ns": 354058.0, "total_p95_ns": 387854.5, "total_p99_ns": 394447.3, "total_ci_low_ns": 336126.816954023, "total_ci_high_ns": 346032.90977011493, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.843293673106107}, {"serializer": "YamlDotNet", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "17.1.0", "avg_time_ser_ns": 3773313.717948718, "avg_time_deser_ns": 2878620.6025641025, "avg_time_total_ns": 6651934.320512821, "median_size_bytes": 47673.0, "avg_ops_per_sec": 150.33221192762866, "min_ops_per_sec": 134.8928384312934, "max_ops_per_sec": 169.4124184385088, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 3773313.717948718, "ser_median_ns": 3737530.0, "ser_std_ns": 255813.3096810472, "ser_mad_ns": 154068.5, "ser_cv": 0.06779539916445503, "ser_min_ns": 3300587.0, "ser_max_ns": 4444789.0, "ser_p5_ns": 3368670.8, "ser_p25_ns": 3622817.25, "ser_p50_ns": 3737530.0, "ser_p75_ns": 3931690.25, "ser_p95_ns": 4203310.25, "ser_p99_ns": 4378557.45, "ser_ci_low_ns": 3719923.951282051, "ser_ci_high_ns": 3831463.792628205, "deser_mean_ns": 2878620.6025641025, "deser_median_ns": 2879889.0, "deser_std_ns": 110834.76121175147, "deser_mad_ns": 57812.5, "deser_cv": 0.038502733258084273, "deser_min_ns": 2573971.0, "deser_max_ns": 3249841.0, "deser_p5_ns": 2699282.05, "deser_p25_ns": 2822883.75, "deser_p50_ns": 2879889.0, "deser_p75_ns": 2935092.0, "deser_p95_ns": 3035427.45, "deser_p99_ns": 3172039.4300000006, "deser_ci_low_ns": 2854320.4, "deser_ci_high_ns": 2902675.1003205124, "total_mean_ns": 6651934.320512821, "total_median_ns": 6638567.0, "total_std_ns": 305947.5288481222, "total_mad_ns": 154074.0, "total_cv": 0.0459937687455302, "total_min_ns": 5902755.0, "total_max_ns": 7413292.0, "total_p5_ns": 6115059.2, "total_p25_ns": 6487826.25, "total_p50_ns": 6638567.0, "total_p75_ns": 6814771.25, "total_p95_ns": 7162320.849999999, "total_p99_ns": 7324223.0200000005, "total_ci_low_ns": 6584005.822435897, "total_ci_high_ns": 6716578.185576923, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.841547720552835}, {"serializer": "Migrant", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "0.13.0.0", "avg_time_ser_ns": 75106.2891566265, "avg_time_deser_ns": 70549.92771084337, "avg_time_total_ns": 145656.2168674699, "median_size_bytes": 45062.0, "avg_ops_per_sec": 6865.481072530416, "min_ops_per_sec": 6015.037593984963, "max_ops_per_sec": 7841.107791708812, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 75106.2891566265, "ser_median_ns": 74637.0, "ser_std_ns": 4441.612258173169, "ser_mad_ns": 2531.0, "ser_cv": 0.05913768750990533, "ser_min_ns": 67203.0, "ser_max_ns": 88941.0, "ser_p5_ns": 68473.5, "ser_p25_ns": 72110.5, "ser_p50_ns": 74637.0, "ser_p75_ns": 77194.0, "ser_p95_ns": 82022.79999999999, "ser_p99_ns": 88908.2, "ser_ci_low_ns": 74108.85512048192, "ser_ci_high_ns": 76070.09548192771, "deser_mean_ns": 70549.92771084337, "deser_median_ns": 69641.0, "deser_std_ns": 6522.183428702184, "deser_mad_ns": 3802.0, "deser_cv": 0.09244776912364912, "deser_min_ns": 57109.0, "deser_max_ns": 86435.0, "deser_p5_ns": 61403.0, "deser_p25_ns": 65992.5, "deser_p50_ns": 69641.0, "deser_p75_ns": 73678.5, "deser_p95_ns": 83225.59999999999, "deser_p99_ns": 85564.15999999999, "deser_ci_low_ns": 69189.1358433735, "deser_ci_high_ns": 72026.5674698795, "total_mean_ns": 145656.2168674699, "total_median_ns": 145160.0, "total_std_ns": 9134.076332076485, "total_mad_ns": 6611.0, "total_cv": 0.06270982817291916, "total_min_ns": 127533.0, "total_max_ns": 166250.0, "total_p5_ns": 132065.9, "total_p25_ns": 139262.5, "total_p50_ns": 145160.0, "total_p75_ns": 152158.0, "total_p95_ns": 162067.69999999998, "total_p99_ns": 165991.7, "total_ci_low_ns": 143755.496686747, "total_ci_high_ns": 147591.94939759036, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 0.9340519974635384, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.8726373225206547}, {"serializer": "MS DataContract", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 213912.375, "avg_time_deser_ns": 588904.7727272727, "avg_time_total_ns": 802817.1477272727, "median_size_bytes": 108343.0, "avg_ops_per_sec": 1245.613652910803, "min_ops_per_sec": 1102.3377276189615, "max_ops_per_sec": 1376.9116697394745, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 213912.375, "ser_median_ns": 211659.5, "ser_std_ns": 13731.838487146175, "ser_mad_ns": 8351.0, "ser_cv": 0.06419375450880846, "ser_min_ns": 191058.0, "ser_max_ns": 247697.0, "ser_p5_ns": 194408.0, "ser_p25_ns": 204890.75, "ser_p50_ns": 211659.5, "ser_p75_ns": 222547.75, "ser_p95_ns": 241123.79999999996, "ser_p99_ns": 247224.59, "ser_ci_low_ns": 210922.93295454545, "ser_ci_high_ns": 216887.94943181818, "deser_mean_ns": 588904.7727272727, "deser_median_ns": 591755.5, "deser_std_ns": 34008.11304850899, "deser_mad_ns": 21949.0, "deser_cv": 0.05774806831843841, "deser_min_ns": 531222.0, "deser_max_ns": 671801.0, "deser_p5_ns": 535677.2, "deser_p25_ns": 557119.0, "deser_p50_ns": 591755.5, "deser_p75_ns": 609629.75, "deser_p95_ns": 651202.95, "deser_p99_ns": 664570.4299999999, "deser_ci_low_ns": 581370.0758522728, "deser_ci_high_ns": 596037.08125, "total_mean_ns": 802817.1477272727, "total_median_ns": 804603.0, "total_std_ns": 43505.343107588065, "total_mad_ns": 32907.0, "total_cv": 0.0541908493493806, "total_min_ns": 726263.0, "total_max_ns": 907163.0, "total_p5_ns": 741013.1, "total_p25_ns": 765613.75, "total_p50_ns": 804603.0, "total_p75_ns": 829225.5, "total_p95_ns": 879057.35, "total_p99_ns": 901978.6699999999, "total_ci_low_ns": 793937.0752840909, "total_ci_high_ns": 811597.4636363636, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.90788291741008}, {"serializer": "FsPickler", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 253524.20224719102, "avg_time_deser_ns": 190241.1348314607, "avg_time_total_ns": 443765.3370786517, "median_size_bytes": 40127.0, "avg_ops_per_sec": 2253.4432422845202, "min_ops_per_sec": 2053.0887693991226, "max_ops_per_sec": 2528.649599967633, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 253524.20224719102, "ser_median_ns": 255162.0, "ser_std_ns": 15776.252443567728, "ser_mad_ns": 10381.0, "ser_cv": 0.062227796414425066, "ser_min_ns": 223341.0, "ser_max_ns": 285478.0, "ser_p5_ns": 227082.2, "ser_p25_ns": 241209.0, "ser_p50_ns": 255162.0, "ser_p75_ns": 264052.0, "ser_p95_ns": 278376.0, "ser_p99_ns": 281826.0, "ser_ci_low_ns": 250365.34213483147, "ser_ci_high_ns": 256803.64859550563, "deser_mean_ns": 190241.1348314607, "deser_median_ns": 190713.0, "deser_std_ns": 9803.844990372414, "deser_mad_ns": 6985.0, "deser_cv": 0.05153378105664625, "deser_min_ns": 170769.0, "deser_max_ns": 216014.0, "deser_p5_ns": 175100.6, "deser_p25_ns": 183085.0, "deser_p50_ns": 190713.0, "deser_p75_ns": 197078.0, "deser_p95_ns": 204109.19999999998, "deser_p99_ns": 215217.6, "deser_ci_low_ns": 188103.42415730338, "deser_ci_high_ns": 192258.1073033708, "total_mean_ns": 443765.3370786517, "total_median_ns": 447064.0, "total_std_ns": 22015.950656669473, "total_mad_ns": 13849.0, "total_cv": 0.04961169522974127, "total_min_ns": 395468.0, "total_max_ns": 487071.0, "total_p5_ns": 404718.0, "total_p25_ns": 429026.0, "total_p50_ns": 447064.0, "total_p75_ns": 459223.0, "total_p95_ns": 473930.4, "total_p99_ns": 481821.80000000005, "total_ci_low_ns": 439289.93904494384, "total_ci_high_ns": 448076.1429775281, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.48478550514894}, {"serializer": "YAXLib", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "4.4.0", "avg_time_ser_ns": 1009151.3506493507, "avg_time_deser_ns": 1422580.5194805195, "avg_time_total_ns": 2431731.8701298703, "median_size_bytes": 119817.0, "avg_ops_per_sec": 411.22954890030434, "min_ops_per_sec": 308.57606955551466, "max_ops_per_sec": 518.4081551823708, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 1009151.3506493507, "ser_median_ns": 1005801.0, "ser_std_ns": 74914.83330962993, "ser_mad_ns": 49021.0, "ser_cv": 0.0742354784160226, "ser_min_ns": 830898.0, "ser_max_ns": 1250958.0, "ser_p5_ns": 889136.4, "ser_p25_ns": 966438.0, "ser_p50_ns": 1005801.0, "ser_p75_ns": 1064704.0, "ser_p95_ns": 1125009.2, "ser_p99_ns": 1164269.3599999994, "ser_ci_low_ns": 993487.1681818182, "ser_ci_high_ns": 1026517.7282467532, "deser_mean_ns": 1422580.5194805195, "deser_median_ns": 1342163.0, "deser_std_ns": 263428.27559651394, "deser_mad_ns": 61732.0, "deser_cv": 0.18517635521447282, "deser_min_ns": 1098084.0, "deser_max_ns": 2298750.0, "deser_p5_ns": 1217537.2, "deser_p25_ns": 1285144.0, "deser_p50_ns": 1342163.0, "deser_p75_ns": 1403895.0, "deser_p95_ns": 2080829.6, "deser_p99_ns": 2216226.9199999995, "deser_ci_low_ns": 1367813.2198051948, "deser_ci_high_ns": 1481112.9451298702, "total_mean_ns": 2431731.8701298703, "total_median_ns": 2376529.0, "total_std_ns": 277912.3756346665, "total_mad_ns": 118999.0, "total_cv": 0.11428578086605583, "total_min_ns": 1928982.0, "total_max_ns": 3240692.0, "total_p5_ns": 2140781.0, "total_p25_ns": 2257530.0, "total_p50_ns": 2376529.0, "total_p75_ns": 2493936.0, "total_p95_ns": 3048971.2, "total_p99_ns": 3193066.5999999996, "total_ci_low_ns": 2371883.557142857, "total_ci_high_ns": 2496409.0564935063, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.668834035724636}, {"serializer": "GroBuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.9.2", "avg_time_ser_ns": 45200.94736842105, "avg_time_deser_ns": 72888.63157894737, "avg_time_total_ns": 118089.57894736843, "median_size_bytes": 79748.0, "avg_ops_per_sec": 8468.147730848392, "min_ops_per_sec": 6745.408063460799, "max_ops_per_sec": 9949.258780220873, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 45200.94736842105, "ser_median_ns": 43767.0, "ser_std_ns": 4364.930282435943, "ser_mad_ns": 1511.0, "ser_cv": 0.09656723003742693, "ser_min_ns": 40190.0, "ser_max_ns": 60793.0, "ser_p5_ns": 40863.0, "ser_p25_ns": 42520.75, "ser_p50_ns": 43767.0, "ser_p75_ns": 46671.0, "ser_p95_ns": 54801.25, "ser_p99_ns": 60351.25, "ser_ci_low_ns": 44243.09868421053, "ser_ci_high_ns": 46215.47828947368, "deser_mean_ns": 72888.63157894737, "deser_median_ns": 71180.5, "deser_std_ns": 7692.472800241555, "deser_mad_ns": 3129.0, "deser_cv": 0.1055373469580048, "deser_min_ns": 60320.0, "deser_max_ns": 94966.0, "deser_p5_ns": 64193.75, "deser_p25_ns": 68625.75, "deser_p50_ns": 71180.5, "deser_p75_ns": 74548.0, "deser_p95_ns": 90938.0, "deser_p99_ns": 94855.0, "deser_ci_low_ns": 71210.04638157894, "deser_ci_high_ns": 74720.77532894736, "total_mean_ns": 118089.57894736843, "total_median_ns": 115471.5, "total_std_ns": 9985.670884840481, "total_mad_ns": 5329.5, "total_cv": 0.08456013624446078, "total_min_ns": 100510.0, "total_max_ns": 148249.0, "total_p5_ns": 106886.75, "total_p25_ns": 111684.75, "total_p50_ns": 115471.5, "total_p75_ns": 121869.0, "total_p95_ns": 138697.25, "total_p99_ns": 143618.5, "total_ci_low_ns": 115943.17335526316, "total_ci_high_ns": 120375.58651315789, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "MS Bond Fast", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 107572.5744680851, "avg_time_deser_ns": 107880.37234042553, "avg_time_total_ns": 215452.94680851063, "median_size_bytes": 34569.0, "avg_ops_per_sec": 4641.384649469546, "min_ops_per_sec": 4077.422090657403, "max_ops_per_sec": 5261.302593296048, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 107572.5744680851, "ser_median_ns": 107345.5, "ser_std_ns": 6804.040582410062, "ser_mad_ns": 4343.5, "ser_cv": 0.06325069950267576, "ser_min_ns": 96044.0, "ser_max_ns": 124258.0, "ser_p5_ns": 97059.0, "ser_p25_ns": 102718.0, "ser_p50_ns": 107345.5, "ser_p75_ns": 111003.75, "ser_p95_ns": 118565.5, "ser_p99_ns": 123222.90999999999, "ser_ci_low_ns": 106308.92686170212, "ser_ci_high_ns": 108984.77047872341, "deser_mean_ns": 107880.37234042553, "deser_median_ns": 107449.5, "deser_std_ns": 7661.6564858510665, "deser_mad_ns": 4797.5, "deser_cv": 0.07101992994308612, "deser_min_ns": 93686.0, "deser_max_ns": 129193.0, "deser_p5_ns": 96527.45, "deser_p25_ns": 102578.5, "deser_p50_ns": 107449.5, "deser_p75_ns": 111699.0, "deser_p95_ns": 121392.65, "deser_p99_ns": 128227.65999999999, "deser_ci_low_ns": 106394.19680851063, "deser_ci_high_ns": 109447.56728723404, "total_mean_ns": 215452.94680851063, "total_median_ns": 216168.0, "total_std_ns": 12850.747560671634, "total_mad_ns": 8631.0, "total_cv": 0.05964526246230954, "total_min_ns": 190067.0, "total_max_ns": 245253.0, "total_p5_ns": 195156.9, "total_p25_ns": 207021.25, "total_p50_ns": 216168.0, "total_p75_ns": 223459.5, "total_p95_ns": 237388.55, "total_p99_ns": 239597.66999999995, "total_ci_low_ns": 212903.3029255319, "total_ci_high_ns": 218024.43351063828, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.313568663948896}, {"serializer": "ServiceStack Json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 144597.4367816092, "avg_time_deser_ns": 366887.2988505747, "avg_time_total_ns": 511484.7356321839, "median_size_bytes": 41574.0, "avg_ops_per_sec": 1955.092557677253, "min_ops_per_sec": 1788.6431889361686, "max_ops_per_sec": 2134.0754224935818, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 144597.4367816092, "ser_median_ns": 144006.0, "ser_std_ns": 7840.197407489101, "ser_mad_ns": 5006.0, "ser_cv": 0.05422086021711739, "ser_min_ns": 131357.0, "ser_max_ns": 164057.0, "ser_p5_ns": 133637.9, "ser_p25_ns": 139185.5, "ser_p50_ns": 144006.0, "ser_p75_ns": 149085.0, "ser_p95_ns": 160360.2, "ser_p99_ns": 162888.26, "ser_ci_low_ns": 142889.8620689655, "ser_ci_high_ns": 146279.96120689655, "deser_mean_ns": 366887.2988505747, "deser_median_ns": 366797.0, "deser_std_ns": 18687.051126826475, "deser_mad_ns": 13696.0, "deser_cv": 0.05093403665204913, "deser_min_ns": 331378.0, "deser_max_ns": 408453.0, "deser_p5_ns": 337815.0, "deser_p25_ns": 353062.0, "deser_p50_ns": 366797.0, "deser_p75_ns": 380342.0, "deser_p95_ns": 403654.8, "deser_p99_ns": 406227.32, "deser_ci_low_ns": 362941.66005747125, "deser_ci_high_ns": 370770.6471264368, "total_mean_ns": 511484.7356321839, "total_median_ns": 513060.0, "total_std_ns": 21584.730490239475, "total_mad_ns": 14515.0, "total_cv": 0.04220014594093648, "total_min_ns": 468587.0, "total_max_ns": 559083.0, "total_p5_ns": 479068.9, "total_p25_ns": 492412.5, "total_p50_ns": 513060.0, "total_p75_ns": 524716.5, "total_p95_ns": 551341.4, "total_p99_ns": 558628.06, "total_ci_low_ns": 507116.1344827586, "total_ci_high_ns": 516478.9227011494, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.7852648169579}, {"serializer": "NetSerializer", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "4.1.2", "avg_time_ser_ns": 114051.15217391304, "avg_time_deser_ns": 125533.69565217392, "avg_time_total_ns": 239584.84782608695, "median_size_bytes": 37670.0, "avg_ops_per_sec": 4173.886658833673, "min_ops_per_sec": 3738.247883217136, "max_ops_per_sec": 4636.369537197593, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 114051.15217391304, "ser_median_ns": 112829.5, "ser_std_ns": 9544.973959559899, "ser_mad_ns": 5809.5, "ser_cv": 0.08369028964306355, "ser_min_ns": 98501.0, "ser_max_ns": 135792.0, "ser_p5_ns": 101938.95, "ser_p25_ns": 107505.75, "ser_p50_ns": 112829.5, "ser_p75_ns": 118596.5, "ser_p95_ns": 132637.8, "ser_p99_ns": 135602.72, "ser_ci_low_ns": 112272.91195652174, "ser_ci_high_ns": 116036.84048913044, "deser_mean_ns": 125533.69565217392, "deser_median_ns": 125941.0, "deser_std_ns": 6478.39943049823, "deser_mad_ns": 5106.0, "deser_cv": 0.05160685660405028, "deser_min_ns": 113894.0, "deser_max_ns": 142941.0, "deser_p5_ns": 115856.4, "deser_p25_ns": 120291.5, "deser_p50_ns": 125941.0, "deser_p75_ns": 130377.0, "deser_p95_ns": 135696.8, "deser_p99_ns": 139649.53, "deser_ci_low_ns": 124259.08641304348, "deser_ci_high_ns": 126819.32038043477, "total_mean_ns": 239584.84782608695, "total_median_ns": 239772.0, "total_std_ns": 12712.526822718877, "total_mad_ns": 8647.0, "total_cv": 0.053060646105411544, "total_min_ns": 215686.0, "total_max_ns": 267505.0, "total_p5_ns": 218301.55, "total_p25_ns": 231734.5, "total_p50_ns": 239772.0, "total_p75_ns": 248611.0, "total_p95_ns": 261847.7, "total_p99_ns": 265492.99, "total_ci_low_ns": 236837.41494565218, "total_ci_high_ns": 242182.25217391303, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.462013371281422}, {"serializer": "Json.Net (Helper)", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 192284.22093023255, "avg_time_deser_ns": 282756.6976744186, "avg_time_total_ns": 475040.9186046512, "median_size_bytes": 42678.0, "avg_ops_per_sec": 2105.0818168197457, "min_ops_per_sec": 1802.171977667485, "max_ops_per_sec": 2328.164033125118, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 192284.22093023255, "ser_median_ns": 189855.0, "ser_std_ns": 14190.998561558134, "ser_mad_ns": 9076.5, "ser_cv": 0.07380220016444888, "ser_min_ns": 172624.0, "ser_max_ns": 230617.0, "ser_p5_ns": 173586.25, "ser_p25_ns": 182676.75, "ser_p50_ns": 189855.0, "ser_p75_ns": 199788.0, "ser_p95_ns": 220504.0, "ser_p99_ns": 229924.25, "ser_ci_low_ns": 189499.5101744186, "ser_ci_high_ns": 195296.96046511628, "deser_mean_ns": 282756.6976744186, "deser_median_ns": 282318.5, "deser_std_ns": 15634.373689421176, "deser_mad_ns": 10279.0, "deser_cv": 0.05529267323465293, "deser_min_ns": 253101.0, "deser_max_ns": 326276.0, "deser_p5_ns": 260796.5, "deser_p25_ns": 270821.75, "deser_p50_ns": 282318.5, "deser_p75_ns": 291572.25, "deser_p95_ns": 307917.5, "deser_p99_ns": 324570.05, "deser_ci_low_ns": 279464.374127907, "deser_ci_high_ns": 285884.96773255814, "total_mean_ns": 475040.9186046512, "total_median_ns": 469497.5, "total_std_ns": 26398.916397197783, "total_mad_ns": 16739.0, "total_cv": 0.05557187889148568, "total_min_ns": 429523.0, "total_max_ns": 554886.0, "total_p5_ns": 438902.0, "total_p25_ns": 455274.25, "total_p50_ns": 469497.5, "total_p75_ns": 490512.75, "total_p95_ns": 521338.75, "total_p99_ns": 543548.7000000001, "total_ci_low_ns": 469574.1369186046, "total_ci_high_ns": 480625.1688953488, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.398534878348677}, {"serializer": "ServiceStack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 100690.62921348315, "avg_time_deser_ns": 247939.1797752809, "avg_time_total_ns": 348629.80898876407, "median_size_bytes": 34972.0, "avg_ops_per_sec": 2868.372050286236, "min_ops_per_sec": 2414.8464761352798, "max_ops_per_sec": 3353.2628924575056, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 100690.62921348315, "ser_median_ns": 99947.0, "ser_std_ns": 5616.400135848145, "ser_mad_ns": 2850.0, "ser_cv": 0.05577877683076462, "ser_min_ns": 89622.0, "ser_max_ns": 114564.0, "ser_p5_ns": 91839.4, "ser_p25_ns": 97633.0, "ser_p50_ns": 99947.0, "ser_p75_ns": 103955.0, "ser_p95_ns": 111082.2, "ser_p99_ns": 113616.24, "ser_ci_low_ns": 99567.39241573033, "ser_ci_high_ns": 101897.54466292134, "deser_mean_ns": 247939.1797752809, "deser_median_ns": 247397.0, "deser_std_ns": 23695.23742546446, "deser_mad_ns": 14490.0, "deser_cv": 0.0955687497512115, "deser_min_ns": 206375.0, "deser_max_ns": 301996.0, "deser_p5_ns": 209835.2, "deser_p25_ns": 231539.0, "deser_p50_ns": 247397.0, "deser_p75_ns": 260998.0, "deser_p95_ns": 295431.4, "deser_p99_ns": 299994.0, "deser_ci_low_ns": 243133.21151685392, "deser_ci_high_ns": 252904.1132022472, "total_mean_ns": 348629.80898876407, "total_median_ns": 349739.0, "total_std_ns": 26193.930227195593, "total_mad_ns": 15116.0, "total_cv": 0.07513393735083564, "total_min_ns": 298217.0, "total_max_ns": 414105.0, "total_p5_ns": 303035.8, "total_p25_ns": 333647.0, "total_p50_ns": 349739.0, "total_p75_ns": 361470.0, "total_p95_ns": 400235.0, "total_p99_ns": 408801.24000000005, "total_ci_low_ns": 343388.95533707866, "total_ci_high_ns": 354401.0508426966, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.246992219695976}, {"serializer": "CsvHelper", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "33.1.0", "avg_time_ser_ns": 517869.44943820225, "avg_time_deser_ns": 646766.3707865168, "avg_time_total_ns": 1164635.8202247191, "median_size_bytes": 33969.0, "avg_ops_per_sec": 858.6375093692789, "min_ops_per_sec": 716.2000146104803, "max_ops_per_sec": 983.7117016441757, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 517869.44943820225, "ser_median_ns": 514484.0, "ser_std_ns": 51894.84673575526, "ser_mad_ns": 35898.0, "ser_cv": 0.10020835712948908, "ser_min_ns": 431568.0, "ser_max_ns": 655938.0, "ser_p5_ns": 448571.2, "ser_p25_ns": 477328.0, "ser_p50_ns": 514484.0, "ser_p75_ns": 547592.0, "ser_p95_ns": 616783.7999999999, "ser_p99_ns": 650410.72, "ser_ci_low_ns": 507830.4398876405, "ser_ci_high_ns": 528570.7292134832, "deser_mean_ns": 646766.3707865168, "deser_median_ns": 645710.0, "deser_std_ns": 35627.6976067593, "deser_mad_ns": 22460.0, "deser_cv": 0.05508588451102262, "deser_min_ns": 584474.0, "deser_max_ns": 755302.0, "deser_p5_ns": 591455.8, "deser_p25_ns": 623731.0, "deser_p50_ns": 645710.0, "deser_p75_ns": 668170.0, "deser_p95_ns": 710597.2, "deser_p99_ns": 727138.4800000001, "deser_ci_low_ns": 639269.8634831461, "deser_ci_high_ns": 654075.6516853933, "total_mean_ns": 1164635.8202247191, "total_median_ns": 1149844.0, "total_std_ns": 78662.45445927951, "total_mad_ns": 49488.0, "total_cv": 0.06754253397779009, "total_min_ns": 1016558.0, "total_max_ns": 1396258.0, "total_p5_ns": 1054048.6, "total_p25_ns": 1108199.0, "total_p50_ns": 1149844.0, "total_p75_ns": 1214489.0, "total_p95_ns": 1304989.5999999999, "total_p99_ns": 1372437.28, "total_ci_low_ns": 1148312.3558988764, "total_ci_high_ns": 1180854.2390449438, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.900921943327553}, {"serializer": "SharpSerializer", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 781449.25, "avg_time_deser_ns": 2796531.8421052634, "avg_time_total_ns": 3577981.0921052634, "median_size_bytes": 176473.0, "avg_ops_per_sec": 279.4872231735595, "min_ops_per_sec": 246.8863313110874, "max_ops_per_sec": 309.28890460076525, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 781449.25, "ser_median_ns": 781042.5, "ser_std_ns": 36931.29734561189, "ser_mad_ns": 27258.5, "ser_cv": 0.047260007410093355, "ser_min_ns": 708337.0, "ser_max_ns": 865654.0, "ser_p5_ns": 723228.75, "ser_p25_ns": 753385.75, "ser_p50_ns": 781042.5, "ser_p75_ns": 806517.0, "ser_p95_ns": 846566.5, "ser_p99_ns": 857761.75, "ser_ci_low_ns": 773224.1457236842, "ser_ci_high_ns": 789006.3424342105, "deser_mean_ns": 2796531.8421052634, "deser_median_ns": 2788341.5, "deser_std_ns": 151231.5304485633, "deser_mad_ns": 62287.0, "deser_cv": 0.054078243691555596, "deser_min_ns": 2499572.0, "deser_max_ns": 3244559.0, "deser_p5_ns": 2548057.0, "deser_p25_ns": 2724490.25, "deser_p50_ns": 2788341.5, "deser_p75_ns": 2848260.25, "deser_p95_ns": 3107655.25, "deser_p99_ns": 3174184.25, "deser_ci_low_ns": 2760757.8375, "deser_ci_high_ns": 2829073.5996710523, "total_mean_ns": 3577981.0921052634, "total_median_ns": 3585295.5, "total_std_ns": 167895.4820389699, "total_mad_ns": 82649.0, "total_cv": 0.046924642058457935, "total_min_ns": 3233223.0, "total_max_ns": 4050447.0, "total_p5_ns": 3310522.75, "total_p25_ns": 3492401.5, "total_p50_ns": 3585295.5, "total_p75_ns": 3642425.5, "total_p95_ns": 3897403.5, "total_p99_ns": 4019101.5, "total_ci_low_ns": 3540992.567105263, "total_ci_high_ns": 3614114.140131579, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.94617205798817}, {"serializer": "FlatSharp", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "7.5.1", "avg_time_ser_ns": 96201.01298701299, "avg_time_deser_ns": 107200.41558441559, "avg_time_total_ns": 203401.42857142858, "median_size_bytes": 66037.0, "avg_ops_per_sec": 4916.386315589861, "min_ops_per_sec": 4146.005738071942, "max_ops_per_sec": 5511.0689820504485, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 96201.01298701299, "ser_median_ns": 93551.0, "ser_std_ns": 9665.10462068448, "ser_mad_ns": 4011.0, "ser_cv": 0.10046780507383282, "ser_min_ns": 82578.0, "ser_max_ns": 125485.0, "ser_p5_ns": 84836.8, "ser_p25_ns": 90107.0, "ser_p50_ns": 93551.0, "ser_p75_ns": 99663.0, "ser_p95_ns": 115914.20000000001, "ser_p99_ns": 124025.79999999999, "ser_ci_low_ns": 94127.23733766233, "ser_ci_high_ns": 98504.33798701299, "deser_mean_ns": 107200.41558441559, "deser_median_ns": 107577.0, "deser_std_ns": 5254.581260172302, "deser_mad_ns": 3156.0, "deser_cv": 0.049016426209976316, "deser_min_ns": 95566.0, "deser_max_ns": 120516.0, "deser_p5_ns": 99322.8, "deser_p25_ns": 103504.0, "deser_p50_ns": 107577.0, "deser_p75_ns": 110361.0, "deser_p95_ns": 114806.8, "deser_p99_ns": 119330.4, "deser_ci_low_ns": 106023.68474025975, "deser_ci_high_ns": 108404.2211038961, "total_mean_ns": 203401.42857142858, "total_median_ns": 202030.0, "total_std_ns": 12646.548253250943, "total_mad_ns": 6742.0, "total_cv": 0.06217531677172979, "total_min_ns": 181453.0, "total_max_ns": 241196.0, "total_p5_ns": 184757.2, "total_p25_ns": 195058.0, "total_p50_ns": 202030.0, "total_p75_ns": 208451.0, "total_p95_ns": 227087.4, "total_p99_ns": 240093.24, "total_ci_low_ns": 200749.31883116884, "total_ci_high_ns": 206371.34805194804, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.4444368275794295}, {"serializer": "ExtendedXmlSerializer", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "3.10.0.0", "avg_time_ser_ns": 120291.03488372093, "avg_time_deser_ns": 109032.63953488372, "avg_time_total_ns": 229323.67441860464, "median_size_bytes": 41945.0, "avg_ops_per_sec": 4360.64877529658, "min_ops_per_sec": 3615.6688625828892, "max_ops_per_sec": 5092.842519123624, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 120291.03488372093, "ser_median_ns": 117686.5, "ser_std_ns": 12418.189501881954, "ser_mad_ns": 7579.0, "ser_cv": 0.10323453874917586, "ser_min_ns": 101602.0, "ser_max_ns": 157580.0, "ser_p5_ns": 104998.5, "ser_p25_ns": 111223.25, "ser_p50_ns": 117686.5, "ser_p75_ns": 128212.5, "ser_p95_ns": 144768.5, "ser_p99_ns": 153420.95000000004, "ser_ci_low_ns": 117689.7046511628, "ser_ci_high_ns": 122999.7590116279, "deser_mean_ns": 109032.63953488372, "deser_median_ns": 106534.5, "deser_std_ns": 10250.277308056873, "deser_mad_ns": 6586.5, "deser_cv": 0.09401109018164616, "deser_min_ns": 92774.0, "deser_max_ns": 137513.0, "deser_p5_ns": 95014.5, "deser_p25_ns": 101822.5, "deser_p50_ns": 106534.5, "deser_p75_ns": 116129.25, "deser_p95_ns": 127928.25, "deser_p99_ns": 135425.40000000002, "deser_ci_low_ns": 106950.53081395349, "deser_ci_high_ns": 111293.85872093022, "total_mean_ns": 229323.67441860464, "total_median_ns": 224289.5, "total_std_ns": 19149.65978530036, "total_mad_ns": 13280.5, "total_cv": 0.08350494049011618, "total_min_ns": 196354.0, "total_max_ns": 276574.0, "total_p5_ns": 203587.5, "total_p25_ns": 213784.0, "total_p50_ns": 224289.5, "total_p75_ns": 242655.5, "total_p95_ns": 268001.25, "total_p99_ns": 273857.4, "total_ci_low_ns": 225348.29127906976, "total_ci_high_ns": 233144.74767441858, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.123378473013945}, {"serializer": "Apache.Avro", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.12.1", "avg_time_ser_ns": 395802.5, "avg_time_deser_ns": 270371.1395348837, "avg_time_total_ns": 666173.6395348837, "median_size_bytes": 34166.0, "avg_ops_per_sec": 1501.110132034331, "min_ops_per_sec": 1179.2327675767592, "max_ops_per_sec": 1771.413286662498, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 395802.5, "ser_median_ns": 389630.0, "ser_std_ns": 58323.08999777219, "ser_mad_ns": 41679.5, "ser_cv": 0.14735402125497488, "ser_min_ns": 304733.0, "ser_max_ns": 564743.0, "ser_p5_ns": 319403.75, "ser_p25_ns": 350403.0, "ser_p50_ns": 389630.0, "ser_p75_ns": 432776.75, "ser_p95_ns": 498124.0, "ser_p99_ns": 551361.4500000001, "ser_ci_low_ns": 383344.47296511626, "ser_ci_high_ns": 407783.0110465116, "deser_mean_ns": 270371.1395348837, "deser_median_ns": 270094.5, "deser_std_ns": 17004.96805342333, "deser_mad_ns": 11789.0, "deser_cv": 0.06289490839398308, "deser_min_ns": 237460.0, "deser_max_ns": 315133.0, "deser_p5_ns": 245535.5, "deser_p25_ns": 257299.0, "deser_p50_ns": 270094.5, "deser_p75_ns": 281443.5, "deser_p95_ns": 301951.0, "deser_p99_ns": 306457.9000000001, "deser_ci_low_ns": 266796.8659883721, "deser_ci_high_ns": 273999.6337209302, "total_mean_ns": 666173.6395348837, "total_median_ns": 656601.5, "total_std_ns": 65571.0662330507, "total_mad_ns": 48013.5, "total_cv": 0.0984293918907266, "total_min_ns": 564521.0, "total_max_ns": 848009.0, "total_p5_ns": 580041.25, "total_p25_ns": 610762.75, "total_p50_ns": 656601.5, "total_p75_ns": 704729.0, "total_p95_ns": 785230.75, "total_p99_ns": 825441.5000000001, "total_ci_low_ns": 652413.983139535, "total_ci_high_ns": 680165.2863372093, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.299079141961155}, {"serializer": "SharpYaml", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "3.13.0", "avg_time_ser_ns": 373607.0481927711, "avg_time_deser_ns": 1292639.9759036144, "avg_time_total_ns": 1666247.0240963856, "median_size_bytes": 60673.0, "avg_ops_per_sec": 600.1511093724565, "min_ops_per_sec": 532.4462069597108, "max_ops_per_sec": 674.0938325132981, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 373607.0481927711, "ser_median_ns": 371150.0, "ser_std_ns": 23873.6417352897, "ser_mad_ns": 18928.0, "ser_cv": 0.06390040512022555, "ser_min_ns": 323700.0, "ser_max_ns": 435156.0, "ser_p5_ns": 342544.4, "ser_p25_ns": 353107.5, "ser_p50_ns": 371150.0, "ser_p75_ns": 389532.5, "ser_p95_ns": 411069.3, "ser_p99_ns": 433283.12, "ser_ci_low_ns": 368589.51746987953, "ser_ci_high_ns": 378817.5734939759, "deser_mean_ns": 1292639.9759036144, "deser_median_ns": 1294620.0, "deser_std_ns": 69146.7166818314, "deser_mad_ns": 42471.0, "deser_cv": 0.05349263365732959, "deser_min_ns": 1139992.0, "deser_max_ns": 1522756.0, "deser_p5_ns": 1199595.6, "deser_p25_ns": 1242086.0, "deser_p50_ns": 1294620.0, "deser_p75_ns": 1332414.0, "deser_p95_ns": 1395382.6, "deser_p99_ns": 1489515.6599999997, "deser_ci_low_ns": 1277935.8271084337, "deser_ci_high_ns": 1307907.8759036146, "total_mean_ns": 1666247.0240963856, "total_median_ns": 1669803.0, "total_std_ns": 83052.35353370316, "total_mad_ns": 55068.0, "total_cv": 0.04984396210924541, "total_min_ns": 1483473.0, "total_max_ns": 1878124.0, "total_p5_ns": 1547868.0, "total_p25_ns": 1604007.0, "total_p50_ns": 1669803.0, "total_p75_ns": 1717721.0, "total_p95_ns": 1801005.7999999998, "total_p99_ns": 1843756.1599999997, "total_ci_low_ns": 1649358.3081325302, "total_ci_high_ns": 1683760.3177710844, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.50179905697602}, {"serializer": "fastJson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "2.4.0.4", "avg_time_ser_ns": 154301.6, "avg_time_deser_ns": 255126.98888888888, "avg_time_total_ns": 409428.5888888889, "median_size_bytes": 43062.0, "avg_ops_per_sec": 2442.4283675788474, "min_ops_per_sec": 2154.954131801305, "max_ops_per_sec": 2700.243291920602, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 154301.6, "ser_median_ns": 152141.0, "ser_std_ns": 10428.314592083454, "ser_mad_ns": 5548.5, "ser_cv": 0.0675839692659276, "ser_min_ns": 139473.0, "ser_max_ns": 179584.0, "ser_p5_ns": 141627.95, "ser_p25_ns": 146882.75, "ser_p50_ns": 152141.0, "ser_p75_ns": 158424.75, "ser_p95_ns": 176406.2, "ser_p99_ns": 179098.95, "ser_ci_low_ns": 152188.46916666668, "ser_ci_high_ns": 156508.75527777776, "deser_mean_ns": 255126.98888888888, "deser_median_ns": 255519.0, "deser_std_ns": 15239.108184480552, "deser_mad_ns": 9344.5, "deser_cv": 0.059731462558504075, "deser_min_ns": 226898.0, "deser_max_ns": 298473.0, "deser_p5_ns": 232282.05, "deser_p25_ns": 244417.0, "deser_p50_ns": 255519.0, "deser_p75_ns": 262119.0, "deser_p95_ns": 283116.7, "deser_p99_ns": 293290.52999999997, "deser_ci_low_ns": 251982.25416666668, "deser_ci_high_ns": 258219.48194444444, "total_mean_ns": 409428.5888888889, "total_median_ns": 412549.5, "total_std_ns": 21332.995732408897, "total_mad_ns": 17196.0, "total_cv": 0.05210431394227399, "total_min_ns": 370337.0, "total_max_ns": 464047.0, "total_p5_ns": 375460.15, "total_p25_ns": 392163.75, "total_p50_ns": 412549.5, "total_p75_ns": 422911.0, "total_p95_ns": 444817.7, "total_p99_ns": 456775.7, "total_ci_low_ns": 405054.9938888889, "total_ci_high_ns": 413606.81694444444, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.954582675505826}, {"serializer": "MemoryPack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 87855.69411764706, "avg_time_deser_ns": 98415.89411764705, "avg_time_total_ns": 186271.58823529413, "median_size_bytes": 56868.0, "avg_ops_per_sec": 5368.505253398184, "min_ops_per_sec": 4796.071058588804, "max_ops_per_sec": 6006.547136378653, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 87855.69411764706, "ser_median_ns": 87037.0, "ser_std_ns": 5547.539984670016, "ser_mad_ns": 3823.0, "ser_cv": 0.06314377275582544, "ser_min_ns": 78062.0, "ser_max_ns": 102496.0, "ser_p5_ns": 80631.2, "ser_p25_ns": 83414.0, "ser_p50_ns": 87037.0, "ser_p75_ns": 91127.0, "ser_p95_ns": 96443.6, "ser_p99_ns": 102458.2, "ser_ci_low_ns": 86683.20852941177, "ser_ci_high_ns": 89076.40411764706, "deser_mean_ns": 98415.89411764705, "deser_median_ns": 98028.0, "deser_std_ns": 6731.392304546146, "deser_mad_ns": 4923.0, "deser_cv": 0.06839741044774121, "deser_min_ns": 86585.0, "deser_max_ns": 118321.0, "deser_p5_ns": 88453.6, "deser_p25_ns": 94276.0, "deser_p50_ns": 98028.0, "deser_p75_ns": 102951.0, "deser_p95_ns": 111696.4, "deser_p99_ns": 114336.03999999998, "deser_ci_low_ns": 97046.82117647059, "deser_ci_high_ns": 99849.84147058823, "total_mean_ns": 186271.58823529413, "total_median_ns": 185313.0, "total_std_ns": 10927.33898062465, "total_mad_ns": 7808.0, "total_cv": 0.0586634767231462, "total_min_ns": 166485.0, "total_max_ns": 208504.0, "total_p5_ns": 169458.6, "total_p25_ns": 177796.0, "total_p50_ns": 185313.0, "total_p75_ns": 193189.0, "total_p95_ns": 203928.6, "total_p99_ns": 208446.88, "total_ci_low_ns": 183908.08411764706, "total_ci_high_ns": 188516.2038235294, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.466732747373268}, {"serializer": "Google.Protobuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "3.35.1", "avg_time_ser_ns": 128236.20652173914, "avg_time_deser_ns": 118006.94565217392, "avg_time_total_ns": 246243.15217391305, "median_size_bytes": 37463.0, "avg_ops_per_sec": 4061.0266363619908, "min_ops_per_sec": 3635.1475142861295, "max_ops_per_sec": 4526.586908205344, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 128236.20652173914, "ser_median_ns": 127316.0, "ser_std_ns": 8392.64085216111, "ser_mad_ns": 5706.0, "ser_cv": 0.06544673364724303, "ser_min_ns": 113401.0, "ser_max_ns": 151861.0, "ser_p5_ns": 115580.95, "ser_p25_ns": 122414.0, "ser_p50_ns": 127316.0, "ser_p75_ns": 133466.0, "ser_p95_ns": 143647.35, "ser_p99_ns": 149335.75, "ser_ci_low_ns": 126499.12065217392, "ser_ci_high_ns": 129908.58097826087, "deser_mean_ns": 118006.94565217392, "deser_median_ns": 117178.5, "deser_std_ns": 6612.187922986006, "deser_mad_ns": 4493.0, "deser_cv": 0.056032192736141684, "deser_min_ns": 105660.0, "deser_max_ns": 135512.0, "deser_p5_ns": 108681.4, "deser_p25_ns": 113129.75, "deser_p50_ns": 117178.5, "deser_p75_ns": 122457.0, "deser_p95_ns": 128131.45, "deser_p99_ns": 135404.62, "deser_ci_low_ns": 116676.03831521739, "deser_ci_high_ns": 119419.68505434782, "total_mean_ns": 246243.15217391305, "total_median_ns": 246772.5, "total_std_ns": 12791.499675746021, "total_mad_ns": 8957.0, "total_cv": 0.05194662090222036, "total_min_ns": 220917.0, "total_max_ns": 275092.0, "total_p5_ns": 226134.75, "total_p25_ns": 236264.75, "total_p50_ns": 246772.5, "total_p75_ns": 255513.0, "total_p95_ns": 267606.95, "total_p99_ns": 274019.11, "total_ci_low_ns": 243639.1043478261, "total_ci_high_ns": 248782.77744565217, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.990057963749868}, {"serializer": "FsPicklerJson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 188505.74736842106, "avg_time_deser_ns": 276297.36842105264, "avg_time_total_ns": 464803.1157894737, "median_size_bytes": 45212.0, "avg_ops_per_sec": 2151.4485725886066, "min_ops_per_sec": 1925.1093943413334, "max_ops_per_sec": 2393.1746658529873, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 188505.74736842106, "ser_median_ns": 185096.0, "ser_std_ns": 14330.118822515506, "ser_mad_ns": 10072.0, "ser_cv": 0.07601953268039255, "ser_min_ns": 165932.0, "ser_max_ns": 228540.0, "ser_p5_ns": 170867.4, "ser_p25_ns": 176420.5, "ser_p50_ns": 185096.0, "ser_p75_ns": 199582.0, "ser_p95_ns": 213087.5, "ser_p99_ns": 220287.74000000002, "ser_ci_low_ns": 185642.96947368424, "ser_ci_high_ns": 191483.8539473684, "deser_mean_ns": 276297.36842105264, "deser_median_ns": 275966.0, "deser_std_ns": 13707.726024657673, "deser_mad_ns": 8675.0, "deser_cv": 0.04961222071347533, "deser_min_ns": 251012.0, "deser_max_ns": 312650.0, "deser_p5_ns": 255346.3, "deser_p25_ns": 266981.0, "deser_p50_ns": 275966.0, "deser_p75_ns": 283799.5, "deser_p95_ns": 299873.0, "deser_p99_ns": 305813.38, "deser_ci_low_ns": 273696.13157894736, "deser_ci_high_ns": 279303.29105263157, "total_mean_ns": 464803.1157894737, "total_median_ns": 465740.0, "total_std_ns": 23502.78402968518, "total_mad_ns": 17764.0, "total_cv": 0.050565031152524476, "total_min_ns": 417855.0, "total_max_ns": 519451.0, "total_p5_ns": 427874.5, "total_p25_ns": 448012.0, "total_p50_ns": 465740.0, "total_p75_ns": 481468.5, "total_p95_ns": 503484.1, "total_p99_ns": 509266.10000000003, "total_ci_low_ns": 460027.925, "total_ci_high_ns": 469383.50184210524, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.41102377848789}, {"serializer": "Ceras", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "4.1.7", "avg_time_ser_ns": 123369.5054945055, "avg_time_deser_ns": 169639.3186813187, "avg_time_total_ns": 293008.8241758242, "median_size_bytes": 34316.0, "avg_ops_per_sec": 3412.866499201183, "min_ops_per_sec": 2894.330874116867, "max_ops_per_sec": 3926.495994974085, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 123369.5054945055, "ser_median_ns": 121754.0, "ser_std_ns": 7802.2862822716925, "ser_mad_ns": 4336.0, "ser_cv": 0.06324323219905573, "ser_min_ns": 107853.0, "ser_max_ns": 142173.0, "ser_p5_ns": 112440.0, "ser_p25_ns": 118790.5, "ser_p50_ns": 121754.0, "ser_p75_ns": 127633.0, "ser_p95_ns": 140646.5, "ser_p99_ns": 142124.4, "ser_ci_low_ns": 121841.89285714286, "ser_ci_high_ns": 124981.58571428573, "deser_mean_ns": 169639.3186813187, "deser_median_ns": 167640.0, "deser_std_ns": 12068.821891210353, "deser_mad_ns": 6744.0, "deser_cv": 0.07114401298606145, "deser_min_ns": 145714.0, "deser_max_ns": 203330.0, "deser_p5_ns": 153995.0, "deser_p25_ns": 161840.0, "deser_p50_ns": 167640.0, "deser_p75_ns": 175424.0, "deser_p95_ns": 192483.0, "deser_p99_ns": 200512.99999999997, "deser_ci_low_ns": 167237.58846153846, "deser_ci_high_ns": 172131.42527472528, "total_mean_ns": 293008.8241758242, "total_median_ns": 292292.0, "total_std_ns": 17422.4187902276, "total_mad_ns": 10427.0, "total_cv": 0.05946038942422097, "total_min_ns": 254680.0, "total_max_ns": 345503.0, "total_p5_ns": 267310.5, "total_p25_ns": 281650.0, "total_p50_ns": 292292.0, "total_p75_ns": 302670.5, "total_p95_ns": 325530.5, "total_p99_ns": 335933.29999999993, "total_ci_low_ns": 289526.9093406594, "total_ci_high_ns": 296759.05906593404, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.990186834542392}, {"serializer": "MS Bond Compact", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 105144.59302325582, "avg_time_deser_ns": 106722.54651162791, "avg_time_total_ns": 211867.13953488372, "median_size_bytes": 34367.0, "avg_ops_per_sec": 4719.939119371322, "min_ops_per_sec": 4232.571329408329, "max_ops_per_sec": 5169.748698515765, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 105144.59302325582, "ser_median_ns": 104876.5, "ser_std_ns": 5232.091318185598, "ser_mad_ns": 3227.0, "ser_cv": 0.049760916541170756, "ser_min_ns": 95628.0, "ser_max_ns": 118819.0, "ser_p5_ns": 97773.25, "ser_p25_ns": 101516.0, "ser_p50_ns": 104876.5, "ser_p75_ns": 107374.5, "ser_p95_ns": 115508.0, "ser_p99_ns": 118691.5, "ser_ci_low_ns": 104074.81133720929, "ser_ci_high_ns": 106223.5476744186, "deser_mean_ns": 106722.54651162791, "deser_median_ns": 106116.0, "deser_std_ns": 5133.750975094312, "deser_mad_ns": 3365.5, "deser_cv": 0.048103715127664856, "deser_min_ns": 95621.0, "deser_max_ns": 117444.0, "deser_p5_ns": 99320.0, "deser_p25_ns": 102967.25, "deser_p50_ns": 106116.0, "deser_p75_ns": 110529.75, "deser_p95_ns": 116153.25, "deser_p99_ns": 117426.15, "deser_ci_low_ns": 105624.12819767442, "deser_ci_high_ns": 107836.17034883721, "total_mean_ns": 211867.13953488372, "total_median_ns": 211838.5, "total_std_ns": 8898.95119023491, "total_mad_ns": 5705.0, "total_cv": 0.04200250784416573, "total_min_ns": 193433.0, "total_max_ns": 236263.0, "total_p5_ns": 198742.25, "total_p25_ns": 205001.5, "total_p50_ns": 211838.5, "total_p75_ns": 216353.5, "total_p95_ns": 228495.5, "total_p99_ns": 232471.15000000002, "total_ci_low_ns": 210001.0578488372, "total_ci_high_ns": 213779.79854651162, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.90424619190529}, {"serializer": "Utf8Json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.3.7", "avg_time_ser_ns": 92851.625, "avg_time_deser_ns": 168666.77272727274, "avg_time_total_ns": 261518.39772727274, "median_size_bytes": 41574.0, "avg_ops_per_sec": 3823.822754691472, "min_ops_per_sec": 3348.726311947251, "max_ops_per_sec": 4260.867342156169, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 92851.625, "ser_median_ns": 90140.0, "ser_std_ns": 8371.746053494182, "ser_mad_ns": 3972.5, "ser_cv": 0.09016262293195387, "ser_min_ns": 80188.0, "ser_max_ns": 114464.0, "ser_p5_ns": 83678.2, "ser_p25_ns": 87205.0, "ser_p50_ns": 90140.0, "ser_p75_ns": 94886.75, "ser_p95_ns": 110459.8, "ser_p99_ns": 112999.79, "ser_ci_low_ns": 91194.690625, "ser_ci_high_ns": 94543.64318181817, "deser_mean_ns": 168666.77272727274, "deser_median_ns": 169249.0, "deser_std_ns": 8346.28389981189, "deser_mad_ns": 5553.5, "deser_cv": 0.04948386552286436, "deser_min_ns": 151539.0, "deser_max_ns": 188064.0, "deser_p5_ns": 154944.55, "deser_p25_ns": 161360.25, "deser_p50_ns": 169249.0, "deser_p75_ns": 174208.25, "deser_p95_ns": 184375.24999999997, "deser_p99_ns": 186129.12, "deser_ci_low_ns": 166918.21761363637, "deser_ci_high_ns": 170446.32471590908, "total_mean_ns": 261518.39772727274, "total_median_ns": 261906.0, "total_std_ns": 12863.846800050409, "total_mad_ns": 7714.5, "total_cv": 0.04918907010689783, "total_min_ns": 234694.0, "total_max_ns": 298621.0, "total_p5_ns": 241016.0, "total_p25_ns": 253313.0, "total_p50_ns": 261906.0, "total_p75_ns": 268374.0, "total_p95_ns": 284194.95, "total_p99_ns": 289726.98999999993, "total_ci_low_ns": 258867.8650568182, "total_ci_high_ns": 264085.325, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.285700859934376}, {"serializer": "MS XmlSerializer", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 287090.19101123593, "avg_time_deser_ns": 860830.0, "avg_time_total_ns": 1147920.191011236, "median_size_bytes": 119952.0, "avg_ops_per_sec": 871.1407010961896, "min_ops_per_sec": 790.7413674764913, "max_ops_per_sec": 956.625636993096, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 287090.19101123593, "ser_median_ns": 285242.0, "ser_std_ns": 16394.786687234402, "ser_mad_ns": 11389.0, "ser_cv": 0.057106746244049676, "ser_min_ns": 258905.0, "ser_max_ns": 330845.0, "ser_p5_ns": 262099.4, "ser_p25_ns": 276122.0, "ser_p50_ns": 285242.0, "ser_p75_ns": 296856.0, "ser_p95_ns": 313385.8, "ser_p99_ns": 328131.96, "ser_ci_low_ns": 283763.8710674157, "ser_ci_high_ns": 290395.8556179775, "deser_mean_ns": 860830.0, "deser_median_ns": 864507.0, "deser_std_ns": 41535.73550625358, "deser_mad_ns": 30977.0, "deser_cv": 0.04825079923591601, "deser_min_ns": 766035.0, "deser_max_ns": 978290.0, "deser_p5_ns": 799745.0, "deser_p25_ns": 828683.0, "deser_p50_ns": 864507.0, "deser_p75_ns": 888468.0, "deser_p95_ns": 928971.7999999999, "deser_p99_ns": 959318.9600000001, "deser_ci_low_ns": 852732.825, "deser_ci_high_ns": 869138.6323033709, "total_mean_ns": 1147920.191011236, "total_median_ns": 1152640.0, "total_std_ns": 49314.21683331851, "total_mad_ns": 35980.0, "total_cv": 0.0429596214261866, "total_min_ns": 1045341.0, "total_max_ns": 1264636.0, "total_p5_ns": 1065984.4, "total_p25_ns": 1107651.0, "total_p50_ns": 1152640.0, "total_p75_ns": 1184975.0, "total_p95_ns": 1225990.0, "total_p99_ns": 1258266.56, "total_ci_low_ns": 1137629.170505618, "total_ci_high_ns": 1157713.0176966293, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.808748306562233}, {"serializer": "Jil", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "2.17.0", "avg_time_ser_ns": 201248.40449438203, "avg_time_deser_ns": 214324.79775280898, "avg_time_total_ns": 415573.202247191, "median_size_bytes": 41574.0, "avg_ops_per_sec": 2406.314927412429, "min_ops_per_sec": 2185.6824684223525, "max_ops_per_sec": 2665.5151641157686, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 201248.40449438203, "ser_median_ns": 201102.0, "ser_std_ns": 11609.712030254417, "ser_mad_ns": 8454.0, "ser_cv": 0.05768846744113447, "ser_min_ns": 182931.0, "ser_max_ns": 236120.0, "ser_p5_ns": 184988.4, "ser_p25_ns": 190880.0, "ser_p50_ns": 201102.0, "ser_p75_ns": 208916.0, "ser_p95_ns": 222156.59999999998, "ser_p99_ns": 228851.20000000004, "ser_ci_low_ns": 198984.2199438202, "ser_ci_high_ns": 203727.32724719102, "deser_mean_ns": 214324.79775280898, "deser_median_ns": 214443.0, "deser_std_ns": 11304.973860268698, "deser_mad_ns": 7506.0, "deser_cv": 0.05274692419543194, "deser_min_ns": 190456.0, "deser_max_ns": 243203.0, "deser_p5_ns": 197539.0, "deser_p25_ns": 205025.0, "deser_p50_ns": 214443.0, "deser_p75_ns": 221230.0, "deser_p95_ns": 237944.6, "deser_p99_ns": 240884.2, "deser_ci_low_ns": 212157.62780898876, "deser_ci_high_ns": 216671.37584269664, "total_mean_ns": 415573.202247191, "total_median_ns": 416648.0, "total_std_ns": 19834.057481662796, "total_mad_ns": 14477.0, "total_cv": 0.04772698858928135, "total_min_ns": 375162.0, "total_max_ns": 457523.0, "total_p5_ns": 387057.4, "total_p25_ns": 397299.0, "total_p50_ns": 416648.0, "total_p75_ns": 429130.0, "total_p95_ns": 449369.2, "total_p99_ns": 456322.68, "total_ci_low_ns": 411474.5407303371, "total_ci_high_ns": 419674.5620786517, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.425793474756812}, {"serializer": "Hyperion", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "0.12.2", "avg_time_ser_ns": 216852.55789473685, "avg_time_deser_ns": 155163.87368421053, "avg_time_total_ns": 372016.43157894735, "median_size_bytes": 38570.0, "avg_ops_per_sec": 2688.053309246867, "min_ops_per_sec": 2420.844438957197, "max_ops_per_sec": 3007.9349323515435, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 216852.55789473685, "ser_median_ns": 216957.0, "ser_std_ns": 13729.69732485938, "ser_mad_ns": 9914.0, "ser_cv": 0.06331351337586694, "ser_min_ns": 193009.0, "ser_max_ns": 252436.0, "ser_p5_ns": 196758.9, "ser_p25_ns": 205548.5, "ser_p50_ns": 216957.0, "ser_p75_ns": 225107.5, "ser_p95_ns": 242851.0, "ser_p99_ns": 249817.16, "ser_ci_low_ns": 214059.12078947367, "ser_ci_high_ns": 219488.9639473684, "deser_mean_ns": 155163.87368421053, "deser_median_ns": 154113.0, "deser_std_ns": 10542.845257937288, "deser_mad_ns": 7063.0, "deser_cv": 0.06794652007331348, "deser_min_ns": 139445.0, "deser_max_ns": 185160.0, "deser_p5_ns": 140591.4, "deser_p25_ns": 147163.0, "deser_p50_ns": 154113.0, "deser_p75_ns": 160805.5, "deser_p95_ns": 176951.4, "deser_p99_ns": 181738.4, "deser_ci_low_ns": 152982.64815789473, "deser_ci_high_ns": 157345.99657894738, "total_mean_ns": 372016.43157894735, "total_median_ns": 372852.0, "total_std_ns": 20871.050459169634, "total_mad_ns": 16203.0, "total_cv": 0.05610249625422927, "total_min_ns": 332454.0, "total_max_ns": 413079.0, "total_p5_ns": 339410.8, "total_p25_ns": 355731.0, "total_p50_ns": 372852.0, "total_p75_ns": 387501.5, "total_p95_ns": 407193.1, "total_p99_ns": 412557.3, "total_ci_low_ns": 367597.2621052632, "total_ci_high_ns": 376134.01578947366, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.934225461089918}, {"serializer": "SpanJson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "4.2.1", "avg_time_ser_ns": 105192.81818181818, "avg_time_deser_ns": 137934.98863636365, "avg_time_total_ns": 243127.80681818182, "median_size_bytes": 41574.0, "avg_ops_per_sec": 4113.06305554687, "min_ops_per_sec": 3675.0789223198567, "max_ops_per_sec": 4680.705663185782, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 105192.81818181818, "ser_median_ns": 104489.0, "ser_std_ns": 7808.8430222327115, "ser_mad_ns": 4726.0, "ser_cv": 0.0742336136363957, "ser_min_ns": 90411.0, "ser_max_ns": 124715.0, "ser_p5_ns": 94136.45, "ser_p25_ns": 100084.75, "ser_p50_ns": 104489.0, "ser_p75_ns": 109596.5, "ser_p95_ns": 121133.4, "ser_p99_ns": 124001.59999999999, "ser_ci_low_ns": 103580.73664772727, "ser_ci_high_ns": 106861.49431818182, "deser_mean_ns": 137934.98863636365, "deser_median_ns": 137637.5, "deser_std_ns": 8627.89060073551, "deser_mad_ns": 5281.0, "deser_cv": 0.06255041368424015, "deser_min_ns": 121010.0, "deser_max_ns": 160604.0, "deser_p5_ns": 125332.4, "deser_p25_ns": 132380.75, "deser_p50_ns": 137637.5, "deser_p75_ns": 142291.75, "deser_p95_ns": 152617.8, "deser_p99_ns": 158968.4, "deser_ci_low_ns": 136153.19914772728, "deser_ci_high_ns": 139682.16193181818, "total_mean_ns": 243127.80681818182, "total_median_ns": 242631.5, "total_std_ns": 13307.266617315549, "total_mad_ns": 9537.5, "total_cv": 0.054733626693992746, "total_min_ns": 213643.0, "total_max_ns": 272103.0, "total_p5_ns": 220999.65, "total_p25_ns": 235122.75, "total_p50_ns": 242631.5, "total_p75_ns": 254673.0, "total_p95_ns": 261558.8, "total_p99_ns": 267673.82999999996, "total_ci_low_ns": 240338.37329545454, "total_ci_high_ns": 246023.59005681818, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.471492886504839}, {"serializer": "MS Bond Json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 110062.13580246913, "avg_time_deser_ns": 205994.92592592593, "avg_time_total_ns": 316057.06172839506, "median_size_bytes": 41574.0, "avg_ops_per_sec": 3163.9856250367666, "min_ops_per_sec": 2768.549280177187, "max_ops_per_sec": 3458.364746813117, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 110062.13580246913, "ser_median_ns": 109796.0, "ser_std_ns": 5671.760297194088, "ser_mad_ns": 3964.0, "ser_cv": 0.05153234812173114, "ser_min_ns": 101147.0, "ser_max_ns": 123978.0, "ser_p5_ns": 101927.0, "ser_p25_ns": 105309.0, "ser_p50_ns": 109796.0, "ser_p75_ns": 113250.0, "ser_p95_ns": 121438.0, "ser_p99_ns": 122726.8, "ser_ci_low_ns": 108865.21944444445, "ser_ci_high_ns": 111301.43179012346, "deser_mean_ns": 205994.92592592593, "deser_median_ns": 204850.0, "deser_std_ns": 12821.9386665763, "deser_mad_ns": 9075.0, "deser_cv": 0.062243953868975216, "deser_min_ns": 186830.0, "deser_max_ns": 244125.0, "deser_p5_ns": 190557.0, "deser_p25_ns": 195775.0, "deser_p50_ns": 204850.0, "deser_p75_ns": 213659.0, "deser_p95_ns": 229083.0, "deser_p99_ns": 240084.2, "deser_ci_low_ns": 203319.29783950618, "deser_ci_high_ns": 208866.69197530864, "total_mean_ns": 316057.06172839506, "total_median_ns": 316364.0, "total_std_ns": 16723.557109916597, "total_mad_ns": 13746.0, "total_cv": 0.05291309429525753, "total_min_ns": 289154.0, "total_max_ns": 361200.0, "total_p5_ns": 293357.0, "total_p25_ns": 300676.0, "total_p50_ns": 316364.0, "total_p75_ns": 328644.0, "total_p95_ns": 343197.0, "total_p99_ns": 357904.0, "total_ci_low_ns": 312655.0160493827, "total_ci_high_ns": 319752.6697530864, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.195735109687627}, {"serializer": "MS DataContract Json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 189120.05494505496, "avg_time_deser_ns": 696333.978021978, "avg_time_total_ns": 885454.032967033, "median_size_bytes": 41574.0, "avg_ops_per_sec": 1129.364103350616, "min_ops_per_sec": 1021.1667442753393, "max_ops_per_sec": 1253.38413717036, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 189120.05494505496, "ser_median_ns": 187825.0, "ser_std_ns": 13314.934085339946, "ser_mad_ns": 9592.0, "ser_cv": 0.07040466485274834, "ser_min_ns": 163448.0, "ser_max_ns": 222267.0, "ser_p5_ns": 169065.0, "ser_p25_ns": 178979.5, "ser_p50_ns": 187825.0, "ser_p75_ns": 198181.5, "ser_p95_ns": 211278.0, "ser_p99_ns": 219729.9, "ser_ci_low_ns": 186260.84945054946, "ser_ci_high_ns": 191764.11593406592, "deser_mean_ns": 696333.978021978, "deser_median_ns": 697448.0, "deser_std_ns": 39213.722915150225, "deser_mad_ns": 29609.0, "deser_cv": 0.05631453318785564, "deser_min_ns": 627186.0, "deser_max_ns": 771662.0, "deser_p5_ns": 632627.5, "deser_p25_ns": 667712.0, "deser_p50_ns": 697448.0, "deser_p75_ns": 726012.0, "deser_p95_ns": 758888.0, "deser_p99_ns": 769021.4, "deser_ci_low_ns": 688660.8315934066, "deser_ci_high_ns": 703833.1230769231, "total_mean_ns": 885454.032967033, "total_median_ns": 889490.0, "total_std_ns": 44202.75918297171, "total_mad_ns": 34471.0, "total_cv": 0.04992100949030006, "total_min_ns": 797840.0, "total_max_ns": 979272.0, "total_p5_ns": 818976.5, "total_p25_ns": 851607.5, "total_p50_ns": 889490.0, "total_p75_ns": 921325.0, "total_p95_ns": 954688.5, "total_p99_ns": 971844.2999999999, "total_ci_low_ns": 876485.3546703296, "total_ci_high_ns": 894413.6664835165, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.916462904566238}, {"serializer": "MS Binary", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 362433.3604651163, "avg_time_deser_ns": 407955.5581395349, "avg_time_total_ns": 770388.9186046511, "median_size_bytes": 52335.0, "avg_ops_per_sec": 1298.0456699860463, "min_ops_per_sec": 1160.8294358485025, "max_ops_per_sec": 1462.7710148997855, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 362433.3604651163, "ser_median_ns": 360839.5, "ser_std_ns": 20005.612807064503, "ser_mad_ns": 13109.5, "ser_cv": 0.05519804463195936, "ser_min_ns": 316609.0, "ser_max_ns": 416204.0, "ser_p5_ns": 328980.25, "ser_p25_ns": 348089.0, "ser_p50_ns": 360839.5, "ser_p75_ns": 376676.75, "ser_p95_ns": 394236.75, "ser_p99_ns": 412158.85000000003, "ser_ci_low_ns": 358113.98139534885, "ser_ci_high_ns": 366878.34854651167, "deser_mean_ns": 407955.5581395349, "deser_median_ns": 406703.5, "deser_std_ns": 24478.40608450143, "deser_mad_ns": 16178.0, "deser_cv": 0.06000262919847011, "deser_min_ns": 359166.0, "deser_max_ns": 465149.0, "deser_p5_ns": 374348.5, "deser_p25_ns": 389012.5, "deser_p50_ns": 406703.5, "deser_p75_ns": 421021.25, "deser_p95_ns": 449586.25, "deser_p99_ns": 464732.5, "deser_ci_low_ns": 402604.40726744186, "deser_ci_high_ns": 413354.04476744187, "total_mean_ns": 770388.9186046511, "total_median_ns": 770921.5, "total_std_ns": 39024.067606969125, "total_mad_ns": 28610.0, "total_cv": 0.050655021982469, "total_min_ns": 683634.0, "total_max_ns": 861453.0, "total_p5_ns": 714944.75, "total_p25_ns": 742036.5, "total_p50_ns": 770921.5, "total_p75_ns": 795240.25, "total_p95_ns": 836276.75, "total_p99_ns": 854983.65, "total_ci_low_ns": 762260.6424418605, "total_ci_high_ns": 778659.4186046511, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.193447180200053}, {"serializer": "BinaryPack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.0.3", "avg_time_ser_ns": 140923.9255319149, "avg_time_deser_ns": 153089.45744680852, "avg_time_total_ns": 294013.3829787234, "median_size_bytes": 44068.0, "avg_ops_per_sec": 3401.2057201912003, "min_ops_per_sec": 2971.44147597441, "max_ops_per_sec": 3744.925625777072, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 140923.9255319149, "ser_median_ns": 139347.0, "ser_std_ns": 9666.42192226995, "ser_mad_ns": 6599.0, "ser_cv": 0.06859319228998348, "ser_min_ns": 123766.0, "ser_max_ns": 164592.0, "ser_p5_ns": 127199.0, "ser_p25_ns": 133930.0, "ser_p50_ns": 139347.0, "ser_p75_ns": 146697.25, "ser_p95_ns": 157535.15, "ser_p99_ns": 164190.24, "ser_ci_low_ns": 139007.1279255319, "ser_ci_high_ns": 142754.13457446807, "deser_mean_ns": 153089.45744680852, "deser_median_ns": 153518.5, "deser_std_ns": 7459.2006889159775, "deser_mad_ns": 5673.0, "deser_cv": 0.04872445701564854, "deser_min_ns": 138395.0, "deser_max_ns": 173024.0, "deser_p5_ns": 141095.05, "deser_p25_ns": 147659.25, "deser_p50_ns": 153518.5, "deser_p75_ns": 158728.0, "deser_p95_ns": 164839.8, "deser_p99_ns": 168050.35999999996, "deser_ci_low_ns": 151551.81117021275, "deser_ci_high_ns": 154635.58164893618, "total_mean_ns": 294013.3829787234, "total_median_ns": 293591.0, "total_std_ns": 14526.389979284075, "total_mad_ns": 10929.5, "total_cv": 0.04940724069126912, "total_min_ns": 267028.0, "total_max_ns": 336537.0, "total_p5_ns": 270477.15, "total_p25_ns": 283250.5, "total_p50_ns": 293591.0, "total_p75_ns": 304304.75, "total_p95_ns": 313666.85, "total_p99_ns": 324800.3999999999, "total_ci_low_ns": 291039.1906914894, "total_ci_high_ns": 297064.4449468085, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.788735015197632}, {"serializer": "NetJSON", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.0.0", "avg_time_ser_ns": 99396.52873563218, "avg_time_deser_ns": 177392.41379310345, "avg_time_total_ns": 276788.9425287356, "median_size_bytes": 41574.0, "avg_ops_per_sec": 3612.8610878166933, "min_ops_per_sec": 3019.0046341721136, "max_ops_per_sec": 3984.1272370874435, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 99396.52873563218, "ser_median_ns": 99229.0, "ser_std_ns": 6112.08782857091, "ser_mad_ns": 4104.0, "ser_cv": 0.06149196462209869, "ser_min_ns": 88719.0, "ser_max_ns": 114947.0, "ser_p5_ns": 91337.6, "ser_p25_ns": 94963.0, "ser_p50_ns": 99229.0, "ser_p75_ns": 101882.0, "ser_p95_ns": 113377.90000000001, "ser_p99_ns": 114811.12, "ser_ci_low_ns": 98205.09568965517, "ser_ci_high_ns": 100673.61781609195, "deser_mean_ns": 177392.41379310345, "deser_median_ns": 174478.0, "deser_std_ns": 12968.553082720617, "deser_mad_ns": 7407.0, "deser_cv": 0.07310658221183075, "deser_min_ns": 156705.0, "deser_max_ns": 219038.0, "deser_p5_ns": 161925.6, "deser_p25_ns": 167853.5, "deser_p50_ns": 174478.0, "deser_p75_ns": 183474.5, "deser_p95_ns": 201713.1, "deser_p99_ns": 211225.76, "deser_ci_low_ns": 174621.9568965517, "deser_ci_high_ns": 180083.70028735633, "total_mean_ns": 276788.9425287356, "total_median_ns": 274624.0, "total_std_ns": 16240.946063316089, "total_mad_ns": 9153.0, "total_cv": 0.05867628206148441, "total_min_ns": 250996.0, "total_max_ns": 331235.0, "total_p5_ns": 254269.2, "total_p25_ns": 265581.5, "total_p50_ns": 274624.0, "total_p75_ns": 283973.0, "total_p95_ns": 306632.9, "total_p99_ns": 324987.96, "total_ci_low_ns": 273560.549137931, "total_ci_high_ns": 280336.61408045975, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.540450195379247}, {"serializer": "Json.Net", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 196813.96739130435, "avg_time_deser_ns": 269884.6956521739, "avg_time_total_ns": 466698.6630434783, "median_size_bytes": 43089.0, "avg_ops_per_sec": 2142.710230791552, "min_ops_per_sec": 1940.8883057597802, "max_ops_per_sec": 2364.9048125812938, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 196813.96739130435, "ser_median_ns": 197466.0, "ser_std_ns": 10155.955845256176, "ser_mad_ns": 6830.0, "ser_cv": 0.05160180438344686, "ser_min_ns": 176235.0, "ser_max_ns": 224065.0, "ser_p5_ns": 181628.05, "ser_p25_ns": 189919.5, "ser_p50_ns": 197466.0, "ser_p75_ns": 203317.5, "ser_p95_ns": 213193.9, "ser_p99_ns": 223992.2, "ser_ci_low_ns": 194762.45760869567, "ser_ci_high_ns": 198787.2679347826, "deser_mean_ns": 269884.6956521739, "deser_median_ns": 270060.5, "deser_std_ns": 14296.772760972386, "deser_mad_ns": 7997.0, "deser_cv": 0.05297363278204555, "deser_min_ns": 244982.0, "deser_max_ns": 303544.0, "deser_p5_ns": 249102.1, "deser_p25_ns": 260638.75, "deser_p50_ns": 270060.5, "deser_p75_ns": 276349.5, "deser_p95_ns": 298086.2, "deser_p99_ns": 303081.72000000003, "deser_ci_low_ns": 267122.04619565216, "deser_ci_high_ns": 272874.4567934783, "total_mean_ns": 466698.6630434783, "total_median_ns": 465842.5, "total_std_ns": 20624.72716264543, "total_mad_ns": 11945.0, "total_cv": 0.04419281389868478, "total_min_ns": 422850.0, "total_max_ns": 515228.0, "total_p5_ns": 432717.9, "total_p25_ns": 454408.75, "total_p50_ns": 465842.5, "total_p75_ns": 480027.25, "total_p95_ns": 504223.0, "total_p99_ns": 512566.25, "total_ci_low_ns": 462719.6760869565, "total_ci_high_ns": 470760.191576087, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "GroBuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.80455177050504}, {"serializer": "FsPickler", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 9958.402298850575, "avg_time_deser_ns": 7859.609195402299, "avg_time_total_ns": 17818.011494252874, "median_size_bytes": 388.0, "avg_ops_per_sec": 56122.985458986026, "min_ops_per_sec": 36591.1668923122, "max_ops_per_sec": 100070.04903432402, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 9958.402298850575, "ser_median_ns": 9320.0, "ser_std_ns": 2235.0028690464396, "ser_mad_ns": 1268.0, "ser_cv": 0.22443388025249889, "ser_min_ns": 4682.0, "ser_max_ns": 16705.0, "ser_p5_ns": 7468.6, "ser_p25_ns": 8305.5, "ser_p50_ns": 9320.0, "ser_p75_ns": 11059.0, "ser_p95_ns": 14481.6, "ser_p99_ns": 15932.720000000001, "ser_ci_low_ns": 9492.840517241379, "ser_ci_high_ns": 10440.243390804597, "deser_mean_ns": 7859.609195402299, "deser_median_ns": 7711.0, "deser_std_ns": 1095.7242837324418, "deser_mad_ns": 557.0, "deser_cv": 0.1394120568200028, "deser_min_ns": 5062.0, "deser_max_ns": 11211.0, "deser_p5_ns": 6449.0, "deser_p25_ns": 7189.0, "deser_p50_ns": 7711.0, "deser_p75_ns": 8406.0, "deser_p95_ns": 9773.5, "deser_p99_ns": 10706.18, "deser_ci_low_ns": 7612.060632183908, "deser_ci_high_ns": 8083.376436781608, "total_mean_ns": 17818.011494252874, "total_median_ns": 17141.0, "total_std_ns": 3185.833352676994, "total_mad_ns": 1756.0, "total_cv": 0.17879847892704365, "total_min_ns": 9993.0, "total_max_ns": 27329.0, "total_p5_ns": 14081.5, "total_p25_ns": 15659.0, "total_p50_ns": 17141.0, "total_p75_ns": 19557.0, "total_p95_ns": 23752.5, "total_p99_ns": 25977.940000000002, "total_ci_low_ns": 17159.314655172413, "total_ci_high_ns": 18509.963218390803, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.668186101935509}, {"serializer": "FlatSharp", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "7.5.1", "avg_time_ser_ns": 6224.880952380952, "avg_time_deser_ns": 4775.702380952381, "avg_time_total_ns": 11000.583333333334, "median_size_bytes": 364.0, "avg_ops_per_sec": 90904.27022809396, "min_ops_per_sec": 54770.51155657794, "max_ops_per_sec": 142673.70523612498, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 6224.880952380952, "ser_median_ns": 6119.5, "ser_std_ns": 1582.5072405457756, "ser_mad_ns": 962.5, "ser_cv": 0.25422289239772256, "ser_min_ns": 3311.0, "ser_max_ns": 10819.0, "ser_p5_ns": 3573.2, "ser_p25_ns": 5206.5, "ser_p50_ns": 6119.5, "ser_p75_ns": 7116.75, "ser_p95_ns": 8610.75, "ser_p99_ns": 10617.310000000001, "ser_ci_low_ns": 5878.025, "ser_ci_high_ns": 6566.548511904762, "deser_mean_ns": 4775.702380952381, "deser_median_ns": 4643.5, "deser_std_ns": 978.9126470715721, "deser_mad_ns": 693.5, "deser_cv": 0.20497773290394097, "deser_min_ns": 3267.0, "deser_max_ns": 7879.0, "deser_p5_ns": 3545.35, "deser_p25_ns": 3997.5, "deser_p50_ns": 4643.5, "deser_p75_ns": 5344.75, "deser_p95_ns": 6662.399999999999, "deser_p99_ns": 7513.800000000001, "deser_ci_low_ns": 4582.791071428572, "deser_ci_high_ns": 4995.769345238095, "total_mean_ns": 11000.583333333334, "total_median_ns": 10956.0, "total_std_ns": 2306.0172425834917, "total_mad_ns": 1680.0, "total_cv": 0.20962681457045382, "total_min_ns": 7009.0, "total_max_ns": 18258.0, "total_p5_ns": 7565.2, "total_p25_ns": 9270.0, "total_p50_ns": 10956.0, "total_p75_ns": 12586.25, "total_p95_ns": 14227.5, "total_p99_ns": 17014.660000000003, "total_ci_low_ns": 10523.900595238094, "total_ci_high_ns": 11477.112202380953, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.6708031539620194}, {"serializer": "Hyperion", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "0.12.2", "avg_time_ser_ns": 5737.897727272727, "avg_time_deser_ns": 6744.352272727273, "avg_time_total_ns": 12482.25, "median_size_bytes": 544.0, "avg_ops_per_sec": 80113.76154138877, "min_ops_per_sec": 56471.651231081996, "max_ops_per_sec": 106997.64605178685, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 5737.897727272727, "ser_median_ns": 5627.0, "ser_std_ns": 766.9242351911373, "ser_mad_ns": 418.0, "ser_cv": 0.1336594466551538, "ser_min_ns": 4330.0, "ser_max_ns": 7956.0, "ser_p5_ns": 4668.9, "ser_p25_ns": 5225.75, "ser_p50_ns": 5627.0, "ser_p75_ns": 6083.0, "ser_p95_ns": 7251.5999999999985, "ser_p99_ns": 7674.989999999999, "ser_ci_low_ns": 5578.133806818182, "ser_ci_high_ns": 5896.091761363637, "deser_mean_ns": 6744.352272727273, "deser_median_ns": 6690.0, "deser_std_ns": 1174.358098470416, "deser_mad_ns": 749.5, "deser_cv": 0.1741246677192813, "deser_min_ns": 4845.0, "deser_max_ns": 10571.0, "deser_p5_ns": 5212.15, "deser_p25_ns": 5841.5, "deser_p50_ns": 6690.0, "deser_p75_ns": 7299.0, "deser_p95_ns": 9029.099999999999, "deser_p99_ns": 9637.489999999994, "deser_ci_low_ns": 6502.989204545454, "deser_ci_high_ns": 6987.235511363636, "total_mean_ns": 12482.25, "total_median_ns": 12227.0, "total_std_ns": 1856.4306516451984, "total_mad_ns": 1117.5, "total_cv": 0.1487256425440284, "total_min_ns": 9346.0, "total_max_ns": 17708.0, "total_p5_ns": 9972.0, "total_p25_ns": 11157.0, "total_p50_ns": 12227.0, "total_p75_ns": 13507.25, "total_p95_ns": 16266.35, "total_p99_ns": 17487.02, "total_ci_low_ns": 12126.657102272728, "total_ci_high_ns": 12867.823295454546, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.469573575967548}, {"serializer": "MemoryPack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 3738.247191011236, "avg_time_deser_ns": 2869.5280898876404, "avg_time_total_ns": 6607.775280898876, "median_size_bytes": 256.0, "avg_ops_per_sec": 151336.8656604749, "min_ops_per_sec": 91432.75121148395, "max_ops_per_sec": 241487.5633904854, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 3738.247191011236, "ser_median_ns": 3452.0, "ser_std_ns": 889.9958667025942, "ser_mad_ns": 548.0, "ser_cv": 0.2380783884069049, "ser_min_ns": 2248.0, "ser_max_ns": 6594.0, "ser_p5_ns": 2659.6, "ser_p25_ns": 3087.0, "ser_p50_ns": 3452.0, "ser_p75_ns": 4227.0, "ser_p95_ns": 5378.5999999999985, "ser_p99_ns": 5831.040000000004, "ser_ci_low_ns": 3561.9719101123596, "ser_ci_high_ns": 3940.003651685393, "deser_mean_ns": 2869.5280898876404, "deser_median_ns": 2734.0, "deser_std_ns": 586.2788680600811, "deser_mad_ns": 374.0, "deser_cv": 0.20431194596984673, "deser_min_ns": 1823.0, "deser_max_ns": 4732.0, "deser_p5_ns": 2183.4, "deser_p25_ns": 2454.0, "deser_p50_ns": 2734.0, "deser_p75_ns": 3267.0, "deser_p95_ns": 3960.1999999999994, "deser_p99_ns": 4428.4000000000015, "deser_ci_low_ns": 2751.227808988764, "deser_ci_high_ns": 2993.2924157303373, "total_mean_ns": 6607.775280898876, "total_median_ns": 6200.0, "total_std_ns": 1438.970502831238, "total_mad_ns": 844.0, "total_cv": 0.2177692856763571, "total_min_ns": 4141.0, "total_max_ns": 10937.0, "total_p5_ns": 4982.4, "total_p25_ns": 5439.0, "total_p50_ns": 6200.0, "total_p75_ns": 7649.0, "total_p95_ns": 9267.8, "total_p99_ns": 10516.360000000002, "total_ci_low_ns": 6315.542415730337, "total_ci_high_ns": 6897.957303370787, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.7747870107420669, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.5751644707169383}, {"serializer": "Json.Net", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 8990.423529411764, "avg_time_deser_ns": 8012.176470588235, "avg_time_total_ns": 17002.6, "median_size_bytes": 329.0, "avg_ops_per_sec": 58814.5342477033, "min_ops_per_sec": 43290.04329004329, "max_ops_per_sec": 86497.70781074301, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 8990.423529411764, "ser_median_ns": 8912.0, "ser_std_ns": 1367.0692964676434, "ser_mad_ns": 716.0, "ser_cv": 0.15205838657048112, "ser_min_ns": 6157.0, "ser_max_ns": 12691.0, "ser_p5_ns": 6785.0, "ser_p25_ns": 8307.0, "ser_p50_ns": 8912.0, "ser_p75_ns": 9743.0, "ser_p95_ns": 11405.4, "ser_p99_ns": 12590.199999999999, "ser_ci_low_ns": 8709.357352941177, "ser_ci_high_ns": 9287.330588235294, "deser_mean_ns": 8012.176470588235, "deser_median_ns": 8204.0, "deser_std_ns": 1473.8073966081588, "deser_mad_ns": 983.0, "deser_cv": 0.1839459480227793, "deser_min_ns": 5272.0, "deser_max_ns": 11592.0, "deser_p5_ns": 5409.4, "deser_p25_ns": 7053.0, "deser_p50_ns": 8204.0, "deser_p75_ns": 8954.0, "deser_p95_ns": 10420.2, "deser_p99_ns": 10866.239999999998, "deser_ci_low_ns": 7696.951764705883, "deser_ci_high_ns": 8334.664999999999, "total_mean_ns": 17002.6, "total_median_ns": 17007.0, "total_std_ns": 2435.7173393361672, "total_mad_ns": 1266.0, "total_cv": 0.14325558087211177, "total_min_ns": 11561.0, "total_max_ns": 23100.0, "total_p5_ns": 13193.8, "total_p25_ns": 15807.0, "total_p50_ns": 17007.0, "total_p75_ns": 18273.0, "total_p95_ns": 20880.8, "total_p99_ns": 23083.2, "total_ci_low_ns": 16493.595588235294, "total_ci_high_ns": 17501.31205882353, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.866936528114952}, {"serializer": "NetJSON", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.0.0", "avg_time_ser_ns": 3263.3333333333335, "avg_time_deser_ns": 4094.4942528735633, "avg_time_total_ns": 7357.827586206897, "median_size_bytes": 254.0, "avg_ops_per_sec": 135909.68098717293, "min_ops_per_sec": 94286.25306430322, "max_ops_per_sec": 166417.04110500915, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 3263.3333333333335, "ser_median_ns": 3085.0, "ser_std_ns": 650.9797565292279, "ser_mad_ns": 352.0, "ser_cv": 0.1994830714594161, "ser_min_ns": 2391.0, "ser_max_ns": 5262.0, "ser_p5_ns": 2553.2, "ser_p25_ns": 2795.0, "ser_p50_ns": 3085.0, "ser_p75_ns": 3580.0, "ser_p95_ns": 4508.6, "ser_p99_ns": 5112.36, "ser_ci_low_ns": 3137.691379310345, "ser_ci_high_ns": 3411.7887931034484, "deser_mean_ns": 4094.4942528735633, "deser_median_ns": 3987.0, "deser_std_ns": 407.0302506774975, "deser_mad_ns": 299.0, "deser_cv": 0.099409163999153, "deser_min_ns": 3453.0, "deser_max_ns": 5344.0, "deser_p5_ns": 3539.4, "deser_p25_ns": 3800.0, "deser_p50_ns": 3987.0, "deser_p75_ns": 4413.5, "deser_p95_ns": 4742.4, "deser_p99_ns": 5120.400000000001, "deser_ci_low_ns": 4013.4204022988506, "deser_ci_high_ns": 4184.475574712644, "total_mean_ns": 7357.827586206897, "total_median_ns": 7085.0, "total_std_ns": 990.797390957317, "total_mad_ns": 579.0, "total_cv": 0.1346589573279322, "total_min_ns": 6009.0, "total_max_ns": 10606.0, "total_p5_ns": 6176.3, "total_p25_ns": 6646.5, "total_p50_ns": 7085.0, "total_p75_ns": 7893.0, "total_p95_ns": 9099.1, "total_p99_ns": 9867.26, "total_ci_low_ns": 7156.37959770115, "total_ci_high_ns": 7571.872701149425, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9805481874447391, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.9510745670735554}, {"serializer": "System.Text.Json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "8.0.0.0", "avg_time_ser_ns": 7677.627659574468, "avg_time_deser_ns": 6973.563829787234, "avg_time_total_ns": 14651.191489361701, "median_size_bytes": 340.0, "avg_ops_per_sec": 68253.83455851387, "min_ops_per_sec": 45483.48949331393, "max_ops_per_sec": 96534.41451877594, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 7677.627659574468, "ser_median_ns": 7313.5, "ser_std_ns": 1712.880639647239, "ser_mad_ns": 1142.5, "ser_cv": 0.22310024861796635, "ser_min_ns": 5009.0, "ser_max_ns": 12642.0, "ser_p5_ns": 5447.35, "ser_p25_ns": 6304.75, "ser_p50_ns": 7313.5, "ser_p75_ns": 8763.75, "ser_p95_ns": 10775.75, "ser_p99_ns": 11777.099999999993, "ser_ci_low_ns": 7337.375531914893, "ser_ci_high_ns": 8066.333244680851, "deser_mean_ns": 6973.563829787234, "deser_median_ns": 6713.5, "deser_std_ns": 1142.968005446061, "deser_mad_ns": 663.0, "deser_cv": 0.16390012816171975, "deser_min_ns": 5156.0, "deser_max_ns": 9911.0, "deser_p5_ns": 5537.15, "deser_p25_ns": 6187.0, "deser_p50_ns": 6713.5, "deser_p75_ns": 7623.5, "deser_p95_ns": 9141.199999999999, "deser_p99_ns": 9805.91, "deser_ci_low_ns": 6748.412765957447, "deser_ci_high_ns": 7188.887765957446, "total_mean_ns": 14651.191489361701, "total_median_ns": 13977.5, "total_std_ns": 2787.960534410802, "total_mad_ns": 1773.0, "total_cv": 0.1902889970713408, "total_min_ns": 10359.0, "total_max_ns": 21986.0, "total_p5_ns": 11135.8, "total_p25_ns": 12511.75, "total_p50_ns": 13977.5, "total_p75_ns": 16172.25, "total_p95_ns": 20221.799999999996, "total_p99_ns": 21227.119999999995, "total_ci_low_ns": 14120.298936170213, "total_ci_high_ns": 15184.313031914893, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.780316135157278}, {"serializer": "FsPicklerJson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 15091.91011235955, "avg_time_deser_ns": 14456.14606741573, "avg_time_total_ns": 29548.05617977528, "median_size_bytes": 772.0, "avg_ops_per_sec": 33843.173774810566, "min_ops_per_sec": 25512.156542592544, "max_ops_per_sec": 49443.757725587144, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 15091.91011235955, "ser_median_ns": 14635.0, "ser_std_ns": 2518.2733290908304, "ser_mad_ns": 1750.0, "ser_cv": 0.16686246540976185, "ser_min_ns": 9090.0, "ser_max_ns": 20543.0, "ser_p5_ns": 10877.4, "ser_p25_ns": 13530.0, "ser_p50_ns": 14635.0, "ser_p75_ns": 16901.0, "ser_p95_ns": 19358.999999999996, "ser_p99_ns": 20352.920000000002, "ser_ci_low_ns": 14597.798876404493, "ser_ci_high_ns": 15600.366573033709, "deser_mean_ns": 14456.14606741573, "deser_median_ns": 14208.0, "deser_std_ns": 1722.7972203694687, "deser_mad_ns": 1187.0, "deser_cv": 0.11917403243819372, "deser_min_ns": 11046.0, "deser_max_ns": 19443.0, "deser_p5_ns": 11611.2, "deser_p25_ns": 13301.0, "deser_p50_ns": 14208.0, "deser_p75_ns": 15698.0, "deser_p95_ns": 17070.199999999997, "deser_p99_ns": 19251.16, "deser_ci_low_ns": 14109.311235955058, "deser_ci_high_ns": 14798.025561797753, "total_mean_ns": 29548.05617977528, "total_median_ns": 28920.0, "total_std_ns": 4021.0406679895877, "total_mad_ns": 2843.0, "total_cv": 0.13608477808235198, "total_min_ns": 20225.0, "total_max_ns": 39197.0, "total_p5_ns": 22556.4, "total_p25_ns": 26988.0, "total_p50_ns": 28920.0, "total_p75_ns": 32525.0, "total_p95_ns": 35751.2, "total_p99_ns": 37682.52000000001, "total_ci_low_ns": 28727.470786516853, "total_ci_high_ns": 30370.915449438202, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.575691815642013}, {"serializer": "Jil", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "2.17.0", "avg_time_ser_ns": 8927.897727272728, "avg_time_deser_ns": 5776.284090909091, "avg_time_total_ns": 14704.181818181818, "median_size_bytes": 254.0, "avg_ops_per_sec": 68007.8641821127, "min_ops_per_sec": 48155.63902532987, "max_ops_per_sec": 95803.79383023568, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 8927.897727272728, "ser_median_ns": 8572.0, "ser_std_ns": 1715.736985441873, "ser_mad_ns": 1255.0, "ser_cv": 0.1921770430009162, "ser_min_ns": 6183.0, "ser_max_ns": 13819.0, "ser_p5_ns": 6672.45, "ser_p25_ns": 7599.75, "ser_p50_ns": 8572.0, "ser_p75_ns": 10129.0, "ser_p95_ns": 12320.4, "ser_p99_ns": 13033.389999999996, "ser_ci_low_ns": 8573.086647727272, "ser_ci_high_ns": 9285.104545454546, "deser_mean_ns": 5776.284090909091, "deser_median_ns": 5554.5, "deser_std_ns": 874.3068840859504, "deser_mad_ns": 513.0, "deser_cv": 0.15136147570407138, "deser_min_ns": 4255.0, "deser_max_ns": 7891.0, "deser_p5_ns": 4668.85, "deser_p25_ns": 5130.25, "deser_p50_ns": 5554.5, "deser_p75_ns": 6300.0, "deser_p95_ns": 7658.449999999999, "deser_p99_ns": 7823.139999999999, "deser_ci_low_ns": 5589.146590909091, "deser_ci_high_ns": 5960.792897727272, "total_mean_ns": 14704.181818181818, "total_median_ns": 14381.5, "total_std_ns": 2452.7155279027056, "total_mad_ns": 1739.0, "total_cv": 0.16680394449896604, "total_min_ns": 10438.0, "total_max_ns": 20766.0, "total_p5_ns": 11561.25, "total_p25_ns": 13007.25, "total_p50_ns": 14381.5, "total_p75_ns": 16291.25, "total_p95_ns": 19825.499999999996, "total_p99_ns": 20733.81, "total_ci_low_ns": 14222.89431818182, "total_ci_high_ns": 15173.166761363635, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.493993190077075}, {"serializer": "Utf8Json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.3.7", "avg_time_ser_ns": 5378.433333333333, "avg_time_deser_ns": 4881.366666666667, "avg_time_total_ns": 10259.8, "median_size_bytes": 254.0, "avg_ops_per_sec": 97467.78689643074, "min_ops_per_sec": 60288.177488394525, "max_ops_per_sec": 168491.99663016008, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 5378.433333333333, "ser_median_ns": 5191.5, "ser_std_ns": 1374.4192812508697, "ser_mad_ns": 1025.0, "ser_cv": 0.25554268242627093, "ser_min_ns": 2858.0, "ser_max_ns": 9876.0, "ser_p5_ns": 3126.7, "ser_p25_ns": 4311.5, "ser_p50_ns": 5191.5, "ser_p75_ns": 6394.5, "ser_p95_ns": 7497.65, "ser_p99_ns": 8286.46, "ser_ci_low_ns": 5093.77611111111, "ser_ci_high_ns": 5655.402777777777, "deser_mean_ns": 4881.366666666667, "deser_median_ns": 4931.5, "deser_std_ns": 849.6235313030238, "deser_mad_ns": 538.5, "deser_cv": 0.1740544378902815, "deser_min_ns": 3060.0, "deser_max_ns": 6946.0, "deser_p5_ns": 3309.8, "deser_p25_ns": 4373.25, "deser_p50_ns": 4931.5, "deser_p75_ns": 5447.0, "deser_p95_ns": 6361.649999999999, "deser_p99_ns": 6736.849999999999, "deser_ci_low_ns": 4707.3758333333335, "deser_ci_high_ns": 5054.495277777778, "total_mean_ns": 10259.8, "total_median_ns": 9961.0, "total_std_ns": 2152.766029444001, "total_mad_ns": 1445.0, "total_cv": 0.20982534059572325, "total_min_ns": 5935.0, "total_max_ns": 16587.0, "total_p5_ns": 6490.1, "total_p25_ns": 8958.5, "total_p50_ns": 9961.0, "total_p75_ns": 11851.75, "total_p95_ns": 13644.699999999999, "total_p99_ns": 14879.98, "total_ci_low_ns": 9831.988611111112, "total_ci_high_ns": 10664.774166666666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9943833943833944, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.389029907843996}, {"serializer": "YAXLib", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "4.4.0", "avg_time_ser_ns": 137378.37837837837, "avg_time_deser_ns": 101670.63513513513, "avg_time_total_ns": 239049.01351351352, "median_size_bytes": 528.0, "avg_ops_per_sec": 4183.242529647459, "min_ops_per_sec": 3291.812603692097, "max_ops_per_sec": 5055.71396792655, "runs": 74, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 25, "ser_mean_ns": 137378.37837837837, "ser_median_ns": 136349.5, "ser_std_ns": 15360.885340051562, "ser_mad_ns": 10018.0, "ser_cv": 0.1118144319460767, "ser_min_ns": 108899.0, "ser_max_ns": 183059.0, "ser_p5_ns": 112931.95, "ser_p25_ns": 126537.0, "ser_p50_ns": 136349.5, "ser_p75_ns": 146702.5, "ser_p95_ns": 163192.89999999997, "ser_p99_ns": 179710.49, "ser_ci_low_ns": 134087.964527027, "ser_ci_high_ns": 140909.09155405406, "deser_mean_ns": 101670.63513513513, "deser_median_ns": 98902.5, "deser_std_ns": 8551.02676615276, "deser_mad_ns": 3520.0, "deser_cv": 0.08410517702370203, "deser_min_ns": 88897.0, "deser_max_ns": 132215.0, "deser_p5_ns": 93418.7, "deser_p25_ns": 96110.0, "deser_p50_ns": 98902.5, "deser_p75_ns": 104937.5, "deser_p95_ns": 119564.74999999999, "deser_p99_ns": 126801.31999999998, "deser_ci_low_ns": 99762.3483108108, "deser_ci_high_ns": 103678.93952702703, "total_mean_ns": 239049.01351351352, "total_median_ns": 235252.0, "total_std_ns": 21193.81858867528, "total_mad_ns": 13198.5, "total_cv": 0.08865888328577932, "total_min_ns": 197796.0, "total_max_ns": 303784.0, "total_p5_ns": 207198.85, "total_p25_ns": 225596.75, "total_p50_ns": 235252.0, "total_p75_ns": 250637.0, "total_p95_ns": 276939.89999999997, "total_p99_ns": 295225.48, "total_ci_low_ns": 234308.50878378376, "total_ci_high_ns": 243911.74256756756, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.42700891918685}, {"serializer": "MS Binary", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 20142.709677419356, "avg_time_deser_ns": 22501.956989247312, "avg_time_total_ns": 42644.666666666664, "median_size_bytes": 1472.0, "avg_ops_per_sec": 23449.59119546016, "min_ops_per_sec": 18543.242842308264, "max_ops_per_sec": 29579.672848818293, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 20142.709677419356, "ser_median_ns": 19968.0, "ser_std_ns": 2443.1116544482743, "ser_mad_ns": 1587.0, "ser_cv": 0.12129011903433644, "ser_min_ns": 16412.0, "ser_max_ns": 27320.0, "ser_p5_ns": 17015.4, "ser_p25_ns": 18153.0, "ser_p50_ns": 19968.0, "ser_p75_ns": 21342.0, "ser_p95_ns": 25077.799999999996, "ser_p99_ns": 26548.12, "ser_ci_low_ns": 19664.086559139785, "ser_ci_high_ns": 20652.159139784944, "deser_mean_ns": 22501.956989247312, "deser_median_ns": 22249.0, "deser_std_ns": 2183.7805915528716, "deser_mad_ns": 1536.0, "deser_cv": 0.09704847416588715, "deser_min_ns": 17145.0, "deser_max_ns": 28085.0, "deser_p5_ns": 19854.8, "deser_p25_ns": 20847.0, "deser_p50_ns": 22249.0, "deser_p75_ns": 23874.0, "deser_p95_ns": 26397.6, "deser_p99_ns": 27237.679999999997, "deser_ci_low_ns": 22058.976881720428, "deser_ci_high_ns": 22956.8811827957, "total_mean_ns": 42644.666666666664, "total_median_ns": 42103.0, "total_std_ns": 4387.84523560189, "total_mad_ns": 2982.0, "total_cv": 0.10289317700381188, "total_min_ns": 33807.0, "total_max_ns": 53928.0, "total_p5_ns": 36757.2, "total_p25_ns": 39228.0, "total_p50_ns": 42103.0, "total_p75_ns": 45193.0, "total_p95_ns": 50657.8, "total_p99_ns": 53585.76, "total_ci_low_ns": 41803.27795698925, "total_ci_high_ns": 43586.02634408602, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.925289201294293}, {"serializer": "LightProto", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.3.4", "avg_time_ser_ns": 4602.0, "avg_time_deser_ns": 3557.75, "avg_time_total_ns": 8159.75, "median_size_bytes": 164.0, "avg_ops_per_sec": 122552.77428842796, "min_ops_per_sec": 81221.57244964263, "max_ops_per_sec": 206526.22883106154, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 4602.0, "ser_median_ns": 4474.0, "ser_std_ns": 1033.2234350161957, "ser_mad_ns": 708.0, "ser_cv": 0.22451617449287173, "ser_min_ns": 2568.0, "ser_max_ns": 7357.0, "ser_p5_ns": 3047.05, "ser_p25_ns": 3936.25, "ser_p50_ns": 4474.0, "ser_p75_ns": 5202.75, "ser_p95_ns": 6455.8499999999985, "ser_p99_ns": 7328.29, "ser_ci_low_ns": 4377.530965909091, "ser_ci_high_ns": 4827.312215909091, "deser_mean_ns": 3557.75, "deser_median_ns": 3577.5, "deser_std_ns": 676.5599981039987, "deser_mad_ns": 520.5, "deser_cv": 0.19016513192439005, "deser_min_ns": 2077.0, "deser_max_ns": 5458.0, "deser_p5_ns": 2541.85, "deser_p25_ns": 3020.5, "deser_p50_ns": 3577.5, "deser_p75_ns": 4035.0, "deser_p95_ns": 4718.0999999999985, "deser_p99_ns": 5261.379999999999, "deser_ci_low_ns": 3409.6622159090907, "deser_ci_high_ns": 3703.4116477272723, "total_mean_ns": 8159.75, "total_median_ns": 7980.0, "total_std_ns": 1608.4841814792478, "total_mad_ns": 1099.5, "total_cv": 0.19712419883933305, "total_min_ns": 4842.0, "total_max_ns": 12312.0, "total_p5_ns": 5893.5, "total_p25_ns": 6962.5, "total_p50_ns": 7980.0, "total_p75_ns": 9109.75, "total_p95_ns": 11186.299999999997, "total_p99_ns": 12100.589999999998, "total_ci_low_ns": 7842.02215909091, "total_ci_high_ns": 8495.19375, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9647852147852148, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.693000721583738}, {"serializer": "MS Bond Fast", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 3135.505376344086, "avg_time_deser_ns": 2145.2795698924733, "avg_time_total_ns": 5280.784946236559, "median_size_bytes": 204.0, "avg_ops_per_sec": 189365.78750715213, "min_ops_per_sec": 147710.48744460856, "max_ops_per_sec": 239693.19271332695, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 3135.505376344086, "ser_median_ns": 3061.0, "ser_std_ns": 468.67406918129643, "ser_mad_ns": 315.0, "ser_cv": 0.14947321497747124, "ser_min_ns": 2332.0, "ser_max_ns": 4349.0, "ser_p5_ns": 2526.2, "ser_p25_ns": 2776.0, "ser_p50_ns": 3061.0, "ser_p75_ns": 3386.0, "ser_p95_ns": 3992.8, "ser_p99_ns": 4234.0, "ser_ci_low_ns": 3040.847849462366, "ser_ci_high_ns": 3229.4459677419354, "deser_mean_ns": 2145.2795698924733, "deser_median_ns": 2118.0, "deser_std_ns": 280.7602785911775, "deser_mad_ns": 243.0, "deser_cv": 0.13087351528978103, "deser_min_ns": 1686.0, "deser_max_ns": 2837.0, "deser_p5_ns": 1787.8, "deser_p25_ns": 1874.0, "deser_p50_ns": 2118.0, "deser_p75_ns": 2339.0, "deser_p95_ns": 2645.7999999999993, "deser_p99_ns": 2782.72, "deser_ci_low_ns": 2090.1362903225804, "deser_ci_high_ns": 2202.8118279569894, "total_mean_ns": 5280.784946236559, "total_median_ns": 5193.0, "total_std_ns": 656.3413224154423, "total_mad_ns": 435.0, "total_cv": 0.12428859139268586, "total_min_ns": 4172.0, "total_max_ns": 6770.0, "total_p5_ns": 4383.0, "total_p25_ns": 4796.0, "total_p50_ns": 5193.0, "total_p75_ns": 5666.0, "total_p95_ns": 6542.999999999998, "total_p99_ns": 6762.64, "total_ci_low_ns": 5153.835483870968, "total_ci_high_ns": 5417.274193548386, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.3792981212336051, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.6708018123697458}, {"serializer": "MS Bond Json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 4178.835294117647, "avg_time_deser_ns": 4542.941176470588, "avg_time_total_ns": 8721.776470588235, "median_size_bytes": 254.0, "avg_ops_per_sec": 114655.54103252037, "min_ops_per_sec": 88378.25894829872, "max_ops_per_sec": 144592.24985540775, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 4178.835294117647, "ser_median_ns": 4143.0, "ser_std_ns": 386.3399331904366, "ser_mad_ns": 243.0, "ser_cv": 0.09245158184010493, "ser_min_ns": 3292.0, "ser_max_ns": 5122.0, "ser_p5_ns": 3654.4, "ser_p25_ns": 3900.0, "ser_p50_ns": 4143.0, "ser_p75_ns": 4384.0, "ser_p95_ns": 5008.0, "ser_p99_ns": 5113.6, "ser_ci_low_ns": 4100.716176470589, "ser_ci_high_ns": 4259.075882352941, "deser_mean_ns": 4542.941176470588, "deser_median_ns": 4527.0, "deser_std_ns": 544.3086124123139, "deser_mad_ns": 390.0, "deser_cv": 0.11981414490495061, "deser_min_ns": 3435.0, "deser_max_ns": 6193.0, "deser_p5_ns": 3700.0, "deser_p25_ns": 4152.0, "deser_p50_ns": 4527.0, "deser_p75_ns": 4922.0, "deser_p95_ns": 5430.4, "deser_p99_ns": 5886.399999999999, "deser_ci_low_ns": 4432.094117647059, "deser_ci_high_ns": 4654.24, "total_mean_ns": 8721.776470588235, "total_median_ns": 8702.0, "total_std_ns": 794.9742190559299, "total_mad_ns": 528.0, "total_cv": 0.091148199192763, "total_min_ns": 6916.0, "total_max_ns": 11315.0, "total_p5_ns": 7587.0, "total_p25_ns": 8173.0, "total_p50_ns": 8702.0, "total_p75_ns": 9223.0, "total_p95_ns": 10023.6, "total_p99_ns": 10669.879999999997, "total_ci_low_ns": 8550.4, "total_ci_high_ns": 8889.508529411765, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.188883805223091}, {"serializer": "ServiceStack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 7180.945054945055, "avg_time_deser_ns": 5775.472527472528, "avg_time_total_ns": 12956.417582417582, "median_size_bytes": 206.0, "avg_ops_per_sec": 77181.82851385117, "min_ops_per_sec": 52952.078369075985, "max_ops_per_sec": 127129.41774726672, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 7180.945054945055, "ser_median_ns": 6913.0, "ser_std_ns": 1382.386610681665, "ser_mad_ns": 1001.0, "ser_cv": 0.1925076156556447, "ser_min_ns": 3983.0, "ser_max_ns": 10249.0, "ser_p5_ns": 5340.0, "ser_p25_ns": 6248.5, "ser_p50_ns": 6913.0, "ser_p75_ns": 8237.0, "ser_p95_ns": 9473.5, "ser_p99_ns": 9906.999999999998, "ser_ci_low_ns": 6892.911263736264, "ser_ci_high_ns": 7459.622802197801, "deser_mean_ns": 5775.472527472528, "deser_median_ns": 5798.0, "deser_std_ns": 920.3840423149379, "deser_mad_ns": 691.0, "deser_cv": 0.15936082077040334, "deser_min_ns": 3685.0, "deser_max_ns": 8636.0, "deser_p5_ns": 4458.0, "deser_p25_ns": 5028.0, "deser_p50_ns": 5798.0, "deser_p75_ns": 6364.0, "deser_p95_ns": 7140.0, "deser_p99_ns": 7687.399999999994, "deser_ci_low_ns": 5587.236263736264, "deser_ci_high_ns": 5965.095879120879, "total_mean_ns": 12956.417582417582, "total_median_ns": 12627.0, "total_std_ns": 2194.275876841247, "total_mad_ns": 1499.0, "total_cv": 0.16935822443844153, "total_min_ns": 7866.0, "total_max_ns": 18885.0, "total_p5_ns": 9834.5, "total_p25_ns": 11499.5, "total_p50_ns": 12627.0, "total_p75_ns": 14290.5, "total_p95_ns": 16703.0, "total_p99_ns": 17412.59999999999, "total_ci_low_ns": 12514.382692307692, "total_ci_high_ns": 13393.291208791208, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.972009018197975}, {"serializer": "MS DataContract Json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 9251.644444444444, "avg_time_deser_ns": 17422.3, "avg_time_total_ns": 26673.944444444445, "median_size_bytes": 340.0, "avg_ops_per_sec": 37489.76841736942, "min_ops_per_sec": 27043.106712099085, "max_ops_per_sec": 48348.88555818788, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 9251.644444444444, "ser_median_ns": 8698.5, "ser_std_ns": 1901.4273722483017, "ser_mad_ns": 1144.0, "ser_cv": 0.20552317846478604, "ser_min_ns": 6690.0, "ser_max_ns": 14672.0, "ser_p5_ns": 7195.55, "ser_p25_ns": 7872.75, "ser_p50_ns": 8698.5, "ser_p75_ns": 10193.0, "ser_p95_ns": 13801.8, "ser_p99_ns": 14606.14, "ser_ci_low_ns": 8879.225, "ser_ci_high_ns": 9664.800833333333, "deser_mean_ns": 17422.3, "deser_median_ns": 16906.5, "deser_std_ns": 1908.0135999915747, "deser_mad_ns": 1120.0, "deser_cv": 0.10951559782529142, "deser_min_ns": 13600.0, "deser_max_ns": 22502.0, "deser_p5_ns": 15062.95, "deser_p25_ns": 16230.75, "deser_p50_ns": 16906.5, "deser_p75_ns": 18461.25, "deser_p95_ns": 21504.05, "deser_p99_ns": 22494.88, "deser_ci_low_ns": 17034.919722222225, "deser_ci_high_ns": 17796.504444444443, "total_mean_ns": 26673.944444444445, "total_median_ns": 25607.0, "total_std_ns": 3578.7868491271793, "total_mad_ns": 2170.0, "total_cv": 0.13416789018890515, "total_min_ns": 20683.0, "total_max_ns": 36978.0, "total_p5_ns": 22469.0, "total_p25_ns": 24205.75, "total_p50_ns": 25607.0, "total_p75_ns": 28937.75, "total_p95_ns": 34261.2, "total_p99_ns": 36528.55, "total_ci_low_ns": 25991.997499999998, "total_ci_high_ns": 27414.75361111111, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.459721688303185}, {"serializer": "Google.Protobuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "3.35.1", "avg_time_ser_ns": 3890.868131868132, "avg_time_deser_ns": 3883.076923076923, "avg_time_total_ns": 7773.945054945055, "median_size_bytes": 164.0, "avg_ops_per_sec": 128634.81706291373, "min_ops_per_sec": 84097.21638213775, "max_ops_per_sec": 368324.12523020257, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 3890.868131868132, "ser_median_ns": 3691.0, "ser_std_ns": 958.5252817484345, "ser_mad_ns": 541.0, "ser_cv": 0.24635254890743763, "ser_min_ns": 1257.0, "ser_max_ns": 6288.0, "ser_p5_ns": 2867.5, "ser_p25_ns": 3179.5, "ser_p50_ns": 3691.0, "ser_p75_ns": 4392.5, "ser_p95_ns": 5865.5, "ser_p99_ns": 6095.399999999999, "ser_ci_low_ns": 3703.3686813186814, "ser_ci_high_ns": 4093.8263736263734, "deser_mean_ns": 3883.076923076923, "deser_median_ns": 3821.0, "deser_std_ns": 845.5616835475462, "deser_mad_ns": 596.0, "deser_cv": 0.21775558411485937, "deser_min_ns": 1458.0, "deser_max_ns": 6011.0, "deser_p5_ns": 2847.5, "deser_p25_ns": 3211.5, "deser_p50_ns": 3821.0, "deser_p75_ns": 4357.0, "deser_p95_ns": 5494.5, "deser_p99_ns": 5811.199999999999, "deser_ci_low_ns": 3708.7835164835165, "deser_ci_high_ns": 4049.410989010989, "total_mean_ns": 7773.945054945055, "total_median_ns": 7453.0, "total_std_ns": 1736.0545201541042, "total_mad_ns": 1039.0, "total_cv": 0.2233170556112677, "total_min_ns": 2715.0, "total_max_ns": 11891.0, "total_p5_ns": 5832.5, "total_p25_ns": 6445.5, "total_p50_ns": 7453.0, "total_p75_ns": 8605.0, "total_p95_ns": 11242.5, "total_p99_ns": 11665.099999999999, "total_ci_low_ns": 7418.699725274725, "total_ci_high_ns": 8146.135439560439, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9381717183914986, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.219219987148978}, {"serializer": "MS DataContract", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 9594.284210526315, "avg_time_deser_ns": 14999.663157894736, "avg_time_total_ns": 24593.947368421053, "median_size_bytes": 732.0, "avg_ops_per_sec": 40660.410670147765, "min_ops_per_sec": 28895.053166897826, "max_ops_per_sec": 55906.524291384805, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 9594.284210526315, "ser_median_ns": 8976.0, "ser_std_ns": 2174.2200981929905, "ser_mad_ns": 1117.0, "ser_cv": 0.22661618631305053, "ser_min_ns": 6326.0, "ser_max_ns": 16038.0, "ser_p5_ns": 7126.3, "ser_p25_ns": 7916.0, "ser_p50_ns": 8976.0, "ser_p75_ns": 10496.5, "ser_p95_ns": 13750.6, "ser_p99_ns": 15686.44, "ser_ci_low_ns": 9179.764210526315, "ser_ci_high_ns": 10048.166578947368, "deser_mean_ns": 14999.663157894736, "deser_median_ns": 14374.0, "deser_std_ns": 2166.252144468749, "deser_mad_ns": 1239.0, "deser_cv": 0.14442005274822395, "deser_min_ns": 11252.0, "deser_max_ns": 20141.0, "deser_p5_ns": 12481.3, "deser_p25_ns": 13467.0, "deser_p50_ns": 14374.0, "deser_p75_ns": 16261.0, "deser_p95_ns": 19054.2, "deser_p99_ns": 20104.34, "deser_ci_low_ns": 14579.712368421053, "deser_ci_high_ns": 15452.563421052631, "total_mean_ns": 24593.947368421053, "total_median_ns": 23160.0, "total_std_ns": 4154.08809249144, "total_mad_ns": 2340.0, "total_cv": 0.16890692780067273, "total_min_ns": 17887.0, "total_max_ns": 34608.0, "total_p5_ns": 19621.9, "total_p25_ns": 21607.5, "total_p50_ns": 23160.0, "total_p75_ns": 27732.5, "total_p95_ns": 32861.299999999996, "total_p99_ns": 33869.16, "total_ci_low_ns": 23738.498684210525, "total_ci_high_ns": 25489.056842105263, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.542793624217289}, {"serializer": "ProtoBuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "2.4.9.1", "avg_time_ser_ns": 4511.821428571428, "avg_time_deser_ns": 5174.8452380952385, "avg_time_total_ns": 9686.666666666666, "median_size_bytes": 164.0, "avg_ops_per_sec": 103234.68685478321, "min_ops_per_sec": 80076.8737988469, "max_ops_per_sec": 152975.3709652746, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 4511.821428571428, "ser_median_ns": 4433.5, "ser_std_ns": 671.2958904591419, "ser_mad_ns": 459.0, "ser_cv": 0.14878600607021217, "ser_min_ns": 2887.0, "ser_max_ns": 5989.0, "ser_p5_ns": 3332.4, "ser_p25_ns": 4105.0, "ser_p50_ns": 4433.5, "ser_p75_ns": 5037.5, "ser_p95_ns": 5632.7, "ser_p99_ns": 5816.360000000001, "ser_ci_low_ns": 4370.914285714285, "ser_ci_high_ns": 4661.019345238095, "deser_mean_ns": 5174.8452380952385, "deser_median_ns": 5170.0, "deser_std_ns": 537.5800639511979, "deser_mad_ns": 372.5, "deser_cv": 0.10388331229574525, "deser_min_ns": 3650.0, "deser_max_ns": 6834.0, "deser_p5_ns": 4436.85, "deser_p25_ns": 4756.0, "deser_p50_ns": 5170.0, "deser_p75_ns": 5519.25, "deser_p95_ns": 6048.9, "deser_p99_ns": 6596.620000000001, "deser_ci_low_ns": 5062.940476190476, "deser_ci_high_ns": 5286.615476190476, "total_mean_ns": 9686.666666666666, "total_median_ns": 9772.0, "total_std_ns": 1094.4938350763243, "total_mad_ns": 776.0, "total_cv": 0.11298972832859508, "total_min_ns": 6537.0, "total_max_ns": 12488.0, "total_p5_ns": 7830.9, "total_p25_ns": 8912.25, "total_p50_ns": 9772.0, "total_p75_ns": 10455.75, "total_p95_ns": 11276.5, "total_p99_ns": 12048.93, "total_ci_low_ns": 9459.415476190477, "total_ci_high_ns": 9922.009523809524, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.999738356881214, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.312779200141342}, {"serializer": "ZeroFormatter", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.6.4", "avg_time_ser_ns": 4194.333333333333, "avg_time_deser_ns": 2984.0333333333333, "avg_time_total_ns": 7178.366666666667, "median_size_bytes": 192.0, "avg_ops_per_sec": 139307.45619941398, "min_ops_per_sec": 89031.33903133903, "max_ops_per_sec": 224416.5170556553, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 4194.333333333333, "ser_median_ns": 4048.0, "ser_std_ns": 987.2788388383383, "ser_mad_ns": 632.0, "ser_cv": 0.23538397174878925, "ser_min_ns": 2202.0, "ser_max_ns": 7072.0, "ser_p5_ns": 2766.95, "ser_p25_ns": 3523.0, "ser_p50_ns": 4048.0, "ser_p75_ns": 4783.75, "ser_p95_ns": 5788.15, "ser_p99_ns": 7055.09, "ser_ci_low_ns": 3994.8325, "ser_ci_high_ns": 4391.7175, "deser_mean_ns": 2984.0333333333333, "deser_median_ns": 2896.0, "deser_std_ns": 513.456768198637, "deser_mad_ns": 351.5, "deser_cv": 0.17206804041464135, "deser_min_ns": 2080.0, "deser_max_ns": 4527.0, "deser_p5_ns": 2306.25, "deser_p25_ns": 2567.25, "deser_p50_ns": 2896.0, "deser_p75_ns": 3299.5, "deser_p95_ns": 3836.0, "deser_p99_ns": 4324.97, "deser_ci_low_ns": 2883.8638888888886, "deser_ci_high_ns": 3088.2599999999998, "total_mean_ns": 7178.366666666667, "total_median_ns": 7087.0, "total_std_ns": 1338.1668447896855, "total_mad_ns": 840.0, "total_cv": 0.1864166191180471, "total_min_ns": 4456.0, "total_max_ns": 11232.0, "total_p5_ns": 5370.85, "total_p25_ns": 6265.0, "total_p50_ns": 7087.0, "total_p75_ns": 7918.0, "total_p95_ns": 9555.45, "total_p99_ns": 10082.119999999999, "total_ci_low_ns": 6911.103055555555, "total_ci_high_ns": 7454.544444444445, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.8981684981684982, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.198562784686455}, {"serializer": "MS XmlSerializer", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 11472.578313253012, "avg_time_deser_ns": 16459.85542168675, "avg_time_total_ns": 27932.433734939757, "median_size_bytes": 667.0, "avg_ops_per_sec": 35800.6756407027, "min_ops_per_sec": 29890.898221491556, "max_ops_per_sec": 43451.81194055792, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 11472.578313253012, "ser_median_ns": 11303.0, "ser_std_ns": 1190.0156805738966, "ser_mad_ns": 814.0, "ser_cv": 0.10372696076514919, "ser_min_ns": 8670.0, "ser_max_ns": 14481.0, "ser_p5_ns": 9808.7, "ser_p25_ns": 10726.0, "ser_p50_ns": 11303.0, "ser_p75_ns": 12197.5, "ser_p95_ns": 13780.5, "ser_p99_ns": 14207.119999999997, "ser_ci_low_ns": 11216.189457831326, "ser_ci_high_ns": 11729.156024096384, "deser_mean_ns": 16459.85542168675, "deser_median_ns": 16471.0, "deser_std_ns": 1125.9949435892418, "deser_mad_ns": 774.0, "deser_cv": 0.06840855613504858, "deser_min_ns": 14310.0, "deser_max_ns": 19308.0, "deser_p5_ns": 14784.9, "deser_p25_ns": 15663.5, "deser_p50_ns": 16471.0, "deser_p75_ns": 17114.5, "deser_p95_ns": 18474.899999999998, "deser_p99_ns": 19051.339999999997, "deser_ci_low_ns": 16222.39156626506, "deser_ci_high_ns": 16713.373493975905, "total_mean_ns": 27932.433734939757, "total_median_ns": 27613.0, "total_std_ns": 2133.506413034147, "total_mad_ns": 1530.0, "total_cv": 0.07638097107039457, "total_min_ns": 23014.0, "total_max_ns": 33455.0, "total_p5_ns": 24940.3, "total_p25_ns": 26431.5, "total_p50_ns": 27613.0, "total_p75_ns": 29626.0, "total_p95_ns": 31470.199999999997, "total_p99_ns": 32703.059999999994, "total_ci_low_ns": 27488.451506024096, "total_ci_high_ns": 28383.70331325301, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.767284668472318}, {"serializer": "Ceras", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "4.1.7", "avg_time_ser_ns": 5832.08988764045, "avg_time_deser_ns": 13847.38202247191, "avg_time_total_ns": 19679.47191011236, "median_size_bytes": 208.0, "avg_ops_per_sec": 50814.37167458476, "min_ops_per_sec": 36459.0928977687, "max_ops_per_sec": 72801.39778683751, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 5832.08988764045, "ser_median_ns": 5603.0, "ser_std_ns": 972.4618319274381, "ser_mad_ns": 628.0, "ser_cv": 0.16674328596826157, "ser_min_ns": 3880.0, "ser_max_ns": 8348.0, "ser_p5_ns": 4500.6, "ser_p25_ns": 5162.0, "ser_p50_ns": 5603.0, "ser_p75_ns": 6313.0, "ser_p95_ns": 7612.0, "ser_p99_ns": 8078.720000000001, "ser_ci_low_ns": 5631.676685393259, "ser_ci_high_ns": 6037.794943820225, "deser_mean_ns": 13847.38202247191, "deser_median_ns": 13639.0, "deser_std_ns": 1884.0275554442233, "deser_mad_ns": 1031.0, "deser_cv": 0.13605658834188095, "deser_min_ns": 9856.0, "deser_max_ns": 19376.0, "deser_p5_ns": 11402.2, "deser_p25_ns": 12651.0, "deser_p50_ns": 13639.0, "deser_p75_ns": 14690.0, "deser_p95_ns": 17208.199999999997, "deser_p99_ns": 19115.52, "deser_ci_low_ns": 13481.849719101125, "deser_ci_high_ns": 14232.366853932584, "total_mean_ns": 19679.47191011236, "total_median_ns": 19199.0, "total_std_ns": 2702.5324911422, "total_mad_ns": 1493.0, "total_cv": 0.1373274904675412, "total_min_ns": 13736.0, "total_max_ns": 27428.0, "total_p5_ns": 16158.2, "total_p25_ns": 17792.0, "total_p50_ns": 19199.0, "total_p75_ns": 20939.0, "total_p95_ns": 24777.8, "total_p99_ns": 25638.96000000001, "total_ci_low_ns": 19137.341011235956, "total_ci_high_ns": 20248.206460674155, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.530047107127922}, {"serializer": "CsvHelper", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "33.1.0", "avg_time_ser_ns": 1438165.3263157895, "avg_time_deser_ns": 671708.9052631579, "avg_time_total_ns": 2109874.2315789475, "median_size_bytes": 155.0, "avg_ops_per_sec": 473.96190020844944, "min_ops_per_sec": 418.0577538425778, "max_ops_per_sec": 512.5009225016605, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1438165.3263157895, "ser_median_ns": 1400653.0, "ser_std_ns": 93542.03938831088, "ser_mad_ns": 41655.0, "ser_cv": 0.06504261900677412, "ser_min_ns": 1313399.0, "ser_max_ns": 1695111.0, "ser_p5_ns": 1332461.7, "ser_p25_ns": 1370451.5, "ser_p50_ns": 1400653.0, "ser_p75_ns": 1490859.5, "ser_p95_ns": 1601554.2, "ser_p99_ns": 1695094.08, "ser_ci_low_ns": 1419773.7271052632, "ser_ci_high_ns": 1458028.205, "deser_mean_ns": 671708.9052631579, "deser_median_ns": 668857.0, "deser_std_ns": 22771.29889728851, "deser_mad_ns": 15646.0, "deser_cv": 0.03390054638082744, "deser_min_ns": 628224.0, "deser_max_ns": 742181.0, "deser_p5_ns": 640872.9, "deser_p25_ns": 653533.0, "deser_p50_ns": 668857.0, "deser_p75_ns": 686171.5, "deser_p95_ns": 712328.5, "deser_p99_ns": 728507.76, "deser_ci_low_ns": 667034.3139473684, "deser_ci_high_ns": 676197.6492105264, "total_mean_ns": 2109874.2315789475, "total_median_ns": 2069536.0, "total_std_ns": 104156.55713533463, "total_mad_ns": 53162.0, "total_cv": 0.04936623973903313, "total_min_ns": 1951216.0, "total_max_ns": 2392014.0, "total_p5_ns": 1995906.2, "total_p25_ns": 2028801.0, "total_p50_ns": 2069536.0, "total_p75_ns": 2175881.0, "total_p95_ns": 2304662.0, "total_p99_ns": 2390952.74, "total_ci_low_ns": 2089995.5936842104, "total_ci_high_ns": 2132287.8505263156, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.160169587141773}, {"serializer": "GroBuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.9.2", "avg_time_ser_ns": 2533.9775280898875, "avg_time_deser_ns": 3336.224719101124, "avg_time_total_ns": 5870.202247191011, "median_size_bytes": 500.0, "avg_ops_per_sec": 170351.88190977857, "min_ops_per_sec": 115486.77676406052, "max_ops_per_sec": 232180.17181332715, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 2533.9775280898875, "ser_median_ns": 2420.0, "ser_std_ns": 482.1218720295469, "ser_mad_ns": 343.0, "ser_cv": 0.19026288382003545, "ser_min_ns": 1728.0, "ser_max_ns": 4054.0, "ser_p5_ns": 1944.8, "ser_p25_ns": 2154.0, "ser_p50_ns": 2420.0, "ser_p75_ns": 2799.0, "ser_p95_ns": 3410.7999999999993, "ser_p99_ns": 3929.040000000001, "ser_ci_low_ns": 2437.1980337078653, "ser_ci_high_ns": 2636.146629213483, "deser_mean_ns": 3336.224719101124, "deser_median_ns": 3252.0, "deser_std_ns": 608.2836836843217, "deser_mad_ns": 458.0, "deser_cv": 0.18232695183920675, "deser_min_ns": 2319.0, "deser_max_ns": 4728.0, "deser_p5_ns": 2539.8, "deser_p25_ns": 2837.0, "deser_p50_ns": 3252.0, "deser_p75_ns": 3784.0, "deser_p95_ns": 4393.5999999999985, "deser_p99_ns": 4689.280000000001, "deser_ci_low_ns": 3216.0592696629215, "deser_ci_high_ns": 3469.613483146067, "total_mean_ns": 5870.202247191011, "total_median_ns": 5630.0, "total_std_ns": 1023.7284594223491, "total_mad_ns": 732.0, "total_cv": 0.17439406962719559, "total_min_ns": 4307.0, "total_max_ns": 8659.0, "total_p5_ns": 4556.4, "total_p25_ns": 5050.0, "total_p50_ns": 5630.0, "total_p75_ns": 6535.0, "total_p95_ns": 7843.599999999999, "total_p99_ns": 8360.680000000002, "total_ci_low_ns": 5669.166292134832, "total_ci_high_ns": 6094.949438202247, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.6039017162612669, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.1903001391582624}, {"serializer": "SharpSerializer", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 19367.738636363636, "avg_time_deser_ns": 44076.420454545456, "avg_time_total_ns": 63444.15909090909, "median_size_bytes": 1668.0, "avg_ops_per_sec": 15761.892258152571, "min_ops_per_sec": 13709.898546750754, "max_ops_per_sec": 18153.10327300452, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 19367.738636363636, "ser_median_ns": 19170.5, "ser_std_ns": 1412.4845517968633, "ser_mad_ns": 837.5, "ser_cv": 0.07292976109998056, "ser_min_ns": 16252.0, "ser_max_ns": 23682.0, "ser_p5_ns": 17485.6, "ser_p25_ns": 18364.0, "ser_p50_ns": 19170.5, "ser_p75_ns": 20065.75, "ser_p95_ns": 22177.249999999993, "ser_p99_ns": 23241.78, "ser_ci_low_ns": 19073.688636363637, "ser_ci_high_ns": 19672.219602272726, "deser_mean_ns": 44076.420454545456, "deser_median_ns": 43777.0, "deser_std_ns": 2330.487476614552, "deser_mad_ns": 1339.5, "deser_cv": 0.052873791759426254, "deser_min_ns": 37731.0, "deser_max_ns": 51364.0, "deser_p5_ns": 40639.45, "deser_p25_ns": 42634.0, "deser_p50_ns": 43777.0, "deser_p75_ns": 45525.5, "deser_p95_ns": 48183.59999999999, "deser_p99_ns": 50004.189999999995, "deser_ci_low_ns": 43587.81761363637, "deser_ci_high_ns": 44538.889204545456, "total_mean_ns": 63444.15909090909, "total_median_ns": 63082.5, "total_std_ns": 3349.8321758833044, "total_mad_ns": 2022.5, "total_cv": 0.05279969383916544, "total_min_ns": 55087.0, "total_max_ns": 72940.0, "total_p5_ns": 58875.2, "total_p25_ns": 61397.5, "total_p50_ns": 63082.5, "total_p75_ns": 65617.25, "total_p95_ns": 69061.15, "total_p99_ns": 72001.26999999999, "total_ci_low_ns": 62758.47727272727, "total_ci_high_ns": 64132.40994318182, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.309519070445308}, {"serializer": "YamlDotNet", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "17.1.0", "avg_time_ser_ns": 77700.27472527472, "avg_time_deser_ns": 57972.1978021978, "avg_time_total_ns": 135672.47252747254, "median_size_bytes": 224.0, "avg_ops_per_sec": 7370.691941930287, "min_ops_per_sec": 5960.150434196959, "max_ops_per_sec": 8806.382866301496, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 77700.27472527472, "ser_median_ns": 75721.0, "ser_std_ns": 7426.93099928442, "ser_mad_ns": 3710.0, "ser_cv": 0.0955843595861644, "ser_min_ns": 64059.0, "ser_max_ns": 97996.0, "ser_p5_ns": 68260.0, "ser_p25_ns": 72966.5, "ser_p50_ns": 75721.0, "ser_p75_ns": 80547.5, "ser_p95_ns": 93271.0, "ser_p99_ns": 96897.09999999999, "ser_ci_low_ns": 76144.53901098901, "ser_ci_high_ns": 79257.3956043956, "deser_mean_ns": 57972.1978021978, "deser_median_ns": 57448.0, "deser_std_ns": 4470.714241271324, "deser_mad_ns": 3123.0, "deser_cv": 0.07711824651750279, "deser_min_ns": 49091.0, "deser_max_ns": 69785.0, "deser_p5_ns": 51897.0, "deser_p25_ns": 54771.5, "deser_p50_ns": 57448.0, "deser_p75_ns": 60709.0, "deser_p95_ns": 66524.0, "deser_p99_ns": 68265.79999999999, "deser_ci_low_ns": 57080.51236263736, "deser_ci_high_ns": 58871.57445054945, "total_mean_ns": 135672.47252747254, "total_median_ns": 134995.0, "total_std_ns": 11328.059494842058, "total_mad_ns": 6867.0, "total_cv": 0.08349563683633923, "total_min_ns": 113554.0, "total_max_ns": 167781.0, "total_p5_ns": 120761.0, "total_p25_ns": 128220.0, "total_p50_ns": 134995.0, "total_p75_ns": 141724.0, "total_p95_ns": 158516.5, "total_p99_ns": 164378.09999999998, "total_ci_low_ns": 133364.19313186812, "total_ci_high_ns": 137847.06291208792, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.236157506315404}, {"serializer": "Json.Net (Helper)", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 8691.797619047618, "avg_time_deser_ns": 8042.642857142857, "avg_time_total_ns": 16734.440476190477, "median_size_bytes": 304.0, "avg_ops_per_sec": 59757.002418024415, "min_ops_per_sec": 45384.40591812653, "max_ops_per_sec": 85207.90729379686, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 8691.797619047618, "ser_median_ns": 8589.0, "ser_std_ns": 1305.492150006733, "ser_mad_ns": 715.5, "ser_cv": 0.15019817616850806, "ser_min_ns": 6059.0, "ser_max_ns": 12190.0, "ser_p5_ns": 6631.65, "ser_p25_ns": 7898.75, "ser_p50_ns": 8589.0, "ser_p75_ns": 9395.0, "ser_p95_ns": 10926.4, "ser_p99_ns": 11988.310000000001, "ser_ci_low_ns": 8416.880952380952, "ser_ci_high_ns": 8979.369345238096, "deser_mean_ns": 8042.642857142857, "deser_median_ns": 8237.0, "deser_std_ns": 1244.3049024211587, "deser_mad_ns": 912.5, "deser_cv": 0.15471343493961848, "deser_min_ns": 5568.0, "deser_max_ns": 12137.0, "deser_p5_ns": 6153.15, "deser_p25_ns": 7207.25, "deser_p50_ns": 8237.0, "deser_p75_ns": 8972.5, "deser_p95_ns": 9831.85, "deser_p99_ns": 10306.850000000004, "deser_ci_low_ns": 7780.3607142857145, "deser_ci_high_ns": 8296.882440476189, "total_mean_ns": 16734.440476190477, "total_median_ns": 16835.5, "total_std_ns": 1950.459577299486, "total_mad_ns": 1258.5, "total_cv": 0.11655361767694426, "total_min_ns": 11736.0, "total_max_ns": 22034.0, "total_p5_ns": 13247.8, "total_p25_ns": 15445.25, "total_p50_ns": 16835.5, "total_p75_ns": 18023.75, "total_p95_ns": 19551.3, "total_p99_ns": 20562.410000000003, "total_ci_low_ns": 16336.376785714285, "total_ci_high_ns": 17126.863095238095, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.220717615371338}, {"serializer": "MS Bond Compact", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 2899.067415730337, "avg_time_deser_ns": 2029.0449438202247, "avg_time_total_ns": 4928.112359550561, "median_size_bytes": 164.0, "avg_ops_per_sec": 202917.45135681098, "min_ops_per_sec": 148279.95255041518, "max_ops_per_sec": 297530.49687592976, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 2899.067415730337, "ser_median_ns": 2809.0, "ser_std_ns": 485.9054995514889, "ser_mad_ns": 305.0, "ser_cv": 0.16760751989241993, "ser_min_ns": 1678.0, "ser_max_ns": 4249.0, "ser_p5_ns": 2291.8, "ser_p25_ns": 2556.0, "ser_p50_ns": 2809.0, "ser_p75_ns": 3177.0, "ser_p95_ns": 3788.3999999999996, "ser_p99_ns": 4245.48, "ser_ci_low_ns": 2800.796629213483, "ser_ci_high_ns": 3004.6247191011234, "deser_mean_ns": 2029.0449438202247, "deser_median_ns": 1988.0, "deser_std_ns": 249.19533731375725, "deser_mad_ns": 158.0, "deser_cv": 0.12281410427734527, "deser_min_ns": 1683.0, "deser_max_ns": 2607.0, "deser_p5_ns": 1720.8, "deser_p25_ns": 1832.0, "deser_p50_ns": 1988.0, "deser_p75_ns": 2173.0, "deser_p95_ns": 2520.4, "deser_p99_ns": 2602.6, "deser_ci_low_ns": 1979.1794943820225, "deser_ci_high_ns": 2083.2511235955053, "total_mean_ns": 4928.112359550561, "total_median_ns": 4844.0, "total_std_ns": 622.2324258485119, "total_mad_ns": 334.0, "total_cv": 0.1262618180047459, "total_min_ns": 3361.0, "total_max_ns": 6744.0, "total_p5_ns": 4114.4, "total_p25_ns": 4523.0, "total_p50_ns": 4844.0, "total_p75_ns": 5266.0, "total_p95_ns": 6179.399999999997, "total_p99_ns": 6736.96, "total_ci_low_ns": 4800.682865168539, "total_ci_high_ns": 5060.512921348315, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.11766884800592665, "effect_vs_fastest_cliffs_label": "negligible", "effect_vs_fastest_hedges_g": 0.15713661862108308}, {"serializer": "BinaryPack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.0.3", "avg_time_ser_ns": 2989.6153846153848, "avg_time_deser_ns": 1833.8021978021977, "avg_time_total_ns": 4823.417582417583, "median_size_bytes": 196.0, "avg_ops_per_sec": 207321.8797487532, "min_ops_per_sec": 145412.24371092045, "max_ops_per_sec": 270489.5861509332, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 2989.6153846153848, "ser_median_ns": 2814.0, "ser_std_ns": 588.2382693589916, "ser_mad_ns": 416.0, "ser_cv": 0.19676051721772522, "ser_min_ns": 2067.0, "ser_max_ns": 4735.0, "ser_p5_ns": 2231.0, "ser_p25_ns": 2551.0, "ser_p50_ns": 2814.0, "ser_p75_ns": 3412.0, "ser_p95_ns": 4041.0, "ser_p99_ns": 4459.5999999999985, "ser_ci_low_ns": 2876.4645604395605, "ser_ci_high_ns": 3114.9774725274724, "deser_mean_ns": 1833.8021978021977, "deser_median_ns": 1787.0, "deser_std_ns": 196.11800414717553, "deser_mad_ns": 112.0, "deser_cv": 0.10694610595527801, "deser_min_ns": 1488.0, "deser_max_ns": 2379.0, "deser_p5_ns": 1581.5, "deser_p25_ns": 1697.0, "deser_p50_ns": 1787.0, "deser_p75_ns": 1955.5, "deser_p95_ns": 2162.5, "deser_p99_ns": 2368.2, "deser_ci_low_ns": 1795.7357142857143, "deser_ci_high_ns": 1873.5541208791208, "total_mean_ns": 4823.417582417583, "total_median_ns": 4634.0, "total_std_ns": 701.4223496412932, "total_mad_ns": 475.0, "total_cv": 0.1454202000254201, "total_min_ns": 3697.0, "total_max_ns": 6877.0, "total_p5_ns": 3903.0, "total_p25_ns": 4283.0, "total_p50_ns": 4634.0, "total_p75_ns": 5316.0, "total_p95_ns": 6151.0, "total_p99_ns": 6480.099999999998, "total_ci_low_ns": 4684.7711538461535, "total_ci_high_ns": 4970.308791208791, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "SpanJson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "4.2.1", "avg_time_ser_ns": 3194.872340425532, "avg_time_deser_ns": 2616.031914893617, "avg_time_total_ns": 5810.904255319149, "median_size_bytes": 254.0, "avg_ops_per_sec": 172090.2558469495, "min_ops_per_sec": 115620.30292519367, "max_ops_per_sec": 279798.54504756577, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 3194.872340425532, "ser_median_ns": 3022.0, "ser_std_ns": 776.1478386227488, "ser_mad_ns": 506.0, "ser_cv": 0.24293547782862962, "ser_min_ns": 1908.0, "ser_max_ns": 5294.0, "ser_p5_ns": 2228.3, "ser_p25_ns": 2621.5, "ser_p50_ns": 3022.0, "ser_p75_ns": 3618.75, "ser_p95_ns": 4730.249999999999, "ser_p99_ns": 5284.7, "ser_ci_low_ns": 3043.0164893617025, "ser_ci_high_ns": 3354.536170212766, "deser_mean_ns": 2616.031914893617, "deser_median_ns": 2571.0, "deser_std_ns": 347.14062262102533, "deser_mad_ns": 230.5, "deser_cv": 0.13269739587070065, "deser_min_ns": 1666.0, "deser_max_ns": 3542.0, "deser_p5_ns": 2164.65, "deser_p25_ns": 2355.75, "deser_p50_ns": 2571.0, "deser_p75_ns": 2823.25, "deser_p95_ns": 3311.15, "deser_p99_ns": 3391.339999999999, "deser_ci_low_ns": 2546.3534574468085, "deser_ci_high_ns": 2683.450265957447, "total_mean_ns": 5810.904255319149, "total_median_ns": 5613.0, "total_std_ns": 1060.80597345369, "total_mad_ns": 730.5, "total_cv": 0.18255437137561784, "total_min_ns": 3574.0, "total_max_ns": 8649.0, "total_p5_ns": 4472.3, "total_p25_ns": 5002.0, "total_p50_ns": 5613.0, "total_p75_ns": 6460.0, "total_p95_ns": 7833.5, "total_p99_ns": 8283.509999999997, "total_ci_low_ns": 5606.932978723405, "total_ci_high_ns": 6037.50744680851, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.5639466916062661, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.0901219438668235}, {"serializer": "Apache.Avro", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "1.12.1", "avg_time_ser_ns": 7693.7125, "avg_time_deser_ns": 7981.375, "avg_time_total_ns": 15675.0875, "median_size_bytes": 140.0, "avg_ops_per_sec": 63795.4971543221, "min_ops_per_sec": 40931.60329090091, "max_ops_per_sec": 93370.68160597573, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 7693.7125, "ser_median_ns": 7430.5, "ser_std_ns": 1436.0418631617827, "ser_mad_ns": 938.0, "ser_cv": 0.18665135500732355, "ser_min_ns": 5206.0, "ser_max_ns": 12247.0, "ser_p5_ns": 6014.95, "ser_p25_ns": 6608.25, "ser_p50_ns": 7430.5, "ser_p75_ns": 8353.0, "ser_p95_ns": 10446.85, "ser_p99_ns": 12068.46, "ser_ci_low_ns": 7388.5903125, "ser_ci_high_ns": 8012.844999999999, "deser_mean_ns": 7981.375, "deser_median_ns": 7784.5, "deser_std_ns": 1468.0377101268314, "deser_mad_ns": 925.0, "deser_cv": 0.18393293262462063, "deser_min_ns": 5503.0, "deser_max_ns": 12562.0, "deser_p5_ns": 6103.3, "deser_p25_ns": 6890.25, "deser_p50_ns": 7784.5, "deser_p75_ns": 8744.75, "deser_p95_ns": 10696.25, "deser_p99_ns": 12510.65, "deser_ci_low_ns": 7676.410625, "deser_ci_high_ns": 8323.907187499999, "total_mean_ns": 15675.0875, "total_median_ns": 15143.5, "total_std_ns": 2692.5785683387617, "total_mad_ns": 1655.0, "total_cv": 0.17177438839424417, "total_min_ns": 10710.0, "total_max_ns": 24431.0, "total_p5_ns": 12424.7, "total_p25_ns": 13733.0, "total_p50_ns": 15143.5, "total_p75_ns": 17196.25, "total_p95_ns": 20401.85, "total_p99_ns": 23249.94999999999, "total_ci_low_ns": 15118.5984375, "total_ci_high_ns": 16268.5434375, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.653964452064274}, {"serializer": "ExtendedXmlSerializer", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "3.10.0.0", "avg_time_ser_ns": 20162.53846153846, "avg_time_deser_ns": 23864.10989010989, "avg_time_total_ns": 44026.64835164835, "median_size_bytes": 606.0, "avg_ops_per_sec": 22713.516414259597, "min_ops_per_sec": 15700.065940276949, "max_ops_per_sec": 35977.69382982551, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 20162.53846153846, "ser_median_ns": 19443.0, "ser_std_ns": 3722.135403554412, "ser_mad_ns": 2142.0, "ser_cv": 0.18460648745467548, "ser_min_ns": 12379.0, "ser_max_ns": 29513.0, "ser_p5_ns": 15164.0, "ser_p25_ns": 17899.5, "ser_p50_ns": 19443.0, "ser_p75_ns": 21923.5, "ser_p95_ns": 27090.0, "ser_p99_ns": 29251.1, "ser_ci_low_ns": 19429.107142857145, "ser_ci_high_ns": 20959.172252747252, "deser_mean_ns": 23864.10989010989, "deser_median_ns": 24081.0, "deser_std_ns": 3790.5198923705248, "deser_mad_ns": 2720.0, "deser_cv": 0.1588376817666871, "deser_min_ns": 15416.0, "deser_max_ns": 34573.0, "deser_p5_ns": 18004.0, "deser_p25_ns": 20813.5, "deser_p50_ns": 24081.0, "deser_p75_ns": 26113.5, "deser_p95_ns": 30201.0, "deser_p99_ns": 33325.59999999999, "deser_ci_low_ns": 23104.0489010989, "deser_ci_high_ns": 24632.753571428573, "total_mean_ns": 44026.64835164835, "total_median_ns": 43364.0, "total_std_ns": 7321.604240379786, "total_mad_ns": 4452.0, "total_cv": 0.16629937809257891, "total_min_ns": 27795.0, "total_max_ns": 63694.0, "total_p5_ns": 33473.0, "total_p25_ns": 39043.5, "total_p50_ns": 43364.0, "total_p75_ns": 48012.5, "total_p95_ns": 56720.0, "total_p99_ns": 62799.399999999994, "total_ci_low_ns": 42499.607142857145, "total_ci_high_ns": 45485.651648351646, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.506385386159815}, {"serializer": "NetSerializer", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "4.1.2", "avg_time_ser_ns": 3239.3595505617977, "avg_time_deser_ns": 2759.1573033707864, "avg_time_total_ns": 5998.516853932584, "median_size_bytes": 164.0, "avg_ops_per_sec": 166707.87535495666, "min_ops_per_sec": 118035.88290840415, "max_ops_per_sec": 311429.46122703206, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 3239.3595505617977, "ser_median_ns": 3107.0, "ser_std_ns": 731.6170018774573, "ser_mad_ns": 452.0, "ser_cv": 0.2258523607700707, "ser_min_ns": 1568.0, "ser_max_ns": 5156.0, "ser_p5_ns": 2407.0, "ser_p25_ns": 2682.0, "ser_p50_ns": 3107.0, "ser_p75_ns": 3592.0, "ser_p95_ns": 4779.4, "ser_p99_ns": 5090.0, "ser_ci_low_ns": 3088.1682584269665, "ser_ci_high_ns": 3398.2390449438203, "deser_mean_ns": 2759.1573033707864, "deser_median_ns": 2657.0, "deser_std_ns": 403.02444373411277, "deser_mad_ns": 203.0, "deser_cv": 0.14606794735542947, "deser_min_ns": 1643.0, "deser_max_ns": 4046.0, "deser_p5_ns": 2262.4, "deser_p25_ns": 2491.0, "deser_p50_ns": 2657.0, "deser_p75_ns": 2939.0, "deser_p95_ns": 3438.9999999999995, "deser_p99_ns": 3925.4400000000005, "deser_ci_low_ns": 2681.9941011235956, "deser_ci_high_ns": 2847.922191011236, "total_mean_ns": 5998.516853932584, "total_median_ns": 5780.0, "total_std_ns": 1024.38489428756, "total_mad_ns": 562.0, "total_cv": 0.170773029272391, "total_min_ns": 3211.0, "total_max_ns": 8472.0, "total_p5_ns": 4872.0, "total_p25_ns": 5290.0, "total_p50_ns": 5780.0, "total_p75_ns": 6441.0, "total_p95_ns": 8118.2, "total_p99_ns": 8375.2, "total_ci_low_ns": 5797.673033707865, "total_ci_high_ns": 6212.228932584269, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.6803309050500062, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.3356281544203212}, {"serializer": "fastJson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "2.4.0.4", "avg_time_ser_ns": 9109.186046511628, "avg_time_deser_ns": 11486.837209302326, "avg_time_total_ns": 20596.023255813954, "median_size_bytes": 585.0, "avg_ops_per_sec": 48553.06228680407, "min_ops_per_sec": 39332.91378225299, "max_ops_per_sec": 57444.85294117647, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 9109.186046511628, "ser_median_ns": 8896.5, "ser_std_ns": 896.2588191263911, "ser_mad_ns": 546.5, "ser_cv": 0.09839065911598263, "ser_min_ns": 7662.0, "ser_max_ns": 11774.0, "ser_p5_ns": 7835.0, "ser_p25_ns": 8473.0, "ser_p50_ns": 8896.5, "ser_p75_ns": 9608.25, "ser_p95_ns": 10662.5, "ser_p99_ns": 11417.850000000002, "ser_ci_low_ns": 8924.526744186047, "ser_ci_high_ns": 9299.838372093023, "deser_mean_ns": 11486.837209302326, "deser_median_ns": 11392.0, "deser_std_ns": 934.4883326054155, "deser_mad_ns": 590.5, "deser_cv": 0.08135297084637394, "deser_min_ns": 9746.0, "deser_max_ns": 14271.0, "deser_p5_ns": 10153.75, "deser_p25_ns": 10791.75, "deser_p50_ns": 11392.0, "deser_p75_ns": 11942.0, "deser_p95_ns": 13161.75, "deser_p99_ns": 14099.300000000001, "deser_ci_low_ns": 11280.401162790697, "deser_ci_high_ns": 11681.08430232558, "total_mean_ns": 20596.023255813954, "total_median_ns": 20238.0, "total_std_ns": 1737.1234368193075, "total_mad_ns": 1133.0, "total_cv": 0.08434266242775498, "total_min_ns": 17408.0, "total_max_ns": 25424.0, "total_p5_ns": 18281.0, "total_p25_ns": 19500.0, "total_p50_ns": 20238.0, "total_p75_ns": 21687.25, "total_p95_ns": 24272.75, "total_p99_ns": 24969.250000000004, "total_ci_low_ns": 20249.459011627907, "total_ci_high_ns": 20968.468895348837, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.979357111952183}, {"serializer": "ServiceStack Json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 7653.531914893617, "avg_time_deser_ns": 7731.712765957447, "avg_time_total_ns": 15385.244680851063, "median_size_bytes": 254.0, "avg_ops_per_sec": 64997.34133215508, "min_ops_per_sec": 42080.45783538125, "max_ops_per_sec": 108143.18157240187, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 7653.531914893617, "ser_median_ns": 7203.0, "ser_std_ns": 1792.53484063336, "ser_mad_ns": 1119.5, "ser_cv": 0.23421014775480636, "ser_min_ns": 4773.0, "ser_max_ns": 12307.0, "ser_p5_ns": 5576.8, "ser_p25_ns": 6292.5, "ser_p50_ns": 7203.0, "ser_p75_ns": 8624.25, "ser_p95_ns": 11526.65, "ser_p99_ns": 12189.82, "ser_ci_low_ns": 7291.32420212766, "ser_ci_high_ns": 8033.054787234042, "deser_mean_ns": 7731.712765957447, "deser_median_ns": 7496.0, "deser_std_ns": 1351.5041689761854, "deser_mad_ns": 902.5, "deser_cv": 0.17480010055816184, "deser_min_ns": 4474.0, "deser_max_ns": 11457.0, "deser_p5_ns": 5866.25, "deser_p25_ns": 6735.75, "deser_p50_ns": 7496.0, "deser_p75_ns": 8792.25, "deser_p95_ns": 10314.349999999999, "deser_p99_ns": 11214.269999999999, "deser_ci_low_ns": 7463.576861702128, "deser_ci_high_ns": 7997.855319148936, "total_mean_ns": 15385.244680851063, "total_median_ns": 14879.5, "total_std_ns": 3026.325571773343, "total_mad_ns": 1998.0, "total_cv": 0.1967031161707814, "total_min_ns": 9247.0, "total_max_ns": 23764.0, "total_p5_ns": 11714.65, "total_p25_ns": 13122.0, "total_p50_ns": 14879.5, "total_p75_ns": 17285.25, "total_p95_ns": 21548.35, "total_p99_ns": 23085.099999999995, "total_ci_low_ns": 14794.970744680852, "total_ci_high_ns": 16007.703191489361, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.75353255602182}, {"serializer": "Migrant", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "0.13.0.0", "avg_time_ser_ns": 13987.369565217392, "avg_time_deser_ns": 38254.913043478264, "avg_time_total_ns": 52242.282608695656, "median_size_bytes": 1376.0, "avg_ops_per_sec": 19141.58321699273, "min_ops_per_sec": 14355.028566506848, "max_ops_per_sec": 27558.07865075647, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 13987.369565217392, "ser_median_ns": 13626.0, "ser_std_ns": 1885.6578047000423, "ser_mad_ns": 1257.5, "ser_cv": 0.13481146658118884, "ser_min_ns": 10200.0, "ser_max_ns": 19347.0, "ser_p5_ns": 11573.45, "ser_p25_ns": 12564.5, "ser_p50_ns": 13626.0, "ser_p75_ns": 15277.75, "ser_p95_ns": 17487.45, "ser_p99_ns": 18848.320000000003, "ser_ci_low_ns": 13605.273369565217, "ser_ci_high_ns": 14369.392119565216, "deser_mean_ns": 38254.913043478264, "deser_median_ns": 37957.0, "deser_std_ns": 4888.846963213116, "deser_mad_ns": 2920.0, "deser_cv": 0.12779657759662774, "deser_min_ns": 25997.0, "deser_max_ns": 50863.0, "deser_p5_ns": 31478.2, "deser_p25_ns": 34940.75, "deser_p50_ns": 37957.0, "deser_p75_ns": 40835.5, "deser_p95_ns": 46744.3, "deser_p99_ns": 50473.520000000004, "deser_ci_low_ns": 37281.85733695653, "deser_ci_high_ns": 39337.084510869565, "total_mean_ns": 52242.282608695656, "total_median_ns": 51819.0, "total_std_ns": 6428.095760492982, "total_mad_ns": 3917.5, "total_cv": 0.12304392992627458, "total_min_ns": 36287.0, "total_max_ns": 69662.0, "total_p5_ns": 42922.85, "total_p25_ns": 47952.75, "total_p50_ns": 51819.0, "total_p75_ns": 55855.25, "total_p95_ns": 63762.1, "total_p99_ns": 68089.52, "total_ci_low_ns": 50921.84565217391, "total_ci_high_ns": 53589.185326086954, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.300052378990863}, {"serializer": "SharpYaml", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "string", "language": "csharp", "serializer_version": "3.13.0", "avg_time_ser_ns": 78781.65934065935, "avg_time_deser_ns": 77418.05494505494, "avg_time_total_ns": 156199.7142857143, "median_size_bytes": 240.0, "avg_ops_per_sec": 6402.06036594177, "min_ops_per_sec": 5506.547284721534, "max_ops_per_sec": 7168.561556438085, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 78781.65934065935, "ser_median_ns": 77486.0, "ser_std_ns": 7229.600813045981, "ser_mad_ns": 4947.0, "ser_cv": 0.09176756206396344, "ser_min_ns": 67014.0, "ser_max_ns": 99060.0, "ser_p5_ns": 68809.5, "ser_p25_ns": 72927.5, "ser_p50_ns": 77486.0, "ser_p75_ns": 83542.5, "ser_p95_ns": 91369.0, "ser_p99_ns": 97825.2, "ser_ci_low_ns": 77301.81785714286, "ser_ci_high_ns": 80304.97884615384, "deser_mean_ns": 77418.05494505494, "deser_median_ns": 76905.0, "deser_std_ns": 2869.8046637460548, "deser_mad_ns": 1835.0, "deser_cv": 0.037068932638294895, "deser_min_ns": 72102.0, "deser_max_ns": 84119.0, "deser_p5_ns": 73267.5, "deser_p25_ns": 75353.0, "deser_p50_ns": 76905.0, "deser_p75_ns": 79200.5, "deser_p95_ns": 82641.0, "deser_p99_ns": 83732.9, "deser_ci_low_ns": 76840.85302197802, "deser_ci_high_ns": 77995.38269230768, "total_mean_ns": 156199.7142857143, "total_median_ns": 154114.0, "total_std_ns": 9094.24806040208, "total_mad_ns": 6513.0, "total_cv": 0.058221925065542975, "total_min_ns": 139498.0, "total_max_ns": 181602.0, "total_p5_ns": 144304.5, "total_p25_ns": 149092.5, "total_p50_ns": 154114.0, "total_p75_ns": 162851.5, "total_p95_ns": 171868.0, "total_p99_ns": 181400.4, "total_ci_low_ns": 154395.953021978, "total_ci_high_ns": 158077.6120879121, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.37234469647468}, {"serializer": "MemoryPack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 3795.968085106383, "avg_time_deser_ns": 1954.468085106383, "avg_time_total_ns": 5750.436170212766, "median_size_bytes": 191.0, "avg_ops_per_sec": 173899.85218512564, "min_ops_per_sec": 105097.21492380452, "max_ops_per_sec": 450247.63619990996, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 3795.968085106383, "ser_median_ns": 3701.5, "ser_std_ns": 1094.3051161090907, "ser_mad_ns": 799.0, "ser_cv": 0.28828090531177963, "ser_min_ns": 1310.0, "ser_max_ns": 6694.0, "ser_p5_ns": 2400.35, "ser_p25_ns": 2950.5, "ser_p50_ns": 3701.5, "ser_p75_ns": 4506.75, "ser_p95_ns": 5761.15, "ser_p99_ns": 6454.989999999998, "ser_ci_low_ns": 3584.757180851064, "ser_ci_high_ns": 4020.91835106383, "deser_mean_ns": 1954.468085106383, "deser_median_ns": 1889.5, "deser_std_ns": 461.4996057065071, "deser_mad_ns": 359.0, "deser_cv": 0.23612542421299626, "deser_min_ns": 911.0, "deser_max_ns": 3078.0, "deser_p5_ns": 1330.8, "deser_p25_ns": 1573.5, "deser_p50_ns": 1889.5, "deser_p75_ns": 2283.5, "deser_p95_ns": 2763.6499999999996, "deser_p99_ns": 2845.499999999998, "deser_ci_low_ns": 1863.2345744680852, "deser_ci_high_ns": 2040.001329787234, "total_mean_ns": 5750.436170212766, "total_median_ns": 5536.5, "total_std_ns": 1494.3939222329166, "total_mad_ns": 1066.5, "total_cv": 0.2598748821826543, "total_min_ns": 2221.0, "total_max_ns": 9515.0, "total_p5_ns": 3747.7, "total_p25_ns": 4555.5, "total_p50_ns": 5536.5, "total_p75_ns": 6754.0, "total_p95_ns": 8371.399999999998, "total_p99_ns": 9253.669999999998, "total_ci_low_ns": 5439.570744680851, "total_ci_high_ns": 6040.7962765957445, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.22933930571108624, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.45165528881214345}, {"serializer": "CsvHelper", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "33.1.0", "avg_time_ser_ns": 1457738.0107526882, "avg_time_deser_ns": 677142.6344086021, "avg_time_total_ns": 2134880.64516129, "median_size_bytes": 155.0, "avg_ops_per_sec": 468.4102609045153, "min_ops_per_sec": 389.81354828172135, "max_ops_per_sec": 524.918401434497, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1457738.0107526882, "ser_median_ns": 1420199.0, "ser_std_ns": 120391.38198162497, "ser_mad_ns": 71937.0, "ser_cv": 0.08258780459423029, "ser_min_ns": 1250507.0, "ser_max_ns": 1805675.0, "ser_p5_ns": 1311574.4, "ser_p25_ns": 1366050.0, "ser_p50_ns": 1420199.0, "ser_p75_ns": 1545046.0, "ser_p95_ns": 1670500.2, "ser_p99_ns": 1775535.8, "ser_ci_low_ns": 1433585.8669354839, "ser_ci_high_ns": 1482461.3255376343, "deser_mean_ns": 677142.6344086021, "deser_median_ns": 671925.0, "deser_std_ns": 31676.132553372157, "deser_mad_ns": 16508.0, "deser_cv": 0.046779114094679955, "deser_min_ns": 610504.0, "deser_max_ns": 759654.0, "deser_p5_ns": 637866.6, "deser_p25_ns": 656378.0, "deser_p50_ns": 671925.0, "deser_p75_ns": 690992.0, "deser_p95_ns": 743098.2, "deser_p99_ns": 758609.8, "deser_ci_low_ns": 670892.7330645161, "deser_ci_high_ns": 683516.160483871, "total_mean_ns": 2134880.64516129, "total_median_ns": 2105261.0, "total_std_ns": 135875.3031695866, "total_mad_ns": 87303.0, "total_cv": 0.06364538620814618, "total_min_ns": 1905058.0, "total_max_ns": 2565329.0, "total_p5_ns": 1949623.8, "total_p25_ns": 2032180.0, "total_p50_ns": 2105261.0, "total_p75_ns": 2219593.0, "total_p95_ns": 2377622.7999999993, "total_p99_ns": 2449152.32, "total_ci_low_ns": 2108873.2994623655, "total_ci_high_ns": 2162007.382795699, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.195903579658978}, {"serializer": "Ceras", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "4.1.7", "avg_time_ser_ns": 6725.789473684211, "avg_time_deser_ns": 16051.642105263158, "avg_time_total_ns": 22777.43157894737, "median_size_bytes": 155.0, "avg_ops_per_sec": 43903.10630651947, "min_ops_per_sec": 27797.08130646282, "max_ops_per_sec": 67709.39129257228, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 6725.789473684211, "ser_median_ns": 6480.0, "ser_std_ns": 1455.6883061180606, "ser_mad_ns": 1114.0, "ser_cv": 0.21643381967480357, "ser_min_ns": 3707.0, "ser_max_ns": 11080.0, "ser_p5_ns": 4800.9, "ser_p25_ns": 5647.0, "ser_p50_ns": 6480.0, "ser_p75_ns": 7728.5, "ser_p95_ns": 9153.7, "ser_p99_ns": 10726.560000000001, "ser_ci_low_ns": 6423.984736842105, "ser_ci_high_ns": 7011.801052631579, "deser_mean_ns": 16051.642105263158, "deser_median_ns": 15019.0, "deser_std_ns": 3363.3086796789903, "deser_mad_ns": 2011.0, "deser_cv": 0.20953050520458577, "deser_min_ns": 11062.0, "deser_max_ns": 24918.0, "deser_p5_ns": 12068.9, "deser_p25_ns": 13441.5, "deser_p50_ns": 15019.0, "deser_p75_ns": 18134.0, "deser_p95_ns": 22290.3, "deser_p99_ns": 24896.38, "deser_ci_low_ns": 15391.897368421052, "deser_ci_high_ns": 16740.624210526315, "total_mean_ns": 22777.43157894737, "total_median_ns": 21712.0, "total_std_ns": 4690.80357551865, "total_mad_ns": 3063.0, "total_cv": 0.20594084803899693, "total_min_ns": 14769.0, "total_max_ns": 35975.0, "total_p5_ns": 17057.8, "total_p25_ns": 19038.0, "total_p50_ns": 21712.0, "total_p75_ns": 25833.5, "total_p95_ns": 31525.6, "total_p99_ns": 34204.98, "total_ci_low_ns": 21830.010263157896, "total_ci_high_ns": 23770.875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.166743672989309}, {"serializer": "FlatSharp", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "7.5.1", "avg_time_ser_ns": 4705.989130434783, "avg_time_deser_ns": 4280.097826086957, "avg_time_total_ns": 8986.08695652174, "median_size_bytes": 272.0, "avg_ops_per_sec": 111283.14302303076, "min_ops_per_sec": 67037.60809814306, "max_ops_per_sec": 185425.55164101612, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 4705.989130434783, "ser_median_ns": 4623.0, "ser_std_ns": 1165.0543589125846, "ser_mad_ns": 834.0, "ser_cv": 0.24756843388734007, "ser_min_ns": 2717.0, "ser_max_ns": 7792.0, "ser_p5_ns": 3117.35, "ser_p25_ns": 3764.5, "ser_p50_ns": 4623.0, "ser_p75_ns": 5440.25, "ser_p95_ns": 6977.0, "ser_p99_ns": 7549.9400000000005, "ser_ci_low_ns": 4475.037771739131, "ser_ci_high_ns": 4948.998913043478, "deser_mean_ns": 4280.097826086957, "deser_median_ns": 4020.5, "deser_std_ns": 1061.4639492698836, "deser_mad_ns": 704.0, "deser_cv": 0.24799992719800007, "deser_min_ns": 2627.0, "deser_max_ns": 7125.0, "deser_p5_ns": 2792.55, "deser_p25_ns": 3516.25, "deser_p50_ns": 4020.5, "deser_p75_ns": 4955.0, "deser_p95_ns": 6188.600000000001, "deser_p99_ns": 6941.18, "deser_ci_low_ns": 4062.629891304348, "deser_ci_high_ns": 4490.905706521739, "total_mean_ns": 8986.08695652174, "total_median_ns": 8645.5, "total_std_ns": 2133.3558800717683, "total_mad_ns": 1512.5, "total_cv": 0.23740654752105025, "total_min_ns": 5393.0, "total_max_ns": 14917.0, "total_p5_ns": 6129.45, "total_p25_ns": 7239.25, "total_p50_ns": 8645.5, "total_p75_ns": 10371.75, "total_p95_ns": 12655.6, "total_p99_ns": 14031.570000000003, "total_ci_low_ns": 8563.999184782608, "total_ci_high_ns": 9407.30679347826, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9251716247139589, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.2851106045877065}, {"serializer": "Hyperion", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "0.12.2", "avg_time_ser_ns": 5780.736842105263, "avg_time_deser_ns": 6288.273684210526, "avg_time_total_ns": 12069.01052631579, "median_size_bytes": 407.0, "avg_ops_per_sec": 82856.8338572211, "min_ops_per_sec": 53527.45958676801, "max_ops_per_sec": 164880.46166529265, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 5780.736842105263, "ser_median_ns": 5602.0, "ser_std_ns": 1211.0830409756625, "ser_mad_ns": 791.0, "ser_cv": 0.20950323013399846, "ser_min_ns": 2615.0, "ser_max_ns": 8816.0, "ser_p5_ns": 4337.2, "ser_p25_ns": 4956.5, "ser_p50_ns": 5602.0, "ser_p75_ns": 6500.0, "ser_p95_ns": 7987.5, "ser_p99_ns": 8540.58, "ser_ci_low_ns": 5535.248684210526, "ser_ci_high_ns": 6019.611052631579, "deser_mean_ns": 6288.273684210526, "deser_median_ns": 6007.0, "deser_std_ns": 1322.3052761934546, "deser_mad_ns": 854.0, "deser_cv": 0.21028112683989614, "deser_min_ns": 3450.0, "deser_max_ns": 9973.0, "deser_p5_ns": 4469.3, "deser_p25_ns": 5398.5, "deser_p50_ns": 6007.0, "deser_p75_ns": 7234.5, "deser_p95_ns": 8404.2, "deser_p99_ns": 9872.42, "deser_ci_low_ns": 6029.516842105263, "deser_ci_high_ns": 6550.142631578947, "total_mean_ns": 12069.01052631579, "total_median_ns": 11580.0, "total_std_ns": 2476.368963738818, "total_mad_ns": 1746.0, "total_cv": 0.20518409179768604, "total_min_ns": 6065.0, "total_max_ns": 18682.0, "total_p5_ns": 9108.1, "total_p25_ns": 10428.0, "total_p50_ns": 11580.0, "total_p75_ns": 13806.5, "total_p95_ns": 16181.4, "total_p99_ns": 18507.16, "total_ci_low_ns": 11591.313157894738, "total_ci_high_ns": 12557.567368421052, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9957894736842106, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.62925224577461}, {"serializer": "SharpSerializer", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 20310.054945054944, "avg_time_deser_ns": 44311.72527472527, "avg_time_total_ns": 64621.78021978022, "median_size_bytes": 1250.0, "avg_ops_per_sec": 15474.658800778561, "min_ops_per_sec": 11535.355865728458, "max_ops_per_sec": 19579.43376277558, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 20310.054945054944, "ser_median_ns": 19217.0, "ser_std_ns": 2927.1565511132603, "ser_mad_ns": 1565.0, "ser_cv": 0.14412351709693227, "ser_min_ns": 15304.0, "ser_max_ns": 30597.0, "ser_p5_ns": 17065.5, "ser_p25_ns": 18065.0, "ser_p50_ns": 19217.0, "ser_p75_ns": 22468.0, "ser_p95_ns": 25174.5, "ser_p99_ns": 26947.499999999978, "ser_ci_low_ns": 19713.767307692306, "ser_ci_high_ns": 20930.752747252747, "deser_mean_ns": 44311.72527472527, "deser_median_ns": 43346.0, "deser_std_ns": 4056.1653458132487, "deser_mad_ns": 2436.0, "deser_cv": 0.09153706655892324, "deser_min_ns": 35377.0, "deser_max_ns": 56093.0, "deser_p5_ns": 39135.0, "deser_p25_ns": 41263.5, "deser_p50_ns": 43346.0, "deser_p75_ns": 47076.5, "deser_p95_ns": 52114.5, "deser_p99_ns": 54809.59999999999, "deser_ci_low_ns": 43487.0728021978, "deser_ci_high_ns": 45176.44670329671, "total_mean_ns": 64621.78021978022, "total_median_ns": 62604.0, "total_std_ns": 6683.09527390182, "total_mad_ns": 4092.0, "total_cv": 0.10341861909672642, "total_min_ns": 51074.0, "total_max_ns": 86690.0, "total_p5_ns": 56865.0, "total_p25_ns": 59769.0, "total_p50_ns": 62604.0, "total_p75_ns": 69522.5, "total_p95_ns": 76951.0, "total_p99_ns": 81474.49999999997, "total_ci_low_ns": 63229.01208791209, "total_ci_high_ns": 65990.52637362637, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.516964086116761}, {"serializer": "SharpYaml", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "3.13.0", "avg_time_ser_ns": 83606.69565217392, "avg_time_deser_ns": 79048.10869565218, "avg_time_total_ns": 162654.80434782608, "median_size_bytes": 243.0, "avg_ops_per_sec": 6147.989320140639, "min_ops_per_sec": 4936.906337012974, "max_ops_per_sec": 7582.88088810701, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 83606.69565217392, "ser_median_ns": 81071.5, "ser_std_ns": 10725.589673319619, "ser_mad_ns": 6507.5, "ser_cv": 0.12828625255016562, "ser_min_ns": 61898.0, "ser_max_ns": 112981.0, "ser_p5_ns": 70024.75, "ser_p25_ns": 76372.75, "ser_p50_ns": 81071.5, "ser_p75_ns": 90732.25, "ser_p95_ns": 101699.80000000002, "ser_p99_ns": 112648.85, "ser_ci_low_ns": 81461.24211956523, "ser_ci_high_ns": 85891.94755434783, "deser_mean_ns": 79048.10869565218, "deser_median_ns": 77898.5, "deser_std_ns": 4332.926943780997, "deser_mad_ns": 3279.5, "deser_cv": 0.05481379650034964, "deser_min_ns": 69978.0, "deser_max_ns": 90237.0, "deser_p5_ns": 73585.25, "deser_p25_ns": 75639.0, "deser_p50_ns": 77898.5, "deser_p75_ns": 82453.75, "deser_p95_ns": 86442.5, "deser_p99_ns": 89966.73, "deser_ci_low_ns": 78144.75679347826, "deser_ci_high_ns": 79937.58124999999, "total_mean_ns": 162654.80434782608, "total_median_ns": 160577.5, "total_std_ns": 13875.853314015278, "total_mad_ns": 7851.5, "total_cv": 0.08530859798240403, "total_min_ns": 131876.0, "total_max_ns": 202556.0, "total_p5_ns": 143678.45, "total_p25_ns": 153265.25, "total_p50_ns": 160577.5, "total_p75_ns": 170437.0, "total_p95_ns": 184835.25, "total_p99_ns": 200664.11000000002, "total_ci_low_ns": 159827.69320652174, "total_ci_high_ns": 165577.44565217392, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.07208010822761}, {"serializer": "MS Bond Fast", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 6843.931034482759, "avg_time_deser_ns": 5220.735632183908, "avg_time_total_ns": 12064.666666666666, "median_size_bytes": 151.0, "avg_ops_per_sec": 82886.66629828149, "min_ops_per_sec": 62735.25721455458, "max_ops_per_sec": 104668.20180029307, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 6843.931034482759, "ser_median_ns": 6734.0, "ser_std_ns": 824.0461687379586, "ser_mad_ns": 508.0, "ser_cv": 0.1204053875741951, "ser_min_ns": 4975.0, "ser_max_ns": 9091.0, "ser_p5_ns": 5617.0, "ser_p25_ns": 6345.5, "ser_p50_ns": 6734.0, "ser_p75_ns": 7260.5, "ser_p95_ns": 8466.7, "ser_p99_ns": 8941.36, "ser_ci_low_ns": 6675.6772988505745, "ser_ci_high_ns": 7016.71408045977, "deser_mean_ns": 5220.735632183908, "deser_median_ns": 5238.0, "deser_std_ns": 565.1239514122278, "deser_mad_ns": 324.0, "deser_cv": 0.10824603872459032, "deser_min_ns": 3979.0, "deser_max_ns": 6849.0, "deser_p5_ns": 4350.7, "deser_p25_ns": 4906.0, "deser_p50_ns": 5238.0, "deser_p75_ns": 5542.5, "deser_p95_ns": 6235.900000000001, "deser_p99_ns": 6480.06, "deser_ci_low_ns": 5104.346264367816, "deser_ci_high_ns": 5339.994540229885, "total_mean_ns": 12064.666666666666, "total_median_ns": 11910.0, "total_std_ns": 1285.3584303896105, "total_mad_ns": 820.0, "total_cv": 0.10653907529338652, "total_min_ns": 9554.0, "total_max_ns": 15940.0, "total_p5_ns": 10011.9, "total_p25_ns": 11351.5, "total_p50_ns": 11910.0, "total_p75_ns": 12913.5, "total_p95_ns": 14177.2, "total_p99_ns": 15071.400000000001, "total_ci_low_ns": 11800.900862068966, "total_ci_high_ns": 12330.064367816092, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.953441237748202}, {"serializer": "GroBuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.9.2", "avg_time_ser_ns": 2616.5625, "avg_time_deser_ns": 3736.4895833333335, "avg_time_total_ns": 6353.052083333333, "median_size_bytes": 374.0, "avg_ops_per_sec": 157404.65950584775, "min_ops_per_sec": 95147.47859181731, "max_ops_per_sec": 250689.39583855603, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 2616.5625, "ser_median_ns": 2490.5, "ser_std_ns": 687.8211642188458, "ser_mad_ns": 430.0, "ser_cv": 0.2628720560731287, "ser_min_ns": 1613.0, "ser_max_ns": 4281.0, "ser_p5_ns": 1737.25, "ser_p25_ns": 2097.25, "ser_p50_ns": 2490.5, "ser_p75_ns": 3133.75, "ser_p95_ns": 3933.75, "ser_p99_ns": 4155.599999999999, "ser_ci_low_ns": 2483.850260416667, "ser_ci_high_ns": 2753.2140625, "deser_mean_ns": 3736.4895833333335, "deser_median_ns": 3603.5, "deser_std_ns": 1000.4645446758764, "deser_mad_ns": 714.5, "deser_cv": 0.26775520775929984, "deser_min_ns": 2367.0, "deser_max_ns": 6587.0, "deser_p5_ns": 2464.5, "deser_p25_ns": 2893.0, "deser_p50_ns": 3603.5, "deser_p75_ns": 4330.5, "deser_p95_ns": 5333.75, "deser_p99_ns": 6449.25, "deser_ci_low_ns": 3541.460416666667, "deser_ci_high_ns": 3946.31328125, "total_mean_ns": 6353.052083333333, "total_median_ns": 6116.0, "total_std_ns": 1626.6132032687567, "total_mad_ns": 1155.5, "total_cv": 0.256036497408235, "total_min_ns": 3989.0, "total_max_ns": 10510.0, "total_p5_ns": 4259.25, "total_p25_ns": 5009.5, "total_p50_ns": 6116.0, "total_p75_ns": 7315.25, "total_p95_ns": 9419.75, "total_p99_ns": 10320.949999999999, "total_ci_low_ns": 6038.801302083333, "total_ci_high_ns": 6674.073697916667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.44703947368421054, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.8666567997245308}, {"serializer": "Google.Protobuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "3.35.1", "avg_time_ser_ns": 2731.8229166666665, "avg_time_deser_ns": 3986.8125, "avg_time_total_ns": 6718.635416666667, "median_size_bytes": 123.0, "avg_ops_per_sec": 148839.74765461116, "min_ops_per_sec": 101471.33434804667, "max_ops_per_sec": 261369.57658128595, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 2731.8229166666665, "ser_median_ns": 2659.0, "ser_std_ns": 679.5118680624491, "ser_mad_ns": 436.5, "ser_cv": 0.24873935419341908, "ser_min_ns": 1342.0, "ser_max_ns": 4654.0, "ser_p5_ns": 1710.5, "ser_p25_ns": 2267.5, "ser_p50_ns": 2659.0, "ser_p75_ns": 3215.5, "ser_p95_ns": 3837.25, "ser_p99_ns": 4276.8499999999985, "ser_ci_low_ns": 2602.2171875000004, "ser_ci_high_ns": 2867.509114583333, "deser_mean_ns": 3986.8125, "deser_median_ns": 3877.5, "deser_std_ns": 846.1271313274507, "deser_mad_ns": 655.5, "deser_cv": 0.21223148350404006, "deser_min_ns": 2041.0, "deser_max_ns": 6010.0, "deser_p5_ns": 2877.5, "deser_p25_ns": 3282.0, "deser_p50_ns": 3877.5, "deser_p75_ns": 4610.75, "deser_p95_ns": 5301.5, "deser_p99_ns": 5854.2, "deser_ci_low_ns": 3829.8817708333336, "deser_ci_high_ns": 4154.534635416667, "total_mean_ns": 6718.635416666667, "total_median_ns": 6589.0, "total_std_ns": 1428.481734457891, "total_mad_ns": 1205.5, "total_cv": 0.21261486088593376, "total_min_ns": 3826.0, "total_max_ns": 9855.0, "total_p5_ns": 4842.5, "total_p25_ns": 5413.75, "total_p50_ns": 6589.0, "total_p75_ns": 7849.25, "total_p95_ns": 9127.25, "total_p99_ns": 9633.65, "total_ci_low_ns": 6440.671354166667, "total_ci_high_ns": 6996.198177083334, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.6210526315789474, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.2418248385627393}, {"serializer": "FsPicklerJson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 16676.97701149425, "avg_time_deser_ns": 13977.643678160919, "avg_time_total_ns": 30654.620689655174, "median_size_bytes": 579.0, "avg_ops_per_sec": 32621.50949848366, "min_ops_per_sec": 20568.93679165724, "max_ops_per_sec": 55208.965936068016, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 16676.97701149425, "ser_median_ns": 15700.0, "ser_std_ns": 4245.311049433496, "ser_mad_ns": 2038.0, "ser_cv": 0.25456118614947454, "ser_min_ns": 8704.0, "ser_max_ns": 28681.0, "ser_p5_ns": 11389.9, "ser_p25_ns": 13884.0, "ser_p50_ns": 15700.0, "ser_p75_ns": 18721.5, "ser_p95_ns": 25888.300000000003, "ser_p99_ns": 28003.32, "ser_ci_low_ns": 15810.393965517242, "ser_ci_high_ns": 17521.394540229885, "deser_mean_ns": 13977.643678160919, "deser_median_ns": 13476.0, "deser_std_ns": 2146.3214500412664, "deser_mad_ns": 1032.0, "deser_cv": 0.1535538821464409, "deser_min_ns": 9409.0, "deser_max_ns": 20724.0, "deser_p5_ns": 11355.8, "deser_p25_ns": 12628.0, "deser_p50_ns": 13476.0, "deser_p75_ns": 14950.5, "deser_p95_ns": 18192.4, "deser_p99_ns": 20144.36, "deser_ci_low_ns": 13539.386206896552, "deser_ci_high_ns": 14413.317816091954, "total_mean_ns": 30654.620689655174, "total_median_ns": 28692.0, "total_std_ns": 6193.239861523019, "total_mad_ns": 2710.0, "total_cv": 0.20203283296906077, "total_min_ns": 18113.0, "total_max_ns": 48617.0, "total_p5_ns": 22738.0, "total_p25_ns": 26801.0, "total_p50_ns": 28692.0, "total_p75_ns": 34071.0, "total_p95_ns": 43631.90000000001, "total_p99_ns": 47252.18, "total_ci_low_ns": 29427.752298850573, "total_ci_high_ns": 31964.687356321836, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.8425208163471885}, {"serializer": "LightProto", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.3.4", "avg_time_ser_ns": 3665.7473684210527, "avg_time_deser_ns": 3008.4210526315787, "avg_time_total_ns": 6674.168421052632, "median_size_bytes": 123.0, "avg_ops_per_sec": 149831.40024540806, "min_ops_per_sec": 89397.46111210441, "max_ops_per_sec": 229885.05747126436, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 3665.7473684210527, "ser_median_ns": 3457.0, "ser_std_ns": 1048.7222211817807, "ser_mad_ns": 642.0, "ser_cv": 0.28608687827647455, "ser_min_ns": 2116.0, "ser_max_ns": 6384.0, "ser_p5_ns": 2385.1, "ser_p25_ns": 2850.0, "ser_p50_ns": 3457.0, "ser_p75_ns": 4167.5, "ser_p95_ns": 5838.5, "ser_p99_ns": 6227.02, "ser_ci_low_ns": 3451.004210526316, "ser_ci_high_ns": 3873.557631578947, "deser_mean_ns": 3008.4210526315787, "deser_median_ns": 2980.0, "deser_std_ns": 579.9594369335168, "deser_mad_ns": 418.0, "deser_cv": 0.19277867917664138, "deser_min_ns": 2011.0, "deser_max_ns": 4802.0, "deser_p5_ns": 2183.1, "deser_p25_ns": 2559.0, "deser_p50_ns": 2980.0, "deser_p75_ns": 3394.5, "deser_p95_ns": 3928.7999999999997, "deser_p99_ns": 4222.020000000001, "deser_ci_low_ns": 2899.2526315789473, "deser_ci_high_ns": 3128.8207894736843, "total_mean_ns": 6674.168421052632, "total_median_ns": 6245.0, "total_std_ns": 1548.7061837782571, "total_mad_ns": 1033.0, "total_cv": 0.23204481608421854, "total_min_ns": 4350.0, "total_max_ns": 11186.0, "total_p5_ns": 4821.1, "total_p25_ns": 5419.5, "total_p50_ns": 6245.0, "total_p75_ns": 7702.5, "total_p95_ns": 9654.699999999999, "total_p99_ns": 10089.020000000002, "total_ci_low_ns": 6375.1010526315795, "total_ci_high_ns": 6999.1371052631575, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.5931301939058172, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.1424878111432542}, {"serializer": "ExtendedXmlSerializer", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "3.10.0.0", "avg_time_ser_ns": 22909.1875, "avg_time_deser_ns": 26676.333333333332, "avg_time_total_ns": 49585.520833333336, "median_size_bytes": 609.0, "avg_ops_per_sec": 20167.177498471705, "min_ops_per_sec": 12893.576420227442, "max_ops_per_sec": 29269.720474169473, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 22909.1875, "ser_median_ns": 20825.5, "ser_std_ns": 5491.930737694311, "ser_mad_ns": 2870.0, "ser_cv": 0.23972612462551587, "ser_min_ns": 14694.0, "ser_max_ns": 36378.0, "ser_p5_ns": 16861.25, "ser_p25_ns": 18478.75, "ser_p50_ns": 20825.5, "ser_p75_ns": 26857.0, "ser_p95_ns": 34704.75, "ser_p99_ns": 35820.35, "ser_ci_low_ns": 21875.51953125, "ser_ci_high_ns": 24039.272395833334, "deser_mean_ns": 26676.333333333332, "deser_median_ns": 24572.0, "deser_std_ns": 5995.684257805629, "deser_mad_ns": 3632.5, "deser_cv": 0.22475668536926474, "deser_min_ns": 17816.0, "deser_max_ns": 41931.0, "deser_p5_ns": 19665.75, "deser_p25_ns": 22476.25, "deser_p50_ns": 24572.0, "deser_p75_ns": 31038.75, "deser_p95_ns": 38575.0, "deser_p99_ns": 41217.549999999996, "deser_ci_low_ns": 25548.382552083334, "deser_ci_high_ns": 27886.240104166667, "total_mean_ns": 49585.520833333336, "total_median_ns": 45589.5, "total_std_ns": 11368.644859278678, "total_mad_ns": 6761.5, "total_cv": 0.229273478794161, "total_min_ns": 34165.0, "total_max_ns": 77558.0, "total_p5_ns": 36179.25, "total_p25_ns": 40918.0, "total_p50_ns": 45589.5, "total_p75_ns": 57769.75, "total_p95_ns": 73483.75, "total_p99_ns": 75767.25, "total_ci_low_ns": 47291.385416666664, "total_ci_high_ns": 51851.60651041666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.4668845795873}, {"serializer": "System.Text.Json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "8.0.0.0", "avg_time_ser_ns": 8589.847826086956, "avg_time_deser_ns": 8287.076086956522, "avg_time_total_ns": 16876.92391304348, "median_size_bytes": 254.0, "avg_ops_per_sec": 59252.50390132654, "min_ops_per_sec": 38259.93801890041, "max_ops_per_sec": 81913.499344692, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 8589.847826086956, "ser_median_ns": 8359.5, "ser_std_ns": 1650.5017814091514, "ser_mad_ns": 1175.5, "ser_cv": 0.19214563689902125, "ser_min_ns": 5861.0, "ser_max_ns": 14081.0, "ser_p5_ns": 6262.25, "ser_p25_ns": 7403.5, "ser_p50_ns": 8359.5, "ser_p75_ns": 9594.5, "ser_p95_ns": 11240.6, "ser_p99_ns": 12744.210000000005, "ser_ci_low_ns": 8257.960869565217, "ser_ci_high_ns": 8929.010869565218, "deser_mean_ns": 8287.076086956522, "deser_median_ns": 8048.5, "deser_std_ns": 1453.9078392856159, "deser_mad_ns": 1264.0, "deser_cv": 0.17544280081776975, "deser_min_ns": 5954.0, "deser_max_ns": 12056.0, "deser_p5_ns": 6361.35, "deser_p25_ns": 7118.5, "deser_p50_ns": 8048.5, "deser_p75_ns": 9432.5, "deser_p95_ns": 10594.0, "deser_p99_ns": 11609.190000000002, "deser_ci_low_ns": 7983.249184782609, "deser_ci_high_ns": 8576.130706521739, "total_mean_ns": 16876.92391304348, "total_median_ns": 16346.5, "total_std_ns": 3003.140254758601, "total_mad_ns": 2489.0, "total_cv": 0.17794357966131477, "total_min_ns": 12208.0, "total_max_ns": 26137.0, "total_p5_ns": 12919.4, "total_p25_ns": 14507.5, "total_p50_ns": 16346.5, "total_p75_ns": 19072.5, "total_p95_ns": 21928.1, "total_p99_ns": 23568.98000000001, "total_ci_low_ns": 16276.691576086958, "total_ci_high_ns": 17501.081521739132, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.233641407218123}, {"serializer": "Utf8Json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.3.7", "avg_time_ser_ns": 5563.21875, "avg_time_deser_ns": 5374.40625, "avg_time_total_ns": 10937.625, "median_size_bytes": 254.0, "avg_ops_per_sec": 91427.5265425538, "min_ops_per_sec": 51300.46683424819, "max_ops_per_sec": 165289.2561983471, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 5563.21875, "ser_median_ns": 5322.5, "ser_std_ns": 1717.020045268914, "ser_mad_ns": 1269.5, "ser_cv": 0.30863788077161514, "ser_min_ns": 2868.0, "ser_max_ns": 10441.0, "ser_p5_ns": 3475.0, "ser_p25_ns": 4082.5, "ser_p50_ns": 5322.5, "ser_p75_ns": 6661.5, "ser_p95_ns": 8783.0, "ser_p99_ns": 10422.0, "ser_ci_low_ns": 5210.214583333333, "ser_ci_high_ns": 5892.066666666667, "deser_mean_ns": 5374.40625, "deser_median_ns": 5364.0, "deser_std_ns": 1344.4977272152014, "deser_mad_ns": 1031.0, "deser_cv": 0.2501667467388051, "deser_min_ns": 3182.0, "deser_max_ns": 9079.0, "deser_p5_ns": 3588.25, "deser_p25_ns": 4283.75, "deser_p50_ns": 5364.0, "deser_p75_ns": 6225.5, "deser_p95_ns": 8079.75, "deser_p99_ns": 9053.35, "deser_ci_low_ns": 5114.381770833333, "deser_ci_high_ns": 5643.342187499999, "total_mean_ns": 10937.625, "total_median_ns": 10807.0, "total_std_ns": 2942.8030327348933, "total_mad_ns": 2417.0, "total_cv": 0.2690532023848773, "total_min_ns": 6050.0, "total_max_ns": 19493.0, "total_p5_ns": 7186.0, "total_p25_ns": 8341.25, "total_p50_ns": 10807.0, "total_p75_ns": 12852.75, "total_p95_ns": 15922.0, "total_p99_ns": 18086.049999999996, "total_ci_low_ns": 10359.362239583334, "total_ci_high_ns": 11546.941145833332, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9857456140350878, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.6032572342253943}, {"serializer": "BinaryPack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.0.3", "avg_time_ser_ns": 3072.1473684210528, "avg_time_deser_ns": 2099.2315789473682, "avg_time_total_ns": 5171.378947368421, "median_size_bytes": 147.0, "avg_ops_per_sec": 193372.02130756126, "min_ops_per_sec": 129718.51083149566, "max_ops_per_sec": 273597.81121751026, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 3072.1473684210528, "ser_median_ns": 2813.0, "ser_std_ns": 759.7269801938658, "ser_mad_ns": 414.0, "ser_cv": 0.24729509658396748, "ser_min_ns": 2000.0, "ser_max_ns": 5041.0, "ser_p5_ns": 2228.1, "ser_p25_ns": 2462.5, "ser_p50_ns": 2813.0, "ser_p75_ns": 3496.0, "ser_p95_ns": 4704.5, "ser_p99_ns": 5037.24, "ser_ci_low_ns": 2917.1365789473684, "ser_ci_high_ns": 3228.1836842105263, "deser_mean_ns": 2099.2315789473682, "deser_median_ns": 2010.0, "deser_std_ns": 337.9385394401914, "deser_mad_ns": 206.0, "deser_cv": 0.16098201972059042, "deser_min_ns": 1538.0, "deser_max_ns": 2940.0, "deser_p5_ns": 1622.9, "deser_p25_ns": 1848.0, "deser_p50_ns": 2010.0, "deser_p75_ns": 2283.5, "deser_p95_ns": 2738.9999999999995, "deser_p99_ns": 2857.28, "deser_ci_low_ns": 2034.2942105263157, "deser_ci_high_ns": 2166.521842105263, "total_mean_ns": 5171.378947368421, "total_median_ns": 4826.0, "total_std_ns": 1017.0019579778573, "total_mad_ns": 603.0, "total_cv": 0.19665972428792575, "total_min_ns": 3655.0, "total_max_ns": 7709.0, "total_p5_ns": 3994.9, "total_p25_ns": 4358.5, "total_p50_ns": 4826.0, "total_p75_ns": 5852.0, "total_p95_ns": 7235.4, "total_p99_ns": 7581.16, "total_ci_low_ns": 4973.286578947369, "total_ci_high_ns": 5373.186578947369, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "YamlDotNet", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "17.1.0", "avg_time_ser_ns": 83848.6, "avg_time_deser_ns": 61917.0, "avg_time_total_ns": 145765.6, "median_size_bytes": 227.0, "avg_ops_per_sec": 6860.329186035662, "min_ops_per_sec": 5203.590477429427, "max_ops_per_sec": 9552.831937027731, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 83848.6, "ser_median_ns": 82475.5, "ser_std_ns": 10134.97039878606, "ser_mad_ns": 6394.0, "ser_cv": 0.12087226738175783, "ser_min_ns": 58344.0, "ser_max_ns": 111020.0, "ser_p5_ns": 70375.1, "ser_p25_ns": 76770.0, "ser_p50_ns": 82475.5, "ser_p75_ns": 90020.0, "ser_p95_ns": 102368.25, "ser_p99_ns": 110274.18, "ser_ci_low_ns": 81775.53694444445, "ser_ci_high_ns": 86013.20888888888, "deser_mean_ns": 61917.0, "deser_median_ns": 60958.5, "deser_std_ns": 6589.639813859669, "deser_mad_ns": 4051.0, "deser_cv": 0.10642698796549685, "deser_min_ns": 46337.0, "deser_max_ns": 81155.0, "deser_p5_ns": 53519.6, "deser_p25_ns": 57040.25, "deser_p50_ns": 60958.5, "deser_p75_ns": 65108.75, "deser_p95_ns": 72930.0, "deser_p99_ns": 80696.65, "deser_ci_low_ns": 60568.55055555556, "deser_ci_high_ns": 63307.275555555556, "total_mean_ns": 145765.6, "total_median_ns": 143920.5, "total_std_ns": 16358.172965891468, "total_mad_ns": 10606.5, "total_cv": 0.1122224514281248, "total_min_ns": 104681.0, "total_max_ns": 192175.0, "total_p5_ns": 123665.15, "total_p25_ns": 133984.0, "total_p50_ns": 143920.5, "total_p75_ns": 155454.25, "total_p95_ns": 173098.4, "total_p99_ns": 188661.28, "total_ci_low_ns": 142502.79194444444, "total_ci_high_ns": 149085.17166666666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.248771926515216}, {"serializer": "Json.Net", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 9853.034482758621, "avg_time_deser_ns": 8916.252873563219, "avg_time_total_ns": 18769.287356321838, "median_size_bytes": 329.0, "avg_ops_per_sec": 53278.527895902334, "min_ops_per_sec": 38611.52940267964, "max_ops_per_sec": 103680.66355624676, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 9853.034482758621, "ser_median_ns": 9835.0, "ser_std_ns": 1956.0643533920522, "ser_mad_ns": 1173.0, "ser_cv": 0.19852405437278034, "ser_min_ns": 4699.0, "ser_max_ns": 14203.0, "ser_p5_ns": 6822.2, "ser_p25_ns": 8501.5, "ser_p50_ns": 9835.0, "ser_p75_ns": 10880.5, "ser_p95_ns": 13659.7, "ser_p99_ns": 14022.4, "ser_ci_low_ns": 9444.387643678161, "ser_ci_high_ns": 10252.033333333333, "deser_mean_ns": 8916.252873563219, "deser_median_ns": 9205.0, "deser_std_ns": 1485.1422938512767, "deser_mad_ns": 848.0, "deser_cv": 0.1665657440307395, "deser_min_ns": 4946.0, "deser_max_ns": 12346.0, "deser_p5_ns": 6445.2, "deser_p25_ns": 7898.5, "deser_p50_ns": 9205.0, "deser_p75_ns": 9840.5, "deser_p95_ns": 11273.2, "deser_p99_ns": 12033.82, "deser_ci_low_ns": 8587.21063218391, "deser_ci_high_ns": 9239.37643678161, "total_mean_ns": 18769.287356321838, "total_median_ns": 19026.0, "total_std_ns": 3102.6639450641555, "total_mad_ns": 1655.0, "total_cv": 0.165305367548711, "total_min_ns": 9645.0, "total_max_ns": 25899.0, "total_p5_ns": 13891.5, "total_p25_ns": 16989.5, "total_p50_ns": 19026.0, "total_p75_ns": 20298.5, "total_p95_ns": 23796.2, "total_p99_ns": 25131.02, "total_ci_low_ns": 18106.619827586208, "total_ci_high_ns": 19406.72155172414, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.973062839706574}, {"serializer": "fastJson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "2.4.0.4", "avg_time_ser_ns": 10710.515463917525, "avg_time_deser_ns": 13798.783505154639, "avg_time_total_ns": 24509.298969072166, "median_size_bytes": 585.0, "avg_ops_per_sec": 40800.84058144142, "min_ops_per_sec": 30235.230090100984, "max_ops_per_sec": 54564.30403230207, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 10710.515463917525, "ser_median_ns": 10201.0, "ser_std_ns": 1723.793854369641, "ser_mad_ns": 903.0, "ser_cv": 0.16094406101899586, "ser_min_ns": 7684.0, "ser_max_ns": 15258.0, "ser_p5_ns": 8869.2, "ser_p25_ns": 9438.0, "ser_p50_ns": 10201.0, "ser_p75_ns": 11694.0, "ser_p95_ns": 14351.399999999998, "ser_p99_ns": 14742.479999999996, "ser_ci_low_ns": 10392.536597938144, "ser_ci_high_ns": 11062.908505154639, "deser_mean_ns": 13798.783505154639, "deser_median_ns": 13560.0, "deser_std_ns": 1807.3511535462846, "deser_mad_ns": 1344.0, "deser_cv": 0.1309790209311665, "deser_min_ns": 10460.0, "deser_max_ns": 18699.0, "deser_p5_ns": 11452.2, "deser_p25_ns": 12241.0, "deser_p50_ns": 13560.0, "deser_p75_ns": 14999.0, "deser_p95_ns": 17009.999999999996, "deser_p99_ns": 18366.839999999997, "deser_ci_low_ns": 13448.159278350515, "deser_ci_high_ns": 14159.425257731958, "total_mean_ns": 24509.298969072166, "total_median_ns": 23616.0, "total_std_ns": 3365.279722044379, "total_mad_ns": 2260.0, "total_cv": 0.1373062414510902, "total_min_ns": 18327.0, "total_max_ns": 33074.0, "total_p5_ns": 20569.2, "total_p25_ns": 21730.0, "total_p50_ns": 23616.0, "total_p75_ns": 26776.0, "total_p95_ns": 30608.799999999996, "total_p99_ns": 32569.039999999997, "total_ci_low_ns": 23906.359793814434, "total_ci_high_ns": 25170.198453608245, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.71456017045967}, {"serializer": "MS Bond Compact", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 6982.29347826087, "avg_time_deser_ns": 5488.70652173913, "avg_time_total_ns": 12471.0, "median_size_bytes": 123.0, "avg_ops_per_sec": 80186.03159329644, "min_ops_per_sec": 61447.708000491584, "max_ops_per_sec": 107319.1672032625, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 6982.29347826087, "ser_median_ns": 6959.0, "ser_std_ns": 891.5018756248995, "ser_mad_ns": 567.0, "ser_cv": 0.12768037871804727, "ser_min_ns": 5136.0, "ser_max_ns": 9349.0, "ser_p5_ns": 5656.1, "ser_p25_ns": 6385.75, "ser_p50_ns": 6959.0, "ser_p75_ns": 7459.75, "ser_p95_ns": 8704.15, "ser_p99_ns": 9300.77, "ser_ci_low_ns": 6800.344021739131, "ser_ci_high_ns": 7166.283423913043, "deser_mean_ns": 5488.70652173913, "deser_median_ns": 5403.5, "deser_std_ns": 629.8292030478934, "deser_mad_ns": 337.0, "deser_cv": 0.11475002362639135, "deser_min_ns": 3939.0, "deser_max_ns": 6925.0, "deser_p5_ns": 4466.5, "deser_p25_ns": 5098.25, "deser_p50_ns": 5403.5, "deser_p75_ns": 5814.5, "deser_p95_ns": 6618.150000000001, "deser_p99_ns": 6922.27, "deser_ci_low_ns": 5365.49402173913, "deser_ci_high_ns": 5621.768206521739, "total_mean_ns": 12471.0, "total_median_ns": 12349.0, "total_std_ns": 1463.2540284066713, "total_mad_ns": 790.0, "total_cv": 0.11733253375083565, "total_min_ns": 9318.0, "total_max_ns": 16274.0, "total_p5_ns": 10161.65, "total_p25_ns": 11639.5, "total_p50_ns": 12349.0, "total_p75_ns": 13328.5, "total_p95_ns": 15133.0, "total_p99_ns": 16000.09, "total_ci_low_ns": 12176.578532608695, "total_ci_high_ns": 12767.649728260869, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.786020559220265}, {"serializer": "NetJSON", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.0.0", "avg_time_ser_ns": 4350.073684210526, "avg_time_deser_ns": 5549.473684210527, "avg_time_total_ns": 9899.547368421052, "median_size_bytes": 254.0, "avg_ops_per_sec": 101014.71943959162, "min_ops_per_sec": 72374.61098646595, "max_ops_per_sec": 138140.62715844729, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 4350.073684210526, "ser_median_ns": 4236.0, "ser_std_ns": 926.831714189675, "ser_mad_ns": 723.0, "ser_cv": 0.21306115286134084, "ser_min_ns": 2898.0, "ser_max_ns": 6401.0, "ser_p5_ns": 3073.5, "ser_p25_ns": 3551.5, "ser_p50_ns": 4236.0, "ser_p75_ns": 5041.5, "ser_p95_ns": 5957.599999999999, "ser_p99_ns": 6352.12, "ser_ci_low_ns": 4167.296315789474, "ser_ci_high_ns": 4534.590526315789, "deser_mean_ns": 5549.473684210527, "deser_median_ns": 5509.0, "deser_std_ns": 672.3628048318769, "deser_mad_ns": 457.0, "deser_cv": 0.12115794093138904, "deser_min_ns": 4164.0, "deser_max_ns": 7416.0, "deser_p5_ns": 4509.4, "deser_p25_ns": 5026.0, "deser_p50_ns": 5509.0, "deser_p75_ns": 5953.0, "deser_p95_ns": 6622.0, "deser_p99_ns": 6968.560000000001, "deser_ci_low_ns": 5421.554210526316, "deser_ci_high_ns": 5676.0081578947365, "total_mean_ns": 9899.547368421052, "total_median_ns": 9712.0, "total_std_ns": 1489.4800089965786, "total_mad_ns": 1222.0, "total_cv": 0.15045940521966977, "total_min_ns": 7239.0, "total_max_ns": 13817.0, "total_p5_ns": 7766.9, "total_p25_ns": 8661.5, "total_p50_ns": 9712.0, "total_p75_ns": 11062.0, "total_p95_ns": 12148.3, "total_p99_ns": 13230.440000000002, "total_ci_low_ns": 9598.865263157895, "total_ci_high_ns": 10196.884736842105, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9984487534626039, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.692648760939436}, {"serializer": "NetSerializer", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "4.1.2", "avg_time_ser_ns": 3529.0, "avg_time_deser_ns": 2731.6326530612246, "avg_time_total_ns": 6260.632653061224, "median_size_bytes": 123.0, "avg_ops_per_sec": 159728.26636155308, "min_ops_per_sec": 105775.33319229956, "max_ops_per_sec": 315756.23618566466, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 3529.0, "ser_median_ns": 3402.0, "ser_std_ns": 943.5573289364513, "ser_mad_ns": 735.5, "ser_cv": 0.26737243664960364, "ser_min_ns": 1362.0, "ser_max_ns": 5761.0, "ser_p5_ns": 2167.65, "ser_p25_ns": 2768.75, "ser_p50_ns": 3402.0, "ser_p75_ns": 4219.75, "ser_p95_ns": 5080.9, "ser_p99_ns": 5609.68, "ser_ci_low_ns": 3347.938265306122, "ser_ci_high_ns": 3704.334948979592, "deser_mean_ns": 2731.6326530612246, "deser_median_ns": 2677.0, "deser_std_ns": 498.32075514196663, "deser_mad_ns": 344.0, "deser_cv": 0.18242597685436207, "deser_min_ns": 1805.0, "deser_max_ns": 3967.0, "deser_p5_ns": 1980.05, "deser_p25_ns": 2415.5, "deser_p50_ns": 2677.0, "deser_p75_ns": 3053.0, "deser_p95_ns": 3670.4499999999994, "deser_p99_ns": 3880.67, "deser_ci_low_ns": 2635.8829081632653, "deser_ci_high_ns": 2830.33443877551, "total_mean_ns": 6260.632653061224, "total_median_ns": 6137.0, "total_std_ns": 1377.356600111692, "total_mad_ns": 1101.0, "total_cv": 0.22000278189748348, "total_min_ns": 3167.0, "total_max_ns": 9454.0, "total_p5_ns": 4322.7, "total_p25_ns": 5169.25, "total_p50_ns": 6137.0, "total_p75_ns": 7346.25, "total_p95_ns": 8725.0, "total_p99_ns": 9267.76, "total_ci_low_ns": 6005.5512755102045, "total_ci_high_ns": 6541.247704081633, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.47465091299677764, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 0.8941155964445928}, {"serializer": "MS Binary", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 20407.956989247312, "avg_time_deser_ns": 22346.870967741936, "avg_time_total_ns": 42754.82795698925, "median_size_bytes": 1103.0, "avg_ops_per_sec": 23389.171417225345, "min_ops_per_sec": 17277.125086385626, "max_ops_per_sec": 28889.209880109778, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 20407.956989247312, "ser_median_ns": 19906.0, "ser_std_ns": 3190.70329208624, "ser_mad_ns": 2165.0, "ser_cv": 0.15634604158404392, "ser_min_ns": 16025.0, "ser_max_ns": 29217.0, "ser_p5_ns": 16768.0, "ser_p25_ns": 17745.0, "ser_p50_ns": 19906.0, "ser_p75_ns": 22204.0, "ser_p95_ns": 26830.6, "ser_p99_ns": 28835.2, "ser_ci_low_ns": 19786.36129032258, "ser_ci_high_ns": 21083.024193548386, "deser_mean_ns": 22346.870967741936, "deser_median_ns": 21913.0, "deser_std_ns": 2551.2830967361197, "deser_mad_ns": 1797.0, "deser_cv": 0.11416735257562177, "deser_min_ns": 18535.0, "deser_max_ns": 28663.0, "deser_p5_ns": 19181.4, "deser_p25_ns": 20154.0, "deser_p50_ns": 21913.0, "deser_p75_ns": 24067.0, "deser_p95_ns": 27351.799999999996, "deser_p99_ns": 28328.12, "deser_ci_low_ns": 21849.368548387098, "deser_ci_high_ns": 22837.15940860215, "total_mean_ns": 42754.82795698925, "total_median_ns": 41839.0, "total_std_ns": 5648.619942312296, "total_mad_ns": 3961.0, "total_cv": 0.13211654010149984, "total_min_ns": 34615.0, "total_max_ns": 57880.0, "total_p5_ns": 36425.4, "total_p25_ns": 37729.0, "total_p50_ns": 41839.0, "total_p75_ns": 45737.0, "total_p95_ns": 53802.6, "total_p99_ns": 56148.56, "total_ci_low_ns": 41609.65403225807, "total_ci_high_ns": 43945.10295698925, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.270095753674763}, {"serializer": "YAXLib", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "4.4.0", "avg_time_ser_ns": 196724.45, "avg_time_deser_ns": 108461.8625, "avg_time_total_ns": 305186.3125, "median_size_bytes": 531.0, "avg_ops_per_sec": 3276.6869254662265, "min_ops_per_sec": 1856.9446946161602, "max_ops_per_sec": 4720.855796738832, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 196724.45, "ser_median_ns": 156498.0, "ser_std_ns": 84319.93760729863, "ser_mad_ns": 23959.0, "ser_cv": 0.42861951123664915, "ser_min_ns": 117987.0, "ser_max_ns": 416152.0, "ser_p5_ns": 120549.45, "ser_p25_ns": 137234.75, "ser_p50_ns": 156498.0, "ser_p75_ns": 284979.75, "ser_p95_ns": 357341.85, "ser_p99_ns": 397012.66999999987, "ser_ci_low_ns": 178883.29625, "ser_ci_high_ns": 215226.95124999998, "deser_mean_ns": 108461.8625, "deser_median_ns": 106800.5, "deser_std_ns": 10402.162198243976, "deser_mad_ns": 8297.5, "deser_cv": 0.09590617345561418, "deser_min_ns": 91515.0, "deser_max_ns": 139121.0, "deser_p5_ns": 94503.5, "deser_p25_ns": 99928.0, "deser_p50_ns": 106800.5, "deser_p75_ns": 115919.5, "deser_p95_ns": 125793.24999999999, "deser_p99_ns": 134792.58999999997, "deser_ci_low_ns": 106208.13843749999, "deser_ci_high_ns": 110809.1015625, "total_mean_ns": 305186.3125, "total_median_ns": 264963.5, "total_std_ns": 91541.07827727906, "total_mad_ns": 33319.0, "total_cv": 0.2999514543342407, "total_min_ns": 211826.0, "total_max_ns": 538519.0, "total_p5_ns": 216257.85, "total_p25_ns": 238934.0, "total_p50_ns": 264963.5, "total_p75_ns": 391744.0, "total_p95_ns": 479589.69999999995, "total_p99_ns": 521076.58999999985, "total_ci_low_ns": 286234.3475, "total_ci_high_ns": 325045.8328125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.828529145558211}, {"serializer": "Json.Net (Helper)", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 10208.477777777778, "avg_time_deser_ns": 9317.977777777778, "avg_time_total_ns": 19526.455555555556, "median_size_bytes": 304.0, "avg_ops_per_sec": 51212.571434424295, "min_ops_per_sec": 34955.25727069351, "max_ops_per_sec": 75420.4691153179, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 10208.477777777778, "ser_median_ns": 9636.0, "ser_std_ns": 2027.958486531746, "ser_mad_ns": 775.0, "ser_cv": 0.19865434697289414, "ser_min_ns": 6133.0, "ser_max_ns": 15833.0, "ser_p5_ns": 7331.9, "ser_p25_ns": 9013.25, "ser_p50_ns": 9636.0, "ser_p75_ns": 11278.75, "ser_p95_ns": 14226.55, "ser_p99_ns": 14917.189999999999, "ser_ci_low_ns": 9806.261944444444, "ser_ci_high_ns": 10601.76638888889, "deser_mean_ns": 9317.977777777778, "deser_median_ns": 9496.5, "deser_std_ns": 1803.7515834453266, "deser_mad_ns": 1070.0, "deser_cv": 0.19357757943435436, "deser_min_ns": 6139.0, "deser_max_ns": 13819.0, "deser_p5_ns": 6302.2, "deser_p25_ns": 7903.75, "deser_p50_ns": 9496.5, "deser_p75_ns": 10481.0, "deser_p95_ns": 11975.849999999999, "deser_p99_ns": 13807.43, "deser_ci_low_ns": 8948.749166666666, "deser_ci_high_ns": 9688.818055555555, "total_mean_ns": 19526.455555555556, "total_median_ns": 19207.5, "total_std_ns": 3375.460069053962, "total_mad_ns": 2128.5, "total_cv": 0.17286598991047278, "total_min_ns": 13259.0, "total_max_ns": 28608.0, "total_p5_ns": 13999.6, "total_p25_ns": 17270.0, "total_p50_ns": 19207.5, "total_p75_ns": 21467.5, "total_p95_ns": 25154.95, "total_p99_ns": 28379.27, "total_ci_low_ns": 18883.145833333336, "total_ci_high_ns": 20216.80361111111, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.801444369774932}, {"serializer": "ZeroFormatter", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.6.4", "avg_time_ser_ns": 2952.7526881720432, "avg_time_deser_ns": 2385.7741935483873, "avg_time_total_ns": 5338.5268817204305, "median_size_bytes": 142.0, "avg_ops_per_sec": 187317.59194171804, "min_ops_per_sec": 105318.58873091101, "max_ops_per_sec": 330469.2663582287, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 2952.7526881720432, "ser_median_ns": 2953.0, "ser_std_ns": 796.0777853614281, "ser_mad_ns": 571.0, "ser_cv": 0.26960530373922204, "ser_min_ns": 1555.0, "ser_max_ns": 5181.0, "ser_p5_ns": 1925.6, "ser_p25_ns": 2222.0, "ser_p50_ns": 2953.0, "ser_p75_ns": 3359.0, "ser_p95_ns": 4557.999999999999, "ser_p99_ns": 5035.639999999999, "ser_ci_low_ns": 2801.135215053763, "ser_ci_high_ns": 3113.8411290322583, "deser_mean_ns": 2385.7741935483873, "deser_median_ns": 2243.0, "deser_std_ns": 659.5035703669755, "deser_mad_ns": 419.0, "deser_cv": 0.2764316808147249, "deser_min_ns": 1471.0, "deser_max_ns": 4314.0, "deser_p5_ns": 1595.8, "deser_p25_ns": 1894.0, "deser_p50_ns": 2243.0, "deser_p75_ns": 2803.0, "deser_p95_ns": 3576.999999999999, "deser_p99_ns": 4213.72, "deser_ci_low_ns": 2257.8502688172043, "deser_ci_high_ns": 2529.284677419355, "total_mean_ns": 5338.5268817204305, "total_median_ns": 5022.0, "total_std_ns": 1393.7492413052944, "total_mad_ns": 926.0, "total_cv": 0.2610737516519042, "total_min_ns": 3026.0, "total_max_ns": 9495.0, "total_p5_ns": 3679.2, "total_p25_ns": 4150.0, "total_p50_ns": 5022.0, "total_p75_ns": 6370.0, "total_p95_ns": 8116.399999999998, "total_p99_ns": 8581.439999999999, "total_ci_low_ns": 5069.587096774194, "total_ci_high_ns": 5619.020430107526, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.03418222976796831, "effect_vs_fastest_cliffs_label": "negligible", "effect_vs_fastest_hedges_g": 0.13667701029257615}, {"serializer": "Migrant", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "0.13.0.0", "avg_time_ser_ns": 13891.913978494624, "avg_time_deser_ns": 40420.021505376346, "avg_time_total_ns": 54311.93548387097, "median_size_bytes": 1030.0, "avg_ops_per_sec": 18412.15915232795, "min_ops_per_sec": 12323.162616453887, "max_ops_per_sec": 27876.118529255986, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 13891.913978494624, "ser_median_ns": 13581.0, "ser_std_ns": 2293.316815064809, "ser_mad_ns": 1771.0, "ser_cv": 0.16508285457388938, "ser_min_ns": 9842.0, "ser_max_ns": 20021.0, "ser_p5_ns": 11086.0, "ser_p25_ns": 12020.0, "ser_p50_ns": 13581.0, "ser_p75_ns": 15470.0, "ser_p95_ns": 18188.59999999999, "ser_p99_ns": 19691.64, "ser_ci_low_ns": 13445.395430107526, "ser_ci_high_ns": 14344.792204301075, "deser_mean_ns": 40420.021505376346, "deser_median_ns": 39461.0, "deser_std_ns": 7075.326392806898, "deser_mad_ns": 5090.0, "deser_cv": 0.17504509224137338, "deser_min_ns": 26031.0, "deser_max_ns": 61680.0, "deser_p5_ns": 31674.2, "deser_p25_ns": 35105.0, "deser_p50_ns": 39461.0, "deser_p75_ns": 45024.0, "deser_p95_ns": 51652.99999999999, "deser_p99_ns": 61171.24, "deser_ci_low_ns": 39005.304032258064, "deser_ci_high_ns": 41847.98333333333, "total_mean_ns": 54311.93548387097, "total_median_ns": 53181.0, "total_std_ns": 9131.418017894677, "total_mad_ns": 6643.0, "total_cv": 0.16812912183191184, "total_min_ns": 35873.0, "total_max_ns": 81148.0, "total_p5_ns": 43544.4, "total_p25_ns": 46561.0, "total_p50_ns": 53181.0, "total_p75_ns": 60538.0, "total_p95_ns": 68689.4, "total_p99_ns": 80145.2, "total_ci_low_ns": 52404.95806451613, "total_ci_high_ns": 56204.75188172043, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.573079603008275}, {"serializer": "ServiceStack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 8844.030927835052, "avg_time_deser_ns": 8071.484536082474, "avg_time_total_ns": 16915.515463917527, "median_size_bytes": 206.0, "avg_ops_per_sec": 59117.3235088874, "min_ops_per_sec": 40789.68836678088, "max_ops_per_sec": 119588.61516383641, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 8844.030927835052, "ser_median_ns": 8564.0, "ser_std_ns": 1971.622684351692, "ser_mad_ns": 1454.0, "ser_cv": 0.22293258588076076, "ser_min_ns": 4153.0, "ser_max_ns": 14027.0, "ser_p5_ns": 6260.6, "ser_p25_ns": 7500.0, "ser_p50_ns": 8564.0, "ser_p75_ns": 10135.0, "ser_p95_ns": 11935.799999999996, "ser_p99_ns": 14017.4, "ser_ci_low_ns": 8471.535051546392, "ser_ci_high_ns": 9225.499484536083, "deser_mean_ns": 8071.484536082474, "deser_median_ns": 7766.0, "deser_std_ns": 1485.5062346539903, "deser_mad_ns": 953.0, "deser_cv": 0.18404374412330676, "deser_min_ns": 4209.0, "deser_max_ns": 11522.0, "deser_p5_ns": 6040.0, "deser_p25_ns": 7101.0, "deser_p50_ns": 7766.0, "deser_p75_ns": 9190.0, "deser_p95_ns": 10528.199999999999, "deser_p99_ns": 11380.88, "deser_ci_low_ns": 7761.797164948453, "deser_ci_high_ns": 8360.16469072165, "total_mean_ns": 16915.515463917527, "total_median_ns": 16451.0, "total_std_ns": 3257.5421720006243, "total_mad_ns": 2284.0, "total_cv": 0.19257717442600464, "total_min_ns": 8362.0, "total_max_ns": 24516.0, "total_p5_ns": 12415.8, "total_p25_ns": 14740.0, "total_p50_ns": 16451.0, "total_p75_ns": 19134.0, "total_p95_ns": 22330.99999999999, "total_p99_ns": 23957.279999999995, "total_ci_low_ns": 16277.578092783506, "total_ci_high_ns": 17559.80850515464, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.826789951631385}, {"serializer": "FsPickler", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 13870.17894736842, "avg_time_deser_ns": 8474.063157894738, "avg_time_total_ns": 22344.242105263158, "median_size_bytes": 289.0, "avg_ops_per_sec": 44754.25907439712, "min_ops_per_sec": 24420.620772180027, "max_ops_per_sec": 92945.44102611767, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 13870.17894736842, "ser_median_ns": 12262.0, "ser_std_ns": 4487.300844816681, "ser_mad_ns": 2477.0, "ser_cv": 0.3235214817230641, "ser_min_ns": 6315.0, "ser_max_ns": 26108.0, "ser_p5_ns": 8902.4, "ser_p25_ns": 10521.5, "ser_p50_ns": 12262.0, "ser_p75_ns": 16482.5, "ser_p95_ns": 22148.699999999997, "ser_p99_ns": 24163.140000000003, "ser_ci_low_ns": 13000.32552631579, "ser_ci_high_ns": 14792.849473684211, "deser_mean_ns": 8474.063157894738, "deser_median_ns": 7873.0, "deser_std_ns": 2246.1205600850394, "deser_mad_ns": 1184.0, "deser_cv": 0.2650582746710442, "deser_min_ns": 4444.0, "deser_max_ns": 14841.0, "deser_p5_ns": 5725.3, "deser_p25_ns": 7020.0, "deser_p50_ns": 7873.0, "deser_p75_ns": 10110.5, "deser_p95_ns": 12443.699999999999, "deser_p99_ns": 14603.18, "deser_ci_low_ns": 8007.617105263158, "deser_ci_high_ns": 8947.22842105263, "total_mean_ns": 22344.242105263158, "total_median_ns": 19864.0, "total_std_ns": 6610.403132065476, "total_mad_ns": 3259.0, "total_cv": 0.2958436943586645, "total_min_ns": 10759.0, "total_max_ns": 40949.0, "total_p5_ns": 14538.2, "total_p25_ns": 17306.0, "total_p50_ns": 19864.0, "total_p75_ns": 26796.0, "total_p95_ns": 34491.2, "total_p99_ns": 36816.76000000001, "total_ci_low_ns": 20966.295789473686, "total_ci_high_ns": 23651.596578947367, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.616692259594041}, {"serializer": "Jil", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "2.17.0", "avg_time_ser_ns": 9880.052631578947, "avg_time_deser_ns": 7778.305263157895, "avg_time_total_ns": 17658.35789473684, "median_size_bytes": 254.0, "avg_ops_per_sec": 56630.40730973376, "min_ops_per_sec": 36071.13227284204, "max_ops_per_sec": 93703.1484257871, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 9880.052631578947, "ser_median_ns": 9272.0, "ser_std_ns": 2635.9807427073233, "ser_mad_ns": 1675.0, "ser_cv": 0.26679824905811894, "ser_min_ns": 5637.0, "ser_max_ns": 18312.0, "ser_p5_ns": 6330.2, "ser_p25_ns": 7926.0, "ser_p50_ns": 9272.0, "ser_p75_ns": 11839.0, "ser_p95_ns": 14380.3, "ser_p99_ns": 16068.220000000005, "ser_ci_low_ns": 9357.787368421052, "ser_ci_high_ns": 10423.793421052631, "deser_mean_ns": 7778.305263157895, "deser_median_ns": 7648.0, "deser_std_ns": 1337.1103176506228, "deser_mad_ns": 978.0, "deser_cv": 0.17190252534621825, "deser_min_ns": 4793.0, "deser_max_ns": 10416.0, "deser_p5_ns": 5818.8, "deser_p25_ns": 6877.0, "deser_p50_ns": 7648.0, "deser_p75_ns": 8849.5, "deser_p95_ns": 10114.5, "deser_p99_ns": 10333.28, "deser_ci_low_ns": 7506.685, "deser_ci_high_ns": 8055.136842105262, "total_mean_ns": 17658.35789473684, "total_median_ns": 17066.0, "total_std_ns": 3846.8191361556624, "total_mad_ns": 2801.0, "total_cv": 0.21784693452737333, "total_min_ns": 10672.0, "total_max_ns": 27723.0, "total_p5_ns": 12265.0, "total_p25_ns": 15069.5, "total_p50_ns": 17066.0, "total_p75_ns": 20496.5, "total_p95_ns": 24704.1, "total_p99_ns": 26133.460000000003, "total_ci_low_ns": 16932.185263157895, "total_ci_high_ns": 18443.89789473684, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.420403250757864}, {"serializer": "ProtoBuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "2.4.9.1", "avg_time_ser_ns": 4648.666666666667, "avg_time_deser_ns": 5146.978494623656, "avg_time_total_ns": 9795.645161290322, "median_size_bytes": 123.0, "avg_ops_per_sec": 102086.18049495333, "min_ops_per_sec": 73051.35510263716, "max_ops_per_sec": 138389.15029061722, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 4648.666666666667, "ser_median_ns": 4519.0, "ser_std_ns": 889.261067615586, "ser_mad_ns": 723.0, "ser_cv": 0.19129379053827317, "ser_min_ns": 3237.0, "ser_max_ns": 7024.0, "ser_p5_ns": 3487.2, "ser_p25_ns": 3927.0, "ser_p50_ns": 4519.0, "ser_p75_ns": 5413.0, "ser_p95_ns": 6130.4, "ser_p99_ns": 6762.719999999999, "ser_ci_low_ns": 4481.241129032258, "ser_ci_high_ns": 4836.713978494624, "deser_mean_ns": 5146.978494623656, "deser_median_ns": 5118.0, "deser_std_ns": 634.5744547828306, "deser_mad_ns": 433.0, "deser_cv": 0.12329067538278694, "deser_min_ns": 3930.0, "deser_max_ns": 6693.0, "deser_p5_ns": 4225.8, "deser_p25_ns": 4691.0, "deser_p50_ns": 5118.0, "deser_p75_ns": 5591.0, "deser_p95_ns": 6166.2, "deser_p99_ns": 6667.24, "deser_ci_low_ns": 5018.135752688172, "deser_ci_high_ns": 5276.554032258065, "total_mean_ns": 9795.645161290322, "total_median_ns": 9522.0, "total_std_ns": 1447.4559214221438, "total_mad_ns": 1180.0, "total_cv": 0.14776524645278996, "total_min_ns": 7226.0, "total_max_ns": 13689.0, "total_p5_ns": 7695.8, "total_p25_ns": 8661.0, "total_p50_ns": 9522.0, "total_p75_ns": 10852.0, "total_p95_ns": 12064.999999999996, "total_p99_ns": 12884.919999999998, "total_ci_low_ns": 9493.808602150539, "total_ci_high_ns": 10091.194623655914, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9968307866440295, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.688600715918833}, {"serializer": "ServiceStack Json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 9489.378947368421, "avg_time_deser_ns": 9690.61052631579, "avg_time_total_ns": 19179.98947368421, "median_size_bytes": 254.0, "avg_ops_per_sec": 52137.6719925756, "min_ops_per_sec": 31587.592393707753, "max_ops_per_sec": 79611.49590000795, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 9489.378947368421, "ser_median_ns": 8838.0, "ser_std_ns": 2606.600738138219, "ser_mad_ns": 1646.0, "ser_cv": 0.2746861256774952, "ser_min_ns": 5967.0, "ser_max_ns": 16146.0, "ser_p5_ns": 6460.9, "ser_p25_ns": 7340.5, "ser_p50_ns": 8838.0, "ser_p75_ns": 10826.5, "ser_p95_ns": 14463.9, "ser_p99_ns": 16084.9, "ser_ci_low_ns": 8992.062894736842, "ser_ci_high_ns": 10035.338421052633, "deser_mean_ns": 9690.61052631579, "deser_median_ns": 9261.0, "deser_std_ns": 2144.296518549262, "deser_mad_ns": 1581.0, "deser_cv": 0.22127568874285244, "deser_min_ns": 6506.0, "deser_max_ns": 15636.0, "deser_p5_ns": 7162.0, "deser_p25_ns": 7925.5, "deser_p50_ns": 9261.0, "deser_p75_ns": 11111.5, "deser_p95_ns": 14006.599999999999, "deser_p99_ns": 15524.14, "deser_ci_low_ns": 9276.665263157895, "deser_ci_high_ns": 10137.186315789473, "total_mean_ns": 19179.98947368421, "total_median_ns": 18135.0, "total_std_ns": 4523.4276202961655, "total_mad_ns": 3084.0, "total_cv": 0.23584098554915825, "total_min_ns": 12561.0, "total_max_ns": 31658.0, "total_p5_ns": 13926.3, "total_p25_ns": 15396.5, "total_p50_ns": 18135.0, "total_p75_ns": 21977.0, "total_p95_ns": 27710.4, "total_p99_ns": 30551.620000000003, "total_ci_low_ns": 18317.62421052632, "total_ci_high_ns": 20087.73, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.25594513159638}, {"serializer": "MS DataContract", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 9565.0, "avg_time_deser_ns": 15039.106382978724, "avg_time_total_ns": 24604.106382978724, "median_size_bytes": 549.0, "avg_ops_per_sec": 40643.62202123326, "min_ops_per_sec": 26839.873315797948, "max_ops_per_sec": 65385.118347064206, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 9565.0, "ser_median_ns": 8948.0, "ser_std_ns": 2382.55615420854, "ser_mad_ns": 1772.0, "ser_cv": 0.24909107728264926, "ser_min_ns": 5239.0, "ser_max_ns": 15739.0, "ser_p5_ns": 6518.5, "ser_p25_ns": 8069.0, "ser_p50_ns": 8948.0, "ser_p75_ns": 11225.75, "ser_p95_ns": 13900.249999999996, "ser_p99_ns": 15105.669999999995, "ser_ci_low_ns": 9059.596010638297, "ser_ci_high_ns": 10032.015957446809, "deser_mean_ns": 15039.106382978724, "deser_median_ns": 14624.0, "deser_std_ns": 2472.2859278390674, "deser_mad_ns": 1855.5, "deser_cv": 0.1643904807161417, "deser_min_ns": 9550.0, "deser_max_ns": 22373.0, "deser_p5_ns": 12227.65, "deser_p25_ns": 13112.75, "deser_p50_ns": 14624.0, "deser_p75_ns": 16987.25, "deser_p95_ns": 19335.149999999998, "deser_p99_ns": 21398.359999999993, "deser_ci_low_ns": 14563.028723404257, "deser_ci_high_ns": 15560.619680851063, "total_mean_ns": 24604.106382978724, "total_median_ns": 23638.5, "total_std_ns": 4746.291137135758, "total_mad_ns": 3494.5, "total_cv": 0.19290646298047515, "total_min_ns": 15294.0, "total_max_ns": 37258.0, "total_p5_ns": 18745.85, "total_p25_ns": 21071.25, "total_p50_ns": 23638.5, "total_p75_ns": 28196.75, "total_p95_ns": 33021.549999999996, "total_p99_ns": 35528.19999999999, "total_ci_low_ns": 23688.328457446805, "total_ci_high_ns": 25577.234308510637, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.652763462401711}, {"serializer": "MS Bond Json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 4874.538461538462, "avg_time_deser_ns": 5759.307692307692, "avg_time_total_ns": 10633.846153846154, "median_size_bytes": 254.0, "avg_ops_per_sec": 94039.35185185185, "min_ops_per_sec": 70736.36556553724, "max_ops_per_sec": 115968.92032935173, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 4874.538461538462, "ser_median_ns": 4764.0, "ser_std_ns": 763.9473121403698, "ser_mad_ns": 454.0, "ser_cv": 0.1567219785356374, "ser_min_ns": 3681.0, "ser_max_ns": 7044.0, "ser_p5_ns": 3868.5, "ser_p25_ns": 4313.5, "ser_p50_ns": 4764.0, "ser_p75_ns": 5210.0, "ser_p95_ns": 6283.5, "ser_p99_ns": 7003.5, "ser_ci_low_ns": 4717.285164835165, "ser_ci_high_ns": 5037.198351648351, "deser_mean_ns": 5759.307692307692, "deser_median_ns": 5663.0, "deser_std_ns": 640.0525793038446, "deser_mad_ns": 477.0, "deser_cv": 0.11113359686594249, "deser_min_ns": 4675.0, "deser_max_ns": 7410.0, "deser_p5_ns": 4901.0, "deser_p25_ns": 5255.5, "deser_p50_ns": 5663.0, "deser_p75_ns": 6231.0, "deser_p95_ns": 6930.5, "deser_p99_ns": 7278.599999999999, "deser_ci_low_ns": 5632.0615384615385, "deser_ci_high_ns": 5896.803021978021, "total_mean_ns": 10633.846153846154, "total_median_ns": 10472.0, "total_std_ns": 1293.5823465011756, "total_mad_ns": 930.0, "total_cv": 0.12164764543196818, "total_min_ns": 8623.0, "total_max_ns": 14137.0, "total_p5_ns": 8991.5, "total_p25_ns": 9524.5, "total_p50_ns": 10472.0, "total_p75_ns": 11366.5, "total_p95_ns": 12983.5, "total_p99_ns": 13879.599999999999, "total_ci_low_ns": 10375.72554945055, "total_ci_high_ns": 10903.08131868132, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.687577774904823}, {"serializer": "MS DataContract Json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 9908.875, "avg_time_deser_ns": 17591.572916666668, "avg_time_total_ns": 27500.447916666668, "median_size_bytes": 254.0, "avg_ops_per_sec": 36363.04408678192, "min_ops_per_sec": 25502.39722533918, "max_ops_per_sec": 53231.12956456936, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 9908.875, "ser_median_ns": 9349.5, "ser_std_ns": 2476.2031514737278, "ser_mad_ns": 1573.0, "ser_cv": 0.24989750617236847, "ser_min_ns": 5641.0, "ser_max_ns": 16416.0, "ser_p5_ns": 6967.25, "ser_p25_ns": 7855.5, "ser_p50_ns": 9349.5, "ser_p75_ns": 11638.5, "ser_p95_ns": 14842.25, "ser_p99_ns": 16149.05, "ser_ci_low_ns": 9410.034375, "ser_ci_high_ns": 10405.025781249999, "deser_mean_ns": 17591.572916666668, "deser_median_ns": 17123.5, "deser_std_ns": 2334.673901470212, "deser_mad_ns": 1522.0, "deser_cv": 0.1327154719211201, "deser_min_ns": 13145.0, "deser_max_ns": 23421.0, "deser_p5_ns": 14762.0, "deser_p25_ns": 15958.5, "deser_p50_ns": 17123.5, "deser_p75_ns": 19213.0, "deser_p95_ns": 22292.0, "deser_p99_ns": 23186.35, "deser_ci_low_ns": 17137.006510416668, "deser_ci_high_ns": 18081.198958333334, "total_mean_ns": 27500.447916666668, "total_median_ns": 26552.5, "total_std_ns": 4689.349713350549, "total_mad_ns": 2985.5, "total_cv": 0.17051903036490415, "total_min_ns": 18786.0, "total_max_ns": 39212.0, "total_p5_ns": 21822.25, "total_p25_ns": 23762.75, "total_p50_ns": 26552.5, "total_p75_ns": 30648.75, "total_p95_ns": 36955.25, "total_p99_ns": 38972.6, "total_ci_low_ns": 26540.086197916666, "total_ci_high_ns": 28409.873697916664, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.539132688464995}, {"serializer": "Apache.Avro", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "1.12.1", "avg_time_ser_ns": 7825.094594594595, "avg_time_deser_ns": 7783.878378378378, "avg_time_total_ns": 15608.972972972973, "median_size_bytes": 105.0, "avg_ops_per_sec": 64065.71410761654, "min_ops_per_sec": 39218.76225586321, "max_ops_per_sec": 158277.93605571383, "runs": 74, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 25, "ser_mean_ns": 7825.094594594595, "ser_median_ns": 7541.0, "ser_std_ns": 1808.2783014754173, "ser_mad_ns": 902.5, "ser_cv": 0.23108708522508298, "ser_min_ns": 2942.0, "ser_max_ns": 13639.0, "ser_p5_ns": 5564.3, "ser_p25_ns": 6727.25, "ser_p50_ns": 7541.0, "ser_p75_ns": 8523.25, "ser_p95_ns": 11054.099999999999, "ser_p99_ns": 12325.729999999992, "ser_ci_low_ns": 7426.2168918918915, "ser_ci_high_ns": 8238.464189189188, "deser_mean_ns": 7783.878378378378, "deser_median_ns": 7482.5, "deser_std_ns": 1763.310576865291, "deser_mad_ns": 759.5, "deser_cv": 0.22653367526441787, "deser_min_ns": 3376.0, "deser_max_ns": 16892.0, "deser_p5_ns": 6046.8, "deser_p25_ns": 6739.5, "deser_p50_ns": 7482.5, "deser_p75_ns": 8302.75, "deser_p95_ns": 10430.399999999998, "deser_p99_ns": 13217.90999999998, "deser_ci_low_ns": 7424.864864864865, "deser_ci_high_ns": 8220.17635135135, "total_mean_ns": 15608.972972972973, "total_median_ns": 15037.0, "total_std_ns": 3293.6963745127923, "total_mad_ns": 1531.5, "total_cv": 0.21101301028682967, "total_min_ns": 6318.0, "total_max_ns": 25498.0, "total_p5_ns": 11850.85, "total_p25_ns": 13566.5, "total_p50_ns": 15037.0, "total_p75_ns": 17090.25, "total_p95_ns": 21585.299999999992, "total_p99_ns": 25054.89, "total_ci_low_ns": 14866.666554054054, "total_ci_high_ns": 16347.610135135135, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.9960170697012802, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.50309470678348}, {"serializer": "MS XmlSerializer", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 11172.5, "avg_time_deser_ns": 17837.12222222222, "avg_time_total_ns": 29009.62222222222, "median_size_bytes": 666.0, "avg_ops_per_sec": 34471.32100996374, "min_ops_per_sec": 25730.091341824264, "max_ops_per_sec": 42162.071000927564, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 11172.5, "ser_median_ns": 10638.5, "ser_std_ns": 1823.765842512302, "ser_mad_ns": 1042.0, "ser_cv": 0.16323704117362292, "ser_min_ns": 8845.0, "ser_max_ns": 15878.0, "ser_p5_ns": 8992.95, "ser_p25_ns": 9787.25, "ser_p50_ns": 10638.5, "ser_p75_ns": 12279.25, "ser_p95_ns": 14749.149999999998, "ser_p99_ns": 15840.62, "ser_ci_low_ns": 10802.916944444443, "ser_ci_high_ns": 11546.836388888889, "deser_mean_ns": 17837.12222222222, "deser_median_ns": 17287.5, "deser_std_ns": 1879.0044927488298, "deser_mad_ns": 1014.0, "deser_cv": 0.10534235676245401, "deser_min_ns": 14873.0, "deser_max_ns": 23029.0, "deser_p5_ns": 15402.95, "deser_p25_ns": 16553.75, "deser_p50_ns": 17287.5, "deser_p75_ns": 18746.25, "deser_p95_ns": 21448.3, "deser_p99_ns": 22819.85, "deser_ci_low_ns": 17457.43222222222, "deser_ci_high_ns": 18219.396666666664, "total_mean_ns": 29009.62222222222, "total_median_ns": 27963.0, "total_std_ns": 3594.1553259932703, "total_mad_ns": 1980.5, "total_cv": 0.12389528200198491, "total_min_ns": 23718.0, "total_max_ns": 38865.0, "total_p5_ns": 24823.75, "total_p25_ns": 26184.5, "total_p50_ns": 27963.0, "total_p75_ns": 30932.5, "total_p95_ns": 36084.6, "total_p99_ns": 37987.46, "total_ci_low_ns": 28287.154444444444, "total_ci_high_ns": 29786.01777777778, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.094823401508126}, {"serializer": "SpanJson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "Stream", "language": "csharp", "serializer_version": "4.2.1", "avg_time_ser_ns": 3883.054347826087, "avg_time_deser_ns": 3006.9891304347825, "avg_time_total_ns": 6890.04347826087, "median_size_bytes": 254.0, "avg_ops_per_sec": 145136.96512295623, "min_ops_per_sec": 102072.06287639073, "max_ops_per_sec": 208246.56393169513, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 3883.054347826087, "ser_median_ns": 3704.0, "ser_std_ns": 827.0671254383701, "ser_mad_ns": 599.5, "ser_cv": 0.21299396077250385, "ser_min_ns": 2173.0, "ser_max_ns": 6055.0, "ser_p5_ns": 2801.65, "ser_p25_ns": 3216.25, "ser_p50_ns": 3704.0, "ser_p75_ns": 4562.25, "ser_p95_ns": 5184.150000000001, "ser_p99_ns": 5840.240000000001, "ser_ci_low_ns": 3715.225543478261, "ser_ci_high_ns": 4054.811141304348, "deser_mean_ns": 3006.9891304347825, "deser_median_ns": 2964.0, "deser_std_ns": 388.5422599829292, "deser_mad_ns": 269.0, "deser_cv": 0.12921305768961977, "deser_min_ns": 2349.0, "deser_max_ns": 4188.0, "deser_p5_ns": 2527.85, "deser_p25_ns": 2700.25, "deser_p50_ns": 2964.0, "deser_p75_ns": 3237.5, "deser_p95_ns": 3715.05, "deser_p99_ns": 4032.390000000001, "deser_ci_low_ns": 2930.8597826086957, "deser_ci_high_ns": 3091.2929347826084, "total_mean_ns": 6890.04347826087, "total_median_ns": 6611.5, "total_std_ns": 1149.262839829055, "total_mad_ns": 774.0, "total_cv": 0.1668005207013792, "total_min_ns": 4802.0, "total_max_ns": 9797.0, "total_p5_ns": 5451.5, "total_p25_ns": 6038.75, "total_p50_ns": 6611.5, "total_p75_ns": 7765.25, "total_p95_ns": 8976.0, "total_p99_ns": 9443.920000000002, "total_ci_low_ns": 6658.549456521739, "total_ci_high_ns": 7146.265217391304, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "BinaryPack", "effect_vs_fastest_cliffs_delta": 0.7366132723112128, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.5789333667124905}, {"serializer": "ServiceStack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 157271.9120879121, "avg_time_deser_ns": 191184.64835164836, "avg_time_total_ns": 348456.56043956045, "median_size_bytes": 20654.0, "avg_ops_per_sec": 2869.7981715096716, "min_ops_per_sec": 2564.858868640753, "max_ops_per_sec": 3243.383497664764, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 157271.9120879121, "ser_median_ns": 155777.0, "ser_std_ns": 9831.202793654671, "ser_mad_ns": 5649.0, "ser_cv": 0.06251086200413974, "ser_min_ns": 139602.0, "ser_max_ns": 182213.0, "ser_p5_ns": 143861.5, "ser_p25_ns": 151029.5, "ser_p50_ns": 155777.0, "ser_p75_ns": 163167.5, "ser_p95_ns": 177730.0, "ser_p99_ns": 181592.0, "ser_ci_low_ns": 155310.34120879121, "ser_ci_high_ns": 159238.08186813185, "deser_mean_ns": 191184.64835164836, "deser_median_ns": 192270.0, "deser_std_ns": 10294.677041368543, "deser_mad_ns": 6933.0, "deser_cv": 0.053846776559347026, "deser_min_ns": 164062.0, "deser_max_ns": 219700.0, "deser_p5_ns": 172892.0, "deser_p25_ns": 185029.0, "deser_p50_ns": 192270.0, "deser_p75_ns": 198386.0, "deser_p95_ns": 207163.0, "deser_p99_ns": 213921.99999999997, "deser_ci_low_ns": 189118.67197802197, "deser_ci_high_ns": 193278.8978021978, "total_mean_ns": 348456.56043956045, "total_median_ns": 346720.0, "total_std_ns": 17680.44712117428, "total_mad_ns": 12172.0, "total_cv": 0.05073931481981939, "total_min_ns": 308320.0, "total_max_ns": 389885.0, "total_p5_ns": 320824.0, "total_p25_ns": 336987.5, "total_p50_ns": 346720.0, "total_p75_ns": 360394.5, "total_p95_ns": 376272.5, "total_p99_ns": 386388.5, "total_ci_low_ns": 345008.217032967, "total_ci_high_ns": 352083.3824175824, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.27125006295756}, {"serializer": "FsPickler", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 121287.98837209302, "avg_time_deser_ns": 130772.24418604652, "avg_time_total_ns": 252060.23255813954, "median_size_bytes": 21476.0, "avg_ops_per_sec": 3967.305710429124, "min_ops_per_sec": 3467.5987572126055, "max_ops_per_sec": 4510.905113110945, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 121287.98837209302, "ser_median_ns": 119168.0, "ser_std_ns": 9919.524475668812, "ser_mad_ns": 5608.5, "ser_cv": 0.08178488743037955, "ser_min_ns": 106799.0, "ser_max_ns": 153710.0, "ser_p5_ns": 108553.75, "ser_p25_ns": 114422.5, "ser_p50_ns": 119168.0, "ser_p75_ns": 126473.25, "ser_p95_ns": 140058.75, "ser_p99_ns": 148193.50000000003, "ser_ci_low_ns": 119286.92645348837, "ser_ci_high_ns": 123377.65668604651, "deser_mean_ns": 130772.24418604652, "deser_median_ns": 130738.0, "deser_std_ns": 8794.399394181366, "deser_mad_ns": 6421.5, "deser_cv": 0.06724973979699994, "deser_min_ns": 112284.0, "deser_max_ns": 148438.0, "deser_p5_ns": 114884.75, "deser_p25_ns": 124682.75, "deser_p50_ns": 130738.0, "deser_p75_ns": 137875.25, "deser_p95_ns": 143115.0, "deser_p99_ns": 145797.05000000002, "deser_ci_low_ns": 128897.42238372093, "deser_ci_high_ns": 132583.9206395349, "total_mean_ns": 252060.23255813954, "total_median_ns": 252192.0, "total_std_ns": 14127.74025032222, "total_mad_ns": 10136.5, "total_cv": 0.056049064570562725, "total_min_ns": 221685.0, "total_max_ns": 288384.0, "total_p5_ns": 229573.75, "total_p25_ns": 241490.5, "total_p50_ns": 252192.0, "total_p75_ns": 262118.25, "total_p95_ns": 274915.0, "total_p99_ns": 280603.95000000007, "total_ci_low_ns": 249090.2793604651, "total_ci_high_ns": 254984.80872093022, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.585088017500718}, {"serializer": "Migrant", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "0.13.0.0", "avg_time_ser_ns": 72569.86956521739, "avg_time_deser_ns": 105958.72826086957, "avg_time_total_ns": 178528.59782608695, "median_size_bytes": 38240.0, "avg_ops_per_sec": 5601.343494413969, "min_ops_per_sec": 4550.915644227619, "max_ops_per_sec": 6854.996264027036, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 72569.86956521739, "ser_median_ns": 68824.0, "ser_std_ns": 10667.66628465766, "ser_mad_ns": 5783.0, "ser_cv": 0.14699855943754725, "ser_min_ns": 57932.0, "ser_max_ns": 99674.0, "ser_p5_ns": 60683.6, "ser_p25_ns": 64142.5, "ser_p50_ns": 68824.0, "ser_p75_ns": 78629.75, "ser_p95_ns": 93481.90000000001, "ser_p99_ns": 98907.78, "ser_ci_low_ns": 70454.99048913043, "ser_ci_high_ns": 74781.46304347826, "deser_mean_ns": 105958.72826086957, "deser_median_ns": 103411.5, "deser_std_ns": 11292.22167679478, "deser_mad_ns": 7096.5, "deser_cv": 0.10657188758431885, "deser_min_ns": 86013.0, "deser_max_ns": 135508.0, "deser_p5_ns": 90527.75, "deser_p25_ns": 97383.75, "deser_p50_ns": 103411.5, "deser_p75_ns": 112307.0, "deser_p95_ns": 126923.65, "deser_p99_ns": 134041.99000000002, "deser_ci_low_ns": 103577.08994565217, "deser_ci_high_ns": 108254.60733695651, "total_mean_ns": 178528.59782608695, "total_median_ns": 174569.5, "total_std_ns": 18474.701597649502, "total_mad_ns": 13138.5, "total_cv": 0.1034831496052334, "total_min_ns": 145879.0, "total_max_ns": 219736.0, "total_p5_ns": 154406.0, "total_p25_ns": 163710.25, "total_p50_ns": 174569.5, "total_p75_ns": 192169.25, "total_p95_ns": 211849.80000000002, "total_p99_ns": 219589.49, "total_ci_low_ns": 174802.2605978261, "total_ci_high_ns": 182189.8105978261, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.500997385644718}, {"serializer": "MS Bond Fast", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 52667.920454545456, "avg_time_deser_ns": 75452.09090909091, "avg_time_total_ns": 128120.01136363637, "median_size_bytes": 20068.0, "avg_ops_per_sec": 7805.181948991184, "min_ops_per_sec": 6928.854521770461, "max_ops_per_sec": 8821.220327620123, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 52667.920454545456, "ser_median_ns": 51981.0, "ser_std_ns": 2912.599388947327, "ser_mad_ns": 1743.0, "ser_cv": 0.05530120353737942, "ser_min_ns": 47469.0, "ser_max_ns": 61573.0, "ser_p5_ns": 49017.55, "ser_p25_ns": 50504.75, "ser_p50_ns": 51981.0, "ser_p75_ns": 54494.5, "ser_p95_ns": 58679.999999999985, "ser_p99_ns": 59830.38999999999, "ser_ci_low_ns": 52080.03977272727, "ser_ci_high_ns": 53288.73011363636, "deser_mean_ns": 75452.09090909091, "deser_median_ns": 75858.0, "deser_std_ns": 5501.025560886406, "deser_mad_ns": 3792.0, "deser_cv": 0.07290752972656998, "deser_min_ns": 64241.0, "deser_max_ns": 91428.0, "deser_p5_ns": 66501.5, "deser_p25_ns": 71639.25, "deser_p50_ns": 75858.0, "deser_p75_ns": 79086.75, "deser_p95_ns": 83890.9, "deser_p99_ns": 88362.11999999998, "deser_ci_low_ns": 74289.97869318182, "deser_ci_high_ns": 76587.72698863636, "total_mean_ns": 128120.01136363637, "total_median_ns": 127948.0, "total_std_ns": 7304.163466297706, "total_mad_ns": 5812.5, "total_cv": 0.05701032483962773, "total_min_ns": 113363.0, "total_max_ns": 144324.0, "total_p5_ns": 117111.15, "total_p25_ns": 122014.25, "total_p50_ns": 127948.0, "total_p75_ns": 133540.0, "total_p95_ns": 141493.84999999998, "total_p99_ns": 143412.24, "total_ci_low_ns": 126641.90227272727, "total_ci_high_ns": 129588.9215909091, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 0.9948927477017364, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.795967642251038}, {"serializer": "MS Bond Compact", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 51112.14606741573, "avg_time_deser_ns": 68791.9213483146, "avg_time_total_ns": 119904.06741573034, "median_size_bytes": 16332.0, "avg_ops_per_sec": 8340.000648458477, "min_ops_per_sec": 7392.512862972381, "max_ops_per_sec": 9936.80193966374, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 51112.14606741573, "ser_median_ns": 50474.0, "ser_std_ns": 3587.0423672338957, "ser_mad_ns": 1981.0, "ser_cv": 0.0701798426249344, "ser_min_ns": 44417.0, "ser_max_ns": 60498.0, "ser_p5_ns": 46360.6, "ser_p25_ns": 48644.0, "ser_p50_ns": 50474.0, "ser_p75_ns": 52948.0, "ser_p95_ns": 58221.6, "ser_p99_ns": 60151.28, "ser_ci_low_ns": 50397.81039325843, "ser_ci_high_ns": 51878.27471910112, "deser_mean_ns": 68791.9213483146, "deser_median_ns": 69853.0, "deser_std_ns": 5385.897572754068, "deser_mad_ns": 3617.0, "deser_cv": 0.07829258824569846, "deser_min_ns": 56219.0, "deser_max_ns": 81352.0, "deser_p5_ns": 60090.0, "deser_p25_ns": 64519.0, "deser_p50_ns": 69853.0, "deser_p75_ns": 72731.0, "deser_p95_ns": 76012.59999999999, "deser_p99_ns": 78072.24000000002, "deser_ci_low_ns": 67665.96123595505, "deser_ci_high_ns": 69865.4382022472, "total_mean_ns": 119904.06741573034, "total_median_ns": 121124.0, "total_std_ns": 7516.99342671135, "total_mad_ns": 5200.0, "total_cv": 0.06269173005323077, "total_min_ns": 100636.0, "total_max_ns": 135272.0, "total_p5_ns": 106750.8, "total_p25_ns": 114203.0, "total_p50_ns": 121124.0, "total_p75_ns": 124225.0, "total_p95_ns": 131730.6, "total_p99_ns": 133099.28, "total_ci_low_ns": 118403.2168539326, "total_ci_high_ns": 121438.38483146067, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 0.9234945082691579, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.6084299549343073}, {"serializer": "Google.Protobuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "3.35.1", "avg_time_ser_ns": 83154.18072289157, "avg_time_deser_ns": 77013.3373493976, "avg_time_total_ns": 160167.51807228915, "median_size_bytes": 16636.0, "avg_ops_per_sec": 6243.463169284208, "min_ops_per_sec": 5412.514816759311, "max_ops_per_sec": 7261.109497531223, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 83154.18072289157, "ser_median_ns": 82399.0, "ser_std_ns": 4678.512303006155, "ser_mad_ns": 2333.0, "ser_cv": 0.05626310381912288, "ser_min_ns": 73378.0, "ser_max_ns": 98492.0, "ser_p5_ns": 76687.5, "ser_p25_ns": 80452.5, "ser_p50_ns": 82399.0, "ser_p75_ns": 85129.5, "ser_p95_ns": 92504.59999999999, "ser_p99_ns": 95002.07999999997, "ser_ci_low_ns": 82188.18253012048, "ser_ci_high_ns": 84125.52680722892, "deser_mean_ns": 77013.3373493976, "deser_median_ns": 76498.0, "deser_std_ns": 6255.105487943055, "deser_mad_ns": 3954.0, "deser_cv": 0.08122106771668144, "deser_min_ns": 64342.0, "deser_max_ns": 96606.0, "deser_p5_ns": 68320.8, "deser_p25_ns": 72648.0, "deser_p50_ns": 76498.0, "deser_p75_ns": 80930.0, "deser_p95_ns": 87002.49999999999, "deser_p99_ns": 93115.25999999997, "deser_ci_low_ns": 75802.8780120482, "deser_ci_high_ns": 78390.52319277108, "total_mean_ns": 160167.51807228915, "total_median_ns": 159361.0, "total_std_ns": 9019.486372485404, "total_mad_ns": 6692.0, "total_cv": 0.056312830972473436, "total_min_ns": 137720.0, "total_max_ns": 184757.0, "total_p5_ns": 147374.3, "total_p25_ns": 152876.0, "total_p50_ns": 159361.0, "total_p75_ns": 166060.0, "total_p95_ns": 177275.79999999996, "total_p99_ns": 181007.13999999996, "total_ci_low_ns": 158242.43644578313, "total_ci_high_ns": 162001.84006024097, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.3549499442537964}, {"serializer": "CsvHelper", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "33.1.0", "avg_time_ser_ns": 1804232.5057471264, "avg_time_deser_ns": 754083.816091954, "avg_time_total_ns": 2558316.3218390807, "median_size_bytes": 11089.0, "avg_ops_per_sec": 390.8820779758526, "min_ops_per_sec": 340.0641088858072, "max_ops_per_sec": 443.2645726552745, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 1804232.5057471264, "ser_median_ns": 1796354.0, "ser_std_ns": 125351.95178032368, "ser_mad_ns": 91207.0, "ser_cv": 0.06947660646897384, "ser_min_ns": 1561970.0, "ser_max_ns": 2122999.0, "ser_p5_ns": 1632110.0, "ser_p25_ns": 1699161.5, "ser_p50_ns": 1796354.0, "ser_p75_ns": 1878123.5, "ser_p95_ns": 2015160.0, "ser_p99_ns": 2107655.74, "ser_ci_low_ns": 1777961.6551724137, "ser_ci_high_ns": 1829392.2775862068, "deser_mean_ns": 754083.816091954, "deser_median_ns": 753844.0, "deser_std_ns": 33702.11731894211, "deser_mad_ns": 20651.0, "deser_cv": 0.04469280018977682, "deser_min_ns": 680421.0, "deser_max_ns": 835464.0, "deser_p5_ns": 702544.8, "deser_p25_ns": 729660.5, "deser_p50_ns": 753844.0, "deser_p75_ns": 771192.0, "deser_p95_ns": 816988.6, "deser_p99_ns": 829769.9400000001, "deser_ci_low_ns": 747375.0563218391, "deser_ci_high_ns": 760771.8942528735, "total_mean_ns": 2558316.3218390807, "total_median_ns": 2545074.0, "total_std_ns": 148985.48642030612, "total_mad_ns": 99116.0, "total_cv": 0.05823575652021243, "total_min_ns": 2255989.0, "total_max_ns": 2940622.0, "total_p5_ns": 2334704.1, "total_p25_ns": 2447851.5, "total_p50_ns": 2545074.0, "total_p75_ns": 2648283.0, "total_p95_ns": 2820409.1, "total_p99_ns": 2908058.96, "total_ci_low_ns": 2526317.5298850574, "total_ci_high_ns": 2588714.6514367815, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.334143383643273}, {"serializer": "MemoryPack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 37922.48314606742, "avg_time_deser_ns": 63009.651685393255, "avg_time_total_ns": 100932.13483146067, "median_size_bytes": 25400.0, "avg_ops_per_sec": 9907.647367905456, "min_ops_per_sec": 8366.240546148183, "max_ops_per_sec": 11741.49915461206, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 37922.48314606742, "ser_median_ns": 37014.0, "ser_std_ns": 3336.0418711685843, "ser_mad_ns": 1532.0, "ser_cv": 0.08797002712926338, "ser_min_ns": 32011.0, "ser_max_ns": 48377.0, "ser_p5_ns": 34328.2, "ser_p25_ns": 35599.0, "ser_p50_ns": 37014.0, "ser_p75_ns": 39772.0, "ser_p95_ns": 44530.0, "ser_p99_ns": 47220.68000000001, "ser_ci_low_ns": 37237.63764044944, "ser_ci_high_ns": 38647.29606741573, "deser_mean_ns": 63009.651685393255, "deser_median_ns": 63002.0, "deser_std_ns": 4755.34510290818, "deser_mad_ns": 3289.0, "deser_cv": 0.0754701061775676, "deser_min_ns": 52322.0, "deser_max_ns": 75346.0, "deser_p5_ns": 55237.0, "deser_p25_ns": 59723.0, "deser_p50_ns": 63002.0, "deser_p75_ns": 66291.0, "deser_p95_ns": 71491.0, "deser_p99_ns": 74860.24, "deser_ci_low_ns": 62018.42471910112, "deser_ci_high_ns": 64017.49353932584, "total_mean_ns": 100932.13483146067, "total_median_ns": 99753.0, "total_std_ns": 6956.719853348813, "total_mad_ns": 4455.0, "total_cv": 0.068924727144287, "total_min_ns": 85168.0, "total_max_ns": 119528.0, "total_p5_ns": 91185.6, "total_p25_ns": 95928.0, "total_p50_ns": 99753.0, "total_p75_ns": 105939.0, "total_p95_ns": 113210.2, "total_p99_ns": 117533.04000000001, "total_ci_low_ns": 99472.43061797753, "total_ci_high_ns": 102395.03960674157, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "MS Bond Json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 74495.62195121951, "avg_time_deser_ns": 140482.42682926828, "avg_time_total_ns": 214978.0487804878, "median_size_bytes": 25456.0, "avg_ops_per_sec": 4651.637716840063, "min_ops_per_sec": 4277.2697331839145, "max_ops_per_sec": 5100.557490933759, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 74495.62195121951, "ser_median_ns": 73948.0, "ser_std_ns": 3214.544168826951, "ser_mad_ns": 2293.5, "ser_cv": 0.04315077966503679, "ser_min_ns": 67984.0, "ser_max_ns": 82449.0, "ser_p5_ns": 68895.55, "ser_p25_ns": 72451.5, "ser_p50_ns": 73948.0, "ser_p75_ns": 76876.5, "ser_p95_ns": 79521.95, "ser_p99_ns": 82277.28, "ser_ci_low_ns": 73810.13140243903, "ser_ci_high_ns": 75203.9155487805, "deser_mean_ns": 140482.42682926828, "deser_median_ns": 141415.0, "deser_std_ns": 6327.625008458258, "deser_mad_ns": 3854.0, "deser_cv": 0.04504211061322549, "deser_min_ns": 128073.0, "deser_max_ns": 157858.0, "deser_p5_ns": 129950.3, "deser_p25_ns": 135576.5, "deser_p50_ns": 141415.0, "deser_p75_ns": 144375.0, "deser_p95_ns": 149027.9, "deser_p99_ns": 154940.38, "deser_ci_low_ns": 139060.28353658537, "deser_ci_high_ns": 141789.45365853657, "total_mean_ns": 214978.0487804878, "total_median_ns": 215927.0, "total_std_ns": 8701.091607268878, "total_mad_ns": 5142.5, "total_cv": 0.04047432589805244, "total_min_ns": 196057.0, "total_max_ns": 233794.0, "total_p5_ns": 201526.15, "total_p25_ns": 209246.0, "total_p50_ns": 215927.0, "total_p75_ns": 220323.75, "total_p95_ns": 228095.9, "total_p99_ns": 231935.05, "total_ci_low_ns": 213136.70548780487, "total_ci_high_ns": 216760.95182926828, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.479521815553486}, {"serializer": "SpanJson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "4.2.1", "avg_time_ser_ns": 42348.43037974684, "avg_time_deser_ns": 60819.582278481015, "avg_time_total_ns": 103168.01265822785, "median_size_bytes": 25456.0, "avg_ops_per_sec": 9692.926850425747, "min_ops_per_sec": 8532.059212490934, "max_ops_per_sec": 10734.220695577502, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 42348.43037974684, "ser_median_ns": 41608.0, "ser_std_ns": 2860.3328373816394, "ser_mad_ns": 1735.0, "ser_cv": 0.06754283008207065, "ser_min_ns": 38018.0, "ser_max_ns": 51322.0, "ser_p5_ns": 38535.8, "ser_p25_ns": 40228.0, "ser_p50_ns": 41608.0, "ser_p75_ns": 44117.0, "ser_p95_ns": 47367.9, "ser_p99_ns": 48513.99999999999, "ser_ci_low_ns": 41713.85348101266, "ser_ci_high_ns": 42992.96329113924, "deser_mean_ns": 60819.582278481015, "deser_median_ns": 60377.0, "deser_std_ns": 3260.1250865084794, "deser_mad_ns": 2043.0, "deser_cv": 0.053603214036903477, "deser_min_ns": 54409.0, "deser_max_ns": 68890.0, "deser_p5_ns": 55030.7, "deser_p25_ns": 58531.0, "deser_p50_ns": 60377.0, "deser_p75_ns": 62993.0, "deser_p95_ns": 66079.1, "deser_p99_ns": 68353.36, "deser_ci_low_ns": 60069.600949367086, "deser_ci_high_ns": 61517.02911392405, "total_mean_ns": 103168.01265822785, "total_median_ns": 103296.0, "total_std_ns": 5214.825845836255, "total_mad_ns": 3670.0, "total_cv": 0.0505469254614004, "total_min_ns": 93160.0, "total_max_ns": 117205.0, "total_p5_ns": 95868.6, "total_p25_ns": 99162.0, "total_p50_ns": 103296.0, "total_p75_ns": 106267.0, "total_p95_ns": 112015.09999999999, "total_p99_ns": 116742.46, "total_ci_low_ns": 102046.46993670886, "total_ci_high_ns": 104339.01518987342, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 0.2319726923623951, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.35902271204034286}, {"serializer": "MS XmlSerializer", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 242147.98837209304, "avg_time_deser_ns": 331906.26744186046, "avg_time_total_ns": 574054.2558139535, "median_size_bytes": 62631.0, "avg_ops_per_sec": 1741.9956212711927, "min_ops_per_sec": 1570.5786640029653, "max_ops_per_sec": 1928.5956737741847, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 242147.98837209304, "ser_median_ns": 237873.5, "ser_std_ns": 16677.87183947583, "ser_mad_ns": 11152.5, "ser_cv": 0.06887470737046979, "ser_min_ns": 217212.0, "ser_max_ns": 290377.0, "ser_p5_ns": 219537.0, "ser_p25_ns": 229437.5, "ser_p50_ns": 237873.5, "ser_p75_ns": 252708.5, "ser_p95_ns": 271399.25, "ser_p99_ns": 289901.85, "ser_ci_low_ns": 238762.62441860465, "ser_ci_high_ns": 245628.57296511627, "deser_mean_ns": 331906.26744186046, "deser_median_ns": 333837.0, "deser_std_ns": 16618.617760476045, "deser_mad_ns": 11946.0, "deser_cv": 0.05007021376415287, "deser_min_ns": 293617.0, "deser_max_ns": 365964.0, "deser_p5_ns": 306558.5, "deser_p25_ns": 318445.25, "deser_p50_ns": 333837.0, "deser_p75_ns": 343838.0, "deser_p95_ns": 358569.75, "deser_p99_ns": 364160.3, "deser_ci_low_ns": 328398.3627906977, "deser_ci_high_ns": 335353.6409883721, "total_mean_ns": 574054.2558139535, "total_median_ns": 573064.5, "total_std_ns": 26777.63794493943, "total_mad_ns": 20023.0, "total_cv": 0.046646528048069826, "total_min_ns": 518512.0, "total_max_ns": 636708.0, "total_p5_ns": 530787.25, "total_p25_ns": 554538.75, "total_p50_ns": 573064.5, "total_p75_ns": 594538.0, "total_p95_ns": 619885.0, "total_p99_ns": 625681.8, "total_ci_low_ns": 568654.2191860465, "total_ci_high_ns": 580052.8287790697, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.263767673240924}, {"serializer": "ZeroFormatter", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.6.4", "avg_time_ser_ns": 39641.83544303798, "avg_time_deser_ns": 63458.92405063291, "avg_time_total_ns": 103100.75949367089, "median_size_bytes": 18868.0, "avg_ops_per_sec": 9699.249597296977, "min_ops_per_sec": 7537.896776041549, "max_ops_per_sec": 12117.68697591004, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 39641.83544303798, "ser_median_ns": 38962.0, "ser_std_ns": 5401.65293180252, "ser_mad_ns": 2983.0, "ser_cv": 0.13626142360547977, "ser_min_ns": 30537.0, "ser_max_ns": 55187.0, "ser_p5_ns": 32979.3, "ser_p25_ns": 36248.5, "ser_p50_ns": 38962.0, "ser_p75_ns": 42382.0, "ser_p95_ns": 50778.2, "ser_p99_ns": 54397.64, "ser_ci_low_ns": 38428.825, "ser_ci_high_ns": 40876.116139240505, "deser_mean_ns": 63458.92405063291, "deser_median_ns": 63707.0, "deser_std_ns": 5967.103447926834, "deser_mad_ns": 3629.0, "deser_cv": 0.09403095840650832, "deser_min_ns": 51369.0, "deser_max_ns": 80268.0, "deser_p5_ns": 55348.1, "deser_p25_ns": 58483.0, "deser_p50_ns": 63707.0, "deser_p75_ns": 66611.0, "deser_p95_ns": 75775.59999999999, "deser_p99_ns": 80162.7, "deser_ci_low_ns": 62173.975, "deser_ci_high_ns": 64845.37911392405, "total_mean_ns": 103100.75949367089, "total_median_ns": 103359.0, "total_std_ns": 9597.736864938246, "total_mad_ns": 5873.0, "total_cv": 0.09309084542221464, "total_min_ns": 82524.0, "total_max_ns": 132663.0, "total_p5_ns": 90817.9, "total_p25_ns": 95083.0, "total_p50_ns": 103359.0, "total_p75_ns": 108299.0, "total_p95_ns": 119509.09999999999, "total_p99_ns": 126046.26, "total_ci_low_ns": 101026.30443037975, "total_ci_high_ns": 105208.54841772153, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 0.1206087327549424, "effect_vs_fastest_cliffs_label": "negligible", "effect_vs_fastest_hedges_g": 0.26000467426679363}, {"serializer": "Json.Net", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 208409.8488372093, "avg_time_deser_ns": 284724.12790697673, "avg_time_total_ns": 493133.9767441861, "median_size_bytes": 32971.0, "avg_ops_per_sec": 2027.8464822121784, "min_ops_per_sec": 1866.6467557679384, "max_ops_per_sec": 2245.1426339115324, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 208409.8488372093, "ser_median_ns": 207885.5, "ser_std_ns": 12014.214882201188, "ser_mad_ns": 7208.5, "ser_cv": 0.05764705914443416, "ser_min_ns": 186508.0, "ser_max_ns": 231729.0, "ser_p5_ns": 188896.25, "ser_p25_ns": 201272.25, "ser_p50_ns": 207885.5, "ser_p75_ns": 216337.25, "ser_p95_ns": 228272.75, "ser_p99_ns": 231224.95, "ser_ci_low_ns": 206033.9965116279, "ser_ci_high_ns": 210891.4151162791, "deser_mean_ns": 284724.12790697673, "deser_median_ns": 286398.0, "deser_std_ns": 13704.020195717161, "deser_mad_ns": 7576.5, "deser_cv": 0.04813087073602154, "deser_min_ns": 256887.0, "deser_max_ns": 313546.0, "deser_p5_ns": 262044.0, "deser_p25_ns": 276169.5, "deser_p50_ns": 286398.0, "deser_p75_ns": 293334.25, "deser_p95_ns": 306788.0, "deser_p99_ns": 313199.2, "deser_ci_low_ns": 281984.1261627907, "deser_ci_high_ns": 287613.47819767444, "total_mean_ns": 493133.9767441861, "total_median_ns": 496496.5, "total_std_ns": 22734.11439534493, "total_mad_ns": 13344.0, "total_cv": 0.04610129390280946, "total_min_ns": 445406.0, "total_max_ns": 535720.0, "total_p5_ns": 452075.25, "total_p25_ns": 477203.0, "total_p50_ns": 496496.5, "total_p75_ns": 508305.0, "total_p95_ns": 522300.75, "total_p99_ns": 533000.85, "total_ci_low_ns": 488198.2761627907, "total_ci_high_ns": 497600.12877906975, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.397180550794186}, {"serializer": "ServiceStack Json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 166603.23333333334, "avg_time_deser_ns": 268533.3888888889, "avg_time_total_ns": 435136.6222222222, "median_size_bytes": 25456.0, "avg_ops_per_sec": 2298.1287920401805, "min_ops_per_sec": 2075.46386617409, "max_ops_per_sec": 2506.944235532425, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 166603.23333333334, "ser_median_ns": 165132.0, "ser_std_ns": 10861.911046135358, "ser_mad_ns": 6023.5, "ser_cv": 0.0651962799809729, "ser_min_ns": 148684.0, "ser_max_ns": 195539.0, "ser_p5_ns": 153122.55, "ser_p25_ns": 159164.25, "ser_p50_ns": 165132.0, "ser_p75_ns": 171111.75, "ser_p95_ns": 189484.65, "ser_p99_ns": 194843.02, "ser_ci_low_ns": 164428.03194444446, "ser_ci_high_ns": 168916.3761111111, "deser_mean_ns": 268533.3888888889, "deser_median_ns": 267893.0, "deser_std_ns": 14405.047623206297, "deser_mad_ns": 9675.5, "deser_cv": 0.0536434135166956, "deser_min_ns": 244264.0, "deser_max_ns": 306816.0, "deser_p5_ns": 249132.6, "deser_p25_ns": 256858.25, "deser_p50_ns": 267893.0, "deser_p75_ns": 276713.75, "deser_p95_ns": 299231.85, "deser_p99_ns": 304430.8, "deser_ci_low_ns": 265617.9413888889, "deser_ci_high_ns": 271512.2763888889, "total_mean_ns": 435136.6222222222, "total_median_ns": 433776.5, "total_std_ns": 21002.45836898799, "total_mad_ns": 15712.0, "total_cv": 0.048266354281396556, "total_min_ns": 398892.0, "total_max_ns": 481820.0, "total_p5_ns": 406200.75, "total_p25_ns": 418507.25, "total_p50_ns": 433776.5, "total_p75_ns": 450064.0, "total_p95_ns": 472412.9, "total_p99_ns": 481573.47, "total_ci_low_ns": 430937.83305555553, "total_ci_high_ns": 439490.8822222222, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.223769171154007}, {"serializer": "ExtendedXmlSerializer", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "3.10.0.0", "avg_time_ser_ns": 88588.125, "avg_time_deser_ns": 70153.65, "avg_time_total_ns": 158741.775, "median_size_bytes": 25813.0, "avg_ops_per_sec": 6299.538983988305, "min_ops_per_sec": 5175.849486296938, "max_ops_per_sec": 7146.277146920312, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 88588.125, "ser_median_ns": 84790.5, "ser_std_ns": 10854.364498565612, "ser_mad_ns": 4216.0, "ser_cv": 0.1225261794237728, "ser_min_ns": 75829.0, "ser_max_ns": 120969.0, "ser_p5_ns": 77867.45, "ser_p25_ns": 81743.25, "ser_p50_ns": 84790.5, "ser_p75_ns": 90250.75, "ser_p95_ns": 109449.59999999999, "ser_p99_ns": 118600.57999999999, "ser_ci_low_ns": 86302.92281250001, "ser_ci_high_ns": 90985.0734375, "deser_mean_ns": 70153.65, "deser_median_ns": 69586.0, "deser_std_ns": 4496.808933545, "deser_mad_ns": 3003.0, "deser_cv": 0.0640994293745942, "deser_min_ns": 62507.0, "deser_max_ns": 83179.0, "deser_p5_ns": 63504.1, "deser_p25_ns": 67265.5, "deser_p50_ns": 69586.0, "deser_p75_ns": 73036.25, "deser_p95_ns": 80542.95, "deser_p99_ns": 81763.31999999999, "deser_ci_low_ns": 69255.00875000001, "deser_ci_high_ns": 71088.6453125, "total_mean_ns": 158741.775, "total_median_ns": 154677.0, "total_std_ns": 13331.654350488017, "total_mad_ns": 7148.5, "total_cv": 0.08398327630195654, "total_min_ns": 139933.0, "total_max_ns": 193205.0, "total_p5_ns": 142274.85, "total_p25_ns": 149439.25, "total_p50_ns": 154677.0, "total_p75_ns": 163628.75, "total_p95_ns": 185060.59999999998, "total_p99_ns": 191711.9, "total_ci_low_ns": 155867.4571875, "total_ci_high_ns": 161628.7896875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.49766348984701}, {"serializer": "fastJson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "2.4.0.4", "avg_time_ser_ns": 169319.05063291139, "avg_time_deser_ns": 339966.87341772154, "avg_time_total_ns": 509285.9240506329, "median_size_bytes": 31872.0, "avg_ops_per_sec": 1963.533553109904, "min_ops_per_sec": 1782.7568194905239, "max_ops_per_sec": 2135.0960686476087, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 169319.05063291139, "ser_median_ns": 168163.0, "ser_std_ns": 9872.772913290544, "ser_mad_ns": 5442.0, "ser_cv": 0.05830869519044849, "ser_min_ns": 152664.0, "ser_max_ns": 197620.0, "ser_p5_ns": 156764.5, "ser_p25_ns": 162593.0, "ser_p50_ns": 168163.0, "ser_p75_ns": 173564.5, "ser_p95_ns": 188857.59999999998, "ser_p99_ns": 197385.22, "ser_ci_low_ns": 167223.83734177213, "ser_ci_high_ns": 171565.54082278482, "deser_mean_ns": 339966.87341772154, "deser_median_ns": 340239.0, "deser_std_ns": 16679.88127560826, "deser_mad_ns": 10160.0, "deser_cv": 0.049063254628086896, "deser_min_ns": 312344.0, "deser_max_ns": 385308.0, "deser_p5_ns": 314884.5, "deser_p25_ns": 329351.5, "deser_p50_ns": 340239.0, "deser_p75_ns": 348552.0, "deser_p95_ns": 372247.4, "deser_p99_ns": 384813.48, "deser_ci_low_ns": 336388.6784810127, "deser_ci_high_ns": 343600.29525316454, "total_mean_ns": 509285.9240506329, "total_median_ns": 510736.0, "total_std_ns": 23105.964919603608, "total_mad_ns": 15102.0, "total_cv": 0.04536933739662207, "total_min_ns": 468363.0, "total_max_ns": 560929.0, "total_p5_ns": 472008.6, "total_p25_ns": 491215.5, "total_p50_ns": 510736.0, "total_p75_ns": 522255.0, "total_p95_ns": 545243.1, "total_p99_ns": 559499.26, "total_ci_low_ns": 504023.3272151899, "total_ci_high_ns": 514578.31139240507, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.4458761588749}, {"serializer": "LightProto", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.3.4", "avg_time_ser_ns": 74033.1204819277, "avg_time_deser_ns": 78905.65060240965, "avg_time_total_ns": 152938.77108433735, "median_size_bytes": 16636.0, "avg_ops_per_sec": 6538.564373899375, "min_ops_per_sec": 5544.743306108644, "max_ops_per_sec": 7628.928898382667, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 74033.1204819277, "ser_median_ns": 73512.0, "ser_std_ns": 5009.156955011615, "ser_mad_ns": 3389.0, "ser_cv": 0.0676610268809945, "ser_min_ns": 65046.0, "ser_max_ns": 88288.0, "ser_p5_ns": 66988.8, "ser_p25_ns": 70665.5, "ser_p50_ns": 73512.0, "ser_p75_ns": 77038.0, "ser_p95_ns": 83571.59999999999, "ser_p99_ns": 86026.43999999997, "ser_ci_low_ns": 72978.93072289157, "ser_ci_high_ns": 75071.98584337349, "deser_mean_ns": 78905.65060240965, "deser_median_ns": 76523.0, "deser_std_ns": 11386.562413474261, "deser_mad_ns": 7820.0, "deser_cv": 0.14430604559423701, "deser_min_ns": 62229.0, "deser_max_ns": 102242.0, "deser_p5_ns": 64748.2, "deser_p25_ns": 69490.0, "deser_p50_ns": 76523.0, "deser_p75_ns": 86320.5, "deser_p95_ns": 100083.1, "deser_p99_ns": 101492.51999999999, "deser_ci_low_ns": 76539.20271084337, "deser_ci_high_ns": 81252.7828313253, "total_mean_ns": 152938.77108433735, "total_median_ns": 150640.0, "total_std_ns": 13101.980384031413, "total_mad_ns": 10590.0, "total_cv": 0.08566814216655624, "total_min_ns": 131080.0, "total_max_ns": 180351.0, "total_p5_ns": 134041.7, "total_p25_ns": 142359.5, "total_p50_ns": 150640.0, "total_p75_ns": 163101.5, "total_p95_ns": 174436.9, "total_p99_ns": 179881.96, "total_ci_low_ns": 150244.00240963858, "total_ci_high_ns": 155752.72108433733, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.985609790965599}, {"serializer": "FsPicklerJson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 197020.4, "avg_time_deser_ns": 273519.56666666665, "avg_time_total_ns": 470539.9666666667, "median_size_bytes": 41324.0, "avg_ops_per_sec": 2125.217985379775, "min_ops_per_sec": 1867.8287051651066, "max_ops_per_sec": 2448.1002741872308, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 197020.4, "ser_median_ns": 194605.0, "ser_std_ns": 13251.03454922366, "ser_mad_ns": 8138.5, "ser_cv": 0.06725717006575796, "ser_min_ns": 175004.0, "ser_max_ns": 235373.0, "ser_p5_ns": 179974.55, "ser_p25_ns": 188141.5, "ser_p50_ns": 194605.0, "ser_p75_ns": 205295.25, "ser_p95_ns": 223063.15, "ser_p99_ns": 232973.56, "ser_ci_low_ns": 194301.1577777778, "ser_ci_high_ns": 199814.2, "deser_mean_ns": 273519.56666666665, "deser_median_ns": 274852.5, "deser_std_ns": 16918.40674362384, "deser_mad_ns": 11034.5, "deser_cv": 0.06185446602524783, "deser_min_ns": 233476.0, "deser_max_ns": 319230.0, "deser_p5_ns": 246427.4, "deser_p25_ns": 262319.0, "deser_p50_ns": 274852.5, "deser_p75_ns": 284093.0, "deser_p95_ns": 295380.85, "deser_p99_ns": 316522.62, "deser_ci_low_ns": 270193.6077777778, "deser_ci_high_ns": 277007.2947222222, "total_mean_ns": 470539.9666666667, "total_median_ns": 469036.0, "total_std_ns": 23742.153474003702, "total_mad_ns": 13647.0, "total_cv": 0.050457251574599585, "total_min_ns": 408480.0, "total_max_ns": 535381.0, "total_p5_ns": 430659.2, "total_p25_ns": 455826.75, "total_p50_ns": 469036.0, "total_p75_ns": 483959.75, "total_p95_ns": 513173.95, "total_p99_ns": 528040.28, "total_ci_low_ns": 465739.93638888886, "total_ci_high_ns": 475839.40055555553, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.98808845193804}, {"serializer": "MS DataContract", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 138549.625, "avg_time_deser_ns": 369438.5, "avg_time_total_ns": 507988.125, "median_size_bytes": 55228.0, "avg_ops_per_sec": 1968.5499538005934, "min_ops_per_sec": 1731.619722455991, "max_ops_per_sec": 2230.6640463799667, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 138549.625, "ser_median_ns": 133588.5, "ser_std_ns": 13544.20027239254, "ser_mad_ns": 6827.5, "ser_cv": 0.09775703306589635, "ser_min_ns": 119068.0, "ser_max_ns": 181767.0, "ser_p5_ns": 124563.5, "ser_p25_ns": 128571.0, "ser_p50_ns": 133588.5, "ser_p75_ns": 149192.75, "ser_p95_ns": 161238.05, "ser_p99_ns": 180575.97, "ser_ci_low_ns": 135820.496875, "ser_ci_high_ns": 141235.56818181818, "deser_mean_ns": 369438.5, "deser_median_ns": 367171.0, "deser_std_ns": 23763.261205134455, "deser_mad_ns": 16325.5, "deser_cv": 0.0643226442429104, "deser_min_ns": 321832.0, "deser_max_ns": 443179.0, "deser_p5_ns": 336646.6, "deser_p25_ns": 350959.25, "deser_p50_ns": 367171.0, "deser_p75_ns": 383483.0, "deser_p95_ns": 413103.65, "deser_p99_ns": 427564.23999999993, "deser_ci_low_ns": 364723.62727272726, "deser_ci_high_ns": 374656.20284090907, "total_mean_ns": 507988.125, "total_median_ns": 511668.0, "total_std_ns": 27596.015401533365, "total_mad_ns": 18292.0, "total_cv": 0.05432413484376897, "total_min_ns": 448297.0, "total_max_ns": 577494.0, "total_p5_ns": 466657.85, "total_p25_ns": 487481.75, "total_p50_ns": 511668.0, "total_p75_ns": 526869.75, "total_p95_ns": 553739.25, "total_p99_ns": 568980.1799999999, "total_ci_low_ns": 502137.60113636364, "total_ci_high_ns": 513851.1786931818, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.191620143177065}, {"serializer": "BinaryPack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.0.3", "avg_time_ser_ns": 60772.0, "avg_time_deser_ns": 86081.28947368421, "avg_time_total_ns": 146853.2894736842, "median_size_bytes": 19536.0, "avg_ops_per_sec": 6809.517196270893, "min_ops_per_sec": 6011.999951904, "max_ops_per_sec": 7638.54409349578, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 60772.0, "ser_median_ns": 59603.5, "ser_std_ns": 4552.511831212889, "ser_mad_ns": 2331.5, "ser_cv": 0.0749113379716463, "ser_min_ns": 54017.0, "ser_max_ns": 75418.0, "ser_p5_ns": 55006.5, "ser_p25_ns": 57857.0, "ser_p50_ns": 59603.5, "ser_p75_ns": 62977.75, "ser_p95_ns": 70270.75, "ser_p99_ns": 73702.75, "ser_ci_low_ns": 59850.01184210526, "ser_ci_high_ns": 61809.93914473685, "deser_mean_ns": 86081.28947368421, "deser_median_ns": 85776.0, "deser_std_ns": 6213.8945980027465, "deser_mad_ns": 4602.0, "deser_cv": 0.072186355896799, "deser_min_ns": 71733.0, "deser_max_ns": 99828.0, "deser_p5_ns": 76517.0, "deser_p25_ns": 81660.5, "deser_p50_ns": 85776.0, "deser_p75_ns": 90540.5, "deser_p95_ns": 95339.25, "deser_p99_ns": 97908.0, "deser_ci_low_ns": 84689.6529605263, "deser_ci_high_ns": 87472.81611842105, "total_mean_ns": 146853.2894736842, "total_median_ns": 147220.5, "total_std_ns": 8227.353939658913, "total_mad_ns": 5052.5, "total_cv": 0.056024308131914446, "total_min_ns": 130915.0, "total_max_ns": 166334.0, "total_p5_ns": 133854.5, "total_p25_ns": 141138.75, "total_p50_ns": 147220.5, "total_p75_ns": 151480.75, "total_p95_ns": 160949.0, "total_p99_ns": 165277.25, "total_ci_low_ns": 144970.5384868421, "total_ci_high_ns": 148671.95592105263, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.039914304570677}, {"serializer": "SharpSerializer", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 756324.7341772151, "avg_time_deser_ns": 2832266.835443038, "avg_time_total_ns": 3588591.569620253, "median_size_bytes": 196872.0, "avg_ops_per_sec": 278.66085638322465, "min_ops_per_sec": 231.25723690615743, "max_ops_per_sec": 309.55238415698517, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 756324.7341772151, "ser_median_ns": 755428.0, "ser_std_ns": 40065.31740497965, "ser_mad_ns": 24099.0, "ser_cv": 0.05297369713627786, "ser_min_ns": 678756.0, "ser_max_ns": 907663.0, "ser_p5_ns": 693766.6, "ser_p25_ns": 731174.0, "ser_p50_ns": 755428.0, "ser_p75_ns": 778253.0, "ser_p95_ns": 814139.9, "ser_p99_ns": 855523.1199999999, "ser_ci_low_ns": 747243.3196202532, "ser_ci_high_ns": 764958.9066455696, "deser_mean_ns": 2832266.835443038, "deser_median_ns": 2793541.0, "deser_std_ns": 185475.4407926186, "deser_mad_ns": 71483.0, "deser_cv": 0.06548657014641969, "deser_min_ns": 2533842.0, "deser_max_ns": 3521004.0, "deser_p5_ns": 2585377.2, "deser_p25_ns": 2749306.5, "deser_p50_ns": 2793541.0, "deser_p75_ns": 2883702.5, "deser_p95_ns": 3180076.2, "deser_p99_ns": 3394462.26, "deser_ci_low_ns": 2792674.7291139243, "deser_ci_high_ns": 2876122.4155063294, "total_mean_ns": 3588591.569620253, "total_median_ns": 3549215.0, "total_std_ns": 211185.04483853353, "total_mad_ns": 80682.0, "total_cv": 0.05884900545003545, "total_min_ns": 3230471.0, "total_max_ns": 4324189.0, "total_p5_ns": 3280709.7, "total_p25_ns": 3490472.5, "total_p50_ns": 3549215.0, "total_p75_ns": 3657076.0, "total_p95_ns": 3990176.9, "total_p99_ns": 4201416.22, "total_ci_low_ns": 3543719.7287974684, "total_ci_high_ns": 3636382.774050633, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.9685840842516}, {"serializer": "FlatSharp", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "7.5.1", "avg_time_ser_ns": 56269.81012658228, "avg_time_deser_ns": 92864.70886075949, "avg_time_total_ns": 149134.51898734178, "median_size_bytes": 34636.0, "avg_ops_per_sec": 6705.3557203941355, "min_ops_per_sec": 5160.251613868692, "max_ops_per_sec": 8148.763832526606, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 56269.81012658228, "ser_median_ns": 55045.0, "ser_std_ns": 6560.760302399194, "ser_mad_ns": 3471.0, "ser_cv": 0.11659467639290721, "ser_min_ns": 45913.0, "ser_max_ns": 79473.0, "ser_p5_ns": 47446.3, "ser_p25_ns": 52310.0, "ser_p50_ns": 55045.0, "ser_p75_ns": 58936.5, "ser_p95_ns": 67691.19999999997, "ser_p99_ns": 75622.14, "ser_ci_low_ns": 54873.770253164555, "ser_ci_high_ns": 57684.141772151896, "deser_mean_ns": 92864.70886075949, "deser_median_ns": 90754.0, "deser_std_ns": 12031.395572174959, "deser_mad_ns": 7705.0, "deser_cv": 0.12955831897577716, "deser_min_ns": 75456.0, "deser_max_ns": 126605.0, "deser_p5_ns": 77824.0, "deser_p25_ns": 84073.0, "deser_p50_ns": 90754.0, "deser_p75_ns": 98750.0, "deser_p95_ns": 116268.29999999999, "deser_p99_ns": 123563.0, "deser_ci_low_ns": 90272.71993670886, "deser_ci_high_ns": 95561.77183544304, "total_mean_ns": 149134.51898734178, "total_median_ns": 147006.0, "total_std_ns": 14843.648071594556, "total_mad_ns": 9782.0, "total_cv": 0.09953194050838393, "total_min_ns": 122718.0, "total_max_ns": 193789.0, "total_p5_ns": 125995.9, "total_p25_ns": 137917.0, "total_p50_ns": 147006.0, "total_p75_ns": 159510.5, "total_p95_ns": 173990.4, "total_p99_ns": 183241.84, "total_ci_low_ns": 146003.06360759493, "total_ci_high_ns": 152518.60284810126, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.221736176125585}, {"serializer": "ProtoBuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "2.4.9.1", "avg_time_ser_ns": 50358.33720930233, "avg_time_deser_ns": 130199.3488372093, "avg_time_total_ns": 180557.68604651163, "median_size_bytes": 16636.0, "avg_ops_per_sec": 5538.396187368065, "min_ops_per_sec": 4607.275809959087, "max_ops_per_sec": 6488.787375415282, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 50358.33720930233, "ser_median_ns": 49789.0, "ser_std_ns": 3419.3051052222845, "ser_mad_ns": 1753.0, "ser_cv": 0.06789948387316214, "ser_min_ns": 44652.0, "ser_max_ns": 59497.0, "ser_p5_ns": 45938.0, "ser_p25_ns": 48016.0, "ser_p50_ns": 49789.0, "ser_p75_ns": 51453.0, "ser_p95_ns": 57402.75, "ser_p99_ns": 58372.450000000004, "ser_ci_low_ns": 49629.49273255814, "ser_ci_high_ns": 51076.46220930232, "deser_mean_ns": 130199.3488372093, "deser_median_ns": 129440.0, "deser_std_ns": 12473.60403767274, "deser_mad_ns": 8819.5, "deser_cv": 0.09580388956682666, "deser_min_ns": 108570.0, "deser_max_ns": 164777.0, "deser_p5_ns": 113711.25, "deser_p25_ns": 120867.75, "deser_p50_ns": 129440.0, "deser_p75_ns": 138385.75, "deser_p95_ns": 150657.0, "deser_p99_ns": 164454.0, "deser_ci_low_ns": 127786.07761627907, "deser_ci_high_ns": 132819.77122093024, "total_mean_ns": 180557.68604651163, "total_median_ns": 178385.0, "total_std_ns": 13843.76125978488, "total_mad_ns": 9099.0, "total_cv": 0.0766722345800263, "total_min_ns": 154112.0, "total_max_ns": 217048.0, "total_p5_ns": 161240.0, "total_p25_ns": 170783.75, "total_p50_ns": 178385.0, "total_p75_ns": 188490.75, "total_p95_ns": 204554.25, "total_p99_ns": 216521.0, "total_ci_low_ns": 177670.29941860467, "total_ci_high_ns": 183627.52063953487, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.274276490598635}, {"serializer": "NetJSON", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.0.0", "avg_time_ser_ns": 55642.0, "avg_time_deser_ns": 111467.2987012987, "avg_time_total_ns": 167109.2987012987, "median_size_bytes": 25456.0, "avg_ops_per_sec": 5984.107454052934, "min_ops_per_sec": 5321.639916556686, "max_ops_per_sec": 6692.275775300149, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 55642.0, "ser_median_ns": 56053.0, "ser_std_ns": 3501.8563949034683, "ser_mad_ns": 2279.0, "ser_cv": 0.06293548748972841, "ser_min_ns": 46020.0, "ser_max_ns": 64096.0, "ser_p5_ns": 49991.4, "ser_p25_ns": 53398.0, "ser_p50_ns": 56053.0, "ser_p75_ns": 57548.0, "ser_p95_ns": 61203.4, "ser_p99_ns": 62895.19999999999, "ser_ci_low_ns": 54863.2025974026, "ser_ci_high_ns": 56383.409415584414, "deser_mean_ns": 111467.2987012987, "deser_median_ns": 111953.0, "deser_std_ns": 5094.327691981323, "deser_mad_ns": 3144.0, "deser_cv": 0.045702441445474536, "deser_min_ns": 101386.0, "deser_max_ns": 125396.0, "deser_p5_ns": 103936.6, "deser_p25_ns": 107915.0, "deser_p50_ns": 111953.0, "deser_p75_ns": 114214.0, "deser_p95_ns": 120413.2, "deser_p99_ns": 125009.16, "deser_ci_low_ns": 110364.29772727273, "deser_ci_high_ns": 112564.96071428571, "total_mean_ns": 167109.2987012987, "total_median_ns": 167822.0, "total_std_ns": 6653.029327949105, "total_mad_ns": 5005.0, "total_cv": 0.03981244239341303, "total_min_ns": 149426.0, "total_max_ns": 187912.0, "total_p5_ns": 158606.2, "total_p25_ns": 161119.0, "total_p50_ns": 167822.0, "total_p75_ns": 171367.0, "total_p95_ns": 178478.8, "total_p99_ns": 181307.59999999995, "total_ci_low_ns": 165659.62857142856, "total_ci_high_ns": 168574.22532467532, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.66225821895696}, {"serializer": "YAXLib", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "4.4.0", "avg_time_ser_ns": 1102258.051948052, "avg_time_deser_ns": 1198957.974025974, "avg_time_total_ns": 2301216.025974026, "median_size_bytes": 62492.0, "avg_ops_per_sec": 434.55285758177973, "min_ops_per_sec": 387.2237835945674, "max_ops_per_sec": 485.957528283943, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 1102258.051948052, "ser_median_ns": 1096591.0, "ser_std_ns": 95737.92642017118, "ser_mad_ns": 62407.0, "ser_cv": 0.08685618240753228, "ser_min_ns": 942350.0, "ser_max_ns": 1376680.0, "ser_p5_ns": 970985.6, "ser_p25_ns": 1030690.0, "ser_p50_ns": 1096591.0, "ser_p75_ns": 1157457.0, "ser_p95_ns": 1271365.2000000002, "ser_p99_ns": 1365862.92, "ser_ci_low_ns": 1080331.2896103896, "ser_ci_high_ns": 1123101.6636363636, "deser_mean_ns": 1198957.974025974, "deser_median_ns": 1201350.0, "deser_std_ns": 53914.29241763313, "deser_mad_ns": 34508.0, "deser_cv": 0.04496762487561982, "deser_min_ns": 1073520.0, "deser_max_ns": 1333585.0, "deser_p5_ns": 1097735.8, "deser_p25_ns": 1166842.0, "deser_p50_ns": 1201350.0, "deser_p75_ns": 1235495.0, "deser_p95_ns": 1271965.0, "deser_p99_ns": 1303181.9599999997, "deser_ci_low_ns": 1187348.731818182, "deser_ci_high_ns": 1210308.388961039, "total_mean_ns": 2301216.025974026, "total_median_ns": 2303934.0, "total_std_ns": 128398.26664850824, "total_mad_ns": 91834.0, "total_cv": 0.05579583368065658, "total_min_ns": 2057793.0, "total_max_ns": 2582486.0, "total_p5_ns": 2102909.4, "total_p25_ns": 2205823.0, "total_p50_ns": 2303934.0, "total_p75_ns": 2386623.0, "total_p95_ns": 2517510.0, "total_p99_ns": 2578506.64, "total_ci_low_ns": 2272571.8659090907, "total_ci_high_ns": 2330156.375974026, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.015208980428877}, {"serializer": "Utf8Json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.3.7", "avg_time_ser_ns": 51871.985714285714, "avg_time_deser_ns": 91608.78571428571, "avg_time_total_ns": 143480.77142857143, "median_size_bytes": 25456.0, "avg_ops_per_sec": 6969.575017219829, "min_ops_per_sec": 6065.789553497231, "max_ops_per_sec": 7696.096539834995, "runs": 70, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 29, "ser_mean_ns": 51871.985714285714, "ser_median_ns": 51843.0, "ser_std_ns": 3156.9836066325374, "ser_mad_ns": 2047.5, "ser_cv": 0.06086105174421911, "ser_min_ns": 44641.0, "ser_max_ns": 60062.0, "ser_p5_ns": 47631.2, "ser_p25_ns": 49755.75, "ser_p50_ns": 51843.0, "ser_p75_ns": 53741.0, "ser_p95_ns": 57427.2, "ser_p99_ns": 59946.08, "ser_ci_low_ns": 51133.20571428571, "ser_ci_high_ns": 52579.00928571429, "deser_mean_ns": 91608.78571428571, "deser_median_ns": 90953.0, "deser_std_ns": 5136.509506458436, "deser_mad_ns": 3392.0, "deser_cv": 0.056070053395079936, "deser_min_ns": 82163.0, "deser_max_ns": 106692.0, "deser_p5_ns": 83454.25, "deser_p25_ns": 87766.0, "deser_p50_ns": 90953.0, "deser_p75_ns": 94785.25, "deser_p95_ns": 101348.34999999999, "deser_p99_ns": 105151.92, "deser_ci_low_ns": 90457.68892857143, "deser_ci_high_ns": 92808.66964285714, "total_mean_ns": 143480.77142857143, "total_median_ns": 142073.5, "total_std_ns": 7248.597677814931, "total_mad_ns": 4871.0, "total_cv": 0.050519645285176606, "total_min_ns": 129936.0, "total_max_ns": 164859.0, "total_p5_ns": 133026.1, "total_p25_ns": 138602.75, "total_p50_ns": 142073.5, "total_p75_ns": 148188.5, "total_p95_ns": 155358.35, "total_p99_ns": 160371.24000000002, "total_ci_low_ns": 141841.26357142857, "total_ci_high_ns": 145174.4689285714, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.975472318451526}, {"serializer": "Jil", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "2.17.0", "avg_time_ser_ns": 162003.18181818182, "avg_time_deser_ns": 103420.68181818182, "avg_time_total_ns": 265423.86363636365, "median_size_bytes": 25456.0, "avg_ops_per_sec": 3767.5587503692636, "min_ops_per_sec": 3397.373830029387, "max_ops_per_sec": 4137.5144295815735, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 162003.18181818182, "ser_median_ns": 160869.5, "ser_std_ns": 9375.970157980655, "ser_mad_ns": 6268.5, "ser_cv": 0.057875222281148914, "ser_min_ns": 146578.0, "ser_max_ns": 188873.0, "ser_p5_ns": 148929.3, "ser_p25_ns": 155449.75, "ser_p50_ns": 160869.5, "ser_p75_ns": 168204.5, "ser_p95_ns": 178600.94999999998, "ser_p99_ns": 186044.62999999998, "ser_ci_low_ns": 160076.24545454545, "ser_ci_high_ns": 163923.33977272725, "deser_mean_ns": 103420.68181818182, "deser_median_ns": 102497.0, "deser_std_ns": 5961.125110853808, "deser_mad_ns": 3519.5, "deser_cv": 0.05763958432737595, "deser_min_ns": 94064.0, "deser_max_ns": 119495.0, "deser_p5_ns": 95364.1, "deser_p25_ns": 99152.0, "deser_p50_ns": 102497.0, "deser_p75_ns": 106745.5, "deser_p95_ns": 114340.59999999999, "deser_p99_ns": 117838.51999999999, "deser_ci_low_ns": 102131.00255681819, "deser_ci_high_ns": 104713.59857954545, "total_mean_ns": 265423.86363636365, "total_median_ns": 266278.0, "total_std_ns": 12889.686730257634, "total_mad_ns": 10340.0, "total_cv": 0.048562652030100725, "total_min_ns": 241691.0, "total_max_ns": 294345.0, "total_p5_ns": 244458.7, "total_p25_ns": 254713.5, "total_p50_ns": 266278.0, "total_p75_ns": 275461.25, "total_p95_ns": 285138.7, "total_p99_ns": 287477.22, "total_ci_low_ns": 262799.29971590906, "total_ci_high_ns": 267957.29886363633, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.838684468215812}, {"serializer": "Json.Net (Helper)", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 209726.45454545456, "avg_time_deser_ns": 281677.82954545453, "avg_time_total_ns": 491404.2840909091, "median_size_bytes": 31360.0, "avg_ops_per_sec": 2034.9842937368478, "min_ops_per_sec": 1832.5019882646573, "max_ops_per_sec": 2271.9940382876434, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 209726.45454545456, "ser_median_ns": 208042.5, "ser_std_ns": 13715.503301938881, "ser_mad_ns": 10113.5, "ser_cv": 0.06539710658660033, "ser_min_ns": 185331.0, "ser_max_ns": 240548.0, "ser_p5_ns": 188284.35, "ser_p25_ns": 200594.75, "ser_p50_ns": 208042.5, "ser_p75_ns": 223202.5, "ser_p95_ns": 232039.05, "ser_p99_ns": 234927.79999999996, "ser_ci_low_ns": 206995.5153409091, "ser_ci_high_ns": 212436.46335227272, "deser_mean_ns": 281677.82954545453, "deser_median_ns": 282648.0, "deser_std_ns": 14550.470448784678, "deser_mad_ns": 9262.5, "deser_cv": 0.05165642774323018, "deser_min_ns": 253792.0, "deser_max_ns": 314371.0, "deser_p5_ns": 258085.05, "deser_p25_ns": 271050.25, "deser_p50_ns": 282648.0, "deser_p75_ns": 289005.5, "deser_p95_ns": 307119.69999999995, "deser_p99_ns": 314045.62, "deser_ci_low_ns": 278555.43835227273, "deser_ci_high_ns": 284676.92812500003, "total_mean_ns": 491404.2840909091, "total_median_ns": 488663.0, "total_std_ns": 23767.479258383188, "total_mad_ns": 16826.5, "total_cv": 0.04836644699252609, "total_min_ns": 440142.0, "total_max_ns": 545702.0, "total_p5_ns": 454822.5, "total_p25_ns": 474534.0, "total_p50_ns": 488663.0, "total_p75_ns": 512597.5, "total_p95_ns": 531043.75, "total_p99_ns": 541381.58, "total_ci_low_ns": 486389.465625, "total_ci_high_ns": 496289.1880681818, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.256253458222723}, {"serializer": "YamlDotNet", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "17.1.0", "avg_time_ser_ns": 3800336.2808988765, "avg_time_deser_ns": 3124176.9325842694, "avg_time_total_ns": 6924513.213483146, "median_size_bytes": 24952.0, "avg_ops_per_sec": 144.41448361349623, "min_ops_per_sec": 132.48862121476697, "max_ops_per_sec": 166.91567703752716, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 3800336.2808988765, "ser_median_ns": 3767515.0, "ser_std_ns": 273736.7784568445, "ser_mad_ns": 116908.0, "ser_cv": 0.07202962007143715, "ser_min_ns": 3323030.0, "ser_max_ns": 4531369.0, "ser_p5_ns": 3427830.0, "ser_p25_ns": 3650881.0, "ser_p50_ns": 3767515.0, "ser_p75_ns": 3893322.0, "ser_p95_ns": 4399026.8, "ser_p99_ns": 4460738.44, "ser_ci_low_ns": 3746770.257303371, "ser_ci_high_ns": 3860766.4887640453, "deser_mean_ns": 3124176.9325842694, "deser_median_ns": 3034682.0, "deser_std_ns": 250307.43300179872, "deser_mad_ns": 106861.0, "deser_cv": 0.08011948055539492, "deser_min_ns": 2661485.0, "deser_max_ns": 3746435.0, "deser_p5_ns": 2816056.0, "deser_p25_ns": 2968028.0, "deser_p50_ns": 3034682.0, "deser_p75_ns": 3306961.0, "deser_p95_ns": 3568232.0, "deser_p99_ns": 3691201.8000000003, "deser_ci_low_ns": 3073849.662921348, "deser_ci_high_ns": 3174166.2969101123, "total_mean_ns": 6924513.213483146, "total_median_ns": 6959436.0, "total_std_ns": 358145.6947972517, "total_mad_ns": 267770.0, "total_cv": 0.05172142557254193, "total_min_ns": 5991049.0, "total_max_ns": 7547818.0, "total_p5_ns": 6282504.8, "total_p25_ns": 6678796.0, "total_p50_ns": 6959436.0, "total_p75_ns": 7198904.0, "total_p95_ns": 7462504.2, "total_p99_ns": 7546146.88, "total_ci_low_ns": 6849648.7193820225, "total_ci_high_ns": 7000352.361235956, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.824301350257418}, {"serializer": "Apache.Avro", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.12.1", "avg_time_ser_ns": 294949.623655914, "avg_time_deser_ns": 263415.27956989245, "avg_time_total_ns": 558364.9032258064, "median_size_bytes": 13932.0, "avg_ops_per_sec": 1790.9435106375113, "min_ops_per_sec": 1437.6388219987493, "max_ops_per_sec": 2190.7196733198825, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 294949.623655914, "ser_median_ns": 282889.0, "ser_std_ns": 45874.79813719691, "ser_mad_ns": 32418.0, "ser_cv": 0.15553435047170666, "ser_min_ns": 216261.0, "ser_max_ns": 398554.0, "ser_p5_ns": 235561.2, "ser_p25_ns": 258588.0, "ser_p50_ns": 282889.0, "ser_p75_ns": 334172.0, "ser_p95_ns": 380103.5999999999, "ser_p99_ns": 395419.56, "ser_ci_low_ns": 285447.42795698927, "ser_ci_high_ns": 304393.0916666667, "deser_mean_ns": 263415.27956989245, "deser_median_ns": 260732.0, "deser_std_ns": 17930.82266800455, "deser_mad_ns": 12596.0, "deser_cv": 0.06807054889633665, "deser_min_ns": 225837.0, "deser_max_ns": 316387.0, "deser_p5_ns": 237420.2, "deser_p25_ns": 250567.0, "deser_p50_ns": 260732.0, "deser_p75_ns": 276887.0, "deser_p95_ns": 293321.6, "deser_p99_ns": 304063.6, "deser_ci_low_ns": 259888.37741935486, "deser_ci_high_ns": 267157.10994623654, "total_mean_ns": 558364.9032258064, "total_median_ns": 547360.0, "total_std_ns": 54113.97346825625, "total_mad_ns": 37228.0, "total_cv": 0.09691506961778398, "total_min_ns": 456471.0, "total_max_ns": 695585.0, "total_p5_ns": 486414.0, "total_p25_ns": 521521.0, "total_p50_ns": 547360.0, "total_p75_ns": 605997.0, "total_p95_ns": 659918.6, "total_p99_ns": 681885.28, "total_ci_low_ns": 547347.4518817205, "total_ci_high_ns": 569367.8241935484, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.682571327547105}, {"serializer": "MS Binary", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 411514.0481927711, "avg_time_deser_ns": 485269.0, "avg_time_total_ns": 896783.048192771, "median_size_bytes": 44664.0, "avg_ops_per_sec": 1115.0969033315644, "min_ops_per_sec": 992.5144559730512, "max_ops_per_sec": 1251.7258169701477, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 411514.0481927711, "ser_median_ns": 407822.0, "ser_std_ns": 21209.674807998916, "ser_mad_ns": 12839.0, "ser_cv": 0.05154058506907492, "ser_min_ns": 371228.0, "ser_max_ns": 458514.0, "ser_p5_ns": 377835.3, "ser_p25_ns": 400535.5, "ser_p50_ns": 407822.0, "ser_p75_ns": 426275.0, "ser_p95_ns": 452360.3, "ser_p99_ns": 457177.39999999997, "ser_ci_low_ns": 406970.35180722893, "ser_ci_high_ns": 416034.23765060236, "deser_mean_ns": 485269.0, "deser_median_ns": 485048.0, "deser_std_ns": 27770.973141384733, "deser_mad_ns": 15812.0, "deser_cv": 0.05722799754648398, "deser_min_ns": 423992.0, "deser_max_ns": 553089.0, "deser_p5_ns": 440944.3, "deser_p25_ns": 470970.0, "deser_p50_ns": 485048.0, "deser_p75_ns": 501412.0, "deser_p95_ns": 531955.3, "deser_p99_ns": 545394.1199999999, "deser_ci_low_ns": 479170.1969879518, "deser_ci_high_ns": 491135.2608433735, "total_mean_ns": 896783.048192771, "total_median_ns": 896163.0, "total_std_ns": 42368.990270699454, "total_mad_ns": 31263.0, "total_cv": 0.04724552984814214, "total_min_ns": 798897.0, "total_max_ns": 1007542.0, "total_p5_ns": 825914.0, "total_p25_ns": 871280.5, "total_p50_ns": 896163.0, "total_p75_ns": 929106.5, "total_p95_ns": 964600.1, "total_p99_ns": 979491.4399999997, "total_ci_low_ns": 887685.2379518072, "total_ci_high_ns": 906080.9240963855, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.54511918092136}, {"serializer": "GroBuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "1.9.2", "avg_time_ser_ns": 37680.833333333336, "avg_time_deser_ns": 90624.13095238095, "avg_time_total_ns": 128304.96428571429, "median_size_bytes": 49752.0, "avg_ops_per_sec": 7793.93069915177, "min_ops_per_sec": 6542.747037771279, "max_ops_per_sec": 9064.293030465089, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 37680.833333333336, "ser_median_ns": 36684.0, "ser_std_ns": 3789.716147406247, "ser_mad_ns": 1763.0, "ser_cv": 0.10057410657247265, "ser_min_ns": 31763.0, "ser_max_ns": 49502.0, "ser_p5_ns": 33455.3, "ser_p25_ns": 35066.25, "ser_p50_ns": 36684.0, "ser_p75_ns": 38988.25, "ser_p95_ns": 44027.299999999996, "ser_p99_ns": 49365.05, "ser_ci_low_ns": 36915.82291666667, "ser_ci_high_ns": 38512.965476190475, "deser_mean_ns": 90624.13095238095, "deser_median_ns": 90450.0, "deser_std_ns": 9256.220937449896, "deser_mad_ns": 6068.5, "deser_cv": 0.10213858980135919, "deser_min_ns": 76056.0, "deser_max_ns": 114560.0, "deser_p5_ns": 78438.25, "deser_p25_ns": 83954.0, "deser_p50_ns": 90450.0, "deser_p75_ns": 95224.75, "deser_p95_ns": 108680.05, "deser_p99_ns": 114008.05, "deser_ci_low_ns": 88709.7386904762, "deser_ci_high_ns": 92668.82767857143, "total_mean_ns": 128304.96428571429, "total_median_ns": 128332.5, "total_std_ns": 10232.994977206252, "total_mad_ns": 6198.5, "total_cv": 0.07975525369711367, "total_min_ns": 110323.0, "total_max_ns": 152841.0, "total_p5_ns": 112076.8, "total_p25_ns": 120377.5, "total_p50_ns": 128332.5, "total_p75_ns": 133114.25, "total_p95_ns": 146216.94999999998, "total_p99_ns": 152459.2, "total_ci_low_ns": 126245.86875000001, "total_ci_high_ns": 130524.3488095238, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 0.9826110219368647, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.131619870613866}, {"serializer": "NetSerializer", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "4.1.2", "avg_time_ser_ns": 59778.32432432433, "avg_time_deser_ns": 100565.8918918919, "avg_time_total_ns": 160344.2162162162, "median_size_bytes": 16336.0, "avg_ops_per_sec": 6236.582918909589, "min_ops_per_sec": 5397.20748484734, "max_ops_per_sec": 7291.871750559651, "runs": 74, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 25, "ser_mean_ns": 59778.32432432433, "ser_median_ns": 59005.5, "ser_std_ns": 4150.997757952117, "ser_mad_ns": 2544.0, "ser_cv": 0.0694398480531352, "ser_min_ns": 52238.0, "ser_max_ns": 75957.0, "ser_p5_ns": 54763.55, "ser_p25_ns": 57171.25, "ser_p50_ns": 59005.5, "ser_p75_ns": 62148.0, "ser_p95_ns": 66291.04999999999, "ser_p99_ns": 72781.49999999999, "ser_ci_low_ns": 58882.1527027027, "ser_ci_high_ns": 60755.46216216216, "deser_mean_ns": 100565.8918918919, "deser_median_ns": 100830.5, "deser_std_ns": 7736.353965084847, "deser_mad_ns": 5258.5, "deser_cv": 0.07692820915267584, "deser_min_ns": 84051.0, "deser_max_ns": 120466.0, "deser_p5_ns": 88139.2, "deser_p25_ns": 95210.0, "deser_p50_ns": 100830.5, "deser_p75_ns": 105915.75, "deser_p95_ns": 111784.15, "deser_p99_ns": 117866.46999999999, "deser_ci_low_ns": 98758.97094594594, "deser_ci_high_ns": 102281.94898648649, "total_mean_ns": 160344.2162162162, "total_median_ns": 160756.0, "total_std_ns": 9854.678694497768, "total_mad_ns": 6396.5, "total_cv": 0.06145952081744703, "total_min_ns": 137139.0, "total_max_ns": 185281.0, "total_p5_ns": 144005.9, "total_p25_ns": 152552.75, "total_p50_ns": 160756.0, "total_p75_ns": 166651.5, "total_p95_ns": 174874.6, "total_p99_ns": 182282.88999999998, "total_ci_low_ns": 158138.9023648649, "total_ci_high_ns": 162561.1293918919, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.043571139187803}, {"serializer": "Ceras", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "4.1.7", "avg_time_ser_ns": 68093.31764705882, "avg_time_deser_ns": 133501.55294117646, "avg_time_total_ns": 201594.8705882353, "median_size_bytes": 14928.0, "avg_ops_per_sec": 4960.443671419277, "min_ops_per_sec": 4259.723884697793, "max_ops_per_sec": 5633.485437440144, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 68093.31764705882, "ser_median_ns": 67493.0, "ser_std_ns": 3804.8463338339484, "ser_mad_ns": 2140.0, "ser_cv": 0.05587694160468465, "ser_min_ns": 60402.0, "ser_max_ns": 79355.0, "ser_p5_ns": 62887.4, "ser_p25_ns": 65666.0, "ser_p50_ns": 67493.0, "ser_p75_ns": 70050.0, "ser_p95_ns": 75266.8, "ser_p99_ns": 76981.99999999999, "ser_ci_low_ns": 67343.16382352941, "ser_ci_high_ns": 68919.0405882353, "deser_mean_ns": 133501.55294117646, "deser_median_ns": 132119.0, "deser_std_ns": 10598.98235625644, "deser_mad_ns": 7658.0, "deser_cv": 0.07939220273285189, "deser_min_ns": 113775.0, "deser_max_ns": 160302.0, "deser_p5_ns": 118989.6, "deser_p25_ns": 125707.0, "deser_p50_ns": 132119.0, "deser_p75_ns": 140417.0, "deser_p95_ns": 155034.0, "deser_p99_ns": 158324.63999999998, "deser_ci_low_ns": 131245.92029411765, "deser_ci_high_ns": 135836.73764705882, "total_mean_ns": 201594.8705882353, "total_median_ns": 199736.0, "total_std_ns": 13143.274710436726, "total_mad_ns": 8909.0, "total_cv": 0.0651964738591109, "total_min_ns": 177510.0, "total_max_ns": 234757.0, "total_p5_ns": 182788.4, "total_p25_ns": 192015.0, "total_p50_ns": 199736.0, "total_p75_ns": 209237.0, "total_p95_ns": 225037.19999999998, "total_p99_ns": 233605.36, "total_ci_low_ns": 198713.875, "total_ci_high_ns": 204460.5188235294, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.594143215612535}, {"serializer": "Hyperion", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "0.12.2", "avg_time_ser_ns": 95853.83908045977, "avg_time_deser_ns": 120793.72413793103, "avg_time_total_ns": 216647.5632183908, "median_size_bytes": 17528.0, "avg_ops_per_sec": 4615.791588627071, "min_ops_per_sec": 3940.7469291729553, "max_ops_per_sec": 5330.831396464592, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 95853.83908045977, "ser_median_ns": 92853.0, "ser_std_ns": 9356.7743570716, "ser_mad_ns": 4017.0, "ser_cv": 0.09761501935480661, "ser_min_ns": 81615.0, "ser_max_ns": 121553.0, "ser_p5_ns": 85899.1, "ser_p25_ns": 89383.0, "ser_p50_ns": 92853.0, "ser_p75_ns": 99481.5, "ser_p95_ns": 116203.40000000001, "ser_p99_ns": 120030.8, "ser_ci_low_ns": 93906.06896551725, "ser_ci_high_ns": 97855.68879310344, "deser_mean_ns": 120793.72413793103, "deser_median_ns": 120533.0, "deser_std_ns": 9404.625430135682, "deser_mad_ns": 5716.0, "deser_cv": 0.0778569043818601, "deser_min_ns": 100944.0, "deser_max_ns": 144631.0, "deser_p5_ns": 105996.4, "deser_p25_ns": 115680.5, "deser_p50_ns": 120533.0, "deser_p75_ns": 126569.5, "deser_p95_ns": 136039.3, "deser_p99_ns": 140058.38, "deser_ci_low_ns": 118816.42931034483, "deser_ci_high_ns": 122794.50804597701, "total_mean_ns": 216647.5632183908, "total_median_ns": 217969.0, "total_std_ns": 14357.76025538766, "total_mad_ns": 9219.0, "total_cv": 0.06627242901834243, "total_min_ns": 187588.0, "total_max_ns": 253759.0, "total_p5_ns": 193905.7, "total_p25_ns": 206210.0, "total_p50_ns": 217969.0, "total_p75_ns": 226264.5, "total_p95_ns": 238864.8, "total_p99_ns": 246768.92, "total_ci_low_ns": 213575.80890804596, "total_ci_high_ns": 219573.7566091954, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.24945699917294}, {"serializer": "System.Text.Json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "8.0.0.0", "avg_time_ser_ns": 100992.96739130435, "avg_time_deser_ns": 184010.1739130435, "avg_time_total_ns": 285003.14130434784, "median_size_bytes": 33944.0, "avg_ops_per_sec": 3508.7332561437443, "min_ops_per_sec": 3024.830836335478, "max_ops_per_sec": 3992.7810518582405, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 100992.96739130435, "ser_median_ns": 97981.5, "ser_std_ns": 10697.88975026454, "ser_mad_ns": 6305.5, "ser_cv": 0.10592707617763931, "ser_min_ns": 84098.0, "ser_max_ns": 130328.0, "ser_p5_ns": 87000.8, "ser_p25_ns": 92925.75, "ser_p50_ns": 97981.5, "ser_p75_ns": 108421.5, "ser_p95_ns": 120956.90000000001, "ser_p99_ns": 127207.61000000002, "ser_ci_low_ns": 98960.18097826088, "ser_ci_high_ns": 103162.51114130435, "deser_mean_ns": 184010.1739130435, "deser_median_ns": 183220.0, "deser_std_ns": 12989.859208441643, "deser_mad_ns": 9599.0, "deser_cv": 0.07059315760757977, "deser_min_ns": 150627.0, "deser_max_ns": 215836.0, "deser_p5_ns": 164991.45, "deser_p25_ns": 174053.25, "deser_p50_ns": 183220.0, "deser_p75_ns": 193236.25, "deser_p95_ns": 205950.3, "deser_p99_ns": 211589.94, "deser_ci_low_ns": 181404.31494565218, "deser_ci_high_ns": 186728.38641304345, "total_mean_ns": 285003.14130434784, "total_median_ns": 283797.5, "total_std_ns": 17197.432753451427, "total_mad_ns": 10944.5, "total_cv": 0.0603412042223307, "total_min_ns": 250452.0, "total_max_ns": 330597.0, "total_p5_ns": 259457.55, "total_p25_ns": 273268.5, "total_p50_ns": 283797.5, "total_p75_ns": 295167.5, "total_p95_ns": 316148.2, "total_p99_ns": 323526.30000000005, "total_ci_low_ns": 281477.6421195652, "total_ci_high_ns": 288193.402173913, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.889985565016843}, {"serializer": "SharpYaml", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": "3.13.0", "avg_time_ser_ns": 272606.7261904762, "avg_time_deser_ns": 1174987.869047619, "avg_time_total_ns": 1447594.5952380951, "median_size_bytes": 29152.0, "avg_ops_per_sec": 690.801142315348, "min_ops_per_sec": 618.8379213976825, "max_ops_per_sec": 763.727816570908, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 272606.7261904762, "ser_median_ns": 272866.5, "ser_std_ns": 13324.393929887538, "ser_mad_ns": 8496.5, "ser_cv": 0.04887771522034088, "ser_min_ns": 244317.0, "ser_max_ns": 307159.0, "ser_p5_ns": 254544.6, "ser_p25_ns": 263522.25, "ser_p50_ns": 272866.5, "ser_p75_ns": 278942.0, "ser_p95_ns": 298785.3, "ser_p99_ns": 304800.14, "ser_ci_low_ns": 269855.0300595238, "ser_ci_high_ns": 275313.45625, "deser_mean_ns": 1174987.869047619, "deser_median_ns": 1175421.5, "deser_std_ns": 58088.40840441876, "deser_mad_ns": 40453.5, "deser_cv": 0.04943745372580064, "deser_min_ns": 1054457.0, "deser_max_ns": 1348098.0, "deser_p5_ns": 1085898.75, "deser_p25_ns": 1134916.75, "deser_p50_ns": 1175421.5, "deser_p75_ns": 1213616.0, "deser_p95_ns": 1261238.85, "deser_p99_ns": 1314264.71, "deser_ci_low_ns": 1162444.1988095236, "deser_ci_high_ns": 1187029.7711309525, "total_mean_ns": 1447594.5952380951, "total_median_ns": 1450096.0, "total_std_ns": 64306.19683345915, "total_mad_ns": 43584.0, "total_cv": 0.0444227942305092, "total_min_ns": 1309367.0, "total_max_ns": 1615932.0, "total_p5_ns": 1353686.85, "total_p25_ns": 1403614.25, "total_p50_ns": 1450096.0, "total_p75_ns": 1491620.5, "total_p95_ns": 1537047.75, "total_p99_ns": 1598164.19, "total_ci_low_ns": 1433754.8038690477, "total_ci_high_ns": 1460910.0952380954, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.74235304537615}, {"serializer": "MS DataContract Json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "string", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 152682.414893617, "avg_time_deser_ns": 530550.0957446808, "avg_time_total_ns": 683232.5106382979, "median_size_bytes": 33944.0, "avg_ops_per_sec": 1463.6305861174078, "min_ops_per_sec": 1308.6846933620895, "max_ops_per_sec": 1635.5717222733792, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 152682.414893617, "ser_median_ns": 149514.5, "ser_std_ns": 12313.879243776651, "ser_mad_ns": 9957.0, "ser_cv": 0.08065027824164603, "ser_min_ns": 133715.0, "ser_max_ns": 182083.0, "ser_p5_ns": 136156.05, "ser_p25_ns": 141967.25, "ser_p50_ns": 149514.5, "ser_p75_ns": 163415.0, "ser_p95_ns": 173313.45, "ser_p99_ns": 176358.84999999995, "ser_ci_low_ns": 150217.5180851064, "ser_ci_high_ns": 155186.72819148935, "deser_mean_ns": 530550.0957446808, "deser_median_ns": 528256.5, "deser_std_ns": 24649.52572383674, "deser_mad_ns": 17351.5, "deser_cv": 0.04646031717181887, "deser_min_ns": 476088.0, "deser_max_ns": 597222.0, "deser_p5_ns": 494575.7, "deser_p25_ns": 512868.75, "deser_p50_ns": 528256.5, "deser_p75_ns": 546313.5, "deser_p95_ns": 574178.25, "deser_p99_ns": 585387.7499999999, "deser_ci_low_ns": 525796.3042553192, "deser_ci_high_ns": 535824.4609042553, "total_mean_ns": 683232.5106382979, "total_median_ns": 681734.0, "total_std_ns": 29810.849083341756, "total_mad_ns": 21879.0, "total_cv": 0.04363207051650909, "total_min_ns": 611407.0, "total_max_ns": 764126.0, "total_p5_ns": 640399.0, "total_p25_ns": 660728.25, "total_p50_ns": 681734.0, "total_p75_ns": 704710.75, "total_p95_ns": 727819.4, "total_p99_ns": 758159.12, "total_ci_low_ns": 677282.7353723404, "total_ci_high_ns": 689105.9542553191, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.463903544569373}, {"serializer": "MS Binary", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 387153.8470588235, "avg_time_deser_ns": 428170.3294117647, "avg_time_total_ns": 815324.1764705882, "median_size_bytes": 33498.0, "avg_ops_per_sec": 1226.506006885316, "min_ops_per_sec": 1103.199941751043, "max_ops_per_sec": 1347.994117353672, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 387153.8470588235, "ser_median_ns": 385773.0, "ser_std_ns": 19943.167655989408, "ser_mad_ns": 13134.0, "ser_cv": 0.05151225490201387, "ser_min_ns": 348258.0, "ser_max_ns": 445178.0, "ser_p5_ns": 353704.8, "ser_p25_ns": 372847.0, "ser_p50_ns": 385773.0, "ser_p75_ns": 399000.0, "ser_p95_ns": 423755.39999999997, "ser_p99_ns": 437649.07999999996, "ser_ci_low_ns": 383006.7885294117, "ser_ci_high_ns": 391086.2629411765, "deser_mean_ns": 428170.3294117647, "deser_median_ns": 426716.0, "deser_std_ns": 22198.996319218404, "deser_mad_ns": 13656.0, "deser_cv": 0.051846180817143865, "deser_min_ns": 387760.0, "deser_max_ns": 469670.0, "deser_p5_ns": 391861.6, "deser_p25_ns": 415077.0, "deser_p50_ns": 426716.0, "deser_p75_ns": 441068.0, "deser_p95_ns": 465085.39999999997, "deser_p99_ns": 469082.84, "deser_ci_low_ns": 423578.7641176471, "deser_ci_high_ns": 432780.22764705884, "total_mean_ns": 815324.1764705882, "total_median_ns": 819417.0, "total_std_ns": 34402.666815641074, "total_mad_ns": 23760.0, "total_cv": 0.04219507750225791, "total_min_ns": 741843.0, "total_max_ns": 906454.0, "total_p5_ns": 752765.8, "total_p25_ns": 793809.0, "total_p50_ns": 819417.0, "total_p75_ns": 838545.0, "total_p95_ns": 874990.2, "total_p99_ns": 891148.36, "total_ci_low_ns": 808010.8779411764, "total_ci_high_ns": 822813.8476470588, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.977192792400817}, {"serializer": "FsPickler", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 173705.7032967033, "avg_time_deser_ns": 103373.30769230769, "avg_time_total_ns": 277079.010989011, "median_size_bytes": 16107.0, "avg_ops_per_sec": 3609.0788559933912, "min_ops_per_sec": 3236.361164960565, "max_ops_per_sec": 4143.5319466313085, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 173705.7032967033, "ser_median_ns": 173319.0, "ser_std_ns": 10549.804299916874, "ser_mad_ns": 7958.0, "ser_cv": 0.06073378190638313, "ser_min_ns": 148938.0, "ser_max_ns": 196846.0, "ser_p5_ns": 156685.0, "ser_p25_ns": 166829.0, "ser_p50_ns": 173319.0, "ser_p75_ns": 181829.5, "ser_p95_ns": 190460.0, "ser_p99_ns": 196070.19999999998, "ser_ci_low_ns": 171536.57362637363, "ser_ci_high_ns": 175852.8456043956, "deser_mean_ns": 103373.30769230769, "deser_median_ns": 103391.0, "deser_std_ns": 5806.147232205818, "deser_mad_ns": 4368.0, "deser_cv": 0.05616679355455964, "deser_min_ns": 92402.0, "deser_max_ns": 122586.0, "deser_p5_ns": 95535.5, "deser_p25_ns": 98636.0, "deser_p50_ns": 103391.0, "deser_p75_ns": 106849.5, "deser_p95_ns": 112935.5, "deser_p99_ns": 115986.29999999996, "deser_ci_low_ns": 102192.08708791209, "deser_ci_high_ns": 104590.32142857142, "total_mean_ns": 277079.010989011, "total_median_ns": 277229.0, "total_std_ns": 14390.070070476073, "total_mad_ns": 10819.0, "total_cv": 0.05193489762761853, "total_min_ns": 241340.0, "total_max_ns": 308989.0, "total_p5_ns": 253178.5, "total_p25_ns": 267474.5, "total_p50_ns": 277229.0, "total_p75_ns": 288570.0, "total_p95_ns": 299446.0, "total_p99_ns": 305257.6, "total_ci_low_ns": 274055.4884615385, "total_ci_high_ns": 279821.8686813187, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.768765635472207}, {"serializer": "ExtendedXmlSerializer", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "3.10.0.0", "avg_time_ser_ns": 92517.4588235294, "avg_time_deser_ns": 80399.42352941177, "avg_time_total_ns": 172916.88235294117, "median_size_bytes": 25816.0, "avg_ops_per_sec": 5783.125316583588, "min_ops_per_sec": 4772.927952652554, "max_ops_per_sec": 6472.4500165047475, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 92517.4588235294, "ser_median_ns": 89696.0, "ser_std_ns": 10249.990821776311, "ser_mad_ns": 3631.0, "ser_cv": 0.11078980067240556, "ser_min_ns": 80639.0, "ser_max_ns": 125435.0, "ser_p5_ns": 82521.2, "ser_p25_ns": 85637.0, "ser_p50_ns": 89696.0, "ser_p75_ns": 92885.0, "ser_p95_ns": 113843.8, "ser_p99_ns": 119407.15999999997, "ser_ci_low_ns": 90425.50294117647, "ser_ci_high_ns": 94798.49911764706, "deser_mean_ns": 80399.42352941177, "deser_median_ns": 80424.0, "deser_std_ns": 5287.318846106423, "deser_mad_ns": 3380.0, "deser_cv": 0.06576314373911167, "deser_min_ns": 71827.0, "deser_max_ns": 97719.0, "deser_p5_ns": 72339.8, "deser_p25_ns": 76526.0, "deser_p50_ns": 80424.0, "deser_p75_ns": 83411.0, "deser_p95_ns": 88856.59999999999, "deser_p99_ns": 96075.12, "deser_ci_low_ns": 79316.73, "deser_ci_high_ns": 81540.82, "total_mean_ns": 172916.88235294117, "total_median_ns": 171843.0, "total_std_ns": 11633.01479719289, "total_mad_ns": 6881.0, "total_cv": 0.06727518238183769, "total_min_ns": 154501.0, "total_max_ns": 209515.0, "total_p5_ns": 157362.2, "total_p25_ns": 163635.0, "total_p50_ns": 171843.0, "total_p75_ns": 178223.0, "total_p95_ns": 196291.8, "total_p99_ns": 209300.8, "total_ci_low_ns": 170615.96205882353, "total_ci_high_ns": 175503.70470588235, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.17224479898873}, {"serializer": "NetJSON", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.0.0", "avg_time_ser_ns": 59459.26506024096, "avg_time_deser_ns": 125032.38554216867, "avg_time_total_ns": 184491.65060240965, "median_size_bytes": 25456.0, "avg_ops_per_sec": 5420.299491791413, "min_ops_per_sec": 4762.335639891228, "max_ops_per_sec": 6320.633074608752, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 59459.26506024096, "ser_median_ns": 59968.0, "ser_std_ns": 6004.84356751695, "ser_mad_ns": 3708.0, "ser_cv": 0.10099088109200749, "ser_min_ns": 46445.0, "ser_max_ns": 74829.0, "ser_p5_ns": 49780.8, "ser_p25_ns": 55259.5, "ser_p50_ns": 59968.0, "ser_p75_ns": 63131.5, "ser_p95_ns": 70235.69999999998, "ser_p99_ns": 72364.07999999997, "ser_ci_low_ns": 58187.60813253012, "ser_ci_high_ns": 60737.456927710846, "deser_mean_ns": 125032.38554216867, "deser_median_ns": 123763.0, "deser_std_ns": 8619.179005426984, "deser_mad_ns": 5590.0, "deser_cv": 0.0689355719164461, "deser_min_ns": 108450.0, "deser_max_ns": 147859.0, "deser_p5_ns": 112868.8, "deser_p25_ns": 119169.5, "deser_p50_ns": 123763.0, "deser_p75_ns": 130444.0, "deser_p95_ns": 141115.4, "deser_p99_ns": 146937.31999999998, "deser_ci_low_ns": 123218.47379518073, "deser_ci_high_ns": 126977.49728915663, "total_mean_ns": 184491.65060240965, "total_median_ns": 183154.0, "total_std_ns": 12151.390418719164, "total_mad_ns": 8747.0, "total_cv": 0.06586417531114254, "total_min_ns": 158212.0, "total_max_ns": 209981.0, "total_p5_ns": 167464.4, "total_p25_ns": 175618.0, "total_p50_ns": 183154.0, "total_p75_ns": 193027.5, "total_p95_ns": 206616.9, "total_p99_ns": 209047.02, "total_ci_low_ns": 182006.96054216867, "total_ci_high_ns": 186937.1234939759, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.075656082575394}, {"serializer": "MS DataContract Json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 135547.18279569893, "avg_time_deser_ns": 484841.5698924731, "avg_time_total_ns": 620388.752688172, "median_size_bytes": 25456.0, "avg_ops_per_sec": 1611.8925361992067, "min_ops_per_sec": 1492.5573627108424, "max_ops_per_sec": 1741.4260886525194, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 135547.18279569893, "ser_median_ns": 132324.0, "ser_std_ns": 10857.001275420549, "ser_mad_ns": 6010.0, "ser_cv": 0.08009757968769127, "ser_min_ns": 117542.0, "ser_max_ns": 163670.0, "ser_p5_ns": 119091.8, "ser_p25_ns": 128118.0, "ser_p50_ns": 132324.0, "ser_p75_ns": 142839.0, "ser_p95_ns": 156608.8, "ser_p99_ns": 159018.47999999998, "ser_ci_low_ns": 133443.5309139785, "ser_ci_high_ns": 137714.2231182796, "deser_mean_ns": 484841.5698924731, "deser_median_ns": 483887.0, "deser_std_ns": 20648.87683249216, "deser_mad_ns": 12473.0, "deser_cv": 0.042588915874254785, "deser_min_ns": 440398.0, "deser_max_ns": 533037.0, "deser_p5_ns": 453301.2, "deser_p25_ns": 471676.0, "deser_p50_ns": 483887.0, "deser_p75_ns": 496669.0, "deser_p95_ns": 525744.7999999999, "deser_p99_ns": 532094.92, "deser_ci_low_ns": 480779.9309139785, "deser_ci_high_ns": 488852.34543010755, "total_mean_ns": 620388.752688172, "total_median_ns": 620234.0, "total_std_ns": 23520.07447704117, "total_mad_ns": 16240.0, "total_cv": 0.037911832500392116, "total_min_ns": 574242.0, "total_max_ns": 669991.0, "total_p5_ns": 584580.2, "total_p25_ns": 600861.0, "total_p50_ns": 620234.0, "total_p75_ns": 635079.0, "total_p95_ns": 660198.0, "total_p99_ns": 669542.96, "total_ci_low_ns": 615517.0666666667, "total_ci_high_ns": 625233.7271505377, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 32.53116813653401}, {"serializer": "ServiceStack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 166832.0, "avg_time_deser_ns": 195983.8764044944, "avg_time_total_ns": 362815.8764044944, "median_size_bytes": 20654.0, "avg_ops_per_sec": 2756.218966793848, "min_ops_per_sec": 2417.5670089135697, "max_ops_per_sec": 3047.591183928223, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 166832.0, "ser_median_ns": 166667.0, "ser_std_ns": 9138.281853131513, "ser_mad_ns": 6241.0, "ser_cv": 0.054775353967653165, "ser_min_ns": 151744.0, "ser_max_ns": 192232.0, "ser_p5_ns": 153507.8, "ser_p25_ns": 159058.0, "ser_p50_ns": 166667.0, "ser_p75_ns": 171921.0, "ser_p95_ns": 183220.4, "ser_p99_ns": 189596.40000000002, "ser_ci_low_ns": 164953.64353932586, "ser_ci_high_ns": 168662.85533707865, "deser_mean_ns": 195983.8764044944, "deser_median_ns": 197215.0, "deser_std_ns": 12605.578798168028, "deser_mad_ns": 9422.0, "deser_cv": 0.06431946866971425, "deser_min_ns": 172463.0, "deser_max_ns": 230271.0, "deser_p5_ns": 175986.0, "deser_p25_ns": 185823.0, "deser_p50_ns": 197215.0, "deser_p75_ns": 204209.0, "deser_p95_ns": 215920.0, "deser_p99_ns": 223825.00000000003, "deser_ci_low_ns": 193439.44129213484, "deser_ci_high_ns": 198608.48314606742, "total_mean_ns": 362815.8764044944, "total_median_ns": 365796.0, "total_std_ns": 19349.846053428144, "total_mad_ns": 11479.0, "total_cv": 0.05333241269699974, "total_min_ns": 328128.0, "total_max_ns": 413639.0, "total_p5_ns": 330190.0, "total_p25_ns": 350131.0, "total_p50_ns": 365796.0, "total_p75_ns": 373291.0, "total_p95_ns": 395756.0, "total_p99_ns": 403075.48000000004, "total_ci_low_ns": 358989.03089887643, "total_ci_high_ns": 366621.42443820223, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.160599943839625}, {"serializer": "System.Text.Json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "8.0.0.0", "avg_time_ser_ns": 96934.47252747252, "avg_time_deser_ns": 162581.65934065933, "avg_time_total_ns": 259516.13186813187, "median_size_bytes": 25456.0, "avg_ops_per_sec": 3853.325004505426, "min_ops_per_sec": 3439.0615488845406, "max_ops_per_sec": 4333.732036680708, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 96934.47252747252, "ser_median_ns": 92846.0, "ser_std_ns": 11516.749877500315, "ser_mad_ns": 7493.0, "ser_cv": 0.1188096409586003, "ser_min_ns": 81223.0, "ser_max_ns": 122895.0, "ser_p5_ns": 82702.0, "ser_p25_ns": 88218.5, "ser_p50_ns": 92846.0, "ser_p75_ns": 105970.0, "ser_p95_ns": 116575.0, "ser_p99_ns": 120864.59999999999, "ser_ci_low_ns": 94644.29697802197, "ser_ci_high_ns": 99430.37197802197, "deser_mean_ns": 162581.65934065933, "deser_median_ns": 161902.0, "deser_std_ns": 8797.058360888826, "deser_mad_ns": 5039.0, "deser_cv": 0.05410855318222729, "deser_min_ns": 144437.0, "deser_max_ns": 185309.0, "deser_p5_ns": 147890.0, "deser_p25_ns": 157708.0, "deser_p50_ns": 161902.0, "deser_p75_ns": 167564.5, "deser_p95_ns": 177953.5, "deser_p99_ns": 185277.5, "deser_ci_low_ns": 160898.17774725275, "deser_ci_high_ns": 164427.04038461536, "total_mean_ns": 259516.13186813187, "total_median_ns": 256993.0, "total_std_ns": 13842.997217372955, "total_mad_ns": 10682.0, "total_cv": 0.053341567315002246, "total_min_ns": 230748.0, "total_max_ns": 290777.0, "total_p5_ns": 238503.5, "total_p25_ns": 250130.5, "total_p50_ns": 256993.0, "total_p75_ns": 271397.0, "total_p95_ns": 280698.5, "total_p99_ns": 289285.7, "total_ci_low_ns": 256608.77445054945, "total_ci_high_ns": 262245.47087912087, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.76719408753503}, {"serializer": "MS DataContract", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 105500.82954545454, "avg_time_deser_ns": 306470.0909090909, "avg_time_total_ns": 411970.92045454547, "median_size_bytes": 41421.0, "avg_ops_per_sec": 2427.355792240521, "min_ops_per_sec": 2216.6657800003545, "max_ops_per_sec": 2692.2683437703604, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 105500.82954545454, "ser_median_ns": 105037.5, "ser_std_ns": 5378.506454700502, "ser_mad_ns": 2799.5, "ser_cv": 0.050980702975261416, "ser_min_ns": 96291.0, "ser_max_ns": 120112.0, "ser_p5_ns": 97455.25, "ser_p25_ns": 103119.5, "ser_p50_ns": 105037.5, "ser_p75_ns": 108235.5, "ser_p95_ns": 114601.75, "ser_p99_ns": 119948.44, "ser_ci_low_ns": 104394.08863636364, "ser_ci_high_ns": 106610.17329545454, "deser_mean_ns": 306470.0909090909, "deser_median_ns": 307750.5, "deser_std_ns": 18280.607783500232, "deser_mad_ns": 13331.5, "deser_cv": 0.059648912979644926, "deser_min_ns": 273569.0, "deser_max_ns": 343310.0, "deser_p5_ns": 277470.05, "deser_p25_ns": 289261.0, "deser_p50_ns": 307750.5, "deser_p75_ns": 319876.5, "deser_p95_ns": 337856.5, "deser_p99_ns": 342312.11, "deser_ci_low_ns": 302569.5110795454, "deser_ci_high_ns": 310203.54403409094, "total_mean_ns": 411970.92045454547, "total_median_ns": 413742.5, "total_std_ns": 20948.244381063825, "total_mad_ns": 14213.5, "total_cv": 0.05084884233564523, "total_min_ns": 371434.0, "total_max_ns": 451128.0, "total_p5_ns": 378882.75, "total_p25_ns": 395663.5, "total_p50_ns": 413742.5, "total_p75_ns": 425033.25, "total_p95_ns": 446277.35, "total_p99_ns": 450430.26, "total_ci_low_ns": 407507.20142045454, "total_ci_high_ns": 416350.3088068182, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.94099048922651}, {"serializer": "ProtoBuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "2.4.9.1", "avg_time_ser_ns": 45434.529411764706, "avg_time_deser_ns": 104035.85882352942, "avg_time_total_ns": 149470.38823529411, "median_size_bytes": 12477.0, "avg_ops_per_sec": 6690.288369531861, "min_ops_per_sec": 5759.771452268774, "max_ops_per_sec": 7599.361653621096, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 45434.529411764706, "ser_median_ns": 45193.0, "ser_std_ns": 2444.6796439665973, "ser_mad_ns": 1730.0, "ser_cv": 0.053806646082122246, "ser_min_ns": 40870.0, "ser_max_ns": 51317.0, "ser_p5_ns": 41844.4, "ser_p25_ns": 43668.0, "ser_p50_ns": 45193.0, "ser_p75_ns": 47216.0, "ser_p95_ns": 49469.6, "ser_p99_ns": 51190.159999999996, "ser_ci_low_ns": 44928.09058823529, "ser_ci_high_ns": 45933.77911764706, "deser_mean_ns": 104035.85882352942, "deser_median_ns": 102172.0, "deser_std_ns": 8391.866436577488, "deser_mad_ns": 3427.0, "deser_cv": 0.08066321104545474, "deser_min_ns": 90720.0, "deser_max_ns": 128425.0, "deser_p5_ns": 93510.6, "deser_p25_ns": 98745.0, "deser_p50_ns": 102172.0, "deser_p75_ns": 104810.0, "deser_p95_ns": 121720.2, "deser_p99_ns": 126809.68, "deser_ci_low_ns": 102289.49, "deser_ci_high_ns": 105896.99852941177, "total_mean_ns": 149470.38823529411, "total_median_ns": 148149.0, "total_std_ns": 9512.48864975747, "total_mad_ns": 5025.0, "total_cv": 0.06364129217877623, "total_min_ns": 131590.0, "total_max_ns": 173618.0, "total_p5_ns": 136208.8, "total_p25_ns": 143291.0, "total_p50_ns": 148149.0, "total_p75_ns": 153768.0, "total_p95_ns": 167766.4, "total_p99_ns": 172347.08, "total_ci_low_ns": 147506.8394117647, "total_ci_high_ns": 151484.98764705882, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.256713932879821}, {"serializer": "FsPicklerJson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "5.3.2", "avg_time_ser_ns": 180711.89285714287, "avg_time_deser_ns": 220966.5357142857, "avg_time_total_ns": 401678.4285714286, "median_size_bytes": 30992.0, "avg_ops_per_sec": 2489.5536550381985, "min_ops_per_sec": 2233.8980627636, "max_ops_per_sec": 2700.265166039305, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 180711.89285714287, "ser_median_ns": 179623.5, "ser_std_ns": 10321.313189330003, "ser_mad_ns": 5892.5, "ser_cv": 0.05711474229031097, "ser_min_ns": 161909.0, "ser_max_ns": 207048.0, "ser_p5_ns": 165768.15, "ser_p25_ns": 174249.75, "ser_p50_ns": 179623.5, "ser_p75_ns": 185828.0, "ser_p95_ns": 201284.85, "ser_p99_ns": 205552.34, "ser_ci_low_ns": 178515.54523809522, "ser_ci_high_ns": 182969.44642857145, "deser_mean_ns": 220966.5357142857, "deser_median_ns": 221132.5, "deser_std_ns": 10024.072526211956, "deser_mad_ns": 6996.5, "deser_cv": 0.04536466344918983, "deser_min_ns": 202239.0, "deser_max_ns": 249976.0, "deser_p5_ns": 206241.0, "deser_p25_ns": 213261.5, "deser_p50_ns": 221132.5, "deser_p75_ns": 226954.75, "deser_p95_ns": 237286.55, "deser_p99_ns": 248542.59, "deser_ci_low_ns": 218835.83452380952, "deser_ci_high_ns": 223100.9026785714, "total_mean_ns": 401678.4285714286, "total_median_ns": 402769.5, "total_std_ns": 17298.26850815938, "total_mad_ns": 11771.0, "total_cv": 0.04306496759032035, "total_min_ns": 370334.0, "total_max_ns": 447648.0, "total_p5_ns": 372707.65, "total_p25_ns": 389171.75, "total_p50_ns": 402769.5, "total_p75_ns": 410919.5, "total_p95_ns": 429390.75, "total_p99_ns": 436218.9, "total_ci_low_ns": 398141.3053571429, "total_ci_high_ns": 405279.07023809524, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.062536639384895}, {"serializer": "MemoryPack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 32215.82608695652, "avg_time_deser_ns": 37321.05434782609, "avg_time_total_ns": 69536.88043478261, "median_size_bytes": 19050.0, "avg_ops_per_sec": 14380.857952606631, "min_ops_per_sec": 12661.112658580436, "max_ops_per_sec": 16168.410160228945, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 32215.82608695652, "ser_median_ns": 31706.5, "ser_std_ns": 2140.6185539693206, "ser_mad_ns": 1253.0, "ser_cv": 0.0664461792223298, "ser_min_ns": 28394.0, "ser_max_ns": 38879.0, "ser_p5_ns": 29419.5, "ser_p25_ns": 30690.0, "ser_p50_ns": 31706.5, "ser_p75_ns": 33770.25, "ser_p95_ns": 35582.4, "ser_p99_ns": 37493.07000000001, "ser_ci_low_ns": 31792.85597826087, "ser_ci_high_ns": 32642.85108695652, "deser_mean_ns": 37321.05434782609, "deser_median_ns": 37380.0, "deser_std_ns": 1921.9833126634353, "deser_mad_ns": 1261.0, "deser_cv": 0.05149863384755605, "deser_min_ns": 32736.0, "deser_max_ns": 41763.0, "deser_p5_ns": 34032.85, "deser_p25_ns": 36106.75, "deser_p50_ns": 37380.0, "deser_p75_ns": 38515.5, "deser_p95_ns": 40430.7, "deser_p99_ns": 41121.450000000004, "deser_ci_low_ns": 36942.59076086956, "deser_ci_high_ns": 37719.879347826085, "total_mean_ns": 69536.88043478261, "total_median_ns": 69128.0, "total_std_ns": 3551.221365016445, "total_mad_ns": 2600.0, "total_cv": 0.051069610008563325, "total_min_ns": 61849.0, "total_max_ns": 78982.0, "total_p5_ns": 64574.95, "total_p25_ns": 66895.75, "total_p50_ns": 69128.0, "total_p75_ns": 72024.0, "total_p95_ns": 76177.95, "total_p99_ns": 77556.03, "total_ci_low_ns": 68833.76739130434, "total_ci_high_ns": 70261.82092391304, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "Jil", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "2.17.0", "avg_time_ser_ns": 155268.0465116279, "avg_time_deser_ns": 135607.7558139535, "avg_time_total_ns": 290875.8023255814, "median_size_bytes": 25456.0, "avg_ops_per_sec": 3437.8933964423964, "min_ops_per_sec": 3067.8046176595103, "max_ops_per_sec": 3784.452711371145, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 155268.0465116279, "ser_median_ns": 154877.0, "ser_std_ns": 8841.41750666843, "ser_mad_ns": 5836.0, "ser_cv": 0.056942930018806556, "ser_min_ns": 140232.0, "ser_max_ns": 181574.0, "ser_p5_ns": 143606.5, "ser_p25_ns": 148463.0, "ser_p50_ns": 154877.0, "ser_p75_ns": 160126.25, "ser_p95_ns": 172088.25, "ser_p99_ns": 180141.75, "ser_ci_low_ns": 153481.57209302325, "ser_ci_high_ns": 157214.28052325582, "deser_mean_ns": 135607.7558139535, "deser_median_ns": 135705.0, "deser_std_ns": 6206.691316988268, "deser_mad_ns": 3971.5, "deser_cv": 0.045769442018519305, "deser_min_ns": 124007.0, "deser_max_ns": 149787.0, "deser_p5_ns": 126195.75, "deser_p25_ns": 131288.75, "deser_p50_ns": 135705.0, "deser_p75_ns": 138885.25, "deser_p95_ns": 146081.5, "deser_p99_ns": 149758.1, "deser_ci_low_ns": 134316.44680232558, "deser_ci_high_ns": 136888.9398255814, "total_mean_ns": 290875.8023255814, "total_median_ns": 289930.0, "total_std_ns": 13530.166728958158, "total_mad_ns": 8724.0, "total_cv": 0.04651527085024987, "total_min_ns": 264239.0, "total_max_ns": 325966.0, "total_p5_ns": 271296.5, "total_p25_ns": 280773.25, "total_p50_ns": 289930.0, "total_p75_ns": 298442.0, "total_p95_ns": 313935.0, "total_p99_ns": 324234.55, "total_ci_low_ns": 288105.1351744186, "total_ci_high_ns": 293712.26366279065, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.619984793434213}, {"serializer": "SpanJson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "4.2.1", "avg_time_ser_ns": 47319.21052631579, "avg_time_deser_ns": 71303.92105263157, "avg_time_total_ns": 118623.13157894737, "median_size_bytes": 25456.0, "avg_ops_per_sec": 8430.059017068428, "min_ops_per_sec": 7482.845576515838, "max_ops_per_sec": 9406.364346116583, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 47319.21052631579, "ser_median_ns": 47288.0, "ser_std_ns": 2517.154813492353, "ser_mad_ns": 1366.0, "ser_cv": 0.05319519885253536, "ser_min_ns": 41864.0, "ser_max_ns": 54627.0, "ser_p5_ns": 43280.0, "ser_p25_ns": 45786.25, "ser_p50_ns": 47288.0, "ser_p75_ns": 48465.75, "ser_p95_ns": 51724.0, "ser_p99_ns": 54186.75, "ser_ci_low_ns": 46769.13289473684, "ser_ci_high_ns": 47858.752302631576, "deser_mean_ns": 71303.92105263157, "deser_median_ns": 71525.0, "deser_std_ns": 3214.3246206656763, "deser_mad_ns": 2374.5, "deser_cv": 0.045079212660592484, "deser_min_ns": 64447.0, "deser_max_ns": 79888.0, "deser_p5_ns": 65785.75, "deser_p25_ns": 69102.75, "deser_p50_ns": 71525.0, "deser_p75_ns": 73775.25, "deser_p95_ns": 75485.25, "deser_p99_ns": 79298.5, "deser_ci_low_ns": 70577.33256578947, "deser_ci_high_ns": 72012.86217105263, "total_mean_ns": 118623.13157894737, "total_median_ns": 118437.5, "total_std_ns": 5148.7263961543085, "total_mad_ns": 2938.5, "total_cv": 0.04340406738231886, "total_min_ns": 106311.0, "total_max_ns": 133639.0, "total_p5_ns": 109863.75, "total_p25_ns": 115585.0, "total_p50_ns": 118437.5, "total_p75_ns": 121398.0, "total_p95_ns": 127184.5, "total_p99_ns": 132847.75, "total_ci_low_ns": 117475.37730263159, "total_ci_high_ns": 119783.61644736842, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.242650687446357}, {"serializer": "Utf8Json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.3.7", "avg_time_ser_ns": 47447.71052631579, "avg_time_deser_ns": 85739.76315789473, "avg_time_total_ns": 133187.47368421053, "median_size_bytes": 25456.0, "avg_ops_per_sec": 7508.213590498869, "min_ops_per_sec": 6861.675483919664, "max_ops_per_sec": 8188.331627430911, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 47447.71052631579, "ser_median_ns": 47047.5, "ser_std_ns": 2667.5957005802784, "ser_mad_ns": 1532.0, "ser_cv": 0.056221800187824814, "ser_min_ns": 41843.0, "ser_max_ns": 56281.0, "ser_p5_ns": 43989.0, "ser_p25_ns": 45885.0, "ser_p50_ns": 47047.5, "ser_p75_ns": 48652.5, "ser_p95_ns": 52136.25, "ser_p99_ns": 55640.5, "ser_ci_low_ns": 46854.94901315789, "ser_ci_high_ns": 48071.216447368424, "deser_mean_ns": 85739.76315789473, "deser_median_ns": 86008.5, "deser_std_ns": 3790.3415989183914, "deser_mad_ns": 2785.5, "deser_cv": 0.044207511886150866, "deser_min_ns": 78371.0, "deser_max_ns": 93672.0, "deser_p5_ns": 79864.75, "deser_p25_ns": 82538.25, "deser_p50_ns": 86008.5, "deser_p75_ns": 88189.25, "deser_p95_ns": 91875.5, "deser_p99_ns": 93539.25, "deser_ci_low_ns": 84894.74407894736, "deser_ci_high_ns": 86588.69736842105, "total_mean_ns": 133187.47368421053, "total_median_ns": 133411.0, "total_std_ns": 5432.723266708105, "total_mad_ns": 4345.0, "total_cv": 0.04079004666451721, "total_min_ns": 122125.0, "total_max_ns": 145737.0, "total_p5_ns": 125330.0, "total_p25_ns": 128674.5, "total_p50_ns": 133411.0, "total_p75_ns": 137306.25, "total_p95_ns": 141415.5, "total_p99_ns": 143214.75, "total_ci_low_ns": 132019.5832236842, "total_ci_high_ns": 134366.08157894737, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.081195919284374}, {"serializer": "Json.Net", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 227987.6875, "avg_time_deser_ns": 288214.8375, "avg_time_total_ns": 516202.525, "median_size_bytes": 32971.0, "avg_ops_per_sec": 1937.224154414975, "min_ops_per_sec": 1710.0243336462677, "max_ops_per_sec": 2113.6778205445257, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 227987.6875, "ser_median_ns": 227402.5, "ser_std_ns": 11468.4354120273, "ser_mad_ns": 7256.0, "ser_cv": 0.05030287178129872, "ser_min_ns": 206201.0, "ser_max_ns": 261822.0, "ser_p5_ns": 211117.75, "ser_p25_ns": 220009.75, "ser_p50_ns": 227402.5, "ser_p75_ns": 234088.25, "ser_p95_ns": 248574.6, "ser_p99_ns": 253607.57999999993, "ser_ci_low_ns": 225446.1584375, "ser_ci_high_ns": 230561.7290625, "deser_mean_ns": 288214.8375, "deser_median_ns": 288187.5, "deser_std_ns": 16381.577121833416, "deser_mad_ns": 13686.5, "deser_cv": 0.056838076984268425, "deser_min_ns": 262085.0, "deser_max_ns": 338388.0, "deser_p5_ns": 266935.9, "deser_p25_ns": 273035.75, "deser_p50_ns": 288187.5, "deser_p75_ns": 301710.25, "deser_p95_ns": 314271.5, "deser_p99_ns": 326902.1899999999, "deser_ci_low_ns": 284719.7725, "deser_ci_high_ns": 291856.494375, "total_mean_ns": 516202.525, "total_median_ns": 517135.0, "total_std_ns": 24514.27656061884, "total_mad_ns": 18768.0, "total_cv": 0.04748964868123967, "total_min_ns": 473109.0, "total_max_ns": 584787.0, "total_p5_ns": 478378.8, "total_p25_ns": 497456.5, "total_p50_ns": 517135.0, "total_p75_ns": 535608.0, "total_p95_ns": 554017.55, "total_p99_ns": 569696.4199999999, "total_ci_low_ns": 510975.7590625, "total_ci_high_ns": 521488.37156249996, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.294482705021167}, {"serializer": "Migrant", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "0.13.0.0", "avg_time_ser_ns": 55569.43023255814, "avg_time_deser_ns": 65505.11627906977, "avg_time_total_ns": 121074.54651162791, "median_size_bytes": 28678.0, "avg_ops_per_sec": 8259.3743178213, "min_ops_per_sec": 6597.176408497163, "max_ops_per_sec": 9547.724299913116, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 55569.43023255814, "ser_median_ns": 52994.0, "ser_std_ns": 7536.72281337608, "ser_mad_ns": 2330.0, "ser_cv": 0.1356271385514461, "ser_min_ns": 47150.0, "ser_max_ns": 75745.0, "ser_p5_ns": 49396.75, "ser_p25_ns": 50726.5, "ser_p50_ns": 52994.0, "ser_p75_ns": 56316.25, "ser_p95_ns": 74569.75, "ser_p99_ns": 75179.75, "ser_ci_low_ns": 54116.54680232558, "ser_ci_high_ns": 57198.06569767442, "deser_mean_ns": 65505.11627906977, "deser_median_ns": 64690.0, "deser_std_ns": 6357.841789602367, "deser_mad_ns": 4069.5, "deser_cv": 0.09705870549891425, "deser_min_ns": 55923.0, "deser_max_ns": 84865.0, "deser_p5_ns": 57592.25, "deser_p25_ns": 60622.5, "deser_p50_ns": 64690.0, "deser_p75_ns": 68543.75, "deser_p95_ns": 78791.5, "deser_p99_ns": 83687.75000000001, "deser_ci_low_ns": 64166.60087209302, "deser_ci_high_ns": 66934.22296511628, "total_mean_ns": 121074.54651162791, "total_median_ns": 118675.0, "total_std_ns": 10096.275154329387, "total_mad_ns": 6733.0, "total_cv": 0.08338891571532542, "total_min_ns": 104737.0, "total_max_ns": 151580.0, "total_p5_ns": 107588.25, "total_p25_ns": 113308.75, "total_p50_ns": 118675.0, "total_p75_ns": 127088.0, "total_p95_ns": 140429.5, "total_p99_ns": 144530.95000000004, "total_ci_low_ns": 119042.7090116279, "total_ci_high_ns": 123178.21191860465, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.87295380068416}, {"serializer": "ZeroFormatter", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.6.4", "avg_time_ser_ns": 32504.805555555555, "avg_time_deser_ns": 43287.61111111111, "avg_time_total_ns": 75792.41666666667, "median_size_bytes": 14149.0, "avg_ops_per_sec": 13193.932110622323, "min_ops_per_sec": 11238.60686229335, "max_ops_per_sec": 14992.054211268029, "runs": 72, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 27, "ser_mean_ns": 32504.805555555555, "ser_median_ns": 31986.5, "ser_std_ns": 2501.2667361963827, "ser_mad_ns": 1287.5, "ser_cv": 0.07695067524466022, "ser_min_ns": 28157.0, "ser_max_ns": 38984.0, "ser_p5_ns": 29315.95, "ser_p25_ns": 30773.5, "ser_p50_ns": 31986.5, "ser_p75_ns": 33571.25, "ser_p95_ns": 37660.3, "ser_p99_ns": 38626.87, "ser_ci_low_ns": 31919.60104166667, "ser_ci_high_ns": 33109.646875, "deser_mean_ns": 43287.61111111111, "deser_median_ns": 42646.0, "deser_std_ns": 3251.7269152163453, "deser_mad_ns": 1557.0, "deser_cv": 0.0751191121836171, "deser_min_ns": 38402.0, "deser_max_ns": 56353.0, "deser_p5_ns": 39126.55, "deser_p25_ns": 41124.5, "deser_p50_ns": 42646.0, "deser_p75_ns": 44139.75, "deser_p95_ns": 49100.65, "deser_p99_ns": 54683.080000000016, "deser_ci_low_ns": 42550.97708333333, "deser_ci_high_ns": 44054.40416666667, "total_mean_ns": 75792.41666666667, "total_median_ns": 75091.5, "total_std_ns": 5081.594752869848, "total_mad_ns": 2730.0, "total_cv": 0.0670462161830594, "total_min_ns": 66702.0, "total_max_ns": 88979.0, "total_p5_ns": 68664.75, "total_p25_ns": 72390.5, "total_p50_ns": 75091.5, "total_p75_ns": 77840.75, "total_p95_ns": 86393.55, "total_p99_ns": 88499.04000000001, "total_ci_low_ns": 74637.63298611112, "total_ci_high_ns": 77011.84340277778, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 0.7047101449275363, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.451513457972056}, {"serializer": "BinaryPack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.0.3", "avg_time_ser_ns": 54557.933333333334, "avg_time_deser_ns": 62327.62666666666, "avg_time_total_ns": 116885.56, "median_size_bytes": 14650.0, "avg_ops_per_sec": 8555.376729169968, "min_ops_per_sec": 7732.456988208003, "max_ops_per_sec": 9399.026260879373, "runs": 75, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 24, "ser_mean_ns": 54557.933333333334, "ser_median_ns": 54110.0, "ser_std_ns": 3456.460110502578, "ser_mad_ns": 2856.0, "ser_cv": 0.06335394138529034, "ser_min_ns": 49203.0, "ser_max_ns": 61813.0, "ser_p5_ns": 49700.9, "ser_p25_ns": 51908.0, "ser_p50_ns": 54110.0, "ser_p75_ns": 57059.0, "ser_p95_ns": 60723.8, "ser_p99_ns": 61610.24, "ser_ci_low_ns": 53781.193999999996, "ser_ci_high_ns": 55341.521, "deser_mean_ns": 62327.62666666666, "deser_median_ns": 61903.0, "deser_std_ns": 3531.257779798494, "deser_mad_ns": 2665.0, "deser_cv": 0.056656381265469236, "deser_min_ns": 56368.0, "deser_max_ns": 70336.0, "deser_p5_ns": 57481.9, "deser_p25_ns": 59617.5, "deser_p50_ns": 61903.0, "deser_p75_ns": 64635.0, "deser_p95_ns": 68885.8, "deser_p99_ns": 70233.14, "deser_ci_low_ns": 61526.867666666665, "deser_ci_high_ns": 63137.86733333333, "total_mean_ns": 116885.56, "total_median_ns": 116737.0, "total_std_ns": 6334.741815682101, "total_mad_ns": 5258.0, "total_cv": 0.05419610271518656, "total_min_ns": 106394.0, "total_max_ns": 129325.0, "total_p5_ns": 106817.2, "total_p25_ns": 111606.0, "total_p50_ns": 116737.0, "total_p75_ns": 121905.0, "total_p95_ns": 127782.4, "total_p99_ns": 128875.08, "total_ci_low_ns": 115444.59166666666, "total_ci_high_ns": 118275.58933333334, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.435598031855587}, {"serializer": "Json.Net (Helper)", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "13.0.4", "avg_time_ser_ns": 209413.63333333333, "avg_time_deser_ns": 291621.1, "avg_time_total_ns": 501034.73333333334, "median_size_bytes": 31360.0, "avg_ops_per_sec": 1995.8696143620648, "min_ops_per_sec": 1771.9406116384603, "max_ops_per_sec": 2221.570561524175, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 209413.63333333333, "ser_median_ns": 207114.5, "ser_std_ns": 14719.80410871274, "ser_mad_ns": 9218.5, "ser_cv": 0.07029057217723046, "ser_min_ns": 185244.0, "ser_max_ns": 249496.0, "ser_p5_ns": 188931.4, "ser_p25_ns": 199322.75, "ser_p50_ns": 207114.5, "ser_p75_ns": 216633.25, "ser_p95_ns": 236114.05, "ser_p99_ns": 244894.7, "ser_ci_low_ns": 206408.80111111113, "ser_ci_high_ns": 212585.85888888888, "deser_mean_ns": 291621.1, "deser_median_ns": 291359.0, "deser_std_ns": 14776.68172071392, "deser_mad_ns": 10776.5, "deser_cv": 0.05067082498733432, "deser_min_ns": 264201.0, "deser_max_ns": 327797.0, "deser_p5_ns": 267465.2, "deser_p25_ns": 279986.5, "deser_p50_ns": 291359.0, "deser_p75_ns": 301771.25, "deser_p95_ns": 314642.8, "deser_p99_ns": 325490.12, "deser_ci_low_ns": 288683.3383333334, "deser_ci_high_ns": 294544.43694444443, "total_mean_ns": 501034.73333333334, "total_median_ns": 500971.5, "total_std_ns": 24457.529884739408, "total_mad_ns": 19081.0, "total_cv": 0.04881404073930352, "total_min_ns": 450132.0, "total_max_ns": 564353.0, "total_p5_ns": 459096.05, "total_p25_ns": 483552.0, "total_p50_ns": 500971.5, "total_p75_ns": 520839.5, "total_p95_ns": 536983.95, "total_p99_ns": 554008.53, "total_ci_low_ns": 496069.74111111107, "total_ci_high_ns": 505943.325, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.72066761469307}, {"serializer": "NetSerializer", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "4.1.2", "avg_time_ser_ns": 52182.96296296296, "avg_time_deser_ns": 78513.54320987655, "avg_time_total_ns": 130696.50617283951, "median_size_bytes": 12252.0, "avg_ops_per_sec": 7651.313943140535, "min_ops_per_sec": 6699.314660110271, "max_ops_per_sec": 8486.803021301876, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 52182.96296296296, "ser_median_ns": 51841.0, "ser_std_ns": 2828.849286567086, "ser_mad_ns": 1841.0, "ser_cv": 0.054210208197163344, "ser_min_ns": 47007.0, "ser_max_ns": 59472.0, "ser_p5_ns": 47832.0, "ser_p25_ns": 50118.0, "ser_p50_ns": 51841.0, "ser_p75_ns": 53757.0, "ser_p95_ns": 57238.0, "ser_p99_ns": 58630.4, "ser_ci_low_ns": 51578.89382716049, "ser_ci_high_ns": 52786.17870370371, "deser_mean_ns": 78513.54320987655, "deser_median_ns": 78349.0, "deser_std_ns": 4159.705007718044, "deser_mad_ns": 3013.0, "deser_cv": 0.05298073221072995, "deser_min_ns": 70393.0, "deser_max_ns": 91354.0, "deser_p5_ns": 71629.0, "deser_p25_ns": 75336.0, "deser_p50_ns": 78349.0, "deser_p75_ns": 81206.0, "deser_p95_ns": 85213.0, "deser_p99_ns": 87230.00000000001, "deser_ci_low_ns": 77640.70864197532, "deser_ci_high_ns": 79424.45956790124, "total_mean_ns": 130696.50617283951, "total_median_ns": 130605.0, "total_std_ns": 6430.279966928844, "total_mad_ns": 3912.0, "total_cv": 0.04920009076925993, "total_min_ns": 117830.0, "total_max_ns": 149269.0, "total_p5_ns": 121125.0, "total_p25_ns": 126555.0, "total_p50_ns": 130605.0, "total_p75_ns": 134269.0, "total_p95_ns": 140646.0, "total_p99_ns": 145883.40000000002, "total_ci_low_ns": 129310.3450617284, "total_ci_high_ns": 132113.16419753086, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.928971898162578}, {"serializer": "MS XmlSerializer", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 218791.32967032967, "avg_time_deser_ns": 367488.94505494507, "avg_time_total_ns": 586280.2747252748, "median_size_bytes": 62630.0, "avg_ops_per_sec": 1705.6688466426579, "min_ops_per_sec": 1552.2478877786866, "max_ops_per_sec": 1873.9119598683014, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 218791.32967032967, "ser_median_ns": 215912.0, "ser_std_ns": 14218.84935964694, "ser_mad_ns": 8776.0, "ser_cv": 0.06498817563324659, "ser_min_ns": 193869.0, "ser_max_ns": 250895.0, "ser_p5_ns": 198707.0, "ser_p25_ns": 208610.0, "ser_p50_ns": 215912.0, "ser_p75_ns": 228051.0, "ser_p95_ns": 244924.0, "ser_p99_ns": 248409.19999999998, "ser_ci_low_ns": 215990.50934065934, "ser_ci_high_ns": 221711.10824175822, "deser_mean_ns": 367488.94505494507, "deser_median_ns": 368100.0, "deser_std_ns": 16689.444486036766, "deser_mad_ns": 12458.0, "deser_cv": 0.04541482052893168, "deser_min_ns": 334898.0, "deser_max_ns": 411769.0, "deser_p5_ns": 342437.5, "deser_p25_ns": 354926.0, "deser_p50_ns": 368100.0, "deser_p75_ns": 378746.5, "deser_p95_ns": 398083.0, "deser_p99_ns": 401562.0999999999, "deser_ci_low_ns": 364261.48434065934, "deser_ci_high_ns": 370808.90934065933, "total_mean_ns": 586280.2747252748, "total_median_ns": 584966.0, "total_std_ns": 26828.76715437531, "total_mad_ns": 18624.0, "total_cv": 0.045760992329047755, "total_min_ns": 533643.0, "total_max_ns": 644227.0, "total_p5_ns": 543647.0, "total_p25_ns": 567167.0, "total_p50_ns": 584966.0, "total_p75_ns": 604139.5, "total_p95_ns": 632863.0, "total_p99_ns": 643318.0, "total_ci_low_ns": 580789.1557692308, "total_ci_high_ns": 592080.8074175825, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.963313350355087}, {"serializer": "MS Bond Fast", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 49130.5, "avg_time_deser_ns": 55395.73333333333, "avg_time_total_ns": 104526.23333333334, "median_size_bytes": 15051.0, "avg_ops_per_sec": 9566.97632843047, "min_ops_per_sec": 8301.648707433296, "max_ops_per_sec": 10823.565065861394, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 49130.5, "ser_median_ns": 48481.0, "ser_std_ns": 3956.794719852949, "ser_mad_ns": 2162.0, "ser_cv": 0.08053642278936606, "ser_min_ns": 42978.0, "ser_max_ns": 60270.0, "ser_p5_ns": 43986.5, "ser_p25_ns": 46439.75, "ser_p50_ns": 48481.0, "ser_p75_ns": 50662.0, "ser_p95_ns": 56661.3, "ser_p99_ns": 59074.729999999996, "ser_ci_low_ns": 48313.59638888889, "ser_ci_high_ns": 49964.19055555556, "deser_mean_ns": 55395.73333333333, "deser_median_ns": 55472.0, "deser_std_ns": 3498.723933671381, "deser_mad_ns": 2433.0, "deser_cv": 0.06315872582854844, "deser_min_ns": 49276.0, "deser_max_ns": 65277.0, "deser_p5_ns": 50326.85, "deser_p25_ns": 52819.0, "deser_p50_ns": 55472.0, "deser_p75_ns": 57213.5, "deser_p95_ns": 61699.549999999996, "deser_p99_ns": 63747.09, "deser_ci_low_ns": 54676.33888888889, "deser_ci_high_ns": 56121.53444444444, "total_mean_ns": 104526.23333333334, "total_median_ns": 103862.5, "total_std_ns": 7068.390777319749, "total_mad_ns": 4206.0, "total_cv": 0.06762312724671429, "total_min_ns": 92391.0, "total_max_ns": 120458.0, "total_p5_ns": 94378.1, "total_p25_ns": 99524.25, "total_p50_ns": 103862.5, "total_p75_ns": 107883.25, "total_p95_ns": 117252.05, "total_p99_ns": 118023.84999999999, "total_ci_low_ns": 103151.82972222222, "total_ci_high_ns": 105916.14055555555, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.250078031226783}, {"serializer": "Hyperion", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "0.12.2", "avg_time_ser_ns": 86232.8717948718, "avg_time_deser_ns": 94047.78205128205, "avg_time_total_ns": 180280.65384615384, "median_size_bytes": 13144.0, "avg_ops_per_sec": 5546.906884714154, "min_ops_per_sec": 4882.931712200005, "max_ops_per_sec": 6117.105874868482, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 86232.8717948718, "ser_median_ns": 85088.5, "ser_std_ns": 6355.669832701429, "ser_mad_ns": 3037.5, "ser_cv": 0.07370356223111887, "ser_min_ns": 76935.0, "ser_max_ns": 103345.0, "ser_p5_ns": 78553.1, "ser_p25_ns": 82550.0, "ser_p50_ns": 85088.5, "ser_p75_ns": 88956.75, "ser_p95_ns": 100350.2, "ser_p99_ns": 102434.09000000001, "ser_ci_low_ns": 84940.30352564102, "ser_ci_high_ns": 87671.13717948718, "deser_mean_ns": 94047.78205128205, "deser_median_ns": 93937.5, "deser_std_ns": 4791.964788716319, "deser_mad_ns": 3956.0, "deser_cv": 0.05095244868298301, "deser_min_ns": 86286.0, "deser_max_ns": 107836.0, "deser_p5_ns": 87367.4, "deser_p25_ns": 89802.75, "deser_p50_ns": 93937.5, "deser_p75_ns": 97393.75, "deser_p95_ns": 101571.95, "deser_p99_ns": 104118.44000000002, "deser_ci_low_ns": 92979.24102564104, "deser_ci_high_ns": 95058.49326923078, "total_mean_ns": 180280.65384615384, "total_median_ns": 180097.0, "total_std_ns": 9192.571564558553, "total_mad_ns": 6312.0, "total_cv": 0.0509903384996774, "total_min_ns": 163476.0, "total_max_ns": 204795.0, "total_p5_ns": 166047.55, "total_p25_ns": 173933.5, "total_p50_ns": 180097.0, "total_p75_ns": 186404.5, "total_p95_ns": 195860.8, "total_p99_ns": 203489.85, "total_ci_low_ns": 178297.5766025641, "total_ci_high_ns": 182342.38333333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.33326442679431}, {"serializer": "FlatSharp", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "7.5.1", "avg_time_ser_ns": 46898.55844155844, "avg_time_deser_ns": 55522.246753246756, "avg_time_total_ns": 102420.8051948052, "median_size_bytes": 25977.0, "avg_ops_per_sec": 9763.641265053442, "min_ops_per_sec": 8633.565576247334, "max_ops_per_sec": 10888.976000696894, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 46898.55844155844, "ser_median_ns": 46416.0, "ser_std_ns": 3277.7966182912796, "ser_mad_ns": 1753.0, "ser_cv": 0.06989120193056318, "ser_min_ns": 41515.0, "ser_max_ns": 57709.0, "ser_p5_ns": 42443.6, "ser_p25_ns": 44663.0, "ser_p50_ns": 46416.0, "ser_p75_ns": 48076.0, "ser_p95_ns": 53354.6, "ser_p99_ns": 55490.55999999998, "ser_ci_low_ns": 46188.10162337663, "ser_ci_high_ns": 47633.21298701299, "deser_mean_ns": 55522.246753246756, "deser_median_ns": 55530.0, "deser_std_ns": 2940.1495806731914, "deser_mad_ns": 1940.0, "deser_cv": 0.05295444173467748, "deser_min_ns": 50029.0, "deser_max_ns": 64216.0, "deser_p5_ns": 50950.2, "deser_p25_ns": 53198.0, "deser_p50_ns": 55530.0, "deser_p75_ns": 57343.0, "deser_p95_ns": 60432.8, "deser_p99_ns": 62779.59999999999, "deser_ci_low_ns": 54863.740909090906, "deser_ci_high_ns": 56174.294805194804, "total_mean_ns": 102420.8051948052, "total_median_ns": 102320.0, "total_std_ns": 5591.8327426772985, "total_mad_ns": 3612.0, "total_cv": 0.05459664891368104, "total_min_ns": 91836.0, "total_max_ns": 115827.0, "total_p5_ns": 93725.6, "total_p25_ns": 98714.0, "total_p50_ns": 102320.0, "total_p75_ns": 105932.0, "total_p95_ns": 112826.8, "total_p99_ns": 115785.96, "total_ci_low_ns": 101228.06558441558, "total_ci_high_ns": 103608.81006493507, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.126303871171532}, {"serializer": "MS Bond Json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 85331.72093023256, "avg_time_deser_ns": 145993.55813953487, "avg_time_total_ns": 231325.27906976745, "median_size_bytes": 25456.0, "avg_ops_per_sec": 4322.9170803178895, "min_ops_per_sec": 3926.9277288220787, "max_ops_per_sec": 4816.839671491534, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 85331.72093023256, "ser_median_ns": 85191.5, "ser_std_ns": 4739.800325035205, "ser_mad_ns": 2798.5, "ser_cv": 0.055545584612203915, "ser_min_ns": 75676.0, "ser_max_ns": 98203.0, "ser_p5_ns": 78598.0, "ser_p25_ns": 81837.25, "ser_p50_ns": 85191.5, "ser_p75_ns": 87927.0, "ser_p95_ns": 93892.25, "ser_p99_ns": 96572.70000000001, "ser_ci_low_ns": 84303.51308139534, "ser_ci_high_ns": 86374.9055232558, "deser_mean_ns": 145993.55813953487, "deser_median_ns": 146331.5, "deser_std_ns": 8056.319772268887, "deser_mad_ns": 6198.5, "deser_cv": 0.05518270720252585, "deser_min_ns": 129884.0, "deser_max_ns": 170152.0, "deser_p5_ns": 134609.75, "deser_p25_ns": 139130.0, "deser_p50_ns": 146331.5, "deser_p75_ns": 151399.25, "deser_p95_ns": 158692.5, "deser_p99_ns": 167884.2, "deser_ci_low_ns": 144302.27819767443, "deser_ci_high_ns": 147660.13052325582, "total_mean_ns": 231325.27906976745, "total_median_ns": 231632.5, "total_std_ns": 11166.65380038597, "total_mad_ns": 7160.0, "total_cv": 0.04827251844368517, "total_min_ns": 207605.0, "total_max_ns": 254652.0, "total_p5_ns": 213716.5, "total_p25_ns": 224340.75, "total_p50_ns": 231632.5, "total_p75_ns": 238350.75, "total_p95_ns": 250177.75, "total_p99_ns": 254309.45, "total_ci_low_ns": 229070.2659883721, "total_ci_high_ns": 233629.1305232558, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.71923049384986}, {"serializer": "SharpSerializer", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": null, "avg_time_ser_ns": 664302.7341772151, "avg_time_deser_ns": 2612029.6835443038, "avg_time_total_ns": 3276332.417721519, "median_size_bytes": 147653.0, "avg_ops_per_sec": 305.2193344579597, "min_ops_per_sec": 281.74220362974114, "max_ops_per_sec": 333.88479972755, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 664302.7341772151, "ser_median_ns": 666513.0, "ser_std_ns": 32381.511817032842, "ser_mad_ns": 20780.0, "ser_cv": 0.04874511295989107, "ser_min_ns": 593522.0, "ser_max_ns": 757457.0, "ser_p5_ns": 609735.3, "ser_p25_ns": 641078.5, "ser_p50_ns": 666513.0, "ser_p75_ns": 684339.0, "ser_p95_ns": 721906.9, "ser_p99_ns": 736835.36, "ser_ci_low_ns": 657176.3952531646, "ser_ci_high_ns": 671046.5791139241, "deser_mean_ns": 2612029.6835443038, "deser_median_ns": 2612701.0, "deser_std_ns": 111987.78752379876, "deser_mad_ns": 74024.0, "deser_cv": 0.04287385714998491, "deser_min_ns": 2362090.0, "deser_max_ns": 2912385.0, "deser_p5_ns": 2426772.3, "deser_p25_ns": 2537041.0, "deser_p50_ns": 2612701.0, "deser_p75_ns": 2683133.5, "deser_p95_ns": 2808789.7, "deser_p99_ns": 2878144.56, "deser_ci_low_ns": 2587451.003481013, "deser_ci_high_ns": 2636979.073101266, "total_mean_ns": 3276332.417721519, "total_median_ns": 3284538.0, "total_std_ns": 121859.19841732514, "total_mad_ns": 78711.0, "total_cv": 0.03719378343851644, "total_min_ns": 2995045.0, "total_max_ns": 3549344.0, "total_p5_ns": 3066821.7, "total_p25_ns": 3194079.5, "total_p50_ns": 3284538.0, "total_p75_ns": 3360049.0, "total_p95_ns": 3475365.4, "total_p99_ns": 3523128.98, "total_ci_low_ns": 3250702.8655063296, "total_ci_high_ns": 3303169.8661392406, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 38.54423778570577}, {"serializer": "GroBuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.9.2", "avg_time_ser_ns": 25856.12676056338, "avg_time_deser_ns": 46675.887323943665, "avg_time_total_ns": 72532.01408450704, "median_size_bytes": 37312.0, "avg_ops_per_sec": 13787.015466506971, "min_ops_per_sec": 10569.70721911003, "max_ops_per_sec": 16006.146360202318, "runs": 71, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 28, "ser_mean_ns": 25856.12676056338, "ser_median_ns": 24918.0, "ser_std_ns": 2743.9805285105563, "ser_mad_ns": 1439.0, "ser_cv": 0.10612496426555915, "ser_min_ns": 22399.0, "ser_max_ns": 34983.0, "ser_p5_ns": 22735.0, "ser_p25_ns": 23973.5, "ser_p50_ns": 24918.0, "ser_p75_ns": 27145.0, "ser_p95_ns": 31038.0, "ser_p99_ns": 34473.4, "ser_ci_low_ns": 25242.152112676056, "ser_ci_high_ns": 26514.136971830983, "deser_mean_ns": 46675.887323943665, "deser_median_ns": 46020.0, "deser_std_ns": 4609.078251665931, "deser_mad_ns": 2073.0, "deser_cv": 0.09874645166738114, "deser_min_ns": 39803.0, "deser_max_ns": 64924.0, "deser_p5_ns": 41702.5, "deser_p25_ns": 43903.5, "deser_p50_ns": 46020.0, "deser_p75_ns": 47879.0, "deser_p95_ns": 52946.5, "deser_p99_ns": 64673.4, "deser_ci_low_ns": 45671.09436619718, "deser_ci_high_ns": 47797.7411971831, "total_mean_ns": 72532.01408450704, "total_median_ns": 71689.0, "total_std_ns": 6176.057571652827, "total_mad_ns": 3362.0, "total_cv": 0.085149401262415, "total_min_ns": 62476.0, "total_max_ns": 94610.0, "total_p5_ns": 64836.5, "total_p25_ns": 68367.0, "total_p50_ns": 71689.0, "total_p75_ns": 75209.0, "total_p95_ns": 85049.0, "total_p99_ns": 91064.49999999999, "total_ci_low_ns": 71118.22112676056, "total_ci_high_ns": 74011.63309859156, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 0.290263319044703, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.6122075433679738}, {"serializer": "Ceras", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "4.1.7", "avg_time_ser_ns": 65466.85365853659, "avg_time_deser_ns": 111959.67073170732, "avg_time_total_ns": 177426.5243902439, "median_size_bytes": 11196.0, "avg_ops_per_sec": 5636.135878988039, "min_ops_per_sec": 5025.933818503478, "max_ops_per_sec": 6247.422938038059, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 65466.85365853659, "ser_median_ns": 64963.0, "ser_std_ns": 4001.706380236864, "ser_mad_ns": 2638.5, "ser_cv": 0.061125686612481016, "ser_min_ns": 58329.0, "ser_max_ns": 78139.0, "ser_p5_ns": 60290.7, "ser_p25_ns": 62311.25, "ser_p50_ns": 64963.0, "ser_p75_ns": 67558.25, "ser_p95_ns": 72328.25, "ser_p99_ns": 74846.34999999999, "ser_ci_low_ns": 64640.884451219514, "ser_ci_high_ns": 66332.56646341462, "deser_mean_ns": 111959.67073170732, "deser_median_ns": 111554.0, "deser_std_ns": 5590.751375229149, "deser_mad_ns": 3643.5, "deser_cv": 0.04993540387079605, "deser_min_ns": 101737.0, "deser_max_ns": 123775.0, "deser_p5_ns": 103547.95, "deser_p25_ns": 107961.25, "deser_p50_ns": 111554.0, "deser_p75_ns": 115323.5, "deser_p95_ns": 122170.5, "deser_p99_ns": 123669.7, "deser_ci_low_ns": 110820.40792682926, "deser_ci_high_ns": 113229.47743902438, "total_mean_ns": 177426.5243902439, "total_median_ns": 176692.0, "total_std_ns": 8928.560629751631, "total_mad_ns": 5692.5, "total_cv": 0.05032258091306321, "total_min_ns": 160066.0, "total_max_ns": 198968.0, "total_p5_ns": 164529.45, "total_p25_ns": 170411.0, "total_p50_ns": 176692.0, "total_p75_ns": 182154.75, "total_p95_ns": 193457.25, "total_p99_ns": 195786.31999999998, "total_ci_low_ns": 175596.8756097561, "total_ci_high_ns": 179394.543597561, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.15464454492018}, {"serializer": "ServiceStack Json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "6.11.0", "avg_time_ser_ns": 187079.4945054945, "avg_time_deser_ns": 277378.83516483515, "avg_time_total_ns": 464458.3296703297, "median_size_bytes": 25456.0, "avg_ops_per_sec": 2153.045679490333, "min_ops_per_sec": 1986.9299746269041, "max_ops_per_sec": 2382.926806020226, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 187079.4945054945, "ser_median_ns": 186003.0, "ser_std_ns": 10548.75683499522, "ser_mad_ns": 6045.0, "ser_cv": 0.05638649421668928, "ser_min_ns": 169918.0, "ser_max_ns": 212754.0, "ser_p5_ns": 171815.0, "ser_p25_ns": 180759.0, "ser_p50_ns": 186003.0, "ser_p75_ns": 192165.5, "ser_p95_ns": 206906.5, "ser_p99_ns": 208451.99999999997, "ser_ci_low_ns": 184916.3815934066, "ser_ci_high_ns": 189300.61978021977, "deser_mean_ns": 277378.83516483515, "deser_median_ns": 279944.0, "deser_std_ns": 14048.799735417286, "deser_mad_ns": 8980.0, "deser_cv": 0.050648419974323726, "deser_min_ns": 244260.0, "deser_max_ns": 311913.0, "deser_p5_ns": 254375.0, "deser_p25_ns": 267649.5, "deser_p50_ns": 279944.0, "deser_p75_ns": 286461.0, "deser_p95_ns": 299838.0, "deser_p99_ns": 306770.39999999997, "deser_ci_low_ns": 274443.19999999995, "deser_ci_high_ns": 280262.5491758242, "total_mean_ns": 464458.3296703297, "total_median_ns": 466432.0, "total_std_ns": 20746.072020213556, "total_mad_ns": 13307.0, "total_cv": 0.044667240729516076, "total_min_ns": 419652.0, "total_max_ns": 503289.0, "total_p5_ns": 427289.0, "total_p25_ns": 451122.5, "total_p50_ns": 466432.0, "total_p75_ns": 478756.5, "total_p95_ns": 497560.5, "total_p99_ns": 502807.5, "total_ci_low_ns": 460226.6516483517, "total_ci_high_ns": 468681.5252747253, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.493978790622748}, {"serializer": "YAXLib", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "4.4.0", "avg_time_ser_ns": 1130377.3513513512, "avg_time_deser_ns": 1181036.6621621621, "avg_time_total_ns": 2311414.0135135134, "median_size_bytes": 62495.0, "avg_ops_per_sec": 432.6356049386103, "min_ops_per_sec": 341.0613282838067, "max_ops_per_sec": 488.72821677246816, "runs": 74, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 25, "ser_mean_ns": 1130377.3513513512, "ser_median_ns": 1081075.5, "ser_std_ns": 159989.74301972828, "ser_mad_ns": 66931.0, "ser_cv": 0.14153657876147524, "ser_min_ns": 953701.0, "ser_max_ns": 1699875.0, "ser_p5_ns": 972073.1, "ser_p25_ns": 1022606.0, "ser_p50_ns": 1081075.5, "ser_p75_ns": 1174891.5, "ser_p95_ns": 1472206.9499999993, "ser_p99_ns": 1624660.9099999997, "ser_ci_low_ns": 1095479.6976351351, "ser_ci_high_ns": 1169245.4766891892, "deser_mean_ns": 1181036.6621621621, "deser_median_ns": 1178736.0, "deser_std_ns": 55543.75790885711, "deser_mad_ns": 41449.5, "deser_cv": 0.04702966443664107, "deser_min_ns": 1080094.0, "deser_max_ns": 1298317.0, "deser_p5_ns": 1099280.0, "deser_p25_ns": 1140325.25, "deser_p50_ns": 1178736.0, "deser_p75_ns": 1224119.75, "deser_p95_ns": 1273881.15, "deser_p99_ns": 1291447.7, "deser_ci_low_ns": 1168185.2077702703, "deser_ci_high_ns": 1193392.5162162161, "total_mean_ns": 2311414.0135135134, "total_median_ns": 2262579.0, "total_std_ns": 190979.85368077783, "total_mad_ns": 110632.5, "total_cv": 0.0826246845282706, "total_min_ns": 2046127.0, "total_max_ns": 2932024.0, "total_p5_ns": 2092693.75, "total_p25_ns": 2167268.75, "total_p50_ns": 2262579.0, "total_p75_ns": 2399738.75, "total_p95_ns": 2683983.2499999995, "total_p99_ns": 2854403.0999999996, "total_ci_low_ns": 2269994.399662162, "total_ci_high_ns": 2354479.1067567565, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.510456393765715}, {"serializer": "SharpYaml", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "3.13.0", "avg_time_ser_ns": 274921.67532467534, "avg_time_deser_ns": 1170136.3506493506, "avg_time_total_ns": 1445058.025974026, "median_size_bytes": 29155.0, "avg_ops_per_sec": 692.0137337225339, "min_ops_per_sec": 623.8649556962301, "max_ops_per_sec": 760.6899762360451, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 274921.67532467534, "ser_median_ns": 274058.0, "ser_std_ns": 12657.87987406883, "ser_mad_ns": 8890.0, "ser_cv": 0.04604176756569014, "ser_min_ns": 251232.0, "ser_max_ns": 312732.0, "ser_p5_ns": 256417.6, "ser_p25_ns": 264818.0, "ser_p50_ns": 274058.0, "ser_p75_ns": 282154.0, "ser_p95_ns": 295655.2, "ser_p99_ns": 306215.75999999995, "ser_ci_low_ns": 272085.7191558442, "ser_ci_high_ns": 277681.53409090906, "deser_mean_ns": 1170136.3506493506, "deser_median_ns": 1166180.0, "deser_std_ns": 59489.04657289226, "deser_mad_ns": 37999.0, "deser_cv": 0.05083941417586049, "deser_min_ns": 1056239.0, "deser_max_ns": 1342077.0, "deser_p5_ns": 1084203.2, "deser_p25_ns": 1131245.0, "deser_p50_ns": 1166180.0, "deser_p75_ns": 1207664.0, "deser_p95_ns": 1277980.4, "deser_p99_ns": 1307462.0399999998, "deser_ci_low_ns": 1156564.2457792207, "deser_ci_high_ns": 1183645.6321428572, "total_mean_ns": 1445058.025974026, "total_median_ns": 1439268.0, "total_std_ns": 66375.68412829594, "total_mad_ns": 45153.0, "total_cv": 0.0459328850020096, "total_min_ns": 1314596.0, "total_max_ns": 1602911.0, "total_p5_ns": 1345140.2, "total_p25_ns": 1401936.0, "total_p50_ns": 1439268.0, "total_p75_ns": 1493574.0, "total_p95_ns": 1561925.4, "total_p99_ns": 1590945.5599999998, "total_ci_low_ns": 1431070.0675324674, "total_ci_high_ns": 1460462.2876623375, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.528746090967964}, {"serializer": "Apache.Avro", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.12.1", "avg_time_ser_ns": 317568.26136363635, "avg_time_deser_ns": 228426.32954545456, "avg_time_total_ns": 545994.5909090909, "median_size_bytes": 10448.0, "avg_ops_per_sec": 1831.5199759304974, "min_ops_per_sec": 1432.9542214114886, "max_ops_per_sec": 2269.956893518592, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 317568.26136363635, "ser_median_ns": 317846.5, "ser_std_ns": 53846.939320162805, "ser_mad_ns": 36360.5, "ser_cv": 0.16956020443902153, "ser_min_ns": 215030.0, "ser_max_ns": 452569.0, "ser_p5_ns": 234658.75, "ser_p25_ns": 273367.0, "ser_p50_ns": 317846.5, "ser_p75_ns": 352256.25, "ser_p95_ns": 420795.7499999999, "ser_p99_ns": 445957.86999999994, "ser_ci_low_ns": 306799.35767045454, "ser_ci_high_ns": 329473.95085227274, "deser_mean_ns": 228426.32954545456, "deser_median_ns": 227105.5, "deser_std_ns": 13004.025639938369, "deser_mad_ns": 10565.0, "deser_cv": 0.05692875101488989, "deser_min_ns": 209197.0, "deser_max_ns": 268661.0, "deser_p5_ns": 211831.05, "deser_p25_ns": 216783.0, "deser_p50_ns": 227105.5, "deser_p75_ns": 237662.25, "deser_p95_ns": 247707.19999999998, "deser_p99_ns": 262601.44999999995, "deser_ci_low_ns": 225747.07585227274, "deser_ci_high_ns": 231128.28607954545, "total_mean_ns": 545994.5909090909, "total_median_ns": 548003.0, "total_std_ns": 62024.79483621368, "total_mad_ns": 44765.0, "total_cv": 0.11359965074551612, "total_min_ns": 440537.0, "total_max_ns": 697859.0, "total_p5_ns": 452986.85, "total_p25_ns": 496267.0, "total_p50_ns": 548003.0, "total_p75_ns": 579662.5, "total_p95_ns": 663580.4, "total_p99_ns": 687989.72, "total_ci_low_ns": 533204.7997159092, "total_ci_high_ns": 558865.1872159091, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.922693968539216}, {"serializer": "Google.Protobuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "3.35.1", "avg_time_ser_ns": 62588.45569620253, "avg_time_deser_ns": 58076.84810126582, "avg_time_total_ns": 120665.30379746835, "median_size_bytes": 12477.0, "avg_ops_per_sec": 8287.386419533306, "min_ops_per_sec": 6996.431819771917, "max_ops_per_sec": 9330.09889904833, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 62588.45569620253, "ser_median_ns": 61583.0, "ser_std_ns": 4861.72479628443, "ser_mad_ns": 1909.0, "ser_cv": 0.07767766023630152, "ser_min_ns": 54388.0, "ser_max_ns": 78384.0, "ser_p5_ns": 55679.5, "ser_p25_ns": 59789.0, "ser_p50_ns": 61583.0, "ser_p75_ns": 63600.0, "ser_p95_ns": 72011.09999999999, "ser_p99_ns": 76480.02, "ser_ci_low_ns": 61547.51392405063, "ser_ci_high_ns": 63667.91993670886, "deser_mean_ns": 58076.84810126582, "deser_median_ns": 57590.0, "deser_std_ns": 3948.677867300381, "deser_mad_ns": 2784.0, "deser_cv": 0.06799056760820181, "deser_min_ns": 52098.0, "deser_max_ns": 68790.0, "deser_p5_ns": 52945.0, "deser_p25_ns": 55006.0, "deser_p50_ns": 57590.0, "deser_p75_ns": 60648.0, "deser_p95_ns": 65058.099999999984, "deser_p99_ns": 68045.88, "deser_ci_low_ns": 57200.63892405063, "deser_ci_high_ns": 59019.715189873416, "total_mean_ns": 120665.30379746835, "total_median_ns": 118801.0, "total_std_ns": 7820.793525471844, "total_mad_ns": 3941.0, "total_cv": 0.06481393805296938, "total_min_ns": 107180.0, "total_max_ns": 142930.0, "total_p5_ns": 109092.7, "total_p25_ns": 115868.5, "total_p50_ns": 118801.0, "total_p75_ns": 125714.0, "total_p95_ns": 136202.1, "total_p99_ns": 140389.54, "total_ci_low_ns": 118912.52721518987, "total_ci_high_ns": 122397.58892405064, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.601346688842579}, {"serializer": "LightProto", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "1.3.4", "avg_time_ser_ns": 67318.20289855072, "avg_time_deser_ns": 54598.391304347824, "avg_time_total_ns": 121916.59420289854, "median_size_bytes": 12477.0, "avg_ops_per_sec": 8202.32886702658, "min_ops_per_sec": 7337.5108228284635, "max_ops_per_sec": 8981.336782166658, "runs": 69, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 30, "ser_mean_ns": 67318.20289855072, "ser_median_ns": 67104.0, "ser_std_ns": 3152.5419509253825, "ser_mad_ns": 2092.0, "ser_cv": 0.046830453208566755, "ser_min_ns": 61385.0, "ser_max_ns": 76791.0, "ser_p5_ns": 62543.6, "ser_p25_ns": 65212.0, "ser_p50_ns": 67104.0, "ser_p75_ns": 69204.0, "ser_p95_ns": 71961.2, "ser_p99_ns": 76474.12, "ser_ci_low_ns": 66567.64239130435, "ser_ci_high_ns": 68039.28949275363, "deser_mean_ns": 54598.391304347824, "deser_median_ns": 54470.0, "deser_std_ns": 3056.112492238692, "deser_mad_ns": 1589.0, "deser_cv": 0.055974405458267144, "deser_min_ns": 49896.0, "deser_max_ns": 70702.0, "deser_p5_ns": 50834.0, "deser_p25_ns": 52684.0, "deser_p50_ns": 54470.0, "deser_p75_ns": 55954.0, "deser_p95_ns": 59110.4, "deser_p99_ns": 63398.11999999993, "deser_ci_low_ns": 53906.50652173913, "deser_ci_high_ns": 55370.21594202899, "total_mean_ns": 121916.59420289854, "total_median_ns": 121458.0, "total_std_ns": 5263.153023109986, "total_mad_ns": 3226.0, "total_cv": 0.04317011197303325, "total_min_ns": 111342.0, "total_max_ns": 136286.0, "total_p5_ns": 114001.0, "total_p25_ns": 118392.0, "total_p50_ns": 121458.0, "total_p75_ns": 124885.0, "total_p95_ns": 129572.8, "total_p99_ns": 136119.4, "total_ci_low_ns": 120687.19565217392, "total_ci_high_ns": 123150.31739130434, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.939681475405942}, {"serializer": "CsvHelper", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "33.1.0", "avg_time_ser_ns": 1778619.131868132, "avg_time_deser_ns": 748506.7032967033, "avg_time_total_ns": 2527125.835164835, "median_size_bytes": 11089.0, "avg_ops_per_sec": 395.7064527951271, "min_ops_per_sec": 355.06294911024776, "max_ops_per_sec": 442.8293964323893, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 1778619.131868132, "ser_median_ns": 1774812.0, "ser_std_ns": 116560.86997713626, "ser_mad_ns": 80547.0, "ser_cv": 0.06553447440695705, "ser_min_ns": 1561671.0, "ser_max_ns": 2063593.0, "ser_p5_ns": 1582870.0, "ser_p25_ns": 1701996.5, "ser_p50_ns": 1774812.0, "ser_p75_ns": 1855537.5, "ser_p95_ns": 1950357.5, "ser_p99_ns": 2060160.4, "ser_ci_low_ns": 1755315.5703296703, "ser_ci_high_ns": 1804142.7629120878, "deser_mean_ns": 748506.7032967033, "deser_median_ns": 748558.0, "deser_std_ns": 35230.170293685784, "deser_mad_ns": 24245.0, "deser_cv": 0.047067274265572966, "deser_min_ns": 666321.0, "deser_max_ns": 841050.0, "deser_p5_ns": 685977.5, "deser_p25_ns": 729949.5, "deser_p50_ns": 748558.0, "deser_p75_ns": 774409.5, "deser_p95_ns": 796745.5, "deser_p99_ns": 836082.9, "deser_ci_low_ns": 741594.0755494505, "deser_ci_high_ns": 755444.1607142857, "total_mean_ns": 2527125.835164835, "total_median_ns": 2541929.0, "total_std_ns": 136683.7847219522, "total_mad_ns": 85189.0, "total_cv": 0.05408665560693649, "total_min_ns": 2258206.0, "total_max_ns": 2816402.0, "total_p5_ns": 2294392.0, "total_p25_ns": 2448167.5, "total_p50_ns": 2541929.0, "total_p75_ns": 2620521.5, "total_p95_ns": 2739364.0, "total_p99_ns": 2816212.1, "total_ci_low_ns": 2498754.9126373627, "total_ci_high_ns": 2555456.242032967, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.383781695490896}, {"serializer": "fastJson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "2.4.0.4", "avg_time_ser_ns": 173254.3, "avg_time_deser_ns": 353420.75, "avg_time_total_ns": 526675.05, "median_size_bytes": 31872.0, "avg_ops_per_sec": 1898.7039541744002, "min_ops_per_sec": 1695.4123836311326, "max_ops_per_sec": 2148.03390456715, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 173254.3, "ser_median_ns": 170638.0, "ser_std_ns": 12442.647813778283, "ser_mad_ns": 7506.5, "ser_cv": 0.07181725252290005, "ser_min_ns": 152692.0, "ser_max_ns": 206795.0, "ser_p5_ns": 158027.9, "ser_p25_ns": 163470.75, "ser_p50_ns": 170638.0, "ser_p75_ns": 179682.0, "ser_p95_ns": 198331.45, "ser_p99_ns": 203063.03999999998, "ser_ci_low_ns": 170464.639375, "ser_ci_high_ns": 175912.340625, "deser_mean_ns": 353420.75, "deser_median_ns": 353164.0, "deser_std_ns": 19773.064762160862, "deser_mad_ns": 13619.0, "deser_cv": 0.05594766227551965, "deser_min_ns": 311929.0, "deser_max_ns": 405350.0, "deser_p5_ns": 321147.0, "deser_p25_ns": 340282.0, "deser_p50_ns": 353164.0, "deser_p75_ns": 366767.5, "deser_p95_ns": 383115.45, "deser_p99_ns": 404206.08, "deser_ci_low_ns": 349142.535, "deser_ci_high_ns": 357620.0925, "total_mean_ns": 526675.05, "total_median_ns": 526628.5, "total_std_ns": 28273.282877226982, "total_mad_ns": 19511.0, "total_cv": 0.05368259399648223, "total_min_ns": 465542.0, "total_max_ns": 589827.0, "total_p5_ns": 480864.75, "total_p25_ns": 502956.5, "total_p50_ns": 526628.5, "total_p75_ns": 544416.75, "total_p95_ns": 573998.05, "total_p99_ns": 585756.13, "total_ci_low_ns": 520447.9715625, "total_ci_high_ns": 532945.1, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.401752309307216}, {"serializer": "MS Bond Compact", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": ".NET 8.0.28", "avg_time_ser_ns": 46281.59550561798, "avg_time_deser_ns": 52359.449438202246, "avg_time_total_ns": 98641.04494382022, "median_size_bytes": 12249.0, "avg_ops_per_sec": 10137.767706835806, "min_ops_per_sec": 9006.980409817608, "max_ops_per_sec": 11512.911730505763, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 46281.59550561798, "ser_median_ns": 45864.0, "ser_std_ns": 2788.7163009622004, "ser_mad_ns": 1508.0, "ser_cv": 0.06025540542619553, "ser_min_ns": 40384.0, "ser_max_ns": 53144.0, "ser_p5_ns": 42678.2, "ser_p25_ns": 44448.0, "ser_p50_ns": 45864.0, "ser_p75_ns": 47582.0, "ser_p95_ns": 52094.799999999996, "ser_p99_ns": 52918.72, "ser_ci_low_ns": 45721.35646067416, "ser_ci_high_ns": 46857.6143258427, "deser_mean_ns": 52359.449438202246, "deser_median_ns": 52556.0, "deser_std_ns": 2599.25578951866, "deser_mad_ns": 1618.0, "deser_cv": 0.049642534774672474, "deser_min_ns": 45931.0, "deser_max_ns": 59118.0, "deser_p5_ns": 48476.8, "deser_p25_ns": 50606.0, "deser_p50_ns": 52556.0, "deser_p75_ns": 53831.0, "deser_p95_ns": 56583.0, "deser_p99_ns": 58115.68000000001, "deser_ci_low_ns": 51824.26095505618, "deser_ci_high_ns": 52913.79943820225, "total_mean_ns": 98641.04494382022, "total_median_ns": 98463.0, "total_std_ns": 4907.730478795933, "total_mad_ns": 3148.0, "total_cv": 0.04975343156179124, "total_min_ns": 86859.0, "total_max_ns": 111025.0, "total_p5_ns": 91129.0, "total_p25_ns": 95315.0, "total_p50_ns": 98463.0, "total_p75_ns": 101547.0, "total_p95_ns": 107702.4, "total_p99_ns": 111019.72, "total_ci_low_ns": 97640.17106741574, "total_ci_high_ns": 99655.57303370786, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.783749747304365}, {"serializer": "YamlDotNet", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "Stream", "language": "csharp", "serializer_version": "17.1.0", "avg_time_ser_ns": 3799480.871794872, "avg_time_deser_ns": 2990308.858974359, "avg_time_total_ns": 6789789.730769231, "median_size_bytes": 24955.0, "avg_ops_per_sec": 147.27996589766377, "min_ops_per_sec": 135.05267999888716, "max_ops_per_sec": 161.18113535991748, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 3799480.871794872, "ser_median_ns": 3788208.0, "ser_std_ns": 174526.02791600794, "ser_mad_ns": 77069.5, "ser_cv": 0.04593417727447644, "ser_min_ns": 3443673.0, "ser_max_ns": 4202835.0, "ser_p5_ns": 3473976.25, "ser_p25_ns": 3729193.0, "ser_p50_ns": 3788208.0, "ser_p75_ns": 3888066.25, "ser_p95_ns": 4171212.45, "ser_p99_ns": 4196638.81, "ser_ci_low_ns": 3761203.119551282, "ser_ci_high_ns": 3838222.6759615387, "deser_mean_ns": 2990308.858974359, "deser_median_ns": 2961407.5, "deser_std_ns": 135851.09490237705, "deser_mad_ns": 56191.0, "deser_cv": 0.04543045595262437, "deser_min_ns": 2633694.0, "deser_max_ns": 3352667.0, "deser_p5_ns": 2817772.45, "deser_p25_ns": 2919693.75, "deser_p50_ns": 2961407.5, "deser_p75_ns": 3023992.75, "deser_p95_ns": 3268262.3, "deser_p99_ns": 3328572.16, "deser_ci_low_ns": 2961280.9711538465, "deser_ci_high_ns": 3021426.5631410256, "total_mean_ns": 6789789.730769231, "total_median_ns": 6794726.5, "total_std_ns": 231365.13520231674, "total_mad_ns": 121038.0, "total_cv": 0.03407544922250558, "total_min_ns": 6204200.0, "total_max_ns": 7404518.0, "total_p5_ns": 6351123.05, "total_p25_ns": 6676691.0, "total_p50_ns": 6794726.5, "total_p75_ns": 6918100.5, "total_p95_ns": 7152814.2, "total_p99_ns": 7281634.470000001, "total_ci_low_ns": 6738020.787500001, "total_ci_high_ns": 6839529.65448718, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "text_on_stream", "fastest_in_group": "MemoryPack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 42.70615463267815}], "pareto_front": [{"serializer": "BinaryPack", "test_data": "message", "mode": "string", "time": 4683.516853932584, "size": 80.0}, {"serializer": "MS Bond Compact", "test_data": "message", "mode": "string", "time": 7025.857142857143, "size": 72.0}, {"serializer": "Apache.Avro", "test_data": "message", "mode": "string", "time": 18688.59574468085, "size": 60.0}, {"serializer": "NetSerializer", "test_data": "message", "mode": "string", "time": 7268.0224719101125, "size": 64.0}, {"serializer": "Apache.Avro", "test_data": "message", "mode": "Stream", "time": 18750.855670103094, "size": 44.0}, {"serializer": "BinaryPack", "test_data": "message", "mode": "Stream", "time": 5696.355555555556, "size": 58.0}, {"serializer": "NetSerializer", "test_data": "message", "mode": "Stream", "time": 6193.98969072165, "size": 48.0}, {"serializer": "MS Bond Compact", "test_data": "document", "mode": "string", "time": 6137.133333333333, "size": 208.0}, {"serializer": "BinaryPack", "test_data": "document", "mode": "string", "time": 5360.726315789474, "size": 300.0}, {"serializer": "NetSerializer", "test_data": "document", "mode": "string", "time": 7175.425531914893, "size": 184.0}, {"serializer": "Apache.Avro", "test_data": "document", "mode": "string", "time": 20521.666666666668, "size": 152.0}, {"serializer": "Apache.Avro", "test_data": "document", "mode": "Stream", "time": 19315.188235294117, "size": 114.0}, {"serializer": "BinaryPack", "test_data": "document", "mode": "Stream", "time": 5702.193548387097, "size": 224.0}, {"serializer": "NetSerializer", "test_data": "document", "mode": "Stream", "time": 6574.252747252747, "size": 136.0}, {"serializer": "BinaryPack", "test_data": "telemetry", "mode": "string", "time": 3614.3636363636365, "size": 408.0}, {"serializer": "MS Bond Compact", "test_data": "telemetry", "mode": "string", "time": 4561.623655913979, "size": 392.0}, {"serializer": "Google.Protobuf", "test_data": "telemetry", "mode": "string", "time": 9262.155555555555, "size": 388.0}, {"serializer": "Apache.Avro", "test_data": "telemetry", "mode": "string", "time": 17104.939759036144, "size": 384.0}, {"serializer": "BinaryPack", "test_data": "telemetry", "mode": "Stream", "time": 3579.232558139535, "size": 304.0}, {"serializer": "Google.Protobuf", "test_data": "telemetry", "mode": "Stream", "time": 6392.188888888889, "size": 291.0}, {"serializer": "Apache.Avro", "test_data": "telemetry", "mode": "Stream", "time": 24488.51851851852, "size": 288.0}, {"serializer": "ZeroFormatter", "test_data": "telemetry", "mode": "Stream", "time": 5542.427083333333, "size": 303.0}, {"serializer": "ServiceStack", "test_data": "strings", "mode": "string", "time": 8025.18085106383, "size": 344.0}, {"serializer": "CsvHelper", "test_data": "strings", "mode": "string", "time": 775441.6352941176, "size": 341.0}, {"serializer": "SpanJson", "test_data": "strings", "mode": "string", "time": 4838.446808510638, "size": 410.0}, {"serializer": "NetSerializer", "test_data": "strings", "mode": "Stream", "time": 6220.817204301075, "size": 372.0}, {"serializer": "MS Bond Compact", "test_data": "strings", "mode": "Stream", "time": 11802.03409090909, "size": 339.0}, {"serializer": "Google.Protobuf", "test_data": "strings", "mode": "Stream", "time": 6446.0526315789475, "size": 367.0}, {"serializer": "ZeroFormatter", "test_data": "strings", "mode": "Stream", "time": 5448.5161290322585, "size": 435.0}, {"serializer": "GroBuf", "test_data": "strings", "mode": "Stream", "time": 4818.0, "size": 788.0}, {"serializer": "ServiceStack", "test_data": "strings", "mode": "Stream", "time": 11364.872340425532, "size": 344.0}, {"serializer": "Apache.Avro", "test_data": "strings", "mode": "Stream", "time": 14237.181818181818, "size": 337.0}, {"serializer": "MS Bond Compact", "test_data": "event", "mode": "string", "time": 4928.112359550561, "size": 164.0}, {"serializer": "BinaryPack", "test_data": "event", "mode": "string", "time": 4823.417582417583, "size": 196.0}, {"serializer": "Apache.Avro", "test_data": "event", "mode": "string", "time": 15675.0875, "size": 140.0}, {"serializer": "BinaryPack", "test_data": "event", "mode": "Stream", "time": 5171.378947368421, "size": 147.0}, {"serializer": "NetSerializer", "test_data": "event", "mode": "Stream", "time": 6260.632653061224, "size": 123.0}, {"serializer": "ZeroFormatter", "test_data": "event", "mode": "Stream", "time": 5338.5268817204305, "size": 142.0}, {"serializer": "Apache.Avro", "test_data": "event", "mode": "Stream", "time": 15608.972972972973, "size": 105.0}]} \ No newline at end of file diff --git a/dashboard/public/data/stats_csharp_latest.json.gz b/dashboard/public/data/stats_csharp_latest.json.gz new file mode 100644 index 00000000..8904d71b Binary files /dev/null and b/dashboard/public/data/stats_csharp_latest.json.gz differ diff --git a/dashboard/public/data/stats_go_latest.json b/dashboard/public/data/stats_go_latest.json deleted file mode 100644 index bb7433df..00000000 --- a/dashboard/public/data/stats_go_latest.json +++ /dev/null @@ -1 +0,0 @@ -{"schema_version": "2.0", "generated": "2026-07-24T20:24:03.972694", "language": "go", "questions": {"Q1": "How fast?", "Q2": "How compact?", "Q3": "How stable?", "Q4": "Under which workloads does it win?"}, "groups": [{"serializer": "encoding/gob", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 2624.6746987951806, "avg_time_deser_ns": 11313.048192771084, "avg_time_total_ns": 13937.722891566265, "median_size_bytes": 173.0, "avg_ops_per_sec": 71747.7315182598, "min_ops_per_sec": 52662.067512770554, "max_ops_per_sec": 89589.67926894821, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 2624.6746987951806, "ser_median_ns": 2559.0, "ser_std_ns": 419.76988784605095, "ser_mad_ns": 274.0, "ser_cv": 0.15993215770272037, "ser_min_ns": 1846.0, "ser_max_ns": 3742.0, "ser_p5_ns": 2065.0, "ser_p25_ns": 2302.0, "ser_p50_ns": 2559.0, "ser_p75_ns": 2859.0, "ser_p95_ns": 3445.899999999999, "ser_p99_ns": 3609.9799999999987, "ser_ci_low_ns": 2543.439759036145, "ser_ci_high_ns": 2716.604819277108, "deser_mean_ns": 11313.048192771084, "deser_median_ns": 11074.0, "deser_std_ns": 1303.7463364643656, "deser_mad_ns": 741.0, "deser_cv": 0.11524271038617563, "deser_min_ns": 9316.0, "deser_max_ns": 15857.0, "deser_p5_ns": 9723.9, "deser_p25_ns": 10359.5, "deser_p50_ns": 11074.0, "deser_p75_ns": 11937.5, "deser_p95_ns": 13755.299999999997, "deser_p99_ns": 15092.759999999993, "deser_ci_low_ns": 11034.25391566265, "deser_ci_high_ns": 11585.065361445782, "total_mean_ns": 13937.722891566265, "total_median_ns": 13673.0, "total_std_ns": 1563.548374638738, "total_mad_ns": 894.0, "total_cv": 0.11218104899939166, "total_min_ns": 11162.0, "total_max_ns": 18989.0, "total_p5_ns": 12041.8, "total_p25_ns": 12794.5, "total_p50_ns": 13673.0, "total_p75_ns": 14821.5, "total_p95_ns": 16448.8, "total_p99_ns": 18329.719999999994, "total_ci_low_ns": 13611.178614457831, "total_ci_high_ns": 14273.755120481928, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.899360594850457}, {"serializer": "jsoniter", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.1.12", "avg_time_ser_ns": 894.6860465116279, "avg_time_deser_ns": 1157.8372093023256, "avg_time_total_ns": 2052.5232558139537, "median_size_bytes": 168.0, "avg_ops_per_sec": 487205.198366163, "min_ops_per_sec": 301477.2384684956, "max_ops_per_sec": 772200.7722007722, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 894.6860465116279, "ser_median_ns": 877.0, "ser_std_ns": 209.22885087459542, "ser_mad_ns": 142.0, "ser_cv": 0.23385728624066135, "ser_min_ns": 475.0, "ser_max_ns": 1463.0, "ser_p5_ns": 594.5, "ser_p25_ns": 743.25, "ser_p50_ns": 877.0, "ser_p75_ns": 1028.25, "ser_p95_ns": 1258.0, "ser_p99_ns": 1408.6000000000004, "ser_ci_low_ns": 850.9299418604651, "ser_ci_high_ns": 936.4084302325582, "deser_mean_ns": 1157.8372093023256, "deser_median_ns": 1130.5, "deser_std_ns": 234.34157374954725, "deser_mad_ns": 124.5, "deser_cv": 0.20239596021512707, "deser_min_ns": 701.0, "deser_max_ns": 1854.0, "deser_p5_ns": 800.75, "deser_p25_ns": 1018.75, "deser_p50_ns": 1130.5, "deser_p75_ns": 1264.5, "deser_p95_ns": 1588.0, "deser_p99_ns": 1769.8500000000006, "deser_ci_low_ns": 1111.636918604651, "deser_ci_high_ns": 1207.8389534883722, "total_mean_ns": 2052.5232558139537, "total_median_ns": 2011.0, "total_std_ns": 433.9488375032838, "total_mad_ns": 253.0, "total_cv": 0.21142212945655323, "total_min_ns": 1295.0, "total_max_ns": 3317.0, "total_p5_ns": 1361.25, "total_p25_ns": 1763.5, "total_p50_ns": 2011.0, "total_p75_ns": 2265.5, "total_p95_ns": 2882.75, "total_p99_ns": 3039.050000000002, "total_ci_low_ns": 1958.6880813953487, "total_ci_high_ns": 2145.9325581395346, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.016654441553839}, {"serializer": "mongo-bson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.17.9", "avg_time_ser_ns": 1478.1627906976744, "avg_time_deser_ns": 1620.639534883721, "avg_time_total_ns": 3098.8023255813955, "median_size_bytes": 144.0, "avg_ops_per_sec": 322705.3212606521, "min_ops_per_sec": 190294.95718363463, "max_ops_per_sec": 487804.8780487805, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 1478.1627906976744, "ser_median_ns": 1338.5, "ser_std_ns": 405.21296827471195, "ser_mad_ns": 211.0, "ser_cv": 0.2741328430297291, "ser_min_ns": 894.0, "ser_max_ns": 2708.0, "ser_p5_ns": 1019.25, "ser_p25_ns": 1199.75, "ser_p50_ns": 1338.5, "ser_p75_ns": 1641.0, "ser_p95_ns": 2333.25, "ser_p99_ns": 2672.3, "ser_ci_low_ns": 1396.5787790697675, "ser_ci_high_ns": 1572.0369186046512, "deser_mean_ns": 1620.639534883721, "deser_median_ns": 1535.0, "deser_std_ns": 344.9615123558568, "deser_mad_ns": 162.0, "deser_cv": 0.21285517533706683, "deser_min_ns": 1093.0, "deser_max_ns": 2740.0, "deser_p5_ns": 1223.25, "deser_p25_ns": 1393.0, "deser_p50_ns": 1535.0, "deser_p75_ns": 1785.75, "deser_p95_ns": 2255.25, "deser_p99_ns": 2575.950000000001, "deser_ci_low_ns": 1550.8933139534884, "deser_ci_high_ns": 1694.0061046511628, "total_mean_ns": 3098.8023255813955, "total_median_ns": 2881.5, "total_std_ns": 695.836708697521, "total_mad_ns": 399.0, "total_cv": 0.2245502086251883, "total_min_ns": 2050.0, "total_max_ns": 5255.0, "total_p5_ns": 2277.25, "total_p25_ns": 2621.25, "total_p50_ns": 2881.5, "total_p75_ns": 3412.25, "total_p95_ns": 4422.75, "total_p99_ns": 4887.800000000003, "total_ci_low_ns": 2954.906686046512, "total_ci_high_ns": 3251.639825581395, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.651486280514269}, {"serializer": "shamaton/msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "3.1.2", "avg_time_ser_ns": 656.6195652173913, "avg_time_deser_ns": 650.7717391304348, "avg_time_total_ns": 1307.391304347826, "median_size_bytes": 114.0, "avg_ops_per_sec": 764881.9421350183, "min_ops_per_sec": 505561.17290192115, "max_ops_per_sec": 1392757.6601671309, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 656.6195652173913, "ser_median_ns": 660.5, "ser_std_ns": 150.76383120566047, "ser_mad_ns": 107.5, "ser_cv": 0.2296060598738725, "ser_min_ns": 310.0, "ser_max_ns": 1061.0, "ser_p5_ns": 396.3, "ser_p25_ns": 551.25, "ser_p50_ns": 660.5, "ser_p75_ns": 766.25, "ser_p95_ns": 876.0500000000001, "ser_p99_ns": 991.8400000000003, "ser_ci_low_ns": 625.0720108695652, "ser_ci_high_ns": 688.046195652174, "deser_mean_ns": 650.7717391304348, "deser_median_ns": 638.0, "deser_std_ns": 113.95893835986287, "deser_mad_ns": 66.5, "deser_cv": 0.175113532914222, "deser_min_ns": 408.0, "deser_max_ns": 924.0, "deser_p5_ns": 476.2, "deser_p25_ns": 575.75, "deser_p50_ns": 638.0, "deser_p75_ns": 713.5, "deser_p95_ns": 857.75, "deser_p99_ns": 917.63, "deser_ci_low_ns": 626.8801630434783, "deser_ci_high_ns": 672.75, "total_mean_ns": 1307.391304347826, "total_median_ns": 1308.5, "total_std_ns": 253.29676624798543, "total_mad_ns": 174.5, "total_cv": 0.19374212250427886, "total_min_ns": 718.0, "total_max_ns": 1978.0, "total_p5_ns": 877.05, "total_p25_ns": 1137.75, "total_p50_ns": 1308.5, "total_p75_ns": 1498.25, "total_p95_ns": 1695.5500000000002, "total_p99_ns": 1830.5800000000006, "total_ci_low_ns": 1255.1964673913044, "total_ci_high_ns": 1358.9421195652174, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.9411764705882353, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.6903340056475966}, {"serializer": "ugorji/json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 954.9550561797753, "avg_time_deser_ns": 1308.1797752808989, "avg_time_total_ns": 2263.1348314606744, "median_size_bytes": 168.0, "avg_ops_per_sec": 441864.9680516733, "min_ops_per_sec": 274725.2747252747, "max_ops_per_sec": 702247.1910112359, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 954.9550561797753, "ser_median_ns": 928.0, "ser_std_ns": 224.93771411176553, "ser_mad_ns": 142.0, "ser_cv": 0.23554795867735562, "ser_min_ns": 584.0, "ser_max_ns": 1640.0, "ser_p5_ns": 619.8, "ser_p25_ns": 808.0, "ser_p50_ns": 928.0, "ser_p75_ns": 1092.0, "ser_p95_ns": 1308.1999999999998, "ser_p99_ns": 1581.0400000000004, "ser_ci_low_ns": 909.2421348314607, "ser_ci_high_ns": 1001.8308988764045, "deser_mean_ns": 1308.1797752808989, "deser_median_ns": 1264.0, "deser_std_ns": 274.1364773660671, "deser_mad_ns": 172.0, "deser_cv": 0.20955566088552557, "deser_min_ns": 820.0, "deser_max_ns": 2000.0, "deser_p5_ns": 902.2, "deser_p25_ns": 1110.0, "deser_p50_ns": 1264.0, "deser_p75_ns": 1462.0, "deser_p95_ns": 1788.6, "deser_p99_ns": 1964.8000000000002, "deser_ci_low_ns": 1253.8176966292135, "deser_ci_high_ns": 1362.0373595505616, "total_mean_ns": 2263.1348314606744, "total_median_ns": 2172.0, "total_std_ns": 479.9440116734081, "total_mad_ns": 305.0, "total_cv": 0.2120704453846624, "total_min_ns": 1424.0, "total_max_ns": 3640.0, "total_p5_ns": 1546.2, "total_p25_ns": 1950.0, "total_p50_ns": 2172.0, "total_p75_ns": 2567.0, "total_p95_ns": 3087.2, "total_p99_ns": 3465.760000000001, "total_ci_low_ns": 2164.6233146067416, "total_ci_high_ns": 2361.6971910112356, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.225161419723045}, {"serializer": "ugorji/cbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 598.6987951807229, "avg_time_deser_ns": 856.6867469879518, "avg_time_total_ns": 1455.3855421686746, "median_size_bytes": 124.0, "avg_ops_per_sec": 687103.1565353444, "min_ops_per_sec": 441501.1037527594, "max_ops_per_sec": 1027749.2291880781, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 598.6987951807229, "ser_median_ns": 599.0, "ser_std_ns": 135.23905978382737, "ser_mad_ns": 79.0, "ser_cv": 0.22588831123838188, "ser_min_ns": 337.0, "ser_max_ns": 980.0, "ser_p5_ns": 370.1, "ser_p25_ns": 524.0, "ser_p50_ns": 599.0, "ser_p75_ns": 677.0, "ser_p95_ns": 821.4, "ser_p99_ns": 905.3799999999993, "ser_ci_low_ns": 570.4319277108433, "ser_ci_high_ns": 625.8593373493976, "deser_mean_ns": 856.6867469879518, "deser_median_ns": 871.0, "deser_std_ns": 131.8806673928055, "deser_mad_ns": 76.0, "deser_cv": 0.15394269592297105, "deser_min_ns": 607.0, "deser_max_ns": 1285.0, "deser_p5_ns": 659.5, "deser_p25_ns": 755.0, "deser_p50_ns": 871.0, "deser_p75_ns": 921.0, "deser_p95_ns": 1055.3999999999999, "deser_p99_ns": 1234.9799999999996, "deser_ci_low_ns": 829.708734939759, "deser_ci_high_ns": 885.7849397590362, "total_mean_ns": 1455.3855421686746, "total_median_ns": 1457.0, "total_std_ns": 249.2876598417932, "total_mad_ns": 162.0, "total_cv": 0.1712863379626053, "total_min_ns": 973.0, "total_max_ns": 2265.0, "total_p5_ns": 1035.4, "total_p25_ns": 1297.0, "total_p50_ns": 1457.0, "total_p75_ns": 1617.5, "total_p95_ns": 1830.6999999999998, "total_p99_ns": 2062.459999999998, "total_ci_low_ns": 1400.8927710843373, "total_ci_high_ns": 1509.197891566265, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.9899362154500354, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.482475478892735}, {"serializer": "ugorji/msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 557.8390804597701, "avg_time_deser_ns": 871.264367816092, "avg_time_total_ns": 1429.103448275862, "median_size_bytes": 124.0, "avg_ops_per_sec": 699739.4073931087, "min_ops_per_sec": 437445.3193350831, "max_ops_per_sec": 1148105.625717566, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 557.8390804597701, "ser_median_ns": 513.0, "ser_std_ns": 145.97792709565584, "ser_mad_ns": 89.0, "ser_cv": 0.2616846546056634, "ser_min_ns": 333.0, "ser_max_ns": 967.0, "ser_p5_ns": 362.6, "ser_p25_ns": 451.5, "ser_p50_ns": 513.0, "ser_p75_ns": 649.5, "ser_p95_ns": 811.7, "ser_p99_ns": 891.32, "ser_ci_low_ns": 528.9522988505747, "ser_ci_high_ns": 589.7129310344827, "deser_mean_ns": 871.264367816092, "deser_median_ns": 857.0, "deser_std_ns": 173.1840974875026, "deser_mad_ns": 108.0, "deser_cv": 0.1987733045041257, "deser_min_ns": 515.0, "deser_max_ns": 1319.0, "deser_p5_ns": 608.0, "deser_p25_ns": 754.0, "deser_p50_ns": 857.0, "deser_p75_ns": 965.5, "deser_p95_ns": 1142.0, "deser_p99_ns": 1297.5, "deser_ci_low_ns": 834.917816091954, "deser_ci_high_ns": 908.4399425287355, "total_mean_ns": 1429.103448275862, "total_median_ns": 1398.0, "total_std_ns": 308.584880881908, "total_mad_ns": 222.0, "total_cv": 0.21592900167877938, "total_min_ns": 871.0, "total_max_ns": 2286.0, "total_p5_ns": 998.2, "total_p25_ns": 1197.5, "total_p50_ns": 1398.0, "total_p75_ns": 1623.5, "total_p95_ns": 1941.0, "total_p99_ns": 2159.58, "total_ci_low_ns": 1365.1833333333334, "total_ci_high_ns": 1491.6488505747127, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.9768762677484787, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.8179210049871437}, {"serializer": "linkedin/goavro", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "2.15.0", "avg_time_ser_ns": 539.5795454545455, "avg_time_deser_ns": 566.5681818181819, "avg_time_total_ns": 1106.1477272727273, "median_size_bytes": 44.0, "avg_ops_per_sec": 904038.3805385192, "min_ops_per_sec": 603500.3017501509, "max_ops_per_sec": 1438848.9208633094, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 539.5795454545455, "ser_median_ns": 533.0, "ser_std_ns": 117.34933814474371, "ser_mad_ns": 89.0, "ser_cv": 0.217482925609954, "ser_min_ns": 307.0, "ser_max_ns": 899.0, "ser_p5_ns": 358.35, "ser_p25_ns": 446.75, "ser_p50_ns": 533.0, "ser_p75_ns": 624.0, "ser_p95_ns": 731.1999999999999, "ser_p99_ns": 829.3999999999996, "ser_ci_low_ns": 515.190340909091, "ser_ci_high_ns": 563.5130681818182, "deser_mean_ns": 566.5681818181819, "deser_median_ns": 555.0, "deser_std_ns": 97.39796257570072, "deser_mad_ns": 66.5, "deser_cv": 0.1719086346556553, "deser_min_ns": 380.0, "deser_max_ns": 818.0, "deser_p5_ns": 432.1, "deser_p25_ns": 494.25, "deser_p50_ns": 555.0, "deser_p75_ns": 623.5, "deser_p95_ns": 786.7999999999997, "deser_p99_ns": 812.78, "deser_ci_low_ns": 547.1119318181818, "deser_ci_high_ns": 587.0681818181819, "total_mean_ns": 1106.1477272727273, "total_median_ns": 1095.0, "total_std_ns": 186.8047440740423, "total_mad_ns": 138.5, "total_cv": 0.16887865830960974, "total_min_ns": 695.0, "total_max_ns": 1657.0, "total_p5_ns": 820.8, "total_p25_ns": 978.75, "total_p50_ns": 1095.0, "total_p75_ns": 1252.25, "total_p95_ns": 1420.55, "total_p99_ns": 1487.349999999999, "total_ci_low_ns": 1068.8559659090909, "total_ci_high_ns": 1143.1957386363636, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.8740641711229946, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.1506893910947484}, {"serializer": "segmentio/encoding/json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "0.5.4", "avg_time_ser_ns": 525.0666666666667, "avg_time_deser_ns": 1050.0444444444445, "avg_time_total_ns": 1575.111111111111, "median_size_bytes": 168.0, "avg_ops_per_sec": 634875.8465011286, "min_ops_per_sec": 437636.761487965, "max_ops_per_sec": 949667.616334283, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 525.0666666666667, "ser_median_ns": 501.5, "ser_std_ns": 119.92514519248331, "ser_mad_ns": 84.5, "ser_cv": 0.22839984483078332, "ser_min_ns": 307.0, "ser_max_ns": 816.0, "ser_p5_ns": 349.05, "ser_p25_ns": 444.0, "ser_p50_ns": 501.5, "ser_p75_ns": 607.5, "ser_p95_ns": 741.6499999999999, "ser_p99_ns": 815.11, "ser_ci_low_ns": 501.34416666666664, "ser_ci_high_ns": 549.4566666666666, "deser_mean_ns": 1050.0444444444445, "deser_median_ns": 1031.5, "deser_std_ns": 162.02239483930353, "deser_mad_ns": 110.0, "deser_cv": 0.15430051146551804, "deser_min_ns": 728.0, "deser_max_ns": 1506.0, "deser_p5_ns": 837.5, "deser_p25_ns": 929.0, "deser_p50_ns": 1031.5, "deser_p75_ns": 1159.25, "deser_p95_ns": 1343.55, "deser_p99_ns": 1442.81, "deser_ci_low_ns": 1016.1088888888888, "deser_ci_high_ns": 1084.0352777777778, "total_mean_ns": 1575.111111111111, "total_median_ns": 1527.5, "total_std_ns": 268.82822904056906, "total_mad_ns": 186.5, "total_cv": 0.1706725494755306, "total_min_ns": 1053.0, "total_max_ns": 2285.0, "total_p5_ns": 1234.25, "total_p25_ns": 1365.0, "total_p50_ns": 1527.5, "total_p75_ns": 1745.25, "total_p95_ns": 2060.75, "total_p99_ns": 2254.74, "total_ci_low_ns": 1522.0105555555556, "total_ci_high_ns": 1634.7044444444446, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.9989542483660131, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.800761137716384}, {"serializer": "kelindar/binary", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.0.19", "avg_time_ser_ns": 323.18823529411765, "avg_time_deser_ns": 421.0235294117647, "avg_time_total_ns": 744.2117647058824, "median_size_bytes": 44.0, "avg_ops_per_sec": 1343703.563185684, "min_ops_per_sec": 873362.4454148471, "max_ops_per_sec": 2092050.209205021, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 323.18823529411765, "ser_median_ns": 309.0, "ser_std_ns": 78.40956181329864, "ser_mad_ns": 52.0, "ser_cv": 0.2426126735149934, "ser_min_ns": 193.0, "ser_max_ns": 524.0, "ser_p5_ns": 225.2, "ser_p25_ns": 261.0, "ser_p50_ns": 309.0, "ser_p75_ns": 365.0, "ser_p95_ns": 457.59999999999997, "ser_p99_ns": 514.76, "ser_ci_low_ns": 307.4702941176471, "ser_ci_high_ns": 340.44882352941175, "deser_mean_ns": 421.0235294117647, "deser_median_ns": 426.0, "deser_std_ns": 74.70544961166269, "deser_mad_ns": 51.0, "deser_cv": 0.17743770690449964, "deser_min_ns": 261.0, "deser_max_ns": 637.0, "deser_p5_ns": 304.4, "deser_p25_ns": 362.0, "deser_p50_ns": 426.0, "deser_p75_ns": 462.0, "deser_p95_ns": 543.0, "deser_p99_ns": 623.56, "deser_ci_low_ns": 404.9529411764706, "deser_ci_high_ns": 436.77941176470586, "total_mean_ns": 744.2117647058824, "total_median_ns": 730.0, "total_std_ns": 144.93357214991445, "total_mad_ns": 89.0, "total_cv": 0.19474775732306945, "total_min_ns": 478.0, "total_max_ns": 1145.0, "total_p5_ns": 522.2, "total_p25_ns": 644.0, "total_p50_ns": 730.0, "total_p75_ns": 822.0, "total_p95_ns": 1003.8, "total_p99_ns": 1119.8, "total_ci_low_ns": 714.4432352941177, "total_ci_high_ns": 775.6855882352941, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "pelletier/go-toml", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "2.4.3", "avg_time_ser_ns": 1580.5172413793102, "avg_time_deser_ns": 2185.885057471264, "avg_time_total_ns": 3766.402298850575, "median_size_bytes": 157.0, "avg_ops_per_sec": 265505.36046167416, "min_ops_per_sec": 195427.00801250731, "max_ops_per_sec": 362056.4808110065, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 1580.5172413793102, "ser_median_ns": 1557.0, "ser_std_ns": 212.69767069218912, "ser_mad_ns": 121.0, "ser_cv": 0.13457472346620453, "ser_min_ns": 1172.0, "ser_max_ns": 2098.0, "ser_p5_ns": 1293.2, "ser_p25_ns": 1441.5, "ser_p50_ns": 1557.0, "ser_p75_ns": 1678.0, "ser_p95_ns": 1983.7, "ser_p99_ns": 2060.16, "ser_ci_low_ns": 1534.0324712643678, "ser_ci_high_ns": 1624.1752873563219, "deser_mean_ns": 2185.885057471264, "deser_median_ns": 2155.0, "deser_std_ns": 336.55313085812116, "deser_mad_ns": 219.0, "deser_cv": 0.15396652706316674, "deser_min_ns": 1590.0, "deser_max_ns": 3019.0, "deser_p5_ns": 1711.9, "deser_p25_ns": 1935.0, "deser_p50_ns": 2155.0, "deser_p75_ns": 2361.5, "deser_p95_ns": 2915.9, "deser_p99_ns": 2970.84, "deser_ci_low_ns": 2115.706896551724, "deser_ci_high_ns": 2260.6152298850575, "total_mean_ns": 3766.402298850575, "total_median_ns": 3725.0, "total_std_ns": 538.2830685198253, "total_mad_ns": 321.0, "total_cv": 0.14291704013777226, "total_min_ns": 2762.0, "total_max_ns": 5117.0, "total_p5_ns": 2979.4, "total_p25_ns": 3398.5, "total_p50_ns": 3725.0, "total_p75_ns": 4039.5, "total_p95_ns": 4869.900000000001, "total_p99_ns": 5012.08, "total_ci_low_ns": 3653.9224137931033, "total_ci_high_ns": 3880.178735632184, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.594636229514551}, {"serializer": "goccy/go-yaml", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.19.2", "avg_time_ser_ns": 19758.68888888889, "avg_time_deser_ns": 25023.766666666666, "avg_time_total_ns": 44782.455555555556, "median_size_bytes": 155.0, "avg_ops_per_sec": 22330.173448381694, "min_ops_per_sec": 16991.775980425475, "max_ops_per_sec": 27303.00879156883, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 19758.68888888889, "ser_median_ns": 19132.5, "ser_std_ns": 2551.0254630948516, "ser_mad_ns": 1453.5, "ser_cv": 0.12910904551614233, "ser_min_ns": 15609.0, "ser_max_ns": 27404.0, "ser_p5_ns": 16446.6, "ser_p25_ns": 17826.75, "ser_p50_ns": 19132.5, "ser_p75_ns": 21386.25, "ser_p95_ns": 24455.899999999998, "ser_p99_ns": 27125.43, "ser_ci_low_ns": 19251.186944444446, "ser_ci_high_ns": 20282.408055555552, "deser_mean_ns": 25023.766666666666, "deser_median_ns": 24358.0, "deser_std_ns": 2994.964294398032, "deser_mad_ns": 2297.0, "deser_cv": 0.11968479143419784, "deser_min_ns": 20630.0, "deser_max_ns": 31763.0, "deser_p5_ns": 21164.5, "deser_p25_ns": 22583.0, "deser_p50_ns": 24358.0, "deser_p75_ns": 27366.25, "deser_p95_ns": 30550.85, "deser_p99_ns": 31482.65, "deser_ci_low_ns": 24457.1925, "deser_ci_high_ns": 25620.186944444446, "total_mean_ns": 44782.455555555556, "total_median_ns": 43758.5, "total_std_ns": 5065.518259721855, "total_mad_ns": 3844.5, "total_cv": 0.11311390134553363, "total_min_ns": 36626.0, "total_max_ns": 58852.0, "total_p5_ns": 37717.4, "total_p25_ns": 40821.75, "total_p50_ns": 43758.5, "total_p75_ns": 48418.0, "total_p95_ns": 53065.4, "total_p99_ns": 55312.47, "total_ci_low_ns": 43783.40972222222, "total_ci_high_ns": 45834.45861111111, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.06359733009535}, {"serializer": "protobuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.36.11", "avg_time_ser_ns": 619.1739130434783, "avg_time_deser_ns": 487.0326086956522, "avg_time_total_ns": 1106.2065217391305, "median_size_bytes": 50.0, "avg_ops_per_sec": 903990.3312338485, "min_ops_per_sec": 560224.0896358544, "max_ops_per_sec": 1934235.9767891683, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 619.1739130434783, "ser_median_ns": 604.0, "ser_std_ns": 181.35198055288475, "ser_mad_ns": 135.5, "ser_cv": 0.29289344517353766, "ser_min_ns": 246.0, "ser_max_ns": 1027.0, "ser_p5_ns": 354.5, "ser_p25_ns": 477.0, "ser_p50_ns": 604.0, "ser_p75_ns": 748.5, "ser_p95_ns": 961.8000000000001, "ser_p99_ns": 1011.5300000000001, "ser_ci_low_ns": 581.6190217391304, "ser_ci_high_ns": 654.7616847826087, "deser_mean_ns": 487.0326086956522, "deser_median_ns": 477.0, "deser_std_ns": 116.66072260925411, "deser_mad_ns": 72.0, "deser_cv": 0.23953369964629137, "deser_min_ns": 271.0, "deser_max_ns": 767.0, "deser_p5_ns": 316.1, "deser_p25_ns": 405.75, "deser_p50_ns": 477.0, "deser_p75_ns": 551.25, "deser_p95_ns": 681.6500000000001, "deser_p99_ns": 765.1800000000001, "deser_ci_low_ns": 462.28070652173915, "deser_ci_high_ns": 511.6035326086956, "total_mean_ns": 1106.2065217391305, "total_median_ns": 1090.0, "total_std_ns": 290.83111439434515, "total_mad_ns": 220.0, "total_cv": 0.26290851543445337, "total_min_ns": 517.0, "total_max_ns": 1785.0, "total_p5_ns": 671.95, "total_p25_ns": 913.75, "total_p50_ns": 1090.0, "total_p75_ns": 1321.0, "total_p95_ns": 1620.6, "total_p99_ns": 1754.97, "total_ci_low_ns": 1049.8089673913043, "total_ci_high_ns": 1168.1532608695652, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.7301790281329923, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.550147817891115}, {"serializer": "goccy/go-json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "0.10.6", "avg_time_ser_ns": 628.8791208791209, "avg_time_deser_ns": 844.8241758241758, "avg_time_total_ns": 1473.7032967032967, "median_size_bytes": 168.0, "avg_ops_per_sec": 678562.6402797766, "min_ops_per_sec": 442477.8761061947, "max_ops_per_sec": 1168224.2990654206, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 628.8791208791209, "ser_median_ns": 621.0, "ser_std_ns": 174.82777780590786, "ser_mad_ns": 120.0, "ser_cv": 0.27799901761965495, "ser_min_ns": 312.0, "ser_max_ns": 1043.0, "ser_p5_ns": 378.0, "ser_p25_ns": 502.0, "ser_p50_ns": 621.0, "ser_p75_ns": 741.5, "ser_p95_ns": 952.0, "ser_p99_ns": 975.4999999999995, "ser_ci_low_ns": 593.3145604395605, "ser_ci_high_ns": 664.7206043956044, "deser_mean_ns": 844.8241758241758, "deser_median_ns": 834.0, "deser_std_ns": 181.01544399467954, "deser_mad_ns": 115.0, "deser_cv": 0.21426404354265585, "deser_min_ns": 532.0, "deser_max_ns": 1283.0, "deser_p5_ns": 581.5, "deser_p25_ns": 698.5, "deser_p50_ns": 834.0, "deser_p75_ns": 940.5, "deser_p95_ns": 1175.0, "deser_p99_ns": 1231.6999999999996, "deser_ci_low_ns": 808.5038461538462, "deser_ci_high_ns": 881.1552197802198, "total_mean_ns": 1473.7032967032967, "total_median_ns": 1458.0, "total_std_ns": 338.6842677350591, "total_mad_ns": 222.0, "total_cv": 0.22981849093552445, "total_min_ns": 856.0, "total_max_ns": 2260.0, "total_p5_ns": 980.5, "total_p25_ns": 1232.5, "total_p50_ns": 1458.0, "total_p75_ns": 1671.0, "total_p95_ns": 2054.5, "total_p99_ns": 2200.5999999999995, "total_ci_low_ns": 1404.4236263736263, "total_ci_high_ns": 1540.8101648351646, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.9705235940530058, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.7557313331098108}, {"serializer": "fxamacker/cbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "2.9.2", "avg_time_ser_ns": 495.6818181818182, "avg_time_deser_ns": 1162.2272727272727, "avg_time_total_ns": 1657.909090909091, "median_size_bytes": 124.0, "avg_ops_per_sec": 603169.3809288808, "min_ops_per_sec": 386100.3861003861, "max_ops_per_sec": 901713.2551848512, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 495.6818181818182, "ser_median_ns": 492.5, "ser_std_ns": 121.02745441879291, "ser_mad_ns": 90.5, "ser_cv": 0.2441635944258087, "ser_min_ns": 292.0, "ser_max_ns": 806.0, "ser_p5_ns": 318.35, "ser_p25_ns": 405.25, "ser_p50_ns": 492.5, "ser_p75_ns": 585.25, "ser_p95_ns": 725.6499999999996, "ser_p99_ns": 780.7699999999999, "ser_ci_low_ns": 470.7821022727273, "ser_ci_high_ns": 520.4014204545454, "deser_mean_ns": 1162.2272727272727, "deser_median_ns": 1146.0, "deser_std_ns": 204.14558290044837, "deser_mad_ns": 104.0, "deser_cv": 0.17565031185458424, "deser_min_ns": 797.0, "deser_max_ns": 1784.0, "deser_p5_ns": 860.95, "deser_p25_ns": 1042.0, "deser_p50_ns": 1146.0, "deser_p75_ns": 1240.0, "deser_p95_ns": 1528.8999999999999, "deser_p99_ns": 1738.7599999999998, "deser_ci_low_ns": 1120.4713068181818, "deser_ci_high_ns": 1207.3451704545453, "total_mean_ns": 1657.909090909091, "total_median_ns": 1631.0, "total_std_ns": 315.466909438832, "total_mad_ns": 182.5, "total_cv": 0.1902799804697676, "total_min_ns": 1109.0, "total_max_ns": 2590.0, "total_p5_ns": 1203.6, "total_p25_ns": 1460.75, "total_p50_ns": 1631.0, "total_p75_ns": 1816.0, "total_p95_ns": 2264.899999999999, "total_p99_ns": 2496.9099999999994, "total_ci_low_ns": 1594.1005681818183, "total_ci_high_ns": 1724.8923295454547, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.9991978609625668, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.684674912358256}, {"serializer": "encoding/json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 721.6551724137931, "avg_time_deser_ns": 2612.3333333333335, "avg_time_total_ns": 3333.9885057471265, "median_size_bytes": 168.0, "avg_ops_per_sec": 299941.04607025516, "min_ops_per_sec": 208768.26722338205, "max_ops_per_sec": 429368.82782310003, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 721.6551724137931, "ser_median_ns": 705.0, "ser_std_ns": 133.58377108523942, "ser_mad_ns": 94.0, "ser_cv": 0.18510748095718382, "ser_min_ns": 452.0, "ser_max_ns": 1069.0, "ser_p5_ns": 538.9, "ser_p25_ns": 619.5, "ser_p50_ns": 705.0, "ser_p75_ns": 808.0, "ser_p95_ns": 963.3000000000001, "ser_p99_ns": 1021.7, "ser_ci_low_ns": 694.6192528735633, "ser_ci_high_ns": 750.2431034482759, "deser_mean_ns": 2612.3333333333335, "deser_median_ns": 2533.0, "deser_std_ns": 395.7978009347781, "deser_mad_ns": 246.0, "deser_cv": 0.15151121638437337, "deser_min_ns": 1877.0, "deser_max_ns": 3776.0, "deser_p5_ns": 2122.2, "deser_p25_ns": 2329.0, "deser_p50_ns": 2533.0, "deser_p75_ns": 2816.0, "deser_p95_ns": 3430.4000000000005, "deser_p99_ns": 3687.42, "deser_ci_low_ns": 2528.4554597701153, "deser_ci_high_ns": 2690.8511494252875, "total_mean_ns": 3333.9885057471265, "total_median_ns": 3244.0, "total_std_ns": 520.256767872854, "total_mad_ns": 312.0, "total_cv": 0.15604635918091372, "total_min_ns": 2329.0, "total_max_ns": 4790.0, "total_p5_ns": 2642.0, "total_p25_ns": 2959.0, "total_p50_ns": 3244.0, "total_p75_ns": 3620.0, "total_p95_ns": 4409.400000000001, "total_p99_ns": 4748.72, "total_ci_low_ns": 3223.0784482758622, "total_ci_high_ns": 3442.979310344828, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.7178526850823035}, {"serializer": "hamba/avro", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "2.31.0", "avg_time_ser_ns": 458.19354838709677, "avg_time_deser_ns": 539.0322580645161, "avg_time_total_ns": 997.2258064516129, "median_size_bytes": 44.0, "avg_ops_per_sec": 1002781.9111082357, "min_ops_per_sec": 639795.2655150351, "max_ops_per_sec": 1930501.9305019304, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 458.19354838709677, "ser_median_ns": 441.0, "ser_std_ns": 122.44131318846416, "ser_mad_ns": 85.0, "ser_cv": 0.2672261833879463, "ser_min_ns": 260.0, "ser_max_ns": 809.0, "ser_p5_ns": 295.6, "ser_p25_ns": 358.0, "ser_p50_ns": 441.0, "ser_p75_ns": 526.0, "ser_p95_ns": 666.3999999999999, "ser_p99_ns": 789.68, "ser_ci_low_ns": 434.05779569892474, "ser_ci_high_ns": 482.48817204301076, "deser_mean_ns": 539.0322580645161, "deser_median_ns": 552.0, "deser_std_ns": 130.2579757729039, "deser_mad_ns": 102.0, "deser_cv": 0.24165154093118021, "deser_min_ns": 246.0, "deser_max_ns": 836.0, "deser_p5_ns": 332.8, "deser_p25_ns": 424.0, "deser_p50_ns": 552.0, "deser_p75_ns": 636.0, "deser_p95_ns": 736.1999999999998, "deser_p99_ns": 835.08, "deser_ci_low_ns": 512.200806451613, "deser_ci_high_ns": 564.7430107526882, "total_mean_ns": 997.2258064516129, "total_median_ns": 997.0, "total_std_ns": 233.10657802407158, "total_mad_ns": 163.0, "total_cv": 0.23375505980287956, "total_min_ns": 518.0, "total_max_ns": 1563.0, "total_p5_ns": 627.0, "total_p25_ns": 818.0, "total_p50_ns": 997.0, "total_p75_ns": 1152.0, "total_p95_ns": 1395.6, "total_p99_ns": 1479.2799999999997, "total_ci_low_ns": 951.2954301075268, "total_ci_high_ns": 1044.9475806451612, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.6304870335230867, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.2851488055130038}, {"serializer": "sonic", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.15.2", "avg_time_ser_ns": 611.0681818181819, "avg_time_deser_ns": 933.1136363636364, "avg_time_total_ns": 1544.1818181818182, "median_size_bytes": 168.0, "avg_ops_per_sec": 647592.134699164, "min_ops_per_sec": 392003.1360250882, "max_ops_per_sec": 1328021.2483399734, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 611.0681818181819, "ser_median_ns": 623.5, "ser_std_ns": 163.4308736751396, "ser_mad_ns": 104.0, "ser_cv": 0.2674511266301983, "ser_min_ns": 239.0, "ser_max_ns": 1030.0, "ser_p5_ns": 328.7, "ser_p25_ns": 495.0, "ser_p50_ns": 623.5, "ser_p75_ns": 722.25, "ser_p95_ns": 888.4999999999995, "ser_p99_ns": 955.1799999999996, "ser_ci_low_ns": 576.4644886363636, "ser_ci_high_ns": 643.6053977272727, "deser_mean_ns": 933.1136363636364, "deser_median_ns": 911.5, "deser_std_ns": 238.09161917685606, "deser_mad_ns": 155.5, "deser_cv": 0.2551582249989445, "deser_min_ns": 488.0, "deser_max_ns": 1607.0, "deser_p5_ns": 580.5, "deser_p25_ns": 776.5, "deser_p50_ns": 911.5, "deser_p75_ns": 1095.5, "deser_p95_ns": 1347.4499999999998, "deser_p99_ns": 1548.7099999999996, "deser_ci_low_ns": 883.071590909091, "deser_ci_high_ns": 982.5471590909091, "total_mean_ns": 1544.1818181818182, "total_median_ns": 1541.5, "total_std_ns": 375.6010828774661, "total_mad_ns": 245.0, "total_cv": 0.2432363070559359, "total_min_ns": 753.0, "total_max_ns": 2551.0, "total_p5_ns": 955.05, "total_p25_ns": 1294.0, "total_p50_ns": 1541.5, "total_p75_ns": 1772.25, "total_p95_ns": 2190.5499999999993, "total_p99_ns": 2392.659999999999, "total_ci_low_ns": 1469.5258522727274, "total_ci_high_ns": 1621.2295454545454, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.9668449197860962, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.779749651638147}, {"serializer": "vmihailenco/msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "5.4.1", "avg_time_ser_ns": 682.7272727272727, "avg_time_deser_ns": 1129.1477272727273, "avg_time_total_ns": 1811.875, "median_size_bytes": 118.0, "avg_ops_per_sec": 551914.4532597447, "min_ops_per_sec": 388048.1179666279, "max_ops_per_sec": 910746.8123861566, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 682.7272727272727, "ser_median_ns": 677.0, "ser_std_ns": 140.61308512161668, "ser_mad_ns": 89.5, "ser_cv": 0.2059579142926476, "ser_min_ns": 387.0, "ser_max_ns": 1052.0, "ser_p5_ns": 492.5, "ser_p25_ns": 584.75, "ser_p50_ns": 677.0, "ser_p75_ns": 760.5, "ser_p95_ns": 943.1499999999999, "ser_p99_ns": 1036.34, "ser_ci_low_ns": 652.9431818181819, "ser_ci_high_ns": 711.353409090909, "deser_mean_ns": 1129.1477272727273, "deser_median_ns": 1108.0, "deser_std_ns": 188.9684361998924, "deser_mad_ns": 124.0, "deser_cv": 0.16735492764646034, "deser_min_ns": 711.0, "deser_max_ns": 1592.0, "deser_p5_ns": 869.35, "deser_p25_ns": 995.0, "deser_p50_ns": 1108.0, "deser_p75_ns": 1240.5, "deser_p95_ns": 1517.55, "deser_p99_ns": 1585.04, "deser_ci_low_ns": 1090.3576704545453, "deser_ci_high_ns": 1169.1826704545456, "total_mean_ns": 1811.875, "total_median_ns": 1796.5, "total_std_ns": 312.0461508933515, "total_mad_ns": 190.5, "total_cv": 0.17222278076211192, "total_min_ns": 1098.0, "total_max_ns": 2577.0, "total_p5_ns": 1366.75, "total_p25_ns": 1590.0, "total_p50_ns": 1796.5, "total_p75_ns": 1964.25, "total_p95_ns": 2369.95, "total_p99_ns": 2566.56, "total_ci_low_ns": 1747.1582386363636, "total_ci_high_ns": 1879.95, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.9994652406417113, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.344674047479556}, {"serializer": "goccy/go-json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "0.10.6", "avg_time_ser_ns": 1004.2659574468086, "avg_time_deser_ns": 1487.1170212765958, "avg_time_total_ns": 2491.3829787234044, "median_size_bytes": 169.0, "avg_ops_per_sec": 401383.4920363807, "min_ops_per_sec": 178284.8992690319, "max_ops_per_sec": 935453.6950420954, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 1004.2659574468086, "ser_median_ns": 860.0, "ser_std_ns": 474.9709481898259, "ser_mad_ns": 292.0, "ser_cv": 0.4729533493272702, "ser_min_ns": 386.0, "ser_max_ns": 2447.0, "ser_p5_ns": 456.1, "ser_p25_ns": 650.0, "ser_p50_ns": 860.0, "ser_p75_ns": 1315.0, "ser_p95_ns": 1898.0999999999997, "ser_p99_ns": 2090.809999999997, "ser_ci_low_ns": 906.7098404255319, "ser_ci_high_ns": 1100.4132978723403, "deser_mean_ns": 1487.1170212765958, "deser_median_ns": 1200.5, "deser_std_ns": 644.236663526605, "deser_mad_ns": 351.5, "deser_cv": 0.4332118147458016, "deser_min_ns": 675.0, "deser_max_ns": 3162.0, "deser_p5_ns": 745.15, "deser_p25_ns": 1002.5, "deser_p50_ns": 1200.5, "deser_p75_ns": 2093.5, "deser_p95_ns": 2577.0999999999995, "deser_p99_ns": 2857.8899999999976, "deser_ci_low_ns": 1360.6414893617023, "deser_ci_high_ns": 1619.3228723404254, "total_mean_ns": 2491.3829787234044, "total_median_ns": 2070.0, "total_std_ns": 1108.0894640561844, "total_mad_ns": 597.5, "total_cv": 0.44476881857159284, "total_min_ns": 1069.0, "total_max_ns": 5609.0, "total_p5_ns": 1233.9, "total_p25_ns": 1660.25, "total_p50_ns": 2070.0, "total_p75_ns": 3500.0, "total_p95_ns": 4336.75, "total_p99_ns": 4779.439999999994, "total_ci_low_ns": 2263.3787234042557, "total_ci_high_ns": 2715.5231382978723, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.49868392191270017, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 0.8612095955933525}, {"serializer": "mongo-bson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.17.9", "avg_time_ser_ns": 2028.1340206185566, "avg_time_deser_ns": 2391.278350515464, "avg_time_total_ns": 4419.412371134021, "median_size_bytes": 144.0, "avg_ops_per_sec": 226274.4265576195, "min_ops_per_sec": 104405.93025683859, "max_ops_per_sec": 456829.60255824577, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 2028.1340206185566, "ser_median_ns": 1626.0, "ser_std_ns": 931.9109134468672, "ser_mad_ns": 486.0, "ser_cv": 0.45949178110164807, "ser_min_ns": 831.0, "ser_max_ns": 4656.0, "ser_p5_ns": 1020.8, "ser_p25_ns": 1275.0, "ser_p50_ns": 1626.0, "ser_p75_ns": 2955.0, "ser_p95_ns": 3555.999999999997, "ser_p99_ns": 4269.119999999997, "ser_ci_low_ns": 1850.3878865979384, "ser_ci_high_ns": 2217.908505154639, "deser_mean_ns": 2391.278350515464, "deser_median_ns": 1944.0, "deser_std_ns": 942.9836153387029, "deser_mad_ns": 431.0, "deser_cv": 0.39434288991719985, "deser_min_ns": 1281.0, "deser_max_ns": 5200.0, "deser_p5_ns": 1394.2, "deser_p25_ns": 1606.0, "deser_p50_ns": 1944.0, "deser_p75_ns": 3166.0, "deser_p95_ns": 3981.5999999999995, "deser_p99_ns": 4933.119999999998, "deser_ci_low_ns": 2212.439432989691, "deser_ci_high_ns": 2580.745360824742, "total_mean_ns": 4419.412371134021, "total_median_ns": 3589.0, "total_std_ns": 1843.153823119138, "total_mad_ns": 945.0, "total_cv": 0.417058574383767, "total_min_ns": 2189.0, "total_max_ns": 9578.0, "total_p5_ns": 2491.8, "total_p25_ns": 2902.0, "total_p50_ns": 3589.0, "total_p75_ns": 6341.0, "total_p95_ns": 7420.999999999999, "total_p99_ns": 9457.999999999998, "total_ci_low_ns": 4069.5376288659795, "total_ci_high_ns": 4798.7280927835045, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.8986077160165798, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.939308541902982}, {"serializer": "ugorji/json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 2216.9893617021276, "avg_time_deser_ns": 2982.436170212766, "avg_time_total_ns": 5199.425531914893, "median_size_bytes": 168.0, "avg_ops_per_sec": 192328.93977648922, "min_ops_per_sec": 76452.59938837921, "max_ops_per_sec": 406504.0650406504, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 2216.9893617021276, "ser_median_ns": 1640.0, "ser_std_ns": 1050.6400250567276, "ser_mad_ns": 381.5, "ser_cv": 0.4739039542571745, "ser_min_ns": 1064.0, "ser_max_ns": 5474.0, "ser_p5_ns": 1221.65, "ser_p25_ns": 1393.5, "ser_p50_ns": 1640.0, "ser_p75_ns": 3240.25, "ser_p95_ns": 4251.849999999999, "ser_p99_ns": 4761.619999999994, "ser_ci_low_ns": 2014.2449468085108, "ser_ci_high_ns": 2434.7696808510636, "deser_mean_ns": 2982.436170212766, "deser_median_ns": 2355.5, "deser_std_ns": 1351.40093426387, "deser_mad_ns": 514.0, "deser_cv": 0.4531198178727365, "deser_min_ns": 1396.0, "deser_max_ns": 7606.0, "deser_p5_ns": 1680.45, "deser_p25_ns": 1936.5, "deser_p50_ns": 2355.5, "deser_p75_ns": 4142.0, "deser_p95_ns": 5410.749999999999, "deser_p99_ns": 6907.569999999995, "deser_ci_low_ns": 2725.665957446809, "deser_ci_high_ns": 3272.021276595745, "total_mean_ns": 5199.425531914893, "total_median_ns": 4007.5, "total_std_ns": 2345.555336904439, "total_mad_ns": 861.0, "total_cv": 0.4511181711339168, "total_min_ns": 2460.0, "total_max_ns": 13080.0, "total_p5_ns": 2956.3, "total_p25_ns": 3387.25, "total_p50_ns": 4007.5, "total_p75_ns": 7313.75, "total_p95_ns": 9706.5, "total_p99_ns": 10594.109999999982, "total_ci_low_ns": 4760.319148936171, "total_ci_high_ns": 5681.084574468084, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.9650142575126124, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.027310565029232}, {"serializer": "vmihailenco/msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "5.4.1", "avg_time_ser_ns": 1412.8989898989898, "avg_time_deser_ns": 1596.1515151515152, "avg_time_total_ns": 3009.050505050505, "median_size_bytes": 118.0, "avg_ops_per_sec": 332330.7463007224, "min_ops_per_sec": 163212.01240411293, "max_ops_per_sec": 679347.8260869565, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 1412.8989898989898, "ser_median_ns": 1172.0, "ser_std_ns": 592.8907132483289, "ser_mad_ns": 277.0, "ser_cv": 0.41962710532528263, "ser_min_ns": 703.0, "ser_max_ns": 2855.0, "ser_p5_ns": 755.7, "ser_p25_ns": 964.5, "ser_p50_ns": 1172.0, "ser_p75_ns": 1977.5, "ser_p95_ns": 2474.2, "ser_p99_ns": 2796.2, "ser_ci_low_ns": 1288.294696969697, "ser_ci_high_ns": 1530.7136363636364, "deser_mean_ns": 1596.1515151515152, "deser_median_ns": 1406.0, "deser_std_ns": 654.9637373298377, "deser_mad_ns": 377.0, "deser_cv": 0.41033932625604475, "deser_min_ns": 716.0, "deser_max_ns": 3332.0, "deser_p5_ns": 867.3, "deser_p25_ns": 1100.5, "deser_p50_ns": 1406.0, "deser_p75_ns": 2110.0, "deser_p95_ns": 2922.0, "deser_p99_ns": 3231.0599999999995, "deser_ci_low_ns": 1470.098484848485, "deser_ci_high_ns": 1727.940404040404, "total_mean_ns": 3009.050505050505, "total_median_ns": 2554.0, "total_std_ns": 1240.2390764731479, "total_mad_ns": 674.0, "total_cv": 0.41216957787563996, "total_min_ns": 1472.0, "total_max_ns": 6127.0, "total_p5_ns": 1656.7, "total_p25_ns": 2052.5, "total_p50_ns": 2554.0, "total_p75_ns": 4066.5, "total_p95_ns": 5396.2, "total_p99_ns": 6084.86, "total_ci_low_ns": 2763.0873737373736, "total_ci_high_ns": 3248.791666666667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.6573987295636781, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.2900032155778414}, {"serializer": "goccy/go-yaml", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.19.2", "avg_time_ser_ns": 21811.463917525773, "avg_time_deser_ns": 27897.24742268041, "avg_time_total_ns": 49708.71134020619, "median_size_bytes": 155.0, "avg_ops_per_sec": 20117.19823424922, "min_ops_per_sec": 12029.930467001901, "max_ops_per_sec": 27317.179774360095, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 21811.463917525773, "ser_median_ns": 18911.0, "ser_std_ns": 6055.0806061622325, "ser_mad_ns": 2397.0, "ser_cv": 0.2776100049523454, "ser_min_ns": 15408.0, "ser_max_ns": 38355.0, "ser_p5_ns": 16182.6, "ser_p25_ns": 17302.0, "ser_p50_ns": 18911.0, "ser_p75_ns": 28117.0, "ser_p95_ns": 32219.199999999993, "ser_p99_ns": 37044.59999999999, "ser_ci_low_ns": 20613.053350515464, "ser_ci_high_ns": 23006.807216494846, "deser_mean_ns": 27897.24742268041, "deser_median_ns": 24394.0, "deser_std_ns": 7421.3480258964855, "deser_mad_ns": 2382.0, "deser_cv": 0.2660243827447629, "deser_min_ns": 20465.0, "deser_max_ns": 48278.0, "deser_p5_ns": 21060.0, "deser_p25_ns": 22450.0, "deser_p50_ns": 24394.0, "deser_p75_ns": 35720.0, "deser_p95_ns": 42117.399999999994, "deser_p99_ns": 45029.35999999997, "deser_ci_low_ns": 26499.441752577317, "deser_ci_high_ns": 29335.83350515464, "total_mean_ns": 49708.71134020619, "total_median_ns": 43646.0, "total_std_ns": 13368.862361970354, "total_mad_ns": 5142.0, "total_cv": 0.26894405430215085, "total_min_ns": 36607.0, "total_max_ns": 83126.0, "total_p5_ns": 37167.0, "total_p25_ns": 39878.0, "total_p50_ns": 43646.0, "total_p75_ns": 64227.0, "total_p95_ns": 72924.2, "total_p99_ns": 81933.68, "total_ci_low_ns": 47058.46108247423, "total_ci_high_ns": 52428.569329896905, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.053690083664808}, {"serializer": "ugorji/msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 1542.1458333333333, "avg_time_deser_ns": 2078.15625, "avg_time_total_ns": 3620.3020833333335, "median_size_bytes": 124.0, "avg_ops_per_sec": 276220.0437923861, "min_ops_per_sec": 122804.86307257767, "max_ops_per_sec": 533049.0405117271, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 1542.1458333333333, "ser_median_ns": 1168.0, "ser_std_ns": 725.8015964822207, "ser_mad_ns": 224.0, "ser_cv": 0.47064394351953576, "ser_min_ns": 711.0, "ser_max_ns": 3503.0, "ser_p5_ns": 877.75, "ser_p25_ns": 1010.0, "ser_p50_ns": 1168.0, "ser_p75_ns": 2126.5, "ser_p95_ns": 2840.0, "ser_p99_ns": 3414.6499999999996, "ser_ci_low_ns": 1400.43671875, "ser_ci_high_ns": 1690.3497395833333, "deser_mean_ns": 2078.15625, "deser_median_ns": 1624.0, "deser_std_ns": 916.5475877400504, "deser_mad_ns": 265.5, "deser_cv": 0.4410388235918499, "deser_min_ns": 1039.0, "deser_max_ns": 4733.0, "deser_p5_ns": 1275.25, "deser_p25_ns": 1407.0, "deser_p50_ns": 1624.0, "deser_p75_ns": 2687.75, "deser_p95_ns": 3837.0, "deser_p99_ns": 4710.2, "deser_ci_low_ns": 1909.34921875, "deser_ci_high_ns": 2264.269270833333, "total_mean_ns": 3620.3020833333335, "total_median_ns": 2864.5, "total_std_ns": 1614.130778760811, "total_mad_ns": 524.5, "total_cv": 0.44585527439594946, "total_min_ns": 1876.0, "total_max_ns": 8143.0, "total_p5_ns": 2200.25, "total_p25_ns": 2450.5, "total_p50_ns": 2864.5, "total_p75_ns": 4861.5, "total_p95_ns": 6887.0, "total_p99_ns": 8095.5, "total_ci_low_ns": 3296.145572916667, "total_ci_high_ns": 3940.8669270833334, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.7556915807560137, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.5393588878530746}, {"serializer": "kelindar/binary", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.0.19", "avg_time_ser_ns": 565.2577319587629, "avg_time_deser_ns": 1101.8556701030927, "avg_time_total_ns": 1667.1134020618556, "median_size_bytes": 44.0, "avg_ops_per_sec": 599839.2183538433, "min_ops_per_sec": 280033.6040324839, "max_ops_per_sec": 1418439.7163120566, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 565.2577319587629, "ser_median_ns": 441.0, "ser_std_ns": 298.79596153948, "ser_mad_ns": 130.0, "ser_cv": 0.528601281585438, "ser_min_ns": 197.0, "ser_max_ns": 1345.0, "ser_p5_ns": 254.6, "ser_p25_ns": 333.0, "ser_p50_ns": 441.0, "ser_p75_ns": 831.0, "ser_p95_ns": 1091.3999999999994, "ser_p99_ns": 1299.8799999999997, "ser_ci_low_ns": 508.06572164948454, "ser_ci_high_ns": 625.9432989690721, "deser_mean_ns": 1101.8556701030927, "deser_median_ns": 898.0, "deser_std_ns": 482.11214959304164, "deser_mad_ns": 223.0, "deser_cv": 0.4375456447466789, "deser_min_ns": 458.0, "deser_max_ns": 2277.0, "deser_p5_ns": 560.8000000000001, "deser_p25_ns": 759.0, "deser_p50_ns": 898.0, "deser_p75_ns": 1490.0, "deser_p95_ns": 2004.799999999999, "deser_p99_ns": 2273.16, "deser_ci_low_ns": 1009.7737113402062, "deser_ci_high_ns": 1195.2386597938143, "total_mean_ns": 1667.1134020618556, "total_median_ns": 1317.0, "total_std_ns": 774.3932285490882, "total_mad_ns": 325.0, "total_cv": 0.46451142891139424, "total_min_ns": 705.0, "total_max_ns": 3571.0, "total_p5_ns": 842.6, "total_p25_ns": 1098.0, "total_p50_ns": 1317.0, "total_p75_ns": 2334.0, "total_p95_ns": 2990.599999999997, "total_p99_ns": 3482.6799999999994, "total_ci_low_ns": 1511.6355670103094, "total_ci_high_ns": 1825.7268041237114, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "fxamacker/cbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "2.9.2", "avg_time_ser_ns": 826.0105263157894, "avg_time_deser_ns": 1801.578947368421, "avg_time_total_ns": 2627.5894736842106, "median_size_bytes": 124.0, "avg_ops_per_sec": 380576.9546632695, "min_ops_per_sec": 175407.82318891422, "max_ops_per_sec": 878734.6221441125, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 826.0105263157894, "ser_median_ns": 645.0, "ser_std_ns": 395.0197812105014, "ser_mad_ns": 187.0, "ser_cv": 0.4782260862611364, "ser_min_ns": 293.0, "ser_max_ns": 2058.0, "ser_p5_ns": 398.5, "ser_p25_ns": 531.0, "ser_p50_ns": 645.0, "ser_p75_ns": 1205.5, "ser_p95_ns": 1482.8, "ser_p99_ns": 1841.8000000000006, "ser_ci_low_ns": 749.056052631579, "ser_ci_high_ns": 908.7518421052632, "deser_mean_ns": 1801.578947368421, "deser_median_ns": 1462.0, "deser_std_ns": 773.0500187355054, "deser_mad_ns": 290.0, "deser_cv": 0.4290958327775227, "deser_min_ns": 845.0, "deser_max_ns": 3897.0, "deser_p5_ns": 1047.4, "deser_p25_ns": 1241.0, "deser_p50_ns": 1462.0, "deser_p75_ns": 2315.0, "deser_p95_ns": 3250.0999999999995, "deser_p99_ns": 3874.44, "deser_ci_low_ns": 1656.6492105263158, "deser_ci_high_ns": 1962.1847368421052, "total_mean_ns": 2627.5894736842106, "total_median_ns": 2093.0, "total_std_ns": 1148.9958566554635, "total_mad_ns": 460.0, "total_cv": 0.43728134404665087, "total_min_ns": 1138.0, "total_max_ns": 5701.0, "total_p5_ns": 1453.2, "total_p25_ns": 1755.5, "total_p50_ns": 2093.0, "total_p75_ns": 3696.0, "total_p95_ns": 4722.599999999999, "total_p99_ns": 5394.56, "total_ci_low_ns": 2408.7276315789472, "total_ci_high_ns": 2874.517894736842, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.5543136190992947, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 0.9783729909540044}, {"serializer": "encoding/gob", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 3355.8494623655915, "avg_time_deser_ns": 12963.516129032258, "avg_time_total_ns": 16319.36559139785, "median_size_bytes": 173.0, "avg_ops_per_sec": 61276.891825201405, "min_ops_per_sec": 33347.78403975056, "max_ops_per_sec": 91583.47834050737, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 3355.8494623655915, "ser_median_ns": 2769.0, "ser_std_ns": 1246.3689779780352, "ser_mad_ns": 488.0, "ser_cv": 0.371401933237926, "ser_min_ns": 1887.0, "ser_max_ns": 7333.0, "ser_p5_ns": 2150.4, "ser_p25_ns": 2446.0, "ser_p50_ns": 2769.0, "ser_p75_ns": 4606.0, "ser_p95_ns": 5578.799999999999, "ser_p99_ns": 6361.479999999998, "ser_ci_low_ns": 3115.331720430108, "ser_ci_high_ns": 3620.4682795698923, "deser_mean_ns": 12963.516129032258, "deser_median_ns": 11364.0, "deser_std_ns": 3524.5694853133823, "deser_mad_ns": 1282.0, "deser_cv": 0.2718837582513577, "deser_min_ns": 9032.0, "deser_max_ns": 23834.0, "deser_p5_ns": 9471.6, "deser_p25_ns": 10451.0, "deser_p50_ns": 11364.0, "deser_p75_ns": 16280.0, "deser_p95_ns": 19333.199999999997, "deser_p99_ns": 22748.399999999998, "deser_ci_low_ns": 12285.232258064516, "deser_ci_high_ns": 13679.969623655912, "total_mean_ns": 16319.36559139785, "total_median_ns": 14097.0, "total_std_ns": 4700.084679590882, "total_mad_ns": 1713.0, "total_cv": 0.28800658048057687, "total_min_ns": 10919.0, "total_max_ns": 29987.0, "total_p5_ns": 11724.6, "total_p25_ns": 12887.0, "total_p50_ns": 14097.0, "total_p75_ns": 21114.0, "total_p95_ns": 24387.59999999999, "total_p99_ns": 28817.679999999997, "total_ci_low_ns": 15424.309677419355, "total_ci_high_ns": 17228.115591397847, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.377033090174623}, {"serializer": "hamba/avro", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "2.31.0", "avg_time_ser_ns": 861.1276595744681, "avg_time_deser_ns": 931.2978723404256, "avg_time_total_ns": 1792.4255319148936, "median_size_bytes": 44.0, "avg_ops_per_sec": 557903.2334646978, "min_ops_per_sec": 234576.5892563922, "max_ops_per_sec": 1709401.7094017095, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 861.1276595744681, "ser_median_ns": 664.0, "ser_std_ns": 450.8142509993899, "ser_mad_ns": 207.0, "ser_cv": 0.523516166258279, "ser_min_ns": 239.0, "ser_max_ns": 2158.0, "ser_p5_ns": 379.95, "ser_p25_ns": 521.25, "ser_p50_ns": 664.0, "ser_p75_ns": 1175.0, "ser_p95_ns": 1671.2999999999993, "ser_p99_ns": 2153.35, "ser_ci_low_ns": 773.8874999999999, "ser_ci_high_ns": 957.4598404255319, "deser_mean_ns": 931.2978723404256, "deser_median_ns": 805.5, "deser_std_ns": 396.97322110564875, "deser_mad_ns": 275.5, "deser_cv": 0.42625805652065274, "deser_min_ns": 346.0, "deser_max_ns": 2110.0, "deser_p5_ns": 483.7, "deser_p25_ns": 601.5, "deser_p50_ns": 805.5, "deser_p75_ns": 1244.0, "deser_p95_ns": 1661.1999999999998, "deser_p99_ns": 1906.3299999999986, "deser_ci_low_ns": 851.7981382978724, "deser_ci_high_ns": 1008.0984042553192, "total_mean_ns": 1792.4255319148936, "total_median_ns": 1522.0, "total_std_ns": 817.0048168395101, "total_mad_ns": 477.0, "total_cv": 0.45580962907099587, "total_min_ns": 585.0, "total_max_ns": 4263.0, "total_p5_ns": 862.6, "total_p25_ns": 1132.0, "total_p50_ns": 1522.0, "total_p75_ns": 2390.75, "total_p95_ns": 3228.0999999999995, "total_p99_ns": 3689.189999999996, "total_ci_low_ns": 1630.837765957447, "total_ci_high_ns": 1972.3492021276595, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.10418951524457118, "effect_vs_fastest_cliffs_label": "negligible", "effect_vs_fastest_hedges_g": 0.15687150900738936}, {"serializer": "pelletier/go-toml", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "2.4.3", "avg_time_ser_ns": 2129.6702127659573, "avg_time_deser_ns": 3229.340425531915, "avg_time_total_ns": 5359.010638297872, "median_size_bytes": 157.0, "avg_ops_per_sec": 186601.60755299786, "min_ops_per_sec": 92464.17013407305, "max_ops_per_sec": 322580.6451612903, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 2129.6702127659573, "ser_median_ns": 1789.0, "ser_std_ns": 777.7081630310405, "ser_mad_ns": 364.0, "ser_cv": 0.36517774365683336, "ser_min_ns": 1161.0, "ser_max_ns": 4275.0, "ser_p5_ns": 1332.4, "ser_p25_ns": 1516.0, "ser_p50_ns": 1789.0, "ser_p75_ns": 2806.0, "ser_p95_ns": 3570.05, "ser_p99_ns": 4036.9199999999983, "ser_ci_low_ns": 1965.8079787234042, "ser_ci_high_ns": 2291.6853723404256, "deser_mean_ns": 3229.340425531915, "deser_median_ns": 2620.5, "deser_std_ns": 1294.5705856166758, "deser_mad_ns": 553.0, "deser_cv": 0.4008777072189417, "deser_min_ns": 1811.0, "deser_max_ns": 6726.0, "deser_p5_ns": 1943.65, "deser_p25_ns": 2201.75, "deser_p50_ns": 2620.5, "deser_p75_ns": 4429.0, "deser_p95_ns": 5375.699999999997, "deser_p99_ns": 6553.019999999999, "deser_ci_low_ns": 2986.7534574468086, "deser_ci_high_ns": 3478.16914893617, "total_mean_ns": 5359.010638297872, "total_median_ns": 4378.5, "total_std_ns": 2065.7219597369276, "total_mad_ns": 880.5, "total_cv": 0.3854670384444398, "total_min_ns": 3100.0, "total_max_ns": 10815.0, "total_p5_ns": 3229.4, "total_p25_ns": 3689.5, "total_p50_ns": 4378.5, "total_p75_ns": 7219.25, "total_p95_ns": 8963.299999999997, "total_p99_ns": 10749.9, "total_ci_low_ns": 4950.217021276596, "total_ci_high_ns": 5812.656914893617, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.9894713753016012, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.3714974793170387}, {"serializer": "segmentio/encoding/json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "0.5.4", "avg_time_ser_ns": 775.5494505494505, "avg_time_deser_ns": 3224.912087912088, "avg_time_total_ns": 4000.4615384615386, "median_size_bytes": 169.0, "avg_ops_per_sec": 249971.1571741722, "min_ops_per_sec": 125297.5817566721, "max_ops_per_sec": 450247.63619990996, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 775.5494505494505, "ser_median_ns": 665.0, "ser_std_ns": 329.84667359703366, "ser_mad_ns": 177.0, "ser_cv": 0.42530708179001153, "ser_min_ns": 319.0, "ser_max_ns": 1480.0, "ser_p5_ns": 397.0, "ser_p25_ns": 541.5, "ser_p50_ns": 665.0, "ser_p75_ns": 1067.0, "ser_p95_ns": 1412.0, "ser_p99_ns": 1458.3999999999999, "ser_ci_low_ns": 706.3725274725275, "ser_ci_high_ns": 843.0543956043956, "deser_mean_ns": 3224.912087912088, "deser_median_ns": 2857.0, "deser_std_ns": 1061.4361617727773, "deser_mad_ns": 512.0, "deser_cv": 0.3291364641384644, "deser_min_ns": 1901.0, "deser_max_ns": 6559.0, "deser_p5_ns": 2123.0, "deser_p25_ns": 2391.5, "deser_p50_ns": 2857.0, "deser_p75_ns": 4157.5, "deser_p95_ns": 5139.0, "deser_p99_ns": 6355.5999999999985, "deser_ci_low_ns": 3017.323901098901, "deser_ci_high_ns": 3454.3140109890105, "total_mean_ns": 4000.4615384615386, "total_median_ns": 3484.0, "total_std_ns": 1346.162903363914, "total_mad_ns": 689.0, "total_cv": 0.3365018986988209, "total_min_ns": 2221.0, "total_max_ns": 7981.0, "total_p5_ns": 2540.0, "total_p25_ns": 2954.0, "total_p50_ns": 3484.0, "total_p75_ns": 5231.0, "total_p95_ns": 6376.0, "total_p99_ns": 7135.899999999995, "total_ci_low_ns": 3735.2467032967033, "total_ci_high_ns": 4292.6629120879115, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.9032513877874703, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.1336025001295558}, {"serializer": "encoding/json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 1124.4736842105262, "avg_time_deser_ns": 3789.4842105263156, "avg_time_total_ns": 4913.957894736842, "median_size_bytes": 169.0, "avg_ops_per_sec": 203501.94719231577, "min_ops_per_sec": 91979.3966151582, "max_ops_per_sec": 387446.7260751647, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1124.4736842105262, "ser_median_ns": 821.0, "ser_std_ns": 586.869078917499, "ser_mad_ns": 145.0, "ser_cv": 0.5219055698306801, "ser_min_ns": 518.0, "ser_max_ns": 3098.0, "ser_p5_ns": 600.5, "ser_p25_ns": 715.5, "ser_p50_ns": 821.0, "ser_p75_ns": 1557.0, "ser_p95_ns": 2135.8999999999996, "ser_p99_ns": 2831.9800000000005, "ser_ci_low_ns": 1011.7147368421053, "ser_ci_high_ns": 1248.0426315789475, "deser_mean_ns": 3789.4842105263156, "deser_median_ns": 3006.0, "deser_std_ns": 1523.3926364362014, "deser_mad_ns": 503.0, "deser_cv": 0.40200527348934906, "deser_min_ns": 2018.0, "deser_max_ns": 8037.0, "deser_p5_ns": 2267.8, "deser_p25_ns": 2662.0, "deser_p50_ns": 3006.0, "deser_p75_ns": 5069.5, "deser_p95_ns": 6410.499999999999, "deser_p99_ns": 7789.780000000001, "deser_ci_low_ns": 3505.5213157894736, "deser_ci_high_ns": 4091.6355263157893, "total_mean_ns": 4913.957894736842, "total_median_ns": 3806.0, "total_std_ns": 2070.9059889887717, "total_mad_ns": 669.0, "total_cv": 0.4214334012114435, "total_min_ns": 2581.0, "total_max_ns": 10872.0, "total_p5_ns": 2862.1, "total_p25_ns": 3387.5, "total_p50_ns": 3806.0, "total_p75_ns": 6646.5, "total_p95_ns": 8526.099999999999, "total_p99_ns": 9979.940000000002, "total_ci_low_ns": 4501.318947368421, "total_ci_high_ns": 5313.596842105263, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.9609332609875203, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.0768627104837925}, {"serializer": "sonic", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.15.2", "avg_time_ser_ns": 969.6236559139785, "avg_time_deser_ns": 1659.279569892473, "avg_time_total_ns": 2628.9032258064517, "median_size_bytes": 169.0, "avg_ops_per_sec": 380386.7674487091, "min_ops_per_sec": 175315.5680224404, "max_ops_per_sec": 1169590.6432748537, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 969.6236559139785, "ser_median_ns": 757.0, "ser_std_ns": 459.5104416180923, "ser_mad_ns": 241.0, "ser_cv": 0.4739059725032723, "ser_min_ns": 299.0, "ser_max_ns": 2449.0, "ser_p5_ns": 454.6, "ser_p25_ns": 603.0, "ser_p50_ns": 757.0, "ser_p75_ns": 1349.0, "ser_p95_ns": 1704.3999999999999, "ser_p99_ns": 2251.2, "ser_ci_low_ns": 879.4287634408602, "ser_ci_high_ns": 1060.6725806451614, "deser_mean_ns": 1659.279569892473, "deser_median_ns": 1412.0, "deser_std_ns": 737.2507296587924, "deser_mad_ns": 486.0, "deser_cv": 0.4443197777132691, "deser_min_ns": 556.0, "deser_max_ns": 3255.0, "deser_p5_ns": 778.0, "deser_p25_ns": 1070.0, "deser_p50_ns": 1412.0, "deser_p75_ns": 2438.0, "deser_p95_ns": 2997.4, "deser_p99_ns": 3173.12, "deser_ci_low_ns": 1509.3567204301075, "deser_ci_high_ns": 1811.4739247311827, "total_mean_ns": 2628.9032258064517, "total_median_ns": 2178.0, "total_std_ns": 1189.579657808627, "total_mad_ns": 724.0, "total_cv": 0.4525003606565652, "total_min_ns": 855.0, "total_max_ns": 5704.0, "total_p5_ns": 1241.4, "total_p25_ns": 1712.0, "total_p50_ns": 2178.0, "total_p75_ns": 3787.0, "total_p95_ns": 4712.599999999999, "total_p99_ns": 5424.32, "total_ci_low_ns": 2399.276612903226, "total_ci_high_ns": 2876.7400537634408, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.5299855891808004, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 0.9585625710873026}, {"serializer": "ugorji/cbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 1530.8111111111111, "avg_time_deser_ns": 2247.1, "avg_time_total_ns": 3777.911111111111, "median_size_bytes": 124.0, "avg_ops_per_sec": 264696.54012211337, "min_ops_per_sec": 108365.8430862592, "max_ops_per_sec": 521104.7420531527, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 1530.8111111111111, "ser_median_ns": 1166.0, "ser_std_ns": 759.7773608613271, "ser_mad_ns": 262.0, "ser_cv": 0.496323390486666, "ser_min_ns": 736.0, "ser_max_ns": 4018.0, "ser_p5_ns": 833.4, "ser_p25_ns": 973.5, "ser_p50_ns": 1166.0, "ser_p75_ns": 2257.25, "ser_p95_ns": 2780.5999999999995, "ser_p99_ns": 3569.4399999999996, "ser_ci_low_ns": 1373.6730555555557, "ser_ci_high_ns": 1695.6369444444445, "deser_mean_ns": 2247.1, "deser_median_ns": 1794.5, "deser_std_ns": 1036.0831714694757, "deser_mad_ns": 395.5, "deser_cv": 0.4610756848691539, "deser_min_ns": 1036.0, "deser_max_ns": 5952.0, "deser_p5_ns": 1204.65, "deser_p25_ns": 1511.25, "deser_p50_ns": 1794.5, "deser_p75_ns": 3116.0, "deser_p95_ns": 4146.75, "deser_p99_ns": 5291.62, "deser_ci_low_ns": 2048.3458333333333, "deser_ci_high_ns": 2471.3849999999998, "total_mean_ns": 3777.911111111111, "total_median_ns": 2917.5, "total_std_ns": 1714.86624528008, "total_mad_ns": 629.5, "total_cv": 0.45391916189783654, "total_min_ns": 1919.0, "total_max_ns": 9228.0, "total_p5_ns": 2105.0, "total_p25_ns": 2533.5, "total_p50_ns": 2917.5, "total_p75_ns": 5395.0, "total_p95_ns": 6841.1, "total_p99_ns": 7943.73, "total_ci_low_ns": 3430.295, "total_ci_high_ns": 4118.280833333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.781901489117984, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.600176152847303}, {"serializer": "jsoniter", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.1.12", "avg_time_ser_ns": 1496.0729166666667, "avg_time_deser_ns": 1782.2708333333333, "avg_time_total_ns": 3278.34375, "median_size_bytes": 169.0, "avg_ops_per_sec": 305032.0760292449, "min_ops_per_sec": 136761.48796498906, "max_ops_per_sec": 789889.4154818326, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 1496.0729166666667, "ser_median_ns": 1165.5, "ser_std_ns": 728.5305505249904, "ser_mad_ns": 314.0, "ser_cv": 0.4869619270618151, "ser_min_ns": 524.0, "ser_max_ns": 3578.0, "ser_p5_ns": 679.0, "ser_p25_ns": 931.25, "ser_p50_ns": 1165.5, "ser_p75_ns": 2167.75, "ser_p95_ns": 2815.5, "ser_p99_ns": 3277.7999999999993, "ser_ci_low_ns": 1354.66640625, "ser_ci_high_ns": 1637.4002604166667, "deser_mean_ns": 1782.2708333333333, "deser_median_ns": 1510.0, "deser_std_ns": 742.0183212260246, "deser_mad_ns": 416.5, "deser_cv": 0.41633308885959136, "deser_min_ns": 742.0, "deser_max_ns": 3734.0, "deser_p5_ns": 946.75, "deser_p25_ns": 1210.0, "deser_p50_ns": 1510.0, "deser_p75_ns": 2535.25, "deser_p95_ns": 2986.25, "deser_p99_ns": 3429.0499999999993, "deser_ci_low_ns": 1631.6744791666665, "deser_ci_high_ns": 1935.7536458333332, "total_mean_ns": 3278.34375, "total_median_ns": 2687.0, "total_std_ns": 1448.183376205659, "total_mad_ns": 736.5, "total_cv": 0.4417423817150532, "total_min_ns": 1266.0, "total_max_ns": 7312.0, "total_p5_ns": 1633.75, "total_p25_ns": 2148.0, "total_p50_ns": 2687.0, "total_p75_ns": 4709.0, "total_p95_ns": 5692.5, "total_p99_ns": 6237.5499999999965, "total_ci_low_ns": 2980.6466145833338, "total_ci_high_ns": 3564.049479166666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.6836340206185567, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.384075795081877}, {"serializer": "linkedin/goavro", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "2.15.0", "avg_time_ser_ns": 834.0714285714286, "avg_time_deser_ns": 865.8163265306123, "avg_time_total_ns": 1699.8877551020407, "median_size_bytes": 44.0, "avg_ops_per_sec": 588274.1357472582, "min_ops_per_sec": 284981.47620404675, "max_ops_per_sec": 1111111.111111111, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 834.0714285714286, "ser_median_ns": 673.0, "ser_std_ns": 384.01675892338426, "ser_mad_ns": 193.0, "ser_cv": 0.4604123169416271, "ser_min_ns": 393.0, "ser_max_ns": 2022.0, "ser_p5_ns": 427.90000000000003, "ser_p25_ns": 533.75, "ser_p50_ns": 673.0, "ser_p75_ns": 1176.5, "ser_p95_ns": 1558.15, "ser_p99_ns": 1625.2700000000004, "ser_ci_low_ns": 760.7780612244899, "ser_ci_high_ns": 911.8076530612244, "deser_mean_ns": 865.8163265306123, "deser_median_ns": 773.5, "deser_std_ns": 293.5898094715513, "deser_mad_ns": 183.0, "deser_cv": 0.3390901747579496, "deser_min_ns": 455.0, "deser_max_ns": 1568.0, "deser_p5_ns": 533.1, "deser_p25_ns": 625.25, "deser_p50_ns": 773.5, "deser_p75_ns": 1139.0, "deser_p95_ns": 1329.2999999999997, "deser_p99_ns": 1515.6200000000001, "deser_ci_low_ns": 809.4977040816326, "deser_ci_high_ns": 924.3923469387755, "total_mean_ns": 1699.8877551020407, "total_median_ns": 1397.0, "total_std_ns": 653.3677053583363, "total_mad_ns": 332.0, "total_cv": 0.38435932219484453, "total_min_ns": 900.0, "total_max_ns": 3509.0, "total_p5_ns": 960.9, "total_p25_ns": 1196.25, "total_p50_ns": 1397.0, "total_p75_ns": 2301.75, "total_p95_ns": 2856.2999999999997, "total_p99_ns": 2993.9300000000007, "total_ci_low_ns": 1572.6301020408164, "total_ci_high_ns": 1825.6285714285711, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.09309909530822638, "effect_vs_fastest_cliffs_label": "negligible", "effect_vs_fastest_hedges_g": 0.04558796991508006}, {"serializer": "shamaton/msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "3.1.2", "avg_time_ser_ns": 922.8526315789474, "avg_time_deser_ns": 1478.842105263158, "avg_time_total_ns": 2401.694736842105, "median_size_bytes": 114.0, "avg_ops_per_sec": 416372.64913810865, "min_ops_per_sec": 211282.48468201986, "max_ops_per_sec": 809061.4886731391, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 922.8526315789474, "ser_median_ns": 747.0, "ser_std_ns": 427.065293937068, "ser_mad_ns": 202.0, "ser_cv": 0.4627665125756688, "ser_min_ns": 395.0, "ser_max_ns": 2276.0, "ser_p5_ns": 477.9, "ser_p25_ns": 575.0, "ser_p50_ns": 747.0, "ser_p75_ns": 1287.0, "ser_p95_ns": 1650.0, "ser_p99_ns": 1893.420000000001, "ser_ci_low_ns": 840.0042105263158, "ser_ci_high_ns": 1008.1671052631579, "deser_mean_ns": 1478.842105263158, "deser_median_ns": 1283.0, "deser_std_ns": 514.9415855280664, "deser_mad_ns": 265.0, "deser_cv": 0.34820592657958793, "deser_min_ns": 763.0, "deser_max_ns": 2641.0, "deser_p5_ns": 905.1, "deser_p25_ns": 1099.0, "deser_p50_ns": 1283.0, "deser_p75_ns": 1981.0, "deser_p95_ns": 2452.1, "deser_p99_ns": 2640.06, "deser_ci_low_ns": 1382.4542105263158, "deser_ci_high_ns": 1584.7613157894737, "total_mean_ns": 2401.694736842105, "total_median_ns": 2009.0, "total_std_ns": 929.3798787441859, "total_mad_ns": 421.0, "total_cv": 0.3869683621683709, "total_min_ns": 1236.0, "total_max_ns": 4733.0, "total_p5_ns": 1396.7, "total_p25_ns": 1683.5, "total_p50_ns": 2009.0, "total_p75_ns": 3285.5, "total_p95_ns": 4060.2, "total_p99_ns": 4523.38, "total_ci_low_ns": 2220.4957894736845, "total_ci_high_ns": 2591.8231578947366, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.5193705914270211, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 0.8561729317765263}, {"serializer": "protobuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.36.11", "avg_time_ser_ns": 979.5833333333334, "avg_time_deser_ns": 880.2083333333334, "avg_time_total_ns": 1859.7916666666667, "median_size_bytes": 50.0, "avg_ops_per_sec": 537694.6342556289, "min_ops_per_sec": 229147.571035747, "max_ops_per_sec": 1386962.5520110957, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 979.5833333333334, "ser_median_ns": 772.5, "ser_std_ns": 476.6990370556926, "ser_mad_ns": 245.0, "ser_cv": 0.4866344912520894, "ser_min_ns": 315.0, "ser_max_ns": 2382.0, "ser_p5_ns": 429.75, "ser_p25_ns": 648.5, "ser_p50_ns": 772.5, "ser_p75_ns": 1357.75, "ser_p95_ns": 1740.25, "ser_p99_ns": 2340.2, "ser_ci_low_ns": 888.9354166666667, "ser_ci_high_ns": 1074.284375, "deser_mean_ns": 880.2083333333334, "deser_median_ns": 651.0, "deser_std_ns": 436.44236170165624, "deser_mad_ns": 156.0, "deser_cv": 0.4958398428799881, "deser_min_ns": 406.0, "deser_max_ns": 2026.0, "deser_p5_ns": 455.75, "deser_p25_ns": 552.0, "deser_p50_ns": 651.0, "deser_p75_ns": 1305.5, "deser_p95_ns": 1632.75, "deser_p99_ns": 1847.3999999999994, "deser_ci_low_ns": 798.09765625, "deser_ci_high_ns": 970.4630208333332, "total_mean_ns": 1859.7916666666667, "total_median_ns": 1404.5, "total_std_ns": 889.1833973006288, "total_mad_ns": 394.0, "total_cv": 0.47810914159773926, "total_min_ns": 721.0, "total_max_ns": 4364.0, "total_p5_ns": 915.5, "total_p25_ns": 1215.75, "total_p50_ns": 1404.5, "total_p75_ns": 2762.75, "total_p95_ns": 3305.75, "total_p99_ns": 4227.2, "total_ci_low_ns": 1686.2692708333334, "total_ci_high_ns": 2050.4432291666667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.16612972508591065, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.230268074857258}, {"serializer": "goccy/go-json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "0.10.6", "avg_time_ser_ns": 23084.270588235293, "avg_time_deser_ns": 33723.83529411765, "avg_time_total_ns": 56808.10588235294, "median_size_bytes": 16546.0, "avg_ops_per_sec": 17603.121675469265, "min_ops_per_sec": 11334.655709832814, "max_ops_per_sec": 22962.639785069692, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 23084.270588235293, "ser_median_ns": 22138.0, "ser_std_ns": 5167.376495145001, "ser_mad_ns": 3331.0, "ser_cv": 0.22384837655552833, "ser_min_ns": 16591.0, "ser_max_ns": 38321.0, "ser_p5_ns": 17477.4, "ser_p25_ns": 18897.0, "ser_p50_ns": 22138.0, "ser_p75_ns": 25885.0, "ser_p95_ns": 34202.2, "ser_p99_ns": 37482.67999999999, "ser_ci_low_ns": 22020.99705882353, "ser_ci_high_ns": 24193.54, "deser_mean_ns": 33723.83529411765, "deser_median_ns": 32714.0, "deser_std_ns": 4713.224959639426, "deser_mad_ns": 2623.0, "deser_cv": 0.13975945851157504, "deser_min_ns": 26958.0, "deser_max_ns": 50902.0, "deser_p5_ns": 28647.2, "deser_p25_ns": 30381.0, "deser_p50_ns": 32714.0, "deser_p75_ns": 36595.0, "deser_p95_ns": 41370.2, "deser_p99_ns": 47829.279999999984, "deser_ci_low_ns": 32763.593529411763, "deser_ci_high_ns": 34729.02882352941, "total_mean_ns": 56808.10588235294, "total_median_ns": 54275.0, "total_std_ns": 9308.803541890473, "total_mad_ns": 5492.0, "total_cv": 0.16386400140093724, "total_min_ns": 43549.0, "total_max_ns": 88225.0, "total_p5_ns": 46433.8, "total_p25_ns": 49496.0, "total_p50_ns": 54275.0, "total_p75_ns": 62826.0, "total_p95_ns": 74285.4, "total_p99_ns": 85757.91999999998, "total_ci_low_ns": 54996.117941176475, "total_ci_high_ns": 58749.232941176466, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.364990150638284}, {"serializer": "encoding/json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 33105.67816091954, "avg_time_deser_ns": 155960.55172413794, "avg_time_total_ns": 189066.22988505746, "median_size_bytes": 16546.0, "avg_ops_per_sec": 5289.151852279218, "min_ops_per_sec": 3537.994523184478, "max_ops_per_sec": 6486.598687112426, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 33105.67816091954, "ser_median_ns": 30701.0, "ser_std_ns": 8141.037198211112, "ser_mad_ns": 3950.0, "ser_cv": 0.2459106005513402, "ser_min_ns": 23489.0, "ser_max_ns": 57738.0, "ser_p5_ns": 25221.9, "ser_p25_ns": 27507.5, "ser_p50_ns": 30701.0, "ser_p75_ns": 36612.0, "ser_p95_ns": 51185.00000000001, "ser_p99_ns": 57428.4, "ser_ci_low_ns": 31428.358333333334, "ser_ci_high_ns": 34841.316091954024, "deser_mean_ns": 155960.55172413794, "deser_median_ns": 147115.0, "deser_std_ns": 23970.926091664896, "deser_mad_ns": 7938.0, "deser_cv": 0.1536986489639029, "deser_min_ns": 130675.0, "deser_max_ns": 238490.0, "deser_p5_ns": 136995.0, "deser_p25_ns": 139981.0, "deser_p50_ns": 147115.0, "deser_p75_ns": 158654.0, "deser_p95_ns": 213187.7, "deser_p99_ns": 227400.30000000002, "deser_ci_low_ns": 151382.62011494255, "deser_ci_high_ns": 161210.1908045977, "total_mean_ns": 189066.22988505746, "total_median_ns": 178130.0, "total_std_ns": 31135.263107668572, "total_mad_ns": 10944.0, "total_cv": 0.16467913453712602, "total_min_ns": 154164.0, "total_max_ns": 282646.0, "total_p5_ns": 163398.2, "total_p25_ns": 169469.5, "total_p50_ns": 178130.0, "total_p75_ns": 192279.5, "total_p95_ns": 265476.0, "total_p99_ns": 282020.78, "total_ci_low_ns": 182799.74109195403, "total_ci_high_ns": 195687.83764367815, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.5966624911304805}, {"serializer": "kelindar/binary", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.0.19", "avg_time_ser_ns": 11361.702380952382, "avg_time_deser_ns": 13370.880952380952, "avg_time_total_ns": 24732.583333333332, "median_size_bytes": 4049.0, "avg_ops_per_sec": 40432.492899043435, "min_ops_per_sec": 29839.16689046042, "max_ops_per_sec": 49512.303807496166, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 11361.702380952382, "ser_median_ns": 11017.0, "ser_std_ns": 1385.4563319372814, "ser_mad_ns": 767.5, "ser_cv": 0.12194091039208749, "ser_min_ns": 9361.0, "ser_max_ns": 15399.0, "ser_p5_ns": 9607.5, "ser_p25_ns": 10398.0, "ser_p50_ns": 11017.0, "ser_p75_ns": 12085.25, "ser_p95_ns": 14042.55, "ser_p99_ns": 14882.740000000002, "ser_ci_low_ns": 11074.776785714284, "ser_ci_high_ns": 11668.09880952381, "deser_mean_ns": 13370.880952380952, "deser_median_ns": 12789.0, "deser_std_ns": 2129.366733198416, "deser_mad_ns": 1156.5, "deser_cv": 0.1592540342541334, "deser_min_ns": 10752.0, "deser_max_ns": 20538.0, "deser_p5_ns": 10940.9, "deser_p25_ns": 11799.5, "deser_p50_ns": 12789.0, "deser_p75_ns": 14335.25, "deser_p95_ns": 17693.7, "deser_p99_ns": 18754.330000000005, "deser_ci_low_ns": 12938.312202380952, "deser_ci_high_ns": 13857.39880952381, "total_mean_ns": 24732.583333333332, "total_median_ns": 23836.5, "total_std_ns": 3398.771766843483, "total_mad_ns": 1813.5, "total_cv": 0.13742081532836845, "total_min_ns": 20197.0, "total_max_ns": 33513.0, "total_p5_ns": 20539.05, "total_p25_ns": 22402.25, "total_p50_ns": 23836.5, "total_p75_ns": 26581.25, "total_p95_ns": 31873.699999999997, "total_p99_ns": 33356.96, "total_ci_low_ns": 24020.14642857143, "total_ci_high_ns": 25445.861904761903, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.7753501400560224, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.6536778188253354}, {"serializer": "hamba/avro", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "2.31.0", "avg_time_ser_ns": 9751.882352941177, "avg_time_deser_ns": 9409.858823529412, "avg_time_total_ns": 19161.741176470587, "median_size_bytes": 4053.0, "avg_ops_per_sec": 52187.32425151098, "min_ops_per_sec": 34454.2447629548, "max_ops_per_sec": 73426.83016374183, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 9751.882352941177, "ser_median_ns": 9382.0, "ser_std_ns": 2066.507592255964, "ser_mad_ns": 1252.0, "ser_cv": 0.21190858518024508, "ser_min_ns": 6310.0, "ser_max_ns": 16784.0, "ser_p5_ns": 7067.0, "ser_p25_ns": 8207.0, "ser_p50_ns": 9382.0, "ser_p75_ns": 10798.0, "ser_p95_ns": 13198.8, "ser_p99_ns": 15436.639999999994, "ser_ci_low_ns": 9306.180294117648, "ser_ci_high_ns": 10193.87705882353, "deser_mean_ns": 9409.858823529412, "deser_median_ns": 9130.0, "deser_std_ns": 1459.9676704912172, "deser_mad_ns": 768.0, "deser_cv": 0.15515298346884426, "deser_min_ns": 7006.0, "deser_max_ns": 13845.0, "deser_p5_ns": 7415.0, "deser_p25_ns": 8563.0, "deser_p50_ns": 9130.0, "deser_p75_ns": 10152.0, "deser_p95_ns": 12207.199999999999, "deser_p99_ns": 13713.96, "deser_ci_low_ns": 9105.25, "deser_ci_high_ns": 9723.02382352941, "total_mean_ns": 19161.741176470587, "total_median_ns": 18587.0, "total_std_ns": 3308.374828165856, "total_mad_ns": 1993.0, "total_cv": 0.17265522990302845, "total_min_ns": 13619.0, "total_max_ns": 29024.0, "total_p5_ns": 14539.8, "total_p25_ns": 17157.0, "total_p50_ns": 18587.0, "total_p75_ns": 20902.0, "total_p95_ns": 25205.199999999997, "total_p99_ns": 27234.799999999992, "total_ci_low_ns": 18450.17588235294, "total_ci_high_ns": 19877.975588235295, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "shamaton/msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "3.1.2", "avg_time_ser_ns": 19155.756097560974, "avg_time_deser_ns": 25881.621951219513, "avg_time_total_ns": 45037.37804878049, "median_size_bytes": 11031.0, "avg_ops_per_sec": 22203.77924569429, "min_ops_per_sec": 16935.374610486382, "max_ops_per_sec": 26469.031233456855, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 19155.756097560974, "ser_median_ns": 18643.0, "ser_std_ns": 2057.188831973006, "ser_mad_ns": 1153.0, "ser_cv": 0.10739272422845995, "ser_min_ns": 15969.0, "ser_max_ns": 25415.0, "ser_p5_ns": 16332.55, "ser_p25_ns": 17779.0, "ser_p50_ns": 18643.0, "ser_p75_ns": 20354.0, "ser_p95_ns": 22880.1, "ser_p99_ns": 24902.269999999997, "ser_ci_low_ns": 18724.003963414634, "ser_ci_high_ns": 19578.961890243903, "deser_mean_ns": 25881.621951219513, "deser_median_ns": 25139.5, "deser_std_ns": 2744.471356774228, "deser_mad_ns": 1378.5, "deser_cv": 0.10603938817848746, "deser_min_ns": 21811.0, "deser_max_ns": 36164.0, "deser_p5_ns": 22387.3, "deser_p25_ns": 23936.25, "deser_p50_ns": 25139.5, "deser_p75_ns": 27548.5, "deser_p95_ns": 30319.4, "deser_p99_ns": 34066.909999999996, "deser_ci_low_ns": 25326.872865853657, "deser_ci_high_ns": 26457.291463414633, "total_mean_ns": 45037.37804878049, "total_median_ns": 44236.5, "total_std_ns": 4567.519430084951, "total_mad_ns": 2821.0, "total_cv": 0.10141619312602565, "total_min_ns": 37780.0, "total_max_ns": 59048.0, "total_p5_ns": 39037.75, "total_p25_ns": 41750.75, "total_p50_ns": 44236.5, "total_p75_ns": 47953.75, "total_p95_ns": 54076.450000000004, "total_p99_ns": 59001.02, "total_ci_low_ns": 44050.09237804879, "total_ci_high_ns": 46021.00426829268, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.477294044351171}, {"serializer": "encoding/gob", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 20810.880434782608, "avg_time_deser_ns": 37357.84782608696, "avg_time_total_ns": 58168.72826086957, "median_size_bytes": 5275.0, "avg_ops_per_sec": 17191.36776577434, "min_ops_per_sec": 10422.20346225599, "max_ops_per_sec": 24834.231504706087, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 20810.880434782608, "ser_median_ns": 19389.5, "ser_std_ns": 4471.1386013118035, "ser_mad_ns": 2754.0, "ser_cv": 0.214846201020832, "ser_min_ns": 14590.0, "ser_max_ns": 34175.0, "ser_p5_ns": 15786.75, "ser_p25_ns": 17248.75, "ser_p50_ns": 19389.5, "ser_p75_ns": 23059.75, "ser_p95_ns": 29808.900000000005, "ser_p99_ns": 34147.7, "ser_ci_low_ns": 19891.190489130433, "ser_ci_high_ns": 21698.347010869566, "deser_mean_ns": 37357.84782608696, "deser_median_ns": 35040.5, "deser_std_ns": 8281.894377621773, "deser_mad_ns": 4283.5, "deser_cv": 0.22169088583948168, "deser_min_ns": 25377.0, "deser_max_ns": 61804.0, "deser_p5_ns": 28582.15, "deser_p25_ns": 31352.25, "deser_p50_ns": 35040.5, "deser_p75_ns": 41323.75, "deser_p95_ns": 52210.00000000001, "deser_p99_ns": 60727.47, "deser_ci_low_ns": 35679.93315217391, "deser_ci_high_ns": 39065.021195652174, "total_mean_ns": 58168.72826086957, "total_median_ns": 55360.0, "total_std_ns": 12272.281685184349, "total_mad_ns": 7267.0, "total_cv": 0.21097730777518103, "total_min_ns": 40267.0, "total_max_ns": 95949.0, "total_p5_ns": 44399.7, "total_p25_ns": 49073.25, "total_p50_ns": 55360.0, "total_p75_ns": 63961.0, "total_p95_ns": 81123.0, "total_p99_ns": 94899.77, "total_ci_low_ns": 55737.10570652174, "total_ci_high_ns": 60552.278532608696, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.248623538183987}, {"serializer": "vmihailenco/msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "5.4.1", "avg_time_ser_ns": 24349.355555555554, "avg_time_deser_ns": 48859.86666666667, "avg_time_total_ns": 73209.22222222222, "median_size_bytes": 11457.0, "avg_ops_per_sec": 13659.481273610034, "min_ops_per_sec": 9368.208049164356, "max_ops_per_sec": 16942.260775277853, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 24349.355555555554, "ser_median_ns": 22524.0, "ser_std_ns": 4503.784688886137, "ser_mad_ns": 1846.5, "ser_cv": 0.18496525210329653, "ser_min_ns": 19142.0, "ser_max_ns": 37428.0, "ser_p5_ns": 19998.25, "ser_p25_ns": 21116.75, "ser_p50_ns": 22524.0, "ser_p75_ns": 27108.5, "ser_p95_ns": 34626.2, "ser_p99_ns": 36972.32, "ser_ci_low_ns": 23465.666944444445, "ser_ci_high_ns": 25325.949722222223, "deser_mean_ns": 48859.86666666667, "deser_median_ns": 45231.0, "deser_std_ns": 8272.887639278973, "deser_mad_ns": 3037.0, "deser_cv": 0.1693186699775202, "deser_min_ns": 39882.0, "deser_max_ns": 69828.0, "deser_p5_ns": 41390.7, "deser_p25_ns": 42988.25, "deser_p50_ns": 45231.0, "deser_p75_ns": 53209.5, "deser_p95_ns": 68463.3, "deser_p99_ns": 69654.45, "deser_ci_low_ns": 47193.4275, "deser_ci_high_ns": 50533.6625, "total_mean_ns": 73209.22222222222, "total_median_ns": 67553.0, "total_std_ns": 12610.204709043981, "total_mad_ns": 4497.0, "total_cv": 0.17224885507957532, "total_min_ns": 59024.0, "total_max_ns": 106744.0, "total_p5_ns": 61693.3, "total_p25_ns": 64369.5, "total_p50_ns": 67553.0, "total_p75_ns": 79899.25, "total_p95_ns": 101816.0, "total_p99_ns": 106247.38, "total_ci_low_ns": 70598.75472222222, "total_ci_high_ns": 75781.68138888889, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.765330996779828}, {"serializer": "pelletier/go-toml", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "2.4.3", "avg_time_ser_ns": 96509.82352941176, "avg_time_deser_ns": 156977.14117647058, "avg_time_total_ns": 253486.96470588236, "median_size_bytes": 16444.0, "avg_ops_per_sec": 3944.9760312538638, "min_ops_per_sec": 2819.0772596313773, "max_ops_per_sec": 4829.191496759612, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 96509.82352941176, "ser_median_ns": 91030.0, "ser_std_ns": 13815.069447438003, "ser_mad_ns": 5730.0, "ser_cv": 0.14314676933615783, "ser_min_ns": 79000.0, "ser_max_ns": 143600.0, "ser_p5_ns": 83314.8, "ser_p25_ns": 86897.0, "ser_p50_ns": 91030.0, "ser_p75_ns": 102788.0, "ser_p95_ns": 126274.8, "ser_p99_ns": 136733.83999999997, "ser_ci_low_ns": 93719.00352941177, "ser_ci_high_ns": 99445.97470588234, "deser_mean_ns": 156977.14117647058, "deser_median_ns": 148233.0, "deser_std_ns": 24528.989110143662, "deser_mad_ns": 9581.0, "deser_cv": 0.1562583502687736, "deser_min_ns": 128074.0, "deser_max_ns": 249344.0, "deser_p5_ns": 135048.2, "deser_p25_ns": 140945.0, "deser_p50_ns": 148233.0, "deser_p75_ns": 162300.0, "deser_p95_ns": 209913.4, "deser_p99_ns": 244147.75999999998, "deser_ci_low_ns": 152119.92147058825, "deser_ci_high_ns": 162143.92352941175, "total_mean_ns": 253486.96470588236, "total_median_ns": 240240.0, "total_std_ns": 35425.20966952336, "total_mad_ns": 15717.0, "total_cv": 0.13975160304841228, "total_min_ns": 207074.0, "total_max_ns": 354726.0, "total_p5_ns": 219877.0, "total_p25_ns": 227895.0, "total_p50_ns": 240240.0, "total_p75_ns": 262981.0, "total_p95_ns": 330279.6, "total_p99_ns": 344432.63999999996, "total_ci_low_ns": 245852.87735294117, "total_ci_high_ns": 260936.00676470587, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.272350806326768}, {"serializer": "sonic", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.15.2", "avg_time_ser_ns": 17672.068965517243, "avg_time_deser_ns": 27555.94252873563, "avg_time_total_ns": 45228.011494252874, "median_size_bytes": 16546.0, "avg_ops_per_sec": 22110.191603870757, "min_ops_per_sec": 12672.022708264692, "max_ops_per_sec": 32746.086842622306, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 17672.068965517243, "ser_median_ns": 15128.0, "ser_std_ns": 7001.0772290613595, "ser_mad_ns": 3350.0, "ser_cv": 0.3961662464492564, "ser_min_ns": 9742.0, "ser_max_ns": 38721.0, "ser_p5_ns": 10867.3, "ser_p25_ns": 12170.5, "ser_p50_ns": 15128.0, "ser_p75_ns": 21881.5, "ser_p95_ns": 31417.5, "ser_p99_ns": 36465.22, "ser_ci_low_ns": 16351.389655172414, "ser_ci_high_ns": 19163.355747126436, "deser_mean_ns": 27555.94252873563, "deser_median_ns": 24996.0, "deser_std_ns": 6504.67381760245, "deser_mad_ns": 3377.0, "deser_cv": 0.236053396134765, "deser_min_ns": 20124.0, "deser_max_ns": 49438.0, "deser_p5_ns": 21239.1, "deser_p25_ns": 22676.5, "deser_p50_ns": 24996.0, "deser_p75_ns": 31124.5, "deser_p95_ns": 39752.8, "deser_p99_ns": 47754.12, "deser_ci_low_ns": 26291.5591954023, "deser_ci_high_ns": 29047.56867816092, "total_mean_ns": 45228.011494252874, "total_median_ns": 41729.0, "total_std_ns": 12613.518395508045, "total_mad_ns": 7556.0, "total_cv": 0.2788873085236313, "total_min_ns": 30538.0, "total_max_ns": 78914.0, "total_p5_ns": 31625.5, "total_p25_ns": 35049.5, "total_p50_ns": 41729.0, "total_p75_ns": 53545.5, "total_p95_ns": 69878.60000000002, "total_p99_ns": 78603.54, "total_ci_low_ns": 42681.01522988506, "total_ci_high_ns": 47879.370402298846, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.800095801517757}, {"serializer": "segmentio/encoding/json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "0.5.4", "avg_time_ser_ns": 23840.397727272728, "avg_time_deser_ns": 38422.73863636364, "avg_time_total_ns": 62263.13636363636, "median_size_bytes": 16546.0, "avg_ops_per_sec": 16060.867768685543, "min_ops_per_sec": 10498.026371042244, "max_ops_per_sec": 22365.36052961174, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 23840.397727272728, "ser_median_ns": 23078.0, "ser_std_ns": 5547.716414409394, "ser_mad_ns": 3821.0, "ser_cv": 0.23270234321900454, "ser_min_ns": 17143.0, "ser_max_ns": 43920.0, "ser_p5_ns": 17590.35, "ser_p25_ns": 19425.75, "ser_p50_ns": 23078.0, "ser_p75_ns": 27120.75, "ser_p95_ns": 34149.399999999994, "ser_p99_ns": 38197.13999999997, "ser_ci_low_ns": 22754.275568181816, "ser_ci_high_ns": 25023.253125, "deser_mean_ns": 38422.73863636364, "deser_median_ns": 36966.0, "deser_std_ns": 6774.73927817342, "deser_mad_ns": 3944.0, "deser_cv": 0.17632109314981892, "deser_min_ns": 27270.0, "deser_max_ns": 62178.0, "deser_p5_ns": 30629.15, "deser_p25_ns": 33304.25, "deser_p50_ns": 36966.0, "deser_p75_ns": 42179.5, "deser_p95_ns": 49467.0, "deser_p99_ns": 59435.75999999999, "deser_ci_low_ns": 37028.74119318182, "deser_ci_high_ns": 39904.919034090904, "total_mean_ns": 62263.13636363636, "total_median_ns": 58662.5, "total_std_ns": 11353.59007192972, "total_mad_ns": 6591.5, "total_cv": 0.1823485088451242, "total_min_ns": 44712.0, "total_max_ns": 95256.0, "total_p5_ns": 48344.65, "total_p25_ns": 55143.75, "total_p50_ns": 58662.5, "total_p75_ns": 69235.5, "total_p95_ns": 85641.29999999997, "total_p99_ns": 92988.77999999998, "total_ci_low_ns": 60000.743749999994, "total_ci_high_ns": 64566.87443181818, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.0941832961273}, {"serializer": "jsoniter", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.1.12", "avg_time_ser_ns": 35479.22988505747, "avg_time_deser_ns": 54080.24137931035, "avg_time_total_ns": 89559.47126436782, "median_size_bytes": 16546.0, "avg_ops_per_sec": 11165.764892114326, "min_ops_per_sec": 7435.275923089506, "max_ops_per_sec": 14131.678984780181, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 35479.22988505747, "ser_median_ns": 34157.0, "ser_std_ns": 7456.50072038151, "ser_mad_ns": 4501.0, "ser_cv": 0.2101652359574442, "ser_min_ns": 26171.0, "ser_max_ns": 59668.0, "ser_p5_ns": 27450.5, "ser_p25_ns": 29787.0, "ser_p50_ns": 34157.0, "ser_p75_ns": 38915.0, "ser_p95_ns": 50668.200000000004, "ser_p99_ns": 57848.24, "ser_ci_low_ns": 33896.674425287354, "ser_ci_high_ns": 36996.90545977011, "deser_mean_ns": 54080.24137931035, "deser_median_ns": 50987.0, "deser_std_ns": 8566.446614778453, "deser_mad_ns": 3400.0, "deser_cv": 0.15840252181373854, "deser_min_ns": 44477.0, "deser_max_ns": 81062.0, "deser_p5_ns": 45822.6, "deser_p25_ns": 48073.0, "deser_p50_ns": 50987.0, "deser_p75_ns": 57242.0, "deser_p95_ns": 72424.40000000001, "deser_p99_ns": 77704.56, "deser_ci_low_ns": 52357.89942528735, "deser_ci_high_ns": 55863.78908045977, "total_mean_ns": 89559.47126436782, "total_median_ns": 84906.0, "total_std_ns": 15226.85510127838, "total_mad_ns": 7789.0, "total_cv": 0.17001948410716605, "total_min_ns": 70763.0, "total_max_ns": 134494.0, "total_p5_ns": 73164.3, "total_p25_ns": 78502.0, "total_p50_ns": 84906.0, "total_p75_ns": 96068.5, "total_p95_ns": 123925.6, "total_p99_ns": 132723.26, "total_ci_low_ns": 86435.94425287355, "total_ci_high_ns": 92781.56666666667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.327206922291726}, {"serializer": "fxamacker/cbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "2.9.2", "avg_time_ser_ns": 18250.164705882355, "avg_time_deser_ns": 53627.788235294116, "avg_time_total_ns": 71877.95294117647, "median_size_bytes": 12030.0, "avg_ops_per_sec": 13912.471892714873, "min_ops_per_sec": 10236.147932809925, "max_ops_per_sec": 16531.931425548446, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 18250.164705882355, "ser_median_ns": 18032.0, "ser_std_ns": 3323.0388840532655, "ser_mad_ns": 2359.0, "ser_cv": 0.18208267912136655, "ser_min_ns": 13647.0, "ser_max_ns": 29033.0, "ser_p5_ns": 13983.2, "ser_p25_ns": 15616.0, "ser_p50_ns": 18032.0, "ser_p75_ns": 20137.0, "ser_p95_ns": 23766.6, "ser_p99_ns": 28870.04, "ser_ci_low_ns": 17593.90088235294, "ser_ci_high_ns": 18954.798235294118, "deser_mean_ns": 53627.788235294116, "deser_median_ns": 52335.0, "deser_std_ns": 5947.540508267177, "deser_mad_ns": 3039.0, "deser_cv": 0.11090407984330995, "deser_min_ns": 46689.0, "deser_max_ns": 73802.0, "deser_p5_ns": 47430.2, "deser_p25_ns": 49545.0, "deser_p50_ns": 52335.0, "deser_p75_ns": 55781.0, "deser_p95_ns": 66546.8, "deser_p99_ns": 71548.27999999998, "deser_ci_low_ns": 52455.92794117647, "deser_ci_high_ns": 54900.85029411765, "total_mean_ns": 71877.95294117647, "total_median_ns": 70256.0, "total_std_ns": 8402.693149486406, "total_mad_ns": 5258.0, "total_cv": 0.11690223226533744, "total_min_ns": 60489.0, "total_max_ns": 97693.0, "total_p5_ns": 61425.6, "total_p25_ns": 65304.0, "total_p50_ns": 70256.0, "total_p75_ns": 76479.0, "total_p95_ns": 86973.4, "total_p99_ns": 96575.79999999999, "total_ci_low_ns": 70120.27764705883, "total_ci_high_ns": 73735.84647058824, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.21863255141691}, {"serializer": "protobuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.36.11", "avg_time_ser_ns": 16211.833333333334, "avg_time_deser_ns": 20906.755555555555, "avg_time_total_ns": 37118.58888888889, "median_size_bytes": 4841.0, "avg_ops_per_sec": 26940.679318209237, "min_ops_per_sec": 17986.25849850714, "max_ops_per_sec": 35112.3595505618, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 16211.833333333334, "ser_median_ns": 15204.0, "ser_std_ns": 3058.7685274460346, "ser_mad_ns": 1525.0, "ser_cv": 0.18867505386678668, "ser_min_ns": 11767.0, "ser_max_ns": 24863.0, "ser_p5_ns": 12741.3, "ser_p25_ns": 14188.25, "ser_p50_ns": 15204.0, "ser_p75_ns": 17783.25, "ser_p95_ns": 22890.899999999998, "ser_p99_ns": 24353.92, "ser_ci_low_ns": 15611.150833333335, "ser_ci_high_ns": 16852.457777777778, "deser_mean_ns": 20906.755555555555, "deser_median_ns": 19760.5, "deser_std_ns": 3340.9547626527933, "deser_mad_ns": 1801.5, "deser_cv": 0.15980264148470424, "deser_min_ns": 16700.0, "deser_max_ns": 30850.0, "deser_p5_ns": 17208.95, "deser_p25_ns": 18375.5, "deser_p50_ns": 19760.5, "deser_p75_ns": 22636.0, "deser_p95_ns": 27747.649999999998, "deser_p99_ns": 30747.65, "deser_ci_low_ns": 20241.2175, "deser_ci_high_ns": 21605.27472222222, "total_mean_ns": 37118.58888888889, "total_median_ns": 35122.5, "total_std_ns": 6237.4102373932465, "total_mad_ns": 3300.0, "total_cv": 0.1680400689817268, "total_min_ns": 28480.0, "total_max_ns": 55598.0, "total_p5_ns": 30281.75, "total_p25_ns": 32781.25, "total_p50_ns": 35122.5, "total_p75_ns": 40857.25, "total_p95_ns": 49493.5, "total_p99_ns": 54329.75, "total_ci_low_ns": 35803.61277777777, "total_ci_high_ns": 38511.67805555555, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.9997385620915032, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.5524532924752332}, {"serializer": "linkedin/goavro", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "2.15.0", "avg_time_ser_ns": 17003.337209302324, "avg_time_deser_ns": 32123.662790697676, "avg_time_total_ns": 49127.0, "median_size_bytes": 4051.0, "avg_ops_per_sec": 20355.4053778981, "min_ops_per_sec": 13720.432468031393, "max_ops_per_sec": 25472.515156146517, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 17003.337209302324, "ser_median_ns": 16410.0, "ser_std_ns": 2828.961067290647, "ser_mad_ns": 1799.5, "ser_cv": 0.16637681370824992, "ser_min_ns": 13021.0, "ser_max_ns": 25253.0, "ser_p5_ns": 13556.75, "ser_p25_ns": 14815.0, "ser_p50_ns": 16410.0, "ser_p75_ns": 18263.25, "ser_p95_ns": 23256.25, "ser_p99_ns": 24705.600000000002, "ser_ci_low_ns": 16419.95988372093, "ser_ci_high_ns": 17609.474418604652, "deser_mean_ns": 32123.662790697676, "deser_median_ns": 30588.0, "deser_std_ns": 4751.116120537834, "deser_mad_ns": 2449.0, "deser_cv": 0.14790082163088997, "deser_min_ns": 25716.0, "deser_max_ns": 47631.0, "deser_p5_ns": 27557.5, "deser_p25_ns": 28618.5, "deser_p50_ns": 30588.0, "deser_p75_ns": 34505.25, "deser_p95_ns": 43016.5, "deser_p99_ns": 45900.40000000001, "deser_ci_low_ns": 31114.43808139535, "deser_ci_high_ns": 33159.01802325581, "total_mean_ns": 49127.0, "total_median_ns": 46615.5, "total_std_ns": 7247.352099012358, "total_mad_ns": 4001.0, "total_cv": 0.14752278989175724, "total_min_ns": 39258.0, "total_max_ns": 72884.0, "total_p5_ns": 41329.5, "total_p25_ns": 44097.5, "total_p50_ns": 46615.5, "total_p75_ns": 52743.75, "total_p95_ns": 64595.75, "total_p99_ns": 70551.60000000002, "total_ci_low_ns": 47610.75959302326, "total_ci_high_ns": 50604.25959302325, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.2853777948097465}, {"serializer": "mongo-bson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.17.9", "avg_time_ser_ns": 50435.0, "avg_time_deser_ns": 83134.91111111111, "avg_time_total_ns": 133569.9111111111, "median_size_bytes": 14461.0, "avg_ops_per_sec": 7486.716070119584, "min_ops_per_sec": 4628.1726123257495, "max_ops_per_sec": 9658.47627878226, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 50435.0, "ser_median_ns": 45707.0, "ser_std_ns": 11671.368720943776, "ser_mad_ns": 4987.0, "ser_cv": 0.2314140719925404, "ser_min_ns": 38005.0, "ser_max_ns": 86596.0, "ser_p5_ns": 39502.1, "ser_p25_ns": 42175.25, "ser_p50_ns": 45707.0, "ser_p75_ns": 55351.25, "ser_p95_ns": 74182.34999999999, "ser_p99_ns": 85399.84, "ser_ci_low_ns": 48058.53333333333, "ser_ci_high_ns": 53025.60611111111, "deser_mean_ns": 83134.91111111111, "deser_median_ns": 74829.0, "deser_std_ns": 17560.299718235372, "deser_mad_ns": 5673.5, "deser_cv": 0.21122654109494093, "deser_min_ns": 65326.0, "deser_max_ns": 132446.0, "deser_p5_ns": 68040.85, "deser_p25_ns": 71125.5, "deser_p50_ns": 74829.0, "deser_p75_ns": 89797.75, "deser_p95_ns": 120249.74999999999, "deser_p99_ns": 129799.14, "deser_ci_low_ns": 79789.50277777779, "deser_ci_high_ns": 87073.28722222222, "total_mean_ns": 133569.9111111111, "total_median_ns": 120792.0, "total_std_ns": 28849.370326174005, "total_mad_ns": 10327.5, "total_cv": 0.215987044433798, "total_min_ns": 103536.0, "total_max_ns": 216068.0, "total_p5_ns": 108172.7, "total_p25_ns": 113723.5, "total_p50_ns": 120792.0, "total_p75_ns": 145595.25, "total_p95_ns": 194778.95, "total_p99_ns": 211046.62, "total_ci_low_ns": 127717.65388888889, "total_ci_high_ns": 139706.67083333334, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.4711732973220215}, {"serializer": "ugorji/cbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 16393.363636363636, "avg_time_deser_ns": 33844.59090909091, "avg_time_total_ns": 50237.954545454544, "median_size_bytes": 12030.0, "avg_ops_per_sec": 19905.269015186816, "min_ops_per_sec": 13567.968739400025, "max_ops_per_sec": 24964.425693386922, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 16393.363636363636, "ser_median_ns": 15359.0, "ser_std_ns": 2964.4951468073104, "ser_mad_ns": 1515.0, "ser_cv": 0.1808350752515176, "ser_min_ns": 12307.0, "ser_max_ns": 24921.0, "ser_p5_ns": 13273.95, "ser_p25_ns": 14352.25, "ser_p50_ns": 15359.0, "ser_p75_ns": 17757.0, "ser_p95_ns": 23152.499999999996, "ser_p99_ns": 24814.86, "ser_ci_low_ns": 15807.765056818182, "ser_ci_high_ns": 17044.582670454543, "deser_mean_ns": 33844.59090909091, "deser_median_ns": 32258.5, "deser_std_ns": 5175.802285828292, "deser_mad_ns": 2380.0, "deser_cv": 0.15292849305612474, "deser_min_ns": 27448.0, "deser_max_ns": 48907.0, "deser_p5_ns": 28895.0, "deser_p25_ns": 30298.0, "deser_p50_ns": 32258.5, "deser_p75_ns": 34853.75, "deser_p95_ns": 46916.449999999975, "deser_p99_ns": 48904.39, "deser_ci_low_ns": 32851.86221590909, "deser_ci_high_ns": 34976.48892045454, "total_mean_ns": 50237.954545454544, "total_median_ns": 47995.5, "total_std_ns": 7900.575596532877, "total_mad_ns": 3992.0, "total_cv": 0.15726308262380698, "total_min_ns": 40057.0, "total_max_ns": 73703.0, "total_p5_ns": 42371.6, "total_p25_ns": 44514.75, "total_p50_ns": 47995.5, "total_p75_ns": 53017.5, "total_p95_ns": 70076.19999999997, "total_p99_ns": 72974.81, "total_ci_low_ns": 48642.40454545455, "total_ci_high_ns": 51919.65795454545, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.077289617276607}, {"serializer": "ugorji/msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 14944.64705882353, "avg_time_deser_ns": 30903.29411764706, "avg_time_total_ns": 45847.94117647059, "median_size_bytes": 12041.0, "avg_ops_per_sec": 21811.230217534947, "min_ops_per_sec": 14741.65253924965, "max_ops_per_sec": 26697.27954721414, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 14944.64705882353, "ser_median_ns": 14201.0, "ser_std_ns": 2217.7380674584506, "ser_mad_ns": 1234.0, "ser_cv": 0.1483968178525211, "ser_min_ns": 11905.0, "ser_max_ns": 22342.0, "ser_p5_ns": 12254.2, "ser_p25_ns": 13233.0, "ser_p50_ns": 14201.0, "ser_p75_ns": 16363.0, "ser_p95_ns": 18723.8, "ser_p99_ns": 22069.84, "ser_ci_low_ns": 14462.008235294117, "ser_ci_high_ns": 15412.636764705881, "deser_mean_ns": 30903.29411764706, "deser_median_ns": 29693.0, "deser_std_ns": 4176.827107539228, "deser_mad_ns": 2074.0, "deser_cv": 0.1351579896835039, "deser_min_ns": 25431.0, "deser_max_ns": 45493.0, "deser_p5_ns": 26184.2, "deser_p25_ns": 27847.0, "deser_p50_ns": 29693.0, "deser_p75_ns": 33234.0, "deser_p95_ns": 38795.799999999996, "deser_p99_ns": 44689.119999999995, "deser_ci_low_ns": 30080.660294117646, "deser_ci_high_ns": 31816.35794117647, "total_mean_ns": 45847.94117647059, "total_median_ns": 43767.0, "total_std_ns": 6299.75183818292, "total_mad_ns": 3173.0, "total_cv": 0.13740533765594665, "total_min_ns": 37457.0, "total_max_ns": 67835.0, "total_p5_ns": 38481.2, "total_p25_ns": 41357.0, "total_p50_ns": 43767.0, "total_p75_ns": 49607.0, "total_p95_ns": 56814.8, "total_p99_ns": 66758.95999999999, "total_ci_low_ns": 44570.955882352944, "total_ci_high_ns": 47215.02205882353, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.280100680553358}, {"serializer": "ugorji/json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 30038.022727272728, "avg_time_deser_ns": 61895.125, "avg_time_total_ns": 91933.14772727272, "median_size_bytes": 16546.0, "avg_ops_per_sec": 10877.469386413077, "min_ops_per_sec": 7351.157439738887, "max_ops_per_sec": 13539.128080151639, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 30038.022727272728, "ser_median_ns": 28697.0, "ser_std_ns": 4927.238936738041, "ser_mad_ns": 2332.5, "ser_cv": 0.16403339798609323, "ser_min_ns": 23983.0, "ser_max_ns": 44889.0, "ser_p5_ns": 25036.8, "ser_p25_ns": 26861.5, "ser_p50_ns": 28697.0, "ser_p75_ns": 31518.25, "ser_p95_ns": 42542.09999999999, "ser_p99_ns": 43926.77999999999, "ser_ci_low_ns": 29067.044602272726, "ser_ci_high_ns": 31136.887784090908, "deser_mean_ns": 61895.125, "deser_median_ns": 58677.0, "deser_std_ns": 9664.733364515749, "deser_mad_ns": 4306.5, "deser_cv": 0.15614692376040518, "deser_min_ns": 49877.0, "deser_max_ns": 91144.0, "deser_p5_ns": 52861.25, "deser_p25_ns": 55191.25, "deser_p50_ns": 58677.0, "deser_p75_ns": 65256.25, "deser_p95_ns": 87304.75, "deser_p99_ns": 89233.48, "deser_ci_low_ns": 59976.11164772727, "deser_ci_high_ns": 63922.56249999999, "total_mean_ns": 91933.14772727272, "total_median_ns": 87475.0, "total_std_ns": 14476.02513038807, "total_mad_ns": 6196.5, "total_cv": 0.15746252019274262, "total_min_ns": 73860.0, "total_max_ns": 136033.0, "total_p5_ns": 77854.45, "total_p25_ns": 81914.75, "total_p50_ns": 87475.0, "total_p75_ns": 97319.25, "total_p95_ns": 130207.24999999999, "total_p99_ns": 132511.24, "total_ci_low_ns": 89014.3840909091, "total_ci_high_ns": 95029.80113636363, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.846277157025528}, {"serializer": "goccy/go-yaml", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.19.2", "avg_time_ser_ns": 1753108.3152173914, "avg_time_deser_ns": 2191308.717391304, "avg_time_total_ns": 3944417.032608696, "median_size_bytes": 16745.0, "avg_ops_per_sec": 253.52288861267692, "min_ops_per_sec": 189.04767423153538, "max_ops_per_sec": 328.09356966131884, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 1753108.3152173914, "ser_median_ns": 1569924.5, "ser_std_ns": 356234.39528551704, "ser_mad_ns": 146469.5, "ser_cv": 0.20320158896818807, "ser_min_ns": 1391405.0, "ser_max_ns": 2705884.0, "ser_p5_ns": 1406883.0, "ser_p25_ns": 1443099.25, "ser_p50_ns": 1569924.5, "ser_p75_ns": 2105000.75, "ser_p95_ns": 2370689.75, "ser_p99_ns": 2532620.0000000005, "ser_ci_low_ns": 1681856.8304347827, "ser_ci_high_ns": 1823629.8926630435, "deser_mean_ns": 2191308.717391304, "deser_median_ns": 2298549.5, "deser_std_ns": 456211.8150894559, "deser_mad_ns": 433323.0, "deser_cv": 0.20819148459946993, "deser_min_ns": 1628109.0, "deser_max_ns": 3401287.0, "deser_p5_ns": 1648705.1, "deser_p25_ns": 1731154.25, "deser_p50_ns": 2298549.5, "deser_p75_ns": 2496817.5, "deser_p95_ns": 2955338.25, "deser_p99_ns": 3293180.8200000003, "deser_ci_low_ns": 2096136.3149456521, "deser_ci_high_ns": 2282516.9915760867, "total_mean_ns": 3944417.032608696, "total_median_ns": 3880964.5, "total_std_ns": 535662.0462881147, "total_mad_ns": 292048.5, "total_cv": 0.1358025892951403, "total_min_ns": 3047911.0, "total_max_ns": 5289671.0, "total_p5_ns": 3123076.1, "total_p25_ns": 3670028.5, "total_p50_ns": 3880964.5, "total_p75_ns": 4276749.25, "total_p95_ns": 4910878.95, "total_p99_ns": 5087043.120000001, "total_ci_low_ns": 3833439.321195652, "total_ci_high_ns": 4049043.3222826086, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.118118881106849}, {"serializer": "protobuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.36.11", "avg_time_ser_ns": 15415.333333333334, "avg_time_deser_ns": 21672.404761904763, "avg_time_total_ns": 37087.73809523809, "median_size_bytes": 4841.0, "avg_ops_per_sec": 26963.089456469057, "min_ops_per_sec": 19728.535353535353, "max_ops_per_sec": 33838.657282079046, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 15415.333333333334, "ser_median_ns": 14932.5, "ser_std_ns": 1984.4262764301286, "ser_mad_ns": 949.5, "ser_cv": 0.1287306757187732, "ser_min_ns": 11941.0, "ser_max_ns": 20995.0, "ser_p5_ns": 13122.3, "ser_p25_ns": 14047.75, "ser_p50_ns": 14932.5, "ser_p75_ns": 16209.25, "ser_p95_ns": 19969.049999999992, "ser_p99_ns": 20681.260000000002, "ser_ci_low_ns": 15018.945833333333, "ser_ci_high_ns": 15841.639285714286, "deser_mean_ns": 21672.404761904763, "deser_median_ns": 20778.0, "deser_std_ns": 2823.76211974251, "deser_mad_ns": 1216.5, "deser_cv": 0.13029297628780226, "deser_min_ns": 17611.0, "deser_max_ns": 31733.0, "deser_p5_ns": 18622.3, "deser_p25_ns": 19852.25, "deser_p50_ns": 20778.0, "deser_p75_ns": 22735.5, "deser_p95_ns": 27376.55, "deser_p99_ns": 30031.500000000004, "deser_ci_low_ns": 21106.828869047622, "deser_ci_high_ns": 22264.07023809524, "total_mean_ns": 37087.73809523809, "total_median_ns": 35845.5, "total_std_ns": 4566.667430912324, "total_mad_ns": 2355.0, "total_cv": 0.1231314624576327, "total_min_ns": 29552.0, "total_max_ns": 50688.0, "total_p5_ns": 31843.7, "total_p25_ns": 33969.25, "total_p50_ns": 35845.5, "total_p75_ns": 38396.0, "total_p95_ns": 47727.25, "total_p99_ns": 50334.42, "total_ci_low_ns": 36131.00773809524, "total_ci_high_ns": 38103.21488095238, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.647933725112065}, {"serializer": "sonic", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.15.2", "avg_time_ser_ns": 16431.43181818182, "avg_time_deser_ns": 30008.102272727272, "avg_time_total_ns": 46439.53409090909, "median_size_bytes": 16547.0, "avg_ops_per_sec": 21533.37710155361, "min_ops_per_sec": 12634.079165140049, "max_ops_per_sec": 33453.76689415228, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 16431.43181818182, "ser_median_ns": 14025.5, "ser_std_ns": 5589.823127165917, "ser_mad_ns": 1967.5, "ser_cv": 0.34019087253130476, "ser_min_ns": 9677.0, "ser_max_ns": 33787.0, "ser_p5_ns": 10953.5, "ser_p25_ns": 12454.5, "ser_p50_ns": 14025.5, "ser_p75_ns": 20093.25, "ser_p95_ns": 27879.649999999998, "ser_p99_ns": 32528.109999999993, "ser_ci_low_ns": 15280.457670454545, "ser_ci_high_ns": 17692.278977272726, "deser_mean_ns": 30008.102272727272, "deser_median_ns": 28808.5, "deser_std_ns": 6685.767119630013, "deser_mad_ns": 4554.0, "deser_cv": 0.22279873145148343, "deser_min_ns": 20061.0, "deser_max_ns": 50638.0, "deser_p5_ns": 22183.6, "deser_p25_ns": 24447.0, "deser_p50_ns": 28808.5, "deser_p75_ns": 33686.75, "deser_p95_ns": 44463.799999999996, "deser_p99_ns": 47683.47999999998, "deser_ci_low_ns": 28624.041193181816, "deser_ci_high_ns": 31445.111363636363, "total_mean_ns": 46439.53409090909, "total_median_ns": 43276.0, "total_std_ns": 11542.247459338998, "total_mad_ns": 7223.5, "total_cv": 0.24854356714139572, "total_min_ns": 29892.0, "total_max_ns": 79151.0, "total_p5_ns": 33487.6, "total_p25_ns": 37141.5, "total_p50_ns": 43276.0, "total_p75_ns": 54006.0, "total_p95_ns": 67055.34999999999, "total_p99_ns": 76762.84999999999, "total_ci_low_ns": 44225.28011363637, "total_ci_high_ns": 48888.25198863636, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.206200846115252}, {"serializer": "jsoniter", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.1.12", "avg_time_ser_ns": 36899.40476190476, "avg_time_deser_ns": 54865.583333333336, "avg_time_total_ns": 91764.98809523809, "median_size_bytes": 16547.0, "avg_ops_per_sec": 10897.402383599203, "min_ops_per_sec": 7761.263533703287, "max_ops_per_sec": 12823.143208863357, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 36899.40476190476, "ser_median_ns": 35463.0, "ser_std_ns": 4955.648732942479, "ser_mad_ns": 2632.5, "ser_cv": 0.13430159009119655, "ser_min_ns": 30388.0, "ser_max_ns": 55008.0, "ser_p5_ns": 31422.9, "ser_p25_ns": 33459.25, "ser_p50_ns": 35463.0, "ser_p75_ns": 39287.0, "ser_p95_ns": 46124.84999999999, "ser_p99_ns": 53021.810000000005, "ser_ci_low_ns": 35850.17916666667, "ser_ci_high_ns": 37954.594047619044, "deser_mean_ns": 54865.583333333336, "deser_median_ns": 52876.5, "deser_std_ns": 6280.088112742947, "deser_mad_ns": 2909.0, "deser_cv": 0.11446316126064968, "deser_min_ns": 46139.0, "deser_max_ns": 74686.0, "deser_p5_ns": 48729.2, "deser_p25_ns": 51034.75, "deser_p50_ns": 52876.5, "deser_p75_ns": 57149.25, "deser_p95_ns": 69322.99999999999, "deser_p99_ns": 73981.33, "deser_ci_low_ns": 53588.38154761905, "deser_ci_high_ns": 56255.64880952381, "total_mean_ns": 91764.98809523809, "total_median_ns": 88830.5, "total_std_ns": 10545.744942745721, "total_mad_ns": 5556.0, "total_cv": 0.11492122607590646, "total_min_ns": 77984.0, "total_max_ns": 128845.0, "total_p5_ns": 80582.55, "total_p25_ns": 84134.5, "total_p50_ns": 88830.5, "total_p75_ns": 95074.0, "total_p95_ns": 110508.69999999998, "total_p99_ns": 124865.15000000001, "total_ci_low_ns": 89528.59345238096, "total_ci_high_ns": 94114.97261904762, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.421850489329438}, {"serializer": "goccy/go-yaml", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.19.2", "avg_time_ser_ns": 1750876.547368421, "avg_time_deser_ns": 2044455.9684210527, "avg_time_total_ns": 3795332.515789474, "median_size_bytes": 16745.0, "avg_ops_per_sec": 263.48152522598883, "min_ops_per_sec": 198.47539143316698, "max_ops_per_sec": 331.5222274050197, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1750876.547368421, "ser_median_ns": 1585945.0, "ser_std_ns": 336009.52118832566, "ser_mad_ns": 155867.0, "ser_cv": 0.19190931633263933, "ser_min_ns": 1376252.0, "ser_max_ns": 2602102.0, "ser_p5_ns": 1400251.6, "ser_p25_ns": 1483107.5, "ser_p50_ns": 1585945.0, "ser_p75_ns": 2061153.5, "ser_p95_ns": 2372459.6999999997, "ser_p99_ns": 2474344.72, "ser_ci_low_ns": 1685636.1915789472, "ser_ci_high_ns": 1819911.3202631578, "deser_mean_ns": 2044455.9684210527, "deser_median_ns": 1857578.0, "deser_std_ns": 408280.43993659335, "deser_mad_ns": 182026.0, "deser_cv": 0.19970126343777955, "deser_min_ns": 1600515.0, "deser_max_ns": 3196008.0, "deser_p5_ns": 1645721.3, "deser_p25_ns": 1727690.5, "deser_p50_ns": 1857578.0, "deser_p75_ns": 2293987.0, "deser_p95_ns": 2889899.6999999997, "deser_p99_ns": 3179864.44, "deser_ci_low_ns": 1962283.210263158, "deser_ci_high_ns": 2129802.689736842, "total_mean_ns": 3795332.515789474, "total_median_ns": 3815564.0, "total_std_ns": 461168.89098138124, "total_mad_ns": 311139.0, "total_cv": 0.12150948278255211, "total_min_ns": 3016389.0, "total_max_ns": 5038408.0, "total_p5_ns": 3147711.0, "total_p25_ns": 3371729.0, "total_p50_ns": 3815564.0, "total_p75_ns": 4074241.5, "total_p95_ns": 4659567.8, "total_p99_ns": 4857277.5200000005, "total_ci_low_ns": 3703705.3428947367, "total_ci_high_ns": 3888313.848157895, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.314399921111967}, {"serializer": "hamba/avro", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "2.31.0", "avg_time_ser_ns": 9982.954545454546, "avg_time_deser_ns": 9368.397727272728, "avg_time_total_ns": 19351.352272727272, "median_size_bytes": 4053.0, "avg_ops_per_sec": 51675.975193183, "min_ops_per_sec": 36448.46187490888, "max_ops_per_sec": 70422.5352112676, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 9982.954545454546, "ser_median_ns": 9362.0, "ser_std_ns": 1875.3687631796943, "ser_mad_ns": 855.5, "ser_cv": 0.1878570872621663, "ser_min_ns": 7045.0, "ser_max_ns": 16752.0, "ser_p5_ns": 7931.95, "ser_p25_ns": 8720.75, "ser_p50_ns": 9362.0, "ser_p75_ns": 10935.5, "ser_p95_ns": 13585.299999999992, "ser_p99_ns": 15404.369999999994, "ser_ci_low_ns": 9608.724715909091, "ser_ci_high_ns": 10391.026420454546, "deser_mean_ns": 9368.397727272728, "deser_median_ns": 9070.0, "deser_std_ns": 1144.915230910912, "deser_mad_ns": 486.0, "deser_cv": 0.1222103570152559, "deser_min_ns": 7155.0, "deser_max_ns": 12644.0, "deser_p5_ns": 8103.45, "deser_p25_ns": 8614.75, "deser_p50_ns": 9070.0, "deser_p75_ns": 9662.5, "deser_p95_ns": 11829.199999999997, "deser_p99_ns": 12420.409999999998, "deser_ci_low_ns": 9139.224715909091, "deser_ci_high_ns": 9614.41875, "total_mean_ns": 19351.352272727272, "total_median_ns": 18486.5, "total_std_ns": 2882.235834072772, "total_mad_ns": 1378.0, "total_cv": 0.14894234746244767, "total_min_ns": 14200.0, "total_max_ns": 27436.0, "total_p5_ns": 16072.75, "total_p25_ns": 17537.5, "total_p50_ns": 18486.5, "total_p75_ns": 20943.25, "total_p95_ns": 25363.35, "total_p99_ns": 27328.989999999998, "total_ci_low_ns": 18782.817045454547, "total_ci_high_ns": 19927.3125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "pelletier/go-toml", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "2.4.3", "avg_time_ser_ns": 91643.65060240965, "avg_time_deser_ns": 153541.92771084336, "avg_time_total_ns": 245185.578313253, "median_size_bytes": 16444.0, "avg_ops_per_sec": 4078.5433094371647, "min_ops_per_sec": 3244.393687707641, "max_ops_per_sec": 4655.62352765906, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 91643.65060240965, "ser_median_ns": 90322.0, "ser_std_ns": 7974.597380208769, "ser_mad_ns": 4625.0, "ser_cv": 0.08701745650449992, "ser_min_ns": 80481.0, "ser_max_ns": 117735.0, "ser_p5_ns": 82635.1, "ser_p25_ns": 86246.5, "ser_p50_ns": 90322.0, "ser_p75_ns": 94950.5, "ser_p95_ns": 108426.59999999998, "ser_p99_ns": 114661.63999999997, "ser_ci_low_ns": 89968.94126506023, "ser_ci_high_ns": 93418.24156626506, "deser_mean_ns": 153541.92771084336, "deser_median_ns": 152002.0, "deser_std_ns": 11065.673435452378, "deser_mad_ns": 6083.0, "deser_cv": 0.07206939238311323, "deser_min_ns": 131648.0, "deser_max_ns": 190489.0, "deser_p5_ns": 141100.6, "deser_p25_ns": 145278.5, "deser_p50_ns": 152002.0, "deser_p75_ns": 157722.0, "deser_p95_ns": 174175.0, "deser_p99_ns": 187025.31999999998, "deser_ci_low_ns": 151272.8421686747, "deser_ci_high_ns": 155934.20813253013, "total_mean_ns": 245185.578313253, "total_median_ns": 241676.0, "total_std_ns": 17516.18028449799, "total_mad_ns": 8787.0, "total_cv": 0.07144049990623445, "total_min_ns": 214794.0, "total_max_ns": 308224.0, "total_p5_ns": 224472.2, "total_p25_ns": 233493.0, "total_p50_ns": 241676.0, "total_p75_ns": 251171.0, "total_p95_ns": 278094.49999999994, "total_p99_ns": 300958.79999999993, "total_ci_low_ns": 241497.4984939759, "total_ci_high_ns": 248804.1361445783, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.16779736109487}, {"serializer": "mongo-bson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.17.9", "avg_time_ser_ns": 43806.756097560974, "avg_time_deser_ns": 75702.9756097561, "avg_time_total_ns": 119509.73170731707, "median_size_bytes": 14461.0, "avg_ops_per_sec": 8367.519412134821, "min_ops_per_sec": 6702.323025160521, "max_ops_per_sec": 9865.727449413482, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 43806.756097560974, "ser_median_ns": 42455.5, "ser_std_ns": 4589.101982033693, "ser_mad_ns": 2873.0, "ser_cv": 0.10475785908030749, "ser_min_ns": 35525.0, "ser_max_ns": 56124.0, "ser_p5_ns": 38208.35, "ser_p25_ns": 40195.0, "ser_p50_ns": 42455.5, "ser_p75_ns": 46082.25, "ser_p95_ns": 52890.450000000004, "ser_p99_ns": 54669.24, "ser_ci_low_ns": 42817.732317073176, "ser_ci_high_ns": 44840.37286585366, "deser_mean_ns": 75702.9756097561, "deser_median_ns": 74680.0, "deser_std_ns": 5907.6755053016395, "deser_mad_ns": 3552.0, "deser_cv": 0.07803756005253111, "deser_min_ns": 65325.0, "deser_max_ns": 96092.0, "deser_p5_ns": 68739.1, "deser_p25_ns": 71464.5, "deser_p50_ns": 74680.0, "deser_p75_ns": 78656.0, "deser_p95_ns": 86946.15000000001, "deser_p99_ns": 93650.65999999999, "deser_ci_low_ns": 74477.35152439025, "deser_ci_high_ns": 77080.62713414634, "total_mean_ns": 119509.73170731707, "total_median_ns": 117673.0, "total_std_ns": 9979.795251429947, "total_mad_ns": 6764.0, "total_cv": 0.083506130495471, "total_min_ns": 101361.0, "total_max_ns": 149202.0, "total_p5_ns": 107907.25, "total_p25_ns": 112255.0, "total_p50_ns": 117673.0, "total_p75_ns": 125599.75, "total_p95_ns": 137206.95, "total_p99_ns": 148515.12, "total_ci_low_ns": 117544.79298780487, "total_ci_high_ns": 121586.69054878049, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.784803169447224}, {"serializer": "ugorji/cbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 18523.896551724138, "avg_time_deser_ns": 38014.793103448275, "avg_time_total_ns": 56538.68965517241, "median_size_bytes": 12030.0, "avg_ops_per_sec": 17687.003467872473, "min_ops_per_sec": 14193.658273483408, "max_ops_per_sec": 20485.086856768274, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 18523.896551724138, "ser_median_ns": 18165.0, "ser_std_ns": 1707.446386740334, "ser_mad_ns": 977.0, "ser_cv": 0.09217533589505017, "ser_min_ns": 14936.0, "ser_max_ns": 23746.0, "ser_p5_ns": 16397.9, "ser_p25_ns": 17314.0, "ser_p50_ns": 18165.0, "ser_p75_ns": 19463.0, "ser_p95_ns": 21691.4, "ser_p99_ns": 23249.78, "ser_ci_low_ns": 18180.66034482759, "ser_ci_high_ns": 18902.90459770115, "deser_mean_ns": 38014.793103448275, "deser_median_ns": 37454.0, "deser_std_ns": 2576.2997944949407, "deser_mad_ns": 1655.0, "deser_cv": 0.06777098029927849, "deser_min_ns": 33880.0, "deser_max_ns": 46708.0, "deser_p5_ns": 35107.9, "deser_p25_ns": 35929.5, "deser_p50_ns": 37454.0, "deser_p75_ns": 39507.5, "deser_p95_ns": 42897.0, "deser_p99_ns": 45218.48, "deser_ci_low_ns": 37489.465229885056, "deser_ci_high_ns": 38585.450574712646, "total_mean_ns": 56538.68965517241, "total_median_ns": 56044.0, "total_std_ns": 4125.901103297808, "total_mad_ns": 2806.0, "total_cv": 0.07297482712212719, "total_min_ns": 48816.0, "total_max_ns": 70454.0, "total_p5_ns": 51938.8, "total_p25_ns": 53323.0, "total_p50_ns": 56044.0, "total_p75_ns": 58927.0, "total_p95_ns": 65040.2, "total_p99_ns": 66482.52, "total_ci_low_ns": 55635.71408045977, "total_ci_high_ns": 57365.46120689655, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.414352052819416}, {"serializer": "encoding/gob", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 19997.616279069767, "avg_time_deser_ns": 35365.72093023256, "avg_time_total_ns": 55363.33720930233, "median_size_bytes": 5275.0, "avg_ops_per_sec": 18062.49497243054, "min_ops_per_sec": 12163.674402763587, "max_ops_per_sec": 25244.875290316068, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 19997.616279069767, "ser_median_ns": 19079.0, "ser_std_ns": 3860.4331185490955, "ser_mad_ns": 2374.5, "ser_cv": 0.1930446641577759, "ser_min_ns": 14145.0, "ser_max_ns": 32287.0, "ser_p5_ns": 15883.75, "ser_p25_ns": 16882.25, "ser_p50_ns": 19079.0, "ser_p75_ns": 22062.25, "ser_p95_ns": 28427.0, "ser_p99_ns": 31216.000000000007, "ser_ci_low_ns": 19181.448837209304, "ser_ci_high_ns": 20860.25668604651, "deser_mean_ns": 35365.72093023256, "deser_median_ns": 33954.0, "deser_std_ns": 5692.576692812911, "deser_mad_ns": 2659.5, "deser_cv": 0.16096311747872738, "deser_min_ns": 25299.0, "deser_max_ns": 52324.0, "deser_p5_ns": 29011.5, "deser_p25_ns": 31475.0, "deser_p50_ns": 33954.0, "deser_p75_ns": 36807.5, "deser_p95_ns": 47170.75, "deser_p99_ns": 52246.65, "deser_ci_low_ns": 34267.224709302325, "deser_ci_high_ns": 36652.49796511628, "total_mean_ns": 55363.33720930233, "total_median_ns": 53641.0, "total_std_ns": 8930.299192156033, "total_mad_ns": 4897.0, "total_cv": 0.16130348426061888, "total_min_ns": 39612.0, "total_max_ns": 82212.0, "total_p5_ns": 45829.75, "total_p25_ns": 49011.25, "total_p50_ns": 53641.0, "total_p75_ns": 58943.0, "total_p95_ns": 74120.25, "total_p99_ns": 81125.70000000001, "total_ci_low_ns": 53549.81075581395, "total_ci_high_ns": 57264.69360465116, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.429207804283861}, {"serializer": "ugorji/msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 18289.071428571428, "avg_time_deser_ns": 37502.96428571428, "avg_time_total_ns": 55792.03571428572, "median_size_bytes": 12041.0, "avg_ops_per_sec": 17923.70518833653, "min_ops_per_sec": 14030.952280731293, "max_ops_per_sec": 21220.159151193635, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 18289.071428571428, "ser_median_ns": 17622.5, "ser_std_ns": 2406.5590432340173, "ser_mad_ns": 1371.5, "ser_cv": 0.13158453957779723, "ser_min_ns": 15154.0, "ser_max_ns": 27051.0, "ser_p5_ns": 15623.35, "ser_p25_ns": 16449.5, "ser_p50_ns": 17622.5, "ser_p75_ns": 19440.0, "ser_p95_ns": 22948.3, "ser_p99_ns": 24590.050000000007, "ser_ci_low_ns": 17801.742857142857, "ser_ci_high_ns": 18794.46607142857, "deser_mean_ns": 37502.96428571428, "deser_median_ns": 36549.0, "deser_std_ns": 3428.2482914903803, "deser_mad_ns": 2091.5, "deser_cv": 0.09141272848120639, "deser_min_ns": 31971.0, "deser_max_ns": 48042.0, "deser_p5_ns": 33698.75, "deser_p25_ns": 34832.0, "deser_p50_ns": 36549.0, "deser_p75_ns": 39752.0, "deser_p95_ns": 44352.549999999996, "deser_p99_ns": 47330.69, "deser_ci_low_ns": 36798.10476190476, "deser_ci_high_ns": 38216.46339285714, "total_mean_ns": 55792.03571428572, "total_median_ns": 54582.0, "total_std_ns": 5438.805798774342, "total_mad_ns": 3684.5, "total_cv": 0.0974835517138465, "total_min_ns": 47125.0, "total_max_ns": 71271.0, "total_p5_ns": 49583.35, "total_p25_ns": 51320.25, "total_p50_ns": 54582.0, "total_p75_ns": 59373.25, "total_p95_ns": 65346.94999999999, "total_p99_ns": 71246.93, "total_ci_low_ns": 54651.684226190475, "total_ci_high_ns": 56998.25714285715, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.391046568108912}, {"serializer": "segmentio/encoding/json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "0.5.4", "avg_time_ser_ns": 21757.545454545456, "avg_time_deser_ns": 53643.0, "avg_time_total_ns": 75400.54545454546, "median_size_bytes": 16547.0, "avg_ops_per_sec": 13262.503526620256, "min_ops_per_sec": 9292.471239801513, "max_ops_per_sec": 17926.28710741431, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 21757.545454545456, "ser_median_ns": 20968.5, "ser_std_ns": 4196.027445066252, "ser_mad_ns": 2507.5, "ser_cv": 0.192853897689532, "ser_min_ns": 15778.0, "ser_max_ns": 32875.0, "ser_p5_ns": 16847.05, "ser_p25_ns": 18462.0, "ser_p50_ns": 20968.5, "ser_p75_ns": 23524.75, "ser_p95_ns": 31147.3, "ser_p99_ns": 31690.929999999993, "ser_ci_low_ns": 20945.053693181817, "ser_ci_high_ns": 22644.02073863636, "deser_mean_ns": 53643.0, "deser_median_ns": 52427.0, "deser_std_ns": 7049.927068995886, "deser_mad_ns": 3959.0, "deser_cv": 0.13142305741654803, "deser_min_ns": 39858.0, "deser_max_ns": 76170.0, "deser_p5_ns": 44165.75, "deser_p25_ns": 48799.25, "deser_p50_ns": 52427.0, "deser_p75_ns": 56911.25, "deser_p95_ns": 67181.34999999996, "deser_p99_ns": 74122.01999999999, "deser_ci_low_ns": 52207.86193181818, "deser_ci_high_ns": 55180.672443181815, "total_mean_ns": 75400.54545454546, "total_median_ns": 73129.5, "total_std_ns": 10533.282429211815, "total_mad_ns": 6483.5, "total_cv": 0.13969769536430887, "total_min_ns": 55784.0, "total_max_ns": 107614.0, "total_p5_ns": 61113.4, "total_p25_ns": 69071.75, "total_p50_ns": 73129.5, "total_p75_ns": 81449.25, "total_p95_ns": 94057.9, "total_p99_ns": 105626.91999999998, "total_ci_low_ns": 73279.19062499999, "total_ci_high_ns": 77500.95170454546, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.227084398169248}, {"serializer": "fxamacker/cbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "2.9.2", "avg_time_ser_ns": 18026.70588235294, "avg_time_deser_ns": 65572.95294117647, "avg_time_total_ns": 83599.65882352942, "median_size_bytes": 12030.0, "avg_ops_per_sec": 11961.771304723872, "min_ops_per_sec": 8160.933610805076, "max_ops_per_sec": 14045.732906343053, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 18026.70588235294, "ser_median_ns": 17043.0, "ser_std_ns": 3135.5613373940278, "ser_mad_ns": 1577.0, "ser_cv": 0.17393978455395745, "ser_min_ns": 13452.0, "ser_max_ns": 27076.0, "ser_p5_ns": 14850.6, "ser_p25_ns": 15717.0, "ser_p50_ns": 17043.0, "ser_p75_ns": 19388.0, "ser_p95_ns": 24746.6, "ser_p99_ns": 27007.12, "ser_ci_low_ns": 17380.593529411766, "ser_ci_high_ns": 18747.32588235294, "deser_mean_ns": 65572.95294117647, "deser_median_ns": 62227.0, "deser_std_ns": 9206.052187485768, "deser_mad_ns": 2954.0, "deser_cv": 0.14039404624257568, "deser_min_ns": 57115.0, "deser_max_ns": 96292.0, "deser_p5_ns": 58013.2, "deser_p25_ns": 59560.0, "deser_p50_ns": 62227.0, "deser_p75_ns": 68455.0, "deser_p95_ns": 88345.39999999998, "deser_p99_ns": 95699.8, "deser_ci_low_ns": 63674.92411764706, "deser_ci_high_ns": 67570.2394117647, "total_mean_ns": 83599.65882352942, "total_median_ns": 79770.0, "total_std_ns": 11790.006352792163, "total_mad_ns": 4301.0, "total_cv": 0.14102935967334143, "total_min_ns": 71196.0, "total_max_ns": 122535.0, "total_p5_ns": 73372.0, "total_p25_ns": 75731.0, "total_p50_ns": 79770.0, "total_p75_ns": 85711.0, "total_p95_ns": 112146.59999999998, "total_p99_ns": 119794.07999999999, "total_ci_low_ns": 81070.4588235294, "total_ci_high_ns": 86099.30529411764, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.511955938564979}, {"serializer": "shamaton/msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "3.1.2", "avg_time_ser_ns": 25593.280487804877, "avg_time_deser_ns": 52957.34146341463, "avg_time_total_ns": 78550.62195121951, "median_size_bytes": 11031.0, "avg_ops_per_sec": 12730.643948573788, "min_ops_per_sec": 9862.516519715171, "max_ops_per_sec": 15166.451808599379, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 25593.280487804877, "ser_median_ns": 25179.0, "ser_std_ns": 2320.3105436817605, "ser_mad_ns": 1370.5, "ser_cv": 0.0906609273784727, "ser_min_ns": 20305.0, "ser_max_ns": 32371.0, "ser_p5_ns": 22450.65, "ser_p25_ns": 24085.25, "ser_p50_ns": 25179.0, "ser_p75_ns": 26819.25, "ser_p95_ns": 29911.25, "ser_p99_ns": 31349.589999999997, "ser_ci_low_ns": 25058.861585365852, "ser_ci_high_ns": 26083.837804878047, "deser_mean_ns": 52957.34146341463, "deser_median_ns": 52526.0, "deser_std_ns": 3792.1120706062134, "deser_mad_ns": 2544.5, "deser_cv": 0.07160691918845621, "deser_min_ns": 45630.0, "deser_max_ns": 69023.0, "deser_p5_ns": 48993.35, "deser_p25_ns": 50178.0, "deser_p50_ns": 52526.0, "deser_p75_ns": 55197.75, "deser_p95_ns": 59461.850000000006, "deser_p99_ns": 63698.05999999998, "deser_ci_low_ns": 52178.82957317073, "deser_ci_high_ns": 53770.51707317073, "total_mean_ns": 78550.62195121951, "total_median_ns": 77635.5, "total_std_ns": 5883.265973048953, "total_mad_ns": 3934.5, "total_cv": 0.07489776435764574, "total_min_ns": 65935.0, "total_max_ns": 101394.0, "total_p5_ns": 71521.1, "total_p25_ns": 74629.75, "total_p50_ns": 77635.5, "total_p75_ns": 82132.25, "total_p95_ns": 88830.95, "total_p99_ns": 94086.17999999998, "total_ci_low_ns": 77332.23963414635, "total_ci_high_ns": 79860.95853658537, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.86355099985061}, {"serializer": "linkedin/goavro", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "2.15.0", "avg_time_ser_ns": 16346.121951219513, "avg_time_deser_ns": 31913.926829268294, "avg_time_total_ns": 48260.04878048781, "median_size_bytes": 4051.0, "avg_ops_per_sec": 20721.0731292156, "min_ops_per_sec": 15570.988134907042, "max_ops_per_sec": 24727.99208704253, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 16346.121951219513, "ser_median_ns": 15960.5, "ser_std_ns": 2099.496796796582, "ser_mad_ns": 1299.5, "ser_cv": 0.1284400546540611, "ser_min_ns": 13112.0, "ser_max_ns": 22515.0, "ser_p5_ns": 14125.75, "ser_p25_ns": 14813.0, "ser_p50_ns": 15960.5, "ser_p75_ns": 17549.5, "ser_p95_ns": 20855.350000000002, "ser_p99_ns": 21852.42, "ser_ci_low_ns": 15910.232012195122, "ser_ci_high_ns": 16798.03018292683, "deser_mean_ns": 31913.926829268294, "deser_median_ns": 30962.0, "deser_std_ns": 3243.9985568053594, "deser_mad_ns": 1475.0, "deser_cv": 0.1016483673149957, "deser_min_ns": 27328.0, "deser_max_ns": 42525.0, "deser_p5_ns": 28218.3, "deser_p25_ns": 29845.75, "deser_p50_ns": 30962.0, "deser_p75_ns": 33251.75, "deser_p95_ns": 38681.0, "deser_p99_ns": 40560.74999999999, "deser_ci_low_ns": 31232.51768292683, "deser_ci_high_ns": 32685.649085365854, "total_mean_ns": 48260.04878048781, "total_median_ns": 47283.5, "total_std_ns": 4956.2731989149315, "total_mad_ns": 2686.5, "total_cv": 0.10269929940308764, "total_min_ns": 40440.0, "total_max_ns": 64222.0, "total_p5_ns": 42639.8, "total_p25_ns": 44736.75, "total_p50_ns": 47283.5, "total_p75_ns": 50206.25, "total_p95_ns": 58699.9, "total_p99_ns": 62103.03999999999, "total_ci_low_ns": 47253.539024390244, "total_ci_high_ns": 49327.997256097566, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.162335086725806}, {"serializer": "kelindar/binary", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.0.19", "avg_time_ser_ns": 11765.56976744186, "avg_time_deser_ns": 19323.25581395349, "avg_time_total_ns": 31088.825581395347, "median_size_bytes": 4049.0, "avg_ops_per_sec": 32165.898238318638, "min_ops_per_sec": 25589.191125668516, "max_ops_per_sec": 37517.82096495836, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 11765.56976744186, "ser_median_ns": 11503.5, "ser_std_ns": 963.4968608965947, "ser_mad_ns": 583.5, "ser_cv": 0.08189121988488994, "ser_min_ns": 9973.0, "ser_max_ns": 14871.0, "ser_p5_ns": 10614.5, "ser_p25_ns": 11093.0, "ser_p50_ns": 11503.5, "ser_p75_ns": 12307.75, "ser_p95_ns": 13577.5, "ser_p99_ns": 14232.650000000005, "ser_ci_low_ns": 11567.434593023256, "ser_ci_high_ns": 11977.63226744186, "deser_mean_ns": 19323.25581395349, "deser_median_ns": 19026.5, "deser_std_ns": 1614.9223852123414, "deser_mad_ns": 902.0, "deser_cv": 0.08357403124820156, "deser_min_ns": 16681.0, "deser_max_ns": 24811.0, "deser_p5_ns": 17547.0, "deser_p25_ns": 18117.75, "deser_p50_ns": 19026.5, "deser_p75_ns": 19912.0, "deser_p95_ns": 22484.0, "deser_p99_ns": 24298.450000000004, "deser_ci_low_ns": 18994.25348837209, "deser_ci_high_ns": 19680.597383720928, "total_mean_ns": 31088.825581395347, "total_median_ns": 30858.0, "total_std_ns": 2410.618608387191, "total_mad_ns": 1601.5, "total_cv": 0.07753971284877968, "total_min_ns": 26654.0, "total_max_ns": 39079.0, "total_p5_ns": 28260.5, "total_p25_ns": 29245.25, "total_p50_ns": 30858.0, "total_p75_ns": 32133.25, "total_p95_ns": 35708.5, "total_p99_ns": 37110.400000000016, "total_ci_low_ns": 30607.978488372093, "total_ci_high_ns": 31605.679360465117, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.9992071881606766, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.39390639491127}, {"serializer": "ugorji/json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 34003.09756097561, "avg_time_deser_ns": 71823.73170731707, "avg_time_total_ns": 105826.82926829268, "median_size_bytes": 16546.0, "avg_ops_per_sec": 9449.399617414552, "min_ops_per_sec": 6806.795905031584, "max_ops_per_sec": 11129.784416075861, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 34003.09756097561, "ser_median_ns": 33116.5, "ser_std_ns": 3289.170095372125, "ser_mad_ns": 1665.5, "ser_cv": 0.09673148422651388, "ser_min_ns": 28731.0, "ser_max_ns": 43815.0, "ser_p5_ns": 30286.8, "ser_p25_ns": 31677.25, "ser_p50_ns": 33116.5, "ser_p75_ns": 35660.0, "ser_p95_ns": 41362.5, "ser_p99_ns": 43587.39, "ser_ci_low_ns": 33327.64786585366, "ser_ci_high_ns": 34766.04512195122, "deser_mean_ns": 71823.73170731707, "deser_median_ns": 69949.0, "deser_std_ns": 7917.136560009966, "deser_mad_ns": 3199.0, "deser_cv": 0.11023009208533514, "deser_min_ns": 60914.0, "deser_max_ns": 104582.0, "deser_p5_ns": 63618.65, "deser_p25_ns": 67293.0, "deser_p50_ns": 69949.0, "deser_p75_ns": 73664.25, "deser_p95_ns": 87567.8, "deser_p99_ns": 103379.15, "deser_ci_low_ns": 70290.85823170732, "deser_ci_high_ns": 73633.83231707317, "total_mean_ns": 105826.82926829268, "total_median_ns": 103282.0, "total_std_ns": 10679.648938610871, "total_mad_ns": 5029.5, "total_cv": 0.10091627059463129, "total_min_ns": 89849.0, "total_max_ns": 146912.0, "total_p5_ns": 92474.75, "total_p25_ns": 99343.0, "total_p50_ns": 103282.0, "total_p75_ns": 109278.75, "total_p95_ns": 128976.3, "total_p99_ns": 138598.15999999997, "total_ci_low_ns": 103493.59695121952, "total_ci_high_ns": 108252.67256097561, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.180111652952084}, {"serializer": "goccy/go-json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "0.10.6", "avg_time_ser_ns": 21623.22619047619, "avg_time_deser_ns": 42960.80952380953, "avg_time_total_ns": 64584.03571428572, "median_size_bytes": 16547.0, "avg_ops_per_sec": 15483.702573557264, "min_ops_per_sec": 11901.361515757402, "max_ops_per_sec": 19284.171551990126, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 21623.22619047619, "ser_median_ns": 20755.5, "ser_std_ns": 3591.824952637605, "ser_mad_ns": 2201.5, "ser_cv": 0.16610957685026673, "ser_min_ns": 15812.0, "ser_max_ns": 34799.0, "ser_p5_ns": 17685.75, "ser_p25_ns": 18708.25, "ser_p50_ns": 20755.5, "ser_p75_ns": 23852.75, "ser_p95_ns": 27865.549999999996, "ser_p99_ns": 31229.170000000006, "ser_ci_low_ns": 20903.77113095238, "ser_ci_high_ns": 22377.05267857143, "deser_mean_ns": 42960.80952380953, "deser_median_ns": 42363.0, "deser_std_ns": 3607.7885208912217, "deser_mad_ns": 2337.5, "deser_cv": 0.08397859725831588, "deser_min_ns": 36044.0, "deser_max_ns": 56960.0, "deser_p5_ns": 38518.1, "deser_p25_ns": 40228.75, "deser_p50_ns": 42363.0, "deser_p75_ns": 45205.0, "deser_p95_ns": 49069.75, "deser_p99_ns": 52278.80000000001, "deser_ci_low_ns": 42236.50416666667, "deser_ci_high_ns": 43724.33363095238, "total_mean_ns": 64584.03571428572, "total_median_ns": 64384.5, "total_std_ns": 6278.321893140702, "total_mad_ns": 4762.5, "total_cv": 0.0972116688544436, "total_min_ns": 51856.0, "total_max_ns": 84024.0, "total_p5_ns": 56716.25, "total_p25_ns": 59343.25, "total_p50_ns": 64384.5, "total_p75_ns": 68403.75, "total_p95_ns": 75595.45, "total_p99_ns": 81472.58, "total_ci_low_ns": 63226.11309523809, "total_ci_high_ns": 65960.4175595238, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.290294850418823}, {"serializer": "vmihailenco/msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "5.4.1", "avg_time_ser_ns": 38269.469879518074, "avg_time_deser_ns": 44694.03614457831, "avg_time_total_ns": 82963.50602409638, "median_size_bytes": 11457.0, "avg_ops_per_sec": 12053.492528504696, "min_ops_per_sec": 9232.331625351982, "max_ops_per_sec": 13404.825737265415, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 38269.469879518074, "ser_median_ns": 37505.0, "ser_std_ns": 2919.385022683212, "ser_mad_ns": 1233.0, "ser_cv": 0.07628496114198004, "ser_min_ns": 34671.0, "ser_max_ns": 48891.0, "ser_p5_ns": 35300.7, "ser_p25_ns": 36386.5, "ser_p50_ns": 37505.0, "ser_p75_ns": 39053.0, "ser_p95_ns": 44132.89999999999, "ser_p99_ns": 48836.88, "ser_ci_low_ns": 37683.52981927711, "ser_ci_high_ns": 38904.62138554217, "deser_mean_ns": 44694.03614457831, "deser_median_ns": 43639.0, "deser_std_ns": 3968.2249286102083, "deser_mad_ns": 1559.0, "deser_cv": 0.08878645275565654, "deser_min_ns": 39346.0, "deser_max_ns": 59490.0, "deser_p5_ns": 40943.6, "deser_p25_ns": 42172.5, "deser_p50_ns": 43639.0, "deser_p75_ns": 45304.5, "deser_p95_ns": 53467.49999999999, "deser_p99_ns": 59136.579999999994, "deser_ci_low_ns": 43923.42801204819, "deser_ci_high_ns": 45550.89457831325, "total_mean_ns": 82963.50602409638, "total_median_ns": 80699.0, "total_std_ns": 6620.805588692055, "total_mad_ns": 2577.0, "total_cv": 0.0798038306959818, "total_min_ns": 74600.0, "total_max_ns": 108315.0, "total_p5_ns": 76494.2, "total_p25_ns": 78886.5, "total_p50_ns": 80699.0, "total_p75_ns": 85030.0, "total_p95_ns": 94934.29999999999, "total_p99_ns": 106000.13999999998, "total_ci_low_ns": 81607.71746987953, "total_ci_high_ns": 84455.24156626506, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.529894362557425}, {"serializer": "encoding/json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 30444.493975903613, "avg_time_deser_ns": 157629.39759036145, "avg_time_total_ns": 188073.89156626505, "median_size_bytes": 16547.0, "avg_ops_per_sec": 5317.059117946016, "min_ops_per_sec": 4020.181310177089, "max_ops_per_sec": 6199.282123130141, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 30444.493975903613, "ser_median_ns": 29783.0, "ser_std_ns": 4314.0687669742565, "ser_mad_ns": 3008.0, "ser_cv": 0.1417027581535361, "ser_min_ns": 23795.0, "ser_max_ns": 43081.0, "ser_p5_ns": 25428.9, "ser_p25_ns": 27035.5, "ser_p50_ns": 29783.0, "ser_p75_ns": 33105.0, "ser_p95_ns": 39233.39999999998, "ser_p99_ns": 42721.02, "ser_ci_low_ns": 29515.006024096387, "ser_ci_high_ns": 31356.148493975903, "deser_mean_ns": 157629.39759036145, "deser_median_ns": 153627.0, "deser_std_ns": 16224.202226198351, "deser_mad_ns": 7636.0, "deser_cv": 0.10292624646299106, "deser_min_ns": 137385.0, "deser_max_ns": 217449.0, "deser_p5_ns": 141349.7, "deser_p25_ns": 146418.0, "deser_p50_ns": 153627.0, "deser_p75_ns": 162424.0, "deser_p95_ns": 192759.89999999994, "deser_p99_ns": 211895.95999999996, "deser_ci_low_ns": 154268.27650602412, "deser_ci_high_ns": 161276.53734939758, "total_mean_ns": 188073.89156626505, "total_median_ns": 182860.0, "total_std_ns": 18855.750103772156, "total_mad_ns": 8526.0, "total_cv": 0.10025713801497328, "total_min_ns": 161309.0, "total_max_ns": 248745.0, "total_p5_ns": 168169.8, "total_p25_ns": 175748.5, "total_p50_ns": 182860.0, "total_p75_ns": 193271.0, "total_p95_ns": 230985.49999999988, "total_p99_ns": 247762.63999999998, "total_ci_low_ns": 184213.17259036144, "total_ci_high_ns": 192170.42771084336, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.633211667631999}, {"serializer": "segmentio/encoding/json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "0.5.4", "avg_time_ser_ns": 1188.2777777777778, "avg_time_deser_ns": 2455.266666666667, "avg_time_total_ns": 3643.5444444444443, "median_size_bytes": 448.0, "avg_ops_per_sec": 274458.0216455893, "min_ops_per_sec": 175561.79775280898, "max_ops_per_sec": 442673.74944665784, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 1188.2777777777778, "ser_median_ns": 1179.5, "ser_std_ns": 320.74246828460116, "ser_mad_ns": 237.5, "ser_cv": 0.26992212955831596, "ser_min_ns": 571.0, "ser_max_ns": 1979.0, "ser_p5_ns": 716.7, "ser_p25_ns": 922.25, "ser_p50_ns": 1179.5, "ser_p75_ns": 1408.75, "ser_p95_ns": 1816.1, "ser_p99_ns": 1954.08, "ser_ci_low_ns": 1121.3416666666667, "ser_ci_high_ns": 1257.8122222222223, "deser_mean_ns": 2455.266666666667, "deser_median_ns": 2463.5, "deser_std_ns": 452.1837600013835, "deser_mad_ns": 325.5, "deser_cv": 0.18416889950910295, "deser_min_ns": 1688.0, "deser_max_ns": 3848.0, "deser_p5_ns": 1792.9, "deser_p25_ns": 2077.0, "deser_p50_ns": 2463.5, "deser_p75_ns": 2758.0, "deser_p95_ns": 3047.9999999999995, "deser_p99_ns": 3799.94, "deser_ci_low_ns": 2364.3308333333334, "deser_ci_high_ns": 2551.4830555555554, "total_mean_ns": 3643.5444444444443, "total_median_ns": 3632.0, "total_std_ns": 752.5967355211579, "total_mad_ns": 584.5, "total_cv": 0.20655621112806583, "total_min_ns": 2259.0, "total_max_ns": 5696.0, "total_p5_ns": 2531.95, "total_p25_ns": 3019.75, "total_p50_ns": 3632.0, "total_p75_ns": 4173.75, "total_p95_ns": 4720.3, "total_p99_ns": 5680.87, "total_ci_low_ns": 3497.618888888889, "total_ci_high_ns": 3801.6477777777777, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.9384057971014492, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.522294631062069}, {"serializer": "jsoniter", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.1.12", "avg_time_ser_ns": 1792.5111111111112, "avg_time_deser_ns": 2672.8333333333335, "avg_time_total_ns": 4465.344444444445, "median_size_bytes": 448.0, "avg_ops_per_sec": 223946.88975094617, "min_ops_per_sec": 135722.04125950055, "max_ops_per_sec": 422119.0375685943, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 1792.5111111111112, "ser_median_ns": 1821.0, "ser_std_ns": 438.914218141076, "ser_mad_ns": 309.0, "ser_cv": 0.24485997069720217, "ser_min_ns": 909.0, "ser_max_ns": 3321.0, "ser_p5_ns": 1127.45, "ser_p25_ns": 1442.0, "ser_p50_ns": 1821.0, "ser_p75_ns": 2081.0, "ser_p95_ns": 2390.6, "ser_p99_ns": 2653.4999999999995, "ser_ci_low_ns": 1699.5666666666666, "ser_ci_high_ns": 1884.6463888888889, "deser_mean_ns": 2672.8333333333335, "deser_median_ns": 2703.0, "deser_std_ns": 474.46021961804126, "deser_mad_ns": 337.0, "deser_cv": 0.17751208565867976, "deser_min_ns": 1460.0, "deser_max_ns": 4047.0, "deser_p5_ns": 1953.8, "deser_p25_ns": 2355.25, "deser_p50_ns": 2703.0, "deser_p75_ns": 2991.5, "deser_p95_ns": 3466.4, "deser_p99_ns": 3711.47, "deser_ci_low_ns": 2574.514722222222, "deser_ci_high_ns": 2771.1102777777774, "total_mean_ns": 4465.344444444445, "total_median_ns": 4509.0, "total_std_ns": 885.358001114424, "total_mad_ns": 654.5, "total_cv": 0.19827317066568997, "total_min_ns": 2369.0, "total_max_ns": 7368.0, "total_p5_ns": 3122.8, "total_p25_ns": 3814.25, "total_p50_ns": 4509.0, "total_p75_ns": 5123.5, "total_p95_ns": 5797.4, "total_p99_ns": 6152.259999999999, "total_ci_low_ns": 4292.255277777777, "total_ci_high_ns": 4646.7908333333335, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.9880434782608696, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.4042041565408216}, {"serializer": "shamaton/msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "3.1.2", "avg_time_ser_ns": 2314.5222222222224, "avg_time_deser_ns": 1945.6, "avg_time_total_ns": 4260.122222222222, "median_size_bytes": 317.0, "avg_ops_per_sec": 234735.04933348286, "min_ops_per_sec": 153680.6516059628, "max_ops_per_sec": 363901.018922853, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 2314.5222222222224, "ser_median_ns": 2324.0, "ser_std_ns": 526.4917432214864, "ser_mad_ns": 368.5, "ser_cv": 0.2274731856823524, "ser_min_ns": 1396.0, "ser_max_ns": 3593.0, "ser_p5_ns": 1489.9, "ser_p25_ns": 1932.75, "ser_p50_ns": 2324.0, "ser_p75_ns": 2638.25, "ser_p95_ns": 3314.5499999999997, "ser_p99_ns": 3430.13, "ser_ci_low_ns": 2207.133333333333, "ser_ci_high_ns": 2417.1077777777778, "deser_mean_ns": 1945.6, "deser_median_ns": 1842.5, "deser_std_ns": 369.076399630273, "deser_mad_ns": 235.0, "deser_cv": 0.18969798500733603, "deser_min_ns": 1346.0, "deser_max_ns": 3016.0, "deser_p5_ns": 1457.15, "deser_p25_ns": 1695.5, "deser_p50_ns": 1842.5, "deser_p75_ns": 2169.75, "deser_p95_ns": 2690.1, "deser_p99_ns": 2925.22, "deser_ci_low_ns": 1870.6338888888888, "deser_ci_high_ns": 2017.8844444444442, "total_mean_ns": 4260.122222222222, "total_median_ns": 4167.5, "total_std_ns": 882.002953290398, "total_mad_ns": 575.5, "total_cv": 0.20703700675289916, "total_min_ns": 2748.0, "total_max_ns": 6507.0, "total_p5_ns": 2965.4, "total_p25_ns": 3639.75, "total_p50_ns": 4167.5, "total_p75_ns": 4859.5, "total_p95_ns": 6029.55, "total_p99_ns": 6366.38, "total_ci_low_ns": 4078.558611111111, "total_ci_high_ns": 4442.814444444444, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.9879227053140096, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.118213630503657}, {"serializer": "pelletier/go-toml", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "2.4.3", "avg_time_ser_ns": 4729.16091954023, "avg_time_deser_ns": 9057.666666666666, "avg_time_total_ns": 13786.827586206897, "median_size_bytes": 500.0, "avg_ops_per_sec": 72533.00251614484, "min_ops_per_sec": 53530.32492907232, "max_ops_per_sec": 95474.50830628222, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 4729.16091954023, "ser_median_ns": 4629.0, "ser_std_ns": 560.1603149589932, "ser_mad_ns": 340.0, "ser_cv": 0.11844814005894563, "ser_min_ns": 3781.0, "ser_max_ns": 6531.0, "ser_p5_ns": 3980.1, "ser_p25_ns": 4347.5, "ser_p50_ns": 4629.0, "ser_p75_ns": 5052.5, "ser_p95_ns": 5764.000000000001, "ser_p99_ns": 6477.68, "ser_ci_low_ns": 4617.52327586207, "ser_ci_high_ns": 4849.791091954023, "deser_mean_ns": 9057.666666666666, "deser_median_ns": 9006.0, "deser_std_ns": 1248.5634970643464, "deser_mad_ns": 949.0, "deser_cv": 0.13784604170290507, "deser_min_ns": 6693.0, "deser_max_ns": 12150.0, "deser_p5_ns": 7197.6, "deser_p25_ns": 8142.5, "deser_p50_ns": 9006.0, "deser_p75_ns": 10017.5, "deser_p95_ns": 11317.8, "deser_p99_ns": 12029.6, "deser_ci_low_ns": 8788.958045977011, "deser_ci_high_ns": 9320.33448275862, "total_mean_ns": 13786.827586206897, "total_median_ns": 13517.0, "total_std_ns": 1738.663307784116, "total_mad_ns": 1065.0, "total_cv": 0.126110470078234, "total_min_ns": 10474.0, "total_max_ns": 18681.0, "total_p5_ns": 11218.0, "total_p25_ns": 12630.0, "total_p50_ns": 13517.0, "total_p75_ns": 15011.0, "total_p95_ns": 16864.0, "total_p99_ns": 17752.2, "total_ci_low_ns": 13421.949999999999, "total_ci_high_ns": 14160.791379310343, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.313442333984403}, {"serializer": "protobuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.36.11", "avg_time_ser_ns": 1500.0222222222221, "avg_time_deser_ns": 1904.3, "avg_time_total_ns": 3404.322222222222, "median_size_bytes": 155.0, "avg_ops_per_sec": 293744.2271099811, "min_ops_per_sec": 191094.97420217848, "max_ops_per_sec": 475963.82674916706, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 1500.0222222222221, "ser_median_ns": 1513.5, "ser_std_ns": 353.1411207803723, "ser_mad_ns": 234.0, "ser_cv": 0.23542392609171353, "ser_min_ns": 789.0, "ser_max_ns": 2438.0, "ser_p5_ns": 920.65, "ser_p25_ns": 1271.5, "ser_p50_ns": 1513.5, "ser_p75_ns": 1727.0, "ser_p95_ns": 2121.9, "ser_p99_ns": 2207.49, "ser_ci_low_ns": 1430.6880555555556, "ser_ci_high_ns": 1571.0644444444445, "deser_mean_ns": 1904.3, "deser_median_ns": 1907.0, "deser_std_ns": 346.65919053448226, "deser_mad_ns": 236.0, "deser_cv": 0.18204021978390078, "deser_min_ns": 1267.0, "deser_max_ns": 3068.0, "deser_p5_ns": 1362.55, "deser_p25_ns": 1659.75, "deser_p50_ns": 1907.0, "deser_p75_ns": 2126.5, "deser_p95_ns": 2437.2, "deser_p99_ns": 2614.1, "deser_ci_low_ns": 1832.4477777777777, "deser_ci_high_ns": 1974.997222222222, "total_mean_ns": 3404.322222222222, "total_median_ns": 3429.5, "total_std_ns": 672.3016281966786, "total_mad_ns": 459.5, "total_cv": 0.19748472215941526, "total_min_ns": 2101.0, "total_max_ns": 5233.0, "total_p5_ns": 2286.45, "total_p25_ns": 2940.75, "total_p50_ns": 3429.5, "total_p75_ns": 3858.0, "total_p95_ns": 4533.3, "total_p99_ns": 4997.15, "total_ci_low_ns": 3266.706666666667, "total_ci_high_ns": 3545.986388888889, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.8971014492753623, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.3149710844268867}, {"serializer": "ugorji/cbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 1661.5454545454545, "avg_time_deser_ns": 2523.590909090909, "avg_time_total_ns": 4185.136363636364, "median_size_bytes": 332.0, "avg_ops_per_sec": 238940.84042010142, "min_ops_per_sec": 153421.29487572875, "max_ops_per_sec": 345661.9426201175, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 1661.5454545454545, "ser_median_ns": 1657.0, "ser_std_ns": 343.9609009152228, "ser_mad_ns": 217.0, "ser_cv": 0.20701263391516392, "ser_min_ns": 1082.0, "ser_max_ns": 2619.0, "ser_p5_ns": 1118.95, "ser_p25_ns": 1426.0, "ser_p50_ns": 1657.0, "ser_p75_ns": 1841.25, "ser_p95_ns": 2271.8499999999995, "ser_p99_ns": 2596.38, "ser_ci_low_ns": 1592.1011363636362, "ser_ci_high_ns": 1732.9011363636364, "deser_mean_ns": 2523.590909090909, "deser_median_ns": 2502.0, "deser_std_ns": 452.20711957781606, "deser_mad_ns": 297.0, "deser_cv": 0.17919192764120306, "deser_min_ns": 1811.0, "deser_max_ns": 3925.0, "deser_p5_ns": 1934.45, "deser_p25_ns": 2138.5, "deser_p50_ns": 2502.0, "deser_p75_ns": 2726.5, "deser_p95_ns": 3312.7, "deser_p99_ns": 3697.0599999999986, "deser_ci_low_ns": 2427.71875, "deser_ci_high_ns": 2616.763068181818, "total_mean_ns": 4185.136363636364, "total_median_ns": 4158.5, "total_std_ns": 769.6681055399629, "total_mad_ns": 506.5, "total_cv": 0.18390514398226604, "total_min_ns": 2893.0, "total_max_ns": 6518.0, "total_p5_ns": 3069.35, "total_p25_ns": 3549.0, "total_p50_ns": 4158.5, "total_p75_ns": 4585.0, "total_p95_ns": 5513.8499999999985, "total_p99_ns": 6194.359999999999, "total_ci_low_ns": 4021.6318181818183, "total_ci_high_ns": 4348.321022727273, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.9920948616600791, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.3608251924069097}, {"serializer": "kelindar/binary", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.0.19", "avg_time_ser_ns": 998.0978260869565, "avg_time_deser_ns": 1103.5869565217392, "avg_time_total_ns": 2101.6847826086955, "median_size_bytes": 113.0, "avg_ops_per_sec": 475808.745571617, "min_ops_per_sec": 301932.36714975844, "max_ops_per_sec": 708717.2218284904, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 998.0978260869565, "ser_median_ns": 967.5, "ser_std_ns": 242.69173047134962, "ser_mad_ns": 162.0, "ser_cv": 0.24315425214662853, "ser_min_ns": 599.0, "ser_max_ns": 1667.0, "ser_p5_ns": 694.5, "ser_p25_ns": 813.75, "ser_p50_ns": 967.5, "ser_p75_ns": 1132.25, "ser_p95_ns": 1451.15, "ser_p99_ns": 1650.6200000000001, "ser_ci_low_ns": 947.0972826086957, "ser_ci_high_ns": 1049.189402173913, "deser_mean_ns": 1103.5869565217392, "deser_median_ns": 1068.5, "deser_std_ns": 194.37061869124065, "deser_mad_ns": 119.0, "deser_cv": 0.1761262377582403, "deser_min_ns": 781.0, "deser_max_ns": 1645.0, "deser_p5_ns": 844.85, "deser_p25_ns": 959.5, "deser_p50_ns": 1068.5, "deser_p75_ns": 1197.25, "deser_p95_ns": 1474.8000000000002, "deser_p99_ns": 1627.71, "deser_ci_low_ns": 1064.891304347826, "deser_ci_high_ns": 1143.1010869565218, "total_mean_ns": 2101.6847826086955, "total_median_ns": 2017.0, "total_std_ns": 423.12588544158046, "total_mad_ns": 277.5, "total_cv": 0.20132699677083812, "total_min_ns": 1411.0, "total_max_ns": 3312.0, "total_p5_ns": 1555.75, "total_p25_ns": 1781.75, "total_p50_ns": 2017.0, "total_p75_ns": 2343.75, "total_p95_ns": 2896.25, "total_p99_ns": 3263.77, "total_ci_low_ns": 2015.1510869565216, "total_ci_high_ns": 2188.122010869565, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "fxamacker/cbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "2.9.2", "avg_time_ser_ns": 1646.4888888888888, "avg_time_deser_ns": 3649.6444444444446, "avg_time_total_ns": 5296.133333333333, "median_size_bytes": 332.0, "avg_ops_per_sec": 188816.99856499082, "min_ops_per_sec": 134843.5814455232, "max_ops_per_sec": 245700.2457002457, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 1646.4888888888888, "ser_median_ns": 1625.0, "ser_std_ns": 295.17346811603926, "ser_mad_ns": 211.5, "ser_cv": 0.17927449745211044, "ser_min_ns": 1072.0, "ser_max_ns": 2429.0, "ser_p5_ns": 1197.7, "ser_p25_ns": 1428.5, "ser_p50_ns": 1625.0, "ser_p75_ns": 1843.75, "ser_p95_ns": 2181.0499999999997, "ser_p99_ns": 2409.42, "ser_ci_low_ns": 1585.0130555555554, "ser_ci_high_ns": 1707.7983333333332, "deser_mean_ns": 3649.6444444444446, "deser_median_ns": 3593.5, "deser_std_ns": 473.37025703954816, "deser_mad_ns": 356.0, "deser_cv": 0.12970311608302584, "deser_min_ns": 2885.0, "deser_max_ns": 5118.0, "deser_p5_ns": 3009.75, "deser_p25_ns": 3247.5, "deser_p50_ns": 3593.5, "deser_p75_ns": 3943.25, "deser_p95_ns": 4480.0, "deser_p99_ns": 5093.08, "deser_ci_low_ns": 3560.105555555556, "deser_ci_high_ns": 3744.579722222222, "total_mean_ns": 5296.133333333333, "total_median_ns": 5249.0, "total_std_ns": 727.4152670837454, "total_mad_ns": 511.0, "total_cv": 0.13734836744110399, "total_min_ns": 4070.0, "total_max_ns": 7416.0, "total_p5_ns": 4223.75, "total_p25_ns": 4775.25, "total_p50_ns": 5249.0, "total_p75_ns": 5762.0, "total_p95_ns": 6582.25, "total_p99_ns": 7132.09, "total_ci_low_ns": 5149.006666666666, "total_ci_high_ns": 5449.598333333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.360716101428139}, {"serializer": "hamba/avro", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "2.31.0", "avg_time_ser_ns": 1147.098901098901, "avg_time_deser_ns": 1146.2307692307693, "avg_time_total_ns": 2293.3296703296705, "median_size_bytes": 116.0, "avg_ops_per_sec": 436047.20809993625, "min_ops_per_sec": 261028.45210127905, "max_ops_per_sec": 868809.7306689835, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 1147.098901098901, "ser_median_ns": 1158.0, "ser_std_ns": 320.6312196258795, "ser_mad_ns": 248.0, "ser_cv": 0.2795148869192711, "ser_min_ns": 531.0, "ser_max_ns": 2057.0, "ser_p5_ns": 633.5, "ser_p25_ns": 898.5, "ser_p50_ns": 1158.0, "ser_p75_ns": 1385.5, "ser_p95_ns": 1596.5, "ser_p99_ns": 1773.4999999999982, "ser_ci_low_ns": 1082.235989010989, "ser_ci_high_ns": 1215.0016483516483, "deser_mean_ns": 1146.2307692307693, "deser_median_ns": 1181.0, "deser_std_ns": 270.6898215433663, "deser_mad_ns": 203.0, "deser_cv": 0.2361564780929979, "deser_min_ns": 597.0, "deser_max_ns": 1939.0, "deser_p5_ns": 704.0, "deser_p25_ns": 930.5, "deser_p50_ns": 1181.0, "deser_p75_ns": 1353.0, "deser_p95_ns": 1542.0, "deser_p99_ns": 1790.499999999999, "deser_ci_low_ns": 1091.989010989011, "deser_ci_high_ns": 1202.2052197802197, "total_mean_ns": 2293.3296703296705, "total_median_ns": 2305.0, "total_std_ns": 575.3331219571851, "total_mad_ns": 489.0, "total_cv": 0.2508724015568507, "total_min_ns": 1151.0, "total_max_ns": 3831.0, "total_p5_ns": 1402.0, "total_p25_ns": 1765.5, "total_p50_ns": 2305.0, "total_p75_ns": 2722.0, "total_p95_ns": 3155.0, "total_p99_ns": 3422.3999999999974, "total_ci_low_ns": 2174.5538461538463, "total_ci_high_ns": 2407.0376373626373, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.21428571428571427, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.3782339382686832}, {"serializer": "vmihailenco/msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "5.4.1", "avg_time_ser_ns": 2005.103448275862, "avg_time_deser_ns": 3592.0689655172414, "avg_time_total_ns": 5597.172413793103, "median_size_bytes": 397.0, "avg_ops_per_sec": 178661.63949777596, "min_ops_per_sec": 129449.83818770226, "max_ops_per_sec": 247279.92087042533, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 2005.103448275862, "ser_median_ns": 2019.0, "ser_std_ns": 332.8484547435671, "ser_mad_ns": 257.0, "ser_cv": 0.16600063953297528, "ser_min_ns": 1349.0, "ser_max_ns": 2852.0, "ser_p5_ns": 1543.2, "ser_p25_ns": 1726.0, "ser_p50_ns": 2019.0, "ser_p75_ns": 2225.0, "ser_p95_ns": 2582.9, "ser_p99_ns": 2783.2, "ser_ci_low_ns": 1932.6646551724139, "ser_ci_high_ns": 2075.6224137931035, "deser_mean_ns": 3592.0689655172414, "deser_median_ns": 3581.0, "deser_std_ns": 447.2523556193494, "deser_mad_ns": 313.0, "deser_cv": 0.12451107145014045, "deser_min_ns": 2695.0, "deser_max_ns": 4873.0, "deser_p5_ns": 2950.5, "deser_p25_ns": 3271.5, "deser_p50_ns": 3581.0, "deser_p75_ns": 3892.0, "deser_p95_ns": 4338.7, "deser_p99_ns": 4559.1, "deser_ci_low_ns": 3499.8617816091955, "deser_ci_high_ns": 3688.5612068965515, "total_mean_ns": 5597.172413793103, "total_median_ns": 5571.0, "total_std_ns": 762.4835980987966, "total_mad_ns": 562.0, "total_cv": 0.1362265697264943, "total_min_ns": 4044.0, "total_max_ns": 7725.0, "total_p5_ns": 4498.7, "total_p25_ns": 5018.5, "total_p50_ns": 5571.0, "total_p75_ns": 6135.0, "total_p95_ns": 6903.6, "total_p99_ns": 7174.6, "total_ci_low_ns": 5443.485057471264, "total_ci_high_ns": 5754.920689655172, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.687485509589933}, {"serializer": "ugorji/msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 1623.9775280898875, "avg_time_deser_ns": 2460.3932584269664, "avg_time_total_ns": 4084.370786516854, "median_size_bytes": 329.0, "avg_ops_per_sec": 244835.75372274138, "min_ops_per_sec": 164500.74025333114, "max_ops_per_sec": 373273.6095558044, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 1623.9775280898875, "ser_median_ns": 1603.0, "ser_std_ns": 409.36899829127515, "ser_mad_ns": 288.0, "ser_cv": 0.2520779944367657, "ser_min_ns": 936.0, "ser_max_ns": 2768.0, "ser_p5_ns": 1066.4, "ser_p25_ns": 1310.0, "ser_p50_ns": 1603.0, "ser_p75_ns": 1881.0, "ser_p95_ns": 2447.9999999999995, "ser_p99_ns": 2594.640000000001, "ser_ci_low_ns": 1540.738202247191, "ser_ci_high_ns": 1712.5643258426967, "deser_mean_ns": 2460.3932584269664, "deser_median_ns": 2452.0, "deser_std_ns": 419.38419731081274, "deser_mad_ns": 254.0, "deser_cv": 0.17045413202722837, "deser_min_ns": 1654.0, "deser_max_ns": 3575.0, "deser_p5_ns": 1865.8, "deser_p25_ns": 2198.0, "deser_p50_ns": 2452.0, "deser_p75_ns": 2659.0, "deser_p95_ns": 3175.7999999999997, "deser_p99_ns": 3487.0000000000005, "deser_ci_low_ns": 2379.005337078652, "deser_ci_high_ns": 2545.6893258426962, "total_mean_ns": 4084.370786516854, "total_median_ns": 4069.0, "total_std_ns": 790.5389470887231, "total_mad_ns": 485.0, "total_cv": 0.1935521989576499, "total_min_ns": 2679.0, "total_max_ns": 6079.0, "total_p5_ns": 2875.0, "total_p25_ns": 3518.0, "total_p50_ns": 4069.0, "total_p75_ns": 4459.0, "total_p95_ns": 5588.999999999999, "total_p99_ns": 6042.04, "total_ci_low_ns": 3921.88202247191, "total_ci_high_ns": 4255.902808988763, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.9848558866634098, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.128572440629749}, {"serializer": "encoding/json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 1643.8522727272727, "avg_time_deser_ns": 7938.522727272727, "avg_time_total_ns": 9582.375, "median_size_bytes": 448.0, "avg_ops_per_sec": 104358.26191314784, "min_ops_per_sec": 79245.58205880022, "max_ops_per_sec": 134030.29084573113, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 1643.8522727272727, "ser_median_ns": 1643.5, "ser_std_ns": 295.99951614486423, "ser_mad_ns": 156.5, "ser_cv": 0.1800645478037872, "ser_min_ns": 1032.0, "ser_max_ns": 2445.0, "ser_p5_ns": 1210.05, "ser_p25_ns": 1425.0, "ser_p50_ns": 1643.5, "ser_p75_ns": 1791.25, "ser_p95_ns": 2189.95, "ser_p99_ns": 2394.54, "ser_ci_low_ns": 1584.1281250000002, "ser_ci_high_ns": 1710.1264204545455, "deser_mean_ns": 7938.522727272727, "deser_median_ns": 7937.5, "deser_std_ns": 899.6851042636283, "deser_mad_ns": 634.5, "deser_cv": 0.11333155237721595, "deser_min_ns": 6387.0, "deser_max_ns": 10232.0, "deser_p5_ns": 6606.8, "deser_p25_ns": 7266.5, "deser_p50_ns": 7937.5, "deser_p75_ns": 8501.0, "deser_p95_ns": 9376.449999999999, "deser_p99_ns": 10213.73, "deser_ci_low_ns": 7752.040625000001, "deser_ci_high_ns": 8123.596875, "total_mean_ns": 9582.375, "total_median_ns": 9673.0, "total_std_ns": 1168.0760909762448, "total_mad_ns": 768.5, "total_cv": 0.12189839063658485, "total_min_ns": 7461.0, "total_max_ns": 12619.0, "total_p5_ns": 7823.05, "total_p25_ns": 8843.25, "total_p50_ns": 9673.0, "total_p75_ns": 10327.25, "total_p95_ns": 11526.449999999999, "total_p99_ns": 12427.599999999999, "total_ci_low_ns": 9336.025568181818, "total_ci_high_ns": 9818.672727272728, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.553742856578433}, {"serializer": "goccy/go-json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "0.10.6", "avg_time_ser_ns": 1300.2045454545455, "avg_time_deser_ns": 1969.4431818181818, "avg_time_total_ns": 3269.6477272727275, "median_size_bytes": 448.0, "avg_ops_per_sec": 305843.34564816195, "min_ops_per_sec": 201207.24346076458, "max_ops_per_sec": 507614.21319796954, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 1300.2045454545455, "ser_median_ns": 1288.0, "ser_std_ns": 338.4379315950264, "ser_mad_ns": 216.0, "ser_cv": 0.26029591480678144, "ser_min_ns": 655.0, "ser_max_ns": 2072.0, "ser_p5_ns": 762.35, "ser_p25_ns": 1089.0, "ser_p50_ns": 1288.0, "ser_p75_ns": 1503.5, "ser_p95_ns": 1918.0999999999995, "ser_p99_ns": 2046.77, "ser_ci_low_ns": 1231.8014204545455, "ser_ci_high_ns": 1367.3528409090907, "deser_mean_ns": 1969.4431818181818, "deser_median_ns": 1878.0, "deser_std_ns": 397.2273403895785, "deser_mad_ns": 233.0, "deser_cv": 0.20169525277843248, "deser_min_ns": 1208.0, "deser_max_ns": 2927.0, "deser_p5_ns": 1390.85, "deser_p25_ns": 1729.0, "deser_p50_ns": 1878.0, "deser_p75_ns": 2198.0, "deser_p95_ns": 2709.9, "deser_p99_ns": 2813.0299999999993, "deser_ci_low_ns": 1885.9125, "deser_ci_high_ns": 2046.719034090909, "total_mean_ns": 3269.6477272727275, "total_median_ns": 3193.5, "total_std_ns": 719.0706012972215, "total_mad_ns": 430.5, "total_cv": 0.21992295845797777, "total_min_ns": 1970.0, "total_max_ns": 4970.0, "total_p5_ns": 2095.55, "total_p25_ns": 2803.5, "total_p50_ns": 3193.5, "total_p75_ns": 3734.25, "total_p95_ns": 4566.9, "total_p99_ns": 4851.679999999999, "total_ci_low_ns": 3126.3193181818183, "total_ci_high_ns": 3408.6610795454544, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.8473320158102767, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.9822349882440422}, {"serializer": "sonic", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.15.2", "avg_time_ser_ns": 1198.370786516854, "avg_time_deser_ns": 2371.5955056179773, "avg_time_total_ns": 3569.9662921348313, "median_size_bytes": 448.0, "avg_ops_per_sec": 280114.68965495535, "min_ops_per_sec": 181818.18181818182, "max_ops_per_sec": 611620.7951070337, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 1198.370786516854, "ser_median_ns": 1178.0, "ser_std_ns": 306.6510965999719, "ser_mad_ns": 220.0, "ser_cv": 0.25588999669398993, "ser_min_ns": 436.0, "ser_max_ns": 1933.0, "ser_p5_ns": 743.8, "ser_p25_ns": 981.0, "ser_p50_ns": 1178.0, "ser_p75_ns": 1431.0, "ser_p95_ns": 1670.3999999999999, "ser_p99_ns": 1869.6400000000003, "ser_ci_low_ns": 1135.4042134831461, "ser_ci_high_ns": 1264.1595505617977, "deser_mean_ns": 2371.5955056179773, "deser_median_ns": 2345.0, "deser_std_ns": 512.9018318065165, "deser_mad_ns": 337.0, "deser_cv": 0.21626868097511737, "deser_min_ns": 1199.0, "deser_max_ns": 3692.0, "deser_p5_ns": 1588.0, "deser_p25_ns": 2034.0, "deser_p50_ns": 2345.0, "deser_p75_ns": 2732.0, "deser_p95_ns": 3305.9999999999995, "deser_p99_ns": 3634.8, "deser_ci_low_ns": 2266.3356741573034, "deser_ci_high_ns": 2477.2632022471907, "total_mean_ns": 3569.9662921348313, "total_median_ns": 3500.0, "total_std_ns": 796.921469403556, "total_mad_ns": 510.0, "total_cv": 0.22322941008134808, "total_min_ns": 1635.0, "total_max_ns": 5500.0, "total_p5_ns": 2312.2, "total_p25_ns": 3098.0, "total_p50_ns": 3500.0, "total_p75_ns": 4136.0, "total_p95_ns": 4976.8, "total_p99_ns": 5489.4400000000005, "total_ci_low_ns": 3410.81095505618, "total_ci_high_ns": 3733.7606741573036, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.8993649242794333, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.3025153551179938}, {"serializer": "linkedin/goavro", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "2.15.0", "avg_time_ser_ns": 1551.7011494252874, "avg_time_deser_ns": 2207.5862068965516, "avg_time_total_ns": 3759.287356321839, "median_size_bytes": 114.0, "avg_ops_per_sec": 266007.86404857854, "min_ops_per_sec": 178603.32202178962, "max_ops_per_sec": 385059.6842510589, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 1551.7011494252874, "ser_median_ns": 1541.0, "ser_std_ns": 337.5571653548246, "ser_mad_ns": 237.0, "ser_cv": 0.21754006271107526, "ser_min_ns": 882.0, "ser_max_ns": 2456.0, "ser_p5_ns": 1056.9, "ser_p25_ns": 1303.0, "ser_p50_ns": 1541.0, "ser_p75_ns": 1752.0, "ser_p95_ns": 2150.4, "ser_p99_ns": 2410.42, "ser_ci_low_ns": 1482.6206896551723, "ser_ci_high_ns": 1625.7936781609194, "deser_mean_ns": 2207.5862068965516, "deser_median_ns": 2220.0, "deser_std_ns": 301.83734075268814, "deser_mad_ns": 180.0, "deser_cv": 0.13672731774176752, "deser_min_ns": 1612.0, "deser_max_ns": 3143.0, "deser_p5_ns": 1721.7, "deser_p25_ns": 2010.0, "deser_p50_ns": 2220.0, "deser_p75_ns": 2367.5, "deser_p95_ns": 2663.7000000000003, "deser_p99_ns": 2987.34, "deser_ci_low_ns": 2144.5954022988503, "deser_ci_high_ns": 2267.4729885057473, "total_mean_ns": 3759.287356321839, "total_median_ns": 3744.0, "total_std_ns": 572.8553108454698, "total_mad_ns": 374.0, "total_cv": 0.15238401764688794, "total_min_ns": 2597.0, "total_max_ns": 5599.0, "total_p5_ns": 2859.0, "total_p25_ns": 3407.5, "total_p50_ns": 3744.0, "total_p75_ns": 4120.5, "total_p95_ns": 4730.300000000001, "total_p99_ns": 5128.58, "total_ci_low_ns": 3637.5439655172413, "total_ci_high_ns": 3880.4063218390806, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.980384807596202, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.2913242864296004}, {"serializer": "goccy/go-yaml", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.19.2", "avg_time_ser_ns": 66247.05681818182, "avg_time_deser_ns": 79328.31818181818, "avg_time_total_ns": 145575.375, "median_size_bytes": 429.0, "avg_ops_per_sec": 6869.2936562931745, "min_ops_per_sec": 5429.85442560285, "max_ops_per_sec": 8051.529790660225, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 66247.05681818182, "ser_median_ns": 64721.5, "ser_std_ns": 5959.552057065407, "ser_mad_ns": 3317.5, "ser_cv": 0.08995949923362904, "ser_min_ns": 56772.0, "ser_max_ns": 84122.0, "ser_p5_ns": 59332.2, "ser_p25_ns": 62328.5, "ser_p50_ns": 64721.5, "ser_p75_ns": 68531.0, "ser_p95_ns": 77921.7, "ser_p99_ns": 82181.9, "ser_ci_low_ns": 65012.327840909085, "ser_ci_high_ns": 67550.2409090909, "deser_mean_ns": 79328.31818181818, "deser_median_ns": 77590.5, "deser_std_ns": 6704.507030221261, "deser_mad_ns": 2818.0, "deser_cv": 0.08451593559382826, "deser_min_ns": 67428.0, "deser_max_ns": 100045.0, "deser_p5_ns": 72047.25, "deser_p25_ns": 75092.25, "deser_p50_ns": 77590.5, "deser_p75_ns": 80578.0, "deser_p95_ns": 95025.79999999999, "deser_p99_ns": 99583.9, "deser_ci_low_ns": 78027.50625, "deser_ci_high_ns": 80730.09204545454, "total_mean_ns": 145575.375, "total_median_ns": 141291.0, "total_std_ns": 11923.62400776074, "total_mad_ns": 5768.5, "total_cv": 0.08190687475653585, "total_min_ns": 124200.0, "total_max_ns": 184167.0, "total_p5_ns": 131955.7, "total_p25_ns": 137818.25, "total_p50_ns": 141291.0, "total_p75_ns": 150906.75, "total_p95_ns": 171559.05, "total_p99_ns": 178994.84999999998, "total_ci_low_ns": 143132.91448863636, "total_ci_high_ns": 148197.44119318182, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.127429721319665}, {"serializer": "mongo-bson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.17.9", "avg_time_ser_ns": 4383.241379310345, "avg_time_deser_ns": 5656.413793103448, "avg_time_total_ns": 10039.655172413793, "median_size_bytes": 525.0, "avg_ops_per_sec": 99605.01459728662, "min_ops_per_sec": 66586.76255160474, "max_ops_per_sec": 146262.9808395495, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 4383.241379310345, "ser_median_ns": 4285.0, "ser_std_ns": 848.1027110559198, "ser_mad_ns": 578.0, "ser_cv": 0.19348756722801322, "ser_min_ns": 2783.0, "ser_max_ns": 6981.0, "ser_p5_ns": 3211.1, "ser_p25_ns": 3742.5, "ser_p50_ns": 4285.0, "ser_p75_ns": 4882.0, "ser_p95_ns": 5819.7, "ser_p99_ns": 6970.68, "ser_ci_low_ns": 4203.344252873563, "ser_ci_high_ns": 4573.782183908045, "deser_mean_ns": 5656.413793103448, "deser_median_ns": 5606.0, "deser_std_ns": 854.849919531971, "deser_mad_ns": 600.0, "deser_cv": 0.15112931104408275, "deser_min_ns": 4054.0, "deser_max_ns": 8049.0, "deser_p5_ns": 4440.0, "deser_p25_ns": 4996.0, "deser_p50_ns": 5606.0, "deser_p75_ns": 6185.5, "deser_p95_ns": 7145.8, "deser_p99_ns": 7973.32, "deser_ci_low_ns": 5494.712068965518, "deser_ci_high_ns": 5834.404885057472, "total_mean_ns": 10039.655172413793, "total_median_ns": 10092.0, "total_std_ns": 1587.4661749012146, "total_mad_ns": 1093.0, "total_cv": 0.15811959152373423, "total_min_ns": 6837.0, "total_max_ns": 15018.0, "total_p5_ns": 7776.0, "total_p25_ns": 8751.5, "total_p50_ns": 10092.0, "total_p75_ns": 11067.5, "total_p95_ns": 12851.400000000001, "total_p99_ns": 14607.78, "total_ci_low_ns": 9724.939942528736, "total_ci_high_ns": 10378.494540229885, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.888998301981953}, {"serializer": "ugorji/json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 2159.2021276595747, "avg_time_deser_ns": 3406.063829787234, "avg_time_total_ns": 5565.265957446809, "median_size_bytes": 448.0, "avg_ops_per_sec": 179685.93192961664, "min_ops_per_sec": 121212.12121212122, "max_ops_per_sec": 310077.51937984495, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 2159.2021276595747, "ser_median_ns": 2207.5, "ser_std_ns": 486.98213916569074, "ser_mad_ns": 304.5, "ser_cv": 0.22553800449129124, "ser_min_ns": 1124.0, "ser_max_ns": 3388.0, "ser_p5_ns": 1356.55, "ser_p25_ns": 1821.25, "ser_p50_ns": 2207.5, "ser_p75_ns": 2440.75, "ser_p95_ns": 2997.45, "ser_p99_ns": 3322.8999999999996, "ser_ci_low_ns": 2056.147340425532, "ser_ci_high_ns": 2255.993882978723, "deser_mean_ns": 3406.063829787234, "deser_median_ns": 3431.5, "deser_std_ns": 628.0224776559268, "deser_mad_ns": 381.0, "deser_cv": 0.18438364899789833, "deser_min_ns": 2052.0, "deser_max_ns": 4976.0, "deser_p5_ns": 2413.25, "deser_p25_ns": 2976.5, "deser_p50_ns": 3431.5, "deser_p75_ns": 3781.0, "deser_p95_ns": 4510.65, "deser_p99_ns": 4869.98, "deser_ci_low_ns": 3285.5406914893615, "deser_ci_high_ns": 3535.323404255319, "total_mean_ns": 5565.265957446809, "total_median_ns": 5603.5, "total_std_ns": 1104.1992980419727, "total_mad_ns": 679.0, "total_cv": 0.19840907990470036, "total_min_ns": 3225.0, "total_max_ns": 8250.0, "total_p5_ns": 3790.75, "total_p25_ns": 4819.75, "total_p50_ns": 5603.5, "total_p75_ns": 6237.25, "total_p95_ns": 7566.25, "total_p99_ns": 8236.98, "total_ci_low_ns": 5333.757446808511, "total_ci_high_ns": 5798.117287234042, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.9995374653098983, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.1088134050796885}, {"serializer": "encoding/gob", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 5146.731182795699, "avg_time_deser_ns": 15568.10752688172, "avg_time_total_ns": 20714.83870967742, "median_size_bytes": 367.0, "avg_ops_per_sec": 48274.573315061665, "min_ops_per_sec": 37402.75284260922, "max_ops_per_sec": 65197.548572173684, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 5146.731182795699, "ser_median_ns": 5034.0, "ser_std_ns": 911.538083105608, "ser_mad_ns": 674.0, "ser_cv": 0.1771101016802011, "ser_min_ns": 3426.0, "ser_max_ns": 7421.0, "ser_p5_ns": 3904.4, "ser_p25_ns": 4492.0, "ser_p50_ns": 5034.0, "ser_p75_ns": 5805.0, "ser_p95_ns": 6880.5999999999985, "ser_p99_ns": 7346.48, "ser_ci_low_ns": 4964.04623655914, "ser_ci_high_ns": 5323.404032258064, "deser_mean_ns": 15568.10752688172, "deser_median_ns": 15220.0, "deser_std_ns": 1832.2234619170372, "deser_mad_ns": 1154.0, "deser_cv": 0.11769082778708365, "deser_min_ns": 11912.0, "deser_max_ns": 20097.0, "deser_p5_ns": 13103.2, "deser_p25_ns": 14350.0, "deser_p50_ns": 15220.0, "deser_p75_ns": 16503.0, "deser_p95_ns": 19141.8, "deser_p99_ns": 20039.96, "deser_ci_low_ns": 15182.347580645162, "deser_ci_high_ns": 15925.301612903226, "total_mean_ns": 20714.83870967742, "total_median_ns": 20228.0, "total_std_ns": 2545.7209079343256, "total_mad_ns": 1775.0, "total_cv": 0.12289359060976095, "total_min_ns": 15338.0, "total_max_ns": 26736.0, "total_p5_ns": 17338.4, "total_p25_ns": 18900.0, "total_p50_ns": 20228.0, "total_p75_ns": 22274.0, "total_p95_ns": 25389.8, "total_p99_ns": 26563.96, "total_ci_low_ns": 20170.912096774195, "total_ci_high_ns": 21243.48817204301, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.132129647372622}, {"serializer": "encoding/json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 2150.2934782608695, "avg_time_deser_ns": 9540.847826086956, "avg_time_total_ns": 11691.141304347826, "median_size_bytes": 449.0, "avg_ops_per_sec": 85534.8484778051, "min_ops_per_sec": 50763.99817249607, "max_ops_per_sec": 134282.26131328053, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 2150.2934782608695, "ser_median_ns": 1874.0, "ser_std_ns": 790.4623426336227, "ser_mad_ns": 274.5, "ser_cv": 0.367606724675061, "ser_min_ns": 1049.0, "ser_max_ns": 4733.0, "ser_p5_ns": 1176.2, "ser_p25_ns": 1687.25, "ser_p50_ns": 1874.0, "ser_p75_ns": 2666.0, "ser_p95_ns": 3625.85, "ser_p99_ns": 4128.760000000002, "ser_ci_low_ns": 1990.8013586956522, "ser_ci_high_ns": 2324.5565217391304, "deser_mean_ns": 9540.847826086956, "deser_median_ns": 8964.5, "deser_std_ns": 2182.0871848033785, "deser_mad_ns": 1272.5, "deser_cv": 0.2287099872651811, "deser_min_ns": 6375.0, "deser_max_ns": 15791.0, "deser_p5_ns": 6859.3, "deser_p25_ns": 8203.75, "deser_p50_ns": 8964.5, "deser_p75_ns": 10537.0, "deser_p95_ns": 13550.85, "deser_p99_ns": 15737.31, "deser_ci_low_ns": 9107.726630434783, "deser_ci_high_ns": 9988.841032608696, "total_mean_ns": 11691.141304347826, "total_median_ns": 10838.0, "total_std_ns": 2925.0630371023553, "total_mad_ns": 1548.0, "total_cv": 0.25019482366657836, "total_min_ns": 7447.0, "total_max_ns": 19699.0, "total_p5_ns": 8058.45, "total_p25_ns": 9815.5, "total_p50_ns": 10838.0, "total_p75_ns": 13432.0, "total_p95_ns": 17014.3, "total_p99_ns": 19693.54, "total_ci_low_ns": 11136.629076086956, "total_ci_high_ns": 12299.683152173913, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.9209542235381516}, {"serializer": "linkedin/goavro", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "2.15.0", "avg_time_ser_ns": 1816.1182795698924, "avg_time_deser_ns": 2555.8817204301076, "avg_time_total_ns": 4372.0, "median_size_bytes": 114.0, "avg_ops_per_sec": 228728.27081427263, "min_ops_per_sec": 137950.06207752792, "max_ops_per_sec": 336473.7550471063, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1816.1182795698924, "ser_median_ns": 1735.0, "ser_std_ns": 504.72148689761406, "ser_mad_ns": 355.0, "ser_cv": 0.2779122332368937, "ser_min_ns": 883.0, "ser_max_ns": 3162.0, "ser_p5_ns": 1150.0, "ser_p25_ns": 1426.0, "ser_p50_ns": 1735.0, "ser_p75_ns": 2171.0, "ser_p95_ns": 2769.3999999999996, "ser_p99_ns": 2994.5599999999995, "ser_ci_low_ns": 1719.1333333333334, "ser_ci_high_ns": 1917.7034946236558, "deser_mean_ns": 2555.8817204301076, "deser_median_ns": 2343.0, "deser_std_ns": 586.5043987651934, "deser_mad_ns": 235.0, "deser_cv": 0.2294724337503754, "deser_min_ns": 1851.0, "deser_max_ns": 4379.0, "deser_p5_ns": 1894.2, "deser_p25_ns": 2150.0, "deser_p50_ns": 2343.0, "deser_p75_ns": 2833.0, "deser_p95_ns": 3665.9999999999995, "deser_p99_ns": 4137.04, "deser_ci_low_ns": 2440.697311827957, "deser_ci_high_ns": 2679.9596774193546, "total_mean_ns": 4372.0, "total_median_ns": 4039.0, "total_std_ns": 1035.5426638703266, "total_mad_ns": 584.0, "total_cv": 0.23685788286146536, "total_min_ns": 2972.0, "total_max_ns": 7249.0, "total_p5_ns": 3200.2, "total_p25_ns": 3621.0, "total_p50_ns": 4039.0, "total_p75_ns": 4907.0, "total_p95_ns": 6422.399999999998, "total_p99_ns": 7168.04, "total_ci_low_ns": 4171.610483870968, "total_ci_high_ns": 4591.542741935484, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.666547192353644, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.275565508357425}, {"serializer": "goccy/go-json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "0.10.6", "avg_time_ser_ns": 1697.6593406593406, "avg_time_deser_ns": 2894.5274725274726, "avg_time_total_ns": 4592.186813186813, "median_size_bytes": 449.0, "avg_ops_per_sec": 217761.1758146302, "min_ops_per_sec": 117730.1624676242, "max_ops_per_sec": 422654.268808115, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 1697.6593406593406, "ser_median_ns": 1584.0, "ser_std_ns": 607.3801705280405, "ser_mad_ns": 348.0, "ser_cv": 0.35777505885965605, "ser_min_ns": 730.0, "ser_max_ns": 3571.0, "ser_p5_ns": 813.0, "ser_p25_ns": 1290.0, "ser_p50_ns": 1584.0, "ser_p75_ns": 2026.5, "ser_p95_ns": 2833.5, "ser_p99_ns": 3096.699999999997, "ser_ci_low_ns": 1578.8722527472528, "ser_ci_high_ns": 1826.999725274725, "deser_mean_ns": 2894.5274725274726, "deser_median_ns": 2660.0, "deser_std_ns": 862.5068288381431, "deser_mad_ns": 380.0, "deser_cv": 0.2979784565958915, "deser_min_ns": 1561.0, "deser_max_ns": 5572.0, "deser_p5_ns": 1854.0, "deser_p25_ns": 2334.0, "deser_p50_ns": 2660.0, "deser_p75_ns": 3278.5, "deser_p95_ns": 4453.5, "deser_p99_ns": 5044.599999999997, "deser_ci_low_ns": 2723.1467032967034, "deser_ci_high_ns": 3082.278846153846, "total_mean_ns": 4592.186813186813, "total_median_ns": 4315.0, "total_std_ns": 1440.212013035179, "total_mad_ns": 735.0, "total_cv": 0.3136222613808961, "total_min_ns": 2366.0, "total_max_ns": 8494.0, "total_p5_ns": 2630.5, "total_p25_ns": 3737.5, "total_p50_ns": 4315.0, "total_p75_ns": 5174.5, "total_p95_ns": 7275.0, "total_p99_ns": 8052.999999999997, "total_ci_low_ns": 4303.3843406593405, "total_ci_high_ns": 4892.379120879121, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.6285714285714286, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.2144185958028262}, {"serializer": "hamba/avro", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "2.31.0", "avg_time_ser_ns": 1557.8, "avg_time_deser_ns": 1560.8777777777777, "avg_time_total_ns": 3118.677777777778, "median_size_bytes": 116.0, "avg_ops_per_sec": 320648.70796384505, "min_ops_per_sec": 178635.2268667381, "max_ops_per_sec": 751879.6992481203, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 1557.8, "ser_median_ns": 1479.5, "ser_std_ns": 514.0850758080217, "ser_mad_ns": 287.0, "ser_cv": 0.3300071099037243, "ser_min_ns": 637.0, "ser_max_ns": 2957.0, "ser_p5_ns": 842.6, "ser_p25_ns": 1240.25, "ser_p50_ns": 1479.5, "ser_p75_ns": 1863.0, "ser_p95_ns": 2449.75, "ser_p99_ns": 2931.19, "ser_ci_low_ns": 1457.49, "ser_ci_high_ns": 1661.9458333333332, "deser_mean_ns": 1560.8777777777777, "deser_median_ns": 1477.0, "deser_std_ns": 433.12153697635387, "deser_mad_ns": 246.0, "deser_cv": 0.2774858756673371, "deser_min_ns": 676.0, "deser_max_ns": 2670.0, "deser_p5_ns": 993.85, "deser_p25_ns": 1244.75, "deser_p50_ns": 1477.0, "deser_p75_ns": 1825.0, "deser_p95_ns": 2376.95, "deser_p99_ns": 2624.61, "deser_ci_low_ns": 1474.6886111111112, "deser_ci_high_ns": 1649.686111111111, "total_mean_ns": 3118.677777777778, "total_median_ns": 2954.0, "total_std_ns": 915.7748708647589, "total_mad_ns": 513.5, "total_cv": 0.293642029128542, "total_min_ns": 1330.0, "total_max_ns": 5598.0, "total_p5_ns": 1892.35, "total_p25_ns": 2492.25, "total_p50_ns": 2954.0, "total_p75_ns": 3627.25, "total_p95_ns": 4850.599999999999, "total_p99_ns": 5449.37, "total_ci_low_ns": 2940.496666666667, "total_ci_high_ns": 3313.515, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "ugorji/cbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 2542.4523809523807, "avg_time_deser_ns": 3835.75, "avg_time_total_ns": 6378.202380952381, "median_size_bytes": 332.0, "avg_ops_per_sec": 156783.98712878124, "min_ops_per_sec": 92506.93802035153, "max_ops_per_sec": 243842.965130456, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 2542.4523809523807, "ser_median_ns": 2426.0, "ser_std_ns": 642.505082343818, "ser_mad_ns": 320.5, "ser_cv": 0.25271076349644006, "ser_min_ns": 1527.0, "ser_max_ns": 4436.0, "ser_p5_ns": 1727.6, "ser_p25_ns": 2168.75, "ser_p50_ns": 2426.0, "ser_p75_ns": 2791.5, "ser_p95_ns": 3911.999999999999, "ser_p99_ns": 4301.54, "ser_ci_low_ns": 2408.0931547619048, "ser_ci_high_ns": 2688.035714285714, "deser_mean_ns": 3835.75, "deser_median_ns": 3650.5, "deser_std_ns": 815.5268956140438, "deser_mad_ns": 371.5, "deser_cv": 0.21261210861345078, "deser_min_ns": 2574.0, "deser_max_ns": 6679.0, "deser_p5_ns": 2914.8, "deser_p25_ns": 3285.25, "deser_p50_ns": 3650.5, "deser_p75_ns": 4076.25, "deser_p95_ns": 5683.049999999999, "deser_p99_ns": 6245.740000000001, "deser_ci_low_ns": 3674.7425595238096, "deser_ci_high_ns": 4018.9190476190474, "total_mean_ns": 6378.202380952381, "total_median_ns": 6032.5, "total_std_ns": 1406.9209976001634, "total_mad_ns": 638.5, "total_cv": 0.2205826835789561, "total_min_ns": 4101.0, "total_max_ns": 10810.0, "total_p5_ns": 4707.05, "total_p25_ns": 5535.0, "total_p50_ns": 6032.5, "total_p75_ns": 6783.0, "total_p95_ns": 9750.099999999999, "total_p99_ns": 10454.76, "total_ci_low_ns": 6080.459821428571, "total_ci_high_ns": 6692.989285714285, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.9740740740740741, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.7534739214393205}, {"serializer": "jsoniter", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.1.12", "avg_time_ser_ns": 2355.8936170212764, "avg_time_deser_ns": 3195.436170212766, "avg_time_total_ns": 5551.329787234043, "median_size_bytes": 449.0, "avg_ops_per_sec": 180137.01911560388, "min_ops_per_sec": 96469.22631680494, "max_ops_per_sec": 341413.4516899966, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 2355.8936170212764, "ser_median_ns": 2160.5, "ser_std_ns": 809.943147720545, "ser_mad_ns": 415.5, "ser_cv": 0.3437944488956227, "ser_min_ns": 1018.0, "ser_max_ns": 4789.0, "ser_p5_ns": 1200.6, "ser_p25_ns": 1802.25, "ser_p50_ns": 2160.5, "ser_p75_ns": 2972.75, "ser_p95_ns": 3982.5499999999993, "ser_p99_ns": 4639.269999999999, "ser_ci_low_ns": 2193.6409574468084, "ser_ci_high_ns": 2529.1869680851064, "deser_mean_ns": 3195.436170212766, "deser_median_ns": 2923.0, "deser_std_ns": 834.5894561987219, "deser_mad_ns": 443.5, "deser_cv": 0.26118170157132303, "deser_min_ns": 1807.0, "deser_max_ns": 5577.0, "deser_p5_ns": 2066.7, "deser_p25_ns": 2619.0, "deser_p50_ns": 2923.0, "deser_p75_ns": 3747.5, "deser_p95_ns": 4650.8, "deser_p99_ns": 5576.07, "deser_ci_low_ns": 3029.2486702127662, "deser_ci_high_ns": 3362.404255319149, "total_mean_ns": 5551.329787234043, "total_median_ns": 5079.5, "total_std_ns": 1625.7207393427036, "total_mad_ns": 845.0, "total_cv": 0.29285248789961027, "total_min_ns": 2929.0, "total_max_ns": 10366.0, "total_p5_ns": 3273.7000000000003, "total_p25_ns": 4412.75, "total_p50_ns": 5079.5, "total_p75_ns": 6569.25, "total_p95_ns": 8410.499999999998, "total_p99_ns": 10215.339999999998, "total_ci_low_ns": 5222.14920212766, "total_ci_high_ns": 5884.281914893617, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.8469267139479906, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.8257851123064928}, {"serializer": "goccy/go-yaml", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.19.2", "avg_time_ser_ns": 68133.66666666667, "avg_time_deser_ns": 83169.58024691358, "avg_time_total_ns": 151303.24691358025, "median_size_bytes": 429.0, "avg_ops_per_sec": 6609.2434921186405, "min_ops_per_sec": 4857.1511836877435, "max_ops_per_sec": 7731.201583350085, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 68133.66666666667, "ser_median_ns": 66009.0, "ser_std_ns": 8094.25079917839, "ser_mad_ns": 3517.0, "ser_cv": 0.1187995772894221, "ser_min_ns": 58187.0, "ser_max_ns": 91373.0, "ser_p5_ns": 60257.0, "ser_p25_ns": 62573.0, "ser_p50_ns": 66009.0, "ser_p75_ns": 70855.0, "ser_p95_ns": 90101.0, "ser_p99_ns": 90981.8, "ser_ci_low_ns": 66527.93364197531, "ser_ci_high_ns": 69862.58888888889, "deser_mean_ns": 83169.58024691358, "deser_median_ns": 80587.0, "deser_std_ns": 11235.0074820449, "deser_mad_ns": 4563.0, "deser_cv": 0.1350855378696207, "deser_min_ns": 71159.0, "deser_max_ns": 123417.0, "deser_p5_ns": 72327.0, "deser_p25_ns": 75926.0, "deser_p50_ns": 80587.0, "deser_p75_ns": 84881.0, "deser_p95_ns": 110873.0, "deser_p99_ns": 116681.80000000002, "deser_ci_low_ns": 80881.2450617284, "deser_ci_high_ns": 85812.00216049382, "total_mean_ns": 151303.24691358025, "total_median_ns": 145987.0, "total_std_ns": 18413.74512798175, "total_mad_ns": 8022.0, "total_cv": 0.1217009251526447, "total_min_ns": 129346.0, "total_max_ns": 205882.0, "total_p5_ns": 132931.0, "total_p25_ns": 139199.0, "total_p50_ns": 145987.0, "total_p75_ns": 154965.0, "total_p95_ns": 200496.0, "total_p99_ns": 205651.6, "total_ci_low_ns": 147528.062654321, "total_ci_high_ns": 155507.8947530864, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.628615758962345}, {"serializer": "fxamacker/cbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "2.9.2", "avg_time_ser_ns": 1987.8111111111111, "avg_time_deser_ns": 4371.888888888889, "avg_time_total_ns": 6359.7, "median_size_bytes": 332.0, "avg_ops_per_sec": 157240.12138937373, "min_ops_per_sec": 83507.30688935283, "max_ops_per_sec": 254065.0406504065, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 1987.8111111111111, "ser_median_ns": 1784.5, "ser_std_ns": 663.6560787685079, "ser_mad_ns": 283.0, "ser_cv": 0.3338627473500484, "ser_min_ns": 1017.0, "ser_max_ns": 3780.0, "ser_p5_ns": 1149.95, "ser_p25_ns": 1566.0, "ser_p50_ns": 1784.5, "ser_p75_ns": 2237.5, "ser_p95_ns": 3452.25, "ser_p99_ns": 3739.95, "ser_ci_low_ns": 1853.0666666666666, "ser_ci_high_ns": 2133.053611111111, "deser_mean_ns": 4371.888888888889, "deser_median_ns": 3902.5, "deser_std_ns": 1246.6217671018883, "deser_mad_ns": 515.0, "deser_cv": 0.2851448878927744, "deser_min_ns": 2783.0, "deser_max_ns": 8289.0, "deser_p5_ns": 3037.0, "deser_p25_ns": 3610.0, "deser_p50_ns": 3902.5, "deser_p75_ns": 4682.75, "deser_p95_ns": 6788.15, "deser_p99_ns": 8152.83, "deser_ci_low_ns": 4120.650833333333, "deser_ci_high_ns": 4633.056388888889, "total_mean_ns": 6359.7, "total_median_ns": 5721.0, "total_std_ns": 1879.645534656749, "total_mad_ns": 734.5, "total_cv": 0.29555569203842147, "total_min_ns": 3936.0, "total_max_ns": 11975.0, "total_p5_ns": 4167.35, "total_p25_ns": 5181.5, "total_p50_ns": 5721.0, "total_p75_ns": 6888.75, "total_p95_ns": 10306.699999999997, "total_p99_ns": 11787.21, "total_ci_low_ns": 6001.9475, "total_ci_high_ns": 6761.970833333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.9448148148148148, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.1829055441023413}, {"serializer": "sonic", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.15.2", "avg_time_ser_ns": 1650.554347826087, "avg_time_deser_ns": 3497.75, "avg_time_total_ns": 5148.304347826087, "median_size_bytes": 449.0, "avg_ops_per_sec": 194238.71093057233, "min_ops_per_sec": 89469.44618412812, "max_ops_per_sec": 517598.3436853002, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 1650.554347826087, "ser_median_ns": 1548.5, "ser_std_ns": 623.0630180699085, "ser_mad_ns": 328.0, "ser_cv": 0.3774871266072109, "ser_min_ns": 514.0, "ser_max_ns": 3356.0, "ser_p5_ns": 815.25, "ser_p25_ns": 1252.25, "ser_p50_ns": 1548.5, "ser_p75_ns": 1934.0, "ser_p95_ns": 3033.8, "ser_p99_ns": 3344.17, "ser_ci_low_ns": 1532.2926630434781, "ser_ci_high_ns": 1782.6497282608696, "deser_mean_ns": 3497.75, "deser_median_ns": 3087.5, "deser_std_ns": 1411.2328693516395, "deser_mad_ns": 625.5, "deser_cv": 0.4034687640201957, "deser_min_ns": 1387.0, "deser_max_ns": 7883.0, "deser_p5_ns": 1933.25, "deser_p25_ns": 2538.75, "deser_p50_ns": 3087.5, "deser_p75_ns": 3920.5, "deser_p95_ns": 6055.05, "deser_p99_ns": 7792.910000000001, "deser_ci_low_ns": 3223.65, "deser_ci_high_ns": 3788.397282608695, "total_mean_ns": 5148.304347826087, "total_median_ns": 4590.0, "total_std_ns": 2004.2917454452606, "total_mad_ns": 913.5, "total_cv": 0.38931104496407426, "total_min_ns": 1932.0, "total_max_ns": 11177.0, "total_p5_ns": 2797.6, "total_p25_ns": 3751.0, "total_p50_ns": 4590.0, "total_p75_ns": 5859.75, "total_p95_ns": 8987.400000000003, "total_p99_ns": 11131.5, "total_ci_low_ns": 4754.691847826087, "total_ci_high_ns": 5581.177989130435, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.6961352657004831, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.2924386875326994}, {"serializer": "ugorji/msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 2695.6853932584268, "avg_time_deser_ns": 3883.2134831460676, "avg_time_total_ns": 6578.898876404494, "median_size_bytes": 329.0, "avg_ops_per_sec": 152001.12036780856, "min_ops_per_sec": 85513.93877201984, "max_ops_per_sec": 252525.25252525252, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 2695.6853932584268, "ser_median_ns": 2492.0, "ser_std_ns": 842.7279243286706, "ser_mad_ns": 412.0, "ser_cv": 0.31262102262980246, "ser_min_ns": 1453.0, "ser_max_ns": 5082.0, "ser_p5_ns": 1756.6, "ser_p25_ns": 2128.0, "ser_p50_ns": 2492.0, "ser_p75_ns": 2939.0, "ser_p95_ns": 4484.8, "ser_p99_ns": 4860.240000000002, "ser_ci_low_ns": 2531.200561797753, "ser_ci_high_ns": 2876.331179775281, "deser_mean_ns": 3883.2134831460676, "deser_median_ns": 3542.0, "deser_std_ns": 1080.4334722684025, "deser_mad_ns": 527.0, "deser_cv": 0.2782317987300215, "deser_min_ns": 2435.0, "deser_max_ns": 7146.0, "deser_p5_ns": 2807.6, "deser_p25_ns": 3202.0, "deser_p50_ns": 3542.0, "deser_p75_ns": 4346.0, "deser_p95_ns": 6224.199999999999, "deser_p99_ns": 6775.520000000002, "deser_ci_low_ns": 3661.659550561798, "deser_ci_high_ns": 4116.4033707865165, "total_mean_ns": 6578.898876404494, "total_median_ns": 5908.0, "total_std_ns": 1896.5427639699835, "total_mad_ns": 867.0, "total_cv": 0.2882766249488978, "total_min_ns": 3960.0, "total_max_ns": 11694.0, "total_p5_ns": 4553.2, "total_p25_ns": 5266.0, "total_p50_ns": 5908.0, "total_p75_ns": 7141.0, "total_p95_ns": 10791.799999999997, "total_p99_ns": 11571.68, "total_ci_low_ns": 6191.099157303371, "total_ci_high_ns": 6961.764606741573, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.9612983770287141, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.3177370297536704}, {"serializer": "vmihailenco/msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "5.4.1", "avg_time_ser_ns": 3248.123595505618, "avg_time_deser_ns": 4053.2921348314608, "avg_time_total_ns": 7301.4157303370785, "median_size_bytes": 397.0, "avg_ops_per_sec": 136959.7399919363, "min_ops_per_sec": 81886.66885031117, "max_ops_per_sec": 203500.2035002035, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 3248.123595505618, "ser_median_ns": 2958.0, "ser_std_ns": 823.1513560731752, "ser_mad_ns": 364.0, "ser_cv": 0.2534236558030482, "ser_min_ns": 2143.0, "ser_max_ns": 5570.0, "ser_p5_ns": 2393.2, "ser_p25_ns": 2725.0, "ser_p50_ns": 2958.0, "ser_p75_ns": 3566.0, "ser_p95_ns": 5018.599999999999, "ser_p99_ns": 5158.160000000002, "ser_ci_low_ns": 3083.0828651685392, "ser_ci_high_ns": 3421.005617977528, "deser_mean_ns": 4053.2921348314608, "deser_median_ns": 3724.0, "deser_std_ns": 960.369876688702, "deser_mad_ns": 418.0, "deser_cv": 0.23693576597548524, "deser_min_ns": 2682.0, "deser_max_ns": 6642.0, "deser_p5_ns": 3001.2, "deser_p25_ns": 3422.0, "deser_p50_ns": 3724.0, "deser_p75_ns": 4415.0, "deser_p95_ns": 6023.4, "deser_p99_ns": 6583.04, "deser_ci_low_ns": 3861.3904494382023, "deser_ci_high_ns": 4257.037078651685, "total_mean_ns": 7301.4157303370785, "total_median_ns": 6623.0, "total_std_ns": 1766.6386920890495, "total_mad_ns": 714.0, "total_cv": 0.24195837592821065, "total_min_ns": 4914.0, "total_max_ns": 12212.0, "total_p5_ns": 5417.6, "total_p25_ns": 6181.0, "total_p50_ns": 6623.0, "total_p75_ns": 7981.0, "total_p95_ns": 10958.799999999997, "total_p99_ns": 11680.480000000003, "total_ci_low_ns": 6933.826966292135, "total_ci_high_ns": 7664.820505617978, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.9955056179775281, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.964889268881822}, {"serializer": "protobuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.36.11", "avg_time_ser_ns": 1986.9896907216496, "avg_time_deser_ns": 2429.8041237113403, "avg_time_total_ns": 4416.79381443299, "median_size_bytes": 155.0, "avg_ops_per_sec": 226408.57645024027, "min_ops_per_sec": 119717.46677840297, "max_ops_per_sec": 487804.8780487805, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 1986.9896907216496, "ser_median_ns": 1776.0, "ser_std_ns": 747.0492299547232, "ser_mad_ns": 368.0, "ser_cv": 0.3759703603109306, "ser_min_ns": 737.0, "ser_max_ns": 3827.0, "ser_p5_ns": 996.6, "ser_p25_ns": 1496.0, "ser_p50_ns": 1776.0, "ser_p75_ns": 2401.0, "ser_p95_ns": 3546.9999999999986, "ser_p99_ns": 3817.4, "ser_ci_low_ns": 1847.7662371134022, "ser_ci_high_ns": 2136.629639175258, "deser_mean_ns": 2429.8041237113403, "deser_median_ns": 2145.0, "deser_std_ns": 827.7550291699539, "deser_mad_ns": 391.0, "deser_cv": 0.34066739005513796, "deser_min_ns": 1313.0, "deser_max_ns": 4578.0, "deser_p5_ns": 1477.0, "deser_p25_ns": 1816.0, "deser_p50_ns": 2145.0, "deser_p75_ns": 2930.0, "deser_p95_ns": 4022.799999999999, "deser_p99_ns": 4571.28, "deser_ci_low_ns": 2269.391237113402, "deser_ci_high_ns": 2591.463402061856, "total_mean_ns": 4416.79381443299, "total_median_ns": 3880.0, "total_std_ns": 1562.1069368147218, "total_mad_ns": 766.0, "total_cv": 0.3536744078272666, "total_min_ns": 2050.0, "total_max_ns": 8353.0, "total_p5_ns": 2473.0, "total_p25_ns": 3347.0, "total_p50_ns": 3880.0, "total_p75_ns": 5337.0, "total_p95_ns": 7516.399999999996, "total_p99_ns": 8219.56, "total_ci_low_ns": 4116.816494845361, "total_ci_high_ns": 4732.662113402062, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.53631156930126, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.0005213205137011}, {"serializer": "mongo-bson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.17.9", "avg_time_ser_ns": 5115.752688172043, "avg_time_deser_ns": 6724.430107526881, "avg_time_total_ns": 11840.182795698925, "median_size_bytes": 525.0, "avg_ops_per_sec": 84458.15552469855, "min_ops_per_sec": 46129.71676353907, "max_ops_per_sec": 146156.09470914936, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 5115.752688172043, "ser_median_ns": 4725.0, "ser_std_ns": 1642.4324064968923, "ser_mad_ns": 846.0, "ser_cv": 0.321053910658016, "ser_min_ns": 2682.0, "ser_max_ns": 9786.0, "ser_p5_ns": 3021.4, "ser_p25_ns": 3922.0, "ser_p50_ns": 4725.0, "ser_p75_ns": 6068.0, "ser_p95_ns": 8629.399999999998, "ser_p99_ns": 9619.48, "ser_ci_low_ns": 4786.0489247311825, "ser_ci_high_ns": 5463.262096774193, "deser_mean_ns": 6724.430107526881, "deser_median_ns": 5966.0, "deser_std_ns": 1863.8452562065568, "deser_mad_ns": 673.0, "deser_cv": 0.2771751994448261, "deser_min_ns": 4160.0, "deser_max_ns": 12073.0, "deser_p5_ns": 4638.8, "deser_p25_ns": 5482.0, "deser_p50_ns": 5966.0, "deser_p75_ns": 7766.0, "deser_p95_ns": 10313.199999999999, "deser_p99_ns": 11983.76, "deser_ci_low_ns": 6365.475806451614, "deser_ci_high_ns": 7108.411559139785, "total_mean_ns": 11840.182795698925, "total_median_ns": 10791.0, "total_std_ns": 3429.7999781526, "total_mad_ns": 1551.0, "total_cv": 0.28967457997342, "total_min_ns": 6842.0, "total_max_ns": 21678.0, "total_p5_ns": 7599.2, "total_p25_ns": 9521.0, "total_p50_ns": 10791.0, "total_p75_ns": 13849.0, "total_p95_ns": 17746.8, "total_p99_ns": 21526.2, "total_ci_low_ns": 11145.39811827957, "total_ci_high_ns": 12538.037365591397, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.435421607157269}, {"serializer": "shamaton/msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "3.1.2", "avg_time_ser_ns": 2392.282608695652, "avg_time_deser_ns": 3943.641304347826, "avg_time_total_ns": 6335.923913043478, "median_size_bytes": 317.0, "avg_ops_per_sec": 157830.17815939133, "min_ops_per_sec": 91332.54178463787, "max_ops_per_sec": 256016.3850486431, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 2392.282608695652, "ser_median_ns": 2197.5, "ser_std_ns": 734.572004057307, "ser_mad_ns": 338.0, "ser_cv": 0.3070590411798457, "ser_min_ns": 1285.0, "ser_max_ns": 4395.0, "ser_p5_ns": 1540.4, "ser_p25_ns": 1905.25, "ser_p50_ns": 2197.5, "ser_p75_ns": 2774.25, "ser_p95_ns": 3789.8, "ser_p99_ns": 4385.9, "ser_ci_low_ns": 2257.441847826087, "ser_ci_high_ns": 2543.616847826087, "deser_mean_ns": 3943.641304347826, "deser_median_ns": 3735.5, "deser_std_ns": 947.165680315493, "deser_mad_ns": 466.0, "deser_cv": 0.24017541333468945, "deser_min_ns": 2594.0, "deser_max_ns": 6627.0, "deser_p5_ns": 2890.65, "deser_p25_ns": 3282.0, "deser_p50_ns": 3735.5, "deser_p75_ns": 4242.0, "deser_p95_ns": 5888.4000000000015, "deser_p99_ns": 6560.570000000001, "deser_ci_low_ns": 3761.778260869565, "deser_ci_high_ns": 4138.423097826087, "total_mean_ns": 6335.923913043478, "total_median_ns": 5960.0, "total_std_ns": 1623.573938817231, "total_mad_ns": 854.0, "total_cv": 0.2562489640184683, "total_min_ns": 3906.0, "total_max_ns": 10949.0, "total_p5_ns": 4446.3, "total_p25_ns": 5299.0, "total_p50_ns": 5960.0, "total_p75_ns": 7106.0, "total_p95_ns": 9324.95, "total_p99_ns": 10932.62, "total_ci_low_ns": 6016.550815217392, "total_ci_high_ns": 6672.156793478261, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.956280193236715, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.4237302210912937}, {"serializer": "ugorji/json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 3801.68085106383, "avg_time_deser_ns": 5679.86170212766, "avg_time_total_ns": 9481.54255319149, "median_size_bytes": 448.0, "avg_ops_per_sec": 105468.07066360734, "min_ops_per_sec": 52957.686808240214, "max_ops_per_sec": 178603.32202178962, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 3801.68085106383, "ser_median_ns": 3290.5, "ser_std_ns": 1340.7055293402682, "ser_mad_ns": 594.5, "ser_cv": 0.35266125218404293, "ser_min_ns": 2032.0, "ser_max_ns": 7692.0, "ser_p5_ns": 2332.8, "ser_p25_ns": 2899.5, "ser_p50_ns": 3290.5, "ser_p75_ns": 4754.25, "ser_p95_ns": 6521.7, "ser_p99_ns": 7231.649999999997, "ser_ci_low_ns": 3527.8332446808513, "ser_ci_high_ns": 4079.405053191489, "deser_mean_ns": 5679.86170212766, "deser_median_ns": 4868.0, "deser_std_ns": 1932.4885822309495, "deser_mad_ns": 708.5, "deser_cv": 0.34023514718801073, "deser_min_ns": 3523.0, "deser_max_ns": 11191.0, "deser_p5_ns": 3764.5, "deser_p25_ns": 4301.5, "deser_p50_ns": 4868.0, "deser_p75_ns": 6711.0, "deser_p95_ns": 9873.35, "deser_p99_ns": 10530.699999999995, "deser_ci_low_ns": 5307.215159574468, "deser_ci_high_ns": 6067.485372340425, "total_mean_ns": 9481.54255319149, "total_median_ns": 8139.0, "total_std_ns": 3164.869793529856, "total_mad_ns": 1240.5, "total_cv": 0.3337927110251232, "total_min_ns": 5599.0, "total_max_ns": 18883.0, "total_p5_ns": 6082.25, "total_p25_ns": 7203.0, "total_p50_ns": 8139.0, "total_p75_ns": 11402.5, "total_p95_ns": 16063.949999999999, "total_p99_ns": 17513.10999999999, "total_ci_low_ns": 8882.632712765957, "total_ci_high_ns": 10146.055585106382, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.6949954453030505}, {"serializer": "kelindar/binary", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.0.19", "avg_time_ser_ns": 1258.1914893617022, "avg_time_deser_ns": 2076.478723404255, "avg_time_total_ns": 3334.6702127659573, "median_size_bytes": 113.0, "avg_ops_per_sec": 299879.7290873767, "min_ops_per_sec": 155738.9814670612, "max_ops_per_sec": 528820.7297726071, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 1258.1914893617022, "ser_median_ns": 1105.5, "ser_std_ns": 430.280485579902, "ser_mad_ns": 214.5, "ser_cv": 0.3419833063711067, "ser_min_ns": 612.0, "ser_max_ns": 2488.0, "ser_p5_ns": 767.55, "ser_p25_ns": 965.25, "ser_p50_ns": 1105.5, "ser_p75_ns": 1496.25, "ser_p95_ns": 2123.1499999999996, "ser_p99_ns": 2292.6999999999985, "ser_ci_low_ns": 1173.165425531915, "ser_ci_high_ns": 1348.2364361702128, "deser_mean_ns": 2076.478723404255, "deser_median_ns": 1832.0, "deser_std_ns": 660.6239105234854, "deser_mad_ns": 264.5, "deser_cv": 0.31814624589094487, "deser_min_ns": 1212.0, "deser_max_ns": 3933.0, "deser_p5_ns": 1374.8, "deser_p25_ns": 1602.5, "deser_p50_ns": 1832.0, "deser_p75_ns": 2315.0, "deser_p95_ns": 3415.949999999999, "deser_p99_ns": 3836.2799999999993, "deser_ci_low_ns": 1946.804255319149, "deser_ci_high_ns": 2197.2023936170212, "total_mean_ns": 3334.6702127659573, "total_median_ns": 2934.0, "total_std_ns": 1074.7519182443207, "total_mad_ns": 456.5, "total_cv": 0.3222963140792453, "total_min_ns": 1891.0, "total_max_ns": 6421.0, "total_p5_ns": 2156.15, "total_p25_ns": 2607.75, "total_p50_ns": 2934.0, "total_p75_ns": 3975.25, "total_p95_ns": 5534.799999999999, "total_p99_ns": 6128.979999999998, "total_ci_low_ns": 3117.247074468085, "total_ci_high_ns": 3569.2752659574467, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.07009456264775414, "effect_vs_fastest_cliffs_label": "negligible", "effect_vs_fastest_hedges_g": 0.2150640257214904}, {"serializer": "encoding/gob", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 6134.271739130435, "avg_time_deser_ns": 17454.728260869564, "avg_time_total_ns": 23589.0, "median_size_bytes": 367.0, "avg_ops_per_sec": 42392.64063758532, "min_ops_per_sec": 24764.735017335315, "max_ops_per_sec": 58031.56917363046, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 6134.271739130435, "ser_median_ns": 5542.5, "ser_std_ns": 1819.3547830055836, "ser_mad_ns": 1054.5, "ser_cv": 0.296588553682737, "ser_min_ns": 3644.0, "ser_max_ns": 11261.0, "ser_p5_ns": 4075.15, "ser_p25_ns": 4713.75, "ser_p50_ns": 5542.5, "ser_p75_ns": 7387.0, "ser_p95_ns": 9500.15, "ser_p99_ns": 10355.550000000003, "ser_ci_low_ns": 5768.309782608696, "ser_ci_high_ns": 6511.816847826087, "deser_mean_ns": 17454.728260869564, "deser_median_ns": 15874.0, "deser_std_ns": 3874.800223430911, "deser_mad_ns": 1494.5, "deser_cv": 0.22199143782246858, "deser_min_ns": 13073.0, "deser_max_ns": 29119.0, "deser_p5_ns": 13478.55, "deser_p25_ns": 14700.75, "deser_p50_ns": 15874.0, "deser_p75_ns": 18971.75, "deser_p95_ns": 25680.75, "deser_p99_ns": 29074.41, "deser_ci_low_ns": 16678.478804347826, "deser_ci_high_ns": 18258.68831521739, "total_mean_ns": 23589.0, "total_median_ns": 21317.5, "total_std_ns": 5608.885141226599, "total_mad_ns": 2605.0, "total_cv": 0.23777545216951118, "total_min_ns": 17232.0, "total_max_ns": 40380.0, "total_p5_ns": 17588.05, "total_p25_ns": 19520.25, "total_p50_ns": 21317.5, "total_p75_ns": 26409.0, "total_p95_ns": 35185.6, "total_p99_ns": 39409.030000000006, "total_ci_low_ns": 22488.491576086955, "total_ci_high_ns": 24725.980163043474, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.046135637213822}, {"serializer": "pelletier/go-toml", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "2.4.3", "avg_time_ser_ns": 5267.966292134832, "avg_time_deser_ns": 10248.505617977527, "avg_time_total_ns": 15516.47191011236, "median_size_bytes": 500.0, "avg_ops_per_sec": 64447.64027499591, "min_ops_per_sec": 42053.9131166155, "max_ops_per_sec": 91432.75121148395, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 5267.966292134832, "ser_median_ns": 4946.0, "ser_std_ns": 1107.3268020679989, "ser_mad_ns": 500.0, "ser_cv": 0.21020005456778598, "ser_min_ns": 3876.0, "ser_max_ns": 8240.0, "ser_p5_ns": 4152.4, "ser_p25_ns": 4500.0, "ser_p50_ns": 4946.0, "ser_p75_ns": 5638.0, "ser_p95_ns": 7742.599999999999, "ser_p99_ns": 8126.4800000000005, "ser_ci_low_ns": 5044.339325842697, "ser_ci_high_ns": 5501.66797752809, "deser_mean_ns": 10248.505617977527, "deser_median_ns": 9871.0, "deser_std_ns": 2146.155458676978, "deser_mad_ns": 1411.0, "deser_cv": 0.209411551174083, "deser_min_ns": 7061.0, "deser_max_ns": 15672.0, "deser_p5_ns": 7747.0, "deser_p25_ns": 8571.0, "deser_p50_ns": 9871.0, "deser_p75_ns": 11371.0, "deser_p95_ns": 14860.399999999998, "deser_p99_ns": 15577.84, "deser_ci_low_ns": 9795.840168539326, "deser_ci_high_ns": 10719.955617977528, "total_mean_ns": 15516.47191011236, "total_median_ns": 14820.0, "total_std_ns": 3216.981889802246, "total_mad_ns": 1894.0, "total_cv": 0.20732689160515166, "total_min_ns": 10937.0, "total_max_ns": 23779.0, "total_p5_ns": 11888.8, "total_p25_ns": 12968.0, "total_p50_ns": 14820.0, "total_p75_ns": 16854.0, "total_p95_ns": 22245.999999999996, "total_p99_ns": 23263.320000000003, "total_ci_low_ns": 14894.172752808989, "total_ci_high_ns": 16212.71011235955, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.232259676784588}, {"serializer": "segmentio/encoding/json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "0.5.4", "avg_time_ser_ns": 1434.6067415730338, "avg_time_deser_ns": 5708.460674157303, "avg_time_total_ns": 7143.067415730337, "median_size_bytes": 449.0, "avg_ops_per_sec": 139995.8787730069, "min_ops_per_sec": 83347.22453742291, "max_ops_per_sec": 235294.11764705883, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 1434.6067415730338, "ser_median_ns": 1323.0, "ser_std_ns": 422.8958774164782, "ser_mad_ns": 224.0, "ser_cv": 0.29478174412646113, "ser_min_ns": 701.0, "ser_max_ns": 2632.0, "ser_p5_ns": 825.2, "ser_p25_ns": 1195.0, "ser_p50_ns": 1323.0, "ser_p75_ns": 1670.0, "ser_p95_ns": 2267.6, "ser_p99_ns": 2426.960000000001, "ser_ci_low_ns": 1346.5547752808989, "ser_ci_high_ns": 1523.5176966292133, "deser_mean_ns": 5708.460674157303, "deser_median_ns": 5422.0, "deser_std_ns": 1439.9385723654686, "deser_mad_ns": 870.0, "deser_cv": 0.2522463855946657, "deser_min_ns": 3549.0, "deser_max_ns": 9804.0, "deser_p5_ns": 3958.8, "deser_p25_ns": 4710.0, "deser_p50_ns": 5422.0, "deser_p75_ns": 6439.0, "deser_p95_ns": 8824.0, "deser_p99_ns": 9721.28, "deser_ci_low_ns": 5443.299157303371, "deser_ci_high_ns": 6010.6637640449435, "total_mean_ns": 7143.067415730337, "total_median_ns": 6684.0, "total_std_ns": 1788.0711852678826, "total_mad_ns": 1056.0, "total_cv": 0.25032259689026926, "total_min_ns": 4250.0, "total_max_ns": 11998.0, "total_p5_ns": 4995.0, "total_p25_ns": 5808.0, "total_p50_ns": 6684.0, "total_p75_ns": 8178.0, "total_p95_ns": 10926.199999999999, "total_p99_ns": 11922.32, "total_ci_low_ns": 6772.6044943820225, "total_ci_high_ns": 7540.882865168539, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.9857677902621723, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.8256562063614106}, {"serializer": "mongo-bson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.17.9", "avg_time_ser_ns": 190262.28048780488, "avg_time_deser_ns": 361756.6219512195, "avg_time_total_ns": 552018.9024390244, "median_size_bytes": 53446.0, "avg_ops_per_sec": 1811.532169608013, "min_ops_per_sec": 1362.808147957355, "max_ops_per_sec": 2084.9361279817194, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 190262.28048780488, "ser_median_ns": 180172.0, "ser_std_ns": 25873.37532337169, "ser_mad_ns": 13323.0, "ser_cv": 0.1359879386341639, "ser_min_ns": 157900.0, "ser_max_ns": 254721.0, "ser_p5_ns": 159291.4, "ser_p25_ns": 169930.25, "ser_p50_ns": 180172.0, "ser_p75_ns": 213578.0, "ser_p95_ns": 235515.1, "ser_p99_ns": 254336.25, "ser_ci_low_ns": 184880.5362804878, "ser_ci_high_ns": 196159.7149390244, "deser_mean_ns": 361756.6219512195, "deser_median_ns": 347207.0, "deser_std_ns": 38532.866646424285, "deser_mad_ns": 20045.5, "deser_cv": 0.10651599530808364, "deser_min_ns": 320353.0, "deser_max_ns": 479058.0, "deser_p5_ns": 323205.25, "deser_p25_ns": 332501.0, "deser_p50_ns": 347207.0, "deser_p75_ns": 378813.0, "deser_p95_ns": 431366.05, "deser_p99_ns": 479045.04, "deser_ci_low_ns": 353617.2768292683, "deser_ci_high_ns": 370276.96676829265, "total_mean_ns": 552018.9024390244, "total_median_ns": 527559.0, "total_std_ns": 58358.403365946055, "total_mad_ns": 34748.5, "total_cv": 0.10571812506437182, "total_min_ns": 479631.0, "total_max_ns": 733779.0, "total_p5_ns": 487561.9, "total_p25_ns": 506180.25, "total_p50_ns": 527559.0, "total_p75_ns": 593362.5, "total_p95_ns": 656536.35, "total_p99_ns": 706735.5299999999, "total_ci_low_ns": 540154.5198170731, "total_ci_high_ns": 565631.6637195122, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.296317205351006}, {"serializer": "hamba/avro", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "2.31.0", "avg_time_ser_ns": 41418.53409090909, "avg_time_deser_ns": 41195.22727272727, "avg_time_total_ns": 82613.76136363637, "median_size_bytes": 12170.0, "avg_ops_per_sec": 12104.520887244875, "min_ops_per_sec": 8449.72834123383, "max_ops_per_sec": 15808.527119528273, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 41418.53409090909, "ser_median_ns": 40145.5, "ser_std_ns": 6363.389738523148, "ser_mad_ns": 3068.5, "ser_cv": 0.15363628574000743, "ser_min_ns": 31098.0, "ser_max_ns": 61296.0, "ser_p5_ns": 33102.8, "ser_p25_ns": 37142.0, "ser_p50_ns": 40145.5, "ser_p75_ns": 43413.0, "ser_p95_ns": 53925.6, "ser_p99_ns": 57969.98999999998, "ser_ci_low_ns": 40152.60965909091, "ser_ci_high_ns": 42762.80823863637, "deser_mean_ns": 41195.22727272727, "deser_median_ns": 38775.0, "deser_std_ns": 6561.11134882357, "deser_mad_ns": 2443.0, "deser_cv": 0.15926872560713512, "deser_min_ns": 32159.0, "deser_max_ns": 60493.0, "deser_p5_ns": 35161.6, "deser_p25_ns": 36676.0, "deser_p50_ns": 38775.0, "deser_p75_ns": 43619.75, "deser_p95_ns": 56660.74999999999, "deser_p99_ns": 59132.31999999999, "deser_ci_low_ns": 39871.23607954545, "deser_ci_high_ns": 42554.72784090909, "total_mean_ns": 82613.76136363637, "total_median_ns": 78509.5, "total_std_ns": 11566.330468459584, "total_mad_ns": 5769.0, "total_cv": 0.14000488874424583, "total_min_ns": 63257.0, "total_max_ns": 118347.0, "total_p5_ns": 70705.8, "total_p25_ns": 75156.25, "total_p50_ns": 78509.5, "total_p75_ns": 88571.25, "total_p95_ns": 106652.54999999997, "total_p99_ns": 115101.02999999998, "total_ci_low_ns": 80305.84943181819, "total_ci_high_ns": 85096.45738636365, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "goccy/go-json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "0.10.6", "avg_time_ser_ns": 65294.65909090909, "avg_time_deser_ns": 106177.61363636363, "avg_time_total_ns": 171472.27272727274, "median_size_bytes": 45404.0, "avg_ops_per_sec": 5831.846654243066, "min_ops_per_sec": 4017.548652514182, "max_ops_per_sec": 7979.508621859066, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 65294.65909090909, "ser_median_ns": 59577.0, "ser_std_ns": 18184.375575060556, "ser_mad_ns": 8662.5, "ser_cv": 0.27849713633917034, "ser_min_ns": 40260.0, "ser_max_ns": 114482.0, "ser_p5_ns": 43206.15, "ser_p25_ns": 53908.0, "ser_p50_ns": 59577.0, "ser_p75_ns": 72944.75, "ser_p95_ns": 104343.24999999991, "ser_p99_ns": 113913.89, "ser_ci_low_ns": 61663.5625, "ser_ci_high_ns": 69176.85369318181, "deser_mean_ns": 106177.61363636363, "deser_median_ns": 100269.5, "deser_std_ns": 17918.484022514273, "deser_mad_ns": 8201.0, "deser_cv": 0.16875952857521714, "deser_min_ns": 85061.0, "deser_max_ns": 158175.0, "deser_p5_ns": 88917.05, "deser_p25_ns": 93475.25, "deser_p50_ns": 100269.5, "deser_p75_ns": 113610.75, "deser_p95_ns": 149409.15, "deser_p99_ns": 157316.31, "deser_ci_low_ns": 102590.57329545454, "deser_ci_high_ns": 109888.00227272727, "total_mean_ns": 171472.27272727274, "total_median_ns": 159968.0, "total_std_ns": 32783.19618576947, "total_mad_ns": 16192.5, "total_cv": 0.1911865729913737, "total_min_ns": 125321.0, "total_max_ns": 248908.0, "total_p5_ns": 138188.1, "total_p25_ns": 147567.5, "total_p50_ns": 159968.0, "total_p75_ns": 180984.0, "total_p95_ns": 240419.3, "total_p99_ns": 248017.12, "total_ci_low_ns": 164977.36164772726, "total_ci_high_ns": 178120.52982954544, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.5992231028806705}, {"serializer": "protobuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.36.11", "avg_time_ser_ns": 62459.156626506025, "avg_time_deser_ns": 107389.421686747, "avg_time_total_ns": 169848.578313253, "median_size_bytes": 16265.0, "avg_ops_per_sec": 5887.597116978468, "min_ops_per_sec": 4731.040355774235, "max_ops_per_sec": 6763.200075747841, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 62459.156626506025, "ser_median_ns": 61429.0, "ser_std_ns": 6811.671295726374, "ser_mad_ns": 3733.0, "ser_cv": 0.10905800948384373, "ser_min_ns": 50860.0, "ser_max_ns": 84617.0, "ser_p5_ns": 54893.7, "ser_p25_ns": 57289.0, "ser_p50_ns": 61429.0, "ser_p75_ns": 64692.5, "ser_p95_ns": 77144.49999999999, "ser_p99_ns": 83457.51999999999, "ser_ci_low_ns": 61084.5436746988, "ser_ci_high_ns": 63910.10722891566, "deser_mean_ns": 107389.421686747, "deser_median_ns": 103332.0, "deser_std_ns": 11058.376369511387, "deser_mad_ns": 5250.0, "deser_cv": 0.10297454065604777, "deser_min_ns": 93359.0, "deser_max_ns": 134028.0, "deser_p5_ns": 95831.8, "deser_p25_ns": 98912.5, "deser_p50_ns": 103332.0, "deser_p75_ns": 114320.5, "deser_p95_ns": 131909.3, "deser_p99_ns": 132936.58, "deser_ci_low_ns": 105048.14186746988, "deser_ci_high_ns": 109849.69728915663, "total_mean_ns": 169848.578313253, "total_median_ns": 166980.0, "total_std_ns": 13658.948952637003, "total_mad_ns": 8346.0, "total_cv": 0.0804183884745017, "total_min_ns": 147859.0, "total_max_ns": 211370.0, "total_p5_ns": 151590.7, "total_p25_ns": 160138.5, "total_p50_ns": 166980.0, "total_p75_ns": 179498.0, "total_p95_ns": 193854.3, "total_p99_ns": 203427.47999999992, "total_ci_low_ns": 166974.0503012048, "total_ci_high_ns": 172809.71325301204, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.8789367220892155}, {"serializer": "jsoniter", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.1.12", "avg_time_ser_ns": 94165.10227272728, "avg_time_deser_ns": 135791.22727272726, "avg_time_total_ns": 229956.32954545456, "median_size_bytes": 45404.0, "avg_ops_per_sec": 4348.651772171959, "min_ops_per_sec": 3106.4197270078344, "max_ops_per_sec": 5596.722559269292, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 94165.10227272728, "ser_median_ns": 85991.0, "ser_std_ns": 22277.70531840719, "ser_mad_ns": 9244.0, "ser_cv": 0.23658133194487493, "ser_min_ns": 62172.0, "ser_max_ns": 143436.0, "ser_p5_ns": 66336.4, "ser_p25_ns": 78785.5, "ser_p50_ns": 85991.0, "ser_p75_ns": 105642.5, "ser_p95_ns": 138109.19999999998, "ser_p99_ns": 142063.13999999998, "ser_ci_low_ns": 89633.46960227273, "ser_ci_high_ns": 99032.53806818182, "deser_mean_ns": 135791.22727272726, "deser_median_ns": 130800.5, "deser_std_ns": 16498.970866357176, "deser_mad_ns": 7973.5, "deser_cv": 0.12150247992987159, "deser_min_ns": 115612.0, "deser_max_ns": 182032.0, "deser_p5_ns": 119090.05, "deser_p25_ns": 123982.0, "deser_p50_ns": 130800.5, "deser_p75_ns": 140744.75, "deser_p95_ns": 177787.44999999995, "deser_p99_ns": 181205.5, "deser_ci_low_ns": 132431.6221590909, "deser_ci_high_ns": 139256.80113636362, "total_mean_ns": 229956.32954545456, "total_median_ns": 219587.5, "total_std_ns": 34544.218622939814, "total_mad_ns": 16716.0, "total_cv": 0.1502207775329428, "total_min_ns": 178676.0, "total_max_ns": 321914.0, "total_p5_ns": 188320.1, "total_p25_ns": 206276.0, "total_p50_ns": 219587.5, "total_p75_ns": 247028.0, "total_p95_ns": 299219.54999999993, "total_p99_ns": 318280.88, "total_ci_low_ns": 222863.0556818182, "total_ci_high_ns": 237357.53721590908, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.69528515434186}, {"serializer": "shamaton/msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "3.1.2", "avg_time_ser_ns": 107219.95348837209, "avg_time_deser_ns": 104294.6511627907, "avg_time_total_ns": 211514.60465116278, "median_size_bytes": 31959.0, "avg_ops_per_sec": 4727.8059198287265, "min_ops_per_sec": 3915.5954250183054, "max_ops_per_sec": 5242.436474776017, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 107219.95348837209, "ser_median_ns": 103331.0, "ser_std_ns": 9991.807664172245, "ser_mad_ns": 5002.5, "ser_cv": 0.09318981531973755, "ser_min_ns": 95359.0, "ser_max_ns": 136852.0, "ser_p5_ns": 97437.5, "ser_p25_ns": 99509.5, "ser_p50_ns": 103331.0, "ser_p75_ns": 113476.75, "ser_p95_ns": 129450.0, "ser_p99_ns": 133728.25000000003, "ser_ci_low_ns": 105061.64941860465, "ser_ci_high_ns": 109360.88633720929, "deser_mean_ns": 104294.6511627907, "deser_median_ns": 101019.5, "deser_std_ns": 7833.83282010483, "deser_mad_ns": 3210.5, "deser_cv": 0.0751125080027087, "deser_min_ns": 95392.0, "deser_max_ns": 127240.0, "deser_p5_ns": 96609.25, "deser_p25_ns": 98957.5, "deser_p50_ns": 101019.5, "deser_p75_ns": 108379.25, "deser_p95_ns": 122220.25, "deser_p99_ns": 126443.55, "deser_ci_low_ns": 102727.22296511628, "deser_ci_high_ns": 106007.04941860466, "total_mean_ns": 211514.60465116278, "total_median_ns": 205426.0, "total_std_ns": 15964.205483281927, "total_mad_ns": 8788.0, "total_cv": 0.07547566518922251, "total_min_ns": 190751.0, "total_max_ns": 255389.0, "total_p5_ns": 194116.0, "total_p25_ns": 199682.0, "total_p50_ns": 205426.0, "total_p75_ns": 222247.0, "total_p95_ns": 247635.5, "total_p99_ns": 252896.80000000002, "total_ci_low_ns": 208342.65639534884, "total_ci_high_ns": 214855.599127907, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.223308718800618}, {"serializer": "ugorji/json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 77533.025, "avg_time_deser_ns": 173877.0125, "avg_time_total_ns": 251410.0375, "median_size_bytes": 45404.0, "avg_ops_per_sec": 3977.5659315113858, "min_ops_per_sec": 3258.1992584338486, "max_ops_per_sec": 4575.884175219757, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 77533.025, "ser_median_ns": 75989.0, "ser_std_ns": 7501.182043518208, "ser_mad_ns": 5536.0, "ser_cv": 0.09674821849809431, "ser_min_ns": 64999.0, "ser_max_ns": 94121.0, "ser_p5_ns": 68391.15, "ser_p25_ns": 70844.75, "ser_p50_ns": 75989.0, "ser_p75_ns": 83152.5, "ser_p95_ns": 91056.5, "ser_p99_ns": 93490.58, "ser_ci_low_ns": 75873.5034375, "ser_ci_high_ns": 79137.8475, "deser_mean_ns": 173877.0125, "deser_median_ns": 172607.5, "deser_std_ns": 13867.84986710451, "deser_mad_ns": 9990.0, "deser_cv": 0.07975666057124435, "deser_min_ns": 153538.0, "deser_max_ns": 219764.0, "deser_p5_ns": 157623.6, "deser_p25_ns": 161894.75, "deser_p50_ns": 172607.5, "deser_p75_ns": 181394.0, "deser_p95_ns": 197036.39999999997, "deser_p99_ns": 211782.62999999995, "deser_ci_low_ns": 171024.52, "deser_ci_high_ns": 176803.90468749998, "total_mean_ns": 251410.0375, "total_median_ns": 249733.0, "total_std_ns": 19061.04079765098, "total_mad_ns": 13372.0, "total_cv": 0.07581654649588515, "total_min_ns": 218537.0, "total_max_ns": 306918.0, "total_p5_ns": 226258.75, "total_p25_ns": 235763.25, "total_p50_ns": 249733.0, "total_p75_ns": 261757.75, "total_p95_ns": 283044.64999999997, "total_p99_ns": 303810.13999999996, "total_ci_low_ns": 247267.2553125, "total_ci_high_ns": 255469.8340625, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.778835291307313}, {"serializer": "encoding/gob", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 73633.39759036145, "avg_time_deser_ns": 104245.4578313253, "avg_time_total_ns": 177878.85542168675, "median_size_bytes": 16643.0, "avg_ops_per_sec": 5621.803657491273, "min_ops_per_sec": 4118.616144975288, "max_ops_per_sec": 6705.873674751715, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 73633.39759036145, "ser_median_ns": 70479.0, "ser_std_ns": 9961.615010041636, "ser_mad_ns": 5747.0, "ser_cv": 0.13528664079118363, "ser_min_ns": 61563.0, "ser_max_ns": 107719.0, "ser_p5_ns": 62340.6, "ser_p25_ns": 65478.5, "ser_p50_ns": 70479.0, "ser_p75_ns": 78320.0, "ser_p95_ns": 91888.2, "ser_p99_ns": 101506.67999999995, "ser_ci_low_ns": 71517.08704819277, "ser_ci_high_ns": 75769.73222891567, "deser_mean_ns": 104245.4578313253, "deser_median_ns": 102639.0, "deser_std_ns": 11524.976790941348, "deser_mad_ns": 7299.0, "deser_cv": 0.1105561530516694, "deser_min_ns": 83955.0, "deser_max_ns": 142657.0, "deser_p5_ns": 89686.4, "deser_p25_ns": 95734.5, "deser_p50_ns": 102639.0, "deser_p75_ns": 110350.5, "deser_p95_ns": 123879.19999999998, "deser_p99_ns": 142589.76, "deser_ci_low_ns": 101829.01355421687, "deser_ci_high_ns": 106785.58734939758, "total_mean_ns": 177878.85542168675, "total_median_ns": 175532.0, "total_std_ns": 19459.67849616134, "total_mad_ns": 12553.0, "total_cv": 0.10939849174332411, "total_min_ns": 149123.0, "total_max_ns": 242800.0, "total_p5_ns": 152845.4, "total_p25_ns": 163464.0, "total_p50_ns": 175532.0, "total_p75_ns": 188886.5, "total_p95_ns": 212421.09999999998, "total_p99_ns": 235714.37999999995, "total_ci_low_ns": 173741.32771084338, "total_ci_high_ns": 182082.08072289158, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.96728530407057}, {"serializer": "vmihailenco/msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "5.4.1", "avg_time_ser_ns": 109757.6626506024, "avg_time_deser_ns": 225803.60240963855, "avg_time_total_ns": 335561.265060241, "median_size_bytes": 40242.0, "avg_ops_per_sec": 2980.081744001284, "min_ops_per_sec": 2246.4590189713463, "max_ops_per_sec": 3363.221158696954, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 109757.6626506024, "ser_median_ns": 106012.0, "ser_std_ns": 11514.942471793334, "ser_mad_ns": 5912.0, "ser_cv": 0.10491242427828919, "ser_min_ns": 96673.0, "ser_max_ns": 142174.0, "ser_p5_ns": 97844.8, "ser_p25_ns": 101572.5, "ser_p50_ns": 106012.0, "ser_p75_ns": 115166.0, "ser_p95_ns": 136187.49999999997, "ser_p99_ns": 142053.46, "ser_ci_low_ns": 107370.20602409639, "ser_ci_high_ns": 112314.35180722892, "deser_mean_ns": 225803.60240963855, "deser_median_ns": 218974.0, "deser_std_ns": 22207.65729341898, "deser_mad_ns": 12016.0, "deser_cv": 0.09834943754852617, "deser_min_ns": 200661.0, "deser_max_ns": 303118.0, "deser_p5_ns": 205058.4, "deser_p25_ns": 209022.0, "deser_p50_ns": 218974.0, "deser_p75_ns": 236469.5, "deser_p95_ns": 274128.89999999997, "deser_p99_ns": 297140.19999999995, "deser_ci_low_ns": 221221.23795180724, "deser_ci_high_ns": 230662.11987951805, "total_mean_ns": 335561.265060241, "total_median_ns": 325233.0, "total_std_ns": 32017.35113092714, "total_mad_ns": 17228.0, "total_cv": 0.09541432359655483, "total_min_ns": 297334.0, "total_max_ns": 445145.0, "total_p5_ns": 303574.2, "total_p25_ns": 310804.5, "total_p50_ns": 325233.0, "total_p75_ns": 352253.5, "total_p95_ns": 403859.3, "total_p99_ns": 439287.73999999993, "total_ci_low_ns": 329152.27951807226, "total_ci_high_ns": 342730.1873493976, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.582491975421615}, {"serializer": "pelletier/go-toml", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "2.4.3", "avg_time_ser_ns": 365559.15476190473, "avg_time_deser_ns": 742280.9166666666, "avg_time_total_ns": 1107840.0714285714, "median_size_bytes": 57002.0, "avg_ops_per_sec": 902.6573652553383, "min_ops_per_sec": 676.7804740711865, "max_ops_per_sec": 1031.1000393880215, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 365559.15476190473, "ser_median_ns": 359258.0, "ser_std_ns": 34842.1309466495, "ser_mad_ns": 22033.5, "ser_cv": 0.09531188179199837, "ser_min_ns": 307510.0, "ser_max_ns": 469315.0, "ser_p5_ns": 316070.1, "ser_p25_ns": 341842.25, "ser_p50_ns": 359258.0, "ser_p75_ns": 386030.0, "ser_p95_ns": 431223.55, "ser_p99_ns": 458900.99000000005, "ser_ci_low_ns": 358452.0125, "ser_ci_high_ns": 372886.27470238094, "deser_mean_ns": 742280.9166666666, "deser_median_ns": 719207.5, "deser_std_ns": 71196.60941605554, "deser_mad_ns": 27663.0, "deser_cv": 0.09591599058719644, "deser_min_ns": 662149.0, "deser_max_ns": 1008269.0, "deser_p5_ns": 676824.9, "deser_p25_ns": 697781.0, "deser_p50_ns": 719207.5, "deser_p75_ns": 766644.75, "deser_p95_ns": 908733.3999999998, "deser_p99_ns": 948739.7400000001, "deser_ci_low_ns": 727434.3770833333, "deser_ci_high_ns": 758147.7714285714, "total_mean_ns": 1107840.0714285714, "total_median_ns": 1074535.5, "total_std_ns": 99999.17838985196, "total_mad_ns": 41596.0, "total_cv": 0.09026499489308233, "total_min_ns": 969838.0, "total_max_ns": 1477584.0, "total_p5_ns": 1000749.65, "total_p25_ns": 1043224.5, "total_p50_ns": 1074535.5, "total_p75_ns": 1147532.5, "total_p95_ns": 1336209.8499999999, "total_p99_ns": 1377930.0500000003, "total_ci_low_ns": 1087381.2595238097, "total_ci_high_ns": 1129887.6809523809, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.506470337682194}, {"serializer": "goccy/go-yaml", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.19.2", "avg_time_ser_ns": 7128594.579545454, "avg_time_deser_ns": 8595597.068181818, "avg_time_total_ns": 15724191.647727273, "median_size_bytes": 49403.0, "avg_ops_per_sec": 63.59627397091264, "min_ops_per_sec": 49.29277681393968, "max_ops_per_sec": 75.24953875795218, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 7128594.579545454, "ser_median_ns": 7031354.5, "ser_std_ns": 642603.0658400829, "ser_mad_ns": 394515.0, "ser_cv": 0.09014442589903292, "ser_min_ns": 6013669.0, "ser_max_ns": 8860023.0, "ser_p5_ns": 6284612.05, "ser_p25_ns": 6666212.25, "ser_p50_ns": 7031354.5, "ser_p75_ns": 7459882.5, "ser_p95_ns": 8284168.55, "ser_p99_ns": 8809532.549999999, "ser_ci_low_ns": 6994267.26875, "ser_ci_high_ns": 7263802.695170455, "deser_mean_ns": 8595597.068181818, "deser_median_ns": 8349909.5, "deser_std_ns": 1169084.8845700552, "deser_mad_ns": 723632.0, "deser_cv": 0.13600973560029211, "deser_min_ns": 7009400.0, "deser_max_ns": 11981035.0, "deser_p5_ns": 7133354.55, "deser_p25_ns": 7718032.0, "deser_p50_ns": 8349909.5, "deser_p75_ns": 9121579.25, "deser_p95_ns": 10958865.299999999, "deser_p99_ns": 11611960.989999998, "deser_ci_low_ns": 8368971.600568182, "deser_ci_high_ns": 8842244.385227272, "total_mean_ns": 15724191.647727273, "total_median_ns": 15433679.0, "total_std_ns": 1404623.961081236, "total_mad_ns": 909591.0, "total_cv": 0.08932885025503082, "total_min_ns": 13289118.0, "total_max_ns": 20286948.0, "total_p5_ns": 14025086.2, "total_p25_ns": 14712941.25, "total_p50_ns": 15433679.0, "total_p75_ns": 16544559.0, "total_p95_ns": 18226788.6, "total_p99_ns": 19840735.439999998, "total_ci_low_ns": 15434834.62869318, "total_ci_high_ns": 16031526.949715909, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.679855393917201}, {"serializer": "ugorji/msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 63368.54022988506, "avg_time_deser_ns": 119747.88505747127, "avg_time_total_ns": 183116.4252873563, "median_size_bytes": 33310.0, "avg_ops_per_sec": 5461.006561430769, "min_ops_per_sec": 4092.5237775631476, "max_ops_per_sec": 6248.984540012248, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 63368.54022988506, "ser_median_ns": 60366.0, "ser_std_ns": 8274.81964224809, "ser_mad_ns": 4355.0, "ser_cv": 0.1305824564086396, "ser_min_ns": 54150.0, "ser_max_ns": 85642.0, "ser_p5_ns": 54967.8, "ser_p25_ns": 57285.0, "ser_p50_ns": 60366.0, "ser_p75_ns": 67969.5, "ser_p95_ns": 80230.9, "ser_p99_ns": 84731.26, "ser_ci_low_ns": 61702.17068965518, "ser_ci_high_ns": 65181.70488505747, "deser_mean_ns": 119747.88505747127, "deser_median_ns": 114674.0, "deser_std_ns": 12643.36184265518, "deser_mad_ns": 5278.0, "deser_cv": 0.10558317448852797, "deser_min_ns": 105876.0, "deser_max_ns": 162501.0, "deser_p5_ns": 108056.4, "deser_p25_ns": 111040.5, "deser_p50_ns": 114674.0, "deser_p75_ns": 124094.5, "deser_p95_ns": 147571.0, "deser_p99_ns": 161652.18, "deser_ci_low_ns": 117257.70172413794, "deser_ci_high_ns": 122543.10804597702, "total_mean_ns": 183116.4252873563, "total_median_ns": 176841.0, "total_std_ns": 19202.428582859466, "total_mad_ns": 9804.0, "total_cv": 0.10486458848640129, "total_min_ns": 160026.0, "total_max_ns": 244348.0, "total_p5_ns": 163559.1, "total_p25_ns": 168803.5, "total_p50_ns": 176841.0, "total_p75_ns": 192023.0, "total_p95_ns": 223997.5, "total_p99_ns": 243683.22, "total_ci_low_ns": 179347.2120689655, "total_ci_high_ns": 187476.57528735633, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.321452253912606}, {"serializer": "linkedin/goavro", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "2.15.0", "avg_time_ser_ns": 73577.46067415731, "avg_time_deser_ns": 175394.96629213484, "avg_time_total_ns": 248972.42696629214, "median_size_bytes": 11967.0, "avg_ops_per_sec": 4016.5090254568145, "min_ops_per_sec": 2486.467401169137, "max_ops_per_sec": 5224.878782812239, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 73577.46067415731, "ser_median_ns": 67983.0, "ser_std_ns": 16955.787726035254, "ser_mad_ns": 9526.0, "ser_cv": 0.23044812325237876, "ser_min_ns": 51896.0, "ser_max_ns": 117837.0, "ser_p5_ns": 55442.6, "ser_p25_ns": 60563.0, "ser_p50_ns": 67983.0, "ser_p75_ns": 80675.0, "ser_p95_ns": 109421.0, "ser_p99_ns": 115131.00000000001, "ser_ci_low_ns": 70185.83005617977, "ser_ci_high_ns": 77285.5929775281, "deser_mean_ns": 175394.96629213484, "deser_median_ns": 158374.0, "deser_std_ns": 41694.52355974164, "deser_mad_ns": 13462.0, "deser_cv": 0.23771790286327807, "deser_min_ns": 137717.0, "deser_max_ns": 293455.0, "deser_p5_ns": 141362.6, "deser_p25_ns": 146373.0, "deser_p50_ns": 158374.0, "deser_p75_ns": 181460.0, "deser_p95_ns": 261940.79999999996, "deser_p99_ns": 290246.52, "deser_ci_low_ns": 167168.8463483146, "deser_ci_high_ns": 184303.9668539326, "total_mean_ns": 248972.42696629214, "total_median_ns": 229951.0, "total_std_ns": 53010.54651475403, "total_mad_ns": 27273.0, "total_cv": 0.21291733852090786, "total_min_ns": 191392.0, "total_max_ns": 402177.0, "total_p5_ns": 197731.6, "total_p25_ns": 208148.0, "total_p50_ns": 229951.0, "total_p75_ns": 270392.0, "total_p95_ns": 360182.6, "total_p99_ns": 385948.0400000001, "total_ci_low_ns": 237990.22331460676, "total_ci_high_ns": 259995.5210674157, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.306316655713011}, {"serializer": "fxamacker/cbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "2.9.2", "avg_time_ser_ns": 86833.4875, "avg_time_deser_ns": 226311.2875, "avg_time_total_ns": 313144.775, "median_size_bytes": 33372.0, "avg_ops_per_sec": 3193.4110987481745, "min_ops_per_sec": 2502.6716019350656, "max_ops_per_sec": 3669.1323235881177, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 86833.4875, "ser_median_ns": 83882.5, "ser_std_ns": 13133.027841222403, "ser_mad_ns": 6250.5, "ser_cv": 0.15124381410135582, "ser_min_ns": 66744.0, "ser_max_ns": 127280.0, "ser_p5_ns": 71951.55, "ser_p25_ns": 78518.0, "ser_p50_ns": 83882.5, "ser_p75_ns": 91111.25, "ser_p95_ns": 119618.95, "ser_p99_ns": 127036.68, "ser_ci_low_ns": 84007.9784375, "ser_ci_high_ns": 89660.776875, "deser_mean_ns": 226311.2875, "deser_median_ns": 223433.5, "deser_std_ns": 15974.429477892021, "deser_mad_ns": 8627.0, "deser_cv": 0.07058609252042729, "deser_min_ns": 205800.0, "deser_max_ns": 292262.0, "deser_p5_ns": 209256.4, "deser_p25_ns": 214784.5, "deser_p50_ns": 223433.5, "deser_p75_ns": 231459.0, "deser_p95_ns": 251678.49999999997, "deser_p99_ns": 276127.03999999986, "deser_ci_low_ns": 223046.3659375, "deser_ci_high_ns": 229840.550625, "total_mean_ns": 313144.775, "total_median_ns": 308600.5, "total_std_ns": 24437.341903648663, "total_mad_ns": 12568.5, "total_cv": 0.07803847885901549, "total_min_ns": 272544.0, "total_max_ns": 399573.0, "total_p5_ns": 284028.35, "total_p25_ns": 296737.75, "total_p50_ns": 308600.5, "total_p75_ns": 321659.25, "total_p95_ns": 360081.75, "total_p99_ns": 382496.35999999987, "total_ci_low_ns": 308143.7925, "total_ci_high_ns": 318724.5840625, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.191712132810588}, {"serializer": "encoding/json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 85922.5421686747, "avg_time_deser_ns": 528031.951807229, "avg_time_total_ns": 613954.4939759036, "median_size_bytes": 45404.0, "avg_ops_per_sec": 1628.7852109756652, "min_ops_per_sec": 1337.1397244155028, "max_ops_per_sec": 1805.9538687143774, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 85922.5421686747, "ser_median_ns": 83523.0, "ser_std_ns": 12232.463848801046, "ser_mad_ns": 5363.0, "ser_cv": 0.14236617702473786, "ser_min_ns": 67501.0, "ser_max_ns": 125204.0, "ser_p5_ns": 70275.8, "ser_p25_ns": 78854.5, "ser_p50_ns": 83523.0, "ser_p75_ns": 90865.0, "ser_p95_ns": 112442.09999999996, "ser_p99_ns": 123556.61999999998, "ser_ci_low_ns": 83488.50662650603, "ser_ci_high_ns": 88680.69246987952, "deser_mean_ns": 528031.951807229, "deser_median_ns": 514482.0, "deser_std_ns": 39024.87970010164, "deser_mad_ns": 17991.0, "deser_cv": 0.07390628458474163, "deser_min_ns": 480106.0, "deser_max_ns": 644291.0, "deser_p5_ns": 488063.9, "deser_p25_ns": 501317.5, "deser_p50_ns": 514482.0, "deser_p75_ns": 542028.0, "deser_p95_ns": 606337.8, "deser_p99_ns": 634505.1199999999, "deser_ci_low_ns": 520173.3960843374, "deser_ci_high_ns": 536848.2897590362, "total_mean_ns": 613954.4939759036, "total_median_ns": 599934.0, "total_std_ns": 43638.22331239859, "total_mad_ns": 22047.0, "total_cv": 0.07107729276448833, "total_min_ns": 553724.0, "total_max_ns": 747865.0, "total_p5_ns": 564655.8, "total_p25_ns": 582547.0, "total_p50_ns": 599934.0, "total_p75_ns": 635863.0, "total_p95_ns": 701736.1, "total_p99_ns": 728650.7599999998, "total_ci_low_ns": 604861.0746987952, "total_ci_high_ns": 623858.4030120482, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.78794803656963}, {"serializer": "ugorji/cbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 67314.12195121951, "avg_time_deser_ns": 127370.08536585367, "avg_time_total_ns": 194684.20731707316, "median_size_bytes": 33372.0, "avg_ops_per_sec": 5136.523469370817, "min_ops_per_sec": 3968.616183223072, "max_ops_per_sec": 5727.311256457543, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 67314.12195121951, "ser_median_ns": 64319.5, "ser_std_ns": 8123.09713389374, "ser_mad_ns": 3312.0, "ser_cv": 0.12067448699368463, "ser_min_ns": 57502.0, "ser_max_ns": 95926.0, "ser_p5_ns": 58832.15, "ser_p25_ns": 61578.25, "ser_p50_ns": 64319.5, "ser_p75_ns": 70759.0, "ser_p95_ns": 83263.65, "ser_p99_ns": 90442.29999999999, "ser_ci_low_ns": 65709.48323170732, "ser_ci_high_ns": 69209.01676829268, "deser_mean_ns": 127370.08536585367, "deser_median_ns": 123515.5, "deser_std_ns": 10684.293701794373, "deser_mad_ns": 4436.5, "deser_cv": 0.08388385444749571, "deser_min_ns": 114889.0, "deser_max_ns": 168710.0, "deser_p5_ns": 118281.0, "deser_p25_ns": 120039.5, "deser_p50_ns": 123515.5, "deser_p75_ns": 132268.75, "deser_p95_ns": 149199.7, "deser_p99_ns": 164717.50999999998, "deser_ci_low_ns": 125235.61158536586, "deser_ci_high_ns": 129787.68018292682, "total_mean_ns": 194684.20731707316, "total_median_ns": 188937.5, "total_std_ns": 16507.44968954276, "total_mad_ns": 8844.0, "total_cv": 0.08479090274979438, "total_min_ns": 174602.0, "total_max_ns": 251977.0, "total_p5_ns": 178193.3, "total_p25_ns": 182427.0, "total_p50_ns": 188937.5, "total_p75_ns": 201989.5, "total_p95_ns": 226577.05, "total_p99_ns": 247191.52, "total_ci_low_ns": 191324.39268292685, "total_ci_high_ns": 198405.79085365855, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.876144728636553}, {"serializer": "kelindar/binary", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.0.19", "avg_time_ser_ns": 48202.14606741573, "avg_time_deser_ns": 63762.56179775281, "avg_time_total_ns": 111964.70786516854, "median_size_bytes": 11865.0, "avg_ops_per_sec": 8931.385782779264, "min_ops_per_sec": 6573.152615457426, "max_ops_per_sec": 10492.408742274964, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 48202.14606741573, "ser_median_ns": 46378.0, "ser_std_ns": 5510.869335294985, "ser_mad_ns": 2712.0, "ser_cv": 0.1143282983207316, "ser_min_ns": 41547.0, "ser_max_ns": 64527.0, "ser_p5_ns": 43092.2, "ser_p25_ns": 44281.0, "ser_p50_ns": 46378.0, "ser_p75_ns": 50188.0, "ser_p95_ns": 60884.399999999994, "ser_p99_ns": 64498.84, "ser_ci_low_ns": 47137.098033707865, "ser_ci_high_ns": 49358.72724719101, "deser_mean_ns": 63762.56179775281, "deser_median_ns": 59880.0, "deser_std_ns": 8454.595815772003, "deser_mad_ns": 3927.0, "deser_cv": 0.13259498328484615, "deser_min_ns": 53760.0, "deser_max_ns": 87639.0, "deser_p5_ns": 55127.2, "deser_p25_ns": 57684.0, "deser_p50_ns": 59880.0, "deser_p75_ns": 68232.0, "deser_p95_ns": 80606.0, "deser_p99_ns": 87259.72, "deser_ci_low_ns": 62090.949157303374, "deser_ci_high_ns": 65458.3345505618, "total_mean_ns": 111964.70786516854, "total_median_ns": 108742.0, "total_std_ns": 12374.189216049532, "total_mad_ns": 7713.0, "total_cv": 0.11051865763764528, "total_min_ns": 95307.0, "total_max_ns": 152134.0, "total_p5_ns": 98926.4, "total_p25_ns": 102251.0, "total_p50_ns": 108742.0, "total_p75_ns": 118076.0, "total_p95_ns": 135531.99999999997, "total_p99_ns": 146148.24000000002, "total_ci_low_ns": 109500.78202247192, "total_ci_high_ns": 114557.33539325843, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.9083248212461695, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.4396068467770005}, {"serializer": "segmentio/encoding/json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "0.5.4", "avg_time_ser_ns": 65506.45238095238, "avg_time_deser_ns": 109313.47619047618, "avg_time_total_ns": 174819.92857142858, "median_size_bytes": 45404.0, "avg_ops_per_sec": 5720.171654179668, "min_ops_per_sec": 3896.4479980050187, "max_ops_per_sec": 7538.067239559777, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 65506.45238095238, "ser_median_ns": 62181.0, "ser_std_ns": 14222.870880453162, "ser_mad_ns": 6466.0, "ser_cv": 0.21712167830033202, "ser_min_ns": 42751.0, "ser_max_ns": 115269.0, "ser_p5_ns": 46182.6, "ser_p25_ns": 56780.0, "ser_p50_ns": 62181.0, "ser_p75_ns": 73283.75, "ser_p95_ns": 91680.45, "ser_p99_ns": 101639.57000000002, "ser_ci_low_ns": 62644.64880952381, "ser_ci_high_ns": 68424.3375, "deser_mean_ns": 109313.47619047618, "deser_median_ns": 104804.5, "deser_std_ns": 16973.627858005988, "deser_mad_ns": 7418.0, "deser_cv": 0.15527479730339777, "deser_min_ns": 89009.0, "deser_max_ns": 159693.0, "deser_p5_ns": 92339.0, "deser_p25_ns": 97546.5, "deser_p50_ns": 104804.5, "deser_p75_ns": 112585.5, "deser_p95_ns": 149414.19999999998, "deser_p99_ns": 158118.49, "deser_ci_low_ns": 105889.65148809523, "deser_ci_high_ns": 113002.79434523809, "total_mean_ns": 174819.92857142858, "total_median_ns": 168007.0, "total_std_ns": 27280.519748602164, "total_mad_ns": 10756.0, "total_cv": 0.15604925577724274, "total_min_ns": 132660.0, "total_max_ns": 256644.0, "total_p5_ns": 146401.7, "total_p25_ns": 159412.0, "total_p50_ns": 168007.0, "total_p75_ns": 185216.5, "total_p95_ns": 238317.74999999994, "total_p99_ns": 253813.7, "total_ci_low_ns": 169458.34910714286, "total_ci_high_ns": 180862.1205357143, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.417582653014499}, {"serializer": "sonic", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.15.2", "avg_time_ser_ns": 53918.40506329114, "avg_time_deser_ns": 98927.35443037975, "avg_time_total_ns": 152845.7594936709, "median_size_bytes": 45404.0, "avg_ops_per_sec": 6542.54330190566, "min_ops_per_sec": 4080.999681682025, "max_ops_per_sec": 9560.595051436001, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 53918.40506329114, "ser_median_ns": 53074.0, "ser_std_ns": 14336.760284290336, "ser_mad_ns": 8741.0, "ser_cv": 0.26589733630773, "ser_min_ns": 29374.0, "ser_max_ns": 90270.0, "ser_p5_ns": 30772.2, "ser_p25_ns": 46290.0, "ser_p50_ns": 53074.0, "ser_p75_ns": 65054.5, "ser_p95_ns": 77916.9, "ser_p99_ns": 86791.2, "ser_ci_low_ns": 50759.239873417726, "ser_ci_high_ns": 57105.133860759495, "deser_mean_ns": 98927.35443037975, "deser_median_ns": 91402.0, "deser_std_ns": 19009.070751130537, "deser_mad_ns": 7322.0, "deser_cv": 0.19215181544663862, "deser_min_ns": 75222.0, "deser_max_ns": 165718.0, "deser_p5_ns": 79297.3, "deser_p25_ns": 87446.5, "deser_p50_ns": 91402.0, "deser_p75_ns": 107755.5, "deser_p95_ns": 134155.69999999995, "deser_p99_ns": 162949.78, "deser_ci_low_ns": 95223.76202531645, "deser_ci_high_ns": 103347.89715189874, "total_mean_ns": 152845.7594936709, "total_median_ns": 150499.0, "total_std_ns": 27768.715149087446, "total_mad_ns": 15416.0, "total_cv": 0.18167802130118832, "total_min_ns": 104596.0, "total_max_ns": 245038.0, "total_p5_ns": 110479.9, "total_p25_ns": 135402.0, "total_p50_ns": 150499.0, "total_p75_ns": 165329.0, "total_p95_ns": 195493.39999999994, "total_p99_ns": 243257.26, "total_ci_low_ns": 146922.0344936709, "total_ci_high_ns": 158946.92879746834, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.990506329113924, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.3518087760098516}, {"serializer": "ugorji/cbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 74539.4367816092, "avg_time_deser_ns": 153756.83908045976, "avg_time_total_ns": 228296.27586206896, "median_size_bytes": 33372.0, "avg_ops_per_sec": 4380.272942359234, "min_ops_per_sec": 3698.635203609868, "max_ops_per_sec": 4930.869213624977, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 74539.4367816092, "ser_median_ns": 73411.0, "ser_std_ns": 5020.427600849909, "ser_mad_ns": 2671.0, "ser_cv": 0.0673526366393015, "ser_min_ns": 63571.0, "ser_max_ns": 90380.0, "ser_p5_ns": 68392.6, "ser_p25_ns": 71213.0, "ser_p50_ns": 73411.0, "ser_p75_ns": 77196.0, "ser_p95_ns": 84276.5, "ser_p99_ns": 87443.1, "ser_ci_low_ns": 73507.7275862069, "ser_ci_high_ns": 75568.3143678161, "deser_mean_ns": 153756.83908045976, "deser_median_ns": 150885.0, "deser_std_ns": 10602.715532894306, "deser_mad_ns": 6675.0, "deser_cv": 0.0689576840698838, "deser_min_ns": 138785.0, "deser_max_ns": 184215.0, "deser_p5_ns": 140479.1, "deser_p25_ns": 145328.5, "deser_p50_ns": 150885.0, "deser_p75_ns": 160750.5, "deser_p95_ns": 173888.4, "deser_p99_ns": 179633.78, "deser_ci_low_ns": 151636.87442528736, "deser_ci_high_ns": 156012.97701149425, "total_mean_ns": 228296.27586206896, "total_median_ns": 224848.0, "total_std_ns": 15012.11943474389, "total_mad_ns": 9432.0, "total_cv": 0.06575718056747386, "total_min_ns": 202804.0, "total_max_ns": 270370.0, "total_p5_ns": 210194.7, "total_p25_ns": 217485.5, "total_p50_ns": 224848.0, "total_p75_ns": 237717.0, "total_p95_ns": 254717.5, "total_p99_ns": 269422.28, "total_ci_low_ns": 225224.76637931037, "total_ci_high_ns": 231578.16666666666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.06934968598515}, {"serializer": "ugorji/json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 98450.42352941177, "avg_time_deser_ns": 214118.32941176472, "avg_time_total_ns": 312568.75294117647, "median_size_bytes": 45404.0, "avg_ops_per_sec": 3199.2961247415346, "min_ops_per_sec": 2698.8805043667885, "max_ops_per_sec": 3499.7340202144637, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 98450.42352941177, "ser_median_ns": 96987.0, "ser_std_ns": 7016.149042738186, "ser_mad_ns": 4093.0, "ser_cv": 0.0712658086294787, "ser_min_ns": 88550.0, "ser_max_ns": 121783.0, "ser_p5_ns": 89198.4, "ser_p25_ns": 93510.0, "ser_p50_ns": 96987.0, "ser_p75_ns": 102107.0, "ser_p95_ns": 111381.59999999999, "ser_p99_ns": 119551.95999999999, "ser_ci_low_ns": 97010.26235294118, "ser_ci_high_ns": 99997.66794117648, "deser_mean_ns": 214118.32941176472, "deser_median_ns": 211036.0, "deser_std_ns": 14021.277202530306, "deser_mad_ns": 8167.0, "deser_cv": 0.06548377825032622, "deser_min_ns": 196565.0, "deser_max_ns": 260998.0, "deser_p5_ns": 198085.0, "deser_p25_ns": 203463.0, "deser_p50_ns": 211036.0, "deser_p75_ns": 219491.0, "deser_p95_ns": 242381.19999999998, "deser_p99_ns": 252230.91999999995, "deser_ci_low_ns": 211215.80705882353, "deser_ci_high_ns": 217188.52852941176, "total_mean_ns": 312568.75294117647, "total_median_ns": 307920.0, "total_std_ns": 18478.922972831897, "total_mad_ns": 10219.0, "total_cv": 0.059119546656378405, "total_min_ns": 285736.0, "total_max_ns": 370524.0, "total_p5_ns": 290789.6, "total_p25_ns": 299349.0, "total_p50_ns": 307920.0, "total_p75_ns": 320238.0, "total_p95_ns": 350196.8, "total_p99_ns": 362853.95999999996, "total_ci_low_ns": 308646.8332352941, "total_ci_high_ns": 316490.32499999995, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.12098401843046}, {"serializer": "linkedin/goavro", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "2.15.0", "avg_time_ser_ns": 71288.97619047618, "avg_time_deser_ns": 169753.4642857143, "avg_time_total_ns": 241042.44047619047, "median_size_bytes": 11967.0, "avg_ops_per_sec": 4148.647010146652, "min_ops_per_sec": 2829.286510527775, "max_ops_per_sec": 5062.599037093663, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 71288.97619047618, "ser_median_ns": 67923.5, "ser_std_ns": 12400.136984257148, "ser_mad_ns": 6694.5, "ser_cv": 0.17394185815104662, "ser_min_ns": 54567.0, "ser_max_ns": 107667.0, "ser_p5_ns": 56941.1, "ser_p25_ns": 62256.0, "ser_p50_ns": 67923.5, "ser_p75_ns": 76246.75, "ser_p95_ns": 95383.95, "ser_p99_ns": 101391.37000000001, "ser_ci_low_ns": 68699.46101190476, "ser_ci_high_ns": 74129.96369047619, "deser_mean_ns": 169753.4642857143, "deser_median_ns": 159892.0, "deser_std_ns": 29153.68682772921, "deser_mad_ns": 9974.0, "deser_cv": 0.17174133647523243, "deser_min_ns": 140992.0, "deser_max_ns": 259643.0, "deser_p5_ns": 145289.55, "deser_p25_ns": 151720.75, "deser_p50_ns": 159892.0, "deser_p75_ns": 173037.25, "deser_p95_ns": 253168.94999999992, "deser_p99_ns": 257616.14, "deser_ci_low_ns": 164166.35922619049, "deser_ci_high_ns": 176465.78749999998, "total_mean_ns": 241042.44047619047, "total_median_ns": 230207.5, "total_std_ns": 34913.17223211988, "total_mad_ns": 16053.0, "total_cv": 0.14484242759551927, "total_min_ns": 197527.0, "total_max_ns": 353446.0, "total_p5_ns": 204135.65, "total_p25_ns": 217370.75, "total_p50_ns": 230207.5, "total_p75_ns": 251346.75, "total_p95_ns": 324067.1, "total_p99_ns": 348048.51, "total_ci_low_ns": 234049.2818452381, "total_ci_high_ns": 248736.04136904763, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.08786044435891}, {"serializer": "vmihailenco/msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "5.4.1", "avg_time_ser_ns": 168091.3023255814, "avg_time_deser_ns": 220533.90697674418, "avg_time_total_ns": 388625.20930232556, "median_size_bytes": 40242.0, "avg_ops_per_sec": 2573.1732683920254, "min_ops_per_sec": 2065.59076928797, "max_ops_per_sec": 2817.1474128726736, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 168091.3023255814, "ser_median_ns": 163689.5, "ser_std_ns": 12101.577143758885, "ser_mad_ns": 7150.5, "ser_cv": 0.07199407093841746, "ser_min_ns": 153703.0, "ser_max_ns": 199887.0, "ser_p5_ns": 154835.0, "ser_p25_ns": 160143.25, "ser_p50_ns": 163689.5, "ser_p75_ns": 174298.5, "ser_p95_ns": 195612.0, "ser_p99_ns": 198423.30000000002, "ser_ci_low_ns": 165630.1566860465, "ser_ci_high_ns": 170880.52558139537, "deser_mean_ns": 220533.90697674418, "deser_median_ns": 213008.5, "deser_std_ns": 19022.034530034718, "deser_mad_ns": 9559.5, "deser_cv": 0.08625446667500719, "deser_min_ns": 200257.0, "deser_max_ns": 284236.0, "deser_p5_ns": 202042.0, "deser_p25_ns": 206271.5, "deser_p50_ns": 213008.5, "deser_p75_ns": 229414.5, "deser_p95_ns": 256741.25, "deser_p99_ns": 275641.6500000001, "deser_ci_low_ns": 216546.1218023256, "deser_ci_high_ns": 224699.86511627905, "total_mean_ns": 388625.20930232556, "total_median_ns": 380641.5, "total_std_ns": 28613.914347894075, "total_mad_ns": 15538.0, "total_cv": 0.07362855950406007, "total_min_ns": 354969.0, "total_max_ns": 484123.0, "total_p5_ns": 357999.0, "total_p25_ns": 366872.0, "total_p50_ns": 380641.5, "total_p75_ns": 404321.5, "total_p95_ns": 447870.25, "total_p99_ns": 472800.1500000001, "total_ci_low_ns": 383123.2558139535, "total_ci_high_ns": 394765.77180232556, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.022186339786295}, {"serializer": "pelletier/go-toml", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "2.4.3", "avg_time_ser_ns": 352332.987654321, "avg_time_deser_ns": 742812.5061728396, "avg_time_total_ns": 1095145.4938271604, "median_size_bytes": 57002.0, "avg_ops_per_sec": 913.1206818057942, "min_ops_per_sec": 729.4504684895634, "max_ops_per_sec": 1003.5153141454515, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 352332.987654321, "ser_median_ns": 344770.0, "ser_std_ns": 30679.01590806566, "ser_mad_ns": 15412.0, "ser_cv": 0.08707392433593328, "ser_min_ns": 303993.0, "ser_max_ns": 454615.0, "ser_p5_ns": 312620.0, "ser_p25_ns": 332118.0, "ser_p50_ns": 344770.0, "ser_p75_ns": 368073.0, "ser_p95_ns": 409931.0, "ser_p99_ns": 454187.8, "ser_ci_low_ns": 345922.3935185185, "ser_ci_high_ns": 359277.8450617284, "deser_mean_ns": 742812.5061728396, "deser_median_ns": 734710.0, "deser_std_ns": 52616.16002454081, "deser_mad_ns": 35729.0, "deser_cv": 0.07083370243136153, "deser_min_ns": 672452.0, "deser_max_ns": 916814.0, "deser_p5_ns": 683874.0, "deser_p25_ns": 698981.0, "deser_p50_ns": 734710.0, "deser_p75_ns": 768438.0, "deser_p95_ns": 843553.0, "deser_p99_ns": 888551.6000000001, "deser_ci_low_ns": 731863.5478395062, "deser_ci_high_ns": 754096.4345679012, "total_mean_ns": 1095145.4938271604, "total_median_ns": 1085865.0, "total_std_ns": 72741.9673536404, "total_mad_ns": 50222.0, "total_cv": 0.06642219482585095, "total_min_ns": 996497.0, "total_max_ns": 1370895.0, "total_p5_ns": 1010579.0, "total_p25_ns": 1036957.0, "total_p50_ns": 1085865.0, "total_p75_ns": 1140016.0, "total_p95_ns": 1238251.0, "total_p99_ns": 1307312.6000000003, "total_ci_low_ns": 1080724.4703703704, "total_ci_high_ns": 1111548.3351851853, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.549853859875174}, {"serializer": "sonic", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.15.2", "avg_time_ser_ns": 58197.788235294116, "avg_time_deser_ns": 120792.97647058824, "avg_time_total_ns": 178990.76470588235, "median_size_bytes": 45405.0, "avg_ops_per_sec": 5586.8804272846155, "min_ops_per_sec": 3081.141871177458, "max_ops_per_sec": 9239.155541183536, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 58197.788235294116, "ser_median_ns": 53355.0, "ser_std_ns": 21466.130265459335, "ser_mad_ns": 10432.0, "ser_cv": 0.3688478706213302, "ser_min_ns": 28593.0, "ser_max_ns": 125256.0, "ser_p5_ns": 31033.6, "ser_p25_ns": 48271.0, "ser_p50_ns": 53355.0, "ser_p75_ns": 70030.0, "ser_p95_ns": 97591.99999999999, "ser_p99_ns": 116954.27999999997, "ser_ci_low_ns": 53789.95941176471, "ser_ci_high_ns": 62573.15794117646, "deser_mean_ns": 120792.97647058824, "deser_median_ns": 109423.0, "deser_std_ns": 33071.88975621228, "deser_mad_ns": 10572.0, "deser_cv": 0.2737898404570312, "deser_min_ns": 79458.0, "deser_max_ns": 219115.0, "deser_p5_ns": 83866.6, "deser_p25_ns": 101924.0, "deser_p50_ns": 109423.0, "deser_p75_ns": 126141.0, "deser_p95_ns": 197559.2, "deser_p99_ns": 217567.72, "deser_ci_low_ns": 114120.74735294118, "deser_ci_high_ns": 128231.83558823529, "total_mean_ns": 178990.76470588235, "total_median_ns": 168872.0, "total_std_ns": 51047.95113831865, "total_mad_ns": 20629.0, "total_cv": 0.28519879906765383, "total_min_ns": 108235.0, "total_max_ns": 324555.0, "total_p5_ns": 118434.2, "total_p25_ns": 149615.0, "total_p50_ns": 168872.0, "total_p75_ns": 189501.0, "total_p95_ns": 296697.6, "total_p99_ns": 316718.63999999996, "total_ci_low_ns": 168240.3205882353, "total_ci_high_ns": 189551.21352941176, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.9974789915966387, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.578832400128603}, {"serializer": "shamaton/msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "3.1.2", "avg_time_ser_ns": 105966.45238095238, "avg_time_deser_ns": 206679.83333333334, "avg_time_total_ns": 312646.28571428574, "median_size_bytes": 31959.0, "avg_ops_per_sec": 3198.502735176767, "min_ops_per_sec": 2474.935094827138, "max_ops_per_sec": 3574.543530791118, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 105966.45238095238, "ser_median_ns": 103925.5, "ser_std_ns": 9117.04780663941, "ser_mad_ns": 4732.5, "ser_cv": 0.08603711459418653, "ser_min_ns": 91959.0, "ser_max_ns": 133976.0, "ser_p5_ns": 96246.0, "ser_p25_ns": 99213.25, "ser_p50_ns": 103925.5, "ser_p75_ns": 110013.5, "ser_p95_ns": 122066.15, "ser_p99_ns": 132710.25, "ser_ci_low_ns": 104109.40982142858, "ser_ci_high_ns": 107976.30744047619, "deser_mean_ns": 206679.83333333334, "deser_median_ns": 199615.0, "deser_std_ns": 20396.123678986507, "deser_mad_ns": 8490.5, "deser_cv": 0.09868463386116452, "deser_min_ns": 184155.0, "deser_max_ns": 282980.0, "deser_p5_ns": 187246.25, "deser_p25_ns": 192180.0, "deser_p50_ns": 199615.0, "deser_p75_ns": 214191.5, "deser_p95_ns": 240715.44999999998, "deser_p99_ns": 272268.85000000003, "deser_ci_low_ns": 202743.96339285717, "deser_ci_high_ns": 211154.5431547619, "total_mean_ns": 312646.28571428574, "total_median_ns": 303754.5, "total_std_ns": 27284.870185689248, "total_mad_ns": 12402.0, "total_cv": 0.08727073191787009, "total_min_ns": 279756.0, "total_max_ns": 404051.0, "total_p5_ns": 285504.95, "total_p25_ns": 292422.25, "total_p50_ns": 303754.5, "total_p75_ns": 328435.75, "total_p95_ns": 364504.79999999993, "total_p99_ns": 402586.05, "total_ci_low_ns": 307281.9431547619, "total_ci_high_ns": 318871.0967261905, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.02936075587641}, {"serializer": "goccy/go-json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "0.10.6", "avg_time_ser_ns": 60567.39024390244, "avg_time_deser_ns": 130391.78048780488, "avg_time_total_ns": 190959.17073170733, "median_size_bytes": 45405.0, "avg_ops_per_sec": 5236.721526220776, "min_ops_per_sec": 3649.42193156604, "max_ops_per_sec": 6816.586117340714, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 60567.39024390244, "ser_median_ns": 58963.5, "ser_std_ns": 14281.143019541363, "ser_mad_ns": 5821.0, "ser_cv": 0.2357893077781918, "ser_min_ns": 40413.0, "ser_max_ns": 104772.0, "ser_p5_ns": 41181.05, "ser_p25_ns": 53056.75, "ser_p50_ns": 58963.5, "ser_p75_ns": 64421.75, "ser_p95_ns": 90604.40000000001, "ser_p99_ns": 100811.09999999999, "ser_ci_low_ns": 57571.32408536585, "ser_ci_high_ns": 63585.04512195122, "deser_mean_ns": 130391.78048780488, "deser_median_ns": 125661.5, "deser_std_ns": 14884.506004172812, "deser_mad_ns": 6862.5, "deser_cv": 0.11415218005681663, "deser_min_ns": 106288.0, "deser_max_ns": 185969.0, "deser_p5_ns": 114226.85, "deser_p25_ns": 119616.0, "deser_p50_ns": 125661.5, "deser_p75_ns": 140160.5, "deser_p95_ns": 157128.15, "deser_p99_ns": 165797.56999999995, "deser_ci_low_ns": 127313.57286585365, "deser_ci_high_ns": 133540.6429878049, "total_mean_ns": 190959.17073170733, "total_median_ns": 186221.0, "total_std_ns": 24357.703180254997, "total_mad_ns": 11959.0, "total_cv": 0.12755450857333758, "total_min_ns": 146701.0, "total_max_ns": 274016.0, "total_p5_ns": 158419.55, "total_p25_ns": 176137.0, "total_p50_ns": 186221.0, "total_p75_ns": 202694.25, "total_p95_ns": 234134.4, "total_p99_ns": 264248.20999999996, "total_ci_low_ns": 185861.48079268294, "total_ci_high_ns": 195998.1512195122, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.730381478239112}, {"serializer": "hamba/avro", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "2.31.0", "avg_time_ser_ns": 41632.92857142857, "avg_time_deser_ns": 41580.130952380954, "avg_time_total_ns": 83213.05952380953, "median_size_bytes": 12170.0, "avg_ops_per_sec": 12017.344461585057, "min_ops_per_sec": 8345.782458834428, "max_ops_per_sec": 14331.164550431367, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 41632.92857142857, "ser_median_ns": 39507.0, "ser_std_ns": 5917.899690077928, "ser_mad_ns": 2605.5, "ser_cv": 0.14214468914731127, "ser_min_ns": 33205.0, "ser_max_ns": 60543.0, "ser_p5_ns": 35759.5, "ser_p25_ns": 37466.0, "ser_p50_ns": 39507.0, "ser_p75_ns": 44766.0, "ser_p95_ns": 53421.69999999998, "ser_p99_ns": 59497.200000000004, "ser_ci_low_ns": 40406.42083333334, "ser_ci_high_ns": 42910.478571428575, "deser_mean_ns": 41580.130952380954, "deser_median_ns": 39284.5, "deser_std_ns": 6212.541861447311, "deser_mad_ns": 2457.0, "deser_cv": 0.1494113106224253, "deser_min_ns": 35375.0, "deser_max_ns": 60843.0, "deser_p5_ns": 35985.4, "deser_p25_ns": 37531.5, "deser_p50_ns": 39284.5, "deser_p75_ns": 43335.5, "deser_p95_ns": 54240.6, "deser_p99_ns": 60607.28, "deser_ci_low_ns": 40313.34285714285, "deser_ci_high_ns": 43017.443750000006, "total_mean_ns": 83213.05952380953, "total_median_ns": 78931.0, "total_std_ns": 10638.2028300952, "total_mad_ns": 5238.0, "total_cv": 0.12784294786146302, "total_min_ns": 69778.0, "total_max_ns": 119821.0, "total_p5_ns": 72386.5, "total_p25_ns": 75322.0, "total_p50_ns": 78931.0, "total_p75_ns": 88491.0, "total_p95_ns": 103056.09999999999, "total_p99_ns": 112432.34000000001, "total_ci_low_ns": 80977.70029761906, "total_ci_high_ns": 85518.04761904762, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "encoding/json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 87488.82352941176, "avg_time_deser_ns": 541134.1764705882, "avg_time_total_ns": 628623.0, "median_size_bytes": 45405.0, "avg_ops_per_sec": 1590.7785747578437, "min_ops_per_sec": 1261.1533247154523, "max_ops_per_sec": 1798.6064397304967, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 87488.82352941176, "ser_median_ns": 84068.0, "ser_std_ns": 15699.802870446127, "ser_mad_ns": 9026.0, "ser_cv": 0.1794492397668167, "ser_min_ns": 65745.0, "ser_max_ns": 135770.0, "ser_p5_ns": 68461.6, "ser_p25_ns": 77007.0, "ser_p50_ns": 84068.0, "ser_p75_ns": 94199.0, "ser_p95_ns": 121862.99999999999, "ser_p99_ns": 126198.19999999997, "ser_ci_low_ns": 84360.77029411765, "ser_ci_high_ns": 91033.72029411764, "deser_mean_ns": 541134.1764705882, "deser_median_ns": 523918.0, "deser_std_ns": 43543.17609436815, "deser_mad_ns": 18523.0, "deser_cv": 0.08046650532843368, "deser_min_ns": 490188.0, "deser_max_ns": 689833.0, "deser_p5_ns": 499018.0, "deser_p25_ns": 510736.0, "deser_p50_ns": 523918.0, "deser_p75_ns": 558001.0, "deser_p95_ns": 623796.0, "deser_p99_ns": 684186.52, "deser_ci_low_ns": 531994.6223529412, "deser_ci_high_ns": 551132.8794117647, "total_mean_ns": 628623.0, "total_median_ns": 608048.0, "total_std_ns": 52195.420067966006, "total_mad_ns": 23290.0, "total_cv": 0.08303135594460592, "total_min_ns": 555986.0, "total_max_ns": 792925.0, "total_p5_ns": 576523.2, "total_p25_ns": 590556.0, "total_p50_ns": 608048.0, "total_p75_ns": 661489.0, "total_p95_ns": 725322.6, "total_p99_ns": 776296.36, "total_ci_low_ns": 618083.7744117647, "total_ci_high_ns": 640202.5214705882, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.375287388240961}, {"serializer": "fxamacker/cbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "2.9.2", "avg_time_ser_ns": 84463.38636363637, "avg_time_deser_ns": 298153.75, "avg_time_total_ns": 382617.13636363635, "median_size_bytes": 33372.0, "avg_ops_per_sec": 2613.578705606138, "min_ops_per_sec": 2108.570283918989, "max_ops_per_sec": 2926.5694460296695, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 84463.38636363637, "ser_median_ns": 83084.0, "ser_std_ns": 11129.211365551571, "ser_mad_ns": 6782.0, "ser_cv": 0.1317637362731052, "ser_min_ns": 65672.0, "ser_max_ns": 122183.0, "ser_p5_ns": 69858.1, "ser_p25_ns": 76694.75, "ser_p50_ns": 83084.0, "ser_p75_ns": 91086.0, "ser_p95_ns": 107558.49999999997, "ser_p99_ns": 113523.88999999996, "ser_ci_low_ns": 82210.22130681819, "ser_ci_high_ns": 86757.80710227274, "deser_mean_ns": 298153.75, "deser_median_ns": 291592.5, "deser_std_ns": 21863.872405876773, "deser_mad_ns": 11134.5, "deser_cv": 0.07333086505159427, "deser_min_ns": 271411.0, "deser_max_ns": 363274.0, "deser_p5_ns": 273860.5, "deser_p25_ns": 282245.5, "deser_p50_ns": 291592.5, "deser_p75_ns": 305875.5, "deser_p95_ns": 349376.2, "deser_p99_ns": 360172.45, "deser_ci_low_ns": 293685.9394886364, "deser_ci_high_ns": 302916.04715909093, "total_mean_ns": 382617.13636363635, "total_median_ns": 375929.5, "total_std_ns": 27648.38538370765, "total_mad_ns": 12547.0, "total_cv": 0.07226123128325031, "total_min_ns": 341697.0, "total_max_ns": 474255.0, "total_p5_ns": 350594.0, "total_p25_ns": 364947.5, "total_p50_ns": 375929.5, "total_p75_ns": 390395.75, "total_p95_ns": 435287.05, "total_p99_ns": 462115.01999999996, "total_ci_low_ns": 376915.434375, "total_ci_high_ns": 388264.9426136364, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.107215980178243}, {"serializer": "ugorji/msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 70933.78571428571, "avg_time_deser_ns": 143660.79761904763, "avg_time_total_ns": 214594.58333333334, "median_size_bytes": 33310.0, "avg_ops_per_sec": 4659.949866706017, "min_ops_per_sec": 3897.6477695710637, "max_ops_per_sec": 5280.054067753654, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 70933.78571428571, "ser_median_ns": 69288.0, "ser_std_ns": 5846.565718480923, "ser_mad_ns": 2932.5, "ser_cv": 0.08242286323234338, "ser_min_ns": 61114.0, "ser_max_ns": 87885.0, "ser_p5_ns": 64358.35, "ser_p25_ns": 66831.75, "ser_p50_ns": 69288.0, "ser_p75_ns": 73775.25, "ser_p95_ns": 81873.05, "ser_p99_ns": 87054.17, "ser_ci_low_ns": 69759.56160714285, "ser_ci_high_ns": 72230.60833333334, "deser_mean_ns": 143660.79761904763, "deser_median_ns": 140830.0, "deser_std_ns": 12390.047771410147, "deser_mad_ns": 7173.5, "deser_cv": 0.08624515509280022, "deser_min_ns": 128278.0, "deser_max_ns": 181337.0, "deser_p5_ns": 129956.45, "deser_p25_ns": 133878.75, "deser_p50_ns": 140830.0, "deser_p75_ns": 150668.25, "deser_p95_ns": 167601.69999999998, "deser_p99_ns": 179929.32, "deser_ci_low_ns": 141065.29374999998, "deser_ci_high_ns": 146293.34732142856, "total_mean_ns": 214594.58333333334, "total_median_ns": 210629.0, "total_std_ns": 15887.337100647117, "total_mad_ns": 10378.5, "total_cv": 0.07403419440447409, "total_min_ns": 189392.0, "total_max_ns": 256565.0, "total_p5_ns": 195136.75, "total_p25_ns": 202172.25, "total_p50_ns": 210629.0, "total_p75_ns": 223302.5, "total_p95_ns": 247624.55, "total_p99_ns": 253855.88, "total_ci_low_ns": 211145.42410714287, "total_ci_high_ns": 218220.27261904764, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.67362336871884}, {"serializer": "mongo-bson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.17.9", "avg_time_ser_ns": 177481.27160493826, "avg_time_deser_ns": 360008.6296296296, "avg_time_total_ns": 537489.9012345679, "median_size_bytes": 53446.0, "avg_ops_per_sec": 1860.5000721001202, "min_ops_per_sec": 1396.767043002267, "max_ops_per_sec": 2151.282487054658, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 177481.27160493826, "ser_median_ns": 172303.0, "ser_std_ns": 18833.081984909124, "ser_mad_ns": 11144.0, "ser_cv": 0.10611306654839806, "ser_min_ns": 151110.0, "ser_max_ns": 229117.0, "ser_p5_ns": 155803.0, "ser_p25_ns": 161559.0, "ser_p50_ns": 172303.0, "ser_p75_ns": 188680.0, "ser_p95_ns": 216795.0, "ser_p99_ns": 225573.80000000002, "ser_ci_low_ns": 173472.21790123457, "ser_ci_high_ns": 181748.1388888889, "deser_mean_ns": 360008.6296296296, "deser_median_ns": 342067.0, "deser_std_ns": 37716.839768677746, "deser_mad_ns": 16702.0, "deser_cv": 0.10476648797969135, "deser_min_ns": 313729.0, "deser_max_ns": 498217.0, "deser_p5_ns": 323334.0, "deser_p25_ns": 331043.0, "deser_p50_ns": 342067.0, "deser_p75_ns": 390606.0, "deser_p95_ns": 423129.0, "deser_p99_ns": 471257.8000000001, "deser_ci_low_ns": 352446.65555555554, "deser_ci_high_ns": 368635.0759259259, "total_mean_ns": 537489.9012345679, "total_median_ns": 511899.0, "total_std_ns": 52149.400856962144, "total_mad_ns": 26246.0, "total_cv": 0.09702396405435613, "total_min_ns": 464839.0, "total_max_ns": 715939.0, "total_p5_ns": 480068.0, "total_p25_ns": 496790.0, "total_p50_ns": 511899.0, "total_p75_ns": 576372.0, "total_p95_ns": 630357.0, "total_p99_ns": 668774.2000000002, "total_ci_low_ns": 526466.2148148149, "total_ci_high_ns": 548887.162037037, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.118131105899424}, {"serializer": "protobuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.36.11", "avg_time_ser_ns": 63909.26666666667, "avg_time_deser_ns": 118040.95555555556, "avg_time_total_ns": 181950.22222222222, "median_size_bytes": 16265.0, "avg_ops_per_sec": 5496.008676365697, "min_ops_per_sec": 4059.5289322627004, "max_ops_per_sec": 6787.023211619384, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 63909.26666666667, "ser_median_ns": 61503.5, "ser_std_ns": 7935.718208117756, "ser_mad_ns": 3831.0, "ser_cv": 0.12417163616519497, "ser_min_ns": 52535.0, "ser_max_ns": 86460.0, "ser_p5_ns": 55215.45, "ser_p25_ns": 58056.75, "ser_p50_ns": 61503.5, "ser_p75_ns": 66781.25, "ser_p95_ns": 82939.7, "ser_p99_ns": 86234.83, "ser_ci_low_ns": 62357.134999999995, "ser_ci_high_ns": 65577.59916666667, "deser_mean_ns": 118040.95555555556, "deser_median_ns": 111509.5, "deser_std_ns": 19059.871129120384, "deser_mad_ns": 9554.5, "deser_cv": 0.16146828903083493, "deser_min_ns": 93884.0, "deser_max_ns": 168243.0, "deser_p5_ns": 99729.5, "deser_p25_ns": 103583.75, "deser_p50_ns": 111509.5, "deser_p75_ns": 126639.75, "deser_p95_ns": 160380.95, "deser_p99_ns": 167787.32, "deser_ci_low_ns": 114077.7911111111, "deser_ci_high_ns": 121859.59361111111, "total_mean_ns": 181950.22222222222, "total_median_ns": 176194.0, "total_std_ns": 24289.797631131023, "total_mad_ns": 13184.0, "total_cv": 0.13349693852786307, "total_min_ns": 147340.0, "total_max_ns": 246334.0, "total_p5_ns": 156772.0, "total_p25_ns": 163400.75, "total_p50_ns": 176194.0, "total_p75_ns": 195277.75, "total_p95_ns": 234152.19999999998, "total_p99_ns": 239871.71, "total_ci_low_ns": 176956.58916666667, "total_ci_high_ns": 186964.90694444443, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.181904328790521}, {"serializer": "encoding/gob", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 73397.08888888889, "avg_time_deser_ns": 104603.06666666667, "avg_time_total_ns": 178000.15555555557, "median_size_bytes": 16643.0, "avg_ops_per_sec": 5617.972618500832, "min_ops_per_sec": 4138.90153553247, "max_ops_per_sec": 6878.525244187646, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 73397.08888888889, "ser_median_ns": 68364.0, "ser_std_ns": 11468.375988440328, "ser_mad_ns": 5214.5, "ser_cv": 0.15625110153621435, "ser_min_ns": 59266.0, "ser_max_ns": 104290.0, "ser_p5_ns": 60741.3, "ser_p25_ns": 64432.0, "ser_p50_ns": 68364.0, "ser_p75_ns": 80522.75, "ser_p95_ns": 95363.95, "ser_p99_ns": 103717.73, "ser_ci_low_ns": 71103.36277777777, "ser_ci_high_ns": 75802.55861111112, "deser_mean_ns": 104603.06666666667, "deser_median_ns": 100300.0, "deser_std_ns": 12490.205073657618, "deser_mad_ns": 7775.0, "deser_cv": 0.11940572558412199, "deser_min_ns": 85731.0, "deser_max_ns": 145990.0, "deser_p5_ns": 91154.6, "deser_p25_ns": 95567.5, "deser_p50_ns": 100300.0, "deser_p75_ns": 112831.0, "deser_p95_ns": 127331.59999999999, "deser_p99_ns": 142285.82, "deser_ci_low_ns": 102008.905, "deser_ci_high_ns": 107372.62194444444, "total_mean_ns": 178000.15555555557, "total_median_ns": 169537.5, "total_std_ns": 22415.54520783054, "total_mad_ns": 13637.0, "total_cv": 0.12592991920635951, "total_min_ns": 145380.0, "total_max_ns": 241610.0, "total_p5_ns": 152261.8, "total_p25_ns": 161310.75, "total_p50_ns": 169537.5, "total_p75_ns": 194314.5, "total_p95_ns": 221955.6, "total_p99_ns": 237132.41, "total_ci_low_ns": 173628.88972222223, "total_ci_high_ns": 182813.80527777778, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.320672773392812}, {"serializer": "kelindar/binary", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.0.19", "avg_time_ser_ns": 51737.75862068965, "avg_time_deser_ns": 84975.6091954023, "avg_time_total_ns": 136713.36781609195, "median_size_bytes": 11865.0, "avg_ops_per_sec": 7314.573665870107, "min_ops_per_sec": 5546.127139418544, "max_ops_per_sec": 8265.350822815675, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 51737.75862068965, "ser_median_ns": 49716.0, "ser_std_ns": 5440.855842744196, "ser_mad_ns": 2181.0, "ser_cv": 0.10516218691716626, "ser_min_ns": 46362.0, "ser_max_ns": 69597.0, "ser_p5_ns": 46730.7, "ser_p25_ns": 47903.0, "ser_p50_ns": 49716.0, "ser_p75_ns": 52918.0, "ser_p95_ns": 65349.9, "ser_p99_ns": 68133.28, "ser_ci_low_ns": 50669.753735632185, "ser_ci_high_ns": 52879.31034482759, "deser_mean_ns": 84975.6091954023, "deser_median_ns": 82528.0, "deser_std_ns": 8828.698621944446, "deser_mad_ns": 5327.0, "deser_cv": 0.10389685588064172, "deser_min_ns": 74310.0, "deser_max_ns": 110709.0, "deser_p5_ns": 75848.6, "deser_p25_ns": 77802.0, "deser_p50_ns": 82528.0, "deser_p75_ns": 89705.5, "deser_p95_ns": 102350.70000000001, "deser_p99_ns": 107702.44, "deser_ci_low_ns": 83227.52356321839, "deser_ci_high_ns": 86925.24913793104, "total_mean_ns": 136713.36781609195, "total_median_ns": 134619.0, "total_std_ns": 11813.883489170543, "total_mad_ns": 8632.0, "total_cv": 0.08641352106154451, "total_min_ns": 120987.0, "total_max_ns": 180306.0, "total_p5_ns": 123151.4, "total_p25_ns": 126370.5, "total_p50_ns": 134619.0, "total_p75_ns": 144405.0, "total_p95_ns": 157821.7, "total_p99_ns": 168094.0, "total_ci_low_ns": 134353.50316091953, "total_ci_high_ns": 139250.5790229885, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.733673074444652}, {"serializer": "segmentio/encoding/json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "0.5.4", "avg_time_ser_ns": 61155.256097560974, "avg_time_deser_ns": 191930.56097560975, "avg_time_total_ns": 253085.81707317074, "median_size_bytes": 45405.0, "avg_ops_per_sec": 3951.2289213381155, "min_ops_per_sec": 2808.128971747414, "max_ops_per_sec": 4763.0615054132195, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 61155.256097560974, "ser_median_ns": 57705.0, "ser_std_ns": 16073.622389224594, "ser_mad_ns": 8063.5, "ser_cv": 0.26283304845592254, "ser_min_ns": 41077.0, "ser_max_ns": 103266.0, "ser_p5_ns": 41913.15, "ser_p25_ns": 49952.5, "ser_p50_ns": 57705.0, "ser_p75_ns": 65037.5, "ser_p95_ns": 95296.95, "ser_p99_ns": 103048.11, "ser_ci_low_ns": 57845.531402439025, "ser_ci_high_ns": 64623.77896341463, "deser_mean_ns": 191930.56097560975, "deser_median_ns": 190551.5, "deser_std_ns": 16160.975344219883, "deser_mad_ns": 10011.5, "deser_cv": 0.08420219928536339, "deser_min_ns": 168450.0, "deser_max_ns": 252843.0, "deser_p5_ns": 172111.15, "deser_p25_ns": 180139.25, "deser_p50_ns": 190551.5, "deser_p75_ns": 198412.25, "deser_p95_ns": 220991.65, "deser_p99_ns": 251117.69999999998, "deser_ci_low_ns": 188779.40121951222, "deser_ci_high_ns": 195376.76067073172, "total_mean_ns": 253085.81707317074, "total_median_ns": 247372.5, "total_std_ns": 27414.875694797276, "total_mad_ns": 15158.0, "total_cv": 0.10832244972017235, "total_min_ns": 209949.0, "total_max_ns": 356109.0, "total_p5_ns": 221683.5, "total_p25_ns": 235298.5, "total_p50_ns": 247372.5, "total_p75_ns": 263918.75, "total_p95_ns": 303457.85000000003, "total_p99_ns": 345730.47, "total_ci_low_ns": 247157.6405487805, "total_ci_high_ns": 259361.76524390242, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.168915653223987}, {"serializer": "goccy/go-yaml", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.19.2", "avg_time_ser_ns": 7006804.920454546, "avg_time_deser_ns": 8363224.181818182, "avg_time_total_ns": 15370029.102272727, "median_size_bytes": 49403.0, "avg_ops_per_sec": 65.06168552746153, "min_ops_per_sec": 53.289630152381164, "max_ops_per_sec": 71.97478809542763, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 7006804.920454546, "ser_median_ns": 6901426.5, "ser_std_ns": 542118.3576927425, "ser_mad_ns": 263247.5, "ser_cv": 0.07737026559854247, "ser_min_ns": 5628161.0, "ser_max_ns": 8528942.0, "ser_p5_ns": 6341205.95, "ser_p25_ns": 6666023.5, "ser_p50_ns": 6901426.5, "ser_p75_ns": 7231668.0, "ser_p95_ns": 8041616.0, "ser_p99_ns": 8498408.48, "ser_ci_low_ns": 6892015.5227272725, "ser_ci_high_ns": 7116420.877272728, "deser_mean_ns": 8363224.181818182, "deser_median_ns": 8184729.5, "deser_std_ns": 968780.5425873084, "deser_mad_ns": 658955.5, "deser_cv": 0.11583816498587433, "deser_min_ns": 7090144.0, "deser_max_ns": 11274630.0, "deser_p5_ns": 7256379.4, "deser_p25_ns": 7608993.75, "deser_p50_ns": 8184729.5, "deser_p75_ns": 8990085.25, "deser_p95_ns": 10227831.35, "deser_p99_ns": 10947798.839999998, "deser_ci_low_ns": 8161663.534943182, "deser_ci_high_ns": 8568236.838920454, "total_mean_ns": 15370029.102272727, "total_median_ns": 15058504.5, "total_std_ns": 1073141.963347707, "total_mad_ns": 626296.0, "total_cv": 0.06982042494565116, "total_min_ns": 13893754.0, "total_max_ns": 18765377.0, "total_p5_ns": 14062341.2, "total_p25_ns": 14542873.75, "total_p50_ns": 15058504.5, "total_p75_ns": 16133277.25, "total_p95_ns": 17381007.8, "total_p99_ns": 18258233.99, "total_ci_low_ns": 15151992.00625, "total_ci_high_ns": 15587712.993181817, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.823542256024883}, {"serializer": "jsoniter", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.1.12", "avg_time_ser_ns": 95651.98795180723, "avg_time_deser_ns": 137107.48192771085, "avg_time_total_ns": 232759.46987951806, "median_size_bytes": 45405.0, "avg_ops_per_sec": 4296.280621869539, "min_ops_per_sec": 3001.47072065312, "max_ops_per_sec": 5064.650260576256, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 95651.98795180723, "ser_median_ns": 87431.0, "ser_std_ns": 20626.115751339563, "ser_mad_ns": 8837.0, "ser_cv": 0.21563708390181824, "ser_min_ns": 73695.0, "ser_max_ns": 158412.0, "ser_p5_ns": 75574.4, "ser_p25_ns": 80036.0, "ser_p50_ns": 87431.0, "ser_p75_ns": 103757.5, "ser_p95_ns": 139781.8, "ser_p99_ns": 157380.44, "ser_ci_low_ns": 91520.05391566265, "ser_ci_high_ns": 100314.83493975904, "deser_mean_ns": 137107.48192771085, "deser_median_ns": 133222.0, "deser_std_ns": 11916.447343965345, "deser_mad_ns": 7284.0, "deser_cv": 0.08691318064063218, "deser_min_ns": 121136.0, "deser_max_ns": 176306.0, "deser_p5_ns": 123826.4, "deser_p25_ns": 127478.5, "deser_p50_ns": 133222.0, "deser_p75_ns": 145001.0, "deser_p95_ns": 158073.49999999997, "deser_p99_ns": 172785.73999999996, "deser_ci_low_ns": 134745.95963855422, "deser_ci_high_ns": 139748.19277108432, "total_mean_ns": 232759.46987951806, "total_median_ns": 227873.0, "total_std_ns": 29871.75947129106, "total_mad_ns": 18517.0, "total_cv": 0.12833746135765564, "total_min_ns": 197447.0, "total_max_ns": 333170.0, "total_p5_ns": 201660.5, "total_p25_ns": 209108.5, "total_p50_ns": 227873.0, "total_p75_ns": 245057.0, "total_p95_ns": 286516.39999999997, "total_p99_ns": 330919.1, "total_ci_low_ns": 226485.56174698795, "total_ci_high_ns": 239188.5015060241, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.654907228194824}, {"serializer": "hamba/avro", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "2.31.0", "avg_time_ser_ns": 1157.5425531914893, "avg_time_deser_ns": 1224.1170212765958, "avg_time_total_ns": 2381.659574468085, "median_size_bytes": 291.0, "avg_ops_per_sec": 419875.2881059158, "min_ops_per_sec": 191754.55417066155, "max_ops_per_sec": 1012145.7489878542, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 1157.5425531914893, "ser_median_ns": 934.0, "ser_std_ns": 589.0627997427125, "ser_mad_ns": 264.0, "ser_cv": 0.5088908378517859, "ser_min_ns": 392.0, "ser_max_ns": 2814.0, "ser_p5_ns": 494.3, "ser_p25_ns": 702.5, "ser_p50_ns": 934.0, "ser_p75_ns": 1579.25, "ser_p95_ns": 2266.5499999999997, "ser_p99_ns": 2564.7599999999984, "ser_ci_low_ns": 1043.7968085106384, "ser_ci_high_ns": 1277.4723404255317, "deser_mean_ns": 1224.1170212765958, "deser_median_ns": 1042.0, "deser_std_ns": 510.42686871804796, "deser_mad_ns": 255.5, "deser_cv": 0.4169755504140762, "deser_min_ns": 563.0, "deser_max_ns": 2920.0, "deser_p5_ns": 679.6, "deser_p25_ns": 838.0, "deser_p50_ns": 1042.0, "deser_p75_ns": 1598.0, "deser_p95_ns": 2176.0499999999997, "deser_p99_ns": 2550.7899999999972, "deser_ci_low_ns": 1124.3550531914893, "deser_ci_high_ns": 1328.9486702127658, "total_mean_ns": 2381.659574468085, "total_median_ns": 1960.5, "total_std_ns": 1083.6927167650936, "total_mad_ns": 510.5, "total_cv": 0.45501579167002626, "total_min_ns": 988.0, "total_max_ns": 5215.0, "total_p5_ns": 1207.35, "total_p25_ns": 1548.25, "total_p50_ns": 1960.5, "total_p75_ns": 3085.0, "total_p95_ns": 4519.45, "total_p99_ns": 5148.039999999999, "total_ci_low_ns": 2176.375531914894, "total_ci_high_ns": 2599.6284574468086, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.09717043211230533, "effect_vs_fastest_cliffs_label": "negligible", "effect_vs_fastest_hedges_g": 0.10179241762377807}, {"serializer": "fxamacker/cbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "2.9.2", "avg_time_ser_ns": 1365.5360824742268, "avg_time_deser_ns": 3053.505154639175, "avg_time_total_ns": 4419.041237113402, "median_size_bytes": 345.0, "avg_ops_per_sec": 226293.43025846445, "min_ops_per_sec": 110217.12774165106, "max_ops_per_sec": 424808.8360237893, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 1365.5360824742268, "ser_median_ns": 1111.0, "ser_std_ns": 606.8419285849156, "ser_mad_ns": 253.0, "ser_cv": 0.44439831094420695, "ser_min_ns": 622.0, "ser_max_ns": 3104.0, "ser_p5_ns": 739.4, "ser_p25_ns": 920.0, "ser_p50_ns": 1111.0, "ser_p75_ns": 1778.0, "ser_p95_ns": 2640.3999999999987, "ser_p99_ns": 2863.999999999998, "ser_ci_low_ns": 1248.7355670103093, "ser_ci_high_ns": 1489.5296391752577, "deser_mean_ns": 3053.505154639175, "deser_median_ns": 2614.0, "deser_std_ns": 1060.894317346134, "deser_mad_ns": 501.0, "deser_cv": 0.347434919418532, "deser_min_ns": 1732.0, "deser_max_ns": 6230.0, "deser_p5_ns": 1966.4, "deser_p25_ns": 2260.0, "deser_p50_ns": 2614.0, "deser_p75_ns": 3810.0, "deser_p95_ns": 5091.599999999999, "deser_p99_ns": 5617.519999999995, "deser_ci_low_ns": 2851.1296391752576, "deser_ci_high_ns": 3268.7198453608244, "total_mean_ns": 4419.041237113402, "total_median_ns": 3754.0, "total_std_ns": 1641.2802606852738, "total_mad_ns": 773.0, "total_cv": 0.37141094020597737, "total_min_ns": 2354.0, "total_max_ns": 9073.0, "total_p5_ns": 2759.6, "total_p25_ns": 3225.0, "total_p50_ns": 3754.0, "total_p75_ns": 5751.0, "total_p95_ns": 7659.799999999998, "total_p99_ns": 8154.2799999999925, "total_ci_low_ns": 4068.3855670103094, "total_ci_high_ns": 4751.881443298968, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.7236688277181422, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.505982370956567}, {"serializer": "kelindar/binary", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.0.19", "avg_time_ser_ns": 1259.0210526315789, "avg_time_deser_ns": 1231.842105263158, "avg_time_total_ns": 2490.863157894737, "median_size_bytes": 286.0, "avg_ops_per_sec": 401467.25717569893, "min_ops_per_sec": 189537.52843062926, "max_ops_per_sec": 739098.3000739098, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1259.0210526315789, "ser_median_ns": 1006.0, "ser_std_ns": 551.6816453806888, "ser_mad_ns": 229.0, "ser_cv": 0.4381830186457769, "ser_min_ns": 694.0, "ser_max_ns": 2713.0, "ser_p5_ns": 729.1, "ser_p25_ns": 824.0, "ser_p50_ns": 1006.0, "ser_p75_ns": 1734.0, "ser_p95_ns": 2231.7999999999997, "ser_p99_ns": 2504.3200000000006, "ser_ci_low_ns": 1151.2244736842104, "ser_ci_high_ns": 1375.0849999999998, "deser_mean_ns": 1231.842105263158, "deser_median_ns": 1016.0, "deser_std_ns": 509.693844606312, "deser_mad_ns": 252.0, "deser_cv": 0.4137655649442396, "deser_min_ns": 653.0, "deser_max_ns": 2761.0, "deser_p5_ns": 723.1, "deser_p25_ns": 826.0, "deser_p50_ns": 1016.0, "deser_p75_ns": 1646.5, "deser_p95_ns": 2063.2999999999997, "deser_p99_ns": 2574.8800000000006, "deser_ci_low_ns": 1131.597894736842, "deser_ci_high_ns": 1330.4673684210527, "total_mean_ns": 2490.863157894737, "total_median_ns": 2005.0, "total_std_ns": 1038.569531887196, "total_mad_ns": 475.0, "total_cv": 0.4169516613530022, "total_min_ns": 1353.0, "total_max_ns": 5276.0, "total_p5_ns": 1473.4, "total_p25_ns": 1655.5, "total_p50_ns": 2005.0, "total_p75_ns": 3331.5, "total_p95_ns": 4303.0, "total_p99_ns": 5053.22, "total_ci_low_ns": 2283.681315789474, "total_ci_high_ns": 2690.947894736842, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.17482365708084643, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.20221519067198765}, {"serializer": "goccy/go-json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "0.10.6", "avg_time_ser_ns": 3866.375, "avg_time_deser_ns": 4476.46875, "avg_time_total_ns": 8342.84375, "median_size_bytes": 663.0, "avg_ops_per_sec": 119863.2061160201, "min_ops_per_sec": 61942.51734390486, "max_ops_per_sec": 184706.3169560399, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 3866.375, "ser_median_ns": 3211.0, "ser_std_ns": 1315.4166220151258, "ser_mad_ns": 441.5, "ser_cv": 0.3402196170870973, "ser_min_ns": 2526.0, "ser_max_ns": 7488.0, "ser_p5_ns": 2576.0, "ser_p25_ns": 2967.75, "ser_p50_ns": 3211.0, "ser_p75_ns": 4806.0, "ser_p95_ns": 6461.0, "ser_p99_ns": 7391.099999999999, "ser_ci_low_ns": 3609.9354166666667, "ser_ci_high_ns": 4132.3671875, "deser_mean_ns": 4476.46875, "deser_median_ns": 3903.5, "deser_std_ns": 1378.4519460010968, "deser_mad_ns": 599.5, "deser_cv": 0.3079328870554713, "deser_min_ns": 2844.0, "deser_max_ns": 8758.0, "deser_p5_ns": 2993.25, "deser_p25_ns": 3534.25, "deser_p50_ns": 3903.5, "deser_p75_ns": 5493.25, "deser_p95_ns": 6886.5, "deser_p99_ns": 8304.849999999999, "deser_ci_low_ns": 4215.373697916667, "deser_ci_high_ns": 4772.300520833333, "total_mean_ns": 8342.84375, "total_median_ns": 7046.0, "total_std_ns": 2676.762267831576, "total_mad_ns": 987.0, "total_cv": 0.3208453074326816, "total_min_ns": 5414.0, "total_max_ns": 16144.0, "total_p5_ns": 5593.75, "total_p25_ns": 6552.25, "total_p50_ns": 7046.0, "total_p75_ns": 10316.0, "total_p95_ns": 13523.0, "total_p99_ns": 15787.749999999998, "total_ci_low_ns": 7829.4015625, "total_ci_high_ns": 8874.7625, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.9367573188201876}, {"serializer": "segmentio/encoding/json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "0.5.4", "avg_time_ser_ns": 3640.979381443299, "avg_time_deser_ns": 5183.041237113402, "avg_time_total_ns": 8824.0206185567, "median_size_bytes": 663.0, "avg_ops_per_sec": 113327.02440620145, "min_ops_per_sec": 60088.93161879582, "max_ops_per_sec": 175100.6828926633, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 3640.979381443299, "ser_median_ns": 3115.0, "ser_std_ns": 1144.0020121210946, "ser_mad_ns": 468.0, "ser_cv": 0.31420172768668836, "ser_min_ns": 2462.0, "ser_max_ns": 6369.0, "ser_p5_ns": 2528.4, "ser_p25_ns": 2730.0, "ser_p50_ns": 3115.0, "ser_p75_ns": 4974.0, "ser_p95_ns": 5665.4, "ser_p99_ns": 5900.519999999996, "ser_ci_low_ns": 3417.306701030928, "ser_ci_high_ns": 3845.0036082474226, "deser_mean_ns": 5183.041237113402, "deser_median_ns": 4517.0, "deser_std_ns": 1705.880063178081, "deser_mad_ns": 836.0, "deser_cv": 0.3291272411577684, "deser_min_ns": 3182.0, "deser_max_ns": 10980.0, "deser_p5_ns": 3406.6, "deser_p25_ns": 3843.0, "deser_p50_ns": 4517.0, "deser_p75_ns": 6728.0, "deser_p95_ns": 8324.199999999999, "deser_p99_ns": 10210.079999999994, "deser_ci_low_ns": 4856.407731958763, "deser_ci_high_ns": 5519.538402061856, "total_mean_ns": 8824.0206185567, "total_median_ns": 7541.0, "total_std_ns": 2732.5735160108284, "total_mad_ns": 1297.0, "total_cv": 0.30967442554069885, "total_min_ns": 5711.0, "total_max_ns": 16642.0, "total_p5_ns": 5946.6, "total_p25_ns": 6694.0, "total_p50_ns": 7541.0, "total_p75_ns": 11579.0, "total_p95_ns": 13521.599999999997, "total_p99_ns": 14914.959999999986, "total_ci_low_ns": 8295.109020618556, "total_ci_high_ns": 9388.17036082474, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.1091538245484824}, {"serializer": "linkedin/goavro", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "2.15.0", "avg_time_ser_ns": 1190.2708333333333, "avg_time_deser_ns": 1390.78125, "avg_time_total_ns": 2581.0520833333335, "median_size_bytes": 288.0, "avg_ops_per_sec": 387438.9077451459, "min_ops_per_sec": 195733.02016050107, "max_ops_per_sec": 766283.5249042145, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 1190.2708333333333, "ser_median_ns": 940.0, "ser_std_ns": 554.7485818234128, "ser_mad_ns": 249.5, "ser_cv": 0.46606920566964477, "ser_min_ns": 480.0, "ser_max_ns": 2514.0, "ser_p5_ns": 600.75, "ser_p25_ns": 769.25, "ser_p50_ns": 940.0, "ser_p75_ns": 1692.5, "ser_p95_ns": 2211.5, "ser_p99_ns": 2496.9, "ser_ci_low_ns": 1086.0419270833333, "ser_ci_high_ns": 1309.1164062499997, "deser_mean_ns": 1390.78125, "deser_median_ns": 1259.0, "deser_std_ns": 425.98436351646325, "deser_mad_ns": 245.0, "deser_cv": 0.3062914196725497, "deser_min_ns": 825.0, "deser_max_ns": 2595.0, "deser_p5_ns": 887.0, "deser_p25_ns": 1081.75, "deser_p50_ns": 1259.0, "deser_p75_ns": 1719.75, "deser_p95_ns": 2107.25, "deser_p99_ns": 2549.3999999999996, "deser_ci_low_ns": 1308.8140625, "deser_ci_high_ns": 1476.1927083333333, "total_mean_ns": 2581.0520833333335, "total_median_ns": 2207.5, "total_std_ns": 953.2948223458488, "total_mad_ns": 415.0, "total_cv": 0.3693435047287786, "total_min_ns": 1305.0, "total_max_ns": 5109.0, "total_p5_ns": 1529.5, "total_p25_ns": 1868.25, "total_p50_ns": 2207.5, "total_p75_ns": 3499.25, "total_p95_ns": 4283.5, "total_p99_ns": 4747.049999999999, "total_ci_low_ns": 2391.6966145833335, "total_ci_high_ns": 2765.204427083333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.26417525773195877, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.2939706846796752}, {"serializer": "goccy/go-yaml", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.19.2", "avg_time_ser_ns": 38950.802083333336, "avg_time_deser_ns": 63675.864583333336, "avg_time_total_ns": 102626.66666666667, "median_size_bytes": 716.0, "avg_ops_per_sec": 9744.056125763283, "min_ops_per_sec": 6360.513929525506, "max_ops_per_sec": 13520.822065981612, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 38950.802083333336, "ser_median_ns": 35351.5, "ser_std_ns": 9577.066810184235, "ser_mad_ns": 5322.0, "ser_cv": 0.2458759845225926, "ser_min_ns": 27563.0, "ser_max_ns": 65523.0, "ser_p5_ns": 28798.75, "ser_p25_ns": 31425.25, "ser_p50_ns": 35351.5, "ser_p75_ns": 46853.5, "ser_p95_ns": 56267.75, "ser_p99_ns": 61612.79999999999, "ser_ci_low_ns": 37105.733072916664, "ser_ci_high_ns": 40830.94140625, "deser_mean_ns": 63675.864583333336, "deser_median_ns": 56725.0, "deser_std_ns": 14646.324447573003, "deser_mad_ns": 6781.5, "deser_cv": 0.23001375078944064, "deser_min_ns": 46397.0, "deser_max_ns": 97632.0, "deser_p5_ns": 48616.0, "deser_p25_ns": 52811.25, "deser_p50_ns": 56725.0, "deser_p75_ns": 78145.5, "deser_p95_ns": 88490.75, "deser_p99_ns": 95875.45, "deser_ci_low_ns": 60913.40911458333, "deser_ci_high_ns": 66653.09322916667, "total_mean_ns": 102626.66666666667, "total_median_ns": 92477.5, "total_std_ns": 23885.3912082664, "total_mad_ns": 11690.0, "total_cv": 0.23274059251916068, "total_min_ns": 73960.0, "total_max_ns": 157220.0, "total_p5_ns": 78413.25, "total_p25_ns": 83881.0, "total_p50_ns": 92477.5, "total_p75_ns": 128928.0, "total_p95_ns": 144075.5, "total_p99_ns": 152707.5, "total_ci_low_ns": 98039.88072916667, "total_ci_high_ns": 107468.9953125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.927209259349615}, {"serializer": "encoding/gob", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 4745.583333333333, "avg_time_deser_ns": 14620.177083333334, "avg_time_total_ns": 19365.760416666668, "median_size_bytes": 440.0, "avg_ops_per_sec": 51637.52821910233, "min_ops_per_sec": 32401.25716877815, "max_ops_per_sec": 85440.87491455913, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 4745.583333333333, "ser_median_ns": 4086.0, "ser_std_ns": 1676.6193784967645, "ser_mad_ns": 909.5, "ser_cv": 0.3533010086916111, "ser_min_ns": 2319.0, "ser_max_ns": 8549.0, "ser_p5_ns": 2702.25, "ser_p25_ns": 3453.75, "ser_p50_ns": 4086.0, "ser_p75_ns": 6369.5, "ser_p95_ns": 7821.0, "ser_p99_ns": 8370.4, "ser_ci_low_ns": 4424.678645833334, "ser_ci_high_ns": 5087.0953125, "deser_mean_ns": 14620.177083333334, "deser_median_ns": 13159.5, "deser_std_ns": 3943.0043634792833, "deser_mad_ns": 2464.0, "deser_cv": 0.2696960741996906, "deser_min_ns": 9385.0, "deser_max_ns": 23060.0, "deser_p5_ns": 10171.75, "deser_p25_ns": 11540.5, "deser_p50_ns": 13159.5, "deser_p75_ns": 18641.5, "deser_p95_ns": 21507.5, "deser_p99_ns": 23022.0, "deser_ci_low_ns": 13891.962500000001, "deser_ci_high_ns": 15435.505208333332, "total_mean_ns": 19365.760416666668, "total_median_ns": 17349.5, "total_std_ns": 5513.326186317335, "total_mad_ns": 3380.5, "total_cv": 0.2846945365270772, "total_min_ns": 11704.0, "total_max_ns": 30863.0, "total_p5_ns": 12862.75, "total_p25_ns": 15098.5, "total_p50_ns": 17349.5, "total_p75_ns": 24931.25, "total_p95_ns": 29844.0, "total_p99_ns": 30765.15, "total_ci_low_ns": 18365.532031249997, "total_ci_high_ns": 20517.69921875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.284533735756318}, {"serializer": "mongo-bson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.17.9", "avg_time_ser_ns": 3984.6701030927834, "avg_time_deser_ns": 5184.051546391753, "avg_time_total_ns": 9168.721649484536, "median_size_bytes": 463.0, "avg_ops_per_sec": 109066.45857835807, "min_ops_per_sec": 54495.91280653951, "max_ops_per_sec": 220507.1664829107, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 3984.6701030927834, "ser_median_ns": 3246.0, "ser_std_ns": 1751.5813671844357, "ser_mad_ns": 813.0, "ser_cv": 0.439580020896814, "ser_min_ns": 1786.0, "ser_max_ns": 8296.0, "ser_p5_ns": 2096.0, "ser_p25_ns": 2665.0, "ser_p50_ns": 3246.0, "ser_p75_ns": 5633.0, "ser_p95_ns": 7157.199999999998, "ser_p99_ns": 8002.239999999998, "ser_ci_low_ns": 3627.4922680412374, "ser_ci_high_ns": 4350.505670103093, "deser_mean_ns": 5184.051546391753, "deser_median_ns": 4282.0, "deser_std_ns": 1945.5170283839611, "deser_mad_ns": 963.0, "deser_cv": 0.37528890501447587, "deser_min_ns": 2749.0, "deser_max_ns": 11297.0, "deser_p5_ns": 3018.4, "deser_p25_ns": 3794.0, "deser_p50_ns": 4282.0, "deser_p75_ns": 7022.0, "deser_p95_ns": 8483.599999999995, "deser_p99_ns": 9238.759999999984, "deser_ci_low_ns": 4808.701030927835, "deser_ci_high_ns": 5571.785309278349, "total_mean_ns": 9168.721649484536, "total_median_ns": 7465.0, "total_std_ns": 3634.6388023842546, "total_mad_ns": 1649.0, "total_cv": 0.39641718238753526, "total_min_ns": 4535.0, "total_max_ns": 18350.0, "total_p5_ns": 5117.8, "total_p25_ns": 6557.0, "total_p50_ns": 7465.0, "total_p75_ns": 12066.0, "total_p95_ns": 15394.599999999997, "total_p99_ns": 17413.999999999993, "total_ci_low_ns": 8484.138144329898, "total_ci_high_ns": 9886.00412371134, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.9953236263152301, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.5471771545058663}, {"serializer": "pelletier/go-toml", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "2.4.3", "avg_time_ser_ns": 5789.360824742268, "avg_time_deser_ns": 7744.80412371134, "avg_time_total_ns": 13534.164948453608, "median_size_bytes": 694.0, "avg_ops_per_sec": 73887.08529921222, "min_ops_per_sec": 42078.68714496108, "max_ops_per_sec": 116076.61056297156, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 5789.360824742268, "ser_median_ns": 5013.0, "ser_std_ns": 1819.1000590125086, "ser_mad_ns": 764.0, "ser_cv": 0.31421431727629306, "ser_min_ns": 3652.0, "ser_max_ns": 10269.0, "ser_p5_ns": 4025.2, "ser_p25_ns": 4441.0, "ser_p50_ns": 5013.0, "ser_p75_ns": 7303.0, "ser_p95_ns": 9217.0, "ser_p99_ns": 9808.199999999997, "ser_ci_low_ns": 5412.851546391753, "ser_ci_high_ns": 6157.229639175257, "deser_mean_ns": 7744.80412371134, "deser_median_ns": 6790.0, "deser_std_ns": 2504.955075442036, "deser_mad_ns": 1317.0, "deser_cv": 0.3234368533315019, "deser_min_ns": 4913.0, "deser_max_ns": 13976.0, "deser_p5_ns": 5165.0, "deser_p25_ns": 5735.0, "deser_p50_ns": 6790.0, "deser_p75_ns": 10028.0, "deser_p95_ns": 12331.599999999999, "deser_p99_ns": 13401.919999999995, "deser_ci_low_ns": 7255.788659793815, "deser_ci_high_ns": 8246.886855670104, "total_mean_ns": 13534.164948453608, "total_median_ns": 11836.0, "total_std_ns": 4252.20802123343, "total_mad_ns": 2092.0, "total_cv": 0.3141832567748689, "total_min_ns": 8615.0, "total_max_ns": 23765.0, "total_p5_ns": 9206.0, "total_p25_ns": 10193.0, "total_p50_ns": 11836.0, "total_p75_ns": 16274.0, "total_p95_ns": 21484.999999999993, "total_p99_ns": 23337.799999999996, "total_ci_low_ns": 12702.783762886598, "total_ci_high_ns": 14396.30154639175, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.5998295786194987}, {"serializer": "sonic", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.15.2", "avg_time_ser_ns": 2151.0106382978724, "avg_time_deser_ns": 2757.627659574468, "avg_time_total_ns": 4908.63829787234, "median_size_bytes": 663.0, "avg_ops_per_sec": 203722.48662800275, "min_ops_per_sec": 108389.33448948624, "max_ops_per_sec": 384911.47036181676, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 2151.0106382978724, "ser_median_ns": 1902.5, "ser_std_ns": 824.7248807437956, "ser_mad_ns": 502.5, "ser_cv": 0.3834127391375493, "ser_min_ns": 980.0, "ser_max_ns": 4460.0, "ser_p5_ns": 1236.7, "ser_p25_ns": 1508.25, "ser_p50_ns": 1902.5, "ser_p75_ns": 2650.25, "ser_p95_ns": 3867.9999999999995, "ser_p99_ns": 3995.9299999999967, "ser_ci_low_ns": 1982.4494680851062, "ser_ci_high_ns": 2320.6699468085103, "deser_mean_ns": 2757.627659574468, "deser_median_ns": 2387.0, "deser_std_ns": 1062.4594108279287, "deser_mad_ns": 681.5, "deser_cv": 0.3852802270600512, "deser_min_ns": 1404.0, "deser_max_ns": 5279.0, "deser_p5_ns": 1566.15, "deser_p25_ns": 1927.5, "deser_p50_ns": 2387.0, "deser_p75_ns": 3696.25, "deser_p95_ns": 4754.199999999999, "deser_p99_ns": 5036.269999999999, "deser_ci_low_ns": 2542.357712765958, "deser_ci_high_ns": 2961.4029255319147, "total_mean_ns": 4908.63829787234, "total_median_ns": 4258.5, "total_std_ns": 1860.2487973910695, "total_mad_ns": 1145.5, "total_cv": 0.3789745107512603, "total_min_ns": 2598.0, "total_max_ns": 9226.0, "total_p5_ns": 2804.2, "total_p25_ns": 3438.75, "total_p50_ns": 4258.5, "total_p75_ns": 6240.75, "total_p95_ns": 8703.5, "total_p99_ns": 8967.459999999997, "total_ci_low_ns": 4534.979787234042, "total_ci_high_ns": 5292.071542553192, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.791182276815091, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.7009450951802234}, {"serializer": "jsoniter", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.1.12", "avg_time_ser_ns": 4025.21875, "avg_time_deser_ns": 7558.854166666667, "avg_time_total_ns": 11584.072916666666, "median_size_bytes": 663.0, "avg_ops_per_sec": 86325.42346666715, "min_ops_per_sec": 53188.66017765013, "max_ops_per_sec": 128567.75520699409, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 4025.21875, "ser_median_ns": 3419.0, "ser_std_ns": 1467.8228862260416, "ser_mad_ns": 670.5, "ser_cv": 0.36465667517474465, "ser_min_ns": 2397.0, "ser_max_ns": 8101.0, "ser_p5_ns": 2523.0, "ser_p25_ns": 2930.0, "ser_p50_ns": 3419.0, "ser_p75_ns": 5278.5, "ser_p95_ns": 6997.0, "ser_p99_ns": 7394.199999999998, "ser_ci_low_ns": 3741.51328125, "ser_ci_high_ns": 4317.847916666667, "deser_mean_ns": 7558.854166666667, "deser_median_ns": 7049.0, "deser_std_ns": 1788.6804367534637, "deser_mad_ns": 1049.0, "deser_cv": 0.23663380683295324, "deser_min_ns": 5280.0, "deser_max_ns": 11478.0, "deser_p5_ns": 5480.5, "deser_p25_ns": 6101.0, "deser_p50_ns": 7049.0, "deser_p75_ns": 8974.5, "deser_p95_ns": 10685.5, "deser_p99_ns": 11406.75, "deser_ci_low_ns": 7194.696354166667, "deser_ci_high_ns": 7919.976302083333, "total_mean_ns": 11584.072916666666, "total_median_ns": 10525.5, "total_std_ns": 3214.0106712061793, "total_mad_ns": 1734.0, "total_cv": 0.27745083221826056, "total_min_ns": 7778.0, "total_max_ns": 18801.0, "total_p5_ns": 8021.5, "total_p25_ns": 9097.75, "total_p50_ns": 10525.5, "total_p75_ns": 14455.25, "total_p95_ns": 17289.0, "total_p99_ns": 18600.55, "total_ci_low_ns": 10951.918489583333, "total_ci_high_ns": 12253.834635416664, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.8465613515831607}, {"serializer": "shamaton/msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "3.1.2", "avg_time_ser_ns": 1544.9484536082475, "avg_time_deser_ns": 1531.3711340206185, "avg_time_total_ns": 3076.319587628866, "median_size_bytes": 346.0, "avg_ops_per_sec": 325063.7560614337, "min_ops_per_sec": 143533.80221042054, "max_ops_per_sec": 831946.7554076539, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 1544.9484536082475, "ser_median_ns": 1324.0, "ser_std_ns": 754.2521181488049, "ser_mad_ns": 429.0, "ser_cv": 0.4882053614068736, "ser_min_ns": 522.0, "ser_max_ns": 3568.0, "ser_p5_ns": 675.8, "ser_p25_ns": 977.0, "ser_p50_ns": 1324.0, "ser_p75_ns": 2027.0, "ser_p95_ns": 3122.3999999999996, "ser_p99_ns": 3540.16, "ser_ci_low_ns": 1399.6244845360825, "ser_ci_high_ns": 1695.6007731958762, "deser_mean_ns": 1531.3711340206185, "deser_median_ns": 1254.0, "deser_std_ns": 735.7123718941225, "deser_mad_ns": 336.0, "deser_cv": 0.4804272168579461, "deser_min_ns": 680.0, "deser_max_ns": 3567.0, "deser_p5_ns": 778.2, "deser_p25_ns": 980.0, "deser_p50_ns": 1254.0, "deser_p75_ns": 2013.0, "deser_p95_ns": 3001.0, "deser_p99_ns": 3433.559999999999, "deser_ci_low_ns": 1397.1592783505155, "deser_ci_high_ns": 1683.990206185567, "total_mean_ns": 3076.319587628866, "total_median_ns": 2607.0, "total_std_ns": 1438.8640017561868, "total_mad_ns": 761.0, "total_cv": 0.4677225368724514, "total_min_ns": 1202.0, "total_max_ns": 6967.0, "total_p5_ns": 1452.2, "total_p25_ns": 1964.0, "total_p50_ns": 2607.0, "total_p75_ns": 4221.0, "total_p95_ns": 5802.399999999999, "total_p99_ns": 6634.839999999997, "total_ci_low_ns": 2793.569587628866, "total_ci_high_ns": 3366.8688144329894, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.3706026145180147, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.6158907983511814}, {"serializer": "encoding/json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 4212.071428571428, "avg_time_deser_ns": 9584.80612244898, "avg_time_total_ns": 13796.877551020409, "median_size_bytes": 663.0, "avg_ops_per_sec": 72480.16779898439, "min_ops_per_sec": 41755.39688504739, "max_ops_per_sec": 110643.94777605665, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 4212.071428571428, "ser_median_ns": 3544.0, "ser_std_ns": 1524.1270562210864, "ser_mad_ns": 561.5, "ser_cv": 0.3618473907832117, "ser_min_ns": 2561.0, "ser_max_ns": 8505.0, "ser_p5_ns": 2783.3, "ser_p25_ns": 3099.25, "ser_p50_ns": 3544.0, "ser_p75_ns": 5605.5, "ser_p95_ns": 7023.449999999996, "ser_p99_ns": 7813.390000000001, "ser_ci_low_ns": 3922.1494897959183, "ser_ci_high_ns": 4501.835459183673, "deser_mean_ns": 9584.80612244898, "deser_median_ns": 8542.5, "deser_std_ns": 2405.394725770856, "deser_mad_ns": 1223.5, "deser_cv": 0.25095914252632395, "deser_min_ns": 6477.0, "deser_max_ns": 15444.0, "deser_p5_ns": 7062.2, "deser_p25_ns": 7724.0, "deser_p50_ns": 8542.5, "deser_p75_ns": 11432.25, "deser_p95_ns": 13951.55, "deser_p99_ns": 15125.84, "deser_ci_low_ns": 9110.630102040815, "deser_ci_high_ns": 10072.48163265306, "total_mean_ns": 13796.877551020409, "total_median_ns": 12130.0, "total_std_ns": 3903.797712841921, "total_mad_ns": 1787.0, "total_cv": 0.2829479132800739, "total_min_ns": 9038.0, "total_max_ns": 23949.0, "total_p5_ns": 9861.9, "total_p25_ns": 10891.5, "total_p50_ns": 12130.0, "total_p75_ns": 17316.0, "total_p95_ns": 20733.35, "total_p99_ns": 22699.640000000003, "total_ci_low_ns": 13042.771173469388, "total_ci_high_ns": 14573.361989795918, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.9780902868502666}, {"serializer": "protobuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.36.11", "avg_time_ser_ns": 1071.5051546391753, "avg_time_deser_ns": 1195.041237113402, "avg_time_total_ns": 2266.546391752577, "median_size_bytes": 291.0, "avg_ops_per_sec": 441199.88174023794, "min_ops_per_sec": 187722.92096865026, "max_ops_per_sec": 1432664.7564469913, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 1071.5051546391753, "ser_median_ns": 881.0, "ser_std_ns": 572.8073978898313, "ser_mad_ns": 292.0, "ser_cv": 0.5345820273563889, "ser_min_ns": 246.0, "ser_max_ns": 2695.0, "ser_p5_ns": 421.0, "ser_p25_ns": 654.0, "ser_p50_ns": 881.0, "ser_p75_ns": 1486.0, "ser_p95_ns": 2274.7999999999984, "ser_p99_ns": 2651.7999999999997, "ser_ci_low_ns": 955.8373711340206, "ser_ci_high_ns": 1189.8778350515463, "deser_mean_ns": 1195.041237113402, "deser_median_ns": 1004.0, "deser_std_ns": 609.9927410347767, "deser_mad_ns": 343.0, "deser_cv": 0.5104365624304328, "deser_min_ns": 452.0, "deser_max_ns": 3077.0, "deser_p5_ns": 488.4, "deser_p25_ns": 718.0, "deser_p50_ns": 1004.0, "deser_p75_ns": 1602.0, "deser_p95_ns": 2384.9999999999995, "deser_p99_ns": 2534.5999999999954, "deser_ci_low_ns": 1078.3399484536083, "deser_ci_high_ns": 1321.2347938144326, "total_mean_ns": 2266.546391752577, "total_median_ns": 1923.0, "total_std_ns": 1166.2225346946238, "total_mad_ns": 681.0, "total_cv": 0.5145372443900685, "total_min_ns": 698.0, "total_max_ns": 5327.0, "total_p5_ns": 913.4, "total_p25_ns": 1383.0, "total_p50_ns": 1923.0, "total_p75_ns": 3174.0, "total_p95_ns": 4622.999999999997, "total_p99_ns": 5168.5999999999985, "total_ci_low_ns": 2031.8007731958764, "total_ci_high_ns": 2495.449742268041, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "ugorji/json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 4530.639175257732, "avg_time_deser_ns": 6131.051546391753, "avg_time_total_ns": 10661.690721649484, "median_size_bytes": 663.0, "avg_ops_per_sec": 93793.75430290935, "min_ops_per_sec": 53467.35817783244, "max_ops_per_sec": 160230.7322544464, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 4530.639175257732, "ser_median_ns": 3928.0, "ser_std_ns": 1457.1865242191814, "ser_mad_ns": 753.0, "ser_cv": 0.3216293480568969, "ser_min_ns": 2703.0, "ser_max_ns": 8421.0, "ser_p5_ns": 3051.4, "ser_p25_ns": 3377.0, "ser_p50_ns": 3928.0, "ser_p75_ns": 5813.0, "ser_p95_ns": 7080.8, "ser_p99_ns": 8283.72, "ser_ci_low_ns": 4250.262628865979, "ser_ci_high_ns": 4832.849742268041, "deser_mean_ns": 6131.051546391753, "deser_median_ns": 5531.0, "deser_std_ns": 1725.1644328098, "deser_mad_ns": 1147.0, "deser_cv": 0.2813814921887411, "deser_min_ns": 3538.0, "deser_max_ns": 10282.0, "deser_p5_ns": 4138.2, "deser_p25_ns": 4731.0, "deser_p50_ns": 5531.0, "deser_p75_ns": 7838.0, "deser_p95_ns": 8990.199999999995, "deser_p99_ns": 9666.639999999996, "deser_ci_low_ns": 5785.438402061855, "deser_ci_high_ns": 6483.3033505154635, "total_mean_ns": 10661.690721649484, "total_median_ns": 9370.0, "total_std_ns": 3164.198932197087, "total_mad_ns": 1814.0, "total_cv": 0.2967820972120217, "total_min_ns": 6241.0, "total_max_ns": 18703.0, "total_p5_ns": 7251.0, "total_p25_ns": 8073.0, "total_p50_ns": 9370.0, "total_p75_ns": 13714.0, "total_p95_ns": 16076.399999999996, "total_p99_ns": 17902.359999999993, "total_ci_low_ns": 10042.314948453608, "total_ci_high_ns": 11335.524484536083, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.506859321144695}, {"serializer": "vmihailenco/msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "5.4.1", "avg_time_ser_ns": 1951.957894736842, "avg_time_deser_ns": 3309.6736842105265, "avg_time_total_ns": 5261.631578947368, "median_size_bytes": 346.0, "avg_ops_per_sec": 190055.11598363525, "min_ops_per_sec": 93650.49634763064, "max_ops_per_sec": 336587.0077415012, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1951.957894736842, "ser_median_ns": 1582.0, "ser_std_ns": 859.1131735788931, "ser_mad_ns": 296.0, "ser_cv": 0.44012894739961417, "ser_min_ns": 923.0, "ser_max_ns": 3864.0, "ser_p5_ns": 1138.9, "ser_p25_ns": 1331.5, "ser_p50_ns": 1582.0, "ser_p75_ns": 2392.5, "ser_p95_ns": 3711.1, "ser_p99_ns": 3848.02, "ser_ci_low_ns": 1785.4136842105263, "ser_ci_high_ns": 2128.9776315789472, "deser_mean_ns": 3309.6736842105265, "deser_median_ns": 2886.0, "deser_std_ns": 1223.0359021374366, "deser_mad_ns": 519.0, "deser_cv": 0.36953368181648205, "deser_min_ns": 1962.0, "deser_max_ns": 6814.0, "deser_p5_ns": 2131.8, "deser_p25_ns": 2396.5, "deser_p50_ns": 2886.0, "deser_p75_ns": 3966.5, "deser_p95_ns": 5740.099999999999, "deser_p99_ns": 6438.9400000000005, "deser_ci_low_ns": 3069.468684210526, "deser_ci_high_ns": 3556.3642105263157, "total_mean_ns": 5261.631578947368, "total_median_ns": 4413.0, "total_std_ns": 2068.9572769600095, "total_mad_ns": 764.0, "total_cv": 0.3932159152378208, "total_min_ns": 2971.0, "total_max_ns": 10678.0, "total_p5_ns": 3299.5, "total_p25_ns": 3762.5, "total_p50_ns": 4413.0, "total_p75_ns": 6163.0, "total_p95_ns": 9391.0, "total_p99_ns": 10170.400000000001, "total_ci_low_ns": 4855.119210526316, "total_ci_high_ns": 5684.733157894736, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.8419967444384157, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.781254515554694}, {"serializer": "ugorji/cbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 1362.4270833333333, "avg_time_deser_ns": 2071.0833333333335, "avg_time_total_ns": 3433.5104166666665, "median_size_bytes": 345.0, "avg_ops_per_sec": 291247.1140748202, "min_ops_per_sec": 132714.00132714002, "max_ops_per_sec": 843881.8565400844, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 1362.4270833333333, "ser_median_ns": 1169.5, "ser_std_ns": 638.190859833139, "ser_mad_ns": 377.0, "ser_cv": 0.4684220298026756, "ser_min_ns": 434.0, "ser_max_ns": 3380.0, "ser_p5_ns": 629.25, "ser_p25_ns": 853.5, "ser_p50_ns": 1169.5, "ser_p75_ns": 1893.75, "ser_p95_ns": 2484.25, "ser_p99_ns": 2889.7999999999984, "ser_ci_low_ns": 1237.3854166666667, "ser_ci_high_ns": 1490.5658854166666, "deser_mean_ns": 2071.0833333333335, "deser_median_ns": 1728.5, "deser_std_ns": 950.3784583180995, "deser_mad_ns": 522.5, "deser_cv": 0.45887987364974825, "deser_min_ns": 739.0, "deser_max_ns": 4451.0, "deser_p5_ns": 1008.5, "deser_p25_ns": 1326.0, "deser_p50_ns": 1728.5, "deser_p75_ns": 2962.25, "deser_p95_ns": 3813.25, "deser_p99_ns": 4169.799999999999, "deser_ci_low_ns": 1880.6020833333334, "deser_ci_high_ns": 2261.438020833333, "total_mean_ns": 3433.5104166666665, "total_median_ns": 2871.0, "total_std_ns": 1558.9481271191307, "total_mad_ns": 887.0, "total_cv": 0.45403914301579273, "total_min_ns": 1185.0, "total_max_ns": 7535.0, "total_p5_ns": 1679.75, "total_p25_ns": 2169.0, "total_p50_ns": 2871.0, "total_p75_ns": 4703.75, "total_p95_ns": 6226.25, "total_p99_ns": 7041.949999999999, "total_ci_low_ns": 3135.54453125, "total_ci_high_ns": 3743.5013020833335, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.4880798969072165, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 0.8449686092831235}, {"serializer": "ugorji/msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 1258.6458333333333, "avg_time_deser_ns": 1833.3020833333333, "avg_time_total_ns": 3091.9479166666665, "median_size_bytes": 346.0, "avg_ops_per_sec": 323420.71307529305, "min_ops_per_sec": 164636.15409944023, "max_ops_per_sec": 888099.4671403198, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 1258.6458333333333, "ser_median_ns": 1023.0, "ser_std_ns": 568.1263754736018, "ser_mad_ns": 326.5, "ser_cv": 0.4513790618676304, "ser_min_ns": 473.0, "ser_max_ns": 2648.0, "ser_p5_ns": 598.5, "ser_p25_ns": 808.25, "ser_p50_ns": 1023.0, "ser_p75_ns": 1674.0, "ser_p95_ns": 2309.5, "ser_p99_ns": 2647.05, "ser_ci_low_ns": 1145.1617187499999, "ser_ci_high_ns": 1379.2229166666666, "deser_mean_ns": 1833.3020833333333, "deser_median_ns": 1473.5, "deser_std_ns": 831.1180563401094, "deser_mad_ns": 397.5, "deser_cv": 0.45334484910907863, "deser_min_ns": 653.0, "deser_max_ns": 3589.0, "deser_p5_ns": 983.5, "deser_p25_ns": 1201.75, "deser_p50_ns": 1473.5, "deser_p75_ns": 2475.75, "deser_p95_ns": 3485.75, "deser_p99_ns": 3570.0, "deser_ci_low_ns": 1672.4721354166666, "deser_ci_high_ns": 2001.9729166666666, "total_mean_ns": 3091.9479166666665, "total_median_ns": 2522.0, "total_std_ns": 1373.565758162169, "total_mad_ns": 690.5, "total_cv": 0.4442396169606142, "total_min_ns": 1126.0, "total_max_ns": 6074.0, "total_p5_ns": 1603.75, "total_p25_ns": 2005.5, "total_p50_ns": 2522.0, "total_p75_ns": 4152.25, "total_p95_ns": 5750.25, "total_p99_ns": 6050.25, "total_ci_low_ns": 2823.3828125, "total_ci_high_ns": 3364.4947916666665, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.4017396907216495, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.6455484517399271}, {"serializer": "kelindar/binary", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.0.19", "avg_time_ser_ns": 1303.8144329896907, "avg_time_deser_ns": 1836.1237113402062, "avg_time_total_ns": 3139.938144329897, "median_size_bytes": 286.0, "avg_ops_per_sec": 318477.61135224934, "min_ops_per_sec": 163105.52927744252, "max_ops_per_sec": 533617.9295624333, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 1303.8144329896907, "ser_median_ns": 1086.0, "ser_std_ns": 478.03764081871094, "ser_mad_ns": 200.0, "ser_cv": 0.36664545868122844, "ser_min_ns": 751.0, "ser_max_ns": 2684.0, "ser_p5_ns": 816.6, "ser_p25_ns": 975.0, "ser_p50_ns": 1086.0, "ser_p75_ns": 1676.0, "ser_p95_ns": 2178.0, "ser_p99_ns": 2378.7199999999975, "ser_ci_low_ns": 1211.309793814433, "ser_ci_high_ns": 1396.05412371134, "deser_mean_ns": 1836.1237113402062, "deser_median_ns": 1507.0, "deser_std_ns": 668.120954271068, "deser_mad_ns": 203.0, "deser_cv": 0.36387578361122486, "deser_min_ns": 1087.0, "deser_max_ns": 3765.0, "deser_p5_ns": 1200.2, "deser_p25_ns": 1376.0, "deser_p50_ns": 1507.0, "deser_p75_ns": 2491.0, "deser_p95_ns": 3054.5999999999995, "deser_p99_ns": 3321.4799999999964, "deser_ci_low_ns": 1698.9670103092785, "deser_ci_high_ns": 1965.7505154639173, "total_mean_ns": 3139.938144329897, "total_median_ns": 2582.0, "total_std_ns": 1131.6895629841931, "total_mad_ns": 390.0, "total_cv": 0.3604177888114768, "total_min_ns": 1874.0, "total_max_ns": 6131.0, "total_p5_ns": 2035.0, "total_p25_ns": 2347.0, "total_p50_ns": 2582.0, "total_p75_ns": 4335.0, "total_p95_ns": 5194.2, "total_p99_ns": 5582.839999999996, "total_ci_low_ns": 2919.197680412371, "total_ci_high_ns": 3358.217783505155, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.4235577977626673, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.6794063601630883}, {"serializer": "encoding/gob", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 4509.621052631579, "avg_time_deser_ns": 14341.094736842106, "avg_time_total_ns": 18850.715789473685, "median_size_bytes": 440.0, "avg_ops_per_sec": 53048.38347615447, "min_ops_per_sec": 30909.03471084598, "max_ops_per_sec": 77000.077000077, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 4509.621052631579, "ser_median_ns": 3999.0, "ser_std_ns": 1444.6646682906699, "ser_mad_ns": 601.0, "ser_cv": 0.3203516773205676, "ser_min_ns": 2563.0, "ser_max_ns": 8844.0, "ser_p5_ns": 2902.4, "ser_p25_ns": 3515.5, "ser_p50_ns": 3999.0, "ser_p75_ns": 5868.5, "ser_p95_ns": 7105.6, "ser_p99_ns": 8219.840000000002, "ser_ci_low_ns": 4233.361578947368, "ser_ci_high_ns": 4772.194473684211, "deser_mean_ns": 14341.094736842106, "deser_median_ns": 13059.0, "deser_std_ns": 3405.164163486271, "deser_mad_ns": 1367.0, "deser_cv": 0.23744102008743054, "deser_min_ns": 10247.0, "deser_max_ns": 23509.0, "deser_p5_ns": 10789.5, "deser_p25_ns": 11943.0, "deser_p50_ns": 13059.0, "deser_p75_ns": 16792.5, "deser_p95_ns": 20859.5, "deser_p99_ns": 22242.820000000003, "deser_ci_low_ns": 13676.706315789474, "deser_ci_high_ns": 14992.795263157894, "total_mean_ns": 18850.715789473685, "total_median_ns": 16929.0, "total_std_ns": 4769.703299713855, "total_mad_ns": 1943.0, "total_cv": 0.2530250497106999, "total_min_ns": 12987.0, "total_max_ns": 32353.0, "total_p5_ns": 13879.2, "total_p25_ns": 15437.5, "total_p50_ns": 16929.0, "total_p75_ns": 23124.5, "total_p95_ns": 27648.899999999998, "total_p99_ns": 30462.660000000003, "total_ci_low_ns": 17883.846842105264, "total_ci_high_ns": 19800.386052631577, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.753389515607194}, {"serializer": "hamba/avro", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "2.31.0", "avg_time_ser_ns": 1271.2736842105264, "avg_time_deser_ns": 1446.2105263157894, "avg_time_total_ns": 2717.4842105263156, "median_size_bytes": 291.0, "avg_ops_per_sec": 367987.41870383214, "min_ops_per_sec": 210748.1559536354, "max_ops_per_sec": 781860.8287724785, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1271.2736842105264, "ser_median_ns": 1119.0, "ser_std_ns": 491.9796406898394, "ser_mad_ns": 238.0, "ser_cv": 0.38699742376509877, "ser_min_ns": 517.0, "ser_max_ns": 2379.0, "ser_p5_ns": 630.1, "ser_p25_ns": 913.5, "ser_p50_ns": 1119.0, "ser_p75_ns": 1491.5, "ser_p95_ns": 2227.9, "ser_p99_ns": 2355.5, "ser_ci_low_ns": 1174.312894736842, "ser_ci_high_ns": 1374.9181578947369, "deser_mean_ns": 1446.2105263157894, "deser_median_ns": 1280.0, "deser_std_ns": 440.8510602627904, "deser_mad_ns": 216.0, "deser_cv": 0.30483187076908863, "deser_min_ns": 735.0, "deser_max_ns": 2662.0, "deser_p5_ns": 902.0, "deser_p25_ns": 1107.5, "deser_p50_ns": 1280.0, "deser_p75_ns": 1741.0, "deser_p95_ns": 2253.7999999999997, "deser_p99_ns": 2625.34, "deser_ci_low_ns": 1360.2642105263158, "deser_ci_high_ns": 1531.5042105263158, "total_mean_ns": 2717.4842105263156, "total_median_ns": 2435.0, "total_std_ns": 891.1275174786236, "total_mad_ns": 479.0, "total_cv": 0.3279237148929128, "total_min_ns": 1279.0, "total_max_ns": 4745.0, "total_p5_ns": 1595.5, "total_p25_ns": 2045.0, "total_p50_ns": 2435.0, "total_p75_ns": 3443.0, "total_p95_ns": 4371.099999999999, "total_p99_ns": 4673.56, "total_ci_low_ns": 2544.2892105263154, "total_ci_high_ns": 2906.9681578947366, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.18465845464725644, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.30138811191682136}, {"serializer": "segmentio/encoding/json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "0.5.4", "avg_time_ser_ns": 3523.8105263157895, "avg_time_deser_ns": 7999.242105263158, "avg_time_total_ns": 11523.052631578947, "median_size_bytes": 664.0, "avg_ops_per_sec": 86782.55944605323, "min_ops_per_sec": 52842.9507503699, "max_ops_per_sec": 124424.53651860147, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 3523.8105263157895, "ser_median_ns": 3065.0, "ser_std_ns": 931.0433439956789, "ser_mad_ns": 245.0, "ser_cv": 0.26421492785796924, "ser_min_ns": 2617.0, "ser_max_ns": 6478.0, "ser_p5_ns": 2724.3, "ser_p25_ns": 2900.5, "ser_p50_ns": 3065.0, "ser_p75_ns": 4078.0, "ser_p95_ns": 5155.1, "ser_p99_ns": 6102.000000000001, "ser_ci_low_ns": 3341.7986842105265, "ser_ci_high_ns": 3717.14, "deser_mean_ns": 7999.242105263158, "deser_median_ns": 7152.0, "deser_std_ns": 2095.172397902304, "deser_mad_ns": 1037.0, "deser_cv": 0.2619213633406308, "deser_min_ns": 5386.0, "deser_max_ns": 15446.0, "deser_p5_ns": 5823.0, "deser_p25_ns": 6431.0, "deser_p50_ns": 7152.0, "deser_p75_ns": 9660.5, "deser_p95_ns": 11724.3, "deser_p99_ns": 13002.000000000005, "deser_ci_low_ns": 7608.042631578947, "deser_ci_high_ns": 8454.949999999999, "total_mean_ns": 11523.052631578947, "total_median_ns": 10176.0, "total_std_ns": 2928.7432653310066, "total_mad_ns": 1053.0, "total_cv": 0.2541638365258161, "total_min_ns": 8037.0, "total_max_ns": 18924.0, "total_p5_ns": 8622.0, "total_p25_ns": 9321.0, "total_p50_ns": 10176.0, "total_p75_ns": 13694.0, "total_p95_ns": 16904.7, "total_p99_ns": 18702.16, "total_ci_low_ns": 10919.813684210527, "total_ci_high_ns": 12125.316578947368, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.175256503188134}, {"serializer": "goccy/go-yaml", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.19.2", "avg_time_ser_ns": 37307.37634408602, "avg_time_deser_ns": 61668.81720430108, "avg_time_total_ns": 98976.19354838709, "median_size_bytes": 716.0, "avg_ops_per_sec": 10103.43966714707, "min_ops_per_sec": 7262.9025463736325, "max_ops_per_sec": 12924.739243385764, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 37307.37634408602, "ser_median_ns": 34169.0, "ser_std_ns": 6971.483495538432, "ser_mad_ns": 2634.0, "ser_cv": 0.18686608865872592, "ser_min_ns": 28175.0, "ser_max_ns": 53450.0, "ser_p5_ns": 30148.4, "ser_p25_ns": 32695.0, "ser_p50_ns": 34169.0, "ser_p75_ns": 40791.0, "ser_p95_ns": 51109.2, "ser_p99_ns": 52523.56, "ser_ci_low_ns": 35958.73440860215, "ser_ci_high_ns": 38869.75564516129, "deser_mean_ns": 61668.81720430108, "deser_median_ns": 57286.0, "deser_std_ns": 11341.236059989073, "deser_mad_ns": 4571.0, "deser_cv": 0.1839055226633742, "deser_min_ns": 48939.0, "deser_max_ns": 85851.0, "deser_p5_ns": 51239.0, "deser_p25_ns": 53385.0, "deser_p50_ns": 57286.0, "deser_p75_ns": 64956.0, "deser_p95_ns": 83572.6, "deser_p99_ns": 84942.95999999999, "deser_ci_low_ns": 59489.98360215054, "deser_ci_high_ns": 64092.85430107527, "total_mean_ns": 98976.19354838709, "total_median_ns": 92234.0, "total_std_ns": 17945.921933056245, "total_mad_ns": 7303.0, "total_cv": 0.18131553952196508, "total_min_ns": 77371.0, "total_max_ns": 137686.0, "total_p5_ns": 81508.2, "total_p25_ns": 86241.0, "total_p50_ns": 92234.0, "total_p75_ns": 105090.0, "total_p95_ns": 133972.0, "total_p99_ns": 137337.32, "total_ci_low_ns": 95316.61639784946, "total_ci_high_ns": 102753.75483870968, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.587321875043994}, {"serializer": "protobuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.36.11", "avg_time_ser_ns": 1123.0212765957447, "avg_time_deser_ns": 1328.9787234042553, "avg_time_total_ns": 2452.0, "median_size_bytes": 291.0, "avg_ops_per_sec": 407830.34257748775, "min_ops_per_sec": 234466.58851113718, "max_ops_per_sec": 821018.0623973728, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 1123.0212765957447, "ser_median_ns": 977.0, "ser_std_ns": 424.9537603871391, "ser_mad_ns": 239.0, "ser_cv": 0.37840223443968657, "ser_min_ns": 516.0, "ser_max_ns": 2030.0, "ser_p5_ns": 582.15, "ser_p25_ns": 817.5, "ser_p50_ns": 977.0, "ser_p75_ns": 1522.25, "ser_p95_ns": 1857.05, "ser_p99_ns": 1951.8799999999994, "ser_ci_low_ns": 1038.732180851064, "ser_ci_high_ns": 1207.1119680851064, "deser_mean_ns": 1328.9787234042553, "deser_median_ns": 1200.0, "deser_std_ns": 458.92110453497355, "deser_mad_ns": 320.5, "deser_cv": 0.3453186243338951, "deser_min_ns": 702.0, "deser_max_ns": 2570.0, "deser_p5_ns": 736.6, "deser_p25_ns": 955.25, "deser_p50_ns": 1200.0, "deser_p75_ns": 1615.75, "deser_p95_ns": 2127.15, "deser_p99_ns": 2450.959999999999, "deser_ci_low_ns": 1244.902925531915, "deser_ci_high_ns": 1424.2585106382978, "total_mean_ns": 2452.0, "total_median_ns": 2205.5, "total_std_ns": 863.1680084159099, "total_mad_ns": 550.0, "total_cv": 0.35202610457418837, "total_min_ns": 1218.0, "total_max_ns": 4265.0, "total_p5_ns": 1411.65, "total_p25_ns": 1778.0, "total_p50_ns": 2205.5, "total_p75_ns": 3237.0, "total_p95_ns": 4009.2999999999997, "total_p99_ns": 4144.099999999999, "total_ci_low_ns": 2267.9119680851063, "total_ci_high_ns": 2632.7111702127663, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "jsoniter", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.1.12", "avg_time_ser_ns": 4081.6666666666665, "avg_time_deser_ns": 7608.9375, "avg_time_total_ns": 11690.604166666666, "median_size_bytes": 664.0, "avg_ops_per_sec": 85538.77847060228, "min_ops_per_sec": 56637.97009515179, "max_ops_per_sec": 117619.38367442954, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 4081.6666666666665, "ser_median_ns": 3576.0, "ser_std_ns": 1139.053565273119, "ser_mad_ns": 450.0, "ser_cv": 0.2790657979435979, "ser_min_ns": 2701.0, "ser_max_ns": 6670.0, "ser_p5_ns": 2944.75, "ser_p25_ns": 3262.75, "ser_p50_ns": 3576.0, "ser_p75_ns": 4878.0, "ser_p95_ns": 6190.25, "ser_p99_ns": 6578.799999999999, "ser_ci_low_ns": 3864.3609375, "ser_ci_high_ns": 4301.583333333333, "deser_mean_ns": 7608.9375, "deser_median_ns": 7140.5, "deser_std_ns": 1400.012133875989, "deser_mad_ns": 757.5, "deser_cv": 0.1839957463017654, "deser_min_ns": 5801.0, "deser_max_ns": 10986.0, "deser_p5_ns": 6112.25, "deser_p25_ns": 6504.25, "deser_p50_ns": 7140.5, "deser_p75_ns": 8256.75, "deser_p95_ns": 10333.0, "deser_p99_ns": 10701.949999999999, "deser_ci_low_ns": 7349.032031250001, "deser_ci_high_ns": 7908.091666666667, "total_mean_ns": 11690.604166666666, "total_median_ns": 10700.5, "total_std_ns": 2467.8743484143197, "total_mad_ns": 1166.5, "total_cv": 0.21109895718229446, "total_min_ns": 8502.0, "total_max_ns": 17656.0, "total_p5_ns": 9145.5, "total_p25_ns": 9810.75, "total_p50_ns": 10700.5, "total_p75_ns": 13203.75, "total_p95_ns": 16378.0, "total_p99_ns": 16886.499999999996, "total_ci_low_ns": 11203.5671875, "total_ci_high_ns": 12196.806770833333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.956784573070604}, {"serializer": "encoding/json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 4015.925531914894, "avg_time_deser_ns": 10364.712765957447, "avg_time_total_ns": 14380.63829787234, "median_size_bytes": 664.0, "avg_ops_per_sec": 69537.94256461851, "min_ops_per_sec": 43162.983425414364, "max_ops_per_sec": 96209.35154897056, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 4015.925531914894, "ser_median_ns": 3484.0, "ser_std_ns": 1115.0005471753486, "ser_mad_ns": 305.5, "ser_cv": 0.2776447268044058, "ser_min_ns": 2832.0, "ser_max_ns": 7332.0, "ser_p5_ns": 3006.05, "ser_p25_ns": 3253.0, "ser_p50_ns": 3484.0, "ser_p75_ns": 4490.5, "ser_p95_ns": 6102.6, "ser_p99_ns": 6407.579999999994, "ser_ci_low_ns": 3790.578989361702, "ser_ci_high_ns": 4245.52420212766, "deser_mean_ns": 10364.712765957447, "deser_median_ns": 9397.5, "deser_std_ns": 2362.5273947201163, "deser_mad_ns": 1032.5, "deser_cv": 0.22793949509915593, "deser_min_ns": 7441.0, "deser_max_ns": 16657.0, "deser_p5_ns": 7855.1, "deser_p25_ns": 8623.5, "deser_p50_ns": 9397.5, "deser_p75_ns": 12338.0, "deser_p95_ns": 14277.5, "deser_p99_ns": 15893.469999999994, "deser_ci_low_ns": 9898.359840425532, "deser_ci_high_ns": 10857.30159574468, "total_mean_ns": 14380.63829787234, "total_median_ns": 12906.0, "total_std_ns": 3387.190404377461, "total_mad_ns": 1393.5, "total_cv": 0.23553825179502683, "total_min_ns": 10394.0, "total_max_ns": 23168.0, "total_p5_ns": 10900.55, "total_p25_ns": 11880.0, "total_p50_ns": 12906.0, "total_p75_ns": 15792.5, "total_p95_ns": 20384.899999999998, "total_p99_ns": 22055.71999999999, "total_ci_low_ns": 13723.952659574468, "total_ci_high_ns": 15091.916755319147, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.806695590520913}, {"serializer": "mongo-bson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.17.9", "avg_time_ser_ns": 3729.701030927835, "avg_time_deser_ns": 5254.969072164949, "avg_time_total_ns": 8984.670103092783, "median_size_bytes": 463.0, "avg_ops_per_sec": 111300.69201492118, "min_ops_per_sec": 59049.3061706525, "max_ops_per_sec": 191754.55417066155, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 3729.701030927835, "ser_median_ns": 3224.0, "ser_std_ns": 1298.7410904807366, "ser_mad_ns": 645.0, "ser_cv": 0.3482158703100258, "ser_min_ns": 1946.0, "ser_max_ns": 7942.0, "ser_p5_ns": 2378.6, "ser_p25_ns": 2816.0, "ser_p50_ns": 3224.0, "ser_p75_ns": 4619.0, "ser_p95_ns": 5972.7999999999965, "ser_p99_ns": 6399.279999999987, "ser_ci_low_ns": 3482.863144329897, "ser_ci_high_ns": 3989.030412371134, "deser_mean_ns": 5254.969072164949, "deser_median_ns": 4653.0, "deser_std_ns": 1544.4175982497432, "deser_mad_ns": 746.0, "deser_cv": 0.2938966104349444, "deser_min_ns": 3172.0, "deser_max_ns": 8993.0, "deser_p5_ns": 3539.8, "deser_p25_ns": 4142.0, "deser_p50_ns": 4653.0, "deser_p75_ns": 6374.0, "deser_p95_ns": 8038.999999999997, "deser_p99_ns": 8957.48, "deser_ci_low_ns": 4949.320103092784, "deser_ci_high_ns": 5584.714690721649, "total_mean_ns": 8984.670103092783, "total_median_ns": 7833.0, "total_std_ns": 2810.899432423905, "total_mad_ns": 1301.0, "total_cv": 0.3128550520131298, "total_min_ns": 5215.0, "total_max_ns": 16935.0, "total_p5_ns": 6032.8, "total_p25_ns": 6914.0, "total_p50_ns": 7833.0, "total_p75_ns": 11246.0, "total_p95_ns": 14011.4, "total_p99_ns": 15356.759999999987, "total_ci_low_ns": 8434.440979381443, "total_ci_high_ns": 9549.320618556701, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.10906235749376}, {"serializer": "ugorji/msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 2034.494623655914, "avg_time_deser_ns": 2757.3978494623657, "avg_time_total_ns": 4791.89247311828, "median_size_bytes": 346.0, "avg_ops_per_sec": 208685.81789133078, "min_ops_per_sec": 118497.45230477545, "max_ops_per_sec": 410677.6180698152, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 2034.494623655914, "ser_median_ns": 1748.0, "ser_std_ns": 737.4191130831545, "ser_mad_ns": 340.0, "ser_cv": 0.36245812818027445, "ser_min_ns": 1137.0, "ser_max_ns": 3789.0, "ser_p5_ns": 1271.8, "ser_p25_ns": 1501.0, "ser_p50_ns": 1748.0, "ser_p75_ns": 2422.0, "ser_p95_ns": 3481.3999999999996, "ser_p99_ns": 3647.3199999999997, "ser_ci_low_ns": 1887.6661290322581, "ser_ci_high_ns": 2186.174462365591, "deser_mean_ns": 2757.3978494623657, "deser_median_ns": 2419.0, "deser_std_ns": 909.3663601386664, "deser_mad_ns": 494.0, "deser_cv": 0.3297914953824939, "deser_min_ns": 1268.0, "deser_max_ns": 4669.0, "deser_p5_ns": 1744.4, "deser_p25_ns": 2061.0, "deser_p50_ns": 2419.0, "deser_p75_ns": 3289.0, "deser_p95_ns": 4458.199999999999, "deser_p99_ns": 4651.5199999999995, "deser_ci_low_ns": 2569.3868279569892, "deser_ci_high_ns": 2949.4946236559135, "total_mean_ns": 4791.89247311828, "total_median_ns": 4087.0, "total_std_ns": 1624.0618192236777, "total_mad_ns": 712.0, "total_cv": 0.3389186690507758, "total_min_ns": 2435.0, "total_max_ns": 8439.0, "total_p5_ns": 3043.0, "total_p25_ns": 3663.0, "total_p50_ns": 4087.0, "total_p75_ns": 5588.0, "total_p95_ns": 7898.0, "total_p99_ns": 8309.28, "total_ci_low_ns": 4461.140053763441, "total_ci_high_ns": 5118.322043010752, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.825440402653855, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.7946276263810363}, {"serializer": "linkedin/goavro", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "2.15.0", "avg_time_ser_ns": 1252.0631578947368, "avg_time_deser_ns": 1475.0315789473684, "avg_time_total_ns": 2727.0947368421052, "median_size_bytes": 288.0, "avg_ops_per_sec": 366690.59805306594, "min_ops_per_sec": 205973.2234809475, "max_ops_per_sec": 651465.7980456026, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1252.0631578947368, "ser_median_ns": 1083.0, "ser_std_ns": 510.90128560047634, "ser_mad_ns": 236.0, "ser_cv": 0.40804753528529963, "ser_min_ns": 525.0, "ser_max_ns": 2583.0, "ser_p5_ns": 686.2, "ser_p25_ns": 878.5, "ser_p50_ns": 1083.0, "ser_p75_ns": 1603.5, "ser_p95_ns": 2254.6, "ser_p99_ns": 2433.5400000000004, "ser_ci_low_ns": 1158.4936842105265, "ser_ci_high_ns": 1353.8013157894736, "deser_mean_ns": 1475.0315789473684, "deser_median_ns": 1277.0, "deser_std_ns": 420.8944491081268, "deser_mad_ns": 163.0, "deser_cv": 0.28534605978299876, "deser_min_ns": 870.0, "deser_max_ns": 2786.0, "deser_p5_ns": 1073.3, "deser_p25_ns": 1175.0, "deser_p50_ns": 1277.0, "deser_p75_ns": 1751.0, "deser_p95_ns": 2378.1, "deser_p99_ns": 2548.1800000000007, "deser_ci_low_ns": 1393.69, "deser_ci_high_ns": 1563.7944736842105, "total_mean_ns": 2727.0947368421052, "total_median_ns": 2385.0, "total_std_ns": 898.598069733878, "total_mad_ns": 376.0, "total_cv": 0.32950746360004635, "total_min_ns": 1535.0, "total_max_ns": 4855.0, "total_p5_ns": 1815.2, "total_p25_ns": 2060.5, "total_p50_ns": 2385.0, "total_p75_ns": 3358.0, "total_p95_ns": 4626.8, "total_p99_ns": 4720.58, "total_ci_low_ns": 2557.198947368421, "total_ci_high_ns": 2905.216052631579, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.21780515117581187, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.31094378582884813}, {"serializer": "vmihailenco/msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "5.4.1", "avg_time_ser_ns": 2361.443298969072, "avg_time_deser_ns": 3299.6494845360826, "avg_time_total_ns": 5661.092783505154, "median_size_bytes": 346.0, "avg_ops_per_sec": 176644.34027891597, "min_ops_per_sec": 96144.60148062686, "max_ops_per_sec": 333111.2591605596, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 2361.443298969072, "ser_median_ns": 2025.0, "ser_std_ns": 841.0400675288921, "ser_mad_ns": 329.0, "ser_cv": 0.3561550971374423, "ser_min_ns": 1175.0, "ser_max_ns": 4397.0, "ser_p5_ns": 1506.8, "ser_p25_ns": 1771.0, "ser_p50_ns": 2025.0, "ser_p75_ns": 2858.0, "ser_p95_ns": 3930.5999999999995, "ser_p99_ns": 4347.08, "ser_ci_low_ns": 2198.7023195876286, "ser_ci_high_ns": 2531.642268041237, "deser_mean_ns": 3299.6494845360826, "deser_median_ns": 2936.0, "deser_std_ns": 1048.4264204952296, "deser_mad_ns": 393.0, "deser_cv": 0.3177387251005645, "deser_min_ns": 1827.0, "deser_max_ns": 6102.0, "deser_p5_ns": 2061.0, "deser_p25_ns": 2599.0, "deser_p50_ns": 2936.0, "deser_p75_ns": 3854.0, "deser_p95_ns": 5205.799999999999, "deser_p99_ns": 6061.679999999999, "deser_ci_low_ns": 3099.7554123711343, "deser_ci_high_ns": 3500.4203608247417, "total_mean_ns": 5661.092783505154, "total_median_ns": 4965.0, "total_std_ns": 1866.2331271980856, "total_mad_ns": 754.0, "total_cv": 0.3296595195605641, "total_min_ns": 3002.0, "total_max_ns": 10401.0, "total_p5_ns": 3602.4, "total_p25_ns": 4426.0, "total_p50_ns": 4965.0, "total_p75_ns": 6631.0, "total_p95_ns": 9179.799999999997, "total_p99_ns": 10047.719999999998, "total_ci_low_ns": 5313.354381443299, "total_ci_high_ns": 6039.193041237113, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.9556920377275718, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.187187433875487}, {"serializer": "ugorji/json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 5234.082474226804, "avg_time_deser_ns": 7443.371134020618, "avg_time_total_ns": 12677.453608247422, "median_size_bytes": 663.0, "avg_ops_per_sec": 78880.19399648537, "min_ops_per_sec": 46257.748172818945, "max_ops_per_sec": 120423.89210019268, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 5234.082474226804, "ser_median_ns": 4505.0, "ser_std_ns": 1582.421928498785, "ser_mad_ns": 480.0, "ser_cv": 0.3023303389449448, "ser_min_ns": 3446.0, "ser_max_ns": 9964.0, "ser_p5_ns": 3766.6, "ser_p25_ns": 4134.0, "ser_p50_ns": 4505.0, "ser_p75_ns": 5861.0, "ser_p95_ns": 7939.399999999999, "ser_p99_ns": 9428.319999999996, "ser_ci_low_ns": 4929.193298969072, "ser_ci_high_ns": 5552.58118556701, "deser_mean_ns": 7443.371134020618, "deser_median_ns": 6780.0, "deser_std_ns": 1937.5160930492273, "deser_mad_ns": 930.0, "deser_cv": 0.26030088493016695, "deser_min_ns": 4858.0, "deser_max_ns": 12212.0, "deser_p5_ns": 5325.4, "deser_p25_ns": 6022.0, "deser_p50_ns": 6780.0, "deser_p75_ns": 8938.0, "deser_p95_ns": 10871.599999999999, "deser_p99_ns": 11607.199999999995, "deser_ci_low_ns": 7052.5716494845365, "deser_ci_high_ns": 7805.39587628866, "total_mean_ns": 12677.453608247422, "total_median_ns": 11287.0, "total_std_ns": 3397.8991641301277, "total_mad_ns": 1461.0, "total_cv": 0.26802694524707993, "total_min_ns": 8304.0, "total_max_ns": 21618.0, "total_p5_ns": 9078.8, "total_p25_ns": 10235.0, "total_p50_ns": 11287.0, "total_p75_ns": 15303.0, "total_p95_ns": 18544.599999999995, "total_p99_ns": 20404.55999999999, "total_ci_low_ns": 12010.649226804124, "total_ci_high_ns": 13418.821907216496, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.080100105690853}, {"serializer": "sonic", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.15.2", "avg_time_ser_ns": 2241.2613636363635, "avg_time_deser_ns": 3071.215909090909, "avg_time_total_ns": 5312.477272727273, "median_size_bytes": 664.0, "avg_ops_per_sec": 188236.09940577284, "min_ops_per_sec": 105540.89709762533, "max_ops_per_sec": 358037.9520229144, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 2241.2613636363635, "ser_median_ns": 2073.0, "ser_std_ns": 624.9909699452159, "ser_mad_ns": 360.0, "ser_cv": 0.2788567991602689, "ser_min_ns": 1173.0, "ser_max_ns": 3774.0, "ser_p5_ns": 1446.25, "ser_p25_ns": 1808.25, "ser_p50_ns": 2073.0, "ser_p75_ns": 2650.0, "ser_p95_ns": 3404.3999999999996, "ser_p99_ns": 3718.3199999999997, "ser_ci_low_ns": 2115.819034090909, "ser_ci_high_ns": 2367.459375, "deser_mean_ns": 3071.215909090909, "deser_median_ns": 2677.5, "deser_std_ns": 1053.068722570676, "deser_mad_ns": 398.0, "deser_cv": 0.3428833249572441, "deser_min_ns": 1620.0, "deser_max_ns": 6825.0, "deser_p5_ns": 2038.85, "deser_p25_ns": 2313.75, "deser_p50_ns": 2677.5, "deser_p75_ns": 3423.25, "deser_p95_ns": 5121.9, "deser_p99_ns": 6088.979999999996, "deser_ci_low_ns": 2861.631534090909, "deser_ci_high_ns": 3301.2309659090906, "total_mean_ns": 5312.477272727273, "total_median_ns": 4764.0, "total_std_ns": 1640.9837740221476, "total_mad_ns": 788.0, "total_cv": 0.3088923848100933, "total_min_ns": 2793.0, "total_max_ns": 9475.0, "total_p5_ns": 3536.0, "total_p25_ns": 4208.0, "total_p50_ns": 4764.0, "total_p75_ns": 6140.75, "total_p95_ns": 8731.8, "total_p99_ns": 9386.26, "total_ci_low_ns": 4980.541761363636, "total_ci_high_ns": 5639.058522727272, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.9356866537717602, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.193471333089436}, {"serializer": "ugorji/cbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 2148.47311827957, "avg_time_deser_ns": 3082.0752688172042, "avg_time_total_ns": 5230.548387096775, "median_size_bytes": 345.0, "avg_ops_per_sec": 191184.54242138306, "min_ops_per_sec": 100130.16921998598, "max_ops_per_sec": 338983.0508474576, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 2148.47311827957, "ser_median_ns": 1846.0, "ser_std_ns": 781.7828091500618, "ser_mad_ns": 371.0, "ser_cv": 0.36387832945105175, "ser_min_ns": 1201.0, "ser_max_ns": 4304.0, "ser_p5_ns": 1303.2, "ser_p25_ns": 1547.0, "ser_p50_ns": 1846.0, "ser_p75_ns": 2689.0, "ser_p95_ns": 3527.7999999999997, "ser_p99_ns": 4123.679999999999, "ser_ci_low_ns": 1995.02688172043, "ser_ci_high_ns": 2310.0459677419353, "deser_mean_ns": 3082.0752688172042, "deser_median_ns": 2569.0, "deser_std_ns": 1159.975751588379, "deser_mad_ns": 488.0, "deser_cv": 0.37636191540303887, "deser_min_ns": 1619.0, "deser_max_ns": 6609.0, "deser_p5_ns": 1865.2, "deser_p25_ns": 2259.0, "deser_p50_ns": 2569.0, "deser_p75_ns": 3891.0, "deser_p95_ns": 5186.0, "deser_p99_ns": 6033.999999999999, "deser_ci_low_ns": 2853.6736559139786, "deser_ci_high_ns": 3310.90188172043, "total_mean_ns": 5230.548387096775, "total_median_ns": 4513.0, "total_std_ns": 1853.343913955019, "total_mad_ns": 848.0, "total_cv": 0.3543307081389454, "total_min_ns": 2950.0, "total_max_ns": 9987.0, "total_p5_ns": 3232.2000000000003, "total_p25_ns": 3846.0, "total_p50_ns": 4513.0, "total_p75_ns": 6788.0, "total_p95_ns": 8447.399999999998, "total_p99_ns": 9874.76, "total_ci_low_ns": 4861.6284946236565, "total_ci_high_ns": 5620.948655913978, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.8813772592084191, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.917510810165449}, {"serializer": "shamaton/msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "3.1.2", "avg_time_ser_ns": 1522.9166666666667, "avg_time_deser_ns": 2159.2708333333335, "avg_time_total_ns": 3682.1875, "median_size_bytes": 346.0, "avg_ops_per_sec": 271577.69668166, "min_ops_per_sec": 159058.3744234134, "max_ops_per_sec": 565610.8597285068, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 1522.9166666666667, "ser_median_ns": 1346.5, "ser_std_ns": 535.8447667329483, "ser_mad_ns": 339.5, "ser_cv": 0.3518542927931808, "ser_min_ns": 691.0, "ser_max_ns": 2855.0, "ser_p5_ns": 801.5, "ser_p25_ns": 1174.75, "ser_p50_ns": 1346.5, "ser_p75_ns": 1903.25, "ser_p95_ns": 2481.75, "ser_p99_ns": 2664.9999999999995, "ser_ci_low_ns": 1408.5661458333334, "ser_ci_high_ns": 1633.3614583333333, "deser_mean_ns": 2159.2708333333335, "deser_median_ns": 1994.5, "deser_std_ns": 629.8067954233294, "deser_mad_ns": 334.0, "deser_cv": 0.29167568315229686, "deser_min_ns": 1068.0, "deser_max_ns": 3831.0, "deser_p5_ns": 1344.5, "deser_p25_ns": 1729.25, "deser_p50_ns": 1994.5, "deser_p75_ns": 2568.25, "deser_p95_ns": 3384.5, "deser_p99_ns": 3678.0499999999997, "deser_ci_low_ns": 2035.9361979166667, "deser_ci_high_ns": 2290.2247395833333, "total_mean_ns": 3682.1875, "total_median_ns": 3327.0, "total_std_ns": 1141.0767612216105, "total_mad_ns": 646.5, "total_cv": 0.3098909985495335, "total_min_ns": 1768.0, "total_max_ns": 6287.0, "total_p5_ns": 2192.25, "total_p25_ns": 2915.25, "total_p50_ns": 3327.0, "total_p75_ns": 4478.25, "total_p95_ns": 5753.75, "total_p99_ns": 6143.549999999999, "total_ci_low_ns": 3455.1856770833333, "total_ci_high_ns": 3902.690625, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.603834219858156, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.2093421512162086}, {"serializer": "goccy/go-json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "0.10.6", "avg_time_ser_ns": 3759.0421052631577, "avg_time_deser_ns": 5103.063157894737, "avg_time_total_ns": 8862.105263157895, "median_size_bytes": 664.0, "avg_ops_per_sec": 112840.00475115809, "min_ops_per_sec": 74979.38067031566, "max_ops_per_sec": 163212.01240411293, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 3759.0421052631577, "ser_median_ns": 3376.0, "ser_std_ns": 922.6431494283204, "ser_mad_ns": 362.0, "ser_cv": 0.24544634606153987, "ser_min_ns": 2648.0, "ser_max_ns": 5784.0, "ser_p5_ns": 2816.2, "ser_p25_ns": 3120.0, "ser_p50_ns": 3376.0, "ser_p75_ns": 4438.5, "ser_p95_ns": 5482.6, "ser_p99_ns": 5646.76, "ser_ci_low_ns": 3580.3834210526315, "ser_ci_high_ns": 3949.040526315789, "deser_mean_ns": 5103.063157894737, "deser_median_ns": 4627.0, "deser_std_ns": 1133.1916122223981, "deser_mad_ns": 448.0, "deser_cv": 0.22206105963420902, "deser_min_ns": 3466.0, "deser_max_ns": 8073.0, "deser_p5_ns": 3856.3, "deser_p25_ns": 4317.0, "deser_p50_ns": 4627.0, "deser_p75_ns": 5868.0, "deser_p95_ns": 7108.1, "deser_p99_ns": 7805.1, "deser_ci_low_ns": 4880.845789473685, "deser_ci_high_ns": 5344.460263157895, "total_mean_ns": 8862.105263157895, "total_median_ns": 8038.0, "total_std_ns": 2031.4567222399069, "total_mad_ns": 804.0, "total_cv": 0.22922958618932313, "total_min_ns": 6127.0, "total_max_ns": 13337.0, "total_p5_ns": 6671.2, "total_p25_ns": 7450.5, "total_p50_ns": 8038.0, "total_p75_ns": 10241.0, "total_p95_ns": 12533.8, "total_p99_ns": 13253.34, "total_ci_low_ns": 8470.800789473684, "total_ci_high_ns": 9267.077105263157, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.083004451184921}, {"serializer": "pelletier/go-toml", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "2.4.3", "avg_time_ser_ns": 5784.061855670103, "avg_time_deser_ns": 7863.134020618557, "avg_time_total_ns": 13647.19587628866, "median_size_bytes": 694.0, "avg_ops_per_sec": 73275.12619185391, "min_ops_per_sec": 41351.36252739528, "max_ops_per_sec": 111358.57461024499, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 5784.061855670103, "ser_median_ns": 5013.0, "ser_std_ns": 1618.0285188465273, "ser_mad_ns": 410.0, "ser_cv": 0.27973914512348746, "ser_min_ns": 3931.0, "ser_max_ns": 10437.0, "ser_p5_ns": 4310.4, "ser_p25_ns": 4683.0, "ser_p50_ns": 5013.0, "ser_p75_ns": 6825.0, "ser_p95_ns": 8747.6, "ser_p99_ns": 10215.239999999998, "ser_ci_low_ns": 5461.824226804124, "ser_ci_high_ns": 6119.253865979382, "deser_mean_ns": 7863.134020618557, "deser_median_ns": 6931.0, "deser_std_ns": 2095.7469662234294, "deser_mad_ns": 819.0, "deser_cv": 0.2665282011889919, "deser_min_ns": 5049.0, "deser_max_ns": 13746.0, "deser_p5_ns": 5777.0, "deser_p25_ns": 6235.0, "deser_p50_ns": 6931.0, "deser_p75_ns": 9325.0, "deser_p95_ns": 11488.8, "deser_p99_ns": 13214.159999999996, "deser_ci_low_ns": 7449.956701030928, "deser_ci_high_ns": 8284.549226804123, "total_mean_ns": 13647.19587628866, "total_median_ns": 12015.0, "total_std_ns": 3633.5874537637706, "total_mad_ns": 1269.0, "total_cv": 0.2662515792036774, "total_min_ns": 8980.0, "total_max_ns": 24183.0, "total_p5_ns": 10144.8, "total_p25_ns": 10880.0, "total_p50_ns": 12015.0, "total_p75_ns": 16371.0, "total_p95_ns": 20279.4, "total_p99_ns": 22766.99999999999, "total_ci_low_ns": 12932.514175257731, "total_ci_high_ns": 14367.146391752576, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.192802657180974}, {"serializer": "fxamacker/cbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "2.9.2", "avg_time_ser_ns": 1451.5051546391753, "avg_time_deser_ns": 3224.4845360824743, "avg_time_total_ns": 4675.98969072165, "median_size_bytes": 345.0, "avg_ops_per_sec": 213858.46978753048, "min_ops_per_sec": 113442.99489506523, "max_ops_per_sec": 370644.92216456635, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 1451.5051546391753, "ser_median_ns": 1214.0, "ser_std_ns": 562.7720105963452, "ser_mad_ns": 266.0, "ser_cv": 0.38771616400924375, "ser_min_ns": 645.0, "ser_max_ns": 3033.0, "ser_p5_ns": 842.8, "ser_p25_ns": 1030.0, "ser_p50_ns": 1214.0, "ser_p75_ns": 1991.0, "ser_p95_ns": 2496.5999999999995, "ser_p99_ns": 2843.8799999999983, "ser_ci_low_ns": 1341.5007731958763, "ser_ci_high_ns": 1556.2458762886597, "deser_mean_ns": 3224.4845360824743, "deser_median_ns": 2824.0, "deser_std_ns": 1031.0676516904907, "deser_mad_ns": 436.0, "deser_cv": 0.31976200851723313, "deser_min_ns": 2053.0, "deser_max_ns": 5782.0, "deser_p5_ns": 2175.2, "deser_p25_ns": 2469.0, "deser_p50_ns": 2824.0, "deser_p75_ns": 3846.0, "deser_p95_ns": 5125.399999999998, "deser_p99_ns": 5486.319999999998, "deser_ci_low_ns": 3018.5842783505154, "deser_ci_high_ns": 3425.040721649484, "total_mean_ns": 4675.98969072165, "total_median_ns": 4025.0, "total_std_ns": 1564.6326811670351, "total_mad_ns": 754.0, "total_cv": 0.3346099509739432, "total_min_ns": 2698.0, "total_max_ns": 8815.0, "total_p5_ns": 3044.0, "total_p25_ns": 3438.0, "total_p50_ns": 4025.0, "total_p75_ns": 6000.0, "total_p95_ns": 7296.999999999998, "total_p99_ns": 8217.879999999996, "total_ci_low_ns": 4371.65206185567, "total_ci_high_ns": 4990.267525773196, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.8046720772099144, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.7457397326522628}, {"serializer": "goccy/go-json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "0.10.6", "avg_time_ser_ns": 259303.61728395062, "avg_time_deser_ns": 295999.4938271605, "avg_time_total_ns": 555303.1111111111, "median_size_bytes": 65958.0, "avg_ops_per_sec": 1800.8182918318084, "min_ops_per_sec": 1418.1621186207522, "max_ops_per_sec": 2057.3210799289814, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 259303.61728395062, "ser_median_ns": 254669.0, "ser_std_ns": 25878.86845312595, "ser_mad_ns": 15404.0, "ser_cv": 0.09980141705770065, "ser_min_ns": 218760.0, "ser_max_ns": 354632.0, "ser_p5_ns": 225923.0, "ser_p25_ns": 241169.0, "ser_p50_ns": 254669.0, "ser_p75_ns": 273679.0, "ser_p95_ns": 309411.0, "ser_p99_ns": 338559.20000000007, "ser_ci_low_ns": 253994.90154320988, "ser_ci_high_ns": 265161.7589506173, "deser_mean_ns": 295999.4938271605, "deser_median_ns": 291248.0, "deser_std_ns": 24020.13733366415, "deser_mad_ns": 13943.0, "deser_cv": 0.08114925138247009, "deser_min_ns": 267309.0, "deser_max_ns": 393559.0, "deser_p5_ns": 270772.0, "deser_p25_ns": 279067.0, "deser_p50_ns": 291248.0, "deser_p75_ns": 305191.0, "deser_p95_ns": 343132.0, "deser_p99_ns": 373038.20000000007, "deser_ci_low_ns": 290661.9922839506, "deser_ci_high_ns": 301343.55987654324, "total_mean_ns": 555303.1111111111, "total_median_ns": 549723.0, "total_std_ns": 43933.41073715993, "total_mad_ns": 26443.0, "total_cv": 0.07911608967803757, "total_min_ns": 486069.0, "total_max_ns": 705138.0, "total_p5_ns": 497697.0, "total_p25_ns": 525211.0, "total_p50_ns": 549723.0, "total_p75_ns": 578657.0, "total_p95_ns": 634134.0, "total_p99_ns": 676704.4000000001, "total_ci_low_ns": 545469.9802469136, "total_ci_high_ns": 565554.563580247, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.018689445605087}, {"serializer": "encoding/json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 300345.9090909091, "avg_time_deser_ns": 680708.625, "avg_time_total_ns": 981054.5340909091, "median_size_bytes": 65958.0, "avg_ops_per_sec": 1019.3113280156712, "min_ops_per_sec": 669.2477320867479, "max_ops_per_sec": 1221.735157139576, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 300345.9090909091, "ser_median_ns": 276173.0, "ser_std_ns": 67662.16792145165, "ser_mad_ns": 24906.0, "ser_cv": 0.22528080414430274, "ser_min_ns": 232442.0, "ser_max_ns": 518889.0, "ser_p5_ns": 238290.65, "ser_p25_ns": 255712.75, "ser_p50_ns": 276173.0, "ser_p75_ns": 322100.0, "ser_p95_ns": 432403.1499999999, "ser_p99_ns": 497249.4899999999, "ser_ci_low_ns": 286865.5559659091, "ser_ci_high_ns": 316184.43920454546, "deser_mean_ns": 680708.625, "deser_median_ns": 639378.0, "deser_std_ns": 107395.78689047013, "deser_mad_ns": 36346.0, "deser_cv": 0.15777056870767597, "deser_min_ns": 585221.0, "deser_max_ns": 1015739.0, "deser_p5_ns": 588796.7, "deser_p25_ns": 608818.75, "deser_p50_ns": 639378.0, "deser_p75_ns": 689588.75, "deser_p95_ns": 914189.7, "deser_p99_ns": 993874.1599999999, "deser_ci_low_ns": 658864.0815340909, "deser_ci_high_ns": 703444.7957386364, "total_mean_ns": 981054.5340909091, "total_median_ns": 917810.5, "total_std_ns": 168526.95353569355, "total_mad_ns": 57989.5, "total_cv": 0.1717814328149031, "total_min_ns": 818508.0, "total_max_ns": 1494215.0, "total_p5_ns": 834613.9, "total_p25_ns": 868148.0, "total_p50_ns": 917810.5, "total_p75_ns": 1000915.0, "total_p95_ns": 1363142.4499999993, "total_p99_ns": 1482640.52, "total_ci_low_ns": 946948.3096590909, "total_ci_high_ns": 1017383.6693181818, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.740876496549306}, {"serializer": "ugorji/msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 23203.29268292683, "avg_time_deser_ns": 46580.35365853659, "avg_time_total_ns": 69783.64634146342, "median_size_bytes": 34635.0, "avg_ops_per_sec": 14330.004985793197, "min_ops_per_sec": 10217.635639113108, "max_ops_per_sec": 18353.675323483527, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 23203.29268292683, "ser_median_ns": 21967.5, "ser_std_ns": 3787.683139809892, "ser_mad_ns": 1468.0, "ser_cv": 0.16323903644058674, "ser_min_ns": 17642.0, "ser_max_ns": 34219.0, "ser_p5_ns": 19299.05, "ser_p25_ns": 20748.0, "ser_p50_ns": 21967.5, "ser_p75_ns": 24961.5, "ser_p95_ns": 32527.400000000005, "ser_p99_ns": 33709.51, "ser_ci_low_ns": 22414.045731707316, "ser_ci_high_ns": 24013.646951219514, "deser_mean_ns": 46580.35365853659, "deser_median_ns": 44223.5, "deser_std_ns": 7268.737690556886, "deser_mad_ns": 2924.5, "deser_cv": 0.1560472843087737, "deser_min_ns": 36259.0, "deser_max_ns": 66649.0, "deser_p5_ns": 39595.3, "deser_p25_ns": 41596.5, "deser_p50_ns": 44223.5, "deser_p75_ns": 48211.75, "deser_p95_ns": 63646.8, "deser_p99_ns": 66099.81999999999, "deser_ci_low_ns": 45107.611890243905, "deser_ci_high_ns": 48268.73536585366, "total_mean_ns": 69783.64634146342, "total_median_ns": 66557.5, "total_std_ns": 9796.015538418518, "total_mad_ns": 4665.0, "total_cv": 0.140376951506445, "total_min_ns": 54485.0, "total_max_ns": 97870.0, "total_p5_ns": 59421.4, "total_p25_ns": 63137.0, "total_p50_ns": 66557.5, "total_p75_ns": 74768.25, "total_p95_ns": 89759.75, "total_p99_ns": 97292.47, "total_ci_low_ns": 67742.99237804877, "total_ci_high_ns": 71932.36310975609, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.7119758838037819, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.4586215040478179}, {"serializer": "ugorji/json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 244923.9880952381, "avg_time_deser_ns": 370069.89285714284, "avg_time_total_ns": 614993.880952381, "median_size_bytes": 65958.0, "avg_ops_per_sec": 1626.03243865028, "min_ops_per_sec": 1273.1895562807078, "max_ops_per_sec": 1802.4740759166032, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 244923.9880952381, "ser_median_ns": 238612.5, "ser_std_ns": 26963.088319008482, "ser_mad_ns": 14640.5, "ser_cv": 0.11008757667511093, "ser_min_ns": 213933.0, "ser_max_ns": 341038.0, "ser_p5_ns": 218805.35, "ser_p25_ns": 224146.75, "ser_p50_ns": 238612.5, "ser_p75_ns": 256309.0, "ser_p95_ns": 299709.24999999994, "ser_p99_ns": 339607.91, "ser_ci_low_ns": 239518.84077380953, "ser_ci_high_ns": 250725.06071428573, "deser_mean_ns": 370069.89285714284, "deser_median_ns": 359890.5, "deser_std_ns": 33111.059202606346, "deser_mad_ns": 15936.5, "deser_cv": 0.08947244788537317, "deser_min_ns": 336248.0, "deser_max_ns": 484690.0, "deser_p5_ns": 339788.55, "deser_p25_ns": 346134.0, "deser_p50_ns": 359890.5, "deser_p75_ns": 384282.75, "deser_p95_ns": 433576.6, "deser_p99_ns": 483236.67, "deser_ci_low_ns": 363412.2568452381, "deser_ci_high_ns": 377295.51160714286, "total_mean_ns": 614993.880952381, "total_median_ns": 595520.0, "total_std_ns": 55673.826084194414, "total_mad_ns": 26203.0, "total_cv": 0.09052744719667422, "total_min_ns": 554793.0, "total_max_ns": 785429.0, "total_p5_ns": 560284.6, "total_p25_ns": 573202.0, "total_p50_ns": 595520.0, "total_p75_ns": 639267.0, "total_p95_ns": 721022.2, "total_p99_ns": 778150.73, "total_ci_low_ns": 603837.8636904762, "total_ci_high_ns": 627229.8931547619, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.148446549930412}, {"serializer": "sonic", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.15.2", "avg_time_ser_ns": 136438.23255813954, "avg_time_deser_ns": 127875.56976744186, "avg_time_total_ns": 264313.8023255814, "median_size_bytes": 65958.0, "avg_ops_per_sec": 3783.381689497249, "min_ops_per_sec": 2718.166868264043, "max_ops_per_sec": 4710.3155911446065, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 136438.23255813954, "ser_median_ns": 133889.0, "ser_std_ns": 18366.302590966086, "ser_mad_ns": 12470.0, "ser_cv": 0.1346125807012325, "ser_min_ns": 103757.0, "ser_max_ns": 192487.0, "ser_p5_ns": 109175.0, "ser_p25_ns": 124769.25, "ser_p50_ns": 133889.0, "ser_p75_ns": 148598.0, "ser_p95_ns": 163389.75, "ser_p99_ns": 190928.95, "ser_ci_low_ns": 132466.9409883721, "ser_ci_high_ns": 140662.47732558142, "deser_mean_ns": 127875.56976744186, "deser_median_ns": 122382.0, "deser_std_ns": 18457.218840615435, "deser_mad_ns": 7964.0, "deser_cv": 0.14433733413021937, "deser_min_ns": 103051.0, "deser_max_ns": 177994.0, "deser_p5_ns": 108952.0, "deser_p25_ns": 115399.75, "deser_p50_ns": 122382.0, "deser_p75_ns": 133228.5, "deser_p95_ns": 171795.5, "deser_p99_ns": 177449.15, "deser_ci_low_ns": 124314.04593023256, "deser_ci_high_ns": 131781.31773255812, "total_mean_ns": 264313.8023255814, "total_median_ns": 259303.5, "total_std_ns": 32794.260204679566, "total_mad_ns": 18256.5, "total_cv": 0.12407320357899297, "total_min_ns": 212300.0, "total_max_ns": 367895.0, "total_p5_ns": 222630.75, "total_p25_ns": 243048.5, "total_p50_ns": 259303.5, "total_p75_ns": 278801.0, "total_p95_ns": 329590.25, "total_p99_ns": 367685.05, "total_ci_low_ns": 257641.79244186045, "total_ci_high_ns": 271006.08953488374, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.681839697364538}, {"serializer": "mongo-bson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.17.9", "avg_time_ser_ns": 133266.66666666666, "avg_time_deser_ns": 266146.39506172837, "avg_time_total_ns": 399413.06172839506, "median_size_bytes": 46739.0, "avg_ops_per_sec": 2503.673754865859, "min_ops_per_sec": 1860.2505385425309, "max_ops_per_sec": 2821.630620335492, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 133266.66666666666, "ser_median_ns": 130108.0, "ser_std_ns": 15070.038458809586, "ser_mad_ns": 10562.0, "ser_cv": 0.11308182935574977, "ser_min_ns": 110998.0, "ser_max_ns": 181501.0, "ser_p5_ns": 113790.0, "ser_p25_ns": 123208.0, "ser_p50_ns": 130108.0, "ser_p75_ns": 141221.0, "ser_p95_ns": 164466.0, "ser_p99_ns": 172061.80000000005, "ser_ci_low_ns": 130134.16172839506, "ser_ci_high_ns": 136547.6685185185, "deser_mean_ns": 266146.39506172837, "deser_median_ns": 257601.0, "deser_std_ns": 26229.17541006532, "deser_mad_ns": 10977.0, "deser_cv": 0.098551683948159, "deser_min_ns": 237754.0, "deser_max_ns": 358590.0, "deser_p5_ns": 240049.0, "deser_p25_ns": 249216.0, "deser_p50_ns": 257601.0, "deser_p75_ns": 276388.0, "deser_p95_ns": 329922.0, "deser_p99_ns": 356566.8, "deser_ci_low_ns": 260824.34259259258, "deser_ci_high_ns": 272273.4564814815, "total_mean_ns": 399413.06172839506, "total_median_ns": 390495.0, "total_std_ns": 36351.752324456684, "total_mad_ns": 18378.0, "total_cv": 0.09101292823812619, "total_min_ns": 354405.0, "total_max_ns": 537562.0, "total_p5_ns": 357749.0, "total_p25_ns": 374723.0, "total_p50_ns": 390495.0, "total_p75_ns": 411619.0, "total_p95_ns": 457179.0, "total_p99_ns": 525957.2000000001, "total_ci_low_ns": 391862.1092592593, "total_ci_high_ns": 407875.44074074074, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.17801308620643}, {"serializer": "kelindar/binary", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.0.19", "avg_time_ser_ns": 52468.294871794875, "avg_time_deser_ns": 45616.02564102564, "avg_time_total_ns": 98084.32051282052, "median_size_bytes": 28633.0, "avg_ops_per_sec": 10195.309451823045, "min_ops_per_sec": 7217.8193524172475, "max_ops_per_sec": 12013.455069678039, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 52468.294871794875, "ser_median_ns": 49933.5, "ser_std_ns": 7449.436515095682, "ser_mad_ns": 3350.0, "ser_cv": 0.14197977146576263, "ser_min_ns": 43931.0, "ser_max_ns": 77170.0, "ser_p5_ns": 45439.2, "ser_p25_ns": 47297.5, "ser_p50_ns": 49933.5, "ser_p75_ns": 54770.75, "ser_p95_ns": 67596.45, "ser_p99_ns": 74486.55000000002, "ser_ci_low_ns": 50932.10993589744, "ser_ci_high_ns": 54165.287500000006, "deser_mean_ns": 45616.02564102564, "deser_median_ns": 44704.5, "deser_std_ns": 4085.1511376589015, "deser_mad_ns": 1992.0, "deser_cv": 0.08955517453026077, "deser_min_ns": 39080.0, "deser_max_ns": 61376.0, "deser_p5_ns": 41313.8, "deser_p25_ns": 42896.5, "deser_p50_ns": 44704.5, "deser_p75_ns": 47096.75, "deser_p95_ns": 53001.849999999984, "deser_p99_ns": 59928.40000000001, "deser_ci_low_ns": 44764.31314102565, "deser_ci_high_ns": 46581.00288461539, "total_mean_ns": 98084.32051282052, "total_median_ns": 94667.5, "total_std_ns": 10320.249661600032, "total_mad_ns": 5524.5, "total_cv": 0.10521813892008439, "total_min_ns": 83240.0, "total_max_ns": 138546.0, "total_p5_ns": 86958.75, "total_p25_ns": 90314.75, "total_p50_ns": 94667.5, "total_p75_ns": 101990.5, "total_p95_ns": 118073.54999999999, "total_p99_ns": 128814.74000000005, "total_ci_low_ns": 96012.72275641026, "total_ci_high_ns": 100303.3141025641, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.31577339683406}, {"serializer": "shamaton/msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "3.1.2", "avg_time_ser_ns": 38763.83720930233, "avg_time_deser_ns": 43832.37209302326, "avg_time_total_ns": 82596.20930232559, "median_size_bytes": 34635.0, "avg_ops_per_sec": 12107.093151693149, "min_ops_per_sec": 8468.762967793295, "max_ops_per_sec": 15032.394810817312, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 38763.83720930233, "ser_median_ns": 37583.0, "ser_std_ns": 5808.804276796438, "ser_mad_ns": 3266.0, "ser_cv": 0.149851116271907, "ser_min_ns": 31189.0, "ser_max_ns": 55541.0, "ser_p5_ns": 32484.75, "ser_p25_ns": 34377.75, "ser_p50_ns": 37583.0, "ser_p75_ns": 40994.0, "ser_p95_ns": 52422.0, "ser_p99_ns": 55443.25, "ser_ci_low_ns": 37523.65319767442, "ser_ci_high_ns": 40056.49825581395, "deser_mean_ns": 43832.37209302326, "deser_median_ns": 41216.5, "deser_std_ns": 6709.854752607868, "deser_mad_ns": 3093.5, "deser_cv": 0.15307989123581717, "deser_min_ns": 35246.0, "deser_max_ns": 62655.0, "deser_p5_ns": 36916.75, "deser_p25_ns": 39281.25, "deser_p50_ns": 41216.5, "deser_p75_ns": 47255.75, "deser_p95_ns": 58912.25, "deser_p99_ns": 62026.850000000006, "deser_ci_low_ns": 42518.49941860465, "deser_ci_high_ns": 45254.237499999996, "total_mean_ns": 82596.20930232559, "total_median_ns": 79092.0, "total_std_ns": 11856.121245625454, "total_mad_ns": 6188.5, "total_cv": 0.14354316433855557, "total_min_ns": 66523.0, "total_max_ns": 118081.0, "total_p5_ns": 69718.0, "total_p25_ns": 74582.5, "total_p50_ns": 79092.0, "total_p75_ns": 86975.0, "total_p95_ns": 111321.75, "total_p99_ns": 116136.20000000001, "total_ci_low_ns": 80122.87209302327, "total_ci_high_ns": 85211.39418604651, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.937026391429318, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.512670476159595}, {"serializer": "hamba/avro", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "2.31.0", "avg_time_ser_ns": 35032.90588235294, "avg_time_deser_ns": 34343.77647058824, "avg_time_total_ns": 69376.68235294118, "median_size_bytes": 29138.0, "avg_ops_per_sec": 14414.064871431628, "min_ops_per_sec": 9419.655052231987, "max_ops_per_sec": 21956.78903917091, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 35032.90588235294, "ser_median_ns": 33682.0, "ser_std_ns": 10018.604818778209, "ser_mad_ns": 5999.0, "ser_cv": 0.2859769855353296, "ser_min_ns": 18392.0, "ser_max_ns": 64663.0, "ser_p5_ns": 21022.4, "ser_p25_ns": 28199.0, "ser_p50_ns": 33682.0, "ser_p75_ns": 40865.0, "ser_p95_ns": 54509.399999999994, "ser_p99_ns": 59521.35999999998, "ser_ci_low_ns": 33023.62911764706, "ser_ci_high_ns": 37109.73264705882, "deser_mean_ns": 34343.77647058824, "deser_median_ns": 32217.0, "deser_std_ns": 5914.289520540325, "deser_mad_ns": 2309.0, "deser_cv": 0.1722084793326465, "deser_min_ns": 26990.0, "deser_max_ns": 53963.0, "deser_p5_ns": 28640.8, "deser_p25_ns": 30452.0, "deser_p50_ns": 32217.0, "deser_p75_ns": 36924.0, "deser_p95_ns": 44969.399999999994, "deser_p99_ns": 53422.88, "deser_ci_low_ns": 33115.15941176471, "deser_ci_high_ns": 35594.50352941176, "total_mean_ns": 69376.68235294118, "total_median_ns": 68169.0, "total_std_ns": 13339.013668480107, "total_mad_ns": 9707.0, "total_cv": 0.19226940833838546, "total_min_ns": 45544.0, "total_max_ns": 106161.0, "total_p5_ns": 50540.0, "total_p25_ns": 59816.0, "total_p50_ns": 68169.0, "total_p75_ns": 78369.0, "total_p95_ns": 92441.2, "total_p99_ns": 99808.91999999997, "total_ci_low_ns": 66636.85588235295, "total_ci_high_ns": 72086.02235294117, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.593654990085922, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.1774804846619649}, {"serializer": "segmentio/encoding/json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "0.5.4", "avg_time_ser_ns": 238164.05128205128, "avg_time_deser_ns": 297490.6538461539, "avg_time_total_ns": 535654.7051282051, "median_size_bytes": 65958.0, "avg_ops_per_sec": 1866.874295000652, "min_ops_per_sec": 1463.7238011736138, "max_ops_per_sec": 2158.326174884853, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 238164.05128205128, "ser_median_ns": 231789.0, "ser_std_ns": 25460.13285684592, "ser_mad_ns": 13233.0, "ser_cv": 0.10690166177385928, "ser_min_ns": 200152.0, "ser_max_ns": 341253.0, "ser_p5_ns": 206335.45, "ser_p25_ns": 221038.0, "ser_p50_ns": 231789.0, "ser_p75_ns": 250274.0, "ser_p95_ns": 285839.29999999993, "ser_p99_ns": 308039.05000000016, "ser_ci_low_ns": 232769.31025641024, "ser_ci_high_ns": 244123.77916666665, "deser_mean_ns": 297490.6538461539, "deser_median_ns": 293683.5, "deser_std_ns": 28117.956156361877, "deser_mad_ns": 14286.0, "deser_cv": 0.09451710765644075, "deser_min_ns": 263170.0, "deser_max_ns": 417949.0, "deser_p5_ns": 268654.0, "deser_p25_ns": 277051.0, "deser_p50_ns": 293683.5, "deser_p75_ns": 305625.75, "deser_p95_ns": 349050.6999999999, "deser_p99_ns": 393742.5100000001, "deser_ci_low_ns": 291610.09551282047, "deser_ci_high_ns": 303748.1333333333, "total_mean_ns": 535654.7051282051, "total_median_ns": 525809.5, "total_std_ns": 46145.25851994938, "total_mad_ns": 23203.5, "total_cv": 0.08614739696705331, "total_min_ns": 463322.0, "total_max_ns": 683189.0, "total_p5_ns": 482589.05, "total_p25_ns": 505268.75, "total_p50_ns": 525809.5, "total_p75_ns": 557820.5, "total_p95_ns": 632041.25, "total_p99_ns": 659060.2800000001, "total_ci_low_ns": 526172.6612179488, "total_ci_high_ns": 545908.1323717949, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.81822144176646}, {"serializer": "ugorji/cbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 25657.25641025641, "avg_time_deser_ns": 48532.11538461538, "avg_time_total_ns": 74189.3717948718, "median_size_bytes": 34534.0, "avg_ops_per_sec": 13479.019646707982, "min_ops_per_sec": 10624.28286090689, "max_ops_per_sec": 16430.343558483808, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 25657.25641025641, "ser_median_ns": 25708.0, "ser_std_ns": 3225.239926385413, "ser_mad_ns": 2286.5, "ser_cv": 0.12570478599949345, "ser_min_ns": 19833.0, "ser_max_ns": 35353.0, "ser_p5_ns": 21587.3, "ser_p25_ns": 23069.25, "ser_p50_ns": 25708.0, "ser_p75_ns": 27442.25, "ser_p95_ns": 31934.699999999997, "ser_p99_ns": 34986.48, "ser_ci_low_ns": 24984.161217948717, "ser_ci_high_ns": 26360.86923076923, "deser_mean_ns": 48532.11538461538, "deser_median_ns": 47701.0, "deser_std_ns": 4095.641912426571, "deser_mad_ns": 2688.5, "deser_cv": 0.08439034400146679, "deser_min_ns": 41030.0, "deser_max_ns": 61868.0, "deser_p5_ns": 42724.25, "deser_p25_ns": 45704.0, "deser_p50_ns": 47701.0, "deser_p75_ns": 51623.75, "deser_p95_ns": 55940.35, "deser_p99_ns": 58145.82000000002, "deser_ci_low_ns": 47657.202884615384, "deser_ci_high_ns": 49417.55641025641, "total_mean_ns": 74189.3717948718, "total_median_ns": 73682.5, "total_std_ns": 6780.443706718121, "total_mad_ns": 4767.0, "total_cv": 0.09139373393625104, "total_min_ns": 60863.0, "total_max_ns": 94124.0, "total_p5_ns": 64898.95, "total_p25_ns": 68628.0, "total_p50_ns": 73682.5, "total_p75_ns": 78356.75, "total_p95_ns": 85701.94999999998, "total_p99_ns": 92106.6, "total_ci_low_ns": 72735.61314102563, "total_ci_high_ns": 75656.5157051282, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.8498991645059061, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.2344257053199814}, {"serializer": "linkedin/goavro", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "2.15.0", "avg_time_ser_ns": 41232.01204819277, "avg_time_deser_ns": 75734.44578313253, "avg_time_total_ns": 116966.4578313253, "median_size_bytes": 28835.0, "avg_ops_per_sec": 8549.459550549762, "min_ops_per_sec": 5700.636761126218, "max_ops_per_sec": 10601.755650735762, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 41232.01204819277, "ser_median_ns": 37864.0, "ser_std_ns": 10388.558244640692, "ser_mad_ns": 5953.0, "ser_cv": 0.25195370607911016, "ser_min_ns": 27824.0, "ser_max_ns": 71219.0, "ser_p5_ns": 29759.5, "ser_p25_ns": 32725.0, "ser_p50_ns": 37864.0, "ser_p75_ns": 46824.0, "ser_p95_ns": 61201.999999999985, "ser_p99_ns": 67012.39999999997, "ser_ci_low_ns": 39119.21355421687, "ser_ci_high_ns": 43609.225, "deser_mean_ns": 75734.44578313253, "deser_median_ns": 71077.0, "deser_std_ns": 11758.60100589892, "deser_mad_ns": 4055.0, "deser_cv": 0.15526093687369108, "deser_min_ns": 64833.0, "deser_max_ns": 113358.0, "deser_p5_ns": 65923.5, "deser_p25_ns": 68152.0, "deser_p50_ns": 71077.0, "deser_p75_ns": 78380.5, "deser_p95_ns": 103007.09999999995, "deser_p99_ns": 112917.65999999999, "deser_ci_low_ns": 73319.84277108434, "deser_ci_high_ns": 78454.74006024096, "total_mean_ns": 116966.4578313253, "total_median_ns": 111391.0, "total_std_ns": 18933.367162364633, "total_mad_ns": 10389.0, "total_cv": 0.16187005671034355, "total_min_ns": 94324.0, "total_max_ns": 175419.0, "total_p5_ns": 97833.9, "total_p25_ns": 101994.0, "total_p50_ns": 111391.0, "total_p75_ns": 123554.0, "total_p95_ns": 152633.59999999998, "total_p99_ns": 174860.58, "total_ci_low_ns": 112759.76325301205, "total_ci_high_ns": 120988.89487951805, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.131685964159856}, {"serializer": "protobuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.36.11", "avg_time_ser_ns": 20855.876404494382, "avg_time_deser_ns": 35032.13483146067, "avg_time_total_ns": 55888.011235955055, "median_size_bytes": 29432.0, "avg_ops_per_sec": 17892.925117304207, "min_ops_per_sec": 12276.867925454859, "max_ops_per_sec": 24874.384358987114, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 20855.876404494382, "ser_median_ns": 20419.0, "ser_std_ns": 3834.7211965154793, "ser_mad_ns": 2475.0, "ser_cv": 0.18386766022880285, "ser_min_ns": 13629.0, "ser_max_ns": 29664.0, "ser_p5_ns": 15539.0, "ser_p25_ns": 18091.0, "ser_p50_ns": 20419.0, "ser_p75_ns": 23217.0, "ser_p95_ns": 28061.399999999998, "ser_p99_ns": 29579.52, "ser_ci_low_ns": 20050.561516853933, "ser_ci_high_ns": 21650.812078651685, "deser_mean_ns": 35032.13483146067, "deser_median_ns": 33080.0, "deser_std_ns": 6404.675210328445, "deser_mad_ns": 2655.0, "deser_cv": 0.1828228636690652, "deser_min_ns": 26573.0, "deser_max_ns": 53899.0, "deser_p5_ns": 28635.6, "deser_p25_ns": 30827.0, "deser_p50_ns": 33080.0, "deser_p75_ns": 36986.0, "deser_p95_ns": 48077.99999999999, "deser_p99_ns": 53036.600000000006, "deser_ci_low_ns": 33785.76404494382, "deser_ci_high_ns": 36423.502808988764, "total_mean_ns": 55888.011235955055, "total_median_ns": 53783.0, "total_std_ns": 9187.864922244873, "total_mad_ns": 4697.0, "total_cv": 0.16439777904163355, "total_min_ns": 40202.0, "total_max_ns": 81454.0, "total_p5_ns": 44548.8, "total_p25_ns": 49484.0, "total_p50_ns": 53783.0, "total_p75_ns": 59358.0, "total_p95_ns": 73322.0, "total_p99_ns": 77251.12000000002, "total_ci_low_ns": 54010.54494382023, "total_ci_high_ns": 57889.25814606741, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "fxamacker/cbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "2.9.2", "avg_time_ser_ns": 53997.07594936709, "avg_time_deser_ns": 140024.40506329114, "avg_time_total_ns": 194021.48101265822, "median_size_bytes": 34534.0, "avg_ops_per_sec": 5154.068481390257, "min_ops_per_sec": 4099.620785077381, "max_ops_per_sec": 6079.692610741601, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 53997.07594936709, "ser_median_ns": 52210.0, "ser_std_ns": 10527.39460642024, "ser_mad_ns": 5781.0, "ser_cv": 0.19496230900154202, "ser_min_ns": 37537.0, "ser_max_ns": 91895.0, "ser_p5_ns": 40824.5, "ser_p25_ns": 46705.0, "ser_p50_ns": 52210.0, "ser_p75_ns": 59924.5, "ser_p95_ns": 71656.29999999999, "ser_p99_ns": 89271.86, "ser_ci_low_ns": 51846.164240506325, "ser_ci_high_ns": 56528.642405063285, "deser_mean_ns": 140024.40506329114, "deser_median_ns": 137057.0, "deser_std_ns": 11555.802755369255, "deser_mad_ns": 5261.0, "deser_cv": 0.08252706197998859, "deser_min_ns": 126867.0, "deser_max_ns": 180210.0, "deser_p5_ns": 127570.7, "deser_p25_ns": 132688.5, "deser_p50_ns": 137057.0, "deser_p75_ns": 144025.5, "deser_p95_ns": 160339.29999999993, "deser_p99_ns": 177030.72, "deser_ci_low_ns": 137699.39556962025, "deser_ci_high_ns": 142507.39778481013, "total_mean_ns": 194021.48101265822, "total_median_ns": 190542.0, "total_std_ns": 17095.182533925297, "total_mad_ns": 10383.0, "total_cv": 0.08810974148171762, "total_min_ns": 164482.0, "total_max_ns": 243925.0, "total_p5_ns": 173347.6, "total_p25_ns": 180940.0, "total_p50_ns": 190542.0, "total_p75_ns": 204095.0, "total_p95_ns": 229054.99999999997, "total_p99_ns": 239227.06, "total_ci_low_ns": 190323.74556962025, "total_ci_high_ns": 197629.12151898732, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.190810691690512}, {"serializer": "encoding/gob", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 60674.9375, "avg_time_deser_ns": 73136.8125, "avg_time_total_ns": 133811.75, "median_size_bytes": 32541.0, "avg_ops_per_sec": 7473.185277077686, "min_ops_per_sec": 5758.942197497164, "max_ops_per_sec": 9675.765111126162, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 60674.9375, "ser_median_ns": 60297.0, "ser_std_ns": 9808.163317067683, "ser_mad_ns": 8051.5, "ser_cv": 0.16165098344052983, "ser_min_ns": 42257.0, "ser_max_ns": 85373.0, "ser_p5_ns": 47642.05, "ser_p25_ns": 51974.0, "ser_p50_ns": 60297.0, "ser_p75_ns": 67081.0, "ser_p95_ns": 76606.65, "ser_p99_ns": 83812.74999999999, "ser_ci_low_ns": 58508.5209375, "ser_ci_high_ns": 62935.76625, "deser_mean_ns": 73136.8125, "deser_median_ns": 71884.5, "deser_std_ns": 8746.346039366845, "deser_mad_ns": 5457.5, "deser_cv": 0.11958883276963765, "deser_min_ns": 58319.0, "deser_max_ns": 103625.0, "deser_p5_ns": 62029.25, "deser_p25_ns": 66728.75, "deser_p50_ns": 71884.5, "deser_p75_ns": 77974.25, "deser_p95_ns": 90820.7, "deser_p99_ns": 95418.47999999994, "deser_ci_low_ns": 71327.3296875, "deser_ci_high_ns": 75186.8821875, "total_mean_ns": 133811.75, "total_median_ns": 131753.5, "total_std_ns": 15915.105636796123, "total_mad_ns": 12917.5, "total_cv": 0.11893653312804087, "total_min_ns": 103351.0, "total_max_ns": 173643.0, "total_p5_ns": 112600.55, "total_p25_ns": 121009.5, "total_p50_ns": 131753.5, "total_p75_ns": 144975.25, "total_p95_ns": 159412.85, "total_p99_ns": 166825.29999999996, "total_ci_low_ns": 130619.155625, "total_ci_high_ns": 137062.3140625, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.051861354065074}, {"serializer": "jsoniter", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.1.12", "avg_time_ser_ns": 245432.2077922078, "avg_time_deser_ns": 521836.3896103896, "avg_time_total_ns": 767268.5974025974, "median_size_bytes": 65958.0, "avg_ops_per_sec": 1303.3245507313327, "min_ops_per_sec": 933.2928906414055, "max_ops_per_sec": 1465.334579844616, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 245432.2077922078, "ser_median_ns": 237571.0, "ser_std_ns": 30588.034716612234, "ser_mad_ns": 15024.0, "ser_cv": 0.12462926113800525, "ser_min_ns": 204767.0, "ser_max_ns": 372375.0, "ser_p5_ns": 206725.2, "ser_p25_ns": 226089.0, "ser_p50_ns": 237571.0, "ser_p75_ns": 260004.0, "ser_p95_ns": 298640.2, "ser_p99_ns": 344571.9199999998, "ser_ci_low_ns": 239110.46655844155, "ser_ci_high_ns": 252324.12467532468, "deser_mean_ns": 521836.3896103896, "deser_median_ns": 502925.0, "deser_std_ns": 52321.65140293659, "deser_mad_ns": 20804.0, "deser_cv": 0.10026447454536598, "deser_min_ns": 469739.0, "deser_max_ns": 714268.0, "deser_p5_ns": 474620.4, "deser_p25_ns": 487234.0, "deser_p50_ns": 502925.0, "deser_p75_ns": 535053.0, "deser_p95_ns": 633884.8, "deser_p99_ns": 702740.32, "deser_ci_low_ns": 510894.7711038961, "deser_ci_high_ns": 533898.221103896, "total_mean_ns": 767268.5974025974, "total_median_ns": 744109.0, "total_std_ns": 74308.79624336823, "total_mad_ns": 28712.0, "total_cv": 0.09684847847927402, "total_min_ns": 682438.0, "total_max_ns": 1071475.0, "total_p5_ns": 694713.8, "total_p25_ns": 720591.0, "total_p50_ns": 744109.0, "total_p75_ns": 787451.0, "total_p95_ns": 912354.4, "total_p99_ns": 1055199.5999999999, "total_ci_low_ns": 751602.5120129869, "total_ci_high_ns": 784392.6538961038, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.876276073632233}, {"serializer": "pelletier/go-toml", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "2.4.3", "avg_time_ser_ns": 390826.60759493674, "avg_time_deser_ns": 492467.417721519, "avg_time_total_ns": 883294.0253164558, "median_size_bytes": 70056.0, "avg_ops_per_sec": 1132.1258508928918, "min_ops_per_sec": 981.7550638926195, "max_ops_per_sec": 1257.7493079234432, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 390826.60759493674, "ser_median_ns": 385061.0, "ser_std_ns": 40996.32348163321, "ser_mad_ns": 21619.0, "ser_cv": 0.1048964494355075, "ser_min_ns": 336568.0, "ser_max_ns": 523675.0, "ser_p5_ns": 342539.2, "ser_p25_ns": 361668.5, "ser_p50_ns": 385061.0, "ser_p75_ns": 403867.0, "ser_p95_ns": 477047.19999999995, "ser_p99_ns": 521410.66, "ser_ci_low_ns": 382336.3174050633, "ser_ci_high_ns": 399497.25221518986, "deser_mean_ns": 492467.417721519, "deser_median_ns": 481824.0, "deser_std_ns": 37446.36740405094, "deser_mad_ns": 23751.0, "deser_cv": 0.07603826376433731, "deser_min_ns": 445515.0, "deser_max_ns": 629240.0, "deser_p5_ns": 452664.9, "deser_p25_ns": 461794.5, "deser_p50_ns": 481824.0, "deser_p75_ns": 514713.0, "deser_p95_ns": 555868.6, "deser_p99_ns": 594183.6799999999, "deser_ci_low_ns": 484631.65316455695, "deser_ci_high_ns": 500830.80854430376, "total_mean_ns": 883294.0253164558, "total_median_ns": 873770.0, "total_std_ns": 61080.53279513705, "total_mad_ns": 42370.0, "total_cv": 0.06915085016368572, "total_min_ns": 795071.0, "total_max_ns": 1018584.0, "total_p5_ns": 796946.8, "total_p25_ns": 837679.0, "total_p50_ns": 873770.0, "total_p75_ns": 922788.0, "total_p95_ns": 997207.8999999999, "total_p99_ns": 1009467.36, "total_ci_low_ns": 868974.4446202532, "total_ci_high_ns": 897276.9351265823, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.42581772288354}, {"serializer": "vmihailenco/msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "5.4.1", "avg_time_ser_ns": 82306.3625, "avg_time_deser_ns": 150328.9375, "avg_time_total_ns": 232635.3, "median_size_bytes": 34635.0, "avg_ops_per_sec": 4298.573776206793, "min_ops_per_sec": 3457.2527977818268, "max_ops_per_sec": 4879.048390401936, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 82306.3625, "ser_median_ns": 80368.5, "ser_std_ns": 7640.937516610979, "ser_mad_ns": 4853.0, "ser_cv": 0.09283532019302856, "ser_min_ns": 72139.0, "ser_max_ns": 100395.0, "ser_p5_ns": 73296.4, "ser_p25_ns": 75934.75, "ser_p50_ns": 80368.5, "ser_p75_ns": 86193.5, "ser_p95_ns": 98743.3, "ser_p99_ns": 100294.67, "ser_ci_low_ns": 80701.7528125, "ser_ci_high_ns": 84034.819375, "deser_mean_ns": 150328.9375, "deser_median_ns": 146807.0, "deser_std_ns": 13575.83608106115, "deser_mad_ns": 8430.0, "deser_cv": 0.09030753697079213, "deser_min_ns": 132784.0, "deser_max_ns": 188852.0, "deser_p5_ns": 134246.35, "deser_p25_ns": 139765.5, "deser_p50_ns": 146807.0, "deser_p75_ns": 158988.0, "deser_p95_ns": 172168.09999999998, "deser_p99_ns": 187302.81, "deser_ci_low_ns": 147571.6784375, "deser_ci_high_ns": 153362.8165625, "total_mean_ns": 232635.3, "total_median_ns": 228226.0, "total_std_ns": 20416.580276514032, "total_mad_ns": 13501.5, "total_cv": 0.08776217657644404, "total_min_ns": 204958.0, "total_max_ns": 289247.0, "total_p5_ns": 208489.4, "total_p25_ns": 216072.5, "total_p50_ns": 228226.0, "total_p75_ns": 243094.75, "total_p95_ns": 270286.85, "total_p99_ns": 287597.48, "total_ci_low_ns": 228120.381875, "total_ci_high_ns": 237396.96531250002, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.318377860691303}, {"serializer": "goccy/go-yaml", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.19.2", "avg_time_ser_ns": 3726526.5760869565, "avg_time_deser_ns": 5650272.293478261, "avg_time_total_ns": 9376798.869565217, "median_size_bytes": 78757.0, "avg_ops_per_sec": 106.64620345497161, "min_ops_per_sec": 83.84198167566417, "max_ops_per_sec": 122.72588927179366, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 3726526.5760869565, "ser_median_ns": 3787277.0, "ser_std_ns": 479256.1539619963, "ser_mad_ns": 372668.0, "ser_cv": 0.12860666472563836, "ser_min_ns": 3020239.0, "ser_max_ns": 5125949.0, "ser_p5_ns": 3075412.0, "ser_p25_ns": 3236791.25, "ser_p50_ns": 3787277.0, "ser_p75_ns": 4044200.75, "ser_p95_ns": 4454258.4, "ser_p99_ns": 5048729.13, "ser_ci_low_ns": 3626246.908967391, "ser_ci_high_ns": 3819485.8845108696, "deser_mean_ns": 5650272.293478261, "deser_median_ns": 5548049.0, "deser_std_ns": 591544.8962556247, "deser_mad_ns": 294809.0, "deser_cv": 0.10469316619278796, "deser_min_ns": 4504006.0, "deser_max_ns": 7143356.0, "deser_p5_ns": 4766977.05, "deser_p25_ns": 5307036.25, "deser_p50_ns": 5548049.0, "deser_p75_ns": 5886597.5, "deser_p95_ns": 6900610.5, "deser_p99_ns": 7070113.74, "deser_ci_low_ns": 5536683.243478261, "deser_ci_high_ns": 5771279.351358696, "total_mean_ns": 9376798.869565217, "total_median_ns": 9329290.0, "total_std_ns": 821080.6160681555, "total_mad_ns": 581516.5, "total_cv": 0.08756513043413795, "total_min_ns": 8148240.0, "total_max_ns": 11927199.0, "total_p5_ns": 8263071.1, "total_p25_ns": 8700090.25, "total_p50_ns": 9329290.0, "total_p75_ns": 9858666.75, "total_p95_ns": 10720185.65, "total_p99_ns": 11582253.490000002, "total_ci_low_ns": 9221252.466576086, "total_ci_high_ns": 9539598.233695652, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.853532016826152}, {"serializer": "pelletier/go-toml", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "2.4.3", "avg_time_ser_ns": 384290.40476190473, "avg_time_deser_ns": 511171.13095238095, "avg_time_total_ns": 895461.5357142857, "median_size_bytes": 70056.0, "avg_ops_per_sec": 1116.7425513172118, "min_ops_per_sec": 879.1626151922817, "max_ops_per_sec": 1254.4249841315238, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 384290.40476190473, "ser_median_ns": 374481.5, "ser_std_ns": 36646.481381456295, "ser_mad_ns": 17589.0, "ser_cv": 0.0953614270024811, "ser_min_ns": 332698.0, "ser_max_ns": 498507.0, "ser_p5_ns": 338762.85, "ser_p25_ns": 363220.75, "ser_p50_ns": 374481.5, "ser_p75_ns": 405056.5, "ser_p95_ns": 460338.89999999997, "ser_p99_ns": 488781.06, "ser_ci_low_ns": 376815.64702380955, "ser_ci_high_ns": 392497.9011904762, "deser_mean_ns": 511171.13095238095, "deser_median_ns": 496520.0, "deser_std_ns": 41656.64277514329, "deser_mad_ns": 21889.0, "deser_cv": 0.08149255748760954, "deser_min_ns": 464480.0, "deser_max_ns": 676349.0, "deser_p5_ns": 471423.85, "deser_p25_ns": 481626.5, "deser_p50_ns": 496520.0, "deser_p75_ns": 530089.5, "deser_p95_ns": 588638.75, "deser_p99_ns": 620594.5800000001, "deser_ci_low_ns": 502766.618452381, "deser_ci_high_ns": 520259.47440476186, "total_mean_ns": 895461.5357142857, "total_median_ns": 882457.0, "total_std_ns": 70315.14497893286, "total_mad_ns": 38807.0, "total_cv": 0.07852391440001312, "total_min_ns": 797178.0, "total_max_ns": 1137446.0, "total_p5_ns": 819186.55, "total_p25_ns": 842808.5, "total_p50_ns": 882457.0, "total_p75_ns": 919993.75, "total_p95_ns": 1036124.6499999999, "total_p99_ns": 1112741.8800000001, "total_ci_low_ns": 881413.5681547619, "total_ci_high_ns": 911199.3872023809, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.175587495016792}, {"serializer": "goccy/go-yaml", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.19.2", "avg_time_ser_ns": 3721157.9895833335, "avg_time_deser_ns": 5731168.333333333, "avg_time_total_ns": 9452326.322916666, "median_size_bytes": 78757.0, "avg_ops_per_sec": 105.79406231199962, "min_ops_per_sec": 84.4507790035433, "max_ops_per_sec": 123.13944002339649, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 3721157.9895833335, "ser_median_ns": 3691833.5, "ser_std_ns": 495353.3108842084, "ser_mad_ns": 435922.5, "ser_cv": 0.1331180541839005, "ser_min_ns": 2991424.0, "ser_max_ns": 4731667.0, "ser_p5_ns": 3038432.0, "ser_p25_ns": 3279680.25, "ser_p50_ns": 3691833.5, "ser_p75_ns": 4163581.0, "ser_p95_ns": 4530990.25, "ser_p99_ns": 4672836.35, "ser_ci_low_ns": 3629982.2976562497, "ser_ci_high_ns": 3819169.8242187495, "deser_mean_ns": 5731168.333333333, "deser_median_ns": 5646685.5, "deser_std_ns": 716767.2491078209, "deser_mad_ns": 420676.0, "deser_cv": 0.1250647699421068, "deser_min_ns": 4461821.0, "deser_max_ns": 7488497.0, "deser_p5_ns": 4638191.5, "deser_p25_ns": 5264202.25, "deser_p50_ns": 5646685.5, "deser_p75_ns": 6162564.75, "deser_p95_ns": 7219759.75, "deser_p99_ns": 7474815.1, "deser_ci_low_ns": 5584609.333593749, "deser_ci_high_ns": 5868498.744270833, "total_mean_ns": 9452326.322916666, "total_median_ns": 9286579.5, "total_std_ns": 848994.273712962, "total_mad_ns": 613398.5, "total_cv": 0.08981855309571997, "total_min_ns": 8120875.0, "total_max_ns": 11841217.0, "total_p5_ns": 8328839.5, "total_p25_ns": 8807031.5, "total_p50_ns": 9286579.5, "total_p75_ns": 10023881.25, "total_p95_ns": 10829500.0, "total_p99_ns": 11751514.2, "total_ci_low_ns": 9286308.073958334, "total_ci_high_ns": 9619484.451302083, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.10285583550283}, {"serializer": "jsoniter", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.1.12", "avg_time_ser_ns": 250638.3950617284, "avg_time_deser_ns": 532948.5308641975, "avg_time_total_ns": 783586.925925926, "median_size_bytes": 65959.0, "avg_ops_per_sec": 1276.1825994204146, "min_ops_per_sec": 988.443123005816, "max_ops_per_sec": 1450.134935055707, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 250638.3950617284, "ser_median_ns": 243096.0, "ser_std_ns": 27634.64210537157, "ser_mad_ns": 16635.0, "ser_cv": 0.11025701827752919, "ser_min_ns": 215177.0, "ser_max_ns": 333866.0, "ser_p5_ns": 220668.0, "ser_p25_ns": 228650.0, "ser_p50_ns": 243096.0, "ser_p75_ns": 266296.0, "ser_p95_ns": 296982.0, "ser_p99_ns": 328825.2, "ser_ci_low_ns": 244840.23580246913, "ser_ci_high_ns": 256994.4299382716, "deser_mean_ns": 532948.5308641975, "deser_median_ns": 514962.0, "deser_std_ns": 52079.88483956316, "deser_mad_ns": 21091.0, "deser_cv": 0.0977202897156195, "deser_min_ns": 471808.0, "deser_max_ns": 714710.0, "deser_p5_ns": 484756.0, "deser_p25_ns": 498146.0, "deser_p50_ns": 514962.0, "deser_p75_ns": 547507.0, "deser_p95_ns": 641192.0, "deser_p99_ns": 689334.8, "deser_ci_low_ns": 522153.4672839506, "deser_ci_high_ns": 544994.1172839507, "total_mean_ns": 783586.925925926, "total_median_ns": 757930.0, "total_std_ns": 73645.14585883747, "total_mad_ns": 35131.0, "total_cv": 0.09398465367682678, "total_min_ns": 689591.0, "total_max_ns": 1011692.0, "total_p5_ns": 710543.0, "total_p25_ns": 727304.0, "total_p50_ns": 757930.0, "total_p75_ns": 818171.0, "total_p95_ns": 952583.0, "total_p99_ns": 997528.0, "total_ci_low_ns": 769153.5648148148, "total_ci_high_ns": 799961.935802469, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.491172938528079}, {"serializer": "sonic", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.15.2", "avg_time_ser_ns": 142835.64705882352, "avg_time_deser_ns": 152241.50588235294, "avg_time_total_ns": 295077.1529411765, "median_size_bytes": 65959.0, "avg_ops_per_sec": 3388.944179623929, "min_ops_per_sec": 2256.9491464218327, "max_ops_per_sec": 4695.210415854786, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 142835.64705882352, "ser_median_ns": 138059.0, "ser_std_ns": 29127.13134024779, "ser_mad_ns": 15730.0, "ser_cv": 0.2039206034348867, "ser_min_ns": 102042.0, "ser_max_ns": 213614.0, "ser_p5_ns": 105334.0, "ser_p25_ns": 123503.0, "ser_p50_ns": 138059.0, "ser_p75_ns": 154331.0, "ser_p95_ns": 202706.0, "ser_p99_ns": 213430.88, "ser_ci_low_ns": 136780.4579411765, "ser_ci_high_ns": 148932.57294117645, "deser_mean_ns": 152241.50588235294, "deser_median_ns": 146183.0, "deser_std_ns": 28733.790288581476, "deser_mad_ns": 12561.0, "deser_cv": 0.18873821644135583, "deser_min_ns": 107788.0, "deser_max_ns": 232748.0, "deser_p5_ns": 114918.0, "deser_p25_ns": 135514.0, "deser_p50_ns": 146183.0, "deser_p75_ns": 160036.0, "deser_p95_ns": 216451.19999999998, "deser_p99_ns": 230170.87999999998, "deser_ci_low_ns": 146070.9726470588, "deser_ci_high_ns": 158316.16558823528, "total_mean_ns": 295077.1529411765, "total_median_ns": 285097.0, "total_std_ns": 55318.38966566653, "total_mad_ns": 27529.0, "total_cv": 0.1874709346836291, "total_min_ns": 212983.0, "total_max_ns": 443076.0, "total_p5_ns": 221490.2, "total_p25_ns": 262152.0, "total_p50_ns": 285097.0, "total_p75_ns": 317278.0, "total_p95_ns": 413039.39999999997, "total_p99_ns": 438914.63999999996, "total_ci_low_ns": 284162.3317647059, "total_ci_high_ns": 307388.4523529412, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.5049346847311815}, {"serializer": "protobuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.36.11", "avg_time_ser_ns": 22104.623529411765, "avg_time_deser_ns": 48359.74117647059, "avg_time_total_ns": 70464.36470588236, "median_size_bytes": 29432.0, "avg_ops_per_sec": 14191.570507645833, "min_ops_per_sec": 8732.938022338856, "max_ops_per_sec": 20886.419649943608, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 22104.623529411765, "ser_median_ns": 21022.0, "ser_std_ns": 4956.486070403754, "ser_mad_ns": 3051.0, "ser_cv": 0.22422847707896035, "ser_min_ns": 14188.0, "ser_max_ns": 36775.0, "ser_p5_ns": 16161.2, "ser_p25_ns": 18502.0, "ser_p50_ns": 21022.0, "ser_p75_ns": 24651.0, "ser_p95_ns": 31324.6, "ser_p99_ns": 36698.56, "ser_ci_low_ns": 21129.489705882355, "ser_ci_high_ns": 23175.137647058826, "deser_mean_ns": 48359.74117647059, "deser_median_ns": 44818.0, "deser_std_ns": 11662.642597661317, "deser_mad_ns": 6283.0, "deser_cv": 0.24116428901269163, "deser_min_ns": 33690.0, "deser_max_ns": 85010.0, "deser_p5_ns": 35876.0, "deser_p25_ns": 39217.0, "deser_p50_ns": 44818.0, "deser_p75_ns": 54365.0, "deser_p95_ns": 74390.0, "deser_p99_ns": 80141.35999999999, "deser_ci_low_ns": 45990.05705882353, "deser_ci_high_ns": 51038.08764705883, "total_mean_ns": 70464.36470588236, "total_median_ns": 66200.0, "total_std_ns": 15485.116051079698, "total_mad_ns": 9354.0, "total_cv": 0.21975811625797576, "total_min_ns": 47878.0, "total_max_ns": 114509.0, "total_p5_ns": 52736.6, "total_p25_ns": 58667.0, "total_p50_ns": 66200.0, "total_p75_ns": 78272.0, "total_p95_ns": 101071.4, "total_p99_ns": 109439.59999999998, "total_ci_low_ns": 67178.82088235294, "total_ci_high_ns": 73901.7544117647, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "hamba/avro", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "2.31.0", "avg_time_ser_ns": 35853.0, "avg_time_deser_ns": 34677.848837209305, "avg_time_total_ns": 70530.8488372093, "median_size_bytes": 29138.0, "avg_ops_per_sec": 14178.19318051989, "min_ops_per_sec": 10515.357679891482, "max_ops_per_sec": 17144.424633109313, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 35853.0, "ser_median_ns": 34390.5, "ser_std_ns": 7475.936083823334, "ser_mad_ns": 4669.0, "ser_cv": 0.2085163329100308, "ser_min_ns": 26081.0, "ser_max_ns": 57549.0, "ser_p5_ns": 27832.5, "ser_p25_ns": 29936.5, "ser_p50_ns": 34390.5, "ser_p75_ns": 39250.75, "ser_p95_ns": 51978.5, "ser_p99_ns": 57464.0, "ser_ci_low_ns": 34313.079941860466, "ser_ci_high_ns": 37529.658139534884, "deser_mean_ns": 34677.848837209305, "deser_median_ns": 33998.0, "deser_std_ns": 2903.5678317118013, "deser_mad_ns": 1535.0, "deser_cv": 0.08372975628742793, "deser_min_ns": 30176.0, "deser_max_ns": 42568.0, "deser_p5_ns": 31210.5, "deser_p25_ns": 32602.75, "deser_p50_ns": 33998.0, "deser_p75_ns": 35963.75, "deser_p95_ns": 41695.25, "deser_p99_ns": 42438.8, "deser_ci_low_ns": 34090.454941860466, "deser_ci_high_ns": 35323.93168604651, "total_mean_ns": 70530.8488372093, "total_median_ns": 68128.0, "total_std_ns": 9048.799912003205, "total_mad_ns": 6189.0, "total_cv": 0.12829563320425283, "total_min_ns": 58328.0, "total_max_ns": 95099.0, "total_p5_ns": 60154.0, "total_p25_ns": 62735.0, "total_p50_ns": 68128.0, "total_p75_ns": 75600.25, "total_p95_ns": 90403.0, "total_p99_ns": 92804.85000000002, "total_ci_low_ns": 68706.825, "total_ci_high_ns": 72522.66308139534, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.12093023255813953, "effect_vs_fastest_cliffs_label": "negligible", "effect_vs_fastest_hedges_g": 0.0052266709851199016}, {"serializer": "ugorji/json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 257318.4, "avg_time_deser_ns": 406183.7625, "avg_time_total_ns": 663502.1625, "median_size_bytes": 65958.0, "avg_ops_per_sec": 1507.1540931111886, "min_ops_per_sec": 1100.4392953667104, "max_ops_per_sec": 1682.9407032672611, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 257318.4, "ser_median_ns": 249129.5, "ser_std_ns": 24308.661917467227, "ser_mad_ns": 9237.5, "ser_cv": 0.09446919426464344, "ser_min_ns": 230893.0, "ser_max_ns": 343866.0, "ser_p5_ns": 233962.85, "ser_p25_ns": 241848.0, "ser_p50_ns": 249129.5, "ser_p75_ns": 265881.75, "ser_p95_ns": 301471.55, "ser_p99_ns": 340274.66, "ser_ci_low_ns": 252391.794375, "ser_ci_high_ns": 262897.025, "deser_mean_ns": 406183.7625, "deser_median_ns": 394607.0, "deser_std_ns": 40787.333492754944, "deser_mad_ns": 17638.0, "deser_cv": 0.10041596257249437, "deser_min_ns": 362855.0, "deser_max_ns": 569408.0, "deser_p5_ns": 370413.15, "deser_p25_ns": 379005.25, "deser_p50_ns": 394607.0, "deser_p75_ns": 415335.25, "deser_p95_ns": 488103.14999999997, "deser_p99_ns": 542430.2899999998, "deser_ci_low_ns": 398114.0053125, "deser_ci_high_ns": 415218.19999999995, "total_mean_ns": 663502.1625, "total_median_ns": 643040.0, "total_std_ns": 62458.93244333113, "total_mad_ns": 24720.5, "total_cv": 0.09413523568332173, "total_min_ns": 594198.0, "total_max_ns": 908728.0, "total_p5_ns": 610542.05, "total_p25_ns": 619714.25, "total_p50_ns": 643040.0, "total_p75_ns": 673772.75, "total_p95_ns": 800799.1, "total_p99_ns": 853259.7299999995, "total_ci_low_ns": 651411.4825, "total_ci_high_ns": 678424.6609375, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.152687827367776}, {"serializer": "vmihailenco/msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "5.4.1", "avg_time_ser_ns": 95125.58536585367, "avg_time_deser_ns": 145472.9024390244, "avg_time_total_ns": 240598.48780487804, "median_size_bytes": 34635.0, "avg_ops_per_sec": 4156.302099500251, "min_ops_per_sec": 3255.070586205662, "max_ops_per_sec": 4676.174888940846, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 95125.58536585367, "ser_median_ns": 92416.0, "ser_std_ns": 8762.70069557765, "ser_mad_ns": 4166.0, "ser_cv": 0.09211718027149313, "ser_min_ns": 84607.0, "ser_max_ns": 121682.0, "ser_p5_ns": 86701.65, "ser_p25_ns": 88840.5, "ser_p50_ns": 92416.0, "ser_p75_ns": 97878.75, "ser_p95_ns": 113168.1, "ser_p99_ns": 119673.2, "ser_ci_low_ns": 93390.94268292682, "ser_ci_high_ns": 96994.66890243904, "deser_mean_ns": 145472.9024390244, "deser_median_ns": 141119.0, "deser_std_ns": 13587.340487425363, "deser_mad_ns": 4168.5, "deser_cv": 0.09340117822369398, "deser_min_ns": 129243.0, "deser_max_ns": 195791.0, "deser_p5_ns": 132328.2, "deser_p25_ns": 137223.75, "deser_p50_ns": 141119.0, "deser_p75_ns": 148617.75, "deser_p95_ns": 176190.65, "deser_p99_ns": 189654.43999999997, "deser_ci_low_ns": 142729.86646341463, "deser_ci_high_ns": 148622.0667682927, "total_mean_ns": 240598.48780487804, "total_median_ns": 234602.5, "total_std_ns": 20458.507827418423, "total_mad_ns": 9506.5, "total_cv": 0.0850317390357415, "total_min_ns": 213850.0, "total_max_ns": 307213.0, "total_p5_ns": 220316.9, "total_p25_ns": 226823.75, "total_p50_ns": 234602.5, "total_p75_ns": 247878.75, "total_p95_ns": 280973.7, "total_p99_ns": 305078.64999999997, "total_ci_low_ns": 236397.0868902439, "total_ci_high_ns": 245025.1286585366, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.357819132210942}, {"serializer": "linkedin/goavro", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "2.15.0", "avg_time_ser_ns": 41234.12790697674, "avg_time_deser_ns": 88523.81395348837, "avg_time_total_ns": 129757.94186046511, "median_size_bytes": 28835.0, "avg_ops_per_sec": 7706.657378053573, "min_ops_per_sec": 5085.280148083358, "max_ops_per_sec": 9803.441007793735, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 41234.12790697674, "ser_median_ns": 39677.0, "ser_std_ns": 8683.950872048574, "ser_mad_ns": 5908.5, "ser_cv": 0.21060105579629015, "ser_min_ns": 29549.0, "ser_max_ns": 64447.0, "ser_p5_ns": 31018.5, "ser_p25_ns": 34207.75, "ser_p50_ns": 39677.0, "ser_p75_ns": 46180.75, "ser_p95_ns": 59033.5, "ser_p99_ns": 61721.05000000002, "ser_ci_low_ns": 39447.712499999994, "ser_ci_high_ns": 43050.19011627907, "deser_mean_ns": 88523.81395348837, "deser_median_ns": 83478.0, "deser_std_ns": 14962.545291895973, "deser_mad_ns": 7945.0, "deser_cv": 0.1690228270074028, "deser_min_ns": 71065.0, "deser_max_ns": 136890.0, "deser_p5_ns": 73786.0, "deser_p25_ns": 77621.25, "deser_p50_ns": 83478.0, "deser_p75_ns": 95297.0, "deser_p95_ns": 122299.0, "deser_p99_ns": 135330.25, "deser_ci_low_ns": 85604.3636627907, "deser_ci_high_ns": 91831.89505813953, "total_mean_ns": 129757.94186046511, "total_median_ns": 126557.0, "total_std_ns": 20632.96260518998, "total_mad_ns": 13784.5, "total_cv": 0.15901117349239083, "total_min_ns": 102005.0, "total_max_ns": 196646.0, "total_p5_ns": 106746.0, "total_p25_ns": 112536.75, "total_p50_ns": 126557.0, "total_p75_ns": 140210.25, "total_p95_ns": 170128.5, "total_p99_ns": 187691.25000000006, "total_ci_low_ns": 125735.62005813954, "total_ci_high_ns": 134130.74622093025, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.9887824897400821, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.2333509238167926}, {"serializer": "goccy/go-json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "0.10.6", "avg_time_ser_ns": 254724.22784810126, "avg_time_deser_ns": 320746.89873417723, "avg_time_total_ns": 575471.1265822785, "median_size_bytes": 65959.0, "avg_ops_per_sec": 1737.7066438398, "min_ops_per_sec": 1239.403103465371, "max_ops_per_sec": 2002.5993739874357, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 254724.22784810126, "ser_median_ns": 250152.0, "ser_std_ns": 26511.216291991455, "ser_mad_ns": 13473.0, "ser_cv": 0.10407811033900077, "ser_min_ns": 217226.0, "ser_max_ns": 350553.0, "ser_p5_ns": 221586.8, "ser_p25_ns": 236552.0, "ser_p50_ns": 250152.0, "ser_p75_ns": 261691.5, "ser_p95_ns": 311636.3999999999, "ser_p99_ns": 343053.3, "ser_ci_low_ns": 249215.77310126583, "ser_ci_high_ns": 260899.71265822783, "deser_mean_ns": 320746.89873417723, "deser_median_ns": 309815.0, "deser_std_ns": 32083.243066377818, "deser_mad_ns": 11012.0, "deser_cv": 0.1000266664868588, "deser_min_ns": 282125.0, "deser_max_ns": 456287.0, "deser_p5_ns": 291474.1, "deser_p25_ns": 301334.0, "deser_p50_ns": 309815.0, "deser_p75_ns": 325764.0, "deser_p95_ns": 382965.29999999993, "deser_p99_ns": 440506.04, "deser_ci_low_ns": 314183.36139240506, "deser_ci_high_ns": 328205.1693037975, "total_mean_ns": 575471.1265822785, "total_median_ns": 561864.0, "total_std_ns": 55545.18299855304, "total_mad_ns": 23822.0, "total_cv": 0.09652123352988314, "total_min_ns": 499351.0, "total_max_ns": 806840.0, "total_p5_ns": 523250.1, "total_p25_ns": 538638.0, "total_p50_ns": 561864.0, "total_p75_ns": 586331.5, "total_p95_ns": 692070.4, "total_p99_ns": 759732.6799999999, "total_ci_low_ns": 563278.8287974683, "total_ci_high_ns": 588124.4623417722, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.528186988099284}, {"serializer": "ugorji/msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 33893.30487804878, "avg_time_deser_ns": 59199.21951219512, "avg_time_total_ns": 93092.5243902439, "median_size_bytes": 34635.0, "avg_ops_per_sec": 10742.001106426114, "min_ops_per_sec": 7438.926414139912, "max_ops_per_sec": 13306.896964696802, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 33893.30487804878, "ser_median_ns": 32510.0, "ser_std_ns": 5543.118979150001, "ser_mad_ns": 3116.5, "ser_cv": 0.16354613393691325, "ser_min_ns": 26064.0, "ser_max_ns": 53146.0, "ser_p5_ns": 28038.8, "ser_p25_ns": 30144.0, "ser_p50_ns": 32510.0, "ser_p75_ns": 36071.0, "ser_p95_ns": 48494.20000000002, "ser_p99_ns": 51697.719999999994, "ser_ci_low_ns": 32786.22042682926, "ser_ci_high_ns": 35152.27713414634, "deser_mean_ns": 59199.21951219512, "deser_median_ns": 57150.0, "deser_std_ns": 7219.285715880471, "deser_mad_ns": 3246.0, "deser_cv": 0.12194900161467986, "deser_min_ns": 48913.0, "deser_max_ns": 85603.0, "deser_p5_ns": 51171.6, "deser_p25_ns": 54348.75, "deser_p50_ns": 57150.0, "deser_p75_ns": 61745.5, "deser_p95_ns": 74268.40000000001, "deser_p99_ns": 79782.33999999998, "deser_ci_low_ns": 57767.74634146342, "deser_ci_high_ns": 60836.96432926829, "total_mean_ns": 93092.5243902439, "total_median_ns": 90347.0, "total_std_ns": 11022.77776515029, "total_mad_ns": 6334.0, "total_cv": 0.11840669094913359, "total_min_ns": 75149.0, "total_max_ns": 134428.0, "total_p5_ns": 79993.4, "total_p25_ns": 85084.5, "total_p50_ns": 90347.0, "total_p75_ns": 99668.0, "total_p95_ns": 112948.15, "total_p99_ns": 121493.10999999996, "total_ci_low_ns": 90752.70670731708, "total_ci_high_ns": 95507.49085365853, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.7426111908177905, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.6709583443934677}, {"serializer": "segmentio/encoding/json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "0.5.4", "avg_time_ser_ns": 237075.05952380953, "avg_time_deser_ns": 477334.45238095237, "avg_time_total_ns": 714409.5119047619, "median_size_bytes": 65959.0, "avg_ops_per_sec": 1399.7573987135129, "min_ops_per_sec": 1114.7265408586293, "max_ops_per_sec": 1609.261622489753, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 237075.05952380953, "ser_median_ns": 229678.0, "ser_std_ns": 26430.819931007245, "ser_mad_ns": 11340.5, "ser_cv": 0.11148713822574319, "ser_min_ns": 192918.0, "ser_max_ns": 335856.0, "ser_p5_ns": 201813.8, "ser_p25_ns": 220629.0, "ser_p50_ns": 229678.0, "ser_p75_ns": 249973.25, "ser_p95_ns": 289386.05, "ser_p99_ns": 301000.1500000001, "ser_ci_low_ns": 231539.96875, "ser_ci_high_ns": 242635.23422619049, "deser_mean_ns": 477334.45238095237, "deser_median_ns": 457733.5, "deser_std_ns": 52164.061345739196, "deser_mad_ns": 21979.5, "deser_cv": 0.10928199522482396, "deser_min_ns": 421416.0, "deser_max_ns": 614756.0, "deser_p5_ns": 426000.6, "deser_p25_ns": 439656.25, "deser_p50_ns": 457733.5, "deser_p75_ns": 507755.0, "deser_p95_ns": 584979.2, "deser_p99_ns": 608174.1, "deser_ci_low_ns": 466158.66398809524, "deser_ci_high_ns": 489054.09464285715, "total_mean_ns": 714409.5119047619, "total_median_ns": 688329.5, "total_std_ns": 71379.94856957404, "total_mad_ns": 31258.0, "total_cv": 0.0999146111300513, "total_min_ns": 621403.0, "total_max_ns": 897081.0, "total_p5_ns": 637218.75, "total_p25_ns": 663651.75, "total_p50_ns": 688329.5, "total_p75_ns": 756197.0, "total_p95_ns": 863132.0, "total_p99_ns": 886147.41, "total_ci_low_ns": 699417.7392857143, "total_ci_high_ns": 730130.975595238, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.446011043237}, {"serializer": "shamaton/msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "3.1.2", "avg_time_ser_ns": 58775.0, "avg_time_deser_ns": 87361.17582417582, "avg_time_total_ns": 146136.17582417582, "median_size_bytes": 34635.0, "avg_ops_per_sec": 6842.932589143109, "min_ops_per_sec": 4727.104270465998, "max_ops_per_sec": 8221.723437667004, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 58775.0, "ser_median_ns": 53110.0, "ser_std_ns": 11322.320693607335, "ser_mad_ns": 3732.0, "ser_cv": 0.19263837845354886, "ser_min_ns": 46361.0, "ser_max_ns": 87222.0, "ser_p5_ns": 48513.5, "ser_p25_ns": 50536.5, "ser_p50_ns": 53110.0, "ser_p75_ns": 65269.5, "ser_p95_ns": 83734.0, "ser_p99_ns": 87072.6, "ser_ci_low_ns": 56501.40082417583, "ser_ci_high_ns": 61119.81071428572, "deser_mean_ns": 87361.17582417582, "deser_median_ns": 81441.0, "deser_std_ns": 14166.6983627829, "deser_mad_ns": 5066.0, "deser_cv": 0.16216240485699243, "deser_min_ns": 74527.0, "deser_max_ns": 126678.0, "deser_p5_ns": 75137.5, "deser_p25_ns": 78128.5, "deser_p50_ns": 81441.0, "deser_p75_ns": 90146.0, "deser_p95_ns": 121899.0, "deser_p99_ns": 125485.49999999999, "deser_ci_low_ns": 84700.35686813187, "deser_ci_high_ns": 90416.70467032967, "total_mean_ns": 146136.17582417582, "total_median_ns": 134273.0, "total_std_ns": 23969.799095989016, "total_mad_ns": 8974.0, "total_cv": 0.16402371938915625, "total_min_ns": 121629.0, "total_max_ns": 211546.0, "total_p5_ns": 124227.0, "total_p25_ns": 129232.5, "total_p50_ns": 134273.0, "total_p75_ns": 156879.0, "total_p95_ns": 204610.5, "total_p99_ns": 211151.8, "total_ci_low_ns": 141203.5802197802, "total_ci_high_ns": 151105.16126373626, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.7077546619320993}, {"serializer": "kelindar/binary", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.0.19", "avg_time_ser_ns": 51169.07594936709, "avg_time_deser_ns": 68032.84810126582, "avg_time_total_ns": 119201.92405063291, "median_size_bytes": 28633.0, "avg_ops_per_sec": 8389.126333021555, "min_ops_per_sec": 7152.871162484621, "max_ops_per_sec": 9215.995281410416, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 51169.07594936709, "ser_median_ns": 50368.0, "ser_std_ns": 3119.09093335991, "ser_mad_ns": 1725.0, "ser_cv": 0.06095656166326549, "ser_min_ns": 46398.0, "ser_max_ns": 59460.0, "ser_p5_ns": 47413.8, "ser_p25_ns": 48956.5, "ser_p50_ns": 50368.0, "ser_p75_ns": 52880.5, "ser_p95_ns": 57531.2, "ser_p99_ns": 59112.9, "ser_ci_low_ns": 50521.13860759494, "ser_ci_high_ns": 51860.30664556962, "deser_mean_ns": 68032.84810126582, "deser_median_ns": 66603.0, "deser_std_ns": 5019.747662185379, "deser_mad_ns": 2552.0, "deser_cv": 0.07378417635424529, "deser_min_ns": 61511.0, "deser_max_ns": 86502.0, "deser_p5_ns": 62593.4, "deser_p25_ns": 64422.0, "deser_p50_ns": 66603.0, "deser_p75_ns": 70427.5, "deser_p95_ns": 77973.2, "deser_p99_ns": 81698.76, "deser_ci_low_ns": 66940.4329113924, "deser_ci_high_ns": 69160.15348101266, "total_mean_ns": 119201.92405063291, "total_median_ns": 117072.0, "total_std_ns": 7453.659592944333, "total_mad_ns": 4222.0, "total_cv": 0.06252969196854803, "total_min_ns": 108507.0, "total_max_ns": 139804.0, "total_p5_ns": 109945.4, "total_p25_ns": 113959.0, "total_p50_ns": 117072.0, "total_p75_ns": 123481.0, "total_p95_ns": 133522.69999999998, "total_p99_ns": 139740.04, "total_ci_low_ns": 117674.49588607595, "total_ci_high_ns": 120833.82310126582, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.9922561429635145, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.9467100474712282}, {"serializer": "ugorji/cbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 39939.163043478264, "avg_time_deser_ns": 70800.28260869565, "avg_time_total_ns": 110739.44565217392, "median_size_bytes": 34534.0, "avg_ops_per_sec": 9030.205940717286, "min_ops_per_sec": 5821.50113228197, "max_ops_per_sec": 11915.542633811543, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 39939.163043478264, "ser_median_ns": 35889.5, "ser_std_ns": 10152.64528434969, "ser_mad_ns": 3697.0, "ser_cv": 0.2542027551578233, "ser_min_ns": 28184.0, "ser_max_ns": 71070.0, "ser_p5_ns": 29649.05, "ser_p25_ns": 32731.75, "ser_p50_ns": 35889.5, "ser_p75_ns": 46811.75, "ser_p95_ns": 59209.65, "ser_p99_ns": 62225.710000000036, "ser_ci_low_ns": 38013.49755434783, "ser_ci_high_ns": 41908.55516304348, "deser_mean_ns": 70800.28260869565, "deser_median_ns": 63892.0, "deser_std_ns": 15516.496986512177, "deser_mad_ns": 4984.5, "deser_cv": 0.21915868715199804, "deser_min_ns": 55740.0, "deser_max_ns": 110818.0, "deser_p5_ns": 57796.85, "deser_p25_ns": 60300.5, "deser_p50_ns": 63892.0, "deser_p75_ns": 73941.75, "deser_p95_ns": 103608.05, "deser_p99_ns": 110613.25, "deser_ci_low_ns": 67761.33179347825, "deser_ci_high_ns": 74259.17635869564, "total_mean_ns": 110739.44565217392, "total_median_ns": 100406.5, "total_std_ns": 23758.56210469666, "total_mad_ns": 7959.5, "total_cv": 0.21454470866073236, "total_min_ns": 83924.0, "total_max_ns": 171777.0, "total_p5_ns": 87884.0, "total_p25_ns": 95030.75, "total_p50_ns": 100406.5, "total_p75_ns": 119858.5, "total_p95_ns": 160750.70000000004, "total_p99_ns": 168884.11000000002, "total_ci_low_ns": 105993.68342391304, "total_ci_high_ns": 115624.88016304348, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.8682864450127877, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.9838428429863393}, {"serializer": "encoding/json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 270133.69620253163, "avg_time_deser_ns": 682345.8227848101, "avg_time_total_ns": 952479.5189873418, "median_size_bytes": 65959.0, "avg_ops_per_sec": 1049.8913415620539, "min_ops_per_sec": 752.53831172545, "max_ops_per_sec": 1187.2705599642868, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 270133.69620253163, "ser_median_ns": 259144.0, "ser_std_ns": 31630.90858247164, "ser_mad_ns": 11849.0, "ser_cv": 0.11709353193300437, "ser_min_ns": 232210.0, "ser_max_ns": 363387.0, "ser_p5_ns": 233816.3, "ser_p25_ns": 249711.0, "ser_p50_ns": 259144.0, "ser_p75_ns": 285622.0, "ser_p95_ns": 343344.29999999993, "ser_p99_ns": 357775.68, "ser_ci_low_ns": 263548.57594936714, "ser_ci_high_ns": 277356.30221518985, "deser_mean_ns": 682345.8227848101, "deser_median_ns": 657723.0, "deser_std_ns": 74778.53971643226, "deser_mad_ns": 24020.0, "deser_cv": 0.10959038250024579, "deser_min_ns": 610058.0, "deser_max_ns": 1005397.0, "deser_p5_ns": 618660.7, "deser_p25_ns": 639708.5, "deser_p50_ns": 657723.0, "deser_p75_ns": 694559.5, "deser_p95_ns": 833515.2999999996, "deser_p99_ns": 969698.74, "deser_ci_low_ns": 666514.5702531645, "deser_ci_high_ns": 699267.5382911393, "total_mean_ns": 952479.5189873418, "total_median_ns": 923183.0, "total_std_ns": 97567.5879988816, "total_mad_ns": 37041.0, "total_cv": 0.10243536585711954, "total_min_ns": 842268.0, "total_max_ns": 1328836.0, "total_p5_ns": 867112.2, "total_p25_ns": 892393.5, "total_p50_ns": 923183.0, "total_p75_ns": 976017.0, "total_p95_ns": 1149932.7999999996, "total_p99_ns": 1316079.1, "total_ci_low_ns": 933307.4550632912, "total_ci_high_ns": 974052.9541139241, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.795291627282943}, {"serializer": "fxamacker/cbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "2.9.2", "avg_time_ser_ns": 57706.5, "avg_time_deser_ns": 198178.05952380953, "avg_time_total_ns": 255884.55952380953, "median_size_bytes": 34534.0, "avg_ops_per_sec": 3908.0122765553274, "min_ops_per_sec": 2706.528417195116, "max_ops_per_sec": 4764.1053248405215, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 57706.5, "ser_median_ns": 52065.0, "ser_std_ns": 13560.815012202647, "ser_mad_ns": 7452.0, "ser_cv": 0.23499631778400434, "ser_min_ns": 38476.0, "ser_max_ns": 93351.0, "ser_p5_ns": 41871.9, "ser_p25_ns": 48605.25, "ser_p50_ns": 52065.0, "ser_p75_ns": 67867.0, "ser_p95_ns": 82594.9, "ser_p99_ns": 85426.99000000002, "ser_ci_low_ns": 54902.57261904762, "ser_ci_high_ns": 60525.50178571428, "deser_mean_ns": 198178.05952380953, "deser_median_ns": 187272.0, "deser_std_ns": 29564.429453314817, "deser_mad_ns": 11466.0, "deser_cv": 0.14918114308089128, "deser_min_ns": 169638.0, "deser_max_ns": 290534.0, "deser_p5_ns": 173159.85, "deser_p25_ns": 177650.0, "deser_p50_ns": 187272.0, "deser_p75_ns": 203635.5, "deser_p95_ns": 279716.7999999999, "deser_p99_ns": 288779.38, "deser_ci_low_ns": 192185.19285714286, "deser_ci_high_ns": 204781.3770833333, "total_mean_ns": 255884.55952380953, "total_median_ns": 240553.5, "total_std_ns": 39454.75745233926, "total_mad_ns": 15092.0, "total_cv": 0.15418967649225462, "total_min_ns": 209903.0, "total_max_ns": 369477.0, "total_p5_ns": 219990.1, "total_p25_ns": 228226.75, "total_p50_ns": 240553.5, "total_p75_ns": 273889.75, "total_p95_ns": 355720.09999999986, "total_p99_ns": 366357.03, "total_ci_low_ns": 247811.18333333332, "total_ci_high_ns": 264590.9511904762, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.172483713314757}, {"serializer": "encoding/gob", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 56223.528735632186, "avg_time_deser_ns": 71626.2643678161, "avg_time_total_ns": 127849.79310344828, "median_size_bytes": 32541.0, "avg_ops_per_sec": 7821.6786724939075, "min_ops_per_sec": 6234.997038376407, "max_ops_per_sec": 9713.736194352434, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 56223.528735632186, "ser_median_ns": 52900.0, "ser_std_ns": 10250.722552909272, "ser_mad_ns": 5944.0, "ser_cv": 0.18232086785425797, "ser_min_ns": 43045.0, "ser_max_ns": 83808.0, "ser_p5_ns": 44502.2, "ser_p25_ns": 48999.0, "ser_p50_ns": 52900.0, "ser_p75_ns": 61475.0, "ser_p95_ns": 77777.7, "ser_p99_ns": 81493.74, "ser_ci_low_ns": 54228.37586206897, "ser_ci_high_ns": 58360.11954022988, "deser_mean_ns": 71626.2643678161, "deser_median_ns": 70008.0, "deser_std_ns": 7429.581470355233, "deser_mad_ns": 4151.0, "deser_cv": 0.10372705509535933, "deser_min_ns": 59509.0, "deser_max_ns": 92697.0, "deser_p5_ns": 62104.8, "deser_p25_ns": 66568.0, "deser_p50_ns": 70008.0, "deser_p75_ns": 75818.0, "deser_p95_ns": 87876.60000000002, "deser_p99_ns": 91929.88, "deser_ci_low_ns": 70131.08275862069, "deser_ci_high_ns": 73203.38247126437, "total_mean_ns": 127849.79310344828, "total_median_ns": 125201.0, "total_std_ns": 15176.860760318366, "total_mad_ns": 10681.0, "total_cv": 0.11870852812439184, "total_min_ns": 102947.0, "total_max_ns": 160385.0, "total_p5_ns": 106794.8, "total_p25_ns": 116476.5, "total_p50_ns": 125201.0, "total_p75_ns": 137547.5, "total_p95_ns": 155521.2, "total_p99_ns": 160140.76, "total_ci_low_ns": 124775.37385057472, "total_ci_high_ns": 130985.73390804598, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.9924273157538878, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.7268148349690238}, {"serializer": "mongo-bson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.17.9", "avg_time_ser_ns": 132297.0, "avg_time_deser_ns": 274178.1219512195, "avg_time_total_ns": 406475.1219512195, "median_size_bytes": 46739.0, "avg_ops_per_sec": 2460.1751644717106, "min_ops_per_sec": 1689.762909366187, "max_ops_per_sec": 2851.09852826294, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 132297.0, "ser_median_ns": 127055.0, "ser_std_ns": 18217.912336522935, "ser_mad_ns": 9895.0, "ser_cv": 0.13770465193105616, "ser_min_ns": 111350.0, "ser_max_ns": 192795.0, "ser_p5_ns": 112815.45, "ser_p25_ns": 119082.5, "ser_p50_ns": 127055.0, "ser_p75_ns": 139532.0, "ser_p95_ns": 169740.7, "ser_p99_ns": 191466.6, "ser_ci_low_ns": 128610.91585365853, "ser_ci_high_ns": 136306.25243902436, "deser_mean_ns": 274178.1219512195, "deser_median_ns": 260116.5, "deser_std_ns": 35894.038485516765, "deser_mad_ns": 14916.5, "deser_cv": 0.13091503519709302, "deser_min_ns": 236424.0, "deser_max_ns": 399004.0, "deser_p5_ns": 242185.65, "deser_p25_ns": 249540.25, "deser_p50_ns": 260116.5, "deser_p75_ns": 284213.75, "deser_p95_ns": 343848.9, "deser_p99_ns": 398650.84, "deser_ci_low_ns": 266659.88536585367, "deser_ci_high_ns": 282484.9746951219, "total_mean_ns": 406475.1219512195, "total_median_ns": 388863.0, "total_std_ns": 51534.30546430842, "total_mad_ns": 20285.0, "total_cv": 0.12678341842159033, "total_min_ns": 350742.0, "total_max_ns": 591799.0, "total_p5_ns": 356454.4, "total_p25_ns": 371086.75, "total_p50_ns": 388863.0, "total_p75_ns": 419436.75, "total_p95_ns": 507590.05000000005, "total_p99_ns": 590117.44, "total_ci_low_ns": 395459.80609756097, "total_ci_high_ns": 418631.37957317074, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.858063274056764}, {"serializer": "linkedin/goavro", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "2.15.0", "avg_time_ser_ns": 1079.0520833333333, "avg_time_deser_ns": 2551.6666666666665, "avg_time_total_ns": 3630.71875, "median_size_bytes": 338.0, "avg_ops_per_sec": 275427.558248625, "min_ops_per_sec": 157405.94994490792, "max_ops_per_sec": 410509.0311986864, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 1079.0520833333333, "ser_median_ns": 881.5, "ser_std_ns": 458.2105783380357, "ser_mad_ns": 227.5, "ser_cv": 0.4246417623536421, "ser_min_ns": 538.0, "ser_max_ns": 2437.0, "ser_p5_ns": 597.0, "ser_p25_ns": 725.75, "ser_p50_ns": 881.5, "ser_p75_ns": 1410.5, "ser_p95_ns": 1916.5, "ser_p99_ns": 2391.3999999999996, "ser_ci_low_ns": 991.1593750000001, "ser_ci_high_ns": 1173.5744791666664, "deser_mean_ns": 2551.6666666666665, "deser_median_ns": 2225.5, "deser_std_ns": 683.3717592961452, "deser_mad_ns": 305.5, "deser_cv": 0.267813883460279, "deser_min_ns": 1833.0, "deser_max_ns": 4354.0, "deser_p5_ns": 1882.0, "deser_p25_ns": 1980.25, "deser_p50_ns": 2225.5, "deser_p75_ns": 3253.5, "deser_p95_ns": 3665.25, "deser_p99_ns": 4317.9, "deser_ci_low_ns": 2419.883333333333, "deser_ci_high_ns": 2684.0895833333334, "total_mean_ns": 3630.71875, "total_median_ns": 3105.5, "total_std_ns": 1082.017926723028, "total_mad_ns": 521.5, "total_cv": 0.2980175555385633, "total_min_ns": 2436.0, "total_max_ns": 6353.0, "total_p5_ns": 2545.0, "total_p25_ns": 2787.5, "total_p50_ns": 3105.5, "total_p75_ns": 4646.0, "total_p95_ns": 5595.25, "total_p99_ns": 5752.5999999999985, "total_ci_low_ns": 3418.8744791666663, "total_ci_high_ns": 3849.77734375, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.7103494623655914, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.6041917607541867}, {"serializer": "jsoniter", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.1.12", "avg_time_ser_ns": 1160.6736842105263, "avg_time_deser_ns": 2258.842105263158, "avg_time_total_ns": 3419.5157894736844, "median_size_bytes": 411.0, "avg_ops_per_sec": 292439.06493378564, "min_ops_per_sec": 140469.1670178396, "max_ops_per_sec": 532765.0506126798, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1160.6736842105263, "ser_median_ns": 877.0, "ser_std_ns": 583.1408253350577, "ser_mad_ns": 246.0, "ser_cv": 0.5024158239029101, "ser_min_ns": 484.0, "ser_max_ns": 3063.0, "ser_p5_ns": 599.0, "ser_p25_ns": 681.0, "ser_p50_ns": 877.0, "ser_p75_ns": 1679.5, "ser_p95_ns": 2192.7, "ser_p99_ns": 2423.8000000000015, "ser_ci_low_ns": 1049.4468421052632, "ser_ci_high_ns": 1277.822105263158, "deser_mean_ns": 2258.842105263158, "deser_median_ns": 1870.0, "deser_std_ns": 790.9546523272203, "deser_mad_ns": 389.0, "deser_cv": 0.3501593362742249, "deser_min_ns": 1371.0, "deser_max_ns": 4939.0, "deser_p5_ns": 1454.9, "deser_p25_ns": 1621.5, "deser_p50_ns": 1870.0, "deser_p75_ns": 2957.0, "deser_p95_ns": 3596.7, "deser_p99_ns": 4108.980000000002, "deser_ci_low_ns": 2102.7142105263156, "deser_ci_high_ns": 2414.758684210526, "total_mean_ns": 3419.5157894736844, "total_median_ns": 2764.0, "total_std_ns": 1346.3108684606518, "total_mad_ns": 610.0, "total_cv": 0.3937138914828259, "total_min_ns": 1877.0, "total_max_ns": 7119.0, "total_p5_ns": 2094.9, "total_p25_ns": 2304.5, "total_p50_ns": 2764.0, "total_p75_ns": 4661.5, "total_p95_ns": 5691.599999999999, "total_p99_ns": 6642.420000000001, "total_ci_low_ns": 3146.310789473684, "total_ci_high_ns": 3677.211052631579, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.6236559139784946, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.2088293951996265}, {"serializer": "encoding/json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 1597.4432989690722, "avg_time_deser_ns": 6380.948453608247, "avg_time_total_ns": 7978.3917525773195, "median_size_bytes": 411.0, "avg_ops_per_sec": 125338.54328185409, "min_ops_per_sec": 75889.80799878576, "max_ops_per_sec": 182149.36247723133, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 1597.4432989690722, "ser_median_ns": 1201.0, "ser_std_ns": 710.2899344791089, "ser_mad_ns": 189.0, "ser_cv": 0.444641719012814, "ser_min_ns": 889.0, "ser_max_ns": 3588.0, "ser_p5_ns": 965.6, "ser_p25_ns": 1084.0, "ser_p50_ns": 1201.0, "ser_p75_ns": 2217.0, "ser_p95_ns": 3077.599999999999, "ser_p99_ns": 3428.6399999999985, "ser_ci_low_ns": 1452.0407216494846, "ser_ci_high_ns": 1734.5038659793813, "deser_mean_ns": 6380.948453608247, "deser_median_ns": 5582.0, "deser_std_ns": 1602.0522864642376, "deser_mad_ns": 663.0, "deser_cv": 0.25106805016710676, "deser_min_ns": 4601.0, "deser_max_ns": 10173.0, "deser_p5_ns": 4780.8, "deser_p25_ns": 5109.0, "deser_p50_ns": 5582.0, "deser_p75_ns": 7909.0, "deser_p95_ns": 9366.599999999999, "deser_p99_ns": 9800.519999999997, "deser_ci_low_ns": 6063.356443298969, "deser_ci_high_ns": 6683.045103092783, "total_mean_ns": 7978.3917525773195, "total_median_ns": 6740.0, "total_std_ns": 2250.6209122739006, "total_mad_ns": 805.0, "total_cv": 0.2820895466240882, "total_min_ns": 5490.0, "total_max_ns": 13177.0, "total_p5_ns": 5742.4, "total_p25_ns": 6236.0, "total_p50_ns": 6740.0, "total_p75_ns": 10460.0, "total_p95_ns": 12025.599999999999, "total_p99_ns": 12618.279999999995, "total_ci_low_ns": 7562.7677835051545, "total_ci_high_ns": 8443.81005154639, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.433480444000547}, {"serializer": "ugorji/cbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 1038.752688172043, "avg_time_deser_ns": 1865.3655913978494, "avg_time_total_ns": 2904.1182795698924, "median_size_bytes": 345.0, "avg_ops_per_sec": 344338.5922105427, "min_ops_per_sec": 151952.590791673, "max_ops_per_sec": 648508.4306095979, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1038.752688172043, "ser_median_ns": 795.0, "ser_std_ns": 506.3442645661147, "ser_mad_ns": 194.0, "ser_cv": 0.48745410753849394, "ser_min_ns": 391.0, "ser_max_ns": 2827.0, "ser_p5_ns": 543.6, "ser_p25_ns": 670.0, "ser_p50_ns": 795.0, "ser_p75_ns": 1454.0, "ser_p95_ns": 1889.799999999999, "ser_p99_ns": 2244.639999999999, "ser_ci_low_ns": 942.7126344086022, "ser_ci_high_ns": 1142.2344086021506, "deser_mean_ns": 1865.3655913978494, "deser_median_ns": 1497.0, "deser_std_ns": 824.3574544554216, "deser_mad_ns": 336.0, "deser_cv": 0.44192809080265744, "deser_min_ns": 1028.0, "deser_max_ns": 4498.0, "deser_p5_ns": 1084.2, "deser_p25_ns": 1246.0, "deser_p50_ns": 1497.0, "deser_p75_ns": 2524.0, "deser_p95_ns": 3436.799999999999, "deser_p99_ns": 3892.639999999999, "deser_ci_low_ns": 1696.9543010752689, "deser_ci_high_ns": 2041.7970430107525, "total_mean_ns": 2904.1182795698924, "total_median_ns": 2249.0, "total_std_ns": 1305.6085774829328, "total_mad_ns": 485.0, "total_cv": 0.44957141954848234, "total_min_ns": 1542.0, "total_max_ns": 6581.0, "total_p5_ns": 1623.4, "total_p25_ns": 1942.0, "total_p50_ns": 2249.0, "total_p75_ns": 3978.0, "total_p95_ns": 5378.199999999998, "total_p99_ns": 6077.759999999999, "total_ci_low_ns": 2648.363440860215, "total_ci_high_ns": 3178.449731182796, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.488958261070644, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 0.7784582231486452}, {"serializer": "mongo-bson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.17.9", "avg_time_ser_ns": 2876.8736842105263, "avg_time_deser_ns": 4403.4, "avg_time_total_ns": 7280.273684210526, "median_size_bytes": 599.0, "avg_ops_per_sec": 137357.47354784232, "min_ops_per_sec": 73616.01884570082, "max_ops_per_sec": 230627.30627306274, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 2876.8736842105263, "ser_median_ns": 2246.0, "ser_std_ns": 1232.332447219631, "ser_mad_ns": 585.0, "ser_cv": 0.4283582049442009, "ser_min_ns": 1498.0, "ser_max_ns": 5541.0, "ser_p5_ns": 1596.4, "ser_p25_ns": 1883.0, "ser_p50_ns": 2246.0, "ser_p75_ns": 3898.0, "ser_p95_ns": 5181.299999999999, "ser_p99_ns": 5524.08, "ser_ci_low_ns": 2630.8707894736845, "ser_ci_high_ns": 3119.4299999999994, "deser_mean_ns": 4403.4, "deser_median_ns": 3630.0, "deser_std_ns": 1442.1426317160056, "deser_mad_ns": 493.0, "deser_cv": 0.32750661573238987, "deser_min_ns": 2838.0, "deser_max_ns": 9615.0, "deser_p5_ns": 3032.8, "deser_p25_ns": 3316.5, "deser_p50_ns": 3630.0, "deser_p75_ns": 5848.5, "deser_p95_ns": 6646.8, "deser_p99_ns": 7786.700000000004, "deser_ci_low_ns": 4118.920263157895, "deser_ci_high_ns": 4708.917631578947, "total_mean_ns": 7280.273684210526, "total_median_ns": 5848.0, "total_std_ns": 2535.996566219004, "total_mad_ns": 1018.0, "total_cv": 0.34833808126184584, "total_min_ns": 4336.0, "total_max_ns": 13584.0, "total_p5_ns": 4716.6, "total_p25_ns": 5246.5, "total_p50_ns": 5848.0, "total_p75_ns": 9591.5, "total_p95_ns": 11681.9, "total_p99_ns": 12907.2, "total_ci_low_ns": 6780.804736842105, "total_ci_high_ns": 7784.328684210526, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.999320882852292, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.7388414979502604}, {"serializer": "ugorji/json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 1522.4141414141413, "avg_time_deser_ns": 2582.3939393939395, "avg_time_total_ns": 4104.80808080808, "median_size_bytes": 411.0, "avg_ops_per_sec": 243616.7490206115, "min_ops_per_sec": 110558.31951354339, "max_ops_per_sec": 470366.8861712135, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 1522.4141414141413, "ser_median_ns": 1146.0, "ser_std_ns": 743.5848223042515, "ser_mad_ns": 306.0, "ser_cv": 0.4884247998468733, "ser_min_ns": 708.0, "ser_max_ns": 3604.0, "ser_p5_ns": 807.0, "ser_p25_ns": 905.5, "ser_p50_ns": 1146.0, "ser_p75_ns": 2104.0, "ser_p95_ns": 2963.5, "ser_p99_ns": 3571.66, "ser_ci_low_ns": 1378.62398989899, "ser_ci_high_ns": 1672.4315656565655, "deser_mean_ns": 2582.3939393939395, "deser_median_ns": 2221.0, "deser_std_ns": 967.4157224083626, "deser_mad_ns": 578.0, "deser_cv": 0.3746197308050548, "deser_min_ns": 1418.0, "deser_max_ns": 5441.0, "deser_p5_ns": 1568.9, "deser_p25_ns": 1795.5, "deser_p50_ns": 2221.0, "deser_p75_ns": 3374.5, "deser_p95_ns": 4390.9, "deser_p99_ns": 4834.379999999997, "deser_ci_low_ns": 2398.078787878788, "deser_ci_high_ns": 2775.0055555555555, "total_mean_ns": 4104.80808080808, "total_median_ns": 3277.0, "total_std_ns": 1696.6460893737078, "total_mad_ns": 805.0, "total_cv": 0.41333140453175654, "total_min_ns": 2126.0, "total_max_ns": 9045.0, "total_p5_ns": 2403.4, "total_p25_ns": 2710.0, "total_p50_ns": 3277.0, "total_p75_ns": 5455.0, "total_p95_ns": 7328.4, "total_p99_ns": 8329.599999999997, "total_ci_low_ns": 3788.3136363636363, "total_ci_high_ns": 4449.939141414141, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.7366134462908657, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.5108116347531564}, {"serializer": "encoding/gob", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 3283.887755102041, "avg_time_deser_ns": 12428.234693877552, "avg_time_total_ns": 15712.122448979591, "median_size_bytes": 400.0, "avg_ops_per_sec": 63645.12517307578, "min_ops_per_sec": 34425.77802258331, "max_ops_per_sec": 94795.71523367144, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 3283.887755102041, "ser_median_ns": 2685.5, "ser_std_ns": 1419.3564018662191, "ser_mad_ns": 641.5, "ser_cv": 0.43221830577522746, "ser_min_ns": 1602.0, "ser_max_ns": 7465.0, "ser_p5_ns": 1884.3, "ser_p25_ns": 2183.75, "ser_p50_ns": 2685.5, "ser_p75_ns": 4609.25, "ser_p95_ns": 5905.849999999999, "ser_p99_ns": 6879.120000000001, "ser_ci_low_ns": 3019.5469387755106, "ser_ci_high_ns": 3564.8316326530608, "deser_mean_ns": 12428.234693877552, "deser_median_ns": 10712.5, "deser_std_ns": 3411.226879091978, "deser_mad_ns": 1525.5, "deser_cv": 0.27447396698844373, "deser_min_ns": 8748.0, "deser_max_ns": 21583.0, "deser_p5_ns": 8980.85, "deser_p25_ns": 9515.5, "deser_p50_ns": 10712.5, "deser_p75_ns": 15862.0, "deser_p95_ns": 18030.149999999998, "deser_p99_ns": 19652.7, "deser_ci_low_ns": 11779.239795918369, "deser_ci_high_ns": 13094.15943877551, "total_mean_ns": 15712.122448979591, "total_median_ns": 13220.5, "total_std_ns": 4720.112424978805, "total_mad_ns": 1956.0, "total_cv": 0.3004121461187663, "total_min_ns": 10549.0, "total_max_ns": 29048.0, "total_p5_ns": 10979.35, "total_p25_ns": 11839.75, "total_p50_ns": 13220.5, "total_p75_ns": 20327.25, "total_p95_ns": 23455.149999999994, "total_p99_ns": 26531.820000000003, "total_ci_low_ns": 14777.90918367347, "total_ci_high_ns": 16647.666581632653, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.9633546314814008}, {"serializer": "vmihailenco/msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "5.4.1", "avg_time_ser_ns": 1129.6979166666667, "avg_time_deser_ns": 2246.5, "avg_time_total_ns": 3376.1979166666665, "median_size_bytes": 346.0, "avg_ops_per_sec": 296191.16671551764, "min_ops_per_sec": 144550.44810638914, "max_ops_per_sec": 527426.1603375528, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 1129.6979166666667, "ser_median_ns": 849.5, "ser_std_ns": 598.6587661693458, "ser_mad_ns": 231.0, "ser_cv": 0.529928184638751, "ser_min_ns": 508.0, "ser_max_ns": 2940.0, "ser_p5_ns": 564.5, "ser_p25_ns": 676.25, "ser_p50_ns": 849.5, "ser_p75_ns": 1728.0, "ser_p95_ns": 2179.0, "ser_p99_ns": 2423.1999999999985, "ser_ci_low_ns": 1019.0919270833333, "ser_ci_high_ns": 1254.3119791666666, "deser_mean_ns": 2246.5, "deser_median_ns": 1844.0, "deser_std_ns": 804.86744250218, "deser_mad_ns": 341.0, "deser_cv": 0.3582761818393857, "deser_min_ns": 1370.0, "deser_max_ns": 4047.0, "deser_p5_ns": 1454.75, "deser_p25_ns": 1594.25, "deser_p50_ns": 1844.0, "deser_p75_ns": 2905.0, "deser_p95_ns": 3742.75, "deser_p99_ns": 3981.45, "deser_ci_low_ns": 2094.6208333333334, "deser_ci_high_ns": 2409.117708333333, "total_mean_ns": 3376.1979166666665, "total_median_ns": 2675.5, "total_std_ns": 1388.0279886438789, "total_mad_ns": 555.0, "total_cv": 0.4111216293902238, "total_min_ns": 1896.0, "total_max_ns": 6918.0, "total_p5_ns": 2028.5, "total_p25_ns": 2305.75, "total_p50_ns": 2675.5, "total_p75_ns": 4679.5, "total_p95_ns": 5957.25, "total_p99_ns": 6394.549999999998, "total_ci_low_ns": 3100.8020833333335, "total_ci_high_ns": 3667.532552083333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.602486559139785, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.1450276195402318}, {"serializer": "shamaton/msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "3.1.2", "avg_time_ser_ns": 1014.8631578947368, "avg_time_deser_ns": 1433.6105263157895, "avg_time_total_ns": 2448.4736842105262, "median_size_bytes": 346.0, "avg_ops_per_sec": 408417.70383267774, "min_ops_per_sec": 187090.73900841907, "max_ops_per_sec": 723589.001447178, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1014.8631578947368, "ser_median_ns": 821.0, "ser_std_ns": 477.4256455538127, "ser_mad_ns": 216.0, "ser_cv": 0.4704335178983136, "ser_min_ns": 436.0, "ser_max_ns": 2484.0, "ser_p5_ns": 494.8, "ser_p25_ns": 660.5, "ser_p50_ns": 821.0, "ser_p75_ns": 1339.0, "ser_p95_ns": 1920.1, "ser_p99_ns": 2047.840000000001, "ser_ci_low_ns": 923.356052631579, "ser_ci_high_ns": 1114.6105263157895, "deser_mean_ns": 1433.6105263157895, "deser_median_ns": 1234.0, "deser_std_ns": 487.6455438981911, "deser_mad_ns": 228.0, "deser_cv": 0.34015203916741793, "deser_min_ns": 936.0, "deser_max_ns": 2861.0, "deser_p5_ns": 953.3, "deser_p25_ns": 1040.0, "deser_p50_ns": 1234.0, "deser_p75_ns": 1802.0, "deser_p95_ns": 2328.8999999999996, "deser_p99_ns": 2720.0000000000005, "deser_ci_low_ns": 1340.1334210526315, "deser_ci_high_ns": 1530.881842105263, "total_mean_ns": 2448.4736842105262, "total_median_ns": 2068.0, "total_std_ns": 955.211159033784, "total_mad_ns": 423.0, "total_cv": 0.3901251482479288, "total_min_ns": 1382.0, "total_max_ns": 5345.0, "total_p5_ns": 1519.6, "total_p25_ns": 1699.5, "total_p50_ns": 2068.0, "total_p75_ns": 3082.0, "total_p95_ns": 4237.599999999999, "total_p99_ns": 4748.100000000001, "total_ci_low_ns": 2252.823157894737, "total_ci_high_ns": 2648.7836842105257, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.36445953593661573, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.4509219928105434}, {"serializer": "pelletier/go-toml", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "2.4.3", "avg_time_ser_ns": 2654.3763440860216, "avg_time_deser_ns": 3870.7956989247314, "avg_time_total_ns": 6525.1720430107525, "median_size_bytes": 441.0, "avg_ops_per_sec": 153252.66420693396, "min_ops_per_sec": 71880.3910293272, "max_ops_per_sec": 234301.78069353328, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 2654.3763440860216, "ser_median_ns": 2233.0, "ser_std_ns": 864.5529117760243, "ser_mad_ns": 322.0, "ser_cv": 0.3257084903209966, "ser_min_ns": 1803.0, "ser_max_ns": 5572.0, "ser_p5_ns": 1835.4, "ser_p25_ns": 2016.0, "ser_p50_ns": 2233.0, "ser_p75_ns": 3474.0, "ser_p95_ns": 4345.4, "ser_p99_ns": 4878.319999999999, "ser_ci_low_ns": 2494.4333333333334, "ser_ci_high_ns": 2837.8537634408603, "deser_mean_ns": 3870.7956989247314, "deser_median_ns": 3091.0, "deser_std_ns": 1589.0173786168975, "deser_mad_ns": 477.0, "deser_cv": 0.4105144012271975, "deser_min_ns": 2425.0, "deser_max_ns": 8340.0, "deser_p5_ns": 2544.6, "deser_p25_ns": 2693.0, "deser_p50_ns": 3091.0, "deser_p75_ns": 4952.0, "deser_p95_ns": 7148.0, "deser_p99_ns": 8190.04, "deser_ci_low_ns": 3567.2400537634408, "deser_ci_high_ns": 4184.345161290322, "total_mean_ns": 6525.1720430107525, "total_median_ns": 5322.0, "total_std_ns": 2408.2371986293388, "total_mad_ns": 775.0, "total_cv": 0.36906876673218936, "total_min_ns": 4268.0, "total_max_ns": 13912.0, "total_p5_ns": 4435.2, "total_p25_ns": 4718.0, "total_p50_ns": 5322.0, "total_p75_ns": 8491.0, "total_p95_ns": 11452.0, "total_p99_ns": 12393.079999999998, "total_ci_low_ns": 6070.970698924732, "total_ci_high_ns": 7026.8349462365595, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.9951439472771418, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.464786932386747}, {"serializer": "kelindar/binary", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.0.19", "avg_time_ser_ns": 1159.9473684210527, "avg_time_deser_ns": 1492.6315789473683, "avg_time_total_ns": 2652.5789473684213, "median_size_bytes": 337.0, "avg_ops_per_sec": 376991.6069763289, "min_ops_per_sec": 185185.1851851852, "max_ops_per_sec": 600240.0960384153, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1159.9473684210527, "ser_median_ns": 903.0, "ser_std_ns": 448.0132589323348, "ser_mad_ns": 102.0, "ser_cv": 0.38623585097846364, "ser_min_ns": 740.0, "ser_max_ns": 2277.0, "ser_p5_ns": 770.2, "ser_p25_ns": 829.5, "ser_p50_ns": 903.0, "ser_p75_ns": 1657.5, "ser_p95_ns": 1970.2999999999997, "ser_p99_ns": 2120.0200000000004, "ser_ci_low_ns": 1073.9228947368422, "ser_ci_high_ns": 1253.5426315789473, "deser_mean_ns": 1492.6315789473683, "deser_median_ns": 1160.0, "deser_std_ns": 607.9637981354031, "deser_mad_ns": 176.0, "deser_cv": 0.4073100199073575, "deser_min_ns": 916.0, "deser_max_ns": 3308.0, "deser_p5_ns": 953.4, "deser_p25_ns": 1028.5, "deser_p50_ns": 1160.0, "deser_p75_ns": 2118.5, "deser_p95_ns": 2520.3999999999996, "deser_p99_ns": 3291.08, "deser_ci_low_ns": 1378.7473684210527, "deser_ci_high_ns": 1610.4528947368422, "total_mean_ns": 2652.5789473684213, "total_median_ns": 2109.0, "total_std_ns": 1030.2273099614326, "total_mad_ns": 322.0, "total_cv": 0.38838704913326094, "total_min_ns": 1666.0, "total_max_ns": 5400.0, "total_p5_ns": 1740.7, "total_p25_ns": 1871.0, "total_p50_ns": 2109.0, "total_p75_ns": 3753.5, "total_p95_ns": 4359.7, "total_p99_ns": 5038.100000000001, "total_ci_low_ns": 2449.855, "total_ci_high_ns": 2866.7884210526313, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.4649688737973967, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.6428755561902608}, {"serializer": "fxamacker/cbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "2.9.2", "avg_time_ser_ns": 1028.8350515463917, "avg_time_deser_ns": 2871.8762886597938, "avg_time_total_ns": 3900.7113402061855, "median_size_bytes": 345.0, "avg_ops_per_sec": 256363.49700953302, "min_ops_per_sec": 130872.92239235702, "max_ops_per_sec": 419463.08724832215, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 1028.8350515463917, "ser_median_ns": 768.0, "ser_std_ns": 529.3295027755312, "ser_mad_ns": 196.0, "ser_cv": 0.5144940405946724, "ser_min_ns": 462.0, "ser_max_ns": 2605.0, "ser_p5_ns": 550.6, "ser_p25_ns": 625.0, "ser_p50_ns": 768.0, "ser_p75_ns": 1423.0, "ser_p95_ns": 2037.1999999999994, "ser_p99_ns": 2412.0399999999986, "ser_ci_low_ns": 926.5458762886598, "ser_ci_high_ns": 1135.5079896907216, "deser_mean_ns": 2871.8762886597938, "deser_median_ns": 2367.0, "deser_std_ns": 989.1410231623946, "deser_mad_ns": 312.0, "deser_cv": 0.34442327027394093, "deser_min_ns": 1917.0, "deser_max_ns": 5405.0, "deser_p5_ns": 1985.0, "deser_p25_ns": 2111.0, "deser_p50_ns": 2367.0, "deser_p75_ns": 3669.0, "deser_p95_ns": 4903.999999999996, "deser_p99_ns": 5349.32, "deser_ci_low_ns": 2687.8255154639173, "deser_ci_high_ns": 3066.776546391752, "total_mean_ns": 3900.7113402061855, "total_median_ns": 3137.0, "total_std_ns": 1495.4860759323572, "total_mad_ns": 508.0, "total_cv": 0.38338804015508315, "total_min_ns": 2384.0, "total_max_ns": 7641.0, "total_p5_ns": 2552.4, "total_p25_ns": 2807.0, "total_p50_ns": 3137.0, "total_p75_ns": 5160.0, "total_p95_ns": 6784.599999999996, "total_p99_ns": 7604.5199999999995, "total_ci_low_ns": 3618.0108247422677, "total_ci_high_ns": 4193.537371134021, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.7141115175701142, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.5050620618866248}, {"serializer": "protobuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.36.11", "avg_time_ser_ns": 1058.0631578947368, "avg_time_deser_ns": 1979.178947368421, "avg_time_total_ns": 3037.242105263158, "median_size_bytes": 368.0, "avg_ops_per_sec": 329246.0611773839, "min_ops_per_sec": 167280.0267648043, "max_ops_per_sec": 550357.732526142, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1058.0631578947368, "ser_median_ns": 855.0, "ser_std_ns": 466.90114244849394, "ser_mad_ns": 209.0, "ser_cv": 0.44127908524619885, "ser_min_ns": 561.0, "ser_max_ns": 2524.0, "ser_p5_ns": 605.8, "ser_p25_ns": 690.5, "ser_p50_ns": 855.0, "ser_p75_ns": 1421.5, "ser_p95_ns": 2017.7, "ser_p99_ns": 2098.180000000001, "ser_ci_low_ns": 969.2442105263159, "ser_ci_high_ns": 1152.5326315789473, "deser_mean_ns": 1979.178947368421, "deser_median_ns": 1637.0, "deser_std_ns": 721.9690713441979, "deser_mad_ns": 332.0, "deser_cv": 0.3647821094217634, "deser_min_ns": 1219.0, "deser_max_ns": 4190.0, "deser_p5_ns": 1260.1, "deser_p25_ns": 1448.0, "deser_p50_ns": 1637.0, "deser_p75_ns": 2531.5, "deser_p95_ns": 3341.9, "deser_p99_ns": 3855.3600000000006, "deser_ci_low_ns": 1844.1136842105261, "deser_ci_high_ns": 2124.146578947368, "total_mean_ns": 3037.242105263158, "total_median_ns": 2463.0, "total_std_ns": 1159.1644433465533, "total_mad_ns": 512.0, "total_cv": 0.38165032722872744, "total_min_ns": 1817.0, "total_max_ns": 5978.0, "total_p5_ns": 1887.9, "total_p25_ns": 2168.5, "total_p50_ns": 2463.0, "total_p75_ns": 4025.5, "total_p95_ns": 5380.0, "total_p99_ns": 5856.740000000001, "total_ci_low_ns": 2818.0713157894734, "total_ci_high_ns": 3274.632631578947, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.5537068477645727, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 0.9682177478303768}, {"serializer": "goccy/go-yaml", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.19.2", "avg_time_ser_ns": 35529.74193548387, "avg_time_deser_ns": 41012.58064516129, "avg_time_total_ns": 76542.32258064517, "median_size_bytes": 407.0, "avg_ops_per_sec": 13064.667575855145, "min_ops_per_sec": 9260.631204622907, "max_ops_per_sec": 16147.263038914904, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 35529.74193548387, "ser_median_ns": 32227.0, "ser_std_ns": 6661.827074921494, "ser_mad_ns": 2656.0, "ser_cv": 0.18750001300370459, "ser_min_ns": 28674.0, "ser_max_ns": 51538.0, "ser_p5_ns": 28980.8, "ser_p25_ns": 30105.0, "ser_p50_ns": 32227.0, "ser_p75_ns": 43181.0, "ser_p95_ns": 46581.399999999994, "ser_p99_ns": 49916.96, "ser_ci_low_ns": 34219.3747311828, "ser_ci_high_ns": 36915.99838709677, "deser_mean_ns": 41012.58064516129, "deser_median_ns": 36558.0, "deser_std_ns": 8645.039114406674, "deser_mad_ns": 2670.0, "deser_cv": 0.21078993270877303, "deser_min_ns": 32546.0, "deser_max_ns": 59788.0, "deser_p5_ns": 33148.8, "deser_p25_ns": 34235.0, "deser_p50_ns": 36558.0, "deser_p75_ns": 50437.0, "deser_p95_ns": 56424.99999999999, "deser_p99_ns": 59213.92, "deser_ci_low_ns": 39244.52338709677, "deser_ci_high_ns": 42818.404569892475, "total_mean_ns": 76542.32258064517, "total_median_ns": 68280.0, "total_std_ns": 15194.581324733534, "total_mad_ns": 4785.0, "total_cv": 0.1985121539619403, "total_min_ns": 61930.0, "total_max_ns": 107984.0, "total_p5_ns": 62407.6, "total_p25_ns": 64445.0, "total_p50_ns": 68280.0, "total_p75_ns": 94937.0, "total_p95_ns": 102881.99999999999, "total_p99_ns": 107805.52, "total_ci_low_ns": 73592.27634408601, "total_ci_high_ns": 79556.43440860214, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.8949397630612435}, {"serializer": "ugorji/msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 1029.6105263157895, "avg_time_deser_ns": 1933.2105263157894, "avg_time_total_ns": 2962.821052631579, "median_size_bytes": 346.0, "avg_ops_per_sec": 337516.1652479145, "min_ops_per_sec": 175284.83786152498, "max_ops_per_sec": 601684.7172081829, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1029.6105263157895, "ser_median_ns": 842.0, "ser_std_ns": 437.4807787810929, "ser_mad_ns": 222.0, "ser_cv": 0.4248992872542896, "ser_min_ns": 518.0, "ser_max_ns": 2344.0, "ser_p5_ns": 592.5, "ser_p25_ns": 693.5, "ser_p50_ns": 842.0, "ser_p75_ns": 1360.0, "ser_p95_ns": 1995.1999999999998, "ser_p99_ns": 2234.96, "ser_ci_low_ns": 942.3968421052632, "ser_ci_high_ns": 1118.6210526315788, "deser_mean_ns": 1933.2105263157894, "deser_median_ns": 1661.0, "deser_std_ns": 715.031987005623, "deser_mad_ns": 396.0, "deser_cv": 0.36986762552358604, "deser_min_ns": 1123.0, "deser_max_ns": 3750.0, "deser_p5_ns": 1204.7, "deser_p25_ns": 1329.5, "deser_p50_ns": 1661.0, "deser_p75_ns": 2429.0, "deser_p95_ns": 3330.9, "deser_p99_ns": 3625.92, "deser_ci_low_ns": 1789.828157894737, "deser_ci_high_ns": 2066.839736842105, "total_mean_ns": 2962.821052631579, "total_median_ns": 2462.0, "total_std_ns": 1114.8331043774676, "total_mad_ns": 546.0, "total_cv": 0.3762741942809109, "total_min_ns": 1662.0, "total_max_ns": 5705.0, "total_p5_ns": 1790.2, "total_p25_ns": 2044.5, "total_p50_ns": 2462.0, "total_p75_ns": 3837.0, "total_p95_ns": 5222.7, "total_p99_ns": 5611.9400000000005, "total_ci_low_ns": 2749.8134210526314, "total_ci_high_ns": 3187.516315789474, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.5447651386530843, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 0.9187635198537045}, {"serializer": "goccy/go-json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "0.10.6", "avg_time_ser_ns": 1179.8829787234042, "avg_time_deser_ns": 2070.6702127659573, "avg_time_total_ns": 3250.553191489362, "median_size_bytes": 411.0, "avg_ops_per_sec": 307639.94344661466, "min_ops_per_sec": 149611.01137043687, "max_ops_per_sec": 533617.9295624333, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 1179.8829787234042, "ser_median_ns": 933.5, "ser_std_ns": 554.5548414541876, "ser_mad_ns": 258.0, "ser_cv": 0.4700083410425992, "ser_min_ns": 515.0, "ser_max_ns": 3083.0, "ser_p5_ns": 632.95, "ser_p25_ns": 748.5, "ser_p50_ns": 933.5, "ser_p75_ns": 1643.0, "ser_p95_ns": 2161.7, "ser_p99_ns": 2721.2299999999973, "ser_ci_low_ns": 1074.6867021276596, "ser_ci_high_ns": 1292.5502659574468, "deser_mean_ns": 2070.6702127659573, "deser_median_ns": 1686.5, "deser_std_ns": 793.2210960855889, "deser_mad_ns": 323.5, "deser_cv": 0.38307456744935786, "deser_min_ns": 1243.0, "deser_max_ns": 4706.0, "deser_p5_ns": 1342.6, "deser_p25_ns": 1464.75, "deser_p50_ns": 1686.5, "deser_p75_ns": 2714.0, "deser_p95_ns": 3612.3499999999995, "deser_p99_ns": 4080.1099999999956, "deser_ci_low_ns": 1922.9789893617021, "deser_ci_high_ns": 2227.7007978723395, "total_mean_ns": 3250.553191489362, "total_median_ns": 2557.0, "total_std_ns": 1305.201946365449, "total_mad_ns": 500.0, "total_cv": 0.4015322529662781, "total_min_ns": 1874.0, "total_max_ns": 6684.0, "total_p5_ns": 1960.0, "total_p25_ns": 2293.5, "total_p50_ns": 2557.0, "total_p75_ns": 4422.75, "total_p95_ns": 5429.5999999999985, "total_p99_ns": 6601.23, "total_ci_low_ns": 2997.496010638298, "total_ci_high_ns": 3522.2768617021275, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.5893388240677191, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.085949291558292}, {"serializer": "hamba/avro", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "2.31.0", "avg_time_ser_ns": 917.0537634408602, "avg_time_deser_ns": 1112.3010752688172, "avg_time_total_ns": 2029.3548387096773, "median_size_bytes": 340.0, "avg_ops_per_sec": 492767.44555714517, "min_ops_per_sec": 218483.7229626393, "max_ops_per_sec": 971817.2983479106, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 917.0537634408602, "ser_median_ns": 726.0, "ser_std_ns": 428.97763612508425, "ser_mad_ns": 189.0, "ser_cv": 0.4677780662668297, "ser_min_ns": 434.0, "ser_max_ns": 2380.0, "ser_p5_ns": 464.2, "ser_p25_ns": 579.0, "ser_p50_ns": 726.0, "ser_p75_ns": 1233.0, "ser_p95_ns": 1655.2, "ser_p99_ns": 1988.9999999999993, "ser_ci_low_ns": 832.8793010752688, "ser_ci_high_ns": 1005.4771505376344, "deser_mean_ns": 1112.3010752688172, "deser_median_ns": 875.0, "deser_std_ns": 484.7207126149673, "deser_mad_ns": 185.0, "deser_cv": 0.4357819329607513, "deser_min_ns": 564.0, "deser_max_ns": 2783.0, "deser_p5_ns": 635.8, "deser_p25_ns": 752.0, "deser_p50_ns": 875.0, "deser_p75_ns": 1481.0, "deser_p95_ns": 2051.2, "deser_p99_ns": 2243.879999999999, "deser_ci_low_ns": 1016.5572580645161, "deser_ci_high_ns": 1206.899193548387, "total_mean_ns": 2029.3548387096773, "total_median_ns": 1627.0, "total_std_ns": 894.579821761874, "total_mad_ns": 399.0, "total_cv": 0.44081981361656486, "total_min_ns": 1029.0, "total_max_ns": 4577.0, "total_p5_ns": 1143.2, "total_p25_ns": 1357.0, "total_p50_ns": 1627.0, "total_p75_ns": 2762.0, "total_p95_ns": 3583.1999999999994, "total_p99_ns": 4448.2, "total_ci_low_ns": 1855.4489247311828, "total_ci_high_ns": 2210.55940860215, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "sonic", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.15.2", "avg_time_ser_ns": 928.9021739130435, "avg_time_deser_ns": 1412.75, "avg_time_total_ns": 2341.6521739130435, "median_size_bytes": 411.0, "avg_ops_per_sec": 427048.90638345276, "min_ops_per_sec": 196618.16751867873, "max_ops_per_sec": 909918.1073703367, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 928.9021739130435, "ser_median_ns": 754.0, "ser_std_ns": 456.26366147922727, "ser_mad_ns": 195.5, "ser_cv": 0.4911859120290304, "ser_min_ns": 407.0, "ser_max_ns": 2252.0, "ser_p5_ns": 469.1, "ser_p25_ns": 613.5, "ser_p50_ns": 754.0, "ser_p75_ns": 1142.75, "ser_p95_ns": 1970.2000000000007, "ser_p99_ns": 2215.6000000000004, "ser_ci_low_ns": 840.1581521739131, "ser_ci_high_ns": 1023.1230978260868, "deser_mean_ns": 1412.75, "deser_median_ns": 1179.0, "deser_std_ns": 581.1818127320826, "deser_mad_ns": 276.0, "deser_cv": 0.4113833393962715, "deser_min_ns": 668.0, "deser_max_ns": 2874.0, "deser_p5_ns": 808.05, "deser_p25_ns": 990.75, "deser_p50_ns": 1179.0, "deser_p75_ns": 1928.25, "deser_p95_ns": 2580.2, "deser_p99_ns": 2650.140000000001, "deser_ci_low_ns": 1299.724456521739, "deser_ci_high_ns": 1536.164402173913, "total_mean_ns": 2341.6521739130435, "total_median_ns": 1926.5, "total_std_ns": 998.8656471138814, "total_mad_ns": 401.5, "total_cv": 0.4265644822239829, "total_min_ns": 1099.0, "total_max_ns": 5086.0, "total_p5_ns": 1233.0, "total_p25_ns": 1620.25, "total_p50_ns": 1926.5, "total_p75_ns": 2978.0, "total_p95_ns": 4314.85, "total_p99_ns": 4894.900000000001, "total_ci_low_ns": 2149.4684782608697, "total_ci_high_ns": 2558.502717391304, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.26192145862552596, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.32811954969034923}, {"serializer": "segmentio/encoding/json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "0.5.4", "avg_time_ser_ns": 1030.4895833333333, "avg_time_deser_ns": 2599.8333333333335, "avg_time_total_ns": 3630.3229166666665, "median_size_bytes": 411.0, "avg_ops_per_sec": 275457.58957393025, "min_ops_per_sec": 142146.41080312722, "max_ops_per_sec": 491642.08456243854, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 1030.4895833333333, "ser_median_ns": 775.0, "ser_std_ns": 473.34963142962454, "ser_mad_ns": 190.0, "ser_cv": 0.45934441171008883, "ser_min_ns": 527.0, "ser_max_ns": 2464.0, "ser_p5_ns": 558.0, "ser_p25_ns": 659.0, "ser_p50_ns": 775.0, "ser_p75_ns": 1396.0, "ser_p95_ns": 1931.75, "ser_p99_ns": 2113.449999999999, "ser_ci_low_ns": 936.2708333333334, "ser_ci_high_ns": 1125.1830729166666, "deser_mean_ns": 2599.8333333333335, "deser_median_ns": 2207.5, "deser_std_ns": 899.9526966126336, "deser_mad_ns": 456.0, "deser_cv": 0.3461578421485865, "deser_min_ns": 1488.0, "deser_max_ns": 4944.0, "deser_p5_ns": 1662.0, "deser_p25_ns": 1880.25, "deser_p50_ns": 2207.5, "deser_p75_ns": 3185.0, "deser_p95_ns": 4289.5, "deser_p99_ns": 4800.549999999999, "deser_ci_low_ns": 2428.6911458333334, "deser_ci_high_ns": 2782.2122395833335, "total_mean_ns": 3630.3229166666665, "total_median_ns": 2974.5, "total_std_ns": 1347.5031139094312, "total_mad_ns": 622.5, "total_cv": 0.3711799597008571, "total_min_ns": 2034.0, "total_max_ns": 7035.0, "total_p5_ns": 2275.0, "total_p25_ns": 2560.25, "total_p50_ns": 2974.5, "total_p75_ns": 4570.25, "total_p95_ns": 5992.0, "total_p99_ns": 6864.95, "total_ci_low_ns": 3364.70234375, "total_ci_high_ns": 3908.1752604166663, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.6736111111111112, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.3898883644485263}, {"serializer": "fxamacker/cbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "2.9.2", "avg_time_ser_ns": 882.170731707317, "avg_time_deser_ns": 2593.487804878049, "avg_time_total_ns": 3475.6585365853657, "median_size_bytes": 345.0, "avg_ops_per_sec": 287715.2601366998, "min_ops_per_sec": 213083.31557639036, "max_ops_per_sec": 397772.47414478916, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 882.170731707317, "ser_median_ns": 862.5, "ser_std_ns": 192.37924253918825, "ser_mad_ns": 127.5, "ser_cv": 0.2180748415523437, "ser_min_ns": 514.0, "ser_max_ns": 1400.0, "ser_p5_ns": 615.5, "ser_p25_ns": 761.25, "ser_p50_ns": 862.5, "ser_p75_ns": 993.5, "ser_p95_ns": 1261.65, "ser_p99_ns": 1365.1699999999998, "ser_ci_low_ns": 842.3533536585367, "ser_ci_high_ns": 923.9701219512195, "deser_mean_ns": 2593.487804878049, "deser_median_ns": 2503.5, "deser_std_ns": 312.18502126745915, "deser_mad_ns": 173.5, "deser_cv": 0.12037265827133463, "deser_min_ns": 1984.0, "deser_max_ns": 3360.0, "deser_p5_ns": 2227.3, "deser_p25_ns": 2368.25, "deser_p50_ns": 2503.5, "deser_p75_ns": 2781.75, "deser_p95_ns": 3308.2, "deser_p99_ns": 3337.3199999999997, "deser_ci_low_ns": 2527.853048780488, "deser_ci_high_ns": 2662.9432926829268, "total_mean_ns": 3475.6585365853657, "total_median_ns": 3406.0, "total_std_ns": 468.47831470195086, "total_mad_ns": 336.0, "total_cv": 0.13478836018287452, "total_min_ns": 2514.0, "total_max_ns": 4693.0, "total_p5_ns": 2855.15, "total_p25_ns": 3123.25, "total_p50_ns": 3406.0, "total_p75_ns": 3772.0, "total_p95_ns": 4348.2, "total_p99_ns": 4656.55, "total_ci_low_ns": 3376.157317073171, "total_ci_high_ns": 3582.626219512195, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.7835038027799632, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.9088299869198362}, {"serializer": "kelindar/binary", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.0.19", "avg_time_ser_ns": 1086.3103448275863, "avg_time_deser_ns": 2080.057471264368, "avg_time_total_ns": 3166.367816091954, "median_size_bytes": 337.0, "avg_ops_per_sec": 315819.2787704103, "min_ops_per_sec": 210748.1559536354, "max_ops_per_sec": 408830.7440719542, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 1086.3103448275863, "ser_median_ns": 1008.0, "ser_std_ns": 205.490242531029, "ser_mad_ns": 85.0, "ser_cv": 0.18916347755451354, "ser_min_ns": 863.0, "ser_max_ns": 1831.0, "ser_p5_ns": 896.1, "ser_p25_ns": 944.5, "ser_p50_ns": 1008.0, "ser_p75_ns": 1128.5, "ser_p95_ns": 1519.7000000000003, "ser_p99_ns": 1679.64, "ser_ci_low_ns": 1045.7204022988506, "ser_ci_high_ns": 1132.3261494252874, "deser_mean_ns": 2080.057471264368, "deser_median_ns": 1968.0, "deser_std_ns": 394.5663311559961, "deser_mad_ns": 215.0, "deser_cv": 0.18969011030073032, "deser_min_ns": 1529.0, "deser_max_ns": 3132.0, "deser_p5_ns": 1665.8, "deser_p25_ns": 1764.0, "deser_p50_ns": 1968.0, "deser_p75_ns": 2292.0, "deser_p95_ns": 2926.8, "deser_p99_ns": 3095.88, "deser_ci_low_ns": 2000.3364942528738, "deser_ci_high_ns": 2168.249137931034, "total_mean_ns": 3166.367816091954, "total_median_ns": 2983.0, "total_std_ns": 566.3194742008512, "total_mad_ns": 297.0, "total_cv": 0.1788546078957508, "total_min_ns": 2446.0, "total_max_ns": 4745.0, "total_p5_ns": 2576.7, "total_p25_ns": 2736.5, "total_p50_ns": 2983.0, "total_p75_ns": 3505.5, "total_p95_ns": 4463.000000000001, "total_p99_ns": 4739.84, "total_ci_low_ns": 3055.0580459770117, "total_ci_high_ns": 3284.225, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.6805092077617105, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.338995888347424}, {"serializer": "pelletier/go-toml", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "2.4.3", "avg_time_ser_ns": 2396.9764705882353, "avg_time_deser_ns": 3422.5176470588235, "avg_time_total_ns": 5819.494117647058, "median_size_bytes": 441.0, "avg_ops_per_sec": 171836.24208289786, "min_ops_per_sec": 111037.0863868532, "max_ops_per_sec": 234852.04321277596, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 2396.9764705882353, "ser_median_ns": 2303.0, "ser_std_ns": 393.06257760815436, "ser_mad_ns": 226.0, "ser_cv": 0.16398266000153683, "ser_min_ns": 1736.0, "ser_max_ns": 3708.0, "ser_p5_ns": 1904.8, "ser_p25_ns": 2103.0, "ser_p50_ns": 2303.0, "ser_p75_ns": 2625.0, "ser_p95_ns": 3217.5999999999995, "ser_p99_ns": 3421.559999999999, "ser_ci_low_ns": 2312.484117647059, "ser_ci_high_ns": 2482.2658823529414, "deser_mean_ns": 3422.5176470588235, "deser_median_ns": 3304.0, "deser_std_ns": 635.1614832496705, "deser_mad_ns": 394.0, "deser_cv": 0.18558311417196144, "deser_min_ns": 2522.0, "deser_max_ns": 5298.0, "deser_p5_ns": 2700.2, "deser_p25_ns": 2939.0, "deser_p50_ns": 3304.0, "deser_p75_ns": 3711.0, "deser_p95_ns": 4858.8, "deser_p99_ns": 5097.239999999999, "deser_ci_low_ns": 3286.1370588235295, "deser_ci_high_ns": 3563.602058823529, "total_mean_ns": 5819.494117647058, "total_median_ns": 5636.0, "total_std_ns": 1011.6244553466777, "total_mad_ns": 562.0, "total_cv": 0.1738337448059314, "total_min_ns": 4258.0, "total_max_ns": 9006.0, "total_p5_ns": 4644.4, "total_p25_ns": 5114.0, "total_p50_ns": 5636.0, "total_p75_ns": 6318.0, "total_p95_ns": 8041.2, "total_p99_ns": 8518.799999999997, "total_ci_low_ns": 5614.717058823529, "total_ci_high_ns": 6035.762647058824, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.019204853093952}, {"serializer": "encoding/gob", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 3070.188888888889, "avg_time_deser_ns": 11723.744444444445, "avg_time_total_ns": 14793.933333333332, "median_size_bytes": 400.0, "avg_ops_per_sec": 67595.27554087486, "min_ops_per_sec": 42213.68567689645, "max_ops_per_sec": 93309.69487729775, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 3070.188888888889, "ser_median_ns": 2751.0, "ser_std_ns": 994.5186616723096, "ser_mad_ns": 461.0, "ser_cv": 0.3239275164050994, "ser_min_ns": 1674.0, "ser_max_ns": 5816.0, "ser_p5_ns": 1963.35, "ser_p25_ns": 2369.25, "ser_p50_ns": 2751.0, "ser_p75_ns": 3307.75, "ser_p95_ns": 5377.3, "ser_p99_ns": 5628.21, "ser_ci_low_ns": 2880.4747222222227, "ser_ci_high_ns": 3284.2805555555556, "deser_mean_ns": 11723.744444444445, "deser_median_ns": 11099.5, "deser_std_ns": 2279.107220047887, "deser_mad_ns": 1120.5, "deser_cv": 0.19440096385996306, "deser_min_ns": 8503.0, "deser_max_ns": 18084.0, "deser_p5_ns": 9137.35, "deser_p25_ns": 9996.0, "deser_p50_ns": 11099.5, "deser_p75_ns": 12749.0, "deser_p95_ns": 16327.55, "deser_p99_ns": 17685.28, "deser_ci_low_ns": 11277.773888888889, "deser_ci_high_ns": 12198.795555555556, "total_mean_ns": 14793.933333333332, "total_median_ns": 13857.0, "total_std_ns": 3210.641179269722, "total_mad_ns": 1573.0, "total_cv": 0.21702417517561629, "total_min_ns": 10717.0, "total_max_ns": 23689.0, "total_p5_ns": 11017.35, "total_p25_ns": 12527.0, "total_p50_ns": 13857.0, "total_p75_ns": 16053.25, "total_p95_ns": 21510.149999999998, "total_p99_ns": 23160.34, "total_ci_low_ns": 14185.234444444444, "total_ci_high_ns": 15459.246944444445, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.391240362815436}, {"serializer": "jsoniter", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.1.12", "avg_time_ser_ns": 1174.3555555555556, "avg_time_deser_ns": 2150.3888888888887, "avg_time_total_ns": 3324.7444444444445, "median_size_bytes": 412.0, "avg_ops_per_sec": 300774.99690870143, "min_ops_per_sec": 170881.74982911826, "max_ops_per_sec": 477783.08647873864, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 1174.3555555555556, "ser_median_ns": 1064.5, "ser_std_ns": 432.36289146110727, "ser_mad_ns": 226.0, "ser_cv": 0.3681703462087921, "ser_min_ns": 587.0, "ser_max_ns": 2293.0, "ser_p5_ns": 714.15, "ser_p25_ns": 847.75, "ser_p50_ns": 1064.5, "ser_p75_ns": 1343.5, "ser_p95_ns": 2055.5, "ser_p99_ns": 2236.93, "ser_ci_low_ns": 1087.9994444444444, "ser_ci_high_ns": 1262.9241666666667, "deser_mean_ns": 2150.3888888888887, "deser_median_ns": 1990.5, "deser_std_ns": 542.5659322943083, "deser_mad_ns": 276.0, "deser_cv": 0.25231061000071175, "deser_min_ns": 1506.0, "deser_max_ns": 3622.0, "deser_p5_ns": 1616.85, "deser_p25_ns": 1764.75, "deser_p50_ns": 1990.5, "deser_p75_ns": 2333.25, "deser_p95_ns": 3417.5, "deser_p99_ns": 3587.29, "deser_ci_low_ns": 2043.878888888889, "deser_ci_high_ns": 2263.290833333333, "total_mean_ns": 3324.7444444444445, "total_median_ns": 3004.5, "total_std_ns": 935.2086297444887, "total_mad_ns": 471.0, "total_cv": 0.28128737272038945, "total_min_ns": 2093.0, "total_max_ns": 5852.0, "total_p5_ns": 2357.6, "total_p25_ns": 2658.0, "total_p50_ns": 3004.5, "total_p75_ns": 3575.0, "total_p95_ns": 5487.4, "total_p99_ns": 5665.99, "total_ci_low_ns": 3140.8080555555557, "total_ci_high_ns": 3520.8452777777775, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.6734767025089605, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.2377587470775375}, {"serializer": "encoding/json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 1356.3827160493827, "avg_time_deser_ns": 6137.234567901234, "avg_time_total_ns": 7493.617283950617, "median_size_bytes": 412.0, "avg_ops_per_sec": 133446.90048979956, "min_ops_per_sec": 90025.20705797624, "max_ops_per_sec": 172622.13015708613, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 1356.3827160493827, "ser_median_ns": 1311.0, "ser_std_ns": 257.15503922251037, "ser_mad_ns": 123.0, "ser_cv": 0.18958884994605604, "ser_min_ns": 898.0, "ser_max_ns": 2230.0, "ser_p5_ns": 1022.0, "ser_p25_ns": 1189.0, "ser_p50_ns": 1311.0, "ser_p75_ns": 1440.0, "ser_p95_ns": 1859.0, "ser_p99_ns": 2088.4000000000005, "ser_ci_low_ns": 1303.0598765432098, "ser_ci_high_ns": 1414.1641975308642, "deser_mean_ns": 6137.234567901234, "deser_median_ns": 5908.0, "deser_std_ns": 898.528356141376, "deser_mad_ns": 490.0, "deser_cv": 0.14640606387131264, "deser_min_ns": 4837.0, "deser_max_ns": 9399.0, "deser_p5_ns": 5142.0, "deser_p25_ns": 5528.0, "deser_p50_ns": 5908.0, "deser_p75_ns": 6517.0, "deser_p95_ns": 7884.0, "deser_p99_ns": 8982.2, "deser_ci_low_ns": 5950.729012345679, "deser_ci_high_ns": 6337.629320987654, "total_mean_ns": 7493.617283950617, "total_median_ns": 7293.0, "total_std_ns": 1113.6646215075393, "total_mad_ns": 642.0, "total_cv": 0.14861509192532688, "total_min_ns": 5793.0, "total_max_ns": 11108.0, "total_p5_ns": 6199.0, "total_p25_ns": 6792.0, "total_p50_ns": 7293.0, "total_p75_ns": 7995.0, "total_p95_ns": 9914.0, "total_p99_ns": 10912.0, "total_ci_low_ns": 7257.887654320988, "total_ci_high_ns": 7730.511728395061, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.586322670127576}, {"serializer": "ugorji/cbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 1811.9886363636363, "avg_time_deser_ns": 2784.6136363636365, "avg_time_total_ns": 4596.602272727273, "median_size_bytes": 345.0, "avg_ops_per_sec": 217551.99616317387, "min_ops_per_sec": 128221.56686754712, "max_ops_per_sec": 315756.23618566466, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 1811.9886363636363, "ser_median_ns": 1712.5, "ser_std_ns": 479.65774422344253, "ser_mad_ns": 261.5, "ser_cv": 0.2647134394761089, "ser_min_ns": 1200.0, "ser_max_ns": 3233.0, "ser_p5_ns": 1262.6000000000001, "ser_p25_ns": 1456.75, "ser_p50_ns": 1712.5, "ser_p75_ns": 1977.0, "ser_p95_ns": 2840.8999999999974, "ser_p99_ns": 3190.37, "ser_ci_low_ns": 1717.043181818182, "ser_ci_high_ns": 1913.9960227272727, "deser_mean_ns": 2784.6136363636365, "deser_median_ns": 2619.0, "deser_std_ns": 667.0278636206998, "deser_mad_ns": 382.5, "deser_cv": 0.23954054340255126, "deser_min_ns": 1809.0, "deser_max_ns": 4679.0, "deser_p5_ns": 2025.45, "deser_p25_ns": 2298.75, "deser_p50_ns": 2619.0, "deser_p75_ns": 3117.5, "deser_p95_ns": 4314.249999999999, "deser_p99_ns": 4580.69, "deser_ci_low_ns": 2650.2792613636366, "deser_ci_high_ns": 2931.9843749999995, "total_mean_ns": 4596.602272727273, "total_median_ns": 4388.5, "total_std_ns": 1112.7427183478464, "total_mad_ns": 566.5, "total_cv": 0.24207939959261035, "total_min_ns": 3167.0, "total_max_ns": 7799.0, "total_p5_ns": 3274.85, "total_p25_ns": 3851.0, "total_p50_ns": 4388.5, "total_p75_ns": 4988.0, "total_p95_ns": 7109.499999999996, "total_p99_ns": 7783.34, "total_ci_low_ns": 4373.385511363636, "total_ci_high_ns": 4839.002840909091, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.9373167155425219, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.4606359295175073}, {"serializer": "goccy/go-json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "0.10.6", "avg_time_ser_ns": 1062.835294117647, "avg_time_deser_ns": 2090.364705882353, "avg_time_total_ns": 3153.2, "median_size_bytes": 412.0, "avg_ops_per_sec": 317138.1453761259, "min_ops_per_sec": 185804.5336306206, "max_ops_per_sec": 463821.892393321, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 1062.835294117647, "ser_median_ns": 973.0, "ser_std_ns": 323.62551282156295, "ser_mad_ns": 181.0, "ser_cv": 0.30449262892632195, "ser_min_ns": 581.0, "ser_max_ns": 2131.0, "ser_p5_ns": 706.2, "ser_p25_ns": 837.0, "ser_p50_ns": 973.0, "ser_p75_ns": 1206.0, "ser_p95_ns": 1797.1999999999996, "ser_p99_ns": 2045.3199999999997, "ser_ci_low_ns": 994.1417647058823, "ser_ci_high_ns": 1135.635588235294, "deser_mean_ns": 2090.364705882353, "deser_median_ns": 2013.0, "deser_std_ns": 373.1202999882281, "deser_mad_ns": 224.0, "deser_cv": 0.17849531181724207, "deser_min_ns": 1530.0, "deser_max_ns": 3353.0, "deser_p5_ns": 1626.0, "deser_p25_ns": 1827.0, "deser_p50_ns": 2013.0, "deser_p75_ns": 2279.0, "deser_p95_ns": 2837.6, "deser_p99_ns": 3170.7199999999993, "deser_ci_low_ns": 2011.4582352941177, "deser_ci_high_ns": 2169.965882352941, "total_mean_ns": 3153.2, "total_median_ns": 3013.0, "total_std_ns": 675.8880014293717, "total_mad_ns": 399.0, "total_cv": 0.21434986725528724, "total_min_ns": 2156.0, "total_max_ns": 5382.0, "total_p5_ns": 2337.8, "total_p25_ns": 2678.0, "total_p50_ns": 3013.0, "total_p75_ns": 3431.0, "total_p95_ns": 4456.2, "total_p99_ns": 5285.4, "total_ci_low_ns": 3024.1711764705883, "total_ci_high_ns": 3295.001764705882, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.6518659076533839, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.2279167584721458}, {"serializer": "ugorji/msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 1663.7954545454545, "avg_time_deser_ns": 2669.0795454545455, "avg_time_total_ns": 4332.875, "median_size_bytes": 346.0, "avg_ops_per_sec": 230793.64163517294, "min_ops_per_sec": 142775.55682467163, "max_ops_per_sec": 339558.57385398983, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 1663.7954545454545, "ser_median_ns": 1577.5, "ser_std_ns": 385.8173637098529, "ser_mad_ns": 211.0, "ser_cv": 0.2318899012831222, "ser_min_ns": 1103.0, "ser_max_ns": 2829.0, "ser_p5_ns": 1202.1, "ser_p25_ns": 1377.75, "ser_p50_ns": 1577.5, "ser_p75_ns": 1824.25, "ser_p95_ns": 2522.0499999999993, "ser_p99_ns": 2724.5999999999995, "ser_ci_low_ns": 1582.9576704545455, "ser_ci_high_ns": 1742.9551136363636, "deser_mean_ns": 2669.0795454545455, "deser_median_ns": 2505.0, "deser_std_ns": 572.2172889590973, "deser_mad_ns": 282.0, "deser_cv": 0.21438749921619457, "deser_min_ns": 1842.0, "deser_max_ns": 4316.0, "deser_p5_ns": 1991.7, "deser_p25_ns": 2290.5, "deser_p50_ns": 2505.0, "deser_p75_ns": 2915.0, "deser_p95_ns": 3889.6, "deser_p99_ns": 4269.0199999999995, "deser_ci_low_ns": 2550.403409090909, "deser_ci_high_ns": 2790.241193181818, "total_mean_ns": 4332.875, "total_median_ns": 4028.0, "total_std_ns": 915.1621401784997, "total_mad_ns": 438.5, "total_cv": 0.2112136030184346, "total_min_ns": 2945.0, "total_max_ns": 7004.0, "total_p5_ns": 3234.95, "total_p25_ns": 3712.25, "total_p50_ns": 4028.0, "total_p75_ns": 4686.5, "total_p95_ns": 6460.299999999996, "total_p99_ns": 6763.009999999998, "total_ci_low_ns": 4157.326136363636, "total_ci_high_ns": 4519.692329545454, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.9205767350928641, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.472097180721613}, {"serializer": "linkedin/goavro", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "2.15.0", "avg_time_ser_ns": 928.3809523809524, "avg_time_deser_ns": 2279.690476190476, "avg_time_total_ns": 3208.0714285714284, "median_size_bytes": 338.0, "avg_ops_per_sec": 311713.7577093492, "min_ops_per_sec": 205676.67626491157, "max_ops_per_sec": 400160.0640256102, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 928.3809523809524, "ser_median_ns": 879.5, "ser_std_ns": 232.54013281099833, "ser_mad_ns": 126.0, "ser_cv": 0.25047921568685705, "ser_min_ns": 554.0, "ser_max_ns": 1727.0, "ser_p5_ns": 654.5, "ser_p25_ns": 767.5, "ser_p50_ns": 879.5, "ser_p75_ns": 1045.25, "ser_p95_ns": 1347.25, "ser_p99_ns": 1572.6200000000003, "ser_ci_low_ns": 880.3190476190476, "ser_ci_high_ns": 977.2220238095238, "deser_mean_ns": 2279.690476190476, "deser_median_ns": 2220.5, "deser_std_ns": 292.09372881701574, "deser_mad_ns": 174.5, "deser_cv": 0.12812867881306633, "deser_min_ns": 1826.0, "deser_max_ns": 3135.0, "deser_p5_ns": 1956.75, "deser_p25_ns": 2053.75, "deser_p50_ns": 2220.5, "deser_p75_ns": 2441.75, "deser_p95_ns": 2807.25, "deser_p99_ns": 3095.9900000000002, "deser_ci_low_ns": 2218.1300595238095, "deser_ci_high_ns": 2343.716369047619, "total_mean_ns": 3208.0714285714284, "total_median_ns": 3105.5, "total_std_ns": 448.1319670551631, "total_mad_ns": 273.0, "total_cv": 0.13968889940044718, "total_min_ns": 2499.0, "total_max_ns": 4862.0, "total_p5_ns": 2682.4, "total_p25_ns": 2875.25, "total_p50_ns": 3105.5, "total_p75_ns": 3418.5, "total_p95_ns": 4018.3499999999995, "total_p99_ns": 4436.210000000001, "total_ci_low_ns": 3113.066369047619, "total_ci_high_ns": 3304.071726190476, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.7075012800819253, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.5013069870883973}, {"serializer": "vmihailenco/msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "5.4.1", "avg_time_ser_ns": 1418.5185185185185, "avg_time_deser_ns": 1955.6172839506173, "avg_time_total_ns": 3374.135802469136, "median_size_bytes": 346.0, "avg_ops_per_sec": 296372.1849216077, "min_ops_per_sec": 172503.01880282906, "max_ops_per_sec": 433463.3723450368, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 1418.5185185185185, "ser_median_ns": 1352.0, "ser_std_ns": 304.38483499967236, "ser_mad_ns": 140.0, "ser_cv": 0.21457938759768028, "ser_min_ns": 999.0, "ser_max_ns": 2391.0, "ser_p5_ns": 1125.0, "ser_p25_ns": 1214.0, "ser_p50_ns": 1352.0, "ser_p75_ns": 1492.0, "ser_p95_ns": 2117.0, "ser_p99_ns": 2355.0, "ser_ci_low_ns": 1356.1046296296297, "ser_ci_high_ns": 1486.6077160493826, "deser_mean_ns": 1955.6172839506173, "deser_median_ns": 1827.0, "deser_std_ns": 431.9221158930518, "deser_mad_ns": 205.0, "deser_cv": 0.22086229214568476, "deser_min_ns": 1300.0, "deser_max_ns": 3406.0, "deser_p5_ns": 1498.0, "deser_p25_ns": 1682.0, "deser_p50_ns": 1827.0, "deser_p75_ns": 2075.0, "deser_p95_ns": 2766.0, "deser_p99_ns": 3298.0000000000005, "deser_ci_low_ns": 1867.2827160493828, "deser_ci_high_ns": 2052.2145061728393, "total_mean_ns": 3374.135802469136, "total_median_ns": 3142.0, "total_std_ns": 715.7263749696251, "total_mad_ns": 318.0, "total_cv": 0.21212138955576967, "total_min_ns": 2307.0, "total_max_ns": 5797.0, "total_p5_ns": 2645.0, "total_p25_ns": 2888.0, "total_p50_ns": 3142.0, "total_p75_ns": 3631.0, "total_p95_ns": 4733.0, "total_p99_ns": 5653.000000000001, "total_ci_low_ns": 3218.589814814815, "total_ci_high_ns": 3531.627469135802, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.7287933094384708, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.5000799592415195}, {"serializer": "goccy/go-yaml", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.19.2", "avg_time_ser_ns": 33654.0, "avg_time_deser_ns": 38534.06976744186, "avg_time_total_ns": 72188.06976744186, "median_size_bytes": 407.0, "avg_ops_per_sec": 13852.704515047419, "min_ops_per_sec": 10492.959224360455, "max_ops_per_sec": 16026.41152619517, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 33654.0, "ser_median_ns": 32734.0, "ser_std_ns": 3443.0129486695055, "ser_mad_ns": 2022.0, "ser_cv": 0.10230620278925255, "ser_min_ns": 28938.0, "ser_max_ns": 44134.0, "ser_p5_ns": 29878.5, "ser_p25_ns": 30989.5, "ser_p50_ns": 32734.0, "ser_p75_ns": 35977.75, "ser_p95_ns": 40298.5, "ser_p99_ns": 44051.55, "ser_ci_low_ns": 32956.34476744186, "ser_ci_high_ns": 34388.69127906977, "deser_mean_ns": 38534.06976744186, "deser_median_ns": 37858.0, "deser_std_ns": 3896.322401175083, "deser_mad_ns": 2336.5, "deser_cv": 0.1011137008026896, "deser_min_ns": 33184.0, "deser_max_ns": 51265.0, "deser_p5_ns": 33899.0, "deser_p25_ns": 35569.5, "deser_p50_ns": 37858.0, "deser_p75_ns": 40170.5, "deser_p95_ns": 45936.25, "deser_p99_ns": 50947.950000000004, "deser_ci_low_ns": 37763.30087209302, "deser_ci_high_ns": 39428.079069767446, "total_mean_ns": 72188.06976744186, "total_median_ns": 70698.5, "total_std_ns": 6981.692021095472, "total_mad_ns": 4154.5, "total_cv": 0.09671531658329979, "total_min_ns": 62397.0, "total_max_ns": 95302.0, "total_p5_ns": 63955.25, "total_p25_ns": 66885.25, "total_p50_ns": 70698.5, "total_p75_ns": 76063.0, "total_p95_ns": 84851.0, "total_p99_ns": 93935.20000000001, "total_ci_low_ns": 70773.88430232559, "total_ci_high_ns": 73666.99244186046, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.302630211389411}, {"serializer": "segmentio/encoding/json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "0.5.4", "avg_time_ser_ns": 844.825, "avg_time_deser_ns": 5225.7, "avg_time_total_ns": 6070.525, "median_size_bytes": 412.0, "avg_ops_per_sec": 164730.39811218964, "min_ops_per_sec": 108624.80990658267, "max_ops_per_sec": 251004.01606425704, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 844.825, "ser_median_ns": 807.0, "ser_std_ns": 196.33604458953351, "ser_mad_ns": 107.0, "ser_cv": 0.23239847848907585, "ser_min_ns": 535.0, "ser_max_ns": 1558.0, "ser_p5_ns": 615.05, "ser_p25_ns": 706.75, "ser_p50_ns": 807.0, "ser_p75_ns": 956.5, "ser_p95_ns": 1170.1999999999998, "ser_p99_ns": 1535.09, "ser_ci_low_ns": 802.844375, "ser_ci_high_ns": 890.1640625, "deser_mean_ns": 5225.7, "deser_median_ns": 5202.5, "deser_std_ns": 830.8162891573046, "deser_mad_ns": 619.5, "deser_cv": 0.15898660259052463, "deser_min_ns": 3285.0, "deser_max_ns": 8145.0, "deser_p5_ns": 4120.6, "deser_p25_ns": 4575.25, "deser_p50_ns": 5202.5, "deser_p75_ns": 5727.5, "deser_p95_ns": 6524.849999999999, "deser_p99_ns": 7453.7499999999945, "deser_ci_low_ns": 5056.3265625, "deser_ci_high_ns": 5413.7162499999995, "total_mean_ns": 6070.525, "total_median_ns": 5946.5, "total_std_ns": 949.4582862568383, "total_mad_ns": 647.5, "total_cv": 0.1564046414860063, "total_min_ns": 3984.0, "total_max_ns": 9206.0, "total_p5_ns": 4839.95, "total_p25_ns": 5341.5, "total_p50_ns": 5946.5, "total_p75_ns": 6643.75, "total_p95_ns": 7529.599999999999, "total_p99_ns": 8884.469999999998, "total_ci_low_ns": 5867.4075, "total_ci_high_ns": 6281.2296875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.9989247311827957, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.495046759269004}, {"serializer": "protobuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.36.11", "avg_time_ser_ns": 1001.5862068965517, "avg_time_deser_ns": 1899.7701149425288, "avg_time_total_ns": 2901.3563218390805, "median_size_bytes": 368.0, "avg_ops_per_sec": 344666.38670776255, "min_ops_per_sec": 201005.02512562813, "max_ops_per_sec": 545553.7370430988, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 1001.5862068965517, "ser_median_ns": 925.0, "ser_std_ns": 287.55325297396683, "ser_mad_ns": 116.0, "ser_cv": 0.2870978563742009, "ser_min_ns": 592.0, "ser_max_ns": 1913.0, "ser_p5_ns": 676.5, "ser_p25_ns": 812.0, "ser_p50_ns": 925.0, "ser_p75_ns": 1077.0, "ser_p95_ns": 1587.5000000000002, "ser_p99_ns": 1829.5800000000002, "ser_ci_low_ns": 944.4005747126438, "ser_ci_high_ns": 1061.9238505747128, "deser_mean_ns": 1899.7701149425288, "deser_median_ns": 1723.0, "deser_std_ns": 501.85733405785857, "deser_mad_ns": 229.0, "deser_cv": 0.26416740115581855, "deser_min_ns": 1241.0, "deser_max_ns": 3390.0, "deser_p5_ns": 1387.9, "deser_p25_ns": 1558.5, "deser_p50_ns": 1723.0, "deser_p75_ns": 2052.0, "deser_p95_ns": 2970.2000000000003, "deser_p99_ns": 3287.66, "deser_ci_low_ns": 1791.6551724137933, "deser_ci_high_ns": 2016.1649425287355, "total_mean_ns": 2901.3563218390805, "total_median_ns": 2695.0, "total_std_ns": 740.4887288844568, "total_mad_ns": 374.0, "total_cv": 0.2552215745824297, "total_min_ns": 1833.0, "total_max_ns": 4975.0, "total_p5_ns": 2118.1, "total_p25_ns": 2381.0, "total_p50_ns": 2695.0, "total_p75_ns": 3124.5, "total_p95_ns": 4464.8, "total_p99_ns": 4974.14, "total_ci_low_ns": 2752.1706896551727, "total_ci_high_ns": 3061.45, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.5183537263626251, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 0.836123627328417}, {"serializer": "ugorji/json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 2257.32183908046, "avg_time_deser_ns": 3490.287356321839, "avg_time_total_ns": 5747.609195402299, "median_size_bytes": 411.0, "avg_ops_per_sec": 173985.3852276409, "min_ops_per_sec": 102072.06287639073, "max_ops_per_sec": 256805.34155110427, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 2257.32183908046, "ser_median_ns": 2054.0, "ser_std_ns": 622.3544846126753, "ser_mad_ns": 295.0, "ser_cv": 0.2757048081660331, "ser_min_ns": 1417.0, "ser_max_ns": 4255.0, "ser_p5_ns": 1638.5, "ser_p25_ns": 1823.5, "ser_p50_ns": 2054.0, "ser_p75_ns": 2479.0, "ser_p95_ns": 3594.4, "ser_p99_ns": 4083.0, "ser_ci_low_ns": 2131.569540229885, "ser_ci_high_ns": 2389.5988505747123, "deser_mean_ns": 3490.287356321839, "deser_median_ns": 3316.0, "deser_std_ns": 762.7147186514634, "deser_mad_ns": 424.0, "deser_cv": 0.21852490662981777, "deser_min_ns": 2477.0, "deser_max_ns": 5742.0, "deser_p5_ns": 2670.9, "deser_p25_ns": 2913.0, "deser_p50_ns": 3316.0, "deser_p75_ns": 3869.0, "deser_p95_ns": 5169.900000000001, "deser_p99_ns": 5659.4400000000005, "deser_ci_low_ns": 3342.2045977011494, "deser_ci_high_ns": 3656.127298850575, "total_mean_ns": 5747.609195402299, "total_median_ns": 5375.0, "total_std_ns": 1345.4072553339226, "total_mad_ns": 718.0, "total_cv": 0.23408119960733553, "total_min_ns": 3894.0, "total_max_ns": 9797.0, "total_p5_ns": 4370.4, "total_p25_ns": 4735.5, "total_p50_ns": 5375.0, "total_p75_ns": 6245.0, "total_p95_ns": 8805.7, "total_p99_ns": 9649.08, "total_ci_low_ns": 5471.768103448276, "total_ci_high_ns": 6034.144827586207, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.9985168705969596, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.2159432953531857}, {"serializer": "hamba/avro", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "2.31.0", "avg_time_ser_ns": 996.0752688172043, "avg_time_deser_ns": 1287.9462365591398, "avg_time_total_ns": 2284.021505376344, "median_size_bytes": 340.0, "avg_ops_per_sec": 437824.2488724849, "min_ops_per_sec": 236462.52069047056, "max_ops_per_sec": 843881.8565400844, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 996.0752688172043, "ser_median_ns": 895.0, "ser_std_ns": 359.1562647844171, "ser_mad_ns": 189.0, "ser_cv": 0.3605714106433938, "ser_min_ns": 507.0, "ser_max_ns": 2004.0, "ser_p5_ns": 574.8, "ser_p25_ns": 749.0, "ser_p50_ns": 895.0, "ser_p75_ns": 1189.0, "ser_p95_ns": 1779.1999999999996, "ser_p99_ns": 1977.32, "ser_ci_low_ns": 924.9736559139785, "ser_ci_high_ns": 1072.2314516129031, "deser_mean_ns": 1287.9462365591398, "deser_median_ns": 1209.0, "deser_std_ns": 404.9078093030506, "deser_mad_ns": 228.0, "deser_cv": 0.31438254005446453, "deser_min_ns": 621.0, "deser_max_ns": 2261.0, "deser_p5_ns": 788.4, "deser_p25_ns": 981.0, "deser_p50_ns": 1209.0, "deser_p75_ns": 1415.0, "deser_p95_ns": 2090.7999999999993, "deser_p99_ns": 2254.56, "deser_ci_low_ns": 1209.3153225806452, "deser_ci_high_ns": 1367.0513440860213, "total_mean_ns": 2284.021505376344, "total_median_ns": 2121.0, "total_std_ns": 730.2493614973412, "total_mad_ns": 384.0, "total_cv": 0.3197208781871851, "total_min_ns": 1185.0, "total_max_ns": 4229.0, "total_p5_ns": 1345.4, "total_p25_ns": 1804.0, "total_p50_ns": 2121.0, "total_p75_ns": 2631.0, "total_p95_ns": 3866.5999999999985, "total_p99_ns": 4092.8399999999997, "total_ci_low_ns": 2139.0086021505376, "total_ci_high_ns": 2436.905376344086, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "sonic", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.15.2", "avg_time_ser_ns": 967.0344827586207, "avg_time_deser_ns": 1688.4942528735633, "avg_time_total_ns": 2655.5287356321837, "median_size_bytes": 412.0, "avg_ops_per_sec": 376572.84087416844, "min_ops_per_sec": 202880.90890647192, "max_ops_per_sec": 772797.5270479134, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 967.0344827586207, "ser_median_ns": 911.0, "ser_std_ns": 332.2803680375348, "ser_mad_ns": 210.0, "ser_cv": 0.34360756928713837, "ser_min_ns": 456.0, "ser_max_ns": 1892.0, "ser_p5_ns": 567.7, "ser_p25_ns": 698.5, "ser_p50_ns": 911.0, "ser_p75_ns": 1111.0, "ser_p95_ns": 1701.7000000000003, "ser_p99_ns": 1881.68, "ser_ci_low_ns": 898.7962643678161, "ser_ci_high_ns": 1036.4856321839081, "deser_mean_ns": 1688.4942528735633, "deser_median_ns": 1555.0, "deser_std_ns": 518.5579260227396, "deser_mad_ns": 290.0, "deser_cv": 0.30711263905117353, "deser_min_ns": 775.0, "deser_max_ns": 3063.0, "deser_p5_ns": 1038.8, "deser_p25_ns": 1344.5, "deser_p50_ns": 1555.0, "deser_p75_ns": 1901.5, "deser_p95_ns": 2724.0, "deser_p99_ns": 3062.14, "deser_ci_low_ns": 1583.28908045977, "deser_ci_high_ns": 1806.019540229885, "total_mean_ns": 2655.5287356321837, "total_median_ns": 2502.0, "total_std_ns": 820.1234002310398, "total_mad_ns": 457.0, "total_cv": 0.3088361986923853, "total_min_ns": 1294.0, "total_max_ns": 4929.0, "total_p5_ns": 1623.3, "total_p25_ns": 2115.0, "total_p50_ns": 2502.0, "total_p75_ns": 3109.0, "total_p95_ns": 4287.900000000001, "total_p99_ns": 4870.52, "total_ci_low_ns": 2481.9761494252875, "total_ci_high_ns": 2827.0149425287354, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.2992213570634038, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.4773574844708334}, {"serializer": "mongo-bson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.17.9", "avg_time_ser_ns": 2333.548780487805, "avg_time_deser_ns": 4015.878048780488, "avg_time_total_ns": 6349.426829268293, "median_size_bytes": 599.0, "avg_ops_per_sec": 157494.53090638103, "min_ops_per_sec": 92089.51100469657, "max_ops_per_sec": 217344.05564007824, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 2333.548780487805, "ser_median_ns": 2187.0, "ser_std_ns": 608.6663857944064, "ser_mad_ns": 324.0, "ser_cv": 0.2608329386057106, "ser_min_ns": 1451.0, "ser_max_ns": 4228.0, "ser_p5_ns": 1671.8, "ser_p25_ns": 1904.5, "ser_p50_ns": 2187.0, "ser_p75_ns": 2605.5, "ser_p95_ns": 3726.9000000000005, "ser_p99_ns": 4097.589999999999, "ser_ci_low_ns": 2202.5076219512193, "ser_ci_high_ns": 2468.8935975609756, "deser_mean_ns": 4015.878048780488, "deser_median_ns": 3847.0, "deser_std_ns": 717.8853271720945, "deser_mad_ns": 367.0, "deser_cv": 0.17876173490629194, "deser_min_ns": 3103.0, "deser_max_ns": 6631.0, "deser_p5_ns": 3191.15, "deser_p25_ns": 3554.75, "deser_p50_ns": 3847.0, "deser_p75_ns": 4288.5, "deser_p95_ns": 5319.200000000001, "deser_p99_ns": 6494.11, "deser_ci_low_ns": 3868.4875, "deser_ci_high_ns": 4172.375609756097, "total_mean_ns": 6349.426829268293, "total_median_ns": 6037.0, "total_std_ns": 1235.3649036609506, "total_mad_ns": 577.5, "total_cv": 0.194563216000288, "total_min_ns": 4601.0, "total_max_ns": 10859.0, "total_p5_ns": 5042.05, "total_p25_ns": 5478.25, "total_p50_ns": 6037.0, "total_p75_ns": 6825.0, "total_p95_ns": 8784.85, "total_p99_ns": 10505.029999999999, "total_ci_low_ns": 6093.913719512195, "total_ci_high_ns": 6619.258841463415, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.051544585561986}, {"serializer": "shamaton/msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "3.1.2", "avg_time_ser_ns": 1133.9444444444443, "avg_time_deser_ns": 2425.0777777777776, "avg_time_total_ns": 3559.0222222222224, "median_size_bytes": 346.0, "avg_ops_per_sec": 280976.04835285596, "min_ops_per_sec": 170212.7659574468, "max_ops_per_sec": 437636.761487965, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 1133.9444444444443, "ser_median_ns": 1008.0, "ser_std_ns": 430.28784097669376, "ser_mad_ns": 215.0, "ser_cv": 0.3794611306442844, "ser_min_ns": 584.0, "ser_max_ns": 2408.0, "ser_p5_ns": 642.55, "ser_p25_ns": 811.5, "ser_p50_ns": 1008.0, "ser_p75_ns": 1378.5, "ser_p95_ns": 1995.95, "ser_p99_ns": 2221.99, "ser_ci_low_ns": 1048.9775000000002, "ser_ci_high_ns": 1219.9633333333334, "deser_mean_ns": 2425.0777777777776, "deser_median_ns": 2284.0, "deser_std_ns": 503.8770187877415, "deser_mad_ns": 289.0, "deser_cv": 0.20777767352660736, "deser_min_ns": 1632.0, "deser_max_ns": 3794.0, "deser_p5_ns": 1798.45, "deser_p25_ns": 2082.5, "deser_p50_ns": 2284.0, "deser_p75_ns": 2668.25, "deser_p95_ns": 3465.2, "deser_p99_ns": 3693.43, "deser_ci_low_ns": 2328.4550000000004, "deser_ci_high_ns": 2524.743611111111, "total_mean_ns": 3559.0222222222224, "total_median_ns": 3309.0, "total_std_ns": 902.3196819804987, "total_mad_ns": 521.5, "total_cv": 0.2535302185938862, "total_min_ns": 2285.0, "total_max_ns": 5875.0, "total_p5_ns": 2459.9, "total_p25_ns": 2874.75, "total_p50_ns": 3309.0, "total_p75_ns": 3999.0, "total_p95_ns": 5425.75, "total_p99_ns": 5634.7, "total_ci_low_ns": 3366.766666666667, "total_ci_high_ns": 3742.069722222222, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.7529271206690562, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.5495862745214208}, {"serializer": "mongo-bson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.17.9", "avg_time_ser_ns": 126892.15730337078, "avg_time_deser_ns": 316481.7415730337, "avg_time_total_ns": 443373.8988764045, "median_size_bytes": 60537.0, "avg_ops_per_sec": 2255.4327228873735, "min_ops_per_sec": 1249.1334136942496, "max_ops_per_sec": 2893.3008512091105, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 126892.15730337078, "ser_median_ns": 114663.0, "ser_std_ns": 33632.02993626857, "ser_mad_ns": 14777.0, "ser_cv": 0.26504419698580667, "ser_min_ns": 93543.0, "ser_max_ns": 227737.0, "ser_p5_ns": 96073.8, "ser_p25_ns": 101892.0, "ser_p50_ns": 114663.0, "ser_p75_ns": 135938.0, "ser_p95_ns": 192862.39999999997, "ser_p99_ns": 227018.04, "ser_ci_low_ns": 120113.77612359551, "ser_ci_high_ns": 133859.78539325844, "deser_mean_ns": 316481.7415730337, "deser_median_ns": 278675.0, "deser_std_ns": 77351.78248659117, "deser_mad_ns": 21253.0, "deser_cv": 0.24441151676593922, "deser_min_ns": 252083.0, "deser_max_ns": 572818.0, "deser_p5_ns": 254871.8, "deser_p25_ns": 263177.0, "deser_p50_ns": 278675.0, "deser_p75_ns": 345158.0, "deser_p95_ns": 476627.79999999976, "deser_p99_ns": 561942.9600000001, "deser_ci_low_ns": 301078.29101123597, "deser_ci_high_ns": 332544.6943820224, "total_mean_ns": 443373.8988764045, "total_median_ns": 400245.0, "total_std_ns": 107547.80396008737, "total_mad_ns": 38726.0, "total_cv": 0.2425668363262573, "total_min_ns": 345626.0, "total_max_ns": 800555.0, "total_p5_ns": 353240.4, "total_p25_ns": 365988.0, "total_p50_ns": 400245.0, "total_p75_ns": 481108.0, "total_p95_ns": 653710.1999999998, "total_p99_ns": 777609.8800000001, "total_ci_low_ns": 421344.71348314604, "total_ci_high_ns": 467026.6949438202, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.1572537738030055}, {"serializer": "shamaton/msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "3.1.2", "avg_time_ser_ns": 41300.42352941177, "avg_time_deser_ns": 89566.88235294117, "avg_time_total_ns": 130867.30588235294, "median_size_bytes": 34833.0, "avg_ops_per_sec": 7641.3279333417295, "min_ops_per_sec": 5168.599722963055, "max_ops_per_sec": 8880.600328582212, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 41300.42352941177, "ser_median_ns": 38570.0, "ser_std_ns": 6992.982358827194, "ser_mad_ns": 2309.0, "ser_cv": 0.1693198703845542, "ser_min_ns": 34718.0, "ser_max_ns": 62414.0, "ser_p5_ns": 35413.6, "ser_p25_ns": 36790.0, "ser_p50_ns": 38570.0, "ser_p75_ns": 42933.0, "ser_p95_ns": 57785.2, "ser_p99_ns": 61332.92, "ser_ci_low_ns": 39920.717058823524, "ser_ci_high_ns": 42849.388823529414, "deser_mean_ns": 89566.88235294117, "deser_median_ns": 83955.0, "deser_std_ns": 14445.247664240045, "deser_mad_ns": 3735.0, "deser_cv": 0.16127889332262435, "deser_min_ns": 77050.0, "deser_max_ns": 132060.0, "deser_p5_ns": 78910.8, "deser_p25_ns": 80579.0, "deser_p50_ns": 83955.0, "deser_p75_ns": 92801.0, "deser_p95_ns": 125236.4, "deser_p99_ns": 131221.68, "deser_ci_low_ns": 86561.95205882353, "deser_ci_high_ns": 92780.22647058824, "total_mean_ns": 130867.30588235294, "total_median_ns": 122372.0, "total_std_ns": 20485.397644259127, "total_mad_ns": 6059.0, "total_cv": 0.15653564124469013, "total_min_ns": 112605.0, "total_max_ns": 193476.0, "total_p5_ns": 114874.8, "total_p25_ns": 117243.0, "total_p50_ns": 122372.0, "total_p75_ns": 136328.0, "total_p95_ns": 181864.0, "total_p99_ns": 190562.87999999998, "total_ci_low_ns": 126723.315, "total_ci_high_ns": 135301.25911764705, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.491683569979716, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 0.6886046512045335}, {"serializer": "pelletier/go-toml", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "2.4.3", "avg_time_ser_ns": 204291.37078651684, "avg_time_deser_ns": 305966.1797752809, "avg_time_total_ns": 510257.55056179775, "median_size_bytes": 45429.0, "avg_ops_per_sec": 1959.7946152859313, "min_ops_per_sec": 1246.6791583918337, "max_ops_per_sec": 2425.6301787204316, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 204291.37078651684, "ser_median_ns": 180761.0, "ser_std_ns": 50385.64153636837, "ser_mad_ns": 14491.0, "ser_cv": 0.24663617137809035, "ser_min_ns": 155303.0, "ser_max_ns": 362414.0, "ser_p5_ns": 159644.2, "ser_p25_ns": 169012.0, "ser_p50_ns": 180761.0, "ser_p75_ns": 220050.0, "ser_p95_ns": 316069.2, "ser_p99_ns": 338492.96000000014, "ser_ci_low_ns": 194271.6334269663, "ser_ci_high_ns": 215683.129494382, "deser_mean_ns": 305966.1797752809, "deser_median_ns": 277934.0, "deser_std_ns": 63857.83642424394, "deser_mad_ns": 16528.0, "deser_cv": 0.2087088071993604, "deser_min_ns": 254030.0, "deser_max_ns": 505899.0, "deser_p5_ns": 257367.8, "deser_p25_ns": 262465.0, "deser_p50_ns": 277934.0, "deser_p75_ns": 323579.0, "deser_p95_ns": 435465.6, "deser_p99_ns": 473823.8800000002, "deser_ci_low_ns": 294016.331741573, "deser_ci_high_ns": 319416.7879213483, "total_mean_ns": 510257.55056179775, "total_median_ns": 464261.0, "total_std_ns": 102872.60190511138, "total_mad_ns": 35184.0, "total_cv": 0.2016091712740905, "total_min_ns": 412264.0, "total_max_ns": 802131.0, "total_p5_ns": 420076.8, "total_p25_ns": 435380.0, "total_p50_ns": 464261.0, "total_p75_ns": 557710.0, "total_p95_ns": 716257.4, "total_p99_ns": 759647.2400000002, "total_ci_low_ns": 490781.1216292135, "total_ci_high_ns": 532275.9941011235, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.214883049451721}, {"serializer": "kelindar/binary", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.0.19", "avg_time_ser_ns": 75260.40243902439, "avg_time_deser_ns": 104175.75609756098, "avg_time_total_ns": 179436.15853658537, "median_size_bytes": 33931.0, "avg_ops_per_sec": 5573.01275370376, "min_ops_per_sec": 3635.7554736298657, "max_ops_per_sec": 6876.302199729073, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 75260.40243902439, "ser_median_ns": 68043.0, "ser_std_ns": 15765.43481669631, "ser_mad_ns": 5412.0, "ser_cv": 0.20947848145602715, "ser_min_ns": 58476.0, "ser_max_ns": 126241.0, "ser_p5_ns": 61700.7, "ser_p25_ns": 63719.75, "ser_p50_ns": 68043.0, "ser_p75_ns": 84871.0, "ser_p95_ns": 112434.50000000001, "ser_p99_ns": 118991.49999999999, "ser_ci_low_ns": 71975.1993902439, "ser_ci_high_ns": 78502.79999999999, "deser_mean_ns": 104175.75609756098, "deser_median_ns": 95791.0, "deser_std_ns": 19741.896513247586, "deser_mad_ns": 7935.5, "deser_cv": 0.1895056705396909, "deser_min_ns": 84882.0, "deser_max_ns": 158150.0, "deser_p5_ns": 86428.7, "deser_p25_ns": 88392.25, "deser_p50_ns": 95791.0, "deser_p75_ns": 112260.0, "deser_p95_ns": 146362.25, "deser_p99_ns": 150727.15999999997, "deser_ci_low_ns": 100100.18201219512, "deser_ci_high_ns": 108516.30487804877, "total_mean_ns": 179436.15853658537, "total_median_ns": 163435.0, "total_std_ns": 34537.41068288501, "total_mad_ns": 13565.0, "total_cv": 0.19247743021562266, "total_min_ns": 145427.0, "total_max_ns": 275046.0, "total_p5_ns": 148845.6, "total_p25_ns": 152832.5, "total_p50_ns": 163435.0, "total_p75_ns": 193492.75, "total_p95_ns": 262239.95, "total_p99_ns": 269069.82, "total_ci_low_ns": 171976.62957317074, "total_ci_high_ns": 187303.82591463416, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.864592094196804, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.09594883052387}, {"serializer": "ugorji/cbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 41655.89247311828, "avg_time_deser_ns": 105838.4623655914, "avg_time_total_ns": 147494.35483870967, "median_size_bytes": 34732.0, "avg_ops_per_sec": 6779.920499964461, "min_ops_per_sec": 4105.59592724884, "max_ops_per_sec": 8627.606615648752, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 41655.89247311828, "ser_median_ns": 37465.0, "ser_std_ns": 8761.219241464509, "ser_mad_ns": 3917.0, "ser_cv": 0.21032364741959064, "ser_min_ns": 31632.0, "ser_max_ns": 65518.0, "ser_p5_ns": 33060.2, "ser_p25_ns": 35172.0, "ser_p50_ns": 37465.0, "ser_p75_ns": 46737.0, "ser_p95_ns": 61081.19999999999, "ser_p99_ns": 63138.88, "ser_ci_low_ns": 39896.25833333334, "ser_ci_high_ns": 43511.631182795696, "deser_mean_ns": 105838.4623655914, "deser_median_ns": 95105.0, "deser_std_ns": 22717.87447505442, "deser_mad_ns": 6336.0, "deser_cv": 0.21464667916831068, "deser_min_ns": 84275.0, "deser_max_ns": 183204.0, "deser_p5_ns": 86801.2, "deser_p25_ns": 90487.0, "deser_p50_ns": 95105.0, "deser_p75_ns": 121153.0, "deser_p95_ns": 144759.19999999998, "deser_p99_ns": 176172.43999999997, "deser_ci_low_ns": 101377.79005376344, "deser_ci_high_ns": 110388.27069892474, "total_mean_ns": 147494.35483870967, "total_median_ns": 133230.0, "total_std_ns": 30262.871341271857, "total_mad_ns": 9418.0, "total_cv": 0.20517986179447603, "total_min_ns": 115907.0, "total_max_ns": 243570.0, "total_p5_ns": 119984.2, "total_p25_ns": 127277.0, "total_p50_ns": 133230.0, "total_p75_ns": 171817.0, "total_p95_ns": 199453.8, "total_p99_ns": 241278.28, "total_ci_low_ns": 141772.74623655915, "total_ci_high_ns": 153639.38575268816, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.6801384254109505, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.1504420678098026}, {"serializer": "ugorji/msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 38868.0843373494, "avg_time_deser_ns": 97525.68674698795, "avg_time_total_ns": 136393.77108433735, "median_size_bytes": 34833.0, "avg_ops_per_sec": 7331.713113069238, "min_ops_per_sec": 5229.086269465273, "max_ops_per_sec": 8535.773426430169, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 38868.0843373494, "ser_median_ns": 36366.0, "ser_std_ns": 7921.49337085551, "ser_mad_ns": 2892.0, "ser_cv": 0.20380457400735677, "ser_min_ns": 31054.0, "ser_max_ns": 64294.0, "ser_p5_ns": 31763.8, "ser_p25_ns": 33861.5, "ser_p50_ns": 36366.0, "ser_p75_ns": 40240.5, "ser_p95_ns": 57846.5, "ser_p99_ns": 61879.91999999998, "ser_ci_low_ns": 37238.97620481927, "ser_ci_high_ns": 40620.163855421684, "deser_mean_ns": 97525.68674698795, "deser_median_ns": 93906.0, "deser_std_ns": 11077.45857303295, "deser_mad_ns": 4749.0, "deser_cv": 0.11358503531250524, "deser_min_ns": 86100.0, "deser_max_ns": 140822.0, "deser_p5_ns": 87365.8, "deser_p25_ns": 89646.5, "deser_p50_ns": 93906.0, "deser_p75_ns": 101216.5, "deser_p95_ns": 120703.89999999995, "deser_p99_ns": 139579.69999999998, "deser_ci_low_ns": 95148.228313253, "deser_ci_high_ns": 100078.55572289156, "total_mean_ns": 136393.77108433735, "total_median_ns": 132027.0, "total_std_ns": 15989.714685998668, "total_mad_ns": 9674.0, "total_cv": 0.11723200083757221, "total_min_ns": 117154.0, "total_max_ns": 191238.0, "total_p5_ns": 119463.2, "total_p25_ns": 124278.5, "total_p50_ns": 132027.0, "total_p75_ns": 143726.0, "total_p95_ns": 162042.89999999997, "total_p99_ns": 190037.52, "total_ci_low_ns": 133078.70963855422, "total_ci_high_ns": 139733.01144578314, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.6122420717352167, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 0.9847004754653943}, {"serializer": "hamba/avro", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "2.31.0", "avg_time_ser_ns": 52429.333333333336, "avg_time_deser_ns": 61735.44827586207, "avg_time_total_ns": 114164.7816091954, "median_size_bytes": 34236.0, "avg_ops_per_sec": 8759.268715838853, "min_ops_per_sec": 4974.1592427339965, "max_ops_per_sec": 12397.104036497074, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 52429.333333333336, "ser_median_ns": 50909.0, "ser_std_ns": 13727.739389150498, "ser_mad_ns": 9446.0, "ser_cv": 0.2618331860501214, "ser_min_ns": 32822.0, "ser_max_ns": 92143.0, "ser_p5_ns": 34111.5, "ser_p25_ns": 42975.5, "ser_p50_ns": 50909.0, "ser_p75_ns": 60978.5, "ser_p95_ns": 80245.30000000002, "ser_p99_ns": 89079.68000000001, "ser_ci_low_ns": 49680.29195402299, "ser_ci_high_ns": 55311.53793103448, "deser_mean_ns": 61735.44827586207, "deser_median_ns": 56548.0, "deser_std_ns": 15444.660750306592, "deser_mad_ns": 6890.0, "deser_cv": 0.25017491865115843, "deser_min_ns": 47749.0, "deser_max_ns": 111059.0, "deser_p5_ns": 48333.6, "deser_p25_ns": 50492.0, "deser_p50_ns": 56548.0, "deser_p75_ns": 67875.0, "deser_p95_ns": 92244.4, "deser_p99_ns": 109198.82, "deser_ci_low_ns": 58602.5, "deser_ci_high_ns": 65004.74195402298, "total_mean_ns": 114164.7816091954, "total_median_ns": 106474.0, "total_std_ns": 27255.101788440687, "total_mad_ns": 14708.0, "total_cv": 0.23873476044249206, "total_min_ns": 80664.0, "total_max_ns": 201039.0, "total_p5_ns": 83275.3, "total_p25_ns": 95152.5, "total_p50_ns": 106474.0, "total_p75_ns": 122897.5, "total_p95_ns": 167858.8, "total_p99_ns": 199835.86000000002, "total_ci_low_ns": 108719.50833333333, "total_ci_high_ns": 119854.908045977, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "encoding/gob", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 55658.247191011236, "avg_time_deser_ns": 115604.67415730337, "avg_time_total_ns": 171262.92134831462, "median_size_bytes": 34207.0, "avg_ops_per_sec": 5838.975489424237, "min_ops_per_sec": 3633.562490007703, "max_ops_per_sec": 7773.269281594453, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 55658.247191011236, "ser_median_ns": 52590.0, "ser_std_ns": 12962.92348153773, "ser_mad_ns": 8049.0, "ser_cv": 0.23290211488426518, "ser_min_ns": 37691.0, "ser_max_ns": 96872.0, "ser_p5_ns": 41736.8, "ser_p25_ns": 45090.0, "ser_p50_ns": 52590.0, "ser_p75_ns": 62828.0, "ser_p95_ns": 78470.4, "ser_p99_ns": 90372.32000000004, "ser_ci_low_ns": 53031.098876404496, "ser_ci_high_ns": 58280.77724719101, "deser_mean_ns": 115604.67415730337, "deser_median_ns": 108842.0, "deser_std_ns": 21394.107641833238, "deser_mad_ns": 10031.0, "deser_cv": 0.18506265250765086, "deser_min_ns": 89963.0, "deser_max_ns": 185726.0, "deser_p5_ns": 96098.0, "deser_p25_ns": 100011.0, "deser_p50_ns": 108842.0, "deser_p75_ns": 122765.0, "deser_p95_ns": 161905.99999999997, "deser_p99_ns": 177982.00000000003, "deser_ci_low_ns": 111492.9095505618, "deser_ci_high_ns": 120250.57752808988, "total_mean_ns": 171262.92134831462, "total_median_ns": 163000.0, "total_std_ns": 32186.04370517555, "total_mad_ns": 19149.0, "total_cv": 0.1879335202960573, "total_min_ns": 128646.0, "total_max_ns": 275212.0, "total_p5_ns": 137984.6, "total_p25_ns": 145881.0, "total_p50_ns": 163000.0, "total_p75_ns": 185010.0, "total_p95_ns": 237277.99999999994, "total_p99_ns": 262393.92000000004, "total_ci_low_ns": 164648.22949438202, "total_ci_high_ns": 178255.7426966292, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.829781738344311, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.9045220389274722}, {"serializer": "segmentio/encoding/json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "0.5.4", "avg_time_ser_ns": 88245.85714285714, "avg_time_deser_ns": 146342.60714285713, "avg_time_total_ns": 234588.4642857143, "median_size_bytes": 41431.0, "avg_ops_per_sec": 4262.784204009545, "min_ops_per_sec": 2598.550009094925, "max_ops_per_sec": 5391.039014949351, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 88245.85714285714, "ser_median_ns": 82703.5, "ser_std_ns": 18636.364526766658, "ser_mad_ns": 9926.5, "ser_cv": 0.21118684922054876, "ser_min_ns": 62315.0, "ser_max_ns": 145616.0, "ser_p5_ns": 64679.0, "ser_p25_ns": 75114.0, "ser_p50_ns": 82703.5, "ser_p75_ns": 99230.5, "ser_p95_ns": 123791.44999999997, "ser_p99_ns": 142577.37, "ser_ci_low_ns": 84518.16726190476, "ser_ci_high_ns": 92561.4244047619, "deser_mean_ns": 146342.60714285713, "deser_median_ns": 134845.0, "deser_std_ns": 27284.748356765114, "deser_mad_ns": 8576.0, "deser_cv": 0.18644432328672547, "deser_min_ns": 120984.0, "deser_max_ns": 239214.0, "deser_p5_ns": 123259.3, "deser_p25_ns": 128676.0, "deser_p50_ns": 134845.0, "deser_p75_ns": 149758.5, "deser_p95_ns": 207048.19999999998, "deser_p99_ns": 225329.76000000004, "deser_ci_low_ns": 140927.43392857144, "deser_ci_high_ns": 152363.95208333334, "total_mean_ns": 234588.4642857143, "total_median_ns": 220303.5, "total_std_ns": 43063.09976460193, "total_mad_ns": 17357.0, "total_cv": 0.18356870145223222, "total_min_ns": 185493.0, "total_max_ns": 384830.0, "total_p5_ns": 191795.0, "total_p25_ns": 204840.0, "total_p50_ns": 220303.5, "total_p75_ns": 252235.5, "total_p95_ns": 322079.8, "total_p99_ns": 357523.00000000006, "total_ci_low_ns": 225791.3193452381, "total_ci_high_ns": 244586.8663690476, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.9917898193760263, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.3395642187323684}, {"serializer": "protobuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.36.11", "avg_time_ser_ns": 66017.17391304347, "avg_time_deser_ns": 154067.98913043478, "avg_time_total_ns": 220085.16304347827, "median_size_bytes": 37330.0, "avg_ops_per_sec": 4543.695659313699, "min_ops_per_sec": 2645.7686222424477, "max_ops_per_sec": 5580.699708129405, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 66017.17391304347, "ser_median_ns": 59033.5, "ser_std_ns": 14595.361889816113, "ser_mad_ns": 4830.5, "ser_cv": 0.22108431828725109, "ser_min_ns": 51487.0, "ser_max_ns": 114038.0, "ser_p5_ns": 53747.35, "ser_p25_ns": 55203.0, "ser_p50_ns": 59033.5, "ser_p75_ns": 75356.5, "ser_p95_ns": 95419.3, "ser_p99_ns": 113189.88, "ser_ci_low_ns": 63175.97554347826, "ser_ci_high_ns": 69200.16005434781, "deser_mean_ns": 154067.98913043478, "deser_median_ns": 138462.5, "deser_std_ns": 32311.685893923466, "deser_mad_ns": 8508.0, "deser_cv": 0.2097235517662804, "deser_min_ns": 127702.0, "deser_max_ns": 264856.0, "deser_p5_ns": 128693.15, "deser_p25_ns": 131170.25, "deser_p50_ns": 138462.5, "deser_p75_ns": 166775.75, "deser_p95_ns": 215931.15, "deser_p99_ns": 242489.11000000007, "deser_ci_low_ns": 147684.48451086957, "deser_ci_high_ns": 160982.20163043478, "total_mean_ns": 220085.16304347827, "total_median_ns": 198805.5, "total_std_ns": 46405.23608654362, "total_mad_ns": 12860.0, "total_cv": 0.2108512697758557, "total_min_ns": 179189.0, "total_max_ns": 377962.0, "total_p5_ns": 182850.75, "total_p25_ns": 187570.0, "total_p50_ns": 198805.5, "total_p75_ns": 239337.0, "total_p95_ns": 308606.8, "total_p99_ns": 350244.3100000001, "total_ci_low_ns": 210824.64673913043, "total_ci_high_ns": 230005.52554347823, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.9747626186906547, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.752706030992414}, {"serializer": "ugorji/json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 64748.80487804878, "avg_time_deser_ns": 145608.3536585366, "avg_time_total_ns": 210357.15853658537, "median_size_bytes": 41431.0, "avg_ops_per_sec": 4753.8196796192215, "min_ops_per_sec": 3268.9887383337964, "max_ops_per_sec": 5368.435745192566, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 64748.80487804878, "ser_median_ns": 61442.0, "ser_std_ns": 9401.71842243697, "ser_mad_ns": 3310.0, "ser_cv": 0.1452029645974879, "ser_min_ns": 54455.0, "ser_max_ns": 103271.0, "ser_p5_ns": 56070.4, "ser_p25_ns": 58947.0, "ser_p50_ns": 61442.0, "ser_p75_ns": 66712.0, "ser_p95_ns": 82988.75, "ser_p99_ns": 95593.00999999998, "ser_ci_low_ns": 62839.66646341463, "ser_ci_high_ns": 66856.22713414635, "deser_mean_ns": 145608.3536585366, "deser_median_ns": 141089.0, "deser_std_ns": 15908.471494557061, "deser_mad_ns": 7405.0, "deser_cv": 0.10925521163341849, "deser_min_ns": 128232.0, "deser_max_ns": 202634.0, "deser_p5_ns": 131493.95, "deser_p25_ns": 135080.5, "deser_p50_ns": 141089.0, "deser_p75_ns": 149195.0, "deser_p95_ns": 182564.75, "deser_p99_ns": 197571.5, "deser_ci_low_ns": 142364.26615853657, "deser_ci_high_ns": 149318.5451219512, "total_mean_ns": 210357.15853658537, "total_median_ns": 203570.5, "total_std_ns": 24621.145521218645, "total_mad_ns": 10880.5, "total_cv": 0.11704448611353785, "total_min_ns": 186274.0, "total_max_ns": 305905.0, "total_p5_ns": 187959.55, "total_p25_ns": 193125.5, "total_p50_ns": 203570.5, "total_p75_ns": 216212.5, "total_p95_ns": 262020.2, "total_p99_ns": 293164.50999999995, "total_ci_low_ns": 205543.4179878049, "total_ci_high_ns": 215810.63628048782, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.9798149705634988, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.6815250043150995}, {"serializer": "jsoniter", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.1.12", "avg_time_ser_ns": 84154.0, "avg_time_deser_ns": 150465.0459770115, "avg_time_total_ns": 234619.0459770115, "median_size_bytes": 41431.0, "avg_ops_per_sec": 4262.22856646507, "min_ops_per_sec": 3027.0649880582287, "max_ops_per_sec": 5290.19356818266, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 84154.0, "ser_median_ns": 80269.0, "ser_std_ns": 15750.046047182595, "ser_mad_ns": 8963.0, "ser_cv": 0.187157426232652, "ser_min_ns": 58512.0, "ser_max_ns": 124439.0, "ser_p5_ns": 60795.5, "ser_p25_ns": 73697.0, "ser_p50_ns": 80269.0, "ser_p75_ns": 93365.0, "ser_p95_ns": 115605.8, "ser_p99_ns": 123443.98, "ser_ci_low_ns": 80821.91522988507, "ser_ci_high_ns": 87263.29683908046, "deser_mean_ns": 150465.0459770115, "deser_median_ns": 141983.0, "deser_std_ns": 21920.608465767767, "deser_mad_ns": 8693.0, "deser_cv": 0.1456857193870586, "deser_min_ns": 128625.0, "deser_max_ns": 209396.0, "deser_p5_ns": 130413.9, "deser_p25_ns": 133721.5, "deser_p50_ns": 141983.0, "deser_p75_ns": 157434.0, "deser_p95_ns": 197944.6, "deser_p99_ns": 207396.5, "deser_ci_low_ns": 146152.1120689655, "deser_ci_high_ns": 155055.90114942528, "total_mean_ns": 234619.0459770115, "total_median_ns": 224113.0, "total_std_ns": 33496.30054439822, "total_mad_ns": 18578.0, "total_cv": 0.14276888905123356, "total_min_ns": 189029.0, "total_max_ns": 330353.0, "total_p5_ns": 193999.9, "total_p25_ns": 210814.0, "total_p50_ns": 224113.0, "total_p75_ns": 252127.0, "total_p95_ns": 309755.10000000003, "total_p99_ns": 316610.2, "total_ci_low_ns": 227904.07701149426, "total_ci_high_ns": 241792.04022988505, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.9960364645263575, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.9274931566494637}, {"serializer": "encoding/json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 97023.01190476191, "avg_time_deser_ns": 468881.2380952381, "avg_time_total_ns": 565904.25, "median_size_bytes": 41431.0, "avg_ops_per_sec": 1767.0833891069028, "min_ops_per_sec": 1119.0426366434988, "max_ops_per_sec": 2103.881240111758, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 97023.01190476191, "ser_median_ns": 89618.5, "ser_std_ns": 21115.53859955398, "ser_mad_ns": 8745.5, "ser_cv": 0.21763433421631004, "ser_min_ns": 70803.0, "ser_max_ns": 166384.0, "ser_p5_ns": 74026.25, "ser_p25_ns": 83492.75, "ser_p50_ns": 89618.5, "ser_p75_ns": 105208.0, "ser_p95_ns": 144934.5, "ser_p99_ns": 153577.93000000002, "ser_ci_low_ns": 93043.5642857143, "ser_ci_high_ns": 101681.06369047619, "deser_mean_ns": 468881.2380952381, "deser_median_ns": 429674.5, "deser_std_ns": 82897.95100823852, "deser_mad_ns": 18660.0, "deser_cv": 0.17679946279147232, "deser_min_ns": 402421.0, "deser_max_ns": 727237.0, "deser_p5_ns": 406120.6, "deser_p25_ns": 415631.25, "deser_p50_ns": 429674.5, "deser_p75_ns": 481891.25, "deser_p95_ns": 648943.1499999999, "deser_p99_ns": 712980.92, "deser_ci_low_ns": 451365.4544642857, "deser_ci_high_ns": 486261.0636904762, "total_mean_ns": 565904.25, "total_median_ns": 520989.5, "total_std_ns": 100681.53973061353, "total_mad_ns": 25286.5, "total_cv": 0.17791267644767383, "total_min_ns": 475312.0, "total_max_ns": 893621.0, "total_p5_ns": 485042.75, "total_p25_ns": 500071.25, "total_p50_ns": 520989.5, "total_p75_ns": 582800.0, "total_p95_ns": 771539.2999999999, "total_p99_ns": 846547.55, "total_ci_low_ns": 545793.6976190476, "total_ci_high_ns": 588634.1354166666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.1449150596471585}, {"serializer": "linkedin/goavro", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "2.15.0", "avg_time_ser_ns": 55598.03409090909, "avg_time_deser_ns": 206116.85227272726, "avg_time_total_ns": 261714.88636363635, "median_size_bytes": 34033.0, "avg_ops_per_sec": 3820.951929385335, "min_ops_per_sec": 2049.8103925386904, "max_ops_per_sec": 4896.560166483046, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 55598.03409090909, "ser_median_ns": 49220.5, "ser_std_ns": 15387.936623458003, "ser_mad_ns": 5278.0, "ser_cv": 0.2767712361609222, "ser_min_ns": 39388.0, "ser_max_ns": 101010.0, "ser_p5_ns": 41599.65, "ser_p25_ns": 45537.5, "ser_p50_ns": 49220.5, "ser_p75_ns": 58058.5, "ser_p95_ns": 87716.79999999997, "ser_p99_ns": 99370.92, "ser_ci_low_ns": 52441.11647727273, "ser_ci_high_ns": 59109.33096590909, "deser_mean_ns": 206116.85227272726, "deser_median_ns": 175854.5, "deser_std_ns": 60668.230724982954, "deser_mad_ns": 8046.0, "deser_cv": 0.2943390123419345, "deser_min_ns": 162674.0, "deser_max_ns": 388724.0, "deser_p5_ns": 163665.65, "deser_p25_ns": 169395.0, "deser_p50_ns": 175854.5, "deser_p75_ns": 213917.5, "deser_p95_ns": 341803.94999999995, "deser_p99_ns": 385886.06, "deser_ci_low_ns": 194182.13068181818, "deser_ci_high_ns": 219021.178125, "total_mean_ns": 261714.88636363635, "total_median_ns": 226564.5, "total_std_ns": 73044.60260995818, "total_mad_ns": 13525.5, "total_cv": 0.27909991527370476, "total_min_ns": 204225.0, "total_max_ns": 487850.0, "total_p5_ns": 207065.05, "total_p25_ns": 216071.5, "total_p50_ns": 226564.5, "total_p75_ns": 275915.5, "total_p95_ns": 424689.89999999997, "total_p99_ns": 459046.90999999986, "total_ci_low_ns": 246925.76306818184, "total_ci_high_ns": 277428.08835227275, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.6590442828561365}, {"serializer": "fxamacker/cbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "2.9.2", "avg_time_ser_ns": 55999.65060240964, "avg_time_deser_ns": 182837.51807228915, "avg_time_total_ns": 238837.1686746988, "median_size_bytes": 34732.0, "avg_ops_per_sec": 4186.953000443666, "min_ops_per_sec": 2953.9217742435744, "max_ops_per_sec": 4862.3942429252165, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 55999.65060240964, "ser_median_ns": 53834.0, "ser_std_ns": 10924.832915431298, "ser_mad_ns": 5875.0, "ser_cv": 0.19508751925965065, "ser_min_ns": 40214.0, "ser_max_ns": 97140.0, "ser_p5_ns": 42956.6, "ser_p25_ns": 48746.0, "ser_p50_ns": 53834.0, "ser_p75_ns": 60748.5, "ser_p95_ns": 75977.69999999997, "ser_p99_ns": 87973.21999999991, "ser_ci_low_ns": 53806.584939759035, "ser_ci_high_ns": 58335.85120481928, "deser_mean_ns": 182837.51807228915, "deser_median_ns": 175247.0, "deser_std_ns": 21334.846291386973, "deser_mad_ns": 7977.0, "deser_cv": 0.11668746390963225, "deser_min_ns": 163615.0, "deser_max_ns": 258731.0, "deser_p5_ns": 164591.3, "deser_p25_ns": 168716.5, "deser_p50_ns": 175247.0, "deser_p75_ns": 187345.0, "deser_p95_ns": 227794.79999999996, "deser_p99_ns": 254649.03999999995, "deser_ci_low_ns": 178454.1090361446, "deser_ci_high_ns": 187681.20753012047, "total_mean_ns": 238837.1686746988, "total_median_ns": 229096.0, "total_std_ns": 28972.335036358505, "total_mad_ns": 12098.0, "total_cv": 0.12130580511034038, "total_min_ns": 205660.0, "total_max_ns": 338533.0, "total_p5_ns": 211564.6, "total_p25_ns": 219524.5, "total_p50_ns": 229096.0, "total_p75_ns": 248336.0, "total_p95_ns": 301315.99999999994, "total_p99_ns": 328641.3399999999, "total_ci_low_ns": 232858.86295180724, "total_ci_high_ns": 245111.27921686746, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.415899860938698}, {"serializer": "goccy/go-json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "0.10.6", "avg_time_ser_ns": 83146.44186046511, "avg_time_deser_ns": 131696.18604651163, "avg_time_total_ns": 214842.62790697673, "median_size_bytes": 41431.0, "avg_ops_per_sec": 4654.569764585934, "min_ops_per_sec": 3258.369121087513, "max_ops_per_sec": 5796.967026851551, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 83146.44186046511, "ser_median_ns": 80569.0, "ser_std_ns": 14833.28208146615, "ser_mad_ns": 8351.0, "ser_cv": 0.178399481078927, "ser_min_ns": 59638.0, "ser_max_ns": 123606.0, "ser_p5_ns": 64798.25, "ser_p25_ns": 73557.0, "ser_p50_ns": 80569.0, "ser_p75_ns": 89945.0, "ser_p95_ns": 113893.25, "ser_p99_ns": 120874.95000000001, "ser_ci_low_ns": 80191.75203488371, "ser_ci_high_ns": 86441.17936046512, "deser_mean_ns": 131696.18604651163, "deser_median_ns": 124059.0, "deser_std_ns": 22098.94086869144, "deser_mad_ns": 8624.5, "deser_cv": 0.1678024362898913, "deser_min_ns": 109171.0, "deser_max_ns": 190628.0, "deser_p5_ns": 112885.75, "deser_p25_ns": 116519.5, "deser_p50_ns": 124059.0, "deser_p75_ns": 139701.75, "deser_p95_ns": 185395.75, "deser_p99_ns": 189724.45, "deser_ci_low_ns": 127320.24389534885, "deser_ci_high_ns": 136682.14970930232, "total_mean_ns": 214842.62790697673, "total_median_ns": 204414.5, "total_std_ns": 34745.11952085848, "total_mad_ns": 15112.0, "total_cv": 0.1617235827887124, "total_min_ns": 172504.0, "total_max_ns": 306902.0, "total_p5_ns": 176660.75, "total_p25_ns": 193086.5, "total_p50_ns": 204414.5, "total_p75_ns": 226543.25, "total_p95_ns": 296076.75, "total_p99_ns": 306177.8, "total_ci_low_ns": 207529.49912790698, "total_ci_high_ns": 222353.64941860465, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.979417268110131, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.2122942102333347}, {"serializer": "sonic", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.15.2", "avg_time_ser_ns": 74098.20238095238, "avg_time_deser_ns": 64360.130952380954, "avg_time_total_ns": 138458.33333333334, "median_size_bytes": 41431.0, "avg_ops_per_sec": 7222.389407162203, "min_ops_per_sec": 4087.7225253949764, "max_ops_per_sec": 10590.415673815198, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 74098.20238095238, "ser_median_ns": 69798.0, "ser_std_ns": 20198.9230356948, "ser_mad_ns": 12951.0, "ser_cv": 0.2725966674852441, "ser_min_ns": 46734.0, "ser_max_ns": 131175.0, "ser_p5_ns": 47682.8, "ser_p25_ns": 60332.25, "ser_p50_ns": 69798.0, "ser_p75_ns": 85520.75, "ser_p95_ns": 112251.84999999999, "ser_p99_ns": 126269.70000000001, "ser_ci_low_ns": 69982.04761904763, "ser_ci_high_ns": 78494.05059523809, "deser_mean_ns": 64360.130952380954, "deser_median_ns": 57670.0, "deser_std_ns": 16811.67232264089, "deser_mad_ns": 6188.5, "deser_cv": 0.26121252511247345, "deser_min_ns": 46776.0, "deser_max_ns": 131643.0, "deser_p5_ns": 48236.05, "deser_p25_ns": 53162.0, "deser_p50_ns": 57670.0, "deser_p75_ns": 71049.5, "deser_p95_ns": 94164.45, "deser_p99_ns": 116551.11000000003, "deser_ci_low_ns": 60966.87857142857, "deser_ci_high_ns": 68128.36428571428, "total_mean_ns": 138458.33333333334, "total_median_ns": 128008.0, "total_std_ns": 34537.16184380094, "total_mad_ns": 18145.0, "total_cv": 0.2494408318541145, "total_min_ns": 94425.0, "total_max_ns": 244635.0, "total_p5_ns": 96610.4, "total_p25_ns": 114976.5, "total_p50_ns": 128008.0, "total_p75_ns": 157456.25, "total_p95_ns": 200195.39999999997, "total_p99_ns": 228726.39000000004, "total_ci_low_ns": 131671.14136904763, "total_ci_high_ns": 145811.55238095237, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.4644225506294472, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.7790320897093507}, {"serializer": "vmihailenco/msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "5.4.1", "avg_time_ser_ns": 49361.6976744186, "avg_time_deser_ns": 126240.54651162791, "avg_time_total_ns": 175602.2441860465, "median_size_bytes": 34833.0, "avg_ops_per_sec": 5694.688041347144, "min_ops_per_sec": 3964.038245040988, "max_ops_per_sec": 6651.8552024159535, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 49361.6976744186, "ser_median_ns": 47133.0, "ser_std_ns": 7138.555840223885, "ser_mad_ns": 2864.0, "ser_cv": 0.14461730808588857, "ser_min_ns": 41887.0, "ser_max_ns": 72067.0, "ser_p5_ns": 43107.75, "ser_p25_ns": 44603.75, "ser_p50_ns": 47133.0, "ser_p75_ns": 50742.0, "ser_p95_ns": 65976.0, "ser_p99_ns": 70934.8, "ser_ci_low_ns": 47975.588662790695, "ser_ci_high_ns": 50892.86773255814, "deser_mean_ns": 126240.54651162791, "deser_median_ns": 119313.5, "deser_std_ns": 17301.80843363727, "deser_mad_ns": 4650.5, "deser_cv": 0.13705428970115885, "deser_min_ns": 108447.0, "deser_max_ns": 181533.0, "deser_p5_ns": 111853.25, "deser_p25_ns": 115317.25, "deser_p50_ns": 119313.5, "deser_p75_ns": 127768.25, "deser_p95_ns": 164184.25, "deser_p99_ns": 177266.00000000003, "deser_ci_low_ns": 122648.13052325582, "deser_ci_high_ns": 129911.60901162791, "total_mean_ns": 175602.2441860465, "total_median_ns": 165342.5, "total_std_ns": 23877.97026891526, "total_mad_ns": 6777.0, "total_cv": 0.13597759174203436, "total_min_ns": 150334.0, "total_max_ns": 252268.0, "total_p5_ns": 155176.25, "total_p25_ns": 160484.75, "total_p50_ns": 165342.5, "total_p75_ns": 178349.5, "total_p95_ns": 228278.75, "total_p99_ns": 249133.2, "total_ci_low_ns": 170825.5668604651, "total_ci_high_ns": 180588.36162790697, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.8770382250735097, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.3863684169134416}, {"serializer": "goccy/go-yaml", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.19.2", "avg_time_ser_ns": 3897387.8085106383, "avg_time_deser_ns": 3975000.2021276597, "avg_time_total_ns": 7872388.010638298, "median_size_bytes": 47530.0, "avg_ops_per_sec": 127.02625920478727, "min_ops_per_sec": 96.34200022755981, "max_ops_per_sec": 153.8093106005223, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 3897387.8085106383, "ser_median_ns": 3837575.0, "ser_std_ns": 589407.5250137771, "ser_mad_ns": 390423.0, "ser_cv": 0.15123142832404338, "ser_min_ns": 2912157.0, "ser_max_ns": 5507431.0, "ser_p5_ns": 3030794.2, "ser_p25_ns": 3592975.75, "ser_p50_ns": 3837575.0, "ser_p75_ns": 4249307.75, "ser_p95_ns": 4877078.95, "ser_p99_ns": 5481314.74, "ser_ci_low_ns": 3784162.774468085, "ser_ci_high_ns": 4011597.156382979, "deser_mean_ns": 3975000.2021276597, "deser_median_ns": 3863141.5, "deser_std_ns": 722402.7403663174, "deser_mad_ns": 453910.0, "deser_cv": 0.18173652921568254, "deser_min_ns": 2877372.0, "deser_max_ns": 5901710.0, "deser_p5_ns": 2987379.55, "deser_p25_ns": 3453910.75, "deser_p50_ns": 3863141.5, "deser_p75_ns": 4435156.25, "deser_p95_ns": 5344596.5, "deser_p99_ns": 5763895.159999999, "deser_ci_low_ns": 3835439.857446809, "deser_ci_high_ns": 4126076.8111702125, "total_mean_ns": 7872388.010638298, "total_median_ns": 7681632.5, "total_std_ns": 1023829.4588978606, "total_mad_ns": 641567.5, "total_cv": 0.13005322622745674, "total_min_ns": 6501557.0, "total_max_ns": 10379689.0, "total_p5_ns": 6671400.65, "total_p25_ns": 7055785.75, "total_p50_ns": 7681632.5, "total_p75_ns": 8353118.75, "total_p95_ns": 9782014.8, "total_p99_ns": 10106203.899999999, "total_ci_low_ns": 7669600.92606383, "total_ci_high_ns": 8083557.800265958, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.465292904513825}, {"serializer": "linkedin/goavro", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "2.15.0", "avg_time_ser_ns": 57996.8275862069, "avg_time_deser_ns": 206609.59770114944, "avg_time_total_ns": 264606.4252873563, "median_size_bytes": 34033.0, "avg_ops_per_sec": 3779.1977232375357, "min_ops_per_sec": 2210.4869923892934, "max_ops_per_sec": 4729.160952263849, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 57996.8275862069, "ser_median_ns": 52307.0, "ser_std_ns": 14080.892168489378, "ser_mad_ns": 6827.0, "ser_cv": 0.24278728258988716, "ser_min_ns": 41436.0, "ser_max_ns": 101479.0, "ser_p5_ns": 43327.7, "ser_p25_ns": 47518.5, "ser_p50_ns": 52307.0, "ser_p75_ns": 67785.5, "ser_p95_ns": 83157.40000000001, "ser_p99_ns": 98469.86, "ser_ci_low_ns": 55163.67873563219, "ser_ci_high_ns": 61059.01379310345, "deser_mean_ns": 206609.59770114944, "deser_median_ns": 185856.0, "deser_std_ns": 44317.00364536975, "deser_mad_ns": 11101.0, "deser_cv": 0.21449634546731997, "deser_min_ns": 168351.0, "deser_max_ns": 350910.0, "deser_p5_ns": 172714.9, "deser_p25_ns": 179602.5, "deser_p50_ns": 185856.0, "deser_p75_ns": 214987.0, "deser_p95_ns": 302211.10000000003, "deser_p99_ns": 334360.16000000003, "deser_ci_low_ns": 197650.35890804595, "deser_ci_high_ns": 215827.9155172414, "total_mean_ns": 264606.4252873563, "total_median_ns": 242213.0, "total_std_ns": 55842.841610668744, "total_mad_ns": 16162.0, "total_cv": 0.21104113987415363, "total_min_ns": 211454.0, "total_max_ns": 452389.0, "total_p5_ns": 218712.3, "total_p25_ns": 227837.5, "total_p50_ns": 242213.0, "total_p75_ns": 278524.5, "total_p95_ns": 383527.4, "total_p99_ns": 427687.22000000003, "total_ci_low_ns": 253234.19367816093, "total_ci_high_ns": 277259.883908046, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.588216991360613}, {"serializer": "ugorji/msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 41421.072289156626, "avg_time_deser_ns": 108975.578313253, "avg_time_total_ns": 150396.65060240965, "median_size_bytes": 34833.0, "avg_ops_per_sec": 6649.0842448586955, "min_ops_per_sec": 4768.080561489167, "max_ops_per_sec": 7773.208858348815, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 41421.072289156626, "ser_median_ns": 40374.0, "ser_std_ns": 4369.458195421925, "ser_mad_ns": 2165.0, "ser_cv": 0.10548877549376671, "ser_min_ns": 34061.0, "ser_max_ns": 57122.0, "ser_p5_ns": 36256.8, "ser_p25_ns": 38592.0, "ser_p50_ns": 40374.0, "ser_p75_ns": 43356.0, "ser_p95_ns": 49967.09999999999, "ser_p99_ns": 53630.439999999966, "ser_ci_low_ns": 40530.56475903614, "ser_ci_high_ns": 42397.89608433735, "deser_mean_ns": 108975.578313253, "deser_median_ns": 103334.0, "deser_std_ns": 14158.918722599634, "deser_mad_ns": 4710.0, "deser_cv": 0.12992744743138201, "deser_min_ns": 94100.0, "deser_max_ns": 152606.0, "deser_p5_ns": 95992.2, "deser_p25_ns": 99774.5, "deser_p50_ns": 103334.0, "deser_p75_ns": 112372.0, "deser_p95_ns": 136857.4, "deser_p99_ns": 152497.76, "deser_ci_low_ns": 106031.47228915663, "deser_ci_high_ns": 111946.71656626505, "total_mean_ns": 150396.65060240965, "total_median_ns": 143125.0, "total_std_ns": 17633.31386369156, "total_mad_ns": 7133.0, "total_cv": 0.11724538939571996, "total_min_ns": 128647.0, "total_max_ns": 209728.0, "total_p5_ns": 132705.9, "total_p25_ns": 138716.5, "total_p50_ns": 143125.0, "total_p75_ns": 158454.5, "total_p95_ns": 185641.79999999996, "total_p99_ns": 202262.71999999994, "total_ci_low_ns": 146846.84457831326, "total_ci_high_ns": 154393.5484939759, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.8142336789016531, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.9658293110006901}, {"serializer": "goccy/go-yaml", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.19.2", "avg_time_ser_ns": 3957323.340425532, "avg_time_deser_ns": 3940502.1914893617, "avg_time_total_ns": 7897825.531914894, "median_size_bytes": 47530.0, "avg_ops_per_sec": 126.6171297351439, "min_ops_per_sec": 95.2141828761672, "max_ops_per_sec": 155.68794220240832, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 3957323.340425532, "ser_median_ns": 3922658.0, "ser_std_ns": 587707.7333088103, "ser_mad_ns": 339953.5, "ser_cv": 0.14851142622215296, "ser_min_ns": 2941542.0, "ser_max_ns": 5373030.0, "ser_p5_ns": 3048889.5, "ser_p25_ns": 3657694.75, "ser_p50_ns": 3922658.0, "ser_p75_ns": 4346951.75, "ser_p95_ns": 5024543.8, "ser_p99_ns": 5348824.89, "ser_ci_low_ns": 3845958.525, "ser_ci_high_ns": 4081480.571276596, "deser_mean_ns": 3940502.1914893617, "deser_median_ns": 3891448.0, "deser_std_ns": 726643.5531543214, "deser_mad_ns": 470030.5, "deser_cv": 0.18440379368998078, "deser_min_ns": 2876834.0, "deser_max_ns": 5573907.0, "deser_p5_ns": 2935997.0, "deser_p25_ns": 3404971.75, "deser_p50_ns": 3891448.0, "deser_p75_ns": 4328134.5, "deser_p95_ns": 5212727.55, "deser_p99_ns": 5490121.4399999995, "deser_ci_low_ns": 3795433.0853723404, "deser_ci_high_ns": 4088253.535638298, "total_mean_ns": 7897825.531914894, "total_median_ns": 7764654.0, "total_std_ns": 1006775.5720821221, "total_mad_ns": 736302.0, "total_cv": 0.12747503322449577, "total_min_ns": 6423105.0, "total_max_ns": 10502637.0, "total_p5_ns": 6637265.3, "total_p25_ns": 7018900.0, "total_p50_ns": 7764654.0, "total_p75_ns": 8477229.75, "total_p95_ns": 9873290.149999999, "total_p99_ns": 10474091.58, "total_ci_low_ns": 7696254.014095745, "total_ci_high_ns": 8104303.612765958, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.650470237268374}, {"serializer": "sonic", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.15.2", "avg_time_ser_ns": 74412.5421686747, "avg_time_deser_ns": 81037.90361445783, "avg_time_total_ns": 155450.44578313254, "median_size_bytes": 41432.0, "avg_ops_per_sec": 6432.918187929101, "min_ops_per_sec": 3578.304027023352, "max_ops_per_sec": 10492.188565612902, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 74412.5421686747, "ser_median_ns": 71090.0, "ser_std_ns": 17902.341056410172, "ser_mad_ns": 9776.0, "ser_cv": 0.24058230688893847, "ser_min_ns": 43774.0, "ser_max_ns": 127522.0, "ser_p5_ns": 49312.8, "ser_p25_ns": 62995.5, "ser_p50_ns": 71090.0, "ser_p75_ns": 82560.5, "ser_p95_ns": 109509.89999999994, "ser_p99_ns": 127457.22, "ser_ci_low_ns": 70581.33403614459, "ser_ci_high_ns": 78468.65783132531, "deser_mean_ns": 81037.90361445783, "deser_median_ns": 75007.0, "deser_std_ns": 20762.346574587362, "deser_mad_ns": 7367.0, "deser_cv": 0.25620537610851013, "deser_min_ns": 49615.0, "deser_max_ns": 152106.0, "deser_p5_ns": 57132.3, "deser_p25_ns": 68967.5, "deser_p50_ns": 75007.0, "deser_p75_ns": 85922.0, "deser_p95_ns": 129658.09999999993, "deser_p99_ns": 152034.66, "deser_ci_low_ns": 76754.26054216867, "deser_ci_high_ns": 85738.41777108432, "total_mean_ns": 155450.44578313254, "total_median_ns": 149010.0, "total_std_ns": 34425.98177187385, "total_mad_ns": 16921.0, "total_cv": 0.221459524277603, "total_min_ns": 95309.0, "total_max_ns": 279462.0, "total_p5_ns": 108315.90000000001, "total_p25_ns": 133830.0, "total_p50_ns": 149010.0, "total_p75_ns": 167124.0, "total_p95_ns": 224491.09999999995, "total_p99_ns": 256943.9799999998, "total_ci_low_ns": 148781.25030120483, "total_ci_high_ns": 162763.33102409638, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.755673858223592, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.5053937693513642}, {"serializer": "shamaton/msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "3.1.2", "avg_time_ser_ns": 58134.18518518518, "avg_time_deser_ns": 164297.74074074073, "avg_time_total_ns": 222431.92592592593, "median_size_bytes": 34833.0, "avg_ops_per_sec": 4495.757503502528, "min_ops_per_sec": 3322.855263070451, "max_ops_per_sec": 5076.502898683155, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 58134.18518518518, "ser_median_ns": 55953.0, "ser_std_ns": 6818.963997762255, "ser_mad_ns": 2870.0, "ser_cv": 0.11729697382083525, "ser_min_ns": 49767.0, "ser_max_ns": 80458.0, "ser_p5_ns": 51429.0, "ser_p25_ns": 53643.0, "ser_p50_ns": 55953.0, "ser_p75_ns": 60223.0, "ser_p95_ns": 74546.0, "ser_p99_ns": 80135.6, "ser_ci_low_ns": 56721.05061728395, "ser_ci_high_ns": 59606.138580246916, "deser_mean_ns": 164297.74074074073, "deser_median_ns": 158155.0, "deser_std_ns": 16606.445762698426, "deser_mad_ns": 7118.0, "deser_cv": 0.10107531416943302, "deser_min_ns": 146876.0, "deser_max_ns": 224206.0, "deser_p5_ns": 148564.0, "deser_p25_ns": 153962.0, "deser_p50_ns": 158155.0, "deser_p75_ns": 172894.0, "deser_p95_ns": 195494.0, "deser_p99_ns": 221231.6, "deser_ci_low_ns": 160947.79320987655, "deser_ci_high_ns": 168125.21080246914, "total_mean_ns": 222431.92592592593, "total_median_ns": 215002.0, "total_std_ns": 21136.685479739826, "total_mad_ns": 10690.0, "total_cv": 0.09502541234471326, "total_min_ns": 196986.0, "total_max_ns": 300946.0, "total_p5_ns": 201628.0, "total_p25_ns": 208154.0, "total_p50_ns": 215002.0, "total_p75_ns": 232375.0, "total_p95_ns": 254654.0, "total_p99_ns": 291867.60000000003, "total_ci_low_ns": 217973.19907407407, "total_ci_high_ns": 227182.52561728394, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.284200733868629}, {"serializer": "mongo-bson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.17.9", "avg_time_ser_ns": 121124.9756097561, "avg_time_deser_ns": 310887.5243902439, "avg_time_total_ns": 432012.5, "median_size_bytes": 60537.0, "avg_ops_per_sec": 2314.74783715749, "min_ops_per_sec": 1460.0628995097109, "max_ops_per_sec": 2838.3368481404636, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 121124.9756097561, "ser_median_ns": 111933.5, "ser_std_ns": 29293.50025364857, "ser_mad_ns": 12662.0, "ser_cv": 0.24184525203148197, "ser_min_ns": 92261.0, "ser_max_ns": 225069.0, "ser_p5_ns": 95308.25, "ser_p25_ns": 99611.0, "ser_p50_ns": 111933.5, "ser_p75_ns": 124659.25, "ser_p95_ns": 184625.7, "ser_p99_ns": 219466.22999999998, "ser_ci_low_ns": 115082.33963414634, "ser_ci_high_ns": 127644.75701219513, "deser_mean_ns": 310887.5243902439, "deser_median_ns": 282054.0, "deser_std_ns": 64500.6404386284, "deser_mad_ns": 17220.0, "deser_cv": 0.20747259178423474, "deser_min_ns": 256317.0, "deser_max_ns": 509457.0, "deser_p5_ns": 260167.5, "deser_p25_ns": 268157.0, "deser_p50_ns": 282054.0, "deser_p75_ns": 329818.75, "deser_p95_ns": 459543.65, "deser_p99_ns": 490200.05999999994, "deser_ci_low_ns": 297424.79817073175, "deser_ci_high_ns": 324696.2198170732, "total_mean_ns": 432012.5, "total_median_ns": 393755.0, "total_std_ns": 87934.3907425612, "total_mad_ns": 31118.0, "total_cv": 0.20354594078310512, "total_min_ns": 352319.0, "total_max_ns": 684902.0, "total_p5_ns": 359012.1, "total_p25_ns": 372099.75, "total_p50_ns": 393755.0, "total_p75_ns": 449543.75, "total_p95_ns": 619083.1, "total_p99_ns": 675231.4099999999, "total_ci_low_ns": 414384.8195121951, "total_ci_high_ns": 451362.0679878049, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.033605489156563}, {"serializer": "jsoniter", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.1.12", "avg_time_ser_ns": 83084.97674418605, "avg_time_deser_ns": 155014.02325581395, "avg_time_total_ns": 238099.0, "median_size_bytes": 41432.0, "avg_ops_per_sec": 4199.933641048471, "min_ops_per_sec": 3134.7372776687585, "max_ops_per_sec": 4843.506311088723, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 83084.97674418605, "ser_median_ns": 78498.0, "ser_std_ns": 12672.571420175655, "ser_mad_ns": 6431.5, "ser_cv": 0.15252542537496022, "ser_min_ns": 67567.0, "ser_max_ns": 122935.0, "ser_p5_ns": 70342.0, "ser_p25_ns": 73312.0, "ser_p50_ns": 78498.0, "ser_p75_ns": 90881.25, "ser_p95_ns": 107474.5, "ser_p99_ns": 120170.80000000002, "ser_ci_low_ns": 80336.46075581395, "ser_ci_high_ns": 85817.1965116279, "deser_mean_ns": 155014.02325581395, "deser_median_ns": 148467.5, "deser_std_ns": 18480.680360519418, "deser_mad_ns": 7181.0, "deser_cv": 0.119219409782181, "deser_min_ns": 135429.0, "deser_max_ns": 211368.0, "deser_p5_ns": 137964.0, "deser_p25_ns": 143752.75, "deser_p50_ns": 148467.5, "deser_p75_ns": 159845.5, "deser_p95_ns": 203171.75, "deser_p99_ns": 208064.90000000002, "deser_ci_low_ns": 151230.14680232556, "deser_ci_high_ns": 159059.61395348836, "total_mean_ns": 238099.0, "total_median_ns": 228788.5, "total_std_ns": 28735.361251989732, "total_mad_ns": 12477.0, "total_cv": 0.1206866104099124, "total_min_ns": 206462.0, "total_max_ns": 319006.0, "total_p5_ns": 210494.5, "total_p25_ns": 217712.5, "total_p50_ns": 228788.5, "total_p75_ns": 244103.0, "total_p95_ns": 306336.75, "total_p99_ns": 316917.55, "total_ci_low_ns": 232593.02848837207, "total_ci_high_ns": 244219.7808139535, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.021709082967983}, {"serializer": "encoding/json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 91470.20987654322, "avg_time_deser_ns": 471388.44444444444, "avg_time_total_ns": 562858.6543209876, "median_size_bytes": 41432.0, "avg_ops_per_sec": 1776.6449752937776, "min_ops_per_sec": 1251.2340295616552, "max_ops_per_sec": 2006.0301265604407, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 91470.20987654322, "ser_median_ns": 88301.0, "ser_std_ns": 13080.124212632738, "ser_mad_ns": 5443.0, "ser_cv": 0.14299873401719426, "ser_min_ns": 71424.0, "ser_max_ns": 137191.0, "ser_p5_ns": 74069.0, "ser_p25_ns": 83928.0, "ser_p50_ns": 88301.0, "ser_p75_ns": 95865.0, "ser_p95_ns": 119935.0, "ser_p99_ns": 126776.60000000003, "ser_ci_low_ns": 88746.93240740741, "ser_ci_high_ns": 94255.7287037037, "deser_mean_ns": 471388.44444444444, "deser_median_ns": 456036.0, "deser_std_ns": 53263.02717223271, "deser_mad_ns": 24890.0, "deser_cv": 0.11299179646842199, "deser_min_ns": 416088.0, "deser_max_ns": 662020.0, "deser_p5_ns": 423319.0, "deser_p25_ns": 433111.0, "deser_p50_ns": 456036.0, "deser_p75_ns": 492401.0, "deser_p95_ns": 580124.0, "deser_p99_ns": 640386.4, "deser_ci_low_ns": 460585.2348765432, "deser_ci_high_ns": 483598.98919753084, "total_mean_ns": 562858.6543209876, "total_median_ns": 545419.0, "total_std_ns": 62918.90468038214, "total_mad_ns": 28284.0, "total_cv": 0.11178455585138908, "total_min_ns": 498497.0, "total_max_ns": 799211.0, "total_p5_ns": 502081.0, "total_p25_ns": 517292.0, "total_p50_ns": 545419.0, "total_p75_ns": 587142.0, "total_p95_ns": 690559.0, "total_p99_ns": 766321.4000000001, "total_ci_low_ns": 549681.5527777778, "total_ci_high_ns": 576917.1425925926, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.70799959007827}, {"serializer": "pelletier/go-toml", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "2.4.3", "avg_time_ser_ns": 187575.98837209304, "avg_time_deser_ns": 310737.33720930235, "avg_time_total_ns": 498313.32558139536, "median_size_bytes": 45429.0, "avg_ops_per_sec": 2006.7695336729628, "min_ops_per_sec": 1404.5239717128873, "max_ops_per_sec": 2453.6686026111943, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 187575.98837209304, "ser_median_ns": 182238.5, "ser_std_ns": 28480.89033906324, "ser_mad_ns": 15947.0, "ser_cv": 0.15183654681091655, "ser_min_ns": 151081.0, "ser_max_ns": 276520.0, "ser_p5_ns": 156733.5, "ser_p25_ns": 166750.75, "ser_p50_ns": 182238.5, "ser_p75_ns": 198344.5, "ser_p95_ns": 252375.25, "ser_p99_ns": 274394.15, "ser_ci_low_ns": 181997.4206395349, "ser_ci_high_ns": 193894.5273255814, "deser_mean_ns": 310737.33720930235, "deser_median_ns": 288095.5, "deser_std_ns": 49755.437425733966, "deser_mad_ns": 17237.0, "deser_cv": 0.16012056315015777, "deser_min_ns": 256472.0, "deser_max_ns": 457780.0, "deser_p5_ns": 266070.25, "deser_p25_ns": 275506.0, "deser_p50_ns": 288095.5, "deser_p75_ns": 335330.75, "deser_p95_ns": 422873.25, "deser_p99_ns": 438617.60000000015, "deser_ci_low_ns": 301211.42005813954, "deser_ci_high_ns": 321938.95726744185, "total_mean_ns": 498313.32558139536, "total_median_ns": 471927.0, "total_std_ns": 74016.62610449594, "total_mad_ns": 32431.5, "total_cv": 0.14853431025176536, "total_min_ns": 407553.0, "total_max_ns": 711985.0, "total_p5_ns": 430858.25, "total_p25_ns": 443535.0, "total_p50_ns": 471927.0, "total_p75_ns": 523206.0, "total_p95_ns": 651088.5, "total_p99_ns": 702662.2000000001, "total_ci_low_ns": 483278.7784883721, "total_ci_high_ns": 513951.56511627906, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.0730079023245525}, {"serializer": "encoding/gob", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 51717.09302325582, "avg_time_deser_ns": 112435.90697674418, "avg_time_total_ns": 164153.0, "median_size_bytes": 34207.0, "avg_ops_per_sec": 6091.877699463305, "min_ops_per_sec": 4453.688321983851, "max_ops_per_sec": 7847.137756503315, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 51717.09302325582, "ser_median_ns": 49500.5, "ser_std_ns": 10108.343278032213, "ser_mad_ns": 6302.5, "ser_cv": 0.19545459126031614, "ser_min_ns": 35558.0, "ser_max_ns": 80652.0, "ser_p5_ns": 39858.5, "ser_p25_ns": 43993.0, "ser_p50_ns": 49500.5, "ser_p75_ns": 56570.5, "ser_p95_ns": 70730.75, "ser_p99_ns": 80461.6, "ser_ci_low_ns": 49575.35697674419, "ser_ci_high_ns": 53815.21424418605, "deser_mean_ns": 112435.90697674418, "deser_median_ns": 109389.0, "deser_std_ns": 14612.479910822323, "deser_mad_ns": 7473.5, "deser_cv": 0.1299627521468272, "deser_min_ns": 91877.0, "deser_max_ns": 158513.0, "deser_p5_ns": 96894.75, "deser_p25_ns": 102274.5, "deser_p50_ns": 109389.0, "deser_p75_ns": 117075.75, "deser_p95_ns": 147661.0, "deser_p99_ns": 154237.50000000003, "deser_ci_low_ns": 109408.66395348837, "deser_ci_high_ns": 115482.72790697675, "total_mean_ns": 164153.0, "total_median_ns": 159637.5, "total_std_ns": 22113.30424773605, "total_mad_ns": 12604.0, "total_cv": 0.13471154500823043, "total_min_ns": 127435.0, "total_max_ns": 224533.0, "total_p5_ns": 136238.5, "total_p25_ns": 147377.0, "total_p50_ns": 159637.5, "total_p75_ns": 172811.25, "total_p95_ns": 218770.75, "total_p99_ns": 222601.80000000002, "total_ci_low_ns": 159564.42761627908, "total_ci_high_ns": 168893.02325581395, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.8904813412655489, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.4092523855829313}, {"serializer": "hamba/avro", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "2.31.0", "avg_time_ser_ns": 52726.732558139534, "avg_time_deser_ns": 60281.41860465116, "avg_time_total_ns": 113008.1511627907, "median_size_bytes": 34236.0, "avg_ops_per_sec": 8848.919212557315, "min_ops_per_sec": 5849.047775022226, "max_ops_per_sec": 10968.881283797866, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 52726.732558139534, "ser_median_ns": 48659.5, "ser_std_ns": 11012.481270251195, "ser_mad_ns": 5696.0, "ser_cv": 0.2088595430810775, "ser_min_ns": 39247.0, "ser_max_ns": 85213.0, "ser_p5_ns": 40204.0, "ser_p25_ns": 44558.0, "ser_p50_ns": 48659.5, "ser_p75_ns": 60067.25, "ser_p95_ns": 73360.25, "ser_p99_ns": 84460.75, "ser_ci_low_ns": 50453.07848837209, "ser_ci_high_ns": 55088.6976744186, "deser_mean_ns": 60281.41860465116, "deser_median_ns": 56013.0, "deser_std_ns": 10818.2269782123, "deser_mad_ns": 3123.0, "deser_cv": 0.17946205030711726, "deser_min_ns": 51011.0, "deser_max_ns": 94552.0, "deser_p5_ns": 51897.5, "deser_p25_ns": 53323.25, "deser_p50_ns": 56013.0, "deser_p75_ns": 61811.5, "deser_p95_ns": 86648.25, "deser_p99_ns": 91741.05000000002, "deser_ci_low_ns": 58093.170058139534, "deser_ci_high_ns": 62789.51104651163, "total_mean_ns": 113008.1511627907, "total_median_ns": 104373.5, "total_std_ns": 20108.571711362263, "total_mad_ns": 7920.5, "total_cv": 0.17793912655376007, "total_min_ns": 91167.0, "total_max_ns": 170968.0, "total_p5_ns": 92216.5, "total_p25_ns": 99093.0, "total_p50_ns": 104373.5, "total_p75_ns": 120928.5, "total_p95_ns": 158447.5, "total_p99_ns": 168695.1, "total_ci_low_ns": 108784.36075581396, "total_ci_high_ns": 117062.54156976745, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "fxamacker/cbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "2.9.2", "avg_time_ser_ns": 53333.950617283954, "avg_time_deser_ns": 217684.28395061727, "avg_time_total_ns": 271018.23456790124, "median_size_bytes": 34732.0, "avg_ops_per_sec": 3689.788628408539, "min_ops_per_sec": 2963.533717604872, "max_ops_per_sec": 4143.600623197533, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 53333.950617283954, "ser_median_ns": 51773.0, "ser_std_ns": 8832.818727480535, "ser_mad_ns": 3971.0, "ser_cv": 0.16561343431810358, "ser_min_ns": 39558.0, "ser_max_ns": 82148.0, "ser_p5_ns": 41461.0, "ser_p25_ns": 48873.0, "ser_p50_ns": 51773.0, "ser_p75_ns": 56716.0, "ser_p95_ns": 72668.0, "ser_p99_ns": 82083.2, "ser_ci_low_ns": 51459.38549382716, "ser_ci_high_ns": 55336.23734567901, "deser_mean_ns": 217684.28395061727, "deser_median_ns": 210979.0, "deser_std_ns": 19176.527528618528, "deser_mad_ns": 9410.0, "deser_cv": 0.08809330274375166, "deser_min_ns": 193175.0, "deser_max_ns": 281283.0, "deser_p5_ns": 198120.0, "deser_p25_ns": 202357.0, "deser_p50_ns": 210979.0, "deser_p75_ns": 230407.0, "deser_p95_ns": 256136.0, "deser_p99_ns": 267597.4, "deser_ci_low_ns": 213479.91913580248, "deser_ci_high_ns": 222108.9799382716, "total_mean_ns": 271018.23456790124, "total_median_ns": 262688.0, "total_std_ns": 23247.751340329458, "total_mad_ns": 12461.0, "total_cv": 0.08577928853161701, "total_min_ns": 241336.0, "total_max_ns": 337435.0, "total_p5_ns": 244525.0, "total_p25_ns": 253125.0, "total_p50_ns": 262688.0, "total_p75_ns": 286712.0, "total_p95_ns": 320251.0, "total_p99_ns": 332943.8, "total_ci_low_ns": 266022.68950617284, "total_ci_high_ns": 276376.5456790123, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.252627355622717}, {"serializer": "protobuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.36.11", "avg_time_ser_ns": 66333.25882352941, "avg_time_deser_ns": 159053.10588235295, "avg_time_total_ns": 225386.36470588236, "median_size_bytes": 37330.0, "avg_ops_per_sec": 4436.825631865303, "min_ops_per_sec": 2990.8867680178496, "max_ops_per_sec": 5387.2053872053875, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 66333.25882352941, "ser_median_ns": 61454.0, "ser_std_ns": 11917.485581072462, "ser_mad_ns": 5388.0, "ser_cv": 0.17966078845571734, "ser_min_ns": 52359.0, "ser_max_ns": 101450.0, "ser_p5_ns": 54605.6, "ser_p25_ns": 57334.0, "ser_p50_ns": 61454.0, "ser_p75_ns": 75123.0, "ser_p95_ns": 90979.8, "ser_p99_ns": 95603.59999999998, "ser_ci_low_ns": 63923.54294117647, "ser_ci_high_ns": 68997.19617647058, "deser_mean_ns": 159053.10588235295, "deser_median_ns": 149640.0, "deser_std_ns": 25620.718215567507, "deser_mad_ns": 10099.0, "deser_cv": 0.16108279101772727, "deser_min_ns": 133245.0, "deser_max_ns": 232899.0, "deser_p5_ns": 136272.6, "deser_p25_ns": 141323.0, "deser_p50_ns": 149640.0, "deser_p75_ns": 163877.0, "deser_p95_ns": 221867.59999999998, "deser_p99_ns": 229155.96, "deser_ci_low_ns": 154016.76588235295, "deser_ci_high_ns": 164794.00529411764, "total_mean_ns": 225386.36470588236, "total_median_ns": 212630.0, "total_std_ns": 36500.20331216926, "total_mad_ns": 15175.0, "total_cv": 0.1619450376237274, "total_min_ns": 185625.0, "total_max_ns": 334349.0, "total_p5_ns": 190987.4, "total_p25_ns": 200128.0, "total_p50_ns": 212630.0, "total_p75_ns": 237362.0, "total_p95_ns": 312306.8, "total_p99_ns": 324759.55999999994, "total_ci_low_ns": 218135.4861764706, "total_ci_high_ns": 233549.8738235294, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.8027512517248594}, {"serializer": "ugorji/json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 80050.52873563218, "avg_time_deser_ns": 174792.71264367815, "avg_time_total_ns": 254843.24137931035, "median_size_bytes": 41431.0, "avg_ops_per_sec": 3923.980854220864, "min_ops_per_sec": 2636.2061829579816, "max_ops_per_sec": 4632.91127511617, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 80050.52873563218, "ser_median_ns": 73445.0, "ser_std_ns": 15088.481865963637, "ser_mad_ns": 4532.0, "ser_cv": 0.18848697321904678, "ser_min_ns": 64851.0, "ser_max_ns": 123980.0, "ser_p5_ns": 67331.8, "ser_p25_ns": 70336.0, "ser_p50_ns": 73445.0, "ser_p75_ns": 84416.0, "ser_p95_ns": 117263.20000000001, "ser_p99_ns": 123505.28, "ser_ci_low_ns": 77009.58793103449, "ser_ci_high_ns": 83295.89540229885, "deser_mean_ns": 174792.71264367815, "deser_median_ns": 162141.0, "deser_std_ns": 31019.916024397167, "deser_mad_ns": 7819.0, "deser_cv": 0.17746687236116354, "deser_min_ns": 148210.0, "deser_max_ns": 276230.0, "deser_p5_ns": 152025.6, "deser_p25_ns": 155980.5, "deser_p50_ns": 162141.0, "deser_p75_ns": 175033.5, "deser_p95_ns": 248401.2, "deser_p99_ns": 260687.22, "deser_ci_low_ns": 168573.91896551725, "deser_ci_high_ns": 181481.18333333332, "total_mean_ns": 254843.24137931035, "total_median_ns": 236703.0, "total_std_ns": 44094.20870769015, "total_mad_ns": 11239.0, "total_cv": 0.17302483075099506, "total_min_ns": 215847.0, "total_max_ns": 379333.0, "total_p5_ns": 219822.2, "total_p25_ns": 227728.5, "total_p50_ns": 236703.0, "total_p75_ns": 255921.0, "total_p95_ns": 361468.3, "total_p99_ns": 375407.96, "total_ci_low_ns": 246089.3316091954, "total_ci_high_ns": 264072.0951149425, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.112883061419013}, {"serializer": "goccy/go-json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "0.10.6", "avg_time_ser_ns": 87325.10112359551, "avg_time_deser_ns": 152488.52808988764, "avg_time_total_ns": 239813.62921348316, "median_size_bytes": 41432.0, "avg_ops_per_sec": 4169.904785143782, "min_ops_per_sec": 2823.7101292129755, "max_ops_per_sec": 5550.837343813314, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 87325.10112359551, "ser_median_ns": 82774.0, "ser_std_ns": 16507.205077043385, "ser_mad_ns": 9866.0, "ser_cv": 0.1890316170797206, "ser_min_ns": 58834.0, "ser_max_ns": 129070.0, "ser_p5_ns": 64467.2, "ser_p25_ns": 76914.0, "ser_p50_ns": 82774.0, "ser_p75_ns": 95632.0, "ser_p95_ns": 119242.39999999998, "ser_p99_ns": 128123.12000000001, "ser_ci_low_ns": 83802.4547752809, "ser_ci_high_ns": 90958.98483146068, "deser_mean_ns": 152488.52808988764, "deser_median_ns": 138739.0, "deser_std_ns": 29390.012495778952, "deser_mad_ns": 9225.0, "deser_cv": 0.19273589209579345, "deser_min_ns": 121319.0, "deser_max_ns": 233724.0, "deser_p5_ns": 126559.2, "deser_p25_ns": 132488.0, "deser_p50_ns": 138739.0, "deser_p75_ns": 163889.0, "deser_p95_ns": 214894.0, "deser_p99_ns": 230553.36000000002, "deser_ci_low_ns": 146631.95449438202, "deser_ci_high_ns": 158893.6426966292, "total_mean_ns": 239813.62921348316, "total_median_ns": 225367.0, "total_std_ns": 42812.40607113307, "total_mad_ns": 19208.0, "total_cv": 0.17852365693953645, "total_min_ns": 180153.0, "total_max_ns": 354144.0, "total_p5_ns": 193323.2, "total_p25_ns": 210147.0, "total_p50_ns": 225367.0, "total_p75_ns": 257198.0, "total_p95_ns": 335644.8, "total_p99_ns": 345110.80000000005, "total_ci_low_ns": 231276.3463483146, "total_ci_high_ns": 249004.70589887642, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.754173106943781}, {"serializer": "segmentio/encoding/json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "0.5.4", "avg_time_ser_ns": 85439.44705882353, "avg_time_deser_ns": 219083.7294117647, "avg_time_total_ns": 304523.17647058825, "median_size_bytes": 41432.0, "avg_ops_per_sec": 3283.8223073526324, "min_ops_per_sec": 2123.2549498381018, "max_ops_per_sec": 3983.6510959024163, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 85439.44705882353, "ser_median_ns": 80729.0, "ser_std_ns": 15557.092264505298, "ser_mad_ns": 9131.0, "ser_cv": 0.1820832507705079, "ser_min_ns": 62714.0, "ser_max_ns": 127808.0, "ser_p5_ns": 64806.6, "ser_p25_ns": 74852.0, "ser_p50_ns": 80729.0, "ser_p75_ns": 94139.0, "ser_p95_ns": 115424.2, "ser_p99_ns": 127650.92, "ser_ci_low_ns": 82302.22264705884, "ser_ci_high_ns": 88781.19235294117, "deser_mean_ns": 219083.7294117647, "deser_median_ns": 200740.0, "deser_std_ns": 39250.9082589448, "deser_mad_ns": 11821.0, "deser_cv": 0.17915939428424318, "deser_min_ns": 184446.0, "deser_max_ns": 343167.0, "deser_p5_ns": 187279.8, "deser_p25_ns": 191644.0, "deser_p50_ns": 200740.0, "deser_p75_ns": 232240.0, "deser_p95_ns": 311534.2, "deser_p99_ns": 333552.36, "deser_ci_low_ns": 211318.9944117647, "deser_ci_high_ns": 228095.18676470587, "total_mean_ns": 304523.17647058825, "total_median_ns": 290942.0, "total_std_ns": 49755.84655767469, "total_mad_ns": 24200.0, "total_cv": 0.16338935884730685, "total_min_ns": 251026.0, "total_max_ns": 470975.0, "total_p5_ns": 254687.6, "total_p25_ns": 268829.0, "total_p50_ns": 290942.0, "total_p75_ns": 315780.0, "total_p95_ns": 418046.6, "total_p99_ns": 440893.7599999999, "total_ci_low_ns": 294512.9488235294, "total_ci_high_ns": 315437.1917647059, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.035159743885239}, {"serializer": "kelindar/binary", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.0.19", "avg_time_ser_ns": 73058.29761904762, "avg_time_deser_ns": 147800.38095238095, "avg_time_total_ns": 220858.67857142858, "median_size_bytes": 33931.0, "avg_ops_per_sec": 4527.7822291986, "min_ops_per_sec": 3617.447673619401, "max_ops_per_sec": 5049.688939161348, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 73058.29761904762, "ser_median_ns": 70870.0, "ser_std_ns": 6617.473140540686, "ser_mad_ns": 2490.5, "ser_cv": 0.09057798164209332, "ser_min_ns": 61434.0, "ser_max_ns": 95258.0, "ser_p5_ns": 66521.75, "ser_p25_ns": 68923.5, "ser_p50_ns": 70870.0, "ser_p75_ns": 75315.75, "ser_p95_ns": 87448.74999999999, "ser_p99_ns": 93729.14, "ser_ci_low_ns": 71694.52202380952, "ser_ci_high_ns": 74471.28541666667, "deser_mean_ns": 147800.38095238095, "deser_median_ns": 144183.5, "deser_std_ns": 11558.816360698691, "deser_mad_ns": 5251.0, "deser_cv": 0.07820559247694205, "deser_min_ns": 135000.0, "deser_max_ns": 186528.0, "deser_p5_ns": 136528.3, "deser_p25_ns": 139446.75, "deser_p50_ns": 144183.5, "deser_p75_ns": 151061.75, "deser_p95_ns": 172258.3, "deser_p99_ns": 182526.57, "deser_ci_low_ns": 145439.35357142857, "deser_ci_high_ns": 150407.56339285715, "total_mean_ns": 220858.67857142858, "total_median_ns": 217138.0, "total_std_ns": 15279.204441505404, "total_mad_ns": 8430.5, "total_cv": 0.06918091034654049, "total_min_ns": 198032.0, "total_max_ns": 276438.0, "total_p5_ns": 204038.15, "total_p25_ns": 209573.75, "total_p50_ns": 217138.0, "total_p75_ns": 226648.5, "total_p95_ns": 247004.05, "total_p99_ns": 264747.45, "total_ci_low_ns": 217723.22797619048, "total_ci_high_ns": 224290.94583333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.002807388826975}, {"serializer": "vmihailenco/msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "5.4.1", "avg_time_ser_ns": 89374.93975903615, "avg_time_deser_ns": 123639.5421686747, "avg_time_total_ns": 213014.48192771085, "median_size_bytes": 34833.0, "avg_ops_per_sec": 4694.51649930244, "min_ops_per_sec": 3704.7190711528347, "max_ops_per_sec": 5262.603936427745, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 89374.93975903615, "ser_median_ns": 86824.0, "ser_std_ns": 9139.166284425266, "ser_mad_ns": 4985.0, "ser_cv": 0.10225647490298041, "ser_min_ns": 75367.0, "ser_max_ns": 115364.0, "ser_p5_ns": 79347.6, "ser_p25_ns": 82497.0, "ser_p50_ns": 86824.0, "ser_p75_ns": 94950.5, "ser_p95_ns": 107178.1, "ser_p99_ns": 112533.35999999997, "ser_ci_low_ns": 87512.0530120482, "ser_ci_high_ns": 91426.97560240964, "deser_mean_ns": 123639.5421686747, "deser_median_ns": 119600.0, "deser_std_ns": 11302.54106471379, "deser_mad_ns": 5384.0, "deser_cv": 0.09141526138372745, "deser_min_ns": 112111.0, "deser_max_ns": 158014.0, "deser_p5_ns": 112375.3, "deser_p25_ns": 115133.5, "deser_p50_ns": 119600.0, "deser_p75_ns": 129205.5, "deser_p95_ns": 149297.79999999996, "deser_p99_ns": 153626.17999999996, "deser_ci_low_ns": 121290.43463855422, "deser_ci_high_ns": 126222.18674698795, "total_mean_ns": 213014.48192771085, "total_median_ns": 208478.0, "total_std_ns": 18139.193412810622, "total_mad_ns": 10261.0, "total_cv": 0.0851547427604776, "total_min_ns": 190020.0, "total_max_ns": 269926.0, "total_p5_ns": 193653.2, "total_p25_ns": 199588.5, "total_p50_ns": 208478.0, "total_p75_ns": 222013.0, "total_p95_ns": 253555.09999999992, "total_p99_ns": 261504.59999999992, "total_ci_low_ns": 209128.08704819277, "total_ci_high_ns": 216744.06054216865, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.194197377569084}, {"serializer": "ugorji/cbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 45675.206896551725, "avg_time_deser_ns": 112714.41379310345, "avg_time_total_ns": 158389.62068965516, "median_size_bytes": 34732.0, "avg_ops_per_sec": 6313.545014160846, "min_ops_per_sec": 4164.775164612738, "max_ops_per_sec": 7563.667168389922, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 45675.206896551725, "ser_median_ns": 42705.0, "ser_std_ns": 8000.929462195107, "ser_mad_ns": 3473.0, "ser_cv": 0.17517007597395562, "ser_min_ns": 36268.0, "ser_max_ns": 70698.0, "ser_p5_ns": 37756.2, "ser_p25_ns": 39838.0, "ser_p50_ns": 42705.0, "ser_p75_ns": 49063.5, "ser_p95_ns": 60607.3, "ser_p99_ns": 65796.86, "ser_ci_low_ns": 44093.41465517241, "ser_ci_high_ns": 47483.70057471264, "deser_mean_ns": 112714.41379310345, "deser_median_ns": 104416.0, "deser_std_ns": 20770.621429581017, "deser_mad_ns": 6415.0, "deser_cv": 0.1842765333252515, "deser_min_ns": 94537.0, "deser_max_ns": 169411.0, "deser_p5_ns": 95669.0, "deser_p25_ns": 98753.0, "deser_p50_ns": 104416.0, "deser_p75_ns": 118085.0, "deser_p95_ns": 158770.1, "deser_p99_ns": 167858.7, "deser_ci_low_ns": 108602.63764367817, "deser_ci_high_ns": 117256.50431034483, "total_mean_ns": 158389.62068965516, "total_median_ns": 146707.0, "total_std_ns": 27627.00215421263, "total_mad_ns": 8971.0, "total_cv": 0.1744243217069401, "total_min_ns": 132211.0, "total_max_ns": 240109.0, "total_p5_ns": 134648.6, "total_p25_ns": 139227.5, "total_p50_ns": 146707.0, "total_p75_ns": 160728.0, "total_p95_ns": 218030.9, "total_p99_ns": 233655.56, "total_ci_low_ns": 152807.2301724138, "total_ci_high_ns": 164362.89511494254, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.8364073777064955, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.8682872138063884}, {"serializer": "hamba/avro", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "2.31.0", "avg_time_ser_ns": 1247.4193548387098, "avg_time_deser_ns": 1188.47311827957, "avg_time_total_ns": 2435.8924731182797, "median_size_bytes": 107.0, "avg_ops_per_sec": 410527.1521775596, "min_ops_per_sec": 206739.71469919372, "max_ops_per_sec": 1022494.8875255624, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1247.4193548387098, "ser_median_ns": 1289.0, "ser_std_ns": 503.62961551254944, "ser_mad_ns": 360.0, "ser_cv": 0.4037372144010611, "ser_min_ns": 450.0, "ser_max_ns": 2772.0, "ser_p5_ns": 564.0, "ser_p25_ns": 778.0, "ser_p50_ns": 1289.0, "ser_p75_ns": 1584.0, "ser_p95_ns": 1919.7999999999988, "ser_p99_ns": 2730.6, "ser_ci_low_ns": 1145.8862903225809, "ser_ci_high_ns": 1350.138440860215, "deser_mean_ns": 1188.47311827957, "deser_median_ns": 1245.0, "deser_std_ns": 391.5051110610304, "deser_mad_ns": 308.0, "deser_cv": 0.329418566595576, "deser_min_ns": 483.0, "deser_max_ns": 2110.0, "deser_p5_ns": 556.2, "deser_p25_ns": 839.0, "deser_p50_ns": 1245.0, "deser_p75_ns": 1499.0, "deser_p95_ns": 1721.1999999999998, "deser_p99_ns": 1878.1599999999996, "deser_ci_low_ns": 1109.0524193548388, "deser_ci_high_ns": 1265.6583333333333, "total_mean_ns": 2435.8924731182797, "total_median_ns": 2538.0, "total_std_ns": 878.9945894670202, "total_mad_ns": 698.0, "total_cv": 0.36085114559337894, "total_min_ns": 978.0, "total_max_ns": 4837.0, "total_p5_ns": 1085.6, "total_p25_ns": 1603.0, "total_p50_ns": 2538.0, "total_p75_ns": 3147.0, "total_p95_ns": 3495.3999999999996, "total_p99_ns": 4646.5599999999995, "total_ci_low_ns": 2255.531182795699, "total_ci_high_ns": 2611.451075268817, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.11168921262573708, "effect_vs_fastest_cliffs_label": "negligible", "effect_vs_fastest_hedges_g": 0.19057831242816078}, {"serializer": "ugorji/cbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 1613.2978723404256, "avg_time_deser_ns": 2433.648936170213, "avg_time_total_ns": 4046.946808510638, "median_size_bytes": 199.0, "avg_ops_per_sec": 247099.86251784244, "min_ops_per_sec": 147885.2410529429, "max_ops_per_sec": 626566.4160401003, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 1613.2978723404256, "ser_median_ns": 1778.0, "ser_std_ns": 577.0122309094326, "ser_mad_ns": 463.5, "ser_cv": 0.35766007059338384, "ser_min_ns": 560.0, "ser_max_ns": 2671.0, "ser_p5_ns": 709.1, "ser_p25_ns": 1090.25, "ser_p50_ns": 1778.0, "ser_p75_ns": 2073.75, "ser_p95_ns": 2393.4, "ser_p99_ns": 2508.2499999999986, "ser_ci_low_ns": 1500.7132978723405, "ser_ci_high_ns": 1723.3204787234042, "deser_mean_ns": 2433.648936170213, "deser_median_ns": 2684.0, "deser_std_ns": 794.4596555182446, "deser_mad_ns": 551.0, "deser_cv": 0.3264479291612498, "deser_min_ns": 1019.0, "deser_max_ns": 4091.0, "deser_p5_ns": 1165.15, "deser_p25_ns": 1661.75, "deser_p50_ns": 2684.0, "deser_p75_ns": 3097.5, "deser_p95_ns": 3497.4499999999994, "deser_p99_ns": 3817.579999999998, "deser_ci_low_ns": 2282.052659574468, "deser_ci_high_ns": 2589.022340425532, "total_mean_ns": 4046.946808510638, "total_median_ns": 4532.5, "total_std_ns": 1359.8863833551927, "total_mad_ns": 995.0, "total_cv": 0.3360277383669541, "total_min_ns": 1596.0, "total_max_ns": 6762.0, "total_p5_ns": 1850.85, "total_p25_ns": 2782.25, "total_p50_ns": 4532.5, "total_p75_ns": 5123.75, "total_p95_ns": 5755.699999999999, "total_p99_ns": 6266.309999999997, "total_ci_low_ns": 3774.3343085106385, "total_ci_high_ns": 4326.5327127659575, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.667124227865477, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.5938224182873941}, {"serializer": "encoding/json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 1724.8829787234042, "avg_time_deser_ns": 5976.595744680851, "avg_time_total_ns": 7701.478723404255, "median_size_bytes": 257.0, "avg_ops_per_sec": 129845.19413928522, "min_ops_per_sec": 76074.55306200076, "max_ops_per_sec": 262191.9244887257, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 1724.8829787234042, "ser_median_ns": 1837.5, "ser_std_ns": 672.8035846947671, "ser_mad_ns": 550.5, "ser_cv": 0.3900575244778129, "ser_min_ns": 595.0, "ser_max_ns": 3704.0, "ser_p5_ns": 790.2, "ser_p25_ns": 1123.25, "ser_p50_ns": 1837.5, "ser_p75_ns": 2233.5, "ser_p95_ns": 2652.1499999999996, "ser_p99_ns": 3388.7299999999977, "ser_ci_low_ns": 1594.914095744681, "ser_ci_high_ns": 1857.7843085106383, "deser_mean_ns": 5976.595744680851, "deser_median_ns": 6451.5, "deser_std_ns": 1539.4446095225867, "deser_mad_ns": 900.5, "deser_cv": 0.2575788417499522, "deser_min_ns": 3219.0, "deser_max_ns": 9560.0, "deser_p5_ns": 3746.1, "deser_p25_ns": 4471.75, "deser_p50_ns": 6451.5, "deser_p75_ns": 7040.75, "deser_p95_ns": 8164.799999999999, "deser_p99_ns": 9530.24, "deser_ci_low_ns": 5668.935372340426, "deser_ci_high_ns": 6304.615425531915, "total_mean_ns": 7701.478723404255, "total_median_ns": 8311.0, "total_std_ns": 2188.464437983088, "total_mad_ns": 1511.0, "total_cv": 0.28416158981683576, "total_min_ns": 3814.0, "total_max_ns": 13145.0, "total_p5_ns": 4609.3, "total_p25_ns": 5634.25, "total_p50_ns": 8311.0, "total_p75_ns": 9227.0, "total_p95_ns": 10714.949999999999, "total_p99_ns": 12675.349999999997, "total_ci_low_ns": 7274.888563829787, "total_ci_high_ns": 8147.433510638298, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.2873482699497396}, {"serializer": "encoding/gob", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 5453.557894736842, "avg_time_deser_ns": 16823.905263157896, "avg_time_total_ns": 22277.463157894737, "median_size_bytes": 283.0, "avg_ops_per_sec": 44888.41448922418, "min_ops_per_sec": 30539.013589861046, "max_ops_per_sec": 77881.6199376947, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 5453.557894736842, "ser_median_ns": 5906.0, "ser_std_ns": 1760.206508168793, "ser_mad_ns": 1351.0, "ser_cv": 0.3227629635815447, "ser_min_ns": 2659.0, "ser_max_ns": 10453.0, "ser_p5_ns": 2913.2, "ser_p25_ns": 3849.5, "ser_p50_ns": 5906.0, "ser_p75_ns": 6683.5, "ser_p95_ns": 8113.499999999999, "ser_p99_ns": 10122.12, "ser_ci_low_ns": 5113.062105263158, "ser_ci_high_ns": 5810.221842105262, "deser_mean_ns": 16823.905263157896, "deser_median_ns": 18373.0, "deser_std_ns": 4001.3699996261503, "deser_mad_ns": 3196.0, "deser_cv": 0.23783835780320375, "deser_min_ns": 10181.0, "deser_max_ns": 25305.0, "deser_p5_ns": 11095.5, "deser_p25_ns": 12876.5, "deser_p50_ns": 18373.0, "deser_p75_ns": 19700.0, "deser_p95_ns": 22266.899999999998, "deser_p99_ns": 25245.78, "deser_ci_low_ns": 15997.500263157894, "deser_ci_high_ns": 17595.53657894737, "total_mean_ns": 22277.463157894737, "total_median_ns": 24272.0, "total_std_ns": 5601.286160833341, "total_mad_ns": 4613.0, "total_cv": 0.2514328548602422, "total_min_ns": 12840.0, "total_max_ns": 32745.0, "total_p5_ns": 14069.6, "total_p25_ns": 17061.5, "total_p50_ns": 24272.0, "total_p75_ns": 26577.5, "total_p95_ns": 29827.399999999998, "total_p99_ns": 31929.08, "total_ci_low_ns": 21164.117894736843, "total_ci_high_ns": 23453.647631578944, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.957029919533455}, {"serializer": "kelindar/binary", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.0.19", "avg_time_ser_ns": 1055.505376344086, "avg_time_deser_ns": 1222.5913978494623, "avg_time_total_ns": 2278.0967741935483, "median_size_bytes": 104.0, "avg_ops_per_sec": 438962.91471375374, "min_ops_per_sec": 262743.0373095113, "max_ops_per_sec": 1084598.6984815618, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1055.505376344086, "ser_median_ns": 1146.0, "ser_std_ns": 371.27303394085914, "ser_mad_ns": 269.0, "ser_cv": 0.35174906946170514, "ser_min_ns": 376.0, "ser_max_ns": 1896.0, "ser_p5_ns": 438.0, "ser_p25_ns": 687.0, "ser_p50_ns": 1146.0, "ser_p75_ns": 1371.0, "ser_p95_ns": 1517.6, "ser_p99_ns": 1699.1199999999997, "ser_ci_low_ns": 983.8408602150538, "ser_ci_high_ns": 1130.0870967741935, "deser_mean_ns": 1222.5913978494623, "deser_median_ns": 1337.0, "deser_std_ns": 405.9014722104245, "deser_mad_ns": 268.0, "deser_cv": 0.3320009227321614, "deser_min_ns": 516.0, "deser_max_ns": 2283.0, "deser_p5_ns": 598.2, "deser_p25_ns": 838.0, "deser_p50_ns": 1337.0, "deser_p75_ns": 1523.0, "deser_p95_ns": 1800.9999999999998, "deser_p99_ns": 1975.7199999999993, "deser_ci_low_ns": 1143.7494623655914, "deser_ci_high_ns": 1309.8551075268815, "total_mean_ns": 2278.0967741935483, "total_median_ns": 2520.0, "total_std_ns": 766.3628108958991, "total_mad_ns": 599.0, "total_cv": 0.33640485319908914, "total_min_ns": 922.0, "total_max_ns": 3806.0, "total_p5_ns": 1040.0, "total_p25_ns": 1489.0, "total_p50_ns": 2520.0, "total_p75_ns": 2892.0, "total_p95_ns": 3363.2, "total_p99_ns": 3695.6, "total_ci_low_ns": 2115.17688172043, "total_ci_high_ns": 2430.75376344086, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "segmentio/encoding/json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "0.5.4", "avg_time_ser_ns": 1200.5520833333333, "avg_time_deser_ns": 2416.6458333333335, "avg_time_total_ns": 3617.1979166666665, "median_size_bytes": 257.0, "avg_ops_per_sec": 276457.08723660983, "min_ops_per_sec": 150105.07355148604, "max_ops_per_sec": 690607.7348066298, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 1200.5520833333333, "ser_median_ns": 1254.5, "ser_std_ns": 430.2018588570197, "ser_mad_ns": 305.5, "ser_cv": 0.3583366892859526, "ser_min_ns": 398.0, "ser_max_ns": 2231.0, "ser_p5_ns": 509.25, "ser_p25_ns": 859.5, "ser_p50_ns": 1254.5, "ser_p75_ns": 1512.25, "ser_p95_ns": 1778.5, "ser_p99_ns": 2157.85, "ser_ci_low_ns": 1112.9815104166667, "ser_ci_high_ns": 1281.1270833333333, "deser_mean_ns": 2416.6458333333335, "deser_median_ns": 2551.5, "deser_std_ns": 778.1468130881848, "deser_mad_ns": 522.5, "deser_cv": 0.32199456054132247, "deser_min_ns": 1050.0, "deser_max_ns": 4561.0, "deser_p5_ns": 1247.75, "deser_p25_ns": 1713.25, "deser_p50_ns": 2551.5, "deser_p75_ns": 2933.25, "deser_p95_ns": 3667.75, "deser_p99_ns": 4510.65, "deser_ci_low_ns": 2269.6731770833335, "deser_ci_high_ns": 2572.7859375000003, "total_mean_ns": 3617.1979166666665, "total_median_ns": 3838.5, "total_std_ns": 1173.5490357731267, "total_mad_ns": 848.0, "total_cv": 0.32443594815917065, "total_min_ns": 1448.0, "total_max_ns": 6662.0, "total_p5_ns": 1772.75, "total_p25_ns": 2543.25, "total_p50_ns": 3838.5, "total_p75_ns": 4409.5, "total_p95_ns": 5284.75, "total_p99_ns": 6495.749999999999, "total_ci_low_ns": 3382.73671875, "total_ci_high_ns": 3853.8265625, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.6235439068100358, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.34139053669512}, {"serializer": "sonic", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.15.2", "avg_time_ser_ns": 1264.8314606741574, "avg_time_deser_ns": 2308.2359550561796, "avg_time_total_ns": 3573.067415730337, "median_size_bytes": 257.0, "avg_ops_per_sec": 279871.57353861444, "min_ops_per_sec": 148676.7766874814, "max_ops_per_sec": 919963.2014719411, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 1264.8314606741574, "ser_median_ns": 1255.0, "ser_std_ns": 448.39623903507123, "ser_mad_ns": 343.0, "ser_cv": 0.3545106624688757, "ser_min_ns": 317.0, "ser_max_ns": 2384.0, "ser_p5_ns": 538.8, "ser_p25_ns": 937.0, "ser_p50_ns": 1255.0, "ser_p75_ns": 1598.0, "ser_p95_ns": 1868.1999999999996, "ser_p99_ns": 2258.1600000000008, "ser_ci_low_ns": 1167.8946629213483, "ser_ci_high_ns": 1363.352247191011, "deser_mean_ns": 2308.2359550561796, "deser_median_ns": 2431.0, "deser_std_ns": 834.5154966488573, "deser_mad_ns": 613.0, "deser_cv": 0.3615382105199666, "deser_min_ns": 770.0, "deser_max_ns": 4342.0, "deser_p5_ns": 992.6, "deser_p25_ns": 1532.0, "deser_p50_ns": 2431.0, "deser_p75_ns": 2978.0, "deser_p95_ns": 3470.9999999999995, "deser_p99_ns": 3916.9600000000023, "deser_ci_low_ns": 2135.5536516853936, "deser_ci_high_ns": 2474.951404494382, "total_mean_ns": 3573.067415730337, "total_median_ns": 3778.0, "total_std_ns": 1263.510529849212, "total_mad_ns": 890.0, "total_cv": 0.3536206801715074, "total_min_ns": 1087.0, "total_max_ns": 6726.0, "total_p5_ns": 1530.6, "total_p25_ns": 2553.0, "total_p50_ns": 3778.0, "total_p75_ns": 4557.0, "total_p95_ns": 5406.4, "total_p99_ns": 5780.000000000005, "total_ci_low_ns": 3324.3137640449436, "total_ci_high_ns": 3835.3623595505615, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.5817325117796303, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.2405005789233117}, {"serializer": "linkedin/goavro", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "2.15.0", "avg_time_ser_ns": 1345.5, "avg_time_deser_ns": 1907.411111111111, "avg_time_total_ns": 3252.911111111111, "median_size_bytes": 105.0, "avg_ops_per_sec": 307416.94618837145, "min_ops_per_sec": 194666.14755693986, "max_ops_per_sec": 625782.227784731, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 1345.5, "ser_median_ns": 1443.5, "ser_std_ns": 453.70505317981514, "ser_mad_ns": 305.0, "ser_cv": 0.33720182324772585, "ser_min_ns": 550.0, "ser_max_ns": 2659.0, "ser_p5_ns": 633.35, "ser_p25_ns": 946.5, "ser_p50_ns": 1443.5, "ser_p75_ns": 1679.25, "ser_p95_ns": 1967.9499999999998, "ser_p99_ns": 2213.9999999999995, "ser_ci_low_ns": 1254.9316666666666, "ser_ci_high_ns": 1446.8725, "deser_mean_ns": 1907.411111111111, "deser_median_ns": 2033.0, "deser_std_ns": 477.9472232263336, "deser_mad_ns": 415.5, "deser_cv": 0.25057378582004713, "deser_min_ns": 1048.0, "deser_max_ns": 2781.0, "deser_p5_ns": 1219.45, "deser_p25_ns": 1437.5, "deser_p50_ns": 2033.0, "deser_p75_ns": 2311.0, "deser_p95_ns": 2588.85, "deser_p99_ns": 2744.5099999999998, "deser_ci_low_ns": 1809.5875, "deser_ci_high_ns": 2006.598611111111, "total_mean_ns": 3252.911111111111, "total_median_ns": 3525.0, "total_std_ns": 889.7089745673682, "total_mad_ns": 678.0, "total_cv": 0.27351161595788775, "total_min_ns": 1598.0, "total_max_ns": 5137.0, "total_p5_ns": 1914.45, "total_p25_ns": 2373.25, "total_p50_ns": 3525.0, "total_p75_ns": 4026.75, "total_p95_ns": 4341.3, "total_p99_ns": 4743.62, "total_ci_low_ns": 3068.7105555555554, "total_ci_high_ns": 3430.74, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.5543608124253285, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.1705756700209602}, {"serializer": "jsoniter", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.1.12", "avg_time_ser_ns": 1643.774193548387, "avg_time_deser_ns": 2331.7849462365593, "avg_time_total_ns": 3975.559139784946, "median_size_bytes": 257.0, "avg_ops_per_sec": 251536.94482685873, "min_ops_per_sec": 130890.05235602094, "max_ops_per_sec": 683526.999316473, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1643.774193548387, "ser_median_ns": 1739.0, "ser_std_ns": 610.694368322405, "ser_mad_ns": 504.0, "ser_cv": 0.37151962277988415, "ser_min_ns": 529.0, "ser_max_ns": 3506.0, "ser_p5_ns": 711.0, "ser_p25_ns": 1089.0, "ser_p50_ns": 1739.0, "ser_p75_ns": 2132.0, "ser_p95_ns": 2426.3999999999996, "ser_p99_ns": 2875.799999999999, "ser_ci_low_ns": 1525.0069892473118, "ser_ci_high_ns": 1761.097311827957, "deser_mean_ns": 2331.7849462365593, "deser_median_ns": 2524.0, "deser_std_ns": 698.788218982198, "deser_mad_ns": 501.0, "deser_cv": 0.29967953095761435, "deser_min_ns": 934.0, "deser_max_ns": 4134.0, "deser_p5_ns": 1254.2, "deser_p25_ns": 1674.0, "deser_p50_ns": 2524.0, "deser_p75_ns": 2862.0, "deser_p95_ns": 3232.2, "deser_p99_ns": 3547.959999999999, "deser_ci_low_ns": 2189.0120967741937, "deser_ci_high_ns": 2468.6387096774192, "total_mean_ns": 3975.559139784946, "total_median_ns": 4252.0, "total_std_ns": 1292.9855698980052, "total_mad_ns": 983.0, "total_cv": 0.32523363995735904, "total_min_ns": 1463.0, "total_max_ns": 7640.0, "total_p5_ns": 1946.2, "total_p25_ns": 2821.0, "total_p50_ns": 4252.0, "total_p75_ns": 5037.0, "total_p95_ns": 5687.4, "total_p99_ns": 6351.999999999997, "total_ci_low_ns": 3709.2905913978498, "total_ci_high_ns": 4236.225268817204, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.6826222684703434, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.5906289916502825}, {"serializer": "pelletier/go-toml", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "2.4.3", "avg_time_ser_ns": 3624.8367346938776, "avg_time_deser_ns": 7001.357142857143, "avg_time_total_ns": 10626.19387755102, "median_size_bytes": 279.0, "avg_ops_per_sec": 94107.07272268085, "min_ops_per_sec": 49183.55301987015, "max_ops_per_sec": 186671.64457718874, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 3624.8367346938776, "ser_median_ns": 3967.5, "ser_std_ns": 1105.0977723584922, "ser_mad_ns": 815.5, "ser_cv": 0.3048682887649612, "ser_min_ns": 1889.0, "ser_max_ns": 6984.0, "ser_p5_ns": 2141.5, "ser_p25_ns": 2457.25, "ser_p50_ns": 3967.5, "ser_p75_ns": 4419.0, "ser_p95_ns": 5041.999999999999, "ser_p99_ns": 6444.68, "ser_ci_low_ns": 3403.1599489795917, "ser_ci_high_ns": 3836.964540816326, "deser_mean_ns": 7001.357142857143, "deser_median_ns": 7625.5, "deser_std_ns": 2208.7901864208075, "deser_mad_ns": 1471.0, "deser_cv": 0.31548029065682476, "deser_min_ns": 3468.0, "deser_max_ns": 13508.0, "deser_p5_ns": 3883.4, "deser_p25_ns": 4780.25, "deser_p50_ns": 7625.5, "deser_p75_ns": 8566.0, "deser_p95_ns": 9980.49999999999, "deser_p99_ns": 13352.8, "deser_ci_low_ns": 6540.763265306123, "deser_ci_high_ns": 7419.971938775509, "total_mean_ns": 10626.19387755102, "total_median_ns": 11540.0, "total_std_ns": 3292.0709480466, "total_mad_ns": 2253.5, "total_cv": 0.3098071601160463, "total_min_ns": 5357.0, "total_max_ns": 20332.0, "total_p5_ns": 6056.650000000001, "total_p25_ns": 7233.25, "total_p50_ns": 11540.0, "total_p75_ns": 12953.25, "total_p95_ns": 15035.39999999999, "total_p99_ns": 19479.370000000003, "total_ci_low_ns": 9979.120663265307, "total_ci_high_ns": 11313.635714285714, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.4383544757693922}, {"serializer": "goccy/go-json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "0.10.6", "avg_time_ser_ns": 1415.989247311828, "avg_time_deser_ns": 1903.258064516129, "avg_time_total_ns": 3319.2473118279568, "median_size_bytes": 257.0, "avg_ops_per_sec": 301273.12190223206, "min_ops_per_sec": 174337.51743375175, "max_ops_per_sec": 846023.6886632825, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1415.989247311828, "ser_median_ns": 1551.0, "ser_std_ns": 517.9592583991368, "ser_mad_ns": 358.0, "ser_cv": 0.3657932144488046, "ser_min_ns": 378.0, "ser_max_ns": 2573.0, "ser_p5_ns": 509.40000000000003, "ser_p25_ns": 973.0, "ser_p50_ns": 1551.0, "ser_p75_ns": 1822.0, "ser_p95_ns": 2163.7999999999997, "ser_p99_ns": 2319.0799999999995, "ser_ci_low_ns": 1309.8158602150538, "ser_ci_high_ns": 1520.535752688172, "deser_mean_ns": 1903.258064516129, "deser_median_ns": 2057.0, "deser_std_ns": 602.9012267366529, "deser_mad_ns": 441.0, "deser_cv": 0.3167732416202478, "deser_min_ns": 790.0, "deser_max_ns": 3473.0, "deser_p5_ns": 986.6, "deser_p25_ns": 1363.0, "deser_p50_ns": 2057.0, "deser_p75_ns": 2350.0, "deser_p95_ns": 2745.199999999999, "deser_p99_ns": 3187.7999999999993, "deser_ci_low_ns": 1779.705376344086, "deser_ci_high_ns": 2026.8185483870966, "total_mean_ns": 3319.2473118279568, "total_median_ns": 3619.0, "total_std_ns": 1105.5728856856736, "total_mad_ns": 742.0, "total_cv": 0.33307939476098236, "total_min_ns": 1182.0, "total_max_ns": 5736.0, "total_p5_ns": 1508.2, "total_p25_ns": 2260.0, "total_p50_ns": 3619.0, "total_p75_ns": 4163.0, "total_p95_ns": 4797.399999999999, "total_p99_ns": 5638.48, "total_ci_low_ns": 3100.2131720430107, "total_ci_high_ns": 3542.510215053763, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.5353220025436467, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.0900855183338194}, {"serializer": "ugorji/msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 1585.9893617021276, "avg_time_deser_ns": 2456.2340425531916, "avg_time_total_ns": 4042.223404255319, "median_size_bytes": 199.0, "avg_ops_per_sec": 247388.60275443524, "min_ops_per_sec": 122880.31457360531, "max_ops_per_sec": 595947.5566150179, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 1585.9893617021276, "ser_median_ns": 1752.0, "ser_std_ns": 618.4422417147964, "ser_mad_ns": 388.5, "ser_cv": 0.38994097731593047, "ser_min_ns": 586.0, "ser_max_ns": 3317.0, "ser_p5_ns": 614.3, "ser_p25_ns": 1012.0, "ser_p50_ns": 1752.0, "ser_p75_ns": 1998.75, "ser_p95_ns": 2481.2999999999997, "ser_p99_ns": 2979.4099999999976, "ser_ci_low_ns": 1457.6478723404257, "ser_ci_high_ns": 1713.3896276595744, "deser_mean_ns": 2456.2340425531916, "deser_median_ns": 2669.5, "deser_std_ns": 807.5561357435348, "deser_mad_ns": 566.5, "deser_cv": 0.3287781708717387, "deser_min_ns": 1089.0, "deser_max_ns": 4821.0, "deser_p5_ns": 1227.95, "deser_p25_ns": 1697.25, "deser_p50_ns": 2669.5, "deser_p75_ns": 3028.75, "deser_p95_ns": 3557.499999999999, "deser_p99_ns": 4090.949999999995, "deser_ci_low_ns": 2289.129787234043, "deser_ci_high_ns": 2626.2377659574468, "total_mean_ns": 4042.223404255319, "total_median_ns": 4489.5, "total_std_ns": 1415.1429895020058, "total_mad_ns": 985.0, "total_cv": 0.3500902468706356, "total_min_ns": 1678.0, "total_max_ns": 8138.0, "total_p5_ns": 1835.5, "total_p25_ns": 2780.75, "total_p50_ns": 4489.5, "total_p75_ns": 5003.0, "total_p95_ns": 6044.199999999999, "total_p99_ns": 7009.909999999992, "total_ci_low_ns": 3753.4061170212767, "total_ci_high_ns": 4322.565159574468, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.6725005719514985, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.5416743975175295}, {"serializer": "shamaton/msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "3.1.2", "avg_time_ser_ns": 2086.3541666666665, "avg_time_deser_ns": 1873.3229166666667, "avg_time_total_ns": 3959.6770833333335, "median_size_bytes": 196.0, "avg_ops_per_sec": 252545.8462785002, "min_ops_per_sec": 126582.27848101266, "max_ops_per_sec": 619578.6864931847, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 2086.3541666666665, "ser_median_ns": 2284.5, "ser_std_ns": 779.6567663052851, "ser_mad_ns": 535.5, "ser_cv": 0.37369339240754595, "ser_min_ns": 779.0, "ser_max_ns": 4343.0, "ser_p5_ns": 950.75, "ser_p25_ns": 1375.0, "ser_p50_ns": 2284.5, "ser_p75_ns": 2570.25, "ser_p95_ns": 3128.25, "ser_p99_ns": 4273.65, "ser_ci_low_ns": 1933.125, "ser_ci_high_ns": 2249.188020833333, "deser_mean_ns": 1873.3229166666667, "deser_median_ns": 2065.0, "deser_std_ns": 668.9284832325684, "deser_mad_ns": 584.0, "deser_cv": 0.3570812470616861, "deser_min_ns": 793.0, "deser_max_ns": 3557.0, "deser_p5_ns": 939.5, "deser_p25_ns": 1267.75, "deser_p50_ns": 2065.0, "deser_p75_ns": 2337.25, "deser_p95_ns": 2890.0, "deser_p99_ns": 3497.1499999999996, "deser_ci_low_ns": 1737.0307291666668, "deser_ci_high_ns": 2010.5794270833333, "total_mean_ns": 3959.6770833333335, "total_median_ns": 4379.0, "total_std_ns": 1418.5150092506242, "total_mad_ns": 1087.5, "total_cv": 0.3582400734699534, "total_min_ns": 1614.0, "total_max_ns": 7900.0, "total_p5_ns": 1987.25, "total_p25_ns": 2557.75, "total_p50_ns": 4379.0, "total_p75_ns": 4942.0, "total_p95_ns": 5911.0, "total_p99_ns": 7770.799999999999, "total_ci_low_ns": 3681.6223958333335, "total_ci_high_ns": 4249.688281249999, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.6359767025089605, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.462645717561332}, {"serializer": "fxamacker/cbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "2.9.2", "avg_time_ser_ns": 1372.1458333333333, "avg_time_deser_ns": 3177.21875, "avg_time_total_ns": 4549.364583333333, "median_size_bytes": 199.0, "avg_ops_per_sec": 219810.9168175959, "min_ops_per_sec": 117577.89535567313, "max_ops_per_sec": 468823.2536333802, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 1372.1458333333333, "ser_median_ns": 1500.5, "ser_std_ns": 473.38767865064426, "ser_mad_ns": 384.0, "ser_cv": 0.34499808048875585, "ser_min_ns": 587.0, "ser_max_ns": 2684.0, "ser_p5_ns": 652.25, "ser_p25_ns": 913.25, "ser_p50_ns": 1500.5, "ser_p75_ns": 1674.75, "ser_p95_ns": 2098.75, "ser_p99_ns": 2292.599999999999, "ser_ci_low_ns": 1279.36796875, "ser_ci_high_ns": 1467.4510416666667, "deser_mean_ns": 3177.21875, "deser_median_ns": 3483.5, "deser_std_ns": 1010.9145333558124, "deser_mad_ns": 711.0, "deser_cv": 0.31817593086903834, "deser_min_ns": 1536.0, "deser_max_ns": 5983.0, "deser_p5_ns": 1766.75, "deser_p25_ns": 2186.5, "deser_p50_ns": 3483.5, "deser_p75_ns": 3896.0, "deser_p95_ns": 4371.5, "deser_p99_ns": 5829.099999999999, "deser_ci_low_ns": 2988.6697916666667, "deser_ci_high_ns": 3384.89921875, "total_mean_ns": 4549.364583333333, "total_median_ns": 5002.0, "total_std_ns": 1460.9362111496332, "total_mad_ns": 1113.5, "total_cv": 0.3211297279848257, "total_min_ns": 2133.0, "total_max_ns": 8505.0, "total_p5_ns": 2447.0, "total_p25_ns": 3079.5, "total_p50_ns": 5002.0, "total_p75_ns": 5588.25, "total_p95_ns": 6303.5, "total_p99_ns": 8094.5999999999985, "total_ci_low_ns": 4254.598177083333, "total_ci_high_ns": 4835.221614583334, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.7952508960573477, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.9304058880984514}, {"serializer": "vmihailenco/msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "5.4.1", "avg_time_ser_ns": 1853.5670103092784, "avg_time_deser_ns": 3353.6494845360826, "avg_time_total_ns": 5207.216494845361, "median_size_bytes": 196.0, "avg_ops_per_sec": 192041.1799643635, "min_ops_per_sec": 106518.96037494674, "max_ops_per_sec": 458926.1128958238, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 1853.5670103092784, "ser_median_ns": 1902.0, "ser_std_ns": 662.5325449115767, "ser_mad_ns": 555.0, "ser_cv": 0.3574365217047261, "ser_min_ns": 694.0, "ser_max_ns": 3364.0, "ser_p5_ns": 877.0, "ser_p25_ns": 1207.0, "ser_p50_ns": 1902.0, "ser_p75_ns": 2438.0, "ser_p95_ns": 2803.9999999999995, "ser_p99_ns": 2989.5999999999967, "ser_ci_low_ns": 1724.8417525773195, "ser_ci_high_ns": 1982.4667525773195, "deser_mean_ns": 3353.6494845360826, "deser_median_ns": 3527.0, "deser_std_ns": 1181.3148310360677, "deser_mad_ns": 939.0, "deser_cv": 0.3522475549347643, "deser_min_ns": 1485.0, "deser_max_ns": 6884.0, "deser_p5_ns": 1785.2, "deser_p25_ns": 2251.0, "deser_p50_ns": 3527.0, "deser_p75_ns": 4157.0, "deser_p95_ns": 5135.399999999998, "deser_p99_ns": 6808.159999999999, "deser_ci_low_ns": 3132.4216494845364, "deser_ci_high_ns": 3585.273453608247, "total_mean_ns": 5207.216494845361, "total_median_ns": 5476.0, "total_std_ns": 1794.647065040483, "total_mad_ns": 1465.0, "total_cv": 0.34464613998995614, "total_min_ns": 2179.0, "total_max_ns": 9388.0, "total_p5_ns": 2708.4, "total_p25_ns": 3485.0, "total_p50_ns": 5476.0, "total_p75_ns": 6585.0, "total_p95_ns": 7823.5999999999985, "total_p99_ns": 8852.319999999996, "total_ci_low_ns": 4873.016237113402, "total_ci_high_ns": 5586.499226804123, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.8701917747478106, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.098889413984378}, {"serializer": "ugorji/json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 2103.5, "avg_time_deser_ns": 3062.5714285714284, "avg_time_total_ns": 5166.071428571428, "median_size_bytes": 257.0, "avg_ops_per_sec": 193570.6878672658, "min_ops_per_sec": 109206.07185759528, "max_ops_per_sec": 471698.11320754717, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 2103.5, "ser_median_ns": 2275.5, "ser_std_ns": 744.9764024492223, "ser_mad_ns": 535.5, "ser_cv": 0.3541604004987983, "ser_min_ns": 750.0, "ser_max_ns": 4199.0, "ser_p5_ns": 962.1, "ser_p25_ns": 1465.0, "ser_p50_ns": 2275.5, "ser_p75_ns": 2680.5, "ser_p95_ns": 3056.0499999999997, "ser_p99_ns": 4001.1200000000003, "ser_ci_low_ns": 1964.5160714285714, "ser_ci_high_ns": 2256.3517857142856, "deser_mean_ns": 3062.5714285714284, "deser_median_ns": 3298.0, "deser_std_ns": 914.1750266669086, "deser_mad_ns": 725.5, "deser_cv": 0.29849916907679636, "deser_min_ns": 1340.0, "deser_max_ns": 4958.0, "deser_p5_ns": 1660.05, "deser_p25_ns": 2293.75, "deser_p50_ns": 3298.0, "deser_p75_ns": 3803.0, "deser_p95_ns": 4294.65, "deser_p99_ns": 4958.0, "deser_ci_low_ns": 2874.180867346939, "deser_ci_high_ns": 3244.779081632653, "total_mean_ns": 5166.071428571428, "total_median_ns": 5614.5, "total_std_ns": 1644.6600328673826, "total_mad_ns": 1316.5, "total_cv": 0.31835797386993925, "total_min_ns": 2120.0, "total_max_ns": 9157.0, "total_p5_ns": 2681.35, "total_p25_ns": 3826.75, "total_p50_ns": 5614.5, "total_p75_ns": 6492.5, "total_p95_ns": 7273.099999999999, "total_p99_ns": 8959.12, "total_ci_low_ns": 4846.263010204082, "total_ci_high_ns": 5490.530357142858, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.8817204301075269, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.2231614324248934}, {"serializer": "protobuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.36.11", "avg_time_ser_ns": 1501.701030927835, "avg_time_deser_ns": 1922.1855670103093, "avg_time_total_ns": 3423.8865979381444, "median_size_bytes": 123.0, "avg_ops_per_sec": 292065.74791413866, "min_ops_per_sec": 160153.7475976938, "max_ops_per_sec": 876424.1893076249, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 1501.701030927835, "ser_median_ns": 1603.0, "ser_std_ns": 504.74053080412125, "ser_mad_ns": 372.0, "ser_cv": 0.33611252866508606, "ser_min_ns": 454.0, "ser_max_ns": 2978.0, "ser_p5_ns": 656.4, "ser_p25_ns": 1082.0, "ser_p50_ns": 1603.0, "ser_p75_ns": 1868.0, "ser_p95_ns": 2192.5999999999985, "ser_p99_ns": 2484.559999999996, "ser_ci_low_ns": 1395.838144329897, "ser_ci_high_ns": 1599.5211340206185, "deser_mean_ns": 1922.1855670103093, "deser_median_ns": 2118.0, "deser_std_ns": 695.905410387206, "deser_mad_ns": 466.0, "deser_cv": 0.3620386201679734, "deser_min_ns": 687.0, "deser_max_ns": 3941.0, "deser_p5_ns": 917.2, "deser_p25_ns": 1264.0, "deser_p50_ns": 2118.0, "deser_p75_ns": 2343.0, "deser_p95_ns": 2910.999999999999, "deser_p99_ns": 3837.3199999999993, "deser_ci_low_ns": 1790.9033505154641, "deser_ci_high_ns": 2064.8456185567006, "total_mean_ns": 3423.8865979381444, "total_median_ns": 3783.0, "total_std_ns": 1160.4206661477037, "total_mad_ns": 831.0, "total_cv": 0.3389191297534521, "total_min_ns": 1141.0, "total_max_ns": 6244.0, "total_p5_ns": 1564.8, "total_p25_ns": 2308.0, "total_p50_ns": 3783.0, "total_p75_ns": 4206.0, "total_p95_ns": 5021.999999999997, "total_p99_ns": 5972.319999999998, "total_ci_low_ns": 3203.5206185567013, "total_ci_high_ns": 3649.270360824742, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.5525994900787052, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.155738460426393}, {"serializer": "mongo-bson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.17.9", "avg_time_ser_ns": 4028.978947368421, "avg_time_deser_ns": 4820.347368421053, "avg_time_total_ns": 8849.326315789474, "median_size_bytes": 291.0, "avg_ops_per_sec": 113002.95235081825, "min_ops_per_sec": 65832.78472679395, "max_ops_per_sec": 255493.10168625446, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 4028.978947368421, "ser_median_ns": 4308.0, "ser_std_ns": 1526.8607551147281, "ser_mad_ns": 1082.0, "ser_cv": 0.37896965336888067, "ser_min_ns": 1543.0, "ser_max_ns": 8083.0, "ser_p5_ns": 1863.7, "ser_p25_ns": 2679.0, "ser_p50_ns": 4308.0, "ser_p75_ns": 4985.5, "ser_p95_ns": 6676.299999999997, "ser_p99_ns": 7970.200000000001, "ser_ci_low_ns": 3730.4755263157895, "ser_ci_high_ns": 4330.629736842106, "deser_mean_ns": 4820.347368421053, "deser_median_ns": 5364.0, "deser_std_ns": 1477.7604444709575, "deser_mad_ns": 1033.0, "deser_cv": 0.306567210104406, "deser_min_ns": 2293.0, "deser_max_ns": 7799.0, "deser_p5_ns": 2626.7, "deser_p25_ns": 3370.5, "deser_p50_ns": 5364.0, "deser_p75_ns": 5996.0, "deser_p95_ns": 6893.3, "deser_p99_ns": 7261.3200000000015, "deser_ci_low_ns": 4526.640526315789, "deser_ci_high_ns": 5114.497368421052, "total_mean_ns": 8849.326315789474, "total_median_ns": 9696.0, "total_std_ns": 2933.950076596343, "total_mad_ns": 1984.0, "total_cv": 0.3315450207052961, "total_min_ns": 3914.0, "total_max_ns": 15190.0, "total_p5_ns": 4603.1, "total_p25_ns": 5884.5, "total_p50_ns": 9696.0, "total_p75_ns": 11213.0, "total_p95_ns": 12757.2, "total_p99_ns": 15111.04, "total_ci_low_ns": 8282.88394736842, "total_ci_high_ns": 9423.431052631578, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.0380341967007953}, {"serializer": "goccy/go-yaml", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "go", "serializer_version": "1.19.2", "avg_time_ser_ns": 42305.89473684211, "avg_time_deser_ns": 50306.61052631579, "avg_time_total_ns": 92612.5052631579, "median_size_bytes": 227.0, "avg_ops_per_sec": 10797.677885491876, "min_ops_per_sec": 7546.771113978884, "max_ops_per_sec": 17161.489617298783, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 42305.89473684211, "ser_median_ns": 45248.0, "ser_std_ns": 9783.178556566003, "ser_mad_ns": 6949.0, "ser_cv": 0.2312485911814629, "ser_min_ns": 26794.0, "ser_max_ns": 71912.0, "ser_p5_ns": 29418.6, "ser_p25_ns": 32139.5, "ser_p50_ns": 45248.0, "ser_p75_ns": 48523.5, "ser_p95_ns": 57757.5, "ser_p99_ns": 63408.760000000024, "ser_ci_low_ns": 40311.45184210526, "ser_ci_high_ns": 44340.253421052636, "deser_mean_ns": 50306.61052631579, "deser_median_ns": 54865.0, "deser_std_ns": 11565.751026837022, "deser_mad_ns": 7933.0, "deser_cv": 0.2299051934891715, "deser_min_ns": 31476.0, "deser_max_ns": 88760.0, "deser_p5_ns": 34638.3, "deser_p25_ns": 37745.5, "deser_p50_ns": 54865.0, "deser_p75_ns": 57944.0, "deser_p95_ns": 65529.49999999999, "deser_p99_ns": 71570.22000000004, "deser_ci_low_ns": 47982.96473684211, "deser_ci_high_ns": 52625.277894736835, "total_mean_ns": 92612.5052631579, "total_median_ns": 100798.0, "total_std_ns": 20626.407863683256, "total_mad_ns": 14671.0, "total_cv": 0.2227173080468284, "total_min_ns": 58270.0, "total_max_ns": 132507.0, "total_p5_ns": 64671.5, "total_p25_ns": 69843.5, "total_p50_ns": 100798.0, "total_p75_ns": 107728.0, "total_p95_ns": 123500.5, "total_p99_ns": 131959.92, "total_ci_low_ns": 88354.3957894737, "total_ci_high_ns": 96421.47131578947, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.131572525994927}, {"serializer": "ugorji/cbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 1658.8314606741574, "avg_time_deser_ns": 2450.629213483146, "avg_time_total_ns": 4109.460674157303, "median_size_bytes": 199.0, "avg_ops_per_sec": 243340.93431982107, "min_ops_per_sec": 162866.44951140066, "max_ops_per_sec": 345542.5017277125, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 1658.8314606741574, "ser_median_ns": 1582.0, "ser_std_ns": 347.3641407395211, "ser_mad_ns": 212.0, "ser_cv": 0.20940291342096354, "ser_min_ns": 1136.0, "ser_max_ns": 2521.0, "ser_p5_ns": 1238.6, "ser_p25_ns": 1419.0, "ser_p50_ns": 1582.0, "ser_p75_ns": 1839.0, "ser_p95_ns": 2390.9999999999995, "ser_p99_ns": 2498.12, "ser_ci_low_ns": 1591.8977528089888, "ser_ci_high_ns": 1731.0862359550563, "deser_mean_ns": 2450.629213483146, "deser_median_ns": 2342.0, "deser_std_ns": 433.8200397217112, "deser_mad_ns": 294.0, "deser_cv": 0.177023940355755, "deser_min_ns": 1758.0, "deser_max_ns": 3645.0, "deser_p5_ns": 1850.6, "deser_p25_ns": 2183.0, "deser_p50_ns": 2342.0, "deser_p75_ns": 2700.0, "deser_p95_ns": 3339.9999999999986, "deser_p99_ns": 3631.8, "deser_ci_low_ns": 2363.111235955056, "deser_ci_high_ns": 2539.446629213483, "total_mean_ns": 4109.460674157303, "total_median_ns": 3979.0, "total_std_ns": 726.0420263346233, "total_mad_ns": 468.0, "total_cv": 0.17667574504372338, "total_min_ns": 2894.0, "total_max_ns": 6140.0, "total_p5_ns": 3236.0, "total_p25_ns": 3607.0, "total_p50_ns": 3979.0, "total_p75_ns": 4523.0, "total_p95_ns": 5554.799999999999, "total_p99_ns": 6087.200000000001, "total_ci_low_ns": 3961.802808988764, "total_ci_high_ns": 4258.7275280898875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.9915928249323183}, {"serializer": "goccy/go-json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "0.10.6", "avg_time_ser_ns": 906.5217391304348, "avg_time_deser_ns": 1564.7826086956522, "avg_time_total_ns": 2471.304347826087, "median_size_bytes": 258.0, "avg_ops_per_sec": 404644.6164672766, "min_ops_per_sec": 247096.61477637757, "max_ops_per_sec": 780640.12490242, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 906.5217391304348, "ser_median_ns": 902.5, "ser_std_ns": 247.83641708212906, "ser_mad_ns": 155.5, "ser_cv": 0.2733926903064253, "ser_min_ns": 379.0, "ser_max_ns": 1702.0, "ser_p5_ns": 542.05, "ser_p25_ns": 743.75, "ser_p50_ns": 902.5, "ser_p75_ns": 1057.25, "ser_p95_ns": 1329.35, "ser_p99_ns": 1431.730000000001, "ser_ci_low_ns": 858.6391304347826, "ser_ci_high_ns": 956.829347826087, "deser_mean_ns": 1564.7826086956522, "deser_median_ns": 1532.5, "deser_std_ns": 315.19572939062317, "deser_mad_ns": 213.5, "deser_cv": 0.20143100238911732, "deser_min_ns": 902.0, "deser_max_ns": 2585.0, "deser_p5_ns": 1083.1, "deser_p25_ns": 1361.5, "deser_p50_ns": 1532.5, "deser_p75_ns": 1772.75, "deser_p95_ns": 2050.7, "deser_p99_ns": 2366.600000000001, "deser_ci_low_ns": 1498.0070652173913, "deser_ci_high_ns": 1624.1638586956522, "total_mean_ns": 2471.304347826087, "total_median_ns": 2483.0, "total_std_ns": 528.8712994760258, "total_mad_ns": 357.5, "total_cv": 0.21400492413702663, "total_min_ns": 1281.0, "total_max_ns": 4047.0, "total_p5_ns": 1624.5, "total_p25_ns": 2115.0, "total_p50_ns": 2483.0, "total_p75_ns": 2823.75, "total_p95_ns": 3313.4, "total_p99_ns": 3511.920000000002, "total_ci_low_ns": 2358.575, "total_ci_high_ns": 2583.235054347826, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.6833492594362159, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.4095558808063948}, {"serializer": "vmihailenco/msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "5.4.1", "avg_time_ser_ns": 1648.967032967033, "avg_time_deser_ns": 2238.978021978022, "avg_time_total_ns": 3887.945054945055, "median_size_bytes": 196.0, "avg_ops_per_sec": 257205.28090491035, "min_ops_per_sec": 186219.739292365, "max_ops_per_sec": 352858.15102328866, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 1648.967032967033, "ser_median_ns": 1623.0, "ser_std_ns": 265.47615295914585, "ser_mad_ns": 159.0, "ser_cv": 0.1609954278354899, "ser_min_ns": 1223.0, "ser_max_ns": 2351.0, "ser_p5_ns": 1244.5, "ser_p25_ns": 1466.0, "ser_p50_ns": 1623.0, "ser_p75_ns": 1791.0, "ser_p95_ns": 2137.5, "ser_p99_ns": 2340.2, "ser_ci_low_ns": 1598.5412087912089, "ser_ci_high_ns": 1703.3197802197801, "deser_mean_ns": 2238.978021978022, "deser_median_ns": 2243.0, "deser_std_ns": 333.15581866688075, "deser_mad_ns": 204.0, "deser_cv": 0.14879816389289732, "deser_min_ns": 1595.0, "deser_max_ns": 3031.0, "deser_p5_ns": 1679.5, "deser_p25_ns": 2023.5, "deser_p50_ns": 2243.0, "deser_p75_ns": 2433.0, "deser_p95_ns": 2840.5, "deser_p99_ns": 3027.4, "deser_ci_low_ns": 2171.1035714285717, "deser_ci_high_ns": 2305.735714285714, "total_mean_ns": 3887.945054945055, "total_median_ns": 3846.0, "total_std_ns": 582.4330073567329, "total_mad_ns": 363.0, "total_cv": 0.1498048452654802, "total_min_ns": 2834.0, "total_max_ns": 5370.0, "total_p5_ns": 2951.5, "total_p25_ns": 3536.0, "total_p50_ns": 3846.0, "total_p75_ns": 4237.0, "total_p95_ns": 4952.0, "total_p99_ns": 5352.0, "total_ci_low_ns": 3770.6107142857145, "total_ci_high_ns": 4005.909065934066, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.9997584832749667, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.261909131947901}, {"serializer": "ugorji/msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 1619.4597701149426, "avg_time_deser_ns": 2330.0689655172414, "avg_time_total_ns": 3949.5287356321837, "median_size_bytes": 199.0, "avg_ops_per_sec": 253194.7649799627, "min_ops_per_sec": 169176.1123329386, "max_ops_per_sec": 366166.2394727206, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 1619.4597701149426, "ser_median_ns": 1585.0, "ser_std_ns": 312.3301698373761, "ser_mad_ns": 228.0, "ser_cv": 0.19286071540709418, "ser_min_ns": 1023.0, "ser_max_ns": 2573.0, "ser_p5_ns": 1196.5, "ser_p25_ns": 1370.0, "ser_p50_ns": 1585.0, "ser_p75_ns": 1827.5, "ser_p95_ns": 2116.8, "ser_p99_ns": 2425.94, "ser_ci_low_ns": 1552.6727011494254, "ser_ci_high_ns": 1684.432183908046, "deser_mean_ns": 2330.0689655172414, "deser_median_ns": 2313.0, "deser_std_ns": 373.7229664518473, "deser_mad_ns": 263.0, "deser_cv": 0.1603913755268983, "deser_min_ns": 1703.0, "deser_max_ns": 3338.0, "deser_p5_ns": 1736.0, "deser_p25_ns": 2060.5, "deser_p50_ns": 2313.0, "deser_p75_ns": 2569.5, "deser_p95_ns": 2999.5, "deser_p99_ns": 3286.4, "deser_ci_low_ns": 2251.1795977011498, "deser_ci_high_ns": 2411.1301724137934, "total_mean_ns": 3949.5287356321837, "total_median_ns": 3865.0, "total_std_ns": 652.2262027191939, "total_mad_ns": 460.0, "total_cv": 0.16514026011125982, "total_min_ns": 2731.0, "total_max_ns": 5911.0, "total_p5_ns": 2963.7, "total_p25_ns": 3456.5, "total_p50_ns": 3865.0, "total_p75_ns": 4363.0, "total_p95_ns": 5032.8, "total_p99_ns": 5445.740000000001, "total_ci_low_ns": 3814.685632183908, "total_ci_high_ns": 4089.1807471264365, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.9997473790577239, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.053487615525981}, {"serializer": "protobuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.36.11", "avg_time_ser_ns": 995.2777777777778, "avg_time_deser_ns": 1284.8555555555556, "avg_time_total_ns": 2280.133333333333, "median_size_bytes": 123.0, "avg_ops_per_sec": 438570.8438103035, "min_ops_per_sec": 287769.7841726619, "max_ops_per_sec": 738552.4372230428, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 995.2777777777778, "ser_median_ns": 990.5, "ser_std_ns": 242.26969964441025, "ser_mad_ns": 178.0, "ser_cv": 0.2434191791012774, "ser_min_ns": 494.0, "ser_max_ns": 1561.0, "ser_p5_ns": 580.15, "ser_p25_ns": 829.25, "ser_p50_ns": 990.5, "ser_p75_ns": 1189.5, "ser_p95_ns": 1374.05, "ser_p99_ns": 1521.84, "ser_ci_low_ns": 945.6766666666667, "ser_ci_high_ns": 1045.9463888888888, "deser_mean_ns": 1284.8555555555556, "deser_median_ns": 1247.0, "deser_std_ns": 238.7086777516845, "deser_mad_ns": 169.0, "deser_cv": 0.18578639187847837, "deser_min_ns": 830.0, "deser_max_ns": 1961.0, "deser_p5_ns": 955.8, "deser_p25_ns": 1111.25, "deser_p50_ns": 1247.0, "deser_p75_ns": 1471.5, "deser_p95_ns": 1670.35, "deser_p99_ns": 1919.17, "deser_ci_low_ns": 1235.026111111111, "deser_ci_high_ns": 1334.1333333333332, "total_mean_ns": 2280.133333333333, "total_median_ns": 2245.0, "total_std_ns": 457.99377357035485, "total_mad_ns": 326.5, "total_cv": 0.20086271573461562, "total_min_ns": 1354.0, "total_max_ns": 3475.0, "total_p5_ns": 1619.7, "total_p25_ns": 1953.5, "total_p50_ns": 2245.0, "total_p75_ns": 2589.0, "total_p95_ns": 3041.85, "total_p99_ns": 3299.67, "total_ci_low_ns": 2186.8725, "total_ci_high_ns": 2375.296388888889, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.5567765567765568, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.0853758962482625}, {"serializer": "segmentio/encoding/json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "0.5.4", "avg_time_ser_ns": 787.4886363636364, "avg_time_deser_ns": 4185.090909090909, "avg_time_total_ns": 4972.579545454545, "median_size_bytes": 258.0, "avg_ops_per_sec": 201102.8664014242, "min_ops_per_sec": 136967.53869332967, "max_ops_per_sec": 319182.89179699967, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 787.4886363636364, "ser_median_ns": 796.5, "ser_std_ns": 197.58751847115846, "ser_mad_ns": 135.5, "ser_cv": 0.25090840597212, "ser_min_ns": 365.0, "ser_max_ns": 1206.0, "ser_p5_ns": 476.7, "ser_p25_ns": 638.25, "ser_p50_ns": 796.5, "ser_p75_ns": 912.75, "ser_p95_ns": 1079.6999999999998, "ser_p99_ns": 1186.86, "ser_ci_low_ns": 746.7147727272727, "ser_ci_high_ns": 828.3815340909091, "deser_mean_ns": 4185.090909090909, "deser_median_ns": 4049.5, "deser_std_ns": 844.5815754665472, "deser_mad_ns": 597.0, "deser_cv": 0.20180722326292508, "deser_min_ns": 2626.0, "deser_max_ns": 6460.0, "deser_p5_ns": 2910.9, "deser_p25_ns": 3596.75, "deser_p50_ns": 4049.5, "deser_p75_ns": 4753.25, "deser_p95_ns": 5509.45, "deser_p99_ns": 6288.609999999999, "deser_ci_low_ns": 4005.255681818182, "deser_ci_high_ns": 4358.224999999999, "total_mean_ns": 4972.579545454545, "total_median_ns": 4821.5, "total_std_ns": 962.9186681209804, "total_mad_ns": 678.0, "total_cv": 0.19364570427057085, "total_min_ns": 3133.0, "total_max_ns": 7301.0, "total_p5_ns": 3466.65, "total_p25_ns": 4327.25, "total_p50_ns": 4821.5, "total_p75_ns": 5578.25, "total_p95_ns": 6476.45, "total_p99_ns": 7285.34, "total_ci_low_ns": 4777.659090909091, "total_ci_high_ns": 5175.1372159090915, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.34267061473304}, {"serializer": "goccy/go-yaml", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.19.2", "avg_time_ser_ns": 31193.170454545456, "avg_time_deser_ns": 36677.806818181816, "avg_time_total_ns": 67870.97727272728, "median_size_bytes": 227.0, "avg_ops_per_sec": 14733.838235180854, "min_ops_per_sec": 12468.050620285518, "max_ops_per_sec": 16465.512983056986, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 31193.170454545456, "ser_median_ns": 31237.5, "ser_std_ns": 1937.166120859718, "ser_mad_ns": 1447.0, "ser_cv": 0.062102251634938724, "ser_min_ns": 28123.0, "ser_max_ns": 36322.0, "ser_p5_ns": 28577.75, "ser_p25_ns": 29615.0, "ser_p50_ns": 31237.5, "ser_p75_ns": 32348.5, "ser_p95_ns": 34739.35, "ser_p99_ns": 36096.67, "ser_ci_low_ns": 30782.021022727273, "ser_ci_high_ns": 31605.257670454546, "deser_mean_ns": 36677.806818181816, "deser_median_ns": 36536.0, "deser_std_ns": 2239.374357711539, "deser_mad_ns": 1687.0, "deser_cv": 0.06105529615804189, "deser_min_ns": 32546.0, "deser_max_ns": 44142.0, "deser_p5_ns": 33536.95, "deser_p25_ns": 34842.5, "deser_p50_ns": 36536.0, "deser_p75_ns": 38200.0, "deser_p95_ns": 40509.59999999999, "deser_p99_ns": 42101.84999999999, "deser_ci_low_ns": 36223.5, "deser_ci_high_ns": 37163.492897727265, "total_mean_ns": 67870.97727272728, "total_median_ns": 67833.0, "total_std_ns": 3987.6284138938554, "total_mad_ns": 2996.5, "total_cv": 0.058753071992322874, "total_min_ns": 60733.0, "total_max_ns": 80205.0, "total_p5_ns": 62199.9, "total_p25_ns": 64227.0, "total_p50_ns": 67833.0, "total_p75_ns": 70301.75, "total_p95_ns": 74758.65, "total_p99_ns": 76957.28999999998, "total_ci_low_ns": 67079.61164772727, "total_ci_high_ns": 68757.171875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.428419107753854}, {"serializer": "encoding/json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 1070.5824175824175, "avg_time_deser_ns": 4696.648351648351, "avg_time_total_ns": 5767.2307692307695, "median_size_bytes": 258.0, "avg_ops_per_sec": 173393.44306026088, "min_ops_per_sec": 125423.30364981813, "max_ops_per_sec": 254323.499491353, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 1070.5824175824175, "ser_median_ns": 1067.0, "ser_std_ns": 225.141341577738, "ser_mad_ns": 156.0, "ser_cv": 0.21029800030356444, "ser_min_ns": 593.0, "ser_max_ns": 1644.0, "ser_p5_ns": 719.5, "ser_p25_ns": 911.5, "ser_p50_ns": 1067.0, "ser_p75_ns": 1222.0, "ser_p95_ns": 1454.0, "ser_p99_ns": 1612.4999999999998, "ser_ci_low_ns": 1026.6134615384615, "ser_ci_high_ns": 1115.110714285714, "deser_mean_ns": 4696.648351648351, "deser_median_ns": 4640.0, "deser_std_ns": 650.6510649363515, "deser_mad_ns": 418.0, "deser_cv": 0.1385351885473812, "deser_min_ns": 3339.0, "deser_max_ns": 6364.0, "deser_p5_ns": 3821.5, "deser_p25_ns": 4223.5, "deser_p50_ns": 4640.0, "deser_p75_ns": 5058.5, "deser_p95_ns": 5976.0, "deser_p99_ns": 6326.2, "deser_ci_low_ns": 4566.553296703297, "deser_ci_high_ns": 4827.947527472527, "total_mean_ns": 5767.2307692307695, "total_median_ns": 5695.0, "total_std_ns": 852.5974050175939, "total_mad_ns": 598.0, "total_cv": 0.14783479960024437, "total_min_ns": 3932.0, "total_max_ns": 7973.0, "total_p5_ns": 4599.0, "total_p25_ns": 5163.0, "total_p50_ns": 5695.0, "total_p75_ns": 6309.5, "total_p95_ns": 7216.0, "total_p99_ns": 7825.399999999999, "total_ci_low_ns": 5590.068956043956, "total_ci_high_ns": 5938.442582417581, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.014254332220015}, {"serializer": "ugorji/json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 2112.0823529411764, "avg_time_deser_ns": 3075.1529411764704, "avg_time_total_ns": 5187.235294117647, "median_size_bytes": 257.0, "avg_ops_per_sec": 192780.92149280474, "min_ops_per_sec": 145560.40756914119, "max_ops_per_sec": 261301.28037627385, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 2112.0823529411764, "ser_median_ns": 2027.0, "ser_std_ns": 363.1964643394584, "ser_mad_ns": 190.0, "ser_cv": 0.1719613176227195, "ser_min_ns": 1418.0, "ser_max_ns": 3094.0, "ser_p5_ns": 1625.6, "ser_p25_ns": 1858.0, "ser_p50_ns": 2027.0, "ser_p75_ns": 2310.0, "ser_p95_ns": 2783.6, "ser_p99_ns": 3054.52, "ser_ci_low_ns": 2038.575, "ser_ci_high_ns": 2187.7358823529407, "deser_mean_ns": 3075.1529411764704, "deser_median_ns": 2993.0, "deser_std_ns": 399.8047888503526, "deser_mad_ns": 277.0, "deser_cv": 0.1300113511419039, "deser_min_ns": 2249.0, "deser_max_ns": 4100.0, "deser_p5_ns": 2500.0, "deser_p25_ns": 2772.0, "deser_p50_ns": 2993.0, "deser_p75_ns": 3298.0, "deser_p95_ns": 3789.6, "deser_p99_ns": 4003.3999999999996, "deser_ci_low_ns": 2994.2961764705883, "deser_ci_high_ns": 3158.5941176470587, "total_mean_ns": 5187.235294117647, "total_median_ns": 5024.0, "total_std_ns": 705.1265108890343, "total_mad_ns": 465.0, "total_cv": 0.13593493853819424, "total_min_ns": 3827.0, "total_max_ns": 6870.0, "total_p5_ns": 4265.8, "total_p25_ns": 4711.0, "total_p50_ns": 5024.0, "total_p75_ns": 5604.0, "total_p95_ns": 6636.2, "total_p99_ns": 6854.04, "total_ci_low_ns": 5044.705, "total_ci_high_ns": 5339.202941176471, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.069317181348333}, {"serializer": "kelindar/binary", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.0.19", "avg_time_ser_ns": 646.9010989010989, "avg_time_deser_ns": 1191.3076923076924, "avg_time_total_ns": 1838.2087912087911, "median_size_bytes": 104.0, "avg_ops_per_sec": 544007.8432779163, "min_ops_per_sec": 351741.11853675696, "max_ops_per_sec": 825082.5082508251, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 646.9010989010989, "ser_median_ns": 634.0, "ser_std_ns": 146.10612999118558, "ser_mad_ns": 94.0, "ser_cv": 0.22585543638645594, "ser_min_ns": 364.0, "ser_max_ns": 1012.0, "ser_p5_ns": 430.0, "ser_p25_ns": 543.0, "ser_p50_ns": 634.0, "ser_p75_ns": 744.0, "ser_p95_ns": 915.0, "ser_p99_ns": 1003.9, "ser_ci_low_ns": 616.7678571428571, "ser_ci_high_ns": 677.0236263736264, "deser_mean_ns": 1191.3076923076924, "deser_median_ns": 1150.0, "deser_std_ns": 225.2274254223787, "deser_mad_ns": 147.0, "deser_cv": 0.18905898692393122, "deser_min_ns": 841.0, "deser_max_ns": 1889.0, "deser_p5_ns": 920.5, "deser_p25_ns": 1022.5, "deser_p50_ns": 1150.0, "deser_p75_ns": 1340.5, "deser_p95_ns": 1645.5, "deser_p99_ns": 1826.8999999999996, "deser_ci_low_ns": 1145.164010989011, "deser_ci_high_ns": 1241.1706043956044, "total_mean_ns": 1838.2087912087911, "total_median_ns": 1803.0, "total_std_ns": 345.7341790863648, "total_mad_ns": 223.0, "total_cv": 0.1880821051122342, "total_min_ns": 1212.0, "total_max_ns": 2843.0, "total_p5_ns": 1379.0, "total_p25_ns": 1586.0, "total_p50_ns": 1803.0, "total_p75_ns": 2033.0, "total_p95_ns": 2516.5, "total_p99_ns": 2705.2999999999993, "total_ci_low_ns": 1767.4620879120878, "total_ci_high_ns": 1907.0046703296703, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "encoding/gob", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 3435.6363636363635, "avg_time_deser_ns": 12090.78409090909, "avg_time_total_ns": 15526.420454545454, "median_size_bytes": 283.0, "avg_ops_per_sec": 64406.34548881123, "min_ops_per_sec": 51969.649724560855, "max_ops_per_sec": 80340.64433196755, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 3435.6363636363635, "ser_median_ns": 3394.5, "ser_std_ns": 481.8450216297596, "ser_mad_ns": 316.5, "ser_cv": 0.1402491330950295, "ser_min_ns": 2512.0, "ser_max_ns": 4765.0, "ser_p5_ns": 2732.85, "ser_p25_ns": 3125.25, "ser_p50_ns": 3394.5, "ser_p75_ns": 3732.25, "ser_p95_ns": 4236.5, "ser_p99_ns": 4630.15, "ser_ci_low_ns": 3335.590056818182, "ser_ci_high_ns": 3538.6903409090905, "deser_mean_ns": 12090.78409090909, "deser_median_ns": 12066.0, "deser_std_ns": 946.769272999349, "deser_mad_ns": 718.5, "deser_cv": 0.07830503513094846, "deser_min_ns": 9935.0, "deser_max_ns": 14632.0, "deser_p5_ns": 10760.35, "deser_p25_ns": 11327.25, "deser_p50_ns": 12066.0, "deser_p75_ns": 12754.5, "deser_p95_ns": 13745.55, "deser_p99_ns": 14409.279999999999, "deser_ci_low_ns": 11894.32784090909, "deser_ci_high_ns": 12282.08465909091, "total_mean_ns": 15526.420454545454, "total_median_ns": 15310.0, "total_std_ns": 1383.6279790479769, "total_mad_ns": 957.5, "total_cv": 0.08911442164654966, "total_min_ns": 12447.0, "total_max_ns": 19242.0, "total_p5_ns": 13509.4, "total_p25_ns": 14560.5, "total_p50_ns": 15310.0, "total_p75_ns": 16386.25, "total_p95_ns": 17897.8, "total_p99_ns": 19154.13, "total_ci_low_ns": 15250.169602272728, "total_ci_high_ns": 15808.363920454545, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.618093709784736}, {"serializer": "mongo-bson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.17.9", "avg_time_ser_ns": 2382.9662921348313, "avg_time_deser_ns": 3255.14606741573, "avg_time_total_ns": 5638.112359550561, "median_size_bytes": 291.0, "avg_ops_per_sec": 177364.32625470316, "min_ops_per_sec": 133067.1989354624, "max_ops_per_sec": 265463.2333421821, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 2382.9662921348313, "ser_median_ns": 2348.0, "ser_std_ns": 446.0480113130455, "ser_mad_ns": 321.0, "ser_cv": 0.1871818383605602, "ser_min_ns": 1401.0, "ser_max_ns": 3513.0, "ser_p5_ns": 1727.0, "ser_p25_ns": 2101.0, "ser_p50_ns": 2348.0, "ser_p75_ns": 2694.0, "ser_p95_ns": 3220.2, "ser_p99_ns": 3375.7200000000007, "ser_ci_low_ns": 2291.6629213483147, "ser_ci_high_ns": 2478.9758426966287, "deser_mean_ns": 3255.14606741573, "deser_median_ns": 3239.0, "deser_std_ns": 441.2703137369377, "deser_mad_ns": 325.0, "deser_cv": 0.13556083339979377, "deser_min_ns": 2366.0, "deser_max_ns": 4251.0, "deser_p5_ns": 2600.2, "deser_p25_ns": 2909.0, "deser_p50_ns": 3239.0, "deser_p75_ns": 3547.0, "deser_p95_ns": 3993.8, "deser_p99_ns": 4240.4400000000005, "deser_ci_low_ns": 3159.449438202247, "deser_ci_high_ns": 3343.9030898876404, "total_mean_ns": 5638.112359550561, "total_median_ns": 5608.0, "total_std_ns": 855.2589379060781, "total_mad_ns": 638.0, "total_cv": 0.15169242529502455, "total_min_ns": 3767.0, "total_max_ns": 7515.0, "total_p5_ns": 4396.6, "total_p25_ns": 4970.0, "total_p50_ns": 5608.0, "total_p75_ns": 6226.0, "total_p95_ns": 7189.0, "total_p99_ns": 7466.6, "total_ci_low_ns": 5467.166853932585, "total_ci_high_ns": 5812.189044943821, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.824357595087324}, {"serializer": "fxamacker/cbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "2.9.2", "avg_time_ser_ns": 917.1111111111111, "avg_time_deser_ns": 2206.511111111111, "avg_time_total_ns": 3123.6222222222223, "median_size_bytes": 199.0, "avg_ops_per_sec": 320141.1466744449, "min_ops_per_sec": 223064.9118893598, "max_ops_per_sec": 451059.99097880017, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 917.1111111111111, "ser_median_ns": 877.5, "ser_std_ns": 199.35989952364395, "ser_mad_ns": 121.5, "ser_cv": 0.21737813129546832, "ser_min_ns": 584.0, "ser_max_ns": 1424.0, "ser_p5_ns": 624.7, "ser_p25_ns": 795.5, "ser_p50_ns": 877.5, "ser_p75_ns": 1033.0, "ser_p95_ns": 1289.35, "ser_p99_ns": 1422.22, "ser_ci_low_ns": 876.1955555555556, "ser_ci_high_ns": 958.7230555555554, "deser_mean_ns": 2206.511111111111, "deser_median_ns": 2113.5, "deser_std_ns": 323.39533827650683, "deser_mad_ns": 197.5, "deser_cv": 0.146564110485561, "deser_min_ns": 1627.0, "deser_max_ns": 3059.0, "deser_p5_ns": 1787.9, "deser_p25_ns": 1979.0, "deser_p50_ns": 2113.5, "deser_p75_ns": 2418.25, "deser_p95_ns": 2769.95, "deser_p99_ns": 2959.3199999999997, "deser_ci_low_ns": 2142.1625, "deser_ci_high_ns": 2278.2602777777774, "total_mean_ns": 3123.6222222222223, "total_median_ns": 3005.0, "total_std_ns": 507.26403332054224, "total_mad_ns": 308.5, "total_cv": 0.16239608929394223, "total_min_ns": 2217.0, "total_max_ns": 4483.0, "total_p5_ns": 2443.0, "total_p25_ns": 2755.25, "total_p50_ns": 3005.0, "total_p75_ns": 3472.25, "total_p95_ns": 4011.45, "total_p99_ns": 4353.95, "total_ci_low_ns": 3021.8975, "total_ci_high_ns": 3227.53, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.9759462759462759, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.951835423641745}, {"serializer": "linkedin/goavro", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "2.15.0", "avg_time_ser_ns": 870.7954545454545, "avg_time_deser_ns": 1510.8295454545455, "avg_time_total_ns": 2381.625, "median_size_bytes": 105.0, "avg_ops_per_sec": 419881.3835091587, "min_ops_per_sec": 314663.3102580239, "max_ops_per_sec": 590318.772136954, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 870.7954545454545, "ser_median_ns": 865.5, "ser_std_ns": 194.16530219584166, "ser_mad_ns": 130.0, "ser_cv": 0.22297463908696422, "ser_min_ns": 481.0, "ser_max_ns": 1461.0, "ser_p5_ns": 586.05, "ser_p25_ns": 730.5, "ser_p50_ns": 865.5, "ser_p75_ns": 986.25, "ser_p95_ns": 1167.8499999999997, "ser_p99_ns": 1442.73, "ser_ci_low_ns": 831.2582386363637, "ser_ci_high_ns": 912.2627840909091, "deser_mean_ns": 1510.8295454545455, "deser_median_ns": 1487.5, "deser_std_ns": 193.07554483565264, "deser_mad_ns": 113.0, "deser_cv": 0.12779439309784232, "deser_min_ns": 1153.0, "deser_max_ns": 2075.0, "deser_p5_ns": 1221.75, "deser_p25_ns": 1390.5, "deser_p50_ns": 1487.5, "deser_p75_ns": 1623.75, "deser_p95_ns": 1871.9999999999995, "deser_p99_ns": 2050.64, "deser_ci_low_ns": 1473.1210227272727, "deser_ci_high_ns": 1552.6164772727273, "total_mean_ns": 2381.625, "total_median_ns": 2391.0, "total_std_ns": 326.0577944856212, "total_mad_ns": 208.0, "total_cv": 0.13690559785256753, "total_min_ns": 1694.0, "total_max_ns": 3178.0, "total_p5_ns": 1830.75, "total_p25_ns": 2172.0, "total_p50_ns": 2391.0, "total_p75_ns": 2596.25, "total_p95_ns": 2910.1499999999996, "total_p99_ns": 3131.89, "total_ci_low_ns": 2312.886647727273, "total_ci_high_ns": 2450.2309659090906, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.7420079920079921, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.609457485344243}, {"serializer": "hamba/avro", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "2.31.0", "avg_time_ser_ns": 896.7173913043479, "avg_time_deser_ns": 969.6413043478261, "avg_time_total_ns": 1866.358695652174, "median_size_bytes": 107.0, "avg_ops_per_sec": 535802.6848373663, "min_ops_per_sec": 336473.7550471063, "max_ops_per_sec": 1001001.001001001, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 896.7173913043479, "ser_median_ns": 850.5, "ser_std_ns": 238.69578441274706, "ser_mad_ns": 150.5, "ser_cv": 0.26618841870072885, "ser_min_ns": 443.0, "ser_max_ns": 1555.0, "ser_p5_ns": 587.15, "ser_p25_ns": 725.5, "ser_p50_ns": 850.5, "ser_p75_ns": 1027.0, "ser_p95_ns": 1381.6, "ser_p99_ns": 1431.2400000000005, "ser_ci_low_ns": 851.6277173913044, "ser_ci_high_ns": 946.046195652174, "deser_mean_ns": 969.6413043478261, "deser_median_ns": 955.0, "deser_std_ns": 205.77858481268345, "deser_mad_ns": 133.0, "deser_cv": 0.21222134813150176, "deser_min_ns": 502.0, "deser_max_ns": 1515.0, "deser_p5_ns": 689.5, "deser_p25_ns": 819.5, "deser_p50_ns": 955.0, "deser_p75_ns": 1072.0, "deser_p95_ns": 1380.15, "deser_p99_ns": 1432.1900000000003, "deser_ci_low_ns": 930.7554347826087, "deser_ci_high_ns": 1011.0190217391304, "total_mean_ns": 1866.358695652174, "total_median_ns": 1772.0, "total_std_ns": 402.97221515545084, "total_mad_ns": 226.5, "total_cv": 0.21591359479515143, "total_min_ns": 999.0, "total_max_ns": 2972.0, "total_p5_ns": 1298.25, "total_p25_ns": 1582.25, "total_p50_ns": 1772.0, "total_p75_ns": 2105.0, "total_p95_ns": 2613.4, "total_p99_ns": 2800.9200000000005, "total_ci_low_ns": 1785.664402173913, "total_ci_high_ns": 1943.9508152173912, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.02460582895365504, "effect_vs_fastest_cliffs_label": "negligible", "effect_vs_fastest_hedges_g": 0.0746348847421711}, {"serializer": "jsoniter", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.1.12", "avg_time_ser_ns": 1183.0106382978724, "avg_time_deser_ns": 1699.4468085106382, "avg_time_total_ns": 2882.4574468085107, "median_size_bytes": 258.0, "avg_ops_per_sec": 346926.1969876472, "min_ops_per_sec": 217155.26601520088, "max_ops_per_sec": 549752.6113249038, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 1183.0106382978724, "ser_median_ns": 1149.0, "ser_std_ns": 290.3003448296098, "ser_mad_ns": 176.0, "ser_cv": 0.24539115324211863, "ser_min_ns": 661.0, "ser_max_ns": 2000.0, "ser_p5_ns": 742.3, "ser_p25_ns": 980.25, "ser_p50_ns": 1149.0, "ser_p75_ns": 1365.25, "ser_p95_ns": 1701.4, "ser_p99_ns": 1899.5599999999993, "ser_ci_low_ns": 1129.2010638297872, "ser_ci_high_ns": 1243.054255319149, "deser_mean_ns": 1699.4468085106382, "deser_median_ns": 1629.0, "deser_std_ns": 366.44087721634065, "deser_mad_ns": 231.0, "deser_cv": 0.21562362257014814, "deser_min_ns": 1130.0, "deser_max_ns": 2635.0, "deser_p5_ns": 1174.6, "deser_p25_ns": 1437.25, "deser_p50_ns": 1629.0, "deser_p75_ns": 1963.25, "deser_p95_ns": 2392.2999999999993, "deser_p99_ns": 2607.1, "deser_ci_low_ns": 1627.4007978723405, "deser_ci_high_ns": 1774.2124999999999, "total_mean_ns": 2882.4574468085107, "total_median_ns": 2782.0, "total_std_ns": 638.741162258472, "total_mad_ns": 439.0, "total_cv": 0.22159604228180138, "total_min_ns": 1819.0, "total_max_ns": 4605.0, "total_p5_ns": 1963.5, "total_p25_ns": 2452.5, "total_p50_ns": 2782.0, "total_p75_ns": 3305.25, "total_p95_ns": 4053.95, "total_p99_ns": 4492.469999999999, "total_ci_low_ns": 2755.276595744681, "total_ci_high_ns": 3015.6622340425533, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.8766658873041852, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.0159260338169487}, {"serializer": "pelletier/go-toml", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "2.4.3", "avg_time_ser_ns": 2514.247191011236, "avg_time_deser_ns": 4844.550561797752, "avg_time_total_ns": 7358.797752808989, "median_size_bytes": 279.0, "avg_ops_per_sec": 135891.7629742279, "min_ops_per_sec": 91157.70282588879, "max_ops_per_sec": 193685.8415649816, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 2514.247191011236, "ser_median_ns": 2446.0, "ser_std_ns": 398.6889674266166, "ser_mad_ns": 237.0, "ser_cv": 0.15857190528122378, "ser_min_ns": 1861.0, "ser_max_ns": 3781.0, "ser_p5_ns": 1993.2, "ser_p25_ns": 2234.0, "ser_p50_ns": 2446.0, "ser_p75_ns": 2749.0, "ser_p95_ns": 3300.9999999999995, "ser_p99_ns": 3616.440000000001, "ser_ci_low_ns": 2434.9280898876405, "ser_ci_high_ns": 2595.43202247191, "deser_mean_ns": 4844.550561797752, "deser_median_ns": 4765.0, "deser_std_ns": 859.228750514034, "deser_mad_ns": 599.0, "deser_cv": 0.17735984784421052, "deser_min_ns": 3277.0, "deser_max_ns": 7376.0, "deser_p5_ns": 3654.6, "deser_p25_ns": 4221.0, "deser_p50_ns": 4765.0, "deser_p75_ns": 5456.0, "deser_p95_ns": 6374.999999999998, "deser_p99_ns": 6799.600000000003, "deser_ci_low_ns": 4674.550280898876, "deser_ci_high_ns": 5012.63202247191, "total_mean_ns": 7358.797752808989, "total_median_ns": 7273.0, "total_std_ns": 1243.1456359846259, "total_mad_ns": 862.0, "total_cv": 0.16893325210766857, "total_min_ns": 5163.0, "total_max_ns": 10970.0, "total_p5_ns": 5671.4, "total_p25_ns": 6466.0, "total_p50_ns": 7273.0, "total_p75_ns": 8208.0, "total_p95_ns": 9493.8, "total_p99_ns": 10558.160000000002, "total_ci_low_ns": 7106.05308988764, "total_ci_high_ns": 7618.464606741573, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.054300881539739}, {"serializer": "sonic", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "1.15.2", "avg_time_ser_ns": 998.1868131868132, "avg_time_deser_ns": 1734.8351648351647, "avg_time_total_ns": 2733.021978021978, "median_size_bytes": 258.0, "avg_ops_per_sec": 365895.3378500633, "min_ops_per_sec": 210614.99578770009, "max_ops_per_sec": 745156.4828614009, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 998.1868131868132, "ser_median_ns": 994.0, "ser_std_ns": 280.2611049276851, "ser_mad_ns": 198.0, "ser_cv": 0.2807701937405113, "ser_min_ns": 443.0, "ser_max_ns": 1793.0, "ser_p5_ns": 619.0, "ser_p25_ns": 785.0, "ser_p50_ns": 994.0, "ser_p75_ns": 1176.5, "ser_p95_ns": 1436.5, "ser_p99_ns": 1766.8999999999999, "ser_ci_low_ns": 942.0634615384615, "ser_ci_high_ns": 1056.8585164835165, "deser_mean_ns": 1734.8351648351647, "deser_median_ns": 1746.0, "deser_std_ns": 394.9678260802817, "deser_mad_ns": 295.0, "deser_cv": 0.22766879187499614, "deser_min_ns": 899.0, "deser_max_ns": 2955.0, "deser_p5_ns": 1115.5, "deser_p25_ns": 1430.0, "deser_p50_ns": 1746.0, "deser_p75_ns": 1995.5, "deser_p95_ns": 2344.0, "deser_p99_ns": 2728.1999999999985, "deser_ci_low_ns": 1654.073076923077, "deser_ci_high_ns": 1810.8016483516483, "total_mean_ns": 2733.021978021978, "total_median_ns": 2727.0, "total_std_ns": 656.7930500718705, "total_mad_ns": 488.0, "total_cv": 0.2403175149536206, "total_min_ns": 1342.0, "total_max_ns": 4748.0, "total_p5_ns": 1747.5, "total_p25_ns": 2236.0, "total_p50_ns": 2727.0, "total_p75_ns": 3198.5, "total_p95_ns": 3755.5, "total_p99_ns": 4475.299999999998, "total_ci_low_ns": 2597.189835164835, "total_ci_high_ns": 2869.9071428571424, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.7828764641951456, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.697819353489166}, {"serializer": "shamaton/msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "go", "serializer_version": "3.1.2", "avg_time_ser_ns": 1158.5111111111112, "avg_time_deser_ns": 2020.5444444444445, "avg_time_total_ns": 3179.0555555555557, "median_size_bytes": 196.0, "avg_ops_per_sec": 314558.83123918704, "min_ops_per_sec": 212089.07741251326, "max_ops_per_sec": 491159.1355599214, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 1158.5111111111112, "ser_median_ns": 1147.5, "ser_std_ns": 248.33903268728204, "ser_mad_ns": 164.5, "ser_cv": 0.214360510059419, "ser_min_ns": 656.0, "ser_max_ns": 1843.0, "ser_p5_ns": 776.3, "ser_p25_ns": 993.0, "ser_p50_ns": 1147.5, "ser_p75_ns": 1326.0, "ser_p95_ns": 1570.7, "ser_p99_ns": 1744.21, "ser_ci_low_ns": 1106.8580555555554, "ser_ci_high_ns": 1208.9786111111111, "deser_mean_ns": 2020.5444444444445, "deser_median_ns": 2017.0, "deser_std_ns": 309.374147547975, "deser_mad_ns": 228.5, "deser_cv": 0.15311425017084365, "deser_min_ns": 1363.0, "deser_max_ns": 2872.0, "deser_p5_ns": 1559.55, "deser_p25_ns": 1791.75, "deser_p50_ns": 2017.0, "deser_p75_ns": 2258.0, "deser_p95_ns": 2525.5, "deser_p99_ns": 2694.89, "deser_ci_low_ns": 1956.4652777777778, "deser_ci_high_ns": 2082.757222222222, "total_mean_ns": 3179.0555555555557, "total_median_ns": 3161.0, "total_std_ns": 543.9049892475151, "total_mad_ns": 390.0, "total_cv": 0.17109011772286095, "total_min_ns": 2036.0, "total_max_ns": 4715.0, "total_p5_ns": 2384.45, "total_p25_ns": 2789.25, "total_p50_ns": 3161.0, "total_p75_ns": 3569.75, "total_p95_ns": 4037.8999999999996, "total_p99_ns": 4319.84, "total_ci_low_ns": 3066.3147222222224, "total_ci_high_ns": 3298.401388888889, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "kelindar/binary", "effect_vs_fastest_cliffs_delta": 0.9653235653235653, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.9333831188280026}, {"serializer": "shamaton/msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "3.1.2", "avg_time_ser_ns": 55631.819277108436, "avg_time_deser_ns": 65536.49397590362, "avg_time_total_ns": 121168.31325301205, "median_size_bytes": 19548.0, "avg_ops_per_sec": 8252.982757232048, "min_ops_per_sec": 6791.40208496044, "max_ops_per_sec": 9229.093795280241, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 55631.819277108436, "ser_median_ns": 54705.0, "ser_std_ns": 4427.58302767333, "ser_mad_ns": 2493.0, "ser_cv": 0.07958724135227421, "ser_min_ns": 48778.0, "ser_max_ns": 69693.0, "ser_p5_ns": 50472.5, "ser_p25_ns": 52384.5, "ser_p50_ns": 54705.0, "ser_p75_ns": 57390.0, "ser_p95_ns": 65314.39999999999, "ser_p99_ns": 68532.69999999998, "ser_ci_low_ns": 54719.543975903616, "ser_ci_high_ns": 56616.39427710843, "deser_mean_ns": 65536.49397590362, "deser_median_ns": 64163.0, "deser_std_ns": 4689.853774238996, "deser_mad_ns": 2597.0, "deser_cv": 0.0715609500862734, "deser_min_ns": 58812.0, "deser_max_ns": 77713.0, "deser_p5_ns": 60408.1, "deser_p25_ns": 62222.5, "deser_p50_ns": 64163.0, "deser_p75_ns": 67964.0, "deser_p95_ns": 76114.2, "deser_p99_ns": 77580.98, "deser_ci_low_ns": 64580.825, "deser_ci_high_ns": 66601.8843373494, "total_mean_ns": 121168.31325301205, "total_median_ns": 119487.0, "total_std_ns": 8727.955750552515, "total_mad_ns": 5608.0, "total_cv": 0.07203166831519421, "total_min_ns": 108353.0, "total_max_ns": 147245.0, "total_p5_ns": 111265.2, "total_p25_ns": 114428.0, "total_p50_ns": 119487.0, "total_p75_ns": 126702.5, "total_p95_ns": 136845.5, "total_p99_ns": 146042.87999999998, "total_ci_low_ns": 119316.86295180723, "total_ci_high_ns": 123075.9126506024, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.564389902193223}, {"serializer": "segmentio/encoding/json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "0.5.4", "avg_time_ser_ns": 38049.858695652176, "avg_time_deser_ns": 69186.75, "avg_time_total_ns": 107236.60869565218, "median_size_bytes": 25746.0, "avg_ops_per_sec": 9325.173671223569, "min_ops_per_sec": 7328.208472874637, "max_ops_per_sec": 11674.877997524925, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 38049.858695652176, "ser_median_ns": 37181.5, "ser_std_ns": 6381.663878561339, "ser_mad_ns": 4369.5, "ser_cv": 0.16771846459683565, "ser_min_ns": 27026.0, "ser_max_ns": 59101.0, "ser_p5_ns": 30118.05, "ser_p25_ns": 32910.25, "ser_p50_ns": 37181.5, "ser_p75_ns": 42169.75, "ser_p95_ns": 48511.600000000006, "ser_p99_ns": 59026.38, "ser_ci_low_ns": 36812.220923913046, "ser_ci_high_ns": 39367.133967391295, "deser_mean_ns": 69186.75, "deser_median_ns": 68045.0, "deser_std_ns": 5142.516873473149, "deser_mad_ns": 3654.5, "deser_cv": 0.07432805954135942, "deser_min_ns": 58628.0, "deser_max_ns": 83131.0, "deser_p5_ns": 62724.65, "deser_p25_ns": 65380.75, "deser_p50_ns": 68045.0, "deser_p75_ns": 73284.75, "deser_p95_ns": 76930.05, "deser_p99_ns": 82678.73, "deser_ci_low_ns": 68153.05706521739, "deser_ci_high_ns": 70233.9027173913, "total_mean_ns": 107236.60869565218, "total_median_ns": 106262.0, "total_std_ns": 9863.851878913954, "total_mad_ns": 7014.5, "total_cv": 0.09198213183809753, "total_min_ns": 85654.0, "total_max_ns": 136459.0, "total_p5_ns": 92885.5, "total_p25_ns": 100054.0, "total_p50_ns": 106262.0, "total_p75_ns": 113340.75, "total_p95_ns": 123828.3, "total_p99_ns": 130818.82000000002, "total_ci_low_ns": 105266.9054347826, "total_ci_high_ns": 109300.87010869564, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.919672320910288}, {"serializer": "linkedin/goavro", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "2.15.0", "avg_time_ser_ns": 38241.409638554214, "avg_time_deser_ns": 103861.07228915663, "avg_time_total_ns": 142102.48192771085, "median_size_bytes": 10448.0, "avg_ops_per_sec": 7037.174765946111, "min_ops_per_sec": 5830.8697908467, "max_ops_per_sec": 8072.002260160632, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 38241.409638554214, "ser_median_ns": 36969.0, "ser_std_ns": 6954.765321979485, "ser_mad_ns": 4965.0, "ser_cv": 0.18186477401627557, "ser_min_ns": 28362.0, "ser_max_ns": 58923.0, "ser_p5_ns": 29488.0, "ser_p25_ns": 32482.0, "ser_p50_ns": 36969.0, "ser_p75_ns": 42164.5, "ser_p95_ns": 51996.1, "ser_p99_ns": 55537.21999999997, "ser_ci_low_ns": 36832.15843373494, "ser_ci_high_ns": 39773.03945783133, "deser_mean_ns": 103861.07228915663, "deser_median_ns": 101385.0, "deser_std_ns": 7438.556603009348, "deser_mad_ns": 3291.0, "deser_cv": 0.07162025616585083, "deser_min_ns": 95206.0, "deser_max_ns": 127129.0, "deser_p5_ns": 96152.9, "deser_p25_ns": 98558.0, "deser_p50_ns": 101385.0, "deser_p75_ns": 105575.0, "deser_p95_ns": 118645.99999999999, "deser_p99_ns": 126919.9, "deser_ci_low_ns": 102323.74578313253, "deser_ci_high_ns": 105491.47138554217, "total_mean_ns": 142102.48192771085, "total_median_ns": 139574.0, "total_std_ns": 11825.280374504657, "total_mad_ns": 8342.0, "total_cv": 0.08321656465170195, "total_min_ns": 123885.0, "total_max_ns": 171501.0, "total_p5_ns": 127143.4, "total_p25_ns": 133694.0, "total_p50_ns": 139574.0, "total_p75_ns": 150979.5, "total_p95_ns": 162706.69999999998, "total_p99_ns": 170955.69999999998, "total_ci_low_ns": 139673.1090361446, "total_ci_high_ns": 144796.98493975904, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.849508169414825}, {"serializer": "jsoniter", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.1.12", "avg_time_ser_ns": 42927.45121951219, "avg_time_deser_ns": 78083.87804878049, "avg_time_total_ns": 121011.32926829268, "median_size_bytes": 25746.0, "avg_ops_per_sec": 8263.689078093776, "min_ops_per_sec": 6251.680139037367, "max_ops_per_sec": 9654.18702091097, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 42927.45121951219, "ser_median_ns": 42117.0, "ser_std_ns": 6695.037416158623, "ser_mad_ns": 4905.5, "ser_cv": 0.1559616801361705, "ser_min_ns": 32569.0, "ser_max_ns": 59982.0, "ser_p5_ns": 33683.5, "ser_p25_ns": 37655.75, "ser_p50_ns": 42117.0, "ser_p75_ns": 47627.0, "ser_p95_ns": 53943.3, "ser_p99_ns": 59285.4, "ser_ci_low_ns": 41528.34695121951, "ser_ci_high_ns": 44305.979878048776, "deser_mean_ns": 78083.87804878049, "deser_median_ns": 76610.0, "deser_std_ns": 6178.30898873251, "deser_mad_ns": 2871.5, "deser_cv": 0.07912400284310678, "deser_min_ns": 70144.0, "deser_max_ns": 100666.0, "deser_p5_ns": 71104.1, "deser_p25_ns": 74096.0, "deser_p50_ns": 76610.0, "deser_p75_ns": 81417.25, "deser_p95_ns": 89361.0, "deser_p99_ns": 100106.29, "deser_ci_low_ns": 76821.48902439023, "deser_ci_high_ns": 79465.11524390244, "total_mean_ns": 121011.32926829268, "total_median_ns": 118804.5, "total_std_ns": 11947.84495993065, "total_mad_ns": 7498.5, "total_cv": 0.09873327590213668, "total_min_ns": 103582.0, "total_max_ns": 159957.0, "total_p5_ns": 104264.45, "total_p25_ns": 113066.0, "total_p50_ns": 118804.5, "total_p75_ns": 129018.75, "total_p95_ns": 141712.95, "total_p99_ns": 159820.11, "total_ci_low_ns": 118430.92896341463, "total_ci_high_ns": 123654.56158536585, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.520831036956114}, {"serializer": "goccy/go-json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "0.10.6", "avg_time_ser_ns": 36571.69411764706, "avg_time_deser_ns": 56324.32941176471, "avg_time_total_ns": 92896.02352941176, "median_size_bytes": 25746.0, "avg_ops_per_sec": 10764.723418795107, "min_ops_per_sec": 8219.358232509207, "max_ops_per_sec": 13850.607349132259, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 36571.69411764706, "ser_median_ns": 36420.0, "ser_std_ns": 7188.308543381116, "ser_mad_ns": 5274.0, "ser_cv": 0.19655388454954068, "ser_min_ns": 24893.0, "ser_max_ns": 58127.0, "ser_p5_ns": 26455.6, "ser_p25_ns": 30653.0, "ser_p50_ns": 36420.0, "ser_p75_ns": 41237.0, "ser_p95_ns": 47817.399999999994, "ser_p99_ns": 56783.84, "ser_ci_low_ns": 35122.06705882353, "ser_ci_high_ns": 38162.63647058824, "deser_mean_ns": 56324.32941176471, "deser_median_ns": 56562.0, "deser_std_ns": 4739.45565838685, "deser_mad_ns": 2770.0, "deser_cv": 0.084145798234695, "deser_min_ns": 46788.0, "deser_max_ns": 70288.0, "deser_p5_ns": 48242.2, "deser_p25_ns": 53027.0, "deser_p50_ns": 56562.0, "deser_p75_ns": 59099.0, "deser_p95_ns": 63463.6, "deser_p99_ns": 68273.68, "deser_ci_low_ns": 55301.55117647059, "deser_ci_high_ns": 57307.55705882353, "total_mean_ns": 92896.02352941176, "total_median_ns": 93759.0, "total_std_ns": 10935.616832142565, "total_mad_ns": 7178.0, "total_cv": 0.11771889061193502, "total_min_ns": 72199.0, "total_max_ns": 121664.0, "total_p5_ns": 74944.0, "total_p25_ns": 85179.0, "total_p50_ns": 93759.0, "total_p75_ns": 99594.0, "total_p95_ns": 109388.4, "total_p99_ns": 117680.71999999999, "total_ci_low_ns": 90673.9655882353, "total_ci_high_ns": 95198.70999999999, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.806786307577362}, {"serializer": "protobuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.36.11", "avg_time_ser_ns": 37485.753086419754, "avg_time_deser_ns": 68761.04938271605, "avg_time_total_ns": 106246.8024691358, "median_size_bytes": 12477.0, "avg_ops_per_sec": 9412.047955894912, "min_ops_per_sec": 7789.860717290375, "max_ops_per_sec": 10649.627263045793, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 37485.753086419754, "ser_median_ns": 36955.0, "ser_std_ns": 3525.4346488442534, "ser_mad_ns": 2059.0, "ser_cv": 0.09404732087725988, "ser_min_ns": 30910.0, "ser_max_ns": 50030.0, "ser_p5_ns": 32547.0, "ser_p25_ns": 34945.0, "ser_p50_ns": 36955.0, "ser_p75_ns": 39023.0, "ser_p95_ns": 44221.0, "ser_p99_ns": 46814.80000000001, "ser_ci_low_ns": 36728.69197530864, "ser_ci_high_ns": 38291.6524691358, "deser_mean_ns": 68761.04938271605, "deser_median_ns": 67937.0, "deser_std_ns": 4081.5116804354316, "deser_mad_ns": 2682.0, "deser_cv": 0.059357902723651136, "deser_min_ns": 61922.0, "deser_max_ns": 84151.0, "deser_p5_ns": 64025.0, "deser_p25_ns": 65542.0, "deser_p50_ns": 67937.0, "deser_p75_ns": 71476.0, "deser_p95_ns": 75538.0, "deser_p99_ns": 79524.60000000002, "deser_ci_low_ns": 67912.53179012347, "deser_ci_high_ns": 69649.90802469135, "total_mean_ns": 106246.8024691358, "total_median_ns": 105981.0, "total_std_ns": 7163.176396368711, "total_mad_ns": 4741.0, "total_cv": 0.0674201597591568, "total_min_ns": 93900.0, "total_max_ns": 128372.0, "total_p5_ns": 96469.0, "total_p25_ns": 100823.0, "total_p50_ns": 105981.0, "total_p75_ns": 110155.0, "total_p95_ns": 119539.0, "total_p99_ns": 126178.40000000001, "total_ci_low_ns": 104753.01820987654, "total_ci_high_ns": 107873.49043209876, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.596003286238894}, {"serializer": "fxamacker/cbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "2.9.2", "avg_time_ser_ns": 41015.94047619047, "avg_time_deser_ns": 125385.72619047618, "avg_time_total_ns": 166401.66666666666, "median_size_bytes": 19847.0, "avg_ops_per_sec": 6009.555192756483, "min_ops_per_sec": 5069.631387101844, "max_ops_per_sec": 6859.698584844182, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 41015.94047619047, "ser_median_ns": 40145.5, "ser_std_ns": 5407.225066901236, "ser_mad_ns": 3626.5, "ser_cv": 0.13183228286670887, "ser_min_ns": 32315.0, "ser_max_ns": 59631.0, "ser_p5_ns": 34115.95, "ser_p25_ns": 37323.0, "ser_p50_ns": 40145.5, "ser_p75_ns": 44162.75, "ser_p95_ns": 49394.899999999994, "ser_p99_ns": 59541.36, "ser_ci_low_ns": 39893.96130952381, "ser_ci_high_ns": 42233.81458333333, "deser_mean_ns": 125385.72619047618, "deser_median_ns": 122338.5, "deser_std_ns": 8151.107902154087, "deser_mad_ns": 3315.0, "deser_cv": 0.06500826010906187, "deser_min_ns": 113464.0, "deser_max_ns": 150374.0, "deser_p5_ns": 116652.15, "deser_p25_ns": 119806.25, "deser_p50_ns": 122338.5, "deser_p75_ns": 129140.25, "deser_p95_ns": 142107.84999999998, "deser_p99_ns": 149596.29, "deser_ci_low_ns": 123725.96517857144, "deser_ci_high_ns": 127191.61904761904, "total_mean_ns": 166401.66666666666, "total_median_ns": 162871.5, "total_std_ns": 11501.378180732294, "total_mad_ns": 7355.5, "total_cv": 0.06911816696987587, "total_min_ns": 145779.0, "total_max_ns": 197253.0, "total_p5_ns": 152056.7, "total_p25_ns": 157298.5, "total_p50_ns": 162871.5, "total_p75_ns": 174681.0, "total_p95_ns": 189288.55, "total_p99_ns": 193472.35, "total_ci_low_ns": 163979.7880952381, "total_ci_high_ns": 168896.6148809524, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.736532658728837}, {"serializer": "kelindar/binary", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.0.19", "avg_time_ser_ns": 27139.90361445783, "avg_time_deser_ns": 43640.06024096385, "avg_time_total_ns": 70779.96385542168, "median_size_bytes": 10346.0, "avg_ops_per_sec": 14128.29204098839, "min_ops_per_sec": 12022.98795296607, "max_ops_per_sec": 16151.43586264819, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 27139.90361445783, "ser_median_ns": 26720.0, "ser_std_ns": 1991.8633733049078, "ser_mad_ns": 1412.0, "ser_cv": 0.07339242620757917, "ser_min_ns": 24142.0, "ser_max_ns": 32248.0, "ser_p5_ns": 24778.7, "ser_p25_ns": 25427.0, "ser_p50_ns": 26720.0, "ser_p75_ns": 28814.0, "ser_p95_ns": 30557.1, "ser_p99_ns": 31222.17999999999, "ser_ci_low_ns": 26719.894879518073, "ser_ci_high_ns": 27605.93313253012, "deser_mean_ns": 43640.06024096385, "deser_median_ns": 42295.0, "deser_std_ns": 3646.7088213941743, "deser_mad_ns": 1797.0, "deser_cv": 0.08356333151829837, "deser_min_ns": 37772.0, "deser_max_ns": 52926.0, "deser_p5_ns": 39670.4, "deser_p25_ns": 41112.0, "deser_p50_ns": 42295.0, "deser_p75_ns": 45448.5, "deser_p95_ns": 51022.999999999985, "deser_p99_ns": 52569.299999999996, "deser_ci_low_ns": 42926.66566265061, "deser_ci_high_ns": 44435.17138554217, "total_mean_ns": 70779.96385542168, "total_median_ns": 68887.0, "total_std_ns": 5306.601662645757, "total_mad_ns": 2945.0, "total_cv": 0.0749732180350538, "total_min_ns": 61914.0, "total_max_ns": 83174.0, "total_p5_ns": 64163.1, "total_p25_ns": 66810.0, "total_p50_ns": 68887.0, "total_p75_ns": 74767.5, "total_p95_ns": 79972.2, "total_p99_ns": 82627.06, "total_ci_low_ns": 69657.52018072289, "total_ci_high_ns": 71977.26054216867, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.9988660524450744, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.6190905809138894}, {"serializer": "hamba/avro", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "2.31.0", "avg_time_ser_ns": 24612.117647058825, "avg_time_deser_ns": 26376.894117647058, "avg_time_total_ns": 50989.01176470588, "median_size_bytes": 10626.0, "avg_ops_per_sec": 19612.0686671592, "min_ops_per_sec": 15749.519639650991, "max_ops_per_sec": 24729.826643915225, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 24612.117647058825, "ser_median_ns": 24106.0, "ser_std_ns": 3868.4444714706115, "ser_mad_ns": 2691.0, "ser_cv": 0.15717641720004108, "ser_min_ns": 17562.0, "ser_max_ns": 33157.0, "ser_p5_ns": 18845.8, "ser_p25_ns": 21641.0, "ser_p50_ns": 24106.0, "ser_p75_ns": 27202.0, "ser_p95_ns": 31624.6, "ser_p99_ns": 32993.2, "ser_ci_low_ns": 23855.245000000003, "ser_ci_high_ns": 25443.37205882353, "deser_mean_ns": 26376.894117647058, "deser_median_ns": 26148.0, "deser_std_ns": 2109.6225797833254, "deser_mad_ns": 1378.0, "deser_cv": 0.07997994647792572, "deser_min_ns": 22537.0, "deser_max_ns": 33458.0, "deser_p5_ns": 23534.2, "deser_p25_ns": 24881.0, "deser_p50_ns": 26148.0, "deser_p75_ns": 27767.0, "deser_p95_ns": 29949.2, "deser_p99_ns": 31186.639999999992, "deser_ci_low_ns": 25951.612647058824, "deser_ci_high_ns": 26825.60117647059, "total_mean_ns": 50989.01176470588, "total_median_ns": 50327.0, "total_std_ns": 5574.366258009189, "total_mad_ns": 3831.0, "total_cv": 0.10932485382797148, "total_min_ns": 40437.0, "total_max_ns": 63494.0, "total_p5_ns": 42298.2, "total_p25_ns": 46965.0, "total_p50_ns": 50327.0, "total_p75_ns": 54262.0, "total_p95_ns": 60908.2, "total_p99_ns": 62471.719999999994, "total_ci_low_ns": 49897.779705882356, "total_ci_high_ns": 52138.038529411766, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "goccy/go-yaml", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.19.2", "avg_time_ser_ns": 3365654.186813187, "avg_time_deser_ns": 3665905.2527472526, "avg_time_total_ns": 7031559.439560439, "median_size_bytes": 25245.0, "avg_ops_per_sec": 142.2159634140151, "min_ops_per_sec": 120.16285912623097, "max_ops_per_sec": 160.8123467860366, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 3365654.186813187, "ser_median_ns": 3297686.0, "ser_std_ns": 528877.5425002972, "ser_mad_ns": 399082.0, "ser_cv": 0.15713959698309699, "ser_min_ns": 2692226.0, "ser_max_ns": 4902320.0, "ser_p5_ns": 2718945.5, "ser_p25_ns": 2921067.5, "ser_p50_ns": 3297686.0, "ser_p75_ns": 3710672.5, "ser_p95_ns": 4289919.5, "ser_p99_ns": 4716759.799999999, "ser_ci_low_ns": 3261108.7656593407, "ser_ci_high_ns": 3475784.466758242, "deser_mean_ns": 3665905.2527472526, "deser_median_ns": 3667054.0, "deser_std_ns": 551787.8598973944, "deser_mad_ns": 377909.0, "deser_cv": 0.1505188546495797, "deser_min_ns": 2826243.0, "deser_max_ns": 5131081.0, "deser_p5_ns": 2874206.5, "deser_p25_ns": 3221818.5, "deser_p50_ns": 3667054.0, "deser_p75_ns": 3983133.5, "deser_p95_ns": 4714456.5, "deser_p99_ns": 4950967.599999999, "deser_ci_low_ns": 3554907.394230769, "deser_ci_high_ns": 3784873.3085164833, "total_mean_ns": 7031559.439560439, "total_median_ns": 6967381.0, "total_std_ns": 542427.5495198969, "total_mad_ns": 409352.0, "total_cv": 0.07714185653727551, "total_min_ns": 6218428.0, "total_max_ns": 8322039.0, "total_p5_ns": 6331667.5, "total_p25_ns": 6636272.0, "total_p50_ns": 6967381.0, "total_p75_ns": 7393751.5, "total_p95_ns": 8081086.5, "total_p99_ns": 8273241.899999999, "total_ci_low_ns": 6919985.640384615, "total_ci_high_ns": 7142096.9417582415, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.81568110347051}, {"serializer": "mongo-bson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.17.9", "avg_time_ser_ns": 93403.92105263157, "avg_time_deser_ns": 192004.13157894736, "avg_time_total_ns": 285408.05263157893, "median_size_bytes": 29452.0, "avg_ops_per_sec": 3503.755380339101, "min_ops_per_sec": 2736.5621117502506, "max_ops_per_sec": 3843.138460592458, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 93403.92105263157, "ser_median_ns": 91465.5, "ser_std_ns": 9838.894775008228, "ser_mad_ns": 5862.5, "ser_cv": 0.1053370636278125, "ser_min_ns": 80866.0, "ser_max_ns": 128404.0, "ser_p5_ns": 82568.25, "ser_p25_ns": 86067.5, "ser_p50_ns": 91465.5, "ser_p75_ns": 98054.25, "ser_p95_ns": 110037.0, "ser_p99_ns": 126139.0, "ser_ci_low_ns": 91326.65953947368, "ser_ci_high_ns": 95739.51447368422, "deser_mean_ns": 192004.13157894736, "deser_median_ns": 188294.5, "deser_std_ns": 11677.452880192786, "deser_mad_ns": 6563.0, "deser_cv": 0.06081875834734997, "deser_min_ns": 175603.0, "deser_max_ns": 240038.0, "deser_p5_ns": 179120.25, "deser_p25_ns": 183811.5, "deser_p50_ns": 188294.5, "deser_p75_ns": 199189.5, "deser_p95_ns": 212538.0, "deser_p99_ns": 226856.75, "deser_ci_low_ns": 189544.41611842104, "deser_ci_high_ns": 194727.57730263157, "total_mean_ns": 285408.05263157893, "total_median_ns": 279887.5, "total_std_ns": 19825.97722309108, "total_mad_ns": 11531.0, "total_cv": 0.06946537436588583, "total_min_ns": 260204.0, "total_max_ns": 365422.0, "total_p5_ns": 262570.75, "total_p25_ns": 272246.0, "total_p50_ns": 279887.5, "total_p75_ns": 295420.75, "total_p95_ns": 323026.5, "total_p99_ns": 340394.5, "total_ci_low_ns": 281259.43914473685, "total_ci_high_ns": 289846.71282894735, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.422805778964655}, {"serializer": "pelletier/go-toml", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "2.4.3", "avg_time_ser_ns": 169980.3373493976, "avg_time_deser_ns": 354357.8313253012, "avg_time_total_ns": 524338.1686746988, "median_size_bytes": 31344.0, "avg_ops_per_sec": 1907.1661376999687, "min_ops_per_sec": 1596.0290796498311, "max_ops_per_sec": 2140.649216094257, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 169980.3373493976, "ser_median_ns": 168924.0, "ser_std_ns": 14007.592113266175, "ser_mad_ns": 10450.0, "ser_cv": 0.08240713209359811, "ser_min_ns": 148935.0, "ser_max_ns": 205528.0, "ser_p5_ns": 149727.2, "ser_p25_ns": 158011.0, "ser_p50_ns": 168924.0, "ser_p75_ns": 178802.5, "ser_p95_ns": 192785.29999999996, "ser_p99_ns": 201419.79999999996, "ser_ci_low_ns": 167105.50421686747, "ser_ci_high_ns": 172924.47771084338, "deser_mean_ns": 354357.8313253012, "deser_median_ns": 347578.0, "deser_std_ns": 25692.93737245433, "deser_mad_ns": 14730.0, "deser_cv": 0.07250562877744943, "deser_min_ns": 318093.0, "deser_max_ns": 441717.0, "deser_p5_ns": 326528.0, "deser_p25_ns": 334895.0, "deser_p50_ns": 347578.0, "deser_p75_ns": 364872.0, "deser_p95_ns": 406330.5, "deser_p99_ns": 439308.66, "deser_ci_low_ns": 349200.94578313257, "deser_ci_high_ns": 359971.9774096385, "total_mean_ns": 524338.1686746988, "total_median_ns": 521143.0, "total_std_ns": 35969.58847850036, "total_mad_ns": 24258.0, "total_cv": 0.06859998113319882, "total_min_ns": 467148.0, "total_max_ns": 626555.0, "total_p5_ns": 476276.1, "total_p25_ns": 496916.5, "total_p50_ns": 521143.0, "total_p75_ns": 544747.0, "total_p95_ns": 591369.3999999999, "total_p99_ns": 614887.2199999999, "total_ci_low_ns": 516896.1521084337, "total_ci_high_ns": 532226.5373493977, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.41390435510805}, {"serializer": "ugorji/msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 33901.02352941177, "avg_time_deser_ns": 73040.22352941177, "avg_time_total_ns": 106941.24705882353, "median_size_bytes": 19848.0, "avg_ops_per_sec": 9350.928921279039, "min_ops_per_sec": 7466.47552489323, "max_ops_per_sec": 10320.130446448844, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 33901.02352941177, "ser_median_ns": 33254.0, "ser_std_ns": 3030.1013340609375, "ser_mad_ns": 1854.0, "ser_cv": 0.08938082153867978, "ser_min_ns": 29579.0, "ser_max_ns": 43746.0, "ser_p5_ns": 30380.0, "ser_p25_ns": 31508.0, "ser_p50_ns": 33254.0, "ser_p75_ns": 35376.0, "ser_p95_ns": 39874.2, "ser_p99_ns": 41722.439999999995, "ser_ci_low_ns": 33294.03088235294, "ser_ci_high_ns": 34571.68058823529, "deser_mean_ns": 73040.22352941177, "deser_median_ns": 71302.0, "deser_std_ns": 5482.777509916785, "deser_mad_ns": 2804.0, "deser_cv": 0.07506517977329279, "deser_min_ns": 66698.0, "deser_max_ns": 92595.0, "deser_p5_ns": 67126.2, "deser_p25_ns": 69307.0, "deser_p50_ns": 71302.0, "deser_p75_ns": 75693.0, "deser_p95_ns": 84720.8, "deser_p99_ns": 87062.75999999998, "deser_ci_low_ns": 71912.11823529411, "deser_ci_high_ns": 74287.80441176471, "total_mean_ns": 106941.24705882353, "total_median_ns": 104719.0, "total_std_ns": 8082.239464385095, "total_mad_ns": 5022.0, "total_cv": 0.0755764467562214, "total_min_ns": 96898.0, "total_max_ns": 133932.0, "total_p5_ns": 97819.0, "total_p25_ns": 101136.0, "total_p50_ns": 104719.0, "total_p75_ns": 110747.0, "total_p95_ns": 123617.2, "total_p99_ns": 128713.07999999997, "total_ci_low_ns": 105348.23147058825, "total_ci_high_ns": 108685.41264705882, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.023364603204728}, {"serializer": "encoding/gob", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 39787.65060240964, "avg_time_deser_ns": 74490.0843373494, "avg_time_total_ns": 114277.73493975903, "median_size_bytes": 12423.0, "avg_ops_per_sec": 8750.610961331578, "min_ops_per_sec": 6566.246864617122, "max_ops_per_sec": 10682.961744313994, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 39787.65060240964, "ser_median_ns": 38281.0, "ser_std_ns": 6700.76790181495, "ser_mad_ns": 3479.0, "ser_cv": 0.16841325889720002, "ser_min_ns": 30750.0, "ser_max_ns": 61741.0, "ser_p5_ns": 32611.7, "ser_p25_ns": 35261.5, "ser_p50_ns": 38281.0, "ser_p75_ns": 43408.5, "ser_p95_ns": 55963.29999999997, "ser_p99_ns": 61230.13999999999, "ser_ci_low_ns": 38393.140963855425, "ser_ci_high_ns": 41276.46656626506, "deser_mean_ns": 74490.0843373494, "deser_median_ns": 72948.0, "deser_std_ns": 7022.180552528728, "deser_mad_ns": 4461.0, "deser_cv": 0.09427000405485915, "deser_min_ns": 62836.0, "deser_max_ns": 99901.0, "deser_p5_ns": 65285.5, "deser_p25_ns": 69372.5, "deser_p50_ns": 72948.0, "deser_p75_ns": 79493.0, "deser_p95_ns": 86311.0, "deser_p99_ns": 91555.03999999992, "deser_ci_low_ns": 72987.8828313253, "deser_ci_high_ns": 76006.62469879517, "total_mean_ns": 114277.73493975903, "total_median_ns": 111268.0, "total_std_ns": 12062.527855733628, "total_mad_ns": 8189.0, "total_cv": 0.10555448847575018, "total_min_ns": 93607.0, "total_max_ns": 152294.0, "total_p5_ns": 98514.7, "total_p25_ns": 105188.0, "total_p50_ns": 111268.0, "total_p75_ns": 122826.5, "total_p95_ns": 133412.19999999998, "total_p99_ns": 145955.39999999994, "total_ci_low_ns": 111870.9530120482, "total_ci_high_ns": 116907.7469879518, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.731399547271647}, {"serializer": "vmihailenco/msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "5.4.1", "avg_time_ser_ns": 55403.82558139535, "avg_time_deser_ns": 129460.86046511628, "avg_time_total_ns": 184864.68604651163, "median_size_bytes": 19548.0, "avg_ops_per_sec": 5409.36195758016, "min_ops_per_sec": 4429.207969030977, "max_ops_per_sec": 5952.522679111407, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 55403.82558139535, "ser_median_ns": 54420.0, "ser_std_ns": 4423.420433773635, "ser_mad_ns": 2495.5, "ser_cv": 0.07983962095316073, "ser_min_ns": 49577.0, "ser_max_ns": 69567.0, "ser_p5_ns": 50571.5, "ser_p25_ns": 52032.5, "ser_p50_ns": 54420.0, "ser_p75_ns": 57969.5, "ser_p95_ns": 64393.0, "ser_p99_ns": 69518.55, "ser_ci_low_ns": 54458.79244186047, "ser_ci_high_ns": 56377.13575581396, "deser_mean_ns": 129460.86046511628, "deser_median_ns": 126996.0, "deser_std_ns": 8148.5072485886, "deser_mad_ns": 4681.5, "deser_cv": 0.06294185917900837, "deser_min_ns": 118419.0, "deser_max_ns": 159138.0, "deser_p5_ns": 120657.25, "deser_p25_ns": 123155.5, "deser_p50_ns": 126996.0, "deser_p75_ns": 134438.0, "deser_p95_ns": 142725.25, "deser_p99_ns": 154939.00000000003, "deser_ci_low_ns": 127848.45087209302, "deser_ci_high_ns": 131319.90494186047, "total_mean_ns": 184864.68604651163, "total_median_ns": 182442.5, "total_std_ns": 11655.356796478382, "total_mad_ns": 7587.5, "total_cv": 0.06304804365689352, "total_min_ns": 167996.0, "total_max_ns": 225774.0, "total_p5_ns": 171761.0, "total_p25_ns": 175301.25, "total_p50_ns": 182442.5, "total_p75_ns": 190438.5, "total_p95_ns": 206142.5, "total_p99_ns": 220125.75000000003, "total_ci_low_ns": 182528.84186046512, "total_ci_high_ns": 187534.68691860465, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.562025704802815}, {"serializer": "encoding/json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 47483.98780487805, "avg_time_deser_ns": 268454.73170731706, "avg_time_total_ns": 315938.7195121951, "median_size_bytes": 25746.0, "avg_ops_per_sec": 3165.1707696479425, "min_ops_per_sec": 2742.897267525742, "max_ops_per_sec": 3429.6963689804543, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 47483.98780487805, "ser_median_ns": 47487.5, "ser_std_ns": 5079.4634267364445, "ser_mad_ns": 3973.5, "ser_cv": 0.10697213232403847, "ser_min_ns": 38613.0, "ser_max_ns": 63884.0, "ser_p5_ns": 39944.05, "ser_p25_ns": 43165.5, "ser_p50_ns": 47487.5, "ser_p75_ns": 51384.5, "ser_p95_ns": 56579.9, "ser_p99_ns": 59461.39999999999, "ser_ci_low_ns": 46468.751829268294, "ser_ci_high_ns": 48608.262195121955, "deser_mean_ns": 268454.73170731706, "deser_median_ns": 263118.0, "deser_std_ns": 15074.84796807131, "deser_mad_ns": 6679.0, "deser_cv": 0.05615415259100991, "deser_min_ns": 251960.0, "deser_max_ns": 318538.0, "deser_p5_ns": 253805.4, "deser_p25_ns": 257818.0, "deser_p50_ns": 263118.0, "deser_p75_ns": 272044.25, "deser_p95_ns": 301605.85, "deser_p99_ns": 308808.27999999997, "deser_ci_low_ns": 265258.99969512195, "deser_ci_high_ns": 271760.84603658534, "total_mean_ns": 315938.7195121951, "total_median_ns": 311302.5, "total_std_ns": 18016.736756826962, "total_mad_ns": 8932.0, "total_cv": 0.05702604854715037, "total_min_ns": 291571.0, "total_max_ns": 364578.0, "total_p5_ns": 295603.95, "total_p25_ns": 303268.25, "total_p50_ns": 311302.5, "total_p75_ns": 320861.75, "total_p95_ns": 354952.9, "total_p99_ns": 362003.01, "total_ci_low_ns": 311987.09207317076, "total_ci_high_ns": 319916.78323170735, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.92747783949658}, {"serializer": "ugorji/cbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 35167.379310344826, "avg_time_deser_ns": 73554.94252873563, "avg_time_total_ns": 108722.32183908045, "median_size_bytes": 19847.0, "avg_ops_per_sec": 9197.743233262592, "min_ops_per_sec": 7883.388911225157, "max_ops_per_sec": 10272.741281010838, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 35167.379310344826, "ser_median_ns": 34918.0, "ser_std_ns": 2561.8380903098287, "ser_mad_ns": 1782.0, "ser_cv": 0.07284700027551497, "ser_min_ns": 30916.0, "ser_max_ns": 42553.0, "ser_p5_ns": 31876.3, "ser_p25_ns": 33142.0, "ser_p50_ns": 34918.0, "ser_p75_ns": 36699.0, "ser_p95_ns": 39979.200000000004, "ser_p99_ns": 42373.26, "ser_ci_low_ns": 34630.55172413793, "ser_ci_high_ns": 35686.26235632184, "deser_mean_ns": 73554.94252873563, "deser_median_ns": 73132.0, "deser_std_ns": 4836.0369474523, "deser_mad_ns": 3449.0, "deser_cv": 0.06574727382273476, "deser_min_ns": 66333.0, "deser_max_ns": 86772.0, "deser_p5_ns": 67249.8, "deser_p25_ns": 69706.0, "deser_p50_ns": 73132.0, "deser_p75_ns": 76565.0, "deser_p95_ns": 82490.1, "deser_p99_ns": 84700.26, "deser_ci_low_ns": 72580.96896551724, "deser_ci_high_ns": 74537.49942528736, "total_mean_ns": 108722.32183908045, "total_median_ns": 107941.0, "total_std_ns": 6941.440165385984, "total_mad_ns": 4659.0, "total_cv": 0.06384558431027611, "total_min_ns": 97345.0, "total_max_ns": 126849.0, "total_p5_ns": 99399.4, "total_p25_ns": 103380.5, "total_p50_ns": 107941.0, "total_p75_ns": 112989.0, "total_p95_ns": 121536.4, "total_p99_ns": 125472.14, "total_ci_low_ns": 107279.16609195402, "total_ci_high_ns": 110199.92298850574, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.11902373269377}, {"serializer": "sonic", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.15.2", "avg_time_ser_ns": 33237.119047619046, "avg_time_deser_ns": 43639.833333333336, "avg_time_total_ns": 76876.95238095238, "median_size_bytes": 25746.0, "avg_ops_per_sec": 13007.799724482413, "min_ops_per_sec": 8908.527242276306, "max_ops_per_sec": 19190.91118446304, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 33237.119047619046, "ser_median_ns": 32936.0, "ser_std_ns": 9766.409003775667, "ser_mad_ns": 7510.5, "ser_cv": 0.2938404194955425, "ser_min_ns": 19176.0, "ser_max_ns": 66106.0, "ser_p5_ns": 21118.2, "ser_p25_ns": 25252.25, "ser_p50_ns": 32936.0, "ser_p75_ns": 38790.75, "ser_p95_ns": 49806.84999999999, "ser_p99_ns": 61843.95000000001, "ser_ci_low_ns": 31163.789285714287, "ser_ci_high_ns": 35430.54107142857, "deser_mean_ns": 43639.833333333336, "deser_median_ns": 43411.5, "deser_std_ns": 4778.303812158153, "deser_mad_ns": 3275.5, "deser_cv": 0.1094940893944329, "deser_min_ns": 32932.0, "deser_max_ns": 55695.0, "deser_p5_ns": 35974.35, "deser_p25_ns": 40259.75, "deser_p50_ns": 43411.5, "deser_p75_ns": 47160.0, "deser_p95_ns": 51655.84999999999, "deser_p99_ns": 54604.380000000005, "deser_ci_low_ns": 42621.975000000006, "deser_ci_high_ns": 44644.88273809524, "total_mean_ns": 76876.95238095238, "total_median_ns": 76843.5, "total_std_ns": 13365.168004212954, "total_mad_ns": 10160.5, "total_cv": 0.17385142868286244, "total_min_ns": 52108.0, "total_max_ns": 112252.0, "total_p5_ns": 57182.05, "total_p25_ns": 66418.25, "total_p50_ns": 76843.5, "total_p75_ns": 85363.75, "total_p95_ns": 101422.0, "total_p99_ns": 105670.93000000001, "total_ci_low_ns": 74120.21666666667, "total_ci_high_ns": 79755.29880952381, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.9557422969187676, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.522150948751878}, {"serializer": "ugorji/json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 43123.8, "avg_time_deser_ns": 102159.1375, "avg_time_total_ns": 145282.9375, "median_size_bytes": 25746.0, "avg_ops_per_sec": 6883.120738111453, "min_ops_per_sec": 5803.460022865633, "max_ops_per_sec": 7900.017380038236, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 43123.8, "ser_median_ns": 42600.5, "ser_std_ns": 3403.709786971276, "ser_mad_ns": 1906.0, "ser_cv": 0.07892880003550884, "ser_min_ns": 36197.0, "ser_max_ns": 54878.0, "ser_p5_ns": 39401.35, "ser_p25_ns": 40670.25, "ser_p50_ns": 42600.5, "ser_p75_ns": 44449.0, "ser_p95_ns": 49962.149999999994, "ser_p99_ns": 53736.44999999999, "ser_ci_low_ns": 42397.041874999995, "ser_ci_high_ns": 43899.84375, "deser_mean_ns": 102159.1375, "deser_median_ns": 100213.0, "deser_std_ns": 7125.691969496406, "deser_mad_ns": 3752.5, "deser_cv": 0.06975090181723986, "deser_min_ns": 90385.0, "deser_max_ns": 128844.0, "deser_p5_ns": 93825.35, "deser_p25_ns": 97165.0, "deser_p50_ns": 100213.0, "deser_p75_ns": 106515.0, "deser_p95_ns": 116147.5, "deser_p99_ns": 120481.84999999993, "deser_ci_low_ns": 100635.7453125, "deser_ci_high_ns": 103663.4346875, "total_mean_ns": 145282.9375, "total_median_ns": 142848.0, "total_std_ns": 9812.296879902047, "total_mad_ns": 5231.0, "total_cv": 0.06753922414256008, "total_min_ns": 126582.0, "total_max_ns": 172311.0, "total_p5_ns": 133768.45, "total_p25_ns": 138058.5, "total_p50_ns": 142848.0, "total_p75_ns": 150717.5, "total_p95_ns": 167551.75, "total_p99_ns": 170517.69999999998, "total_ci_low_ns": 143247.6528125, "total_ci_high_ns": 147450.51656249998, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.855579170516858}, {"serializer": "encoding/gob", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 38794.26190476191, "avg_time_deser_ns": 75144.57142857143, "avg_time_total_ns": 113938.83333333333, "median_size_bytes": 12423.0, "avg_ops_per_sec": 8776.638927611746, "min_ops_per_sec": 6287.686822894725, "max_ops_per_sec": 10261.567351797314, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 38794.26190476191, "ser_median_ns": 37266.0, "ser_std_ns": 5839.817347612084, "ser_mad_ns": 2925.5, "ser_cv": 0.15053301856724485, "ser_min_ns": 32092.0, "ser_max_ns": 58024.0, "ser_p5_ns": 32525.55, "ser_p25_ns": 34944.0, "ser_p50_ns": 37266.0, "ser_p75_ns": 41929.0, "ser_p95_ns": 50980.34999999999, "ser_p99_ns": 56230.37, "ser_ci_low_ns": 37601.28869047619, "ser_ci_high_ns": 40094.33779761905, "deser_mean_ns": 75144.57142857143, "deser_median_ns": 72197.5, "deser_std_ns": 9050.18535693256, "deser_mad_ns": 3773.5, "deser_cv": 0.1204369814729092, "deser_min_ns": 64349.0, "deser_max_ns": 103198.0, "deser_p5_ns": 65967.75, "deser_p25_ns": 68923.25, "deser_p50_ns": 72197.5, "deser_p75_ns": 80887.75, "deser_p95_ns": 93066.0, "deser_p99_ns": 103181.4, "deser_ci_low_ns": 73357.8556547619, "deser_ci_high_ns": 77097.52023809523, "total_mean_ns": 113938.83333333333, "total_median_ns": 109187.0, "total_std_ns": 14099.900594226481, "total_mad_ns": 7190.5, "total_cv": 0.12374973643074412, "total_min_ns": 97451.0, "total_max_ns": 159041.0, "total_p5_ns": 99086.35, "total_p25_ns": 103551.5, "total_p50_ns": 109187.0, "total_p75_ns": 122777.75, "total_p95_ns": 140955.69999999998, "total_p99_ns": 156987.58000000002, "total_ci_low_ns": 110969.11309523809, "total_ci_high_ns": 116950.17232142857, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.213848666025445}, {"serializer": "ugorji/msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 39903.98780487805, "avg_time_deser_ns": 86741.5243902439, "avg_time_total_ns": 126645.51219512195, "median_size_bytes": 19848.0, "avg_ops_per_sec": 7896.05555433584, "min_ops_per_sec": 6119.127167700799, "max_ops_per_sec": 9231.138476308282, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 39903.98780487805, "ser_median_ns": 38581.0, "ser_std_ns": 4318.686198525071, "ser_mad_ns": 2203.0, "ser_cv": 0.1082269325973765, "ser_min_ns": 32513.0, "ser_max_ns": 54134.0, "ser_p5_ns": 34000.15, "ser_p25_ns": 37327.5, "ser_p50_ns": 38581.0, "ser_p75_ns": 41891.5, "ser_p95_ns": 49505.350000000006, "ser_p99_ns": 51953.479999999996, "ser_ci_low_ns": 39017.939329268294, "ser_ci_high_ns": 40839.572560975605, "deser_mean_ns": 86741.5243902439, "deser_median_ns": 84587.5, "deser_std_ns": 8070.328298469449, "deser_mad_ns": 3712.0, "deser_cv": 0.09303881105618597, "deser_min_ns": 75816.0, "deser_max_ns": 112080.0, "deser_p5_ns": 78018.7, "deser_p25_ns": 81167.5, "deser_p50_ns": 84587.5, "deser_p75_ns": 91757.75, "deser_p95_ns": 104431.4, "deser_p99_ns": 109818.48, "deser_ci_low_ns": 85189.42926829268, "deser_ci_high_ns": 88501.80975609756, "total_mean_ns": 126645.51219512195, "total_median_ns": 122938.0, "total_std_ns": 11827.37924618902, "total_mad_ns": 5726.5, "total_cv": 0.09338964359010725, "total_min_ns": 108329.0, "total_max_ns": 163422.0, "total_p5_ns": 113471.7, "total_p25_ns": 119263.5, "total_p50_ns": 122938.0, "total_p75_ns": 133764.0, "total_p95_ns": 151294.75, "total_p99_ns": 159531.56999999998, "total_ci_low_ns": 124142.85091463415, "total_ci_high_ns": 129164.40975609755, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.3124484555249065}, {"serializer": "goccy/go-yaml", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.19.2", "avg_time_ser_ns": 3494329.35483871, "avg_time_deser_ns": 3759087.2365591396, "avg_time_total_ns": 7253416.59139785, "median_size_bytes": 25245.0, "avg_ops_per_sec": 137.8660645503175, "min_ops_per_sec": 107.12782481343957, "max_ops_per_sec": 162.30730876303653, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 3494329.35483871, "ser_median_ns": 3488757.0, "ser_std_ns": 559972.6420604548, "ser_mad_ns": 433873.0, "ser_cv": 0.16025182093526552, "ser_min_ns": 2671757.0, "ser_max_ns": 5038075.0, "ser_p5_ns": 2749750.6, "ser_p25_ns": 2915012.0, "ser_p50_ns": 3488757.0, "ser_p75_ns": 3840030.0, "ser_p95_ns": 4417062.999999999, "ser_p99_ns": 4838637.399999999, "ser_ci_low_ns": 3385934.096236559, "ser_ci_high_ns": 3603317.53172043, "deser_mean_ns": 3759087.2365591396, "deser_median_ns": 3676003.0, "deser_std_ns": 683079.781531274, "deser_mad_ns": 450162.0, "deser_cv": 0.18171426693372708, "deser_min_ns": 2821053.0, "deser_max_ns": 5972674.0, "deser_p5_ns": 2874817.2, "deser_p25_ns": 3231080.0, "deser_p50_ns": 3676003.0, "deser_p75_ns": 4126165.0, "deser_p95_ns": 4830970.3999999985, "deser_p99_ns": 5871200.76, "deser_ci_low_ns": 3630329.367204301, "deser_ci_high_ns": 3900916.968548387, "total_mean_ns": 7253416.59139785, "total_median_ns": 7043372.0, "total_std_ns": 773951.6830653864, "total_mad_ns": 485138.0, "total_cv": 0.10670167269631944, "total_min_ns": 6161152.0, "total_max_ns": 9334643.0, "total_p5_ns": 6347715.6, "total_p25_ns": 6698602.0, "total_p50_ns": 7043372.0, "total_p75_ns": 7678911.0, "total_p95_ns": 8816190.399999999, "total_p99_ns": 9243434.2, "total_ci_low_ns": 7104815.45672043, "total_ci_high_ns": 7414965.771505376, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.660281101391035}, {"serializer": "jsoniter", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.1.12", "avg_time_ser_ns": 50449.48837209302, "avg_time_deser_ns": 84333.36046511628, "avg_time_total_ns": 134782.8488372093, "median_size_bytes": 25747.0, "avg_ops_per_sec": 7419.341619702665, "min_ops_per_sec": 5246.286940417919, "max_ops_per_sec": 8672.951665640367, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 50449.48837209302, "ser_median_ns": 48144.5, "ser_std_ns": 8633.574933662028, "ser_mad_ns": 4617.0, "ser_cv": 0.17113305233116763, "ser_min_ns": 40162.0, "ser_max_ns": 78717.0, "ser_p5_ns": 40680.0, "ser_p25_ns": 43940.25, "ser_p50_ns": 48144.5, "ser_p75_ns": 54440.25, "ser_p95_ns": 68711.5, "ser_p99_ns": 76529.10000000002, "ser_ci_low_ns": 48695.96453488372, "ser_ci_high_ns": 52236.07296511628, "deser_mean_ns": 84333.36046511628, "deser_median_ns": 80859.5, "deser_std_ns": 10270.86764524708, "deser_mad_ns": 3883.0, "deser_cv": 0.12178890522802695, "deser_min_ns": 73944.0, "deser_max_ns": 116757.0, "deser_p5_ns": 75186.5, "deser_p25_ns": 77760.25, "deser_p50_ns": 80859.5, "deser_p75_ns": 85710.5, "deser_p95_ns": 108784.0, "deser_p99_ns": 116608.25, "deser_ci_low_ns": 82232.90145348838, "deser_ci_high_ns": 86598.94622093023, "total_mean_ns": 134782.8488372093, "total_median_ns": 129447.0, "total_std_ns": 17593.2485596823, "total_mad_ns": 8783.0, "total_cv": 0.13053032126462485, "total_min_ns": 115301.0, "total_max_ns": 190611.0, "total_p5_ns": 118445.75, "total_p25_ns": 122525.25, "total_p50_ns": 129447.0, "total_p75_ns": 142129.5, "total_p95_ns": 176844.25, "total_p99_ns": 190265.05, "total_ci_low_ns": 130998.34825581395, "total_ci_high_ns": 138516.46627906978, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.843043897890847}, {"serializer": "encoding/json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "go1.24.13", "avg_time_ser_ns": 54060.65555555555, "avg_time_deser_ns": 309501.81111111114, "avg_time_total_ns": 363562.4666666667, "median_size_bytes": 25747.0, "avg_ops_per_sec": 2750.558959423204, "min_ops_per_sec": 1682.7311399493835, "max_ops_per_sec": 3311.335030944426, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 54060.65555555555, "ser_median_ns": 49578.0, "ser_std_ns": 13861.281653666523, "ser_mad_ns": 6375.0, "ser_cv": 0.2564023967379002, "ser_min_ns": 39202.0, "ser_max_ns": 90722.0, "ser_p5_ns": 40876.55, "ser_p25_ns": 43717.5, "ser_p50_ns": 49578.0, "ser_p75_ns": 57522.75, "ser_p95_ns": 84369.15, "ser_p99_ns": 89000.74, "ser_ci_low_ns": 51321.62055555555, "ser_ci_high_ns": 56928.632222222215, "deser_mean_ns": 309501.81111111114, "deser_median_ns": 280892.5, "deser_std_ns": 57693.248864074296, "deser_mad_ns": 14185.5, "deser_cv": 0.1864068215205449, "deser_min_ns": 261134.0, "deser_max_ns": 503550.0, "deser_p5_ns": 263654.4, "deser_p25_ns": 268505.25, "deser_p50_ns": 280892.5, "deser_p75_ns": 328131.5, "deser_p95_ns": 416202.89999999997, "deser_p99_ns": 465748.13999999996, "deser_ci_low_ns": 297956.6172222222, "deser_ci_high_ns": 321872.9872222222, "total_mean_ns": 363562.4666666667, "total_median_ns": 327863.5, "total_std_ns": 69029.56567976564, "total_mad_ns": 17569.5, "total_cv": 0.1898698903455719, "total_min_ns": 301993.0, "total_max_ns": 594272.0, "total_p5_ns": 308067.2, "total_p25_ns": 315315.0, "total_p50_ns": 327863.5, "total_p75_ns": 383111.5, "total_p95_ns": 493603.85, "total_p99_ns": 548105.03, "total_ci_low_ns": 349521.4458333333, "total_ci_high_ns": 378448.3, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.094055961185169}, {"serializer": "kelindar/binary", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.0.19", "avg_time_ser_ns": 29358.443037974685, "avg_time_deser_ns": 63551.50632911392, "avg_time_total_ns": 92909.9493670886, "median_size_bytes": 10346.0, "avg_ops_per_sec": 10763.10994475936, "min_ops_per_sec": 8292.424041395781, "max_ops_per_sec": 11892.161876107457, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 29358.443037974685, "ser_median_ns": 28296.0, "ser_std_ns": 2622.450350275949, "ser_mad_ns": 1058.0, "ser_cv": 0.08932525293946449, "ser_min_ns": 25480.0, "ser_max_ns": 38739.0, "ser_p5_ns": 26860.7, "ser_p25_ns": 27637.5, "ser_p50_ns": 28296.0, "ser_p75_ns": 30760.0, "ser_p95_ns": 35280.7, "ser_p99_ns": 38409.84, "ser_ci_low_ns": 28807.497468354428, "ser_ci_high_ns": 29968.81234177215, "deser_mean_ns": 63551.50632911392, "deser_median_ns": 61477.0, "deser_std_ns": 6394.821175650588, "deser_mad_ns": 2927.0, "deser_cv": 0.10062422663176156, "deser_min_ns": 56703.0, "deser_max_ns": 87788.0, "deser_p5_ns": 57400.7, "deser_p25_ns": 58998.5, "deser_p50_ns": 61477.0, "deser_p75_ns": 66118.0, "deser_p95_ns": 77404.59999999998, "deser_p99_ns": 83158.7, "deser_ci_low_ns": 62167.3582278481, "deser_ci_high_ns": 65012.743987341775, "total_mean_ns": 92909.9493670886, "total_median_ns": 90024.0, "total_std_ns": 8348.228115239192, "total_mad_ns": 4273.0, "total_cv": 0.08985289704825064, "total_min_ns": 84089.0, "total_max_ns": 120592.0, "total_p5_ns": 84644.5, "total_p25_ns": 87005.0, "total_p50_ns": 90024.0, "total_p75_ns": 96861.5, "total_p95_ns": 108841.3, "total_p99_ns": 119471.92, "total_ci_low_ns": 91126.81930379746, "total_ci_high_ns": 94785.28132911392, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.876904467827497}, {"serializer": "ugorji/cbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 42039.2183908046, "avg_time_deser_ns": 91159.91954022988, "avg_time_total_ns": 133199.1379310345, "median_size_bytes": 19847.0, "avg_ops_per_sec": 7507.55609632971, "min_ops_per_sec": 5168.0654897258855, "max_ops_per_sec": 8937.588817288872, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 42039.2183908046, "ser_median_ns": 39371.0, "ser_std_ns": 6634.18552058339, "ser_mad_ns": 2606.0, "ser_cv": 0.15780944019726378, "ser_min_ns": 34260.0, "ser_max_ns": 63102.0, "ser_p5_ns": 36065.7, "ser_p25_ns": 37493.5, "ser_p50_ns": 39371.0, "ser_p75_ns": 44567.0, "ser_p95_ns": 57011.100000000006, "ser_p99_ns": 62053.66, "ser_ci_low_ns": 40650.66494252874, "ser_ci_high_ns": 43381.252586206894, "deser_mean_ns": 91159.91954022988, "deser_median_ns": 84992.0, "deser_std_ns": 14326.507286437078, "deser_mad_ns": 3154.0, "deser_cv": 0.1571579632660232, "deser_min_ns": 77627.0, "deser_max_ns": 135827.0, "deser_p5_ns": 79168.4, "deser_p25_ns": 82550.5, "deser_p50_ns": 84992.0, "deser_p75_ns": 92794.0, "deser_p95_ns": 124969.1, "deser_p99_ns": 132202.96, "deser_ci_low_ns": 88277.37643678162, "deser_ci_high_ns": 94285.71465517241, "total_mean_ns": 133199.1379310345, "total_median_ns": 124266.0, "total_std_ns": 19268.451921966276, "total_mad_ns": 5607.0, "total_cv": 0.14465898369359384, "total_min_ns": 111887.0, "total_max_ns": 193496.0, "total_p5_ns": 115710.7, "total_p25_ns": 120471.0, "total_p50_ns": 124266.0, "total_p75_ns": 143812.0, "total_p95_ns": 173372.6, "total_p99_ns": 192980.86, "total_ci_low_ns": 129215.01752873564, "total_ci_high_ns": 137374.1787356322, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.271764840402857}, {"serializer": "sonic", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.15.2", "avg_time_ser_ns": 37864.11235955056, "avg_time_deser_ns": 58039.12359550562, "avg_time_total_ns": 95903.23595505618, "median_size_bytes": 25747.0, "avg_ops_per_sec": 10427.176831328581, "min_ops_per_sec": 5418.615110350097, "max_ops_per_sec": 17051.17056285914, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 37864.11235955056, "ser_median_ns": 34344.0, "ser_std_ns": 14449.269753047132, "ser_mad_ns": 9635.0, "ser_cv": 0.38160856950348016, "ser_min_ns": 21255.0, "ser_max_ns": 77228.0, "ser_p5_ns": 22559.2, "ser_p25_ns": 26214.0, "ser_p50_ns": 34344.0, "ser_p75_ns": 45476.0, "ser_p95_ns": 70100.19999999994, "ser_p99_ns": 76215.12000000001, "ser_ci_low_ns": 34879.58623595506, "ser_ci_high_ns": 40955.2106741573, "deser_mean_ns": 58039.12359550562, "deser_median_ns": 52971.0, "deser_std_ns": 17100.887474857333, "deser_mad_ns": 8980.0, "deser_cv": 0.2946441368418867, "deser_min_ns": 37392.0, "deser_max_ns": 109409.0, "deser_p5_ns": 39343.0, "deser_p25_ns": 45584.0, "deser_p50_ns": 52971.0, "deser_p75_ns": 67167.0, "deser_p95_ns": 97440.8, "deser_p99_ns": 102666.44000000003, "deser_ci_low_ns": 54700.14073033707, "deser_ci_high_ns": 61616.56376404494, "total_mean_ns": 95903.23595505618, "total_median_ns": 89691.0, "total_std_ns": 29715.351461837206, "total_mad_ns": 17615.0, "total_cv": 0.3098472242976548, "total_min_ns": 58647.0, "total_max_ns": 184549.0, "total_p5_ns": 62252.6, "total_p25_ns": 72853.0, "total_p50_ns": 89691.0, "total_p75_ns": 107754.0, "total_p95_ns": 157727.4, "total_p99_ns": 175016.84000000005, "total_ci_low_ns": 89836.8511235955, "total_ci_high_ns": 102555.37752808988, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.9453460951588293, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.8234426609582197}, {"serializer": "goccy/go-json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "0.10.6", "avg_time_ser_ns": 39481.71111111111, "avg_time_deser_ns": 78960.12222222223, "avg_time_total_ns": 118441.83333333333, "median_size_bytes": 25747.0, "avg_ops_per_sec": 8442.962860813535, "min_ops_per_sec": 5290.865321023253, "max_ops_per_sec": 11841.887123131943, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 39481.71111111111, "ser_median_ns": 37986.0, "ser_std_ns": 10825.988492371207, "ser_mad_ns": 7902.0, "ser_cv": 0.27420261654577865, "ser_min_ns": 24215.0, "ser_max_ns": 72379.0, "ser_p5_ns": 26835.3, "ser_p25_ns": 31307.0, "ser_p50_ns": 37986.0, "ser_p75_ns": 46285.25, "ser_p95_ns": 63116.799999999996, "ser_p99_ns": 66281.61, "ser_ci_low_ns": 37332.67444444445, "ser_ci_high_ns": 41730.64944444445, "deser_mean_ns": 78960.12222222223, "deser_median_ns": 71290.0, "deser_std_ns": 16401.956767223925, "deser_mad_ns": 5562.0, "deser_cv": 0.20772456153326244, "deser_min_ns": 59788.0, "deser_max_ns": 123857.0, "deser_p5_ns": 63136.5, "deser_p25_ns": 67229.75, "deser_p50_ns": 71290.0, "deser_p75_ns": 88428.0, "deser_p95_ns": 114894.25, "deser_p99_ns": 123741.3, "deser_ci_low_ns": 75499.73916666667, "deser_ci_high_ns": 82532.60972222223, "total_mean_ns": 118441.83333333333, "total_median_ns": 109163.5, "total_std_ns": 25415.7732331583, "total_mad_ns": 11274.0, "total_cv": 0.2145844294864143, "total_min_ns": 84446.0, "total_max_ns": 189005.0, "total_p5_ns": 91081.55, "total_p25_ns": 100836.75, "total_p50_ns": 109163.5, "total_p75_ns": 130036.5, "total_p95_ns": 179985.05, "total_p99_ns": 187435.93, "total_ci_low_ns": 113443.33777777778, "total_ci_high_ns": 123911.9113888889, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.2881927258500756}, {"serializer": "vmihailenco/msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "5.4.1", "avg_time_ser_ns": 93818.02409638555, "avg_time_deser_ns": 134537.26506024096, "avg_time_total_ns": 228355.2891566265, "median_size_bytes": 19548.0, "avg_ops_per_sec": 4379.140959218643, "min_ops_per_sec": 3223.996853379071, "max_ops_per_sec": 4957.047186132165, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 93818.02409638555, "ser_median_ns": 90105.0, "ser_std_ns": 11132.058916980255, "ser_mad_ns": 3648.0, "ser_cv": 0.1186558662282585, "ser_min_ns": 84042.0, "ser_max_ns": 130531.0, "ser_p5_ns": 84971.8, "ser_p25_ns": 86946.0, "ser_p50_ns": 90105.0, "ser_p75_ns": 95682.0, "ser_p95_ns": 122831.99999999999, "ser_p99_ns": 127847.13999999997, "ser_ci_low_ns": 91602.13524096386, "ser_ci_high_ns": 96288.89367469879, "deser_mean_ns": 134537.26506024096, "deser_median_ns": 127786.0, "deser_std_ns": 16229.376921063835, "deser_mad_ns": 5623.0, "deser_cv": 0.12063108993479912, "deser_min_ns": 117691.0, "deser_max_ns": 180996.0, "deser_p5_ns": 119997.4, "deser_p25_ns": 123860.0, "deser_p50_ns": 127786.0, "deser_p75_ns": 139541.5, "deser_p95_ns": 175551.19999999992, "deser_p99_ns": 180977.96, "deser_ci_low_ns": 131234.73855421686, "deser_ci_high_ns": 137997.24759036142, "total_mean_ns": 228355.2891566265, "total_median_ns": 218245.0, "total_std_ns": 26342.81564924302, "total_mad_ns": 8495.0, "total_cv": 0.11535890299074597, "total_min_ns": 201733.0, "total_max_ns": 310174.0, "total_p5_ns": 206229.7, "total_p25_ns": 211380.0, "total_p50_ns": 218245.0, "total_p75_ns": 233927.0, "total_p95_ns": 297799.89999999985, "total_p99_ns": 308581.56, "total_ci_low_ns": 222956.2355421687, "total_ci_high_ns": 234247.90903614459, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.889058306613652}, {"serializer": "mongo-bson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.17.9", "avg_time_ser_ns": 100391.72413793103, "avg_time_deser_ns": 214323.183908046, "avg_time_total_ns": 314714.908045977, "median_size_bytes": 29452.0, "avg_ops_per_sec": 3177.478964084882, "min_ops_per_sec": 2173.87996269622, "max_ops_per_sec": 3821.5635545126934, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 100391.72413793103, "ser_median_ns": 94630.0, "ser_std_ns": 17330.14069421119, "ser_mad_ns": 9818.0, "ser_cv": 0.17262519239534943, "ser_min_ns": 80721.0, "ser_max_ns": 150584.0, "ser_p5_ns": 82583.6, "ser_p25_ns": 86940.5, "ser_p50_ns": 94630.0, "ser_p75_ns": 107673.0, "ser_p95_ns": 137216.5, "ser_p99_ns": 145804.12, "ser_ci_low_ns": 96941.29568965518, "ser_ci_high_ns": 104200.71408045976, "deser_mean_ns": 214323.183908046, "deser_median_ns": 198991.0, "deser_std_ns": 37333.19834931157, "deser_mad_ns": 12461.0, "deser_cv": 0.17419113354217966, "deser_min_ns": 180848.0, "deser_max_ns": 333081.0, "deser_p5_ns": 182695.2, "deser_p25_ns": 188913.0, "deser_p50_ns": 198991.0, "deser_p75_ns": 220308.5, "deser_p95_ns": 287536.4, "deser_p99_ns": 321422.84, "deser_ci_low_ns": 206684.27298850575, "deser_ci_high_ns": 222251.6948275862, "total_mean_ns": 314714.908045977, "total_median_ns": 294305.0, "total_std_ns": 52805.71012852201, "total_mad_ns": 18319.0, "total_cv": 0.1677890331169427, "total_min_ns": 261673.0, "total_max_ns": 460007.0, "total_p5_ns": 268092.4, "total_p25_ns": 278297.0, "total_p50_ns": 294305.0, "total_p75_ns": 323637.0, "total_p95_ns": 424754.8, "total_p99_ns": 450829.94, "total_ci_low_ns": 304587.3709770115, "total_ci_high_ns": 326448.4643678161, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.734897182269351}, {"serializer": "protobuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.36.11", "avg_time_ser_ns": 39532.14117647059, "avg_time_deser_ns": 77087.74117647059, "avg_time_total_ns": 116619.88235294117, "median_size_bytes": 12477.0, "avg_ops_per_sec": 8574.867165219532, "min_ops_per_sec": 6234.064173456602, "max_ops_per_sec": 10062.589305480085, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 39532.14117647059, "ser_median_ns": 37748.0, "ser_std_ns": 4917.736258524176, "ser_mad_ns": 2247.0, "ser_cv": 0.12439842902947026, "ser_min_ns": 32404.0, "ser_max_ns": 53154.0, "ser_p5_ns": 34644.2, "ser_p25_ns": 35929.0, "ser_p50_ns": 37748.0, "ser_p75_ns": 40624.0, "ser_p95_ns": 50104.2, "ser_p99_ns": 52046.03999999999, "ser_ci_low_ns": 38515.27411764706, "ser_ci_high_ns": 40654.504411764705, "deser_mean_ns": 77087.74117647059, "deser_median_ns": 73797.0, "deser_std_ns": 10108.380774614392, "deser_mad_ns": 3479.0, "deser_cv": 0.13112825230504693, "deser_min_ns": 66974.0, "deser_max_ns": 109442.0, "deser_p5_ns": 67779.2, "deser_p25_ns": 70717.0, "deser_p50_ns": 73797.0, "deser_p75_ns": 78154.0, "deser_p95_ns": 99531.59999999999, "deser_p99_ns": 108619.64, "deser_ci_low_ns": 75141.58911764706, "deser_ci_high_ns": 79329.43823529412, "total_mean_ns": 116619.88235294117, "total_median_ns": 112124.0, "total_std_ns": 14181.571822860355, "total_mad_ns": 5307.0, "total_cv": 0.12160509457504776, "total_min_ns": 99378.0, "total_max_ns": 160409.0, "total_p5_ns": 102737.6, "total_p25_ns": 107009.0, "total_p50_ns": 112124.0, "total_p75_ns": 120364.0, "total_p95_ns": 149715.6, "total_p99_ns": 158699.6, "total_ci_low_ns": 113827.62882352942, "total_ci_high_ns": 119449.855, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.41788346741013}, {"serializer": "linkedin/goavro", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "2.15.0", "avg_time_ser_ns": 43011.32558139535, "avg_time_deser_ns": 126798.04651162791, "avg_time_total_ns": 169809.37209302327, "median_size_bytes": 10448.0, "avg_ops_per_sec": 5888.956467327316, "min_ops_per_sec": 3314.979397403045, "max_ops_per_sec": 7776.594007356658, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 43011.32558139535, "ser_median_ns": 38186.0, "ser_std_ns": 11653.78397264103, "ser_mad_ns": 5751.5, "ser_cv": 0.27094686841462756, "ser_min_ns": 30038.0, "ser_max_ns": 78831.0, "ser_p5_ns": 31318.0, "ser_p25_ns": 34737.0, "ser_p50_ns": 38186.0, "ser_p75_ns": 51622.25, "ser_p95_ns": 65428.0, "ser_p99_ns": 77957.20000000001, "ser_ci_low_ns": 40613.95523255814, "ser_ci_high_ns": 45629.463662790695, "deser_mean_ns": 126798.04651162791, "deser_median_ns": 111550.5, "deser_std_ns": 33787.663344831846, "deser_mad_ns": 9859.0, "deser_cv": 0.2664683271893576, "deser_min_ns": 98393.0, "deser_max_ns": 243200.0, "deser_p5_ns": 99917.25, "deser_p25_ns": 104420.0, "deser_p50_ns": 111550.5, "deser_p75_ns": 139321.25, "deser_p95_ns": 205234.0, "deser_p99_ns": 241314.7, "deser_ci_low_ns": 120306.1386627907, "deser_ci_high_ns": 134370.51191860464, "total_mean_ns": 169809.37209302327, "total_median_ns": 154220.0, "total_std_ns": 41064.10892281268, "total_mad_ns": 16133.5, "total_cv": 0.24182474981603108, "total_min_ns": 128591.0, "total_max_ns": 301661.0, "total_p5_ns": 131904.75, "total_p25_ns": 139922.5, "total_p50_ns": 154220.0, "total_p75_ns": 189957.25, "total_p95_ns": 252951.0, "total_p99_ns": 291469.50000000006, "total_ci_low_ns": 161481.286627907, "total_ci_high_ns": 179098.16540697674, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.80886733366828}, {"serializer": "hamba/avro", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "2.31.0", "avg_time_ser_ns": 26570.62962962963, "avg_time_deser_ns": 29005.074074074073, "avg_time_total_ns": 55575.7037037037, "median_size_bytes": 10626.0, "avg_ops_per_sec": 17993.474366629704, "min_ops_per_sec": 12901.893998038911, "max_ops_per_sec": 21143.88413151496, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 26570.62962962963, "ser_median_ns": 26068.0, "ser_std_ns": 3327.5063502735966, "ser_mad_ns": 2375.0, "ser_cv": 0.12523249906592368, "ser_min_ns": 22011.0, "ser_max_ns": 36628.0, "ser_p5_ns": 22628.0, "ser_p25_ns": 23856.0, "ser_p50_ns": 26068.0, "ser_p75_ns": 28753.0, "ser_p95_ns": 32703.0, "ser_p99_ns": 36043.200000000004, "ser_ci_low_ns": 25892.262962962963, "ser_ci_high_ns": 27298.860493827156, "deser_mean_ns": 29005.074074074073, "deser_median_ns": 27676.0, "deser_std_ns": 3911.270390735527, "deser_mad_ns": 1526.0, "deser_cv": 0.13484779872469216, "deser_min_ns": 24658.0, "deser_max_ns": 41704.0, "deser_p5_ns": 25417.0, "deser_p25_ns": 26394.0, "deser_p50_ns": 27676.0, "deser_p75_ns": 30005.0, "deser_p95_ns": 37982.0, "deser_p99_ns": 41629.6, "deser_ci_low_ns": 28209.452469135802, "deser_ci_high_ns": 29862.146604938273, "total_mean_ns": 55575.7037037037, "total_median_ns": 53407.0, "total_std_ns": 6833.307938773952, "total_mad_ns": 3942.0, "total_cv": 0.12295495123561635, "total_min_ns": 47295.0, "total_max_ns": 77508.0, "total_p5_ns": 48054.0, "total_p25_ns": 50572.0, "total_p50_ns": 53407.0, "total_p75_ns": 58870.0, "total_p95_ns": 68647.0, "total_p99_ns": 76648.0, "total_ci_low_ns": 54163.06481481481, "total_ci_high_ns": 57185.9537037037, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "pelletier/go-toml", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "2.4.3", "avg_time_ser_ns": 172663.8552631579, "avg_time_deser_ns": 374122.9210526316, "avg_time_total_ns": 546786.7763157894, "median_size_bytes": 31344.0, "avg_ops_per_sec": 1828.8664673603287, "min_ops_per_sec": 1357.673707562514, "max_ops_per_sec": 2072.9727880862106, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 172663.8552631579, "ser_median_ns": 168293.0, "ser_std_ns": 18166.271459459476, "ser_mad_ns": 7253.5, "ser_cv": 0.10521177945304283, "ser_min_ns": 147602.0, "ser_max_ns": 231130.0, "ser_p5_ns": 151384.75, "ser_p25_ns": 162145.0, "ser_p50_ns": 168293.0, "ser_p75_ns": 176992.0, "ser_p95_ns": 214408.75, "ser_p99_ns": 226444.0, "ser_ci_low_ns": 168880.21381578947, "ser_ci_high_ns": 176818.49539473685, "deser_mean_ns": 374122.9210526316, "deser_median_ns": 364162.5, "deser_std_ns": 39720.725763011316, "deser_mad_ns": 17767.0, "deser_cv": 0.10617025455498197, "deser_min_ns": 332215.0, "deser_max_ns": 512547.0, "deser_p5_ns": 337787.25, "deser_p25_ns": 347137.75, "deser_p50_ns": 364162.5, "deser_p75_ns": 383055.0, "deser_p95_ns": 468319.5, "deser_p99_ns": 509115.75, "deser_ci_low_ns": 366020.6197368421, "deser_ci_high_ns": 383103.2447368421, "total_mean_ns": 546786.7763157894, "total_median_ns": 532165.5, "total_std_ns": 56011.757337568255, "total_mad_ns": 22419.0, "total_cv": 0.10243802477260242, "total_min_ns": 482399.0, "total_max_ns": 736554.0, "total_p5_ns": 491516.75, "total_p25_ns": 513879.75, "total_p50_ns": 532165.5, "total_p75_ns": 562323.25, "total_p95_ns": 682728.25, "total_p99_ns": 736485.0, "total_ci_low_ns": 534741.5677631579, "total_ci_high_ns": 560357.4907894736, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.44783859049976}, {"serializer": "segmentio/encoding/json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "0.5.4", "avg_time_ser_ns": 39428.67816091954, "avg_time_deser_ns": 99977.25287356322, "avg_time_total_ns": 139405.93103448275, "median_size_bytes": 25747.0, "avg_ops_per_sec": 7173.295946444668, "min_ops_per_sec": 4849.166670707639, "max_ops_per_sec": 8770.621924800687, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 39428.67816091954, "ser_median_ns": 37831.0, "ser_std_ns": 7788.373016494035, "ser_mad_ns": 4858.0, "ser_cv": 0.19753066498216074, "ser_min_ns": 28706.0, "ser_max_ns": 63500.0, "ser_p5_ns": 29801.8, "ser_p25_ns": 33153.0, "ser_p50_ns": 37831.0, "ser_p75_ns": 42740.5, "ser_p95_ns": 53371.7, "ser_p99_ns": 60333.48, "ser_ci_low_ns": 37854.91465517241, "ser_ci_high_ns": 41061.1091954023, "deser_mean_ns": 99977.25287356322, "deser_median_ns": 94478.0, "deser_std_ns": 14216.540294972165, "deser_mad_ns": 5851.0, "deser_cv": 0.14219774885144312, "deser_min_ns": 85311.0, "deser_max_ns": 147794.0, "deser_p5_ns": 86454.7, "deser_p25_ns": 89783.0, "deser_p50_ns": 94478.0, "deser_p75_ns": 106812.0, "deser_p95_ns": 128490.8, "deser_p99_ns": 141897.84, "deser_ci_low_ns": 97026.09770114943, "deser_ci_high_ns": 103169.41896551724, "total_mean_ns": 139405.93103448275, "total_median_ns": 133283.0, "total_std_ns": 20264.44773132625, "total_mad_ns": 10767.0, "total_cv": 0.14536288076806242, "total_min_ns": 114017.0, "total_max_ns": 206221.0, "total_p5_ns": 117833.7, "total_p25_ns": 123374.0, "total_p50_ns": 133283.0, "total_p75_ns": 153919.5, "total_p95_ns": 173522.6, "total_p99_ns": 192822.2, "total_ci_low_ns": 135501.7, "total_ci_high_ns": 143767.9327586207, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.440861470929957}, {"serializer": "shamaton/msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "3.1.2", "avg_time_ser_ns": 61362.14606741573, "avg_time_deser_ns": 130613.95505617978, "avg_time_total_ns": 191976.1011235955, "median_size_bytes": 19548.0, "avg_ops_per_sec": 5208.981712552821, "min_ops_per_sec": 3676.7409368335907, "max_ops_per_sec": 6189.612592147858, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 61362.14606741573, "ser_median_ns": 57997.0, "ser_std_ns": 9279.320262564497, "ser_mad_ns": 3386.0, "ser_cv": 0.15122222505662922, "ser_min_ns": 51553.0, "ser_max_ns": 89664.0, "ser_p5_ns": 53071.4, "ser_p25_ns": 55180.0, "ser_p50_ns": 57997.0, "ser_p75_ns": 63336.0, "ser_p95_ns": 81638.79999999997, "ser_p99_ns": 89461.6, "ser_ci_low_ns": 59571.730056179775, "ser_ci_high_ns": 63197.135955056176, "deser_mean_ns": 130613.95505617978, "deser_median_ns": 122168.0, "deser_std_ns": 19381.979430241914, "deser_mad_ns": 6105.0, "deser_cv": 0.14839133706582364, "deser_min_ns": 109920.0, "deser_max_ns": 183172.0, "deser_p5_ns": 113864.8, "deser_p25_ns": 117352.0, "deser_p50_ns": 122168.0, "deser_p75_ns": 134578.0, "deser_p95_ns": 175726.8, "deser_p99_ns": 181863.44, "deser_ci_low_ns": 126865.09297752808, "deser_ci_high_ns": 134684.6581460674, "total_mean_ns": 191976.1011235955, "total_median_ns": 180977.0, "total_std_ns": 27882.915444458813, "total_mad_ns": 9313.0, "total_cv": 0.14524159664284256, "total_min_ns": 161561.0, "total_max_ns": 271980.0, "total_p5_ns": 167589.8, "total_p25_ns": 173850.0, "total_p50_ns": 180977.0, "total_p75_ns": 197901.0, "total_p95_ns": 254443.59999999998, "total_p99_ns": 271424.72000000003, "total_ci_low_ns": 186606.84915730337, "total_ci_high_ns": 197748.34466292133, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.55240616037219}, {"serializer": "ugorji/json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "1.3.1", "avg_time_ser_ns": 58778.56470588235, "avg_time_deser_ns": 130563.81176470588, "avg_time_total_ns": 189342.37647058823, "median_size_bytes": 25746.0, "avg_ops_per_sec": 5281.437883269287, "min_ops_per_sec": 3539.259233042524, "max_ops_per_sec": 6370.319407815108, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 58778.56470588235, "ser_median_ns": 54358.0, "ser_std_ns": 10957.20554556622, "ser_mad_ns": 3528.0, "ser_cv": 0.18641498989289987, "ser_min_ns": 46391.0, "ser_max_ns": 90080.0, "ser_p5_ns": 49093.4, "ser_p25_ns": 51420.0, "ser_p50_ns": 54358.0, "ser_p75_ns": 60404.0, "ser_p95_ns": 84614.8, "ser_p99_ns": 88841.84, "ser_ci_low_ns": 56657.77647058824, "ser_ci_high_ns": 61048.14588235294, "deser_mean_ns": 130563.81176470588, "deser_median_ns": 122761.0, "deser_std_ns": 21200.933092950523, "deser_mad_ns": 8195.0, "deser_cv": 0.1623798570706372, "deser_min_ns": 109801.0, "deser_max_ns": 195265.0, "deser_p5_ns": 111054.8, "deser_p25_ns": 116157.0, "deser_p50_ns": 122761.0, "deser_p75_ns": 138375.0, "deser_p95_ns": 179539.0, "deser_p99_ns": 193107.03999999998, "deser_ci_low_ns": 126237.41764705883, "deser_ci_high_ns": 135275.89323529412, "total_mean_ns": 189342.37647058823, "total_median_ns": 179146.0, "total_std_ns": 31178.43596216877, "total_mad_ns": 13519.0, "total_cv": 0.16466697283168363, "total_min_ns": 156978.0, "total_max_ns": 282545.0, "total_p5_ns": 160264.6, "total_p25_ns": 168406.0, "total_p50_ns": 179146.0, "total_p75_ns": 198779.0, "total_p95_ns": 265101.8, "total_p99_ns": 277438.63999999996, "total_ci_low_ns": 182952.96705882353, "total_ci_high_ns": 196021.70705882352, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.835375820298104}, {"serializer": "fxamacker/cbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "go", "serializer_version": "2.9.2", "avg_time_ser_ns": 44344.78021978022, "avg_time_deser_ns": 164427.35164835164, "avg_time_total_ns": 208772.13186813187, "median_size_bytes": 19847.0, "avg_ops_per_sec": 4789.911330845808, "min_ops_per_sec": 3236.2354814385712, "max_ops_per_sec": 5852.607922090084, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 44344.78021978022, "ser_median_ns": 41043.0, "ser_std_ns": 9575.412398200111, "ser_mad_ns": 4998.0, "ser_cv": 0.215930992345497, "ser_min_ns": 32731.0, "ser_max_ns": 69171.0, "ser_p5_ns": 33753.0, "ser_p25_ns": 38090.0, "ser_p50_ns": 41043.0, "ser_p75_ns": 47736.5, "ser_p95_ns": 64812.5, "ser_p99_ns": 67053.29999999999, "ser_ci_low_ns": 42503.477197802196, "ser_ci_high_ns": 46243.05082417582, "deser_mean_ns": 164427.35164835164, "deser_median_ns": 150854.0, "deser_std_ns": 29434.664534778876, "deser_mad_ns": 9111.0, "deser_cv": 0.17901318874081587, "deser_min_ns": 137464.0, "deser_max_ns": 239830.0, "deser_p5_ns": 139462.0, "deser_p25_ns": 144347.5, "deser_p50_ns": 150854.0, "deser_p75_ns": 169897.5, "deser_p95_ns": 229913.0, "deser_p99_ns": 239113.6, "deser_ci_low_ns": 158574.710989011, "deser_ci_high_ns": 170432.93516483516, "total_mean_ns": 208772.13186813187, "total_median_ns": 192587.0, "total_std_ns": 36972.78164368089, "total_mad_ns": 12687.0, "total_cv": 0.177096345727955, "total_min_ns": 170864.0, "total_max_ns": 309001.0, "total_p5_ns": 175112.0, "total_p25_ns": 184420.0, "total_p50_ns": 192587.0, "total_p75_ns": 218634.0, "total_p95_ns": 290567.0, "total_p99_ns": 304337.19999999995, "total_ci_low_ns": 201383.91620879123, "total_ci_high_ns": 216023.34175824173, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "hamba/avro", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.585364316629767}], "pareto_front": [{"serializer": "kelindar/binary", "test_data": "message", "mode": "bytes", "time": 744.2117647058824, "size": 44.0}, {"serializer": "kelindar/binary", "test_data": "message", "mode": "stream", "time": 1667.1134020618556, "size": 44.0}, {"serializer": "kelindar/binary", "test_data": "document", "mode": "bytes", "time": 2101.6847826086955, "size": 113.0}, {"serializer": "hamba/avro", "test_data": "document", "mode": "stream", "time": 3118.677777777778, "size": 116.0}, {"serializer": "kelindar/binary", "test_data": "document", "mode": "stream", "time": 3334.6702127659573, "size": 113.0}, {"serializer": "kelindar/binary", "test_data": "telemetry", "mode": "bytes", "time": 2490.863157894737, "size": 286.0}, {"serializer": "protobuf", "test_data": "telemetry", "mode": "bytes", "time": 2266.546391752577, "size": 291.0}, {"serializer": "kelindar/binary", "test_data": "telemetry", "mode": "stream", "time": 3139.938144329897, "size": 286.0}, {"serializer": "protobuf", "test_data": "telemetry", "mode": "stream", "time": 2452.0, "size": 291.0}, {"serializer": "linkedin/goavro", "test_data": "telemetry", "mode": "stream", "time": 2727.0947368421052, "size": 288.0}, {"serializer": "kelindar/binary", "test_data": "strings", "mode": "bytes", "time": 2652.5789473684213, "size": 337.0}, {"serializer": "hamba/avro", "test_data": "strings", "mode": "bytes", "time": 2029.3548387096773, "size": 340.0}, {"serializer": "kelindar/binary", "test_data": "strings", "mode": "stream", "time": 3166.367816091954, "size": 337.0}, {"serializer": "hamba/avro", "test_data": "strings", "mode": "stream", "time": 2284.021505376344, "size": 340.0}, {"serializer": "kelindar/binary", "test_data": "event", "mode": "bytes", "time": 2278.0967741935483, "size": 104.0}, {"serializer": "kelindar/binary", "test_data": "event", "mode": "stream", "time": 1838.2087912087911, "size": 104.0}]} \ No newline at end of file diff --git a/dashboard/public/data/stats_go_latest.json.gz b/dashboard/public/data/stats_go_latest.json.gz new file mode 100644 index 00000000..4f085f8c Binary files /dev/null and b/dashboard/public/data/stats_go_latest.json.gz differ diff --git a/dashboard/public/data/stats_java_latest.json b/dashboard/public/data/stats_java_latest.json deleted file mode 100644 index 4dfb95b4..00000000 --- a/dashboard/public/data/stats_java_latest.json +++ /dev/null @@ -1 +0,0 @@ -{"schema_version": "2.0", "generated": "2026-07-24T20:24:09.603140", "language": "java", "questions": {"Q1": "How fast?", "Q2": "How compact?", "Q3": "How stable?", "Q4": "Under which workloads does it win?"}, "groups": [{"serializer": "jackson-smile", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 33413.65555555555, "avg_time_deser_ns": 35361.22222222222, "avg_time_total_ns": 68774.87777777777, "median_size_bytes": 119.0, "avg_ops_per_sec": 14540.193051758726, "min_ops_per_sec": 7693.432117001716, "max_ops_per_sec": 32513.98101183509, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 33413.65555555555, "ser_median_ns": 30425.0, "ser_std_ns": 12285.560965146831, "ser_mad_ns": 8066.0, "ser_cv": 0.3676808406886256, "ser_min_ns": 15074.0, "ser_max_ns": 65585.0, "ser_p5_ns": 19884.8, "ser_p25_ns": 24005.75, "ser_p50_ns": 30425.0, "ser_p75_ns": 40507.5, "ser_p95_ns": 57416.69999999999, "ser_p99_ns": 63396.49, "ser_ci_low_ns": 30950.788055555553, "ser_ci_high_ns": 35951.866944444446, "deser_mean_ns": 35361.22222222222, "deser_median_ns": 33945.0, "deser_std_ns": 11674.22283608065, "deser_mad_ns": 8769.5, "deser_cv": 0.33014194935672114, "deser_min_ns": 15682.0, "deser_max_ns": 64396.0, "deser_p5_ns": 21590.7, "deser_p25_ns": 25202.75, "deser_p50_ns": 33945.0, "deser_p75_ns": 42551.75, "deser_p95_ns": 59067.75, "deser_p99_ns": 63604.79, "deser_ci_low_ns": 32916.22833333333, "deser_ci_high_ns": 37779.69972222222, "total_mean_ns": 68774.87777777777, "total_median_ns": 65706.0, "total_std_ns": 22596.484461992615, "total_mad_ns": 16898.0, "total_cv": 0.328557246368439, "total_min_ns": 30756.0, "total_max_ns": 129981.0, "total_p5_ns": 42243.05, "total_p25_ns": 50055.25, "total_p50_ns": 65706.0, "total_p75_ns": 84625.25, "total_p95_ns": 106614.74999999999, "total_p99_ns": 124522.62999999999, "total_ci_low_ns": 64336.19888888889, "total_ci_high_ns": 73645.36222222222, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.9971902937420178, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.807243640567026}, {"serializer": "ion", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 96636.96774193548, "avg_time_deser_ns": 141377.05376344087, "avg_time_total_ns": 238014.02150537635, "median_size_bytes": 144.0, "avg_ops_per_sec": 4201.433149506327, "min_ops_per_sec": 2114.0799841021185, "max_ops_per_sec": 9245.81857854785, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 96636.96774193548, "ser_median_ns": 88619.0, "ser_std_ns": 31590.525501585747, "ser_mad_ns": 17379.0, "ser_cv": 0.3268989729266627, "ser_min_ns": 49345.0, "ser_max_ns": 182509.0, "ser_p5_ns": 59833.8, "ser_p25_ns": 71766.0, "ser_p50_ns": 88619.0, "ser_p75_ns": 116974.0, "ser_p95_ns": 157509.19999999995, "ser_p99_ns": 181611.08, "ser_ci_low_ns": 90379.58440860215, "ser_ci_high_ns": 102733.84838709678, "deser_mean_ns": 141377.05376344087, "deser_median_ns": 103521.0, "deser_std_ns": 76001.19847458437, "deser_mad_ns": 32780.0, "deser_cv": 0.5375780330077705, "deser_min_ns": 58812.0, "deser_max_ns": 390956.0, "deser_p5_ns": 66137.0, "deser_p25_ns": 81563.0, "deser_p50_ns": 103521.0, "deser_p75_ns": 206953.0, "deser_p95_ns": 268385.99999999994, "deser_p99_ns": 289035.6399999998, "deser_ci_low_ns": 126526.55349462366, "deser_ci_high_ns": 156487.8704301075, "total_mean_ns": 238014.02150537635, "total_median_ns": 191272.0, "total_std_ns": 101177.50166200365, "total_mad_ns": 56957.0, "total_cv": 0.42509050946697363, "total_min_ns": 108157.0, "total_max_ns": 473019.0, "total_p5_ns": 124513.0, "total_p25_ns": 152260.0, "total_p50_ns": 191272.0, "total_p75_ns": 319595.0, "total_p95_ns": 413684.6, "total_p99_ns": 437797.7199999999, "total_ci_low_ns": 217784.12231182796, "total_ci_high_ns": 258455.67311827955, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.947898905529339}, {"serializer": "kryo", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "5.6.2", "avg_time_ser_ns": 23965.79120879121, "avg_time_deser_ns": 17110.626373626375, "avg_time_total_ns": 41076.41758241758, "median_size_bytes": 46.0, "avg_ops_per_sec": 24344.86887746612, "min_ops_per_sec": 16680.288902603792, "max_ops_per_sec": 31889.788889597552, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 23965.79120879121, "ser_median_ns": 22807.0, "ser_std_ns": 4547.715176062428, "ser_mad_ns": 2755.0, "ser_cv": 0.1897586078607837, "ser_min_ns": 15982.0, "ser_max_ns": 37486.0, "ser_p5_ns": 18131.5, "ser_p25_ns": 20912.0, "ser_p50_ns": 22807.0, "ser_p75_ns": 26861.5, "ser_p95_ns": 31994.5, "ser_p99_ns": 34695.999999999985, "ser_ci_low_ns": 23048.93076923077, "ser_ci_high_ns": 24901.631043956044, "deser_mean_ns": 17110.626373626375, "deser_median_ns": 16771.0, "deser_std_ns": 2490.125997027958, "deser_mad_ns": 2021.0, "deser_cv": 0.1455309667018466, "deser_min_ns": 13368.0, "deser_max_ns": 25565.0, "deser_p5_ns": 13812.5, "deser_p25_ns": 14817.5, "deser_p50_ns": 16771.0, "deser_p75_ns": 18831.5, "deser_p95_ns": 20802.0, "deser_p99_ns": 23136.799999999985, "deser_ci_low_ns": 16610.97225274725, "deser_ci_high_ns": 17636.20851648352, "total_mean_ns": 41076.41758241758, "total_median_ns": 39383.0, "total_std_ns": 6562.716344905319, "total_mad_ns": 3982.0, "total_cv": 0.15976846889672372, "total_min_ns": 31358.0, "total_max_ns": 59951.0, "total_p5_ns": 32495.5, "total_p25_ns": 36515.0, "total_p50_ns": 39383.0, "total_p75_ns": 44495.0, "total_p95_ns": 53145.5, "total_p99_ns": 56674.99999999998, "total_ci_low_ns": 39746.92225274725, "total_ci_high_ns": 42422.63104395605, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.982316534040672, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.2768143098221003}, {"serializer": "fastjson2", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.0.57", "avg_time_ser_ns": 26035.96551724138, "avg_time_deser_ns": 23488.22988505747, "avg_time_total_ns": 49524.19540229885, "median_size_bytes": 158.0, "avg_ops_per_sec": 20192.150359571137, "min_ops_per_sec": 14050.864128143881, "max_ops_per_sec": 25642.340632852967, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 26035.96551724138, "ser_median_ns": 24950.0, "ser_std_ns": 4171.39257169224, "ser_mad_ns": 2420.0, "ser_cv": 0.1602165500230781, "ser_min_ns": 20019.0, "ser_max_ns": 38526.0, "ser_p5_ns": 21206.6, "ser_p25_ns": 22950.0, "ser_p50_ns": 24950.0, "ser_p75_ns": 28820.0, "ser_p95_ns": 34902.4, "ser_p99_ns": 37755.44, "ser_ci_low_ns": 25179.37011494253, "ser_ci_high_ns": 26933.922701149422, "deser_mean_ns": 23488.22988505747, "deser_median_ns": 22704.0, "deser_std_ns": 3039.530455251078, "deser_mad_ns": 1703.0, "deser_cv": 0.12940653553398415, "deser_min_ns": 18979.0, "deser_max_ns": 34086.0, "deser_p5_ns": 19890.8, "deser_p25_ns": 21373.0, "deser_p50_ns": 22704.0, "deser_p75_ns": 24840.0, "deser_p95_ns": 28870.2, "deser_p99_ns": 30910.88, "deser_ci_low_ns": 22872.255172413792, "deser_ci_high_ns": 24123.46408045977, "total_mean_ns": 49524.19540229885, "total_median_ns": 47654.0, "total_std_ns": 6617.677687301028, "total_mad_ns": 3834.0, "total_cv": 0.13362514289316132, "total_min_ns": 38998.0, "total_max_ns": 71170.0, "total_p5_ns": 40881.1, "total_p25_ns": 44477.5, "total_p50_ns": 47654.0, "total_p75_ns": 54063.0, "total_p95_ns": 61135.1, "total_p99_ns": 65273.840000000004, "total_ci_low_ns": 48177.8908045977, "total_ci_high_ns": 50912.22413793103, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.7570892830608225}, {"serializer": "fory", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "1.3.0", "avg_time_ser_ns": 16768.45882352941, "avg_time_deser_ns": 14593.658823529411, "avg_time_total_ns": 31362.117647058825, "median_size_bytes": 133.0, "avg_ops_per_sec": 31885.60196265258, "min_ops_per_sec": 21631.911395690924, "max_ops_per_sec": 39807.33251064846, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 16768.45882352941, "ser_median_ns": 15803.0, "ser_std_ns": 2820.731666113047, "ser_mad_ns": 1430.0, "ser_cv": 0.16821651266811782, "ser_min_ns": 13281.0, "ser_max_ns": 25107.0, "ser_p5_ns": 13549.0, "ser_p25_ns": 14798.0, "ser_p50_ns": 15803.0, "ser_p75_ns": 17998.0, "ser_p95_ns": 22395.2, "ser_p99_ns": 24091.439999999995, "ser_ci_low_ns": 16176.70205882353, "ser_ci_high_ns": 17387.29588235294, "deser_mean_ns": 14593.658823529411, "deser_median_ns": 13922.0, "deser_std_ns": 1974.6563206274243, "deser_mad_ns": 956.0, "deser_cv": 0.13530920138023772, "deser_min_ns": 11724.0, "deser_max_ns": 21121.0, "deser_p5_ns": 12196.8, "deser_p25_ns": 13419.0, "deser_p50_ns": 13922.0, "deser_p75_ns": 15499.0, "deser_p95_ns": 18089.399999999998, "deser_p99_ns": 21036.16, "deser_ci_low_ns": 14203.688823529412, "deser_ci_high_ns": 15007.375294117646, "total_mean_ns": 31362.117647058825, "total_median_ns": 29927.0, "total_std_ns": 4509.0713947704635, "total_mad_ns": 2406.0, "total_cv": 0.1437744557148337, "total_min_ns": 25121.0, "total_max_ns": 46228.0, "total_p5_ns": 25954.4, "total_p25_ns": 28214.0, "total_p50_ns": 29927.0, "total_p75_ns": 33569.0, "total_p95_ns": 39751.2, "total_p99_ns": 44533.719999999994, "total_ci_low_ns": 30453.47411764706, "total_ci_high_ns": 32311.24529411765, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.8340770791075051, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.9624908343875074}, {"serializer": "protostuff", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "1.8.0", "avg_time_ser_ns": 13467.057471264368, "avg_time_deser_ns": 9441.71264367816, "avg_time_total_ns": 22908.77011494253, "median_size_bytes": 52.0, "avg_ops_per_sec": 43651.40489788832, "min_ops_per_sec": 29497.654936432555, "max_ops_per_sec": 55700.99704784716, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 13467.057471264368, "ser_median_ns": 12975.0, "ser_std_ns": 2118.10690682781, "ser_mad_ns": 990.0, "ser_cv": 0.1572806020429754, "ser_min_ns": 10332.0, "ser_max_ns": 19773.0, "ser_p5_ns": 10787.0, "ser_p25_ns": 12142.5, "ser_p50_ns": 12975.0, "ser_p75_ns": 14101.0, "ser_p95_ns": 17605.9, "ser_p99_ns": 19379.12, "ser_ci_low_ns": 13044.396551724138, "ser_ci_high_ns": 13890.867528735633, "deser_mean_ns": 9441.71264367816, "deser_median_ns": 8974.0, "deser_std_ns": 1749.5528525620614, "deser_mad_ns": 912.0, "deser_cv": 0.18530037066246668, "deser_min_ns": 7273.0, "deser_max_ns": 14741.0, "deser_p5_ns": 7633.6, "deser_p25_ns": 8192.0, "deser_p50_ns": 8974.0, "deser_p75_ns": 10410.5, "deser_p95_ns": 12966.0, "deser_p99_ns": 14607.7, "deser_ci_low_ns": 9106.536494252874, "deser_ci_high_ns": 9819.302586206897, "total_mean_ns": 22908.77011494253, "total_median_ns": 21940.0, "total_std_ns": 3548.236888414555, "total_mad_ns": 1474.0, "total_cv": 0.15488552508980713, "total_min_ns": 17953.0, "total_max_ns": 33901.0, "total_p5_ns": 18258.7, "total_p25_ns": 20582.0, "total_p50_ns": 21940.0, "total_p75_ns": 24302.0, "total_p95_ns": 30367.500000000004, "total_p99_ns": 32574.02, "total_ci_low_ns": 22185.675, "total_ci_high_ns": 23658.993965517242, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.13106090632844497, "effect_vs_fastest_cliffs_label": "negligible", "effect_vs_fastest_hedges_g": 0.1056410352390879}, {"serializer": "dsl-json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.0.2", "avg_time_ser_ns": 37236.90804597701, "avg_time_deser_ns": 33920.28735632184, "avg_time_total_ns": 71157.19540229885, "median_size_bytes": 158.0, "avg_ops_per_sec": 14053.392553575732, "min_ops_per_sec": 8341.04880347655, "max_ops_per_sec": 19106.576483625664, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 37236.90804597701, "ser_median_ns": 34999.0, "ser_std_ns": 8071.7895203736325, "ser_mad_ns": 3516.0, "ser_cv": 0.2167685219838141, "ser_min_ns": 26553.0, "ser_max_ns": 62631.0, "ser_p5_ns": 28933.7, "ser_p25_ns": 31748.0, "ser_p50_ns": 34999.0, "ser_p75_ns": 40180.5, "ser_p95_ns": 52813.5, "ser_p99_ns": 60084.54, "ser_ci_low_ns": 35602.12614942528, "ser_ci_high_ns": 38921.93074712644, "deser_mean_ns": 33920.28735632184, "deser_median_ns": 30419.0, "deser_std_ns": 7611.409874453701, "deser_mad_ns": 2956.0, "deser_cv": 0.22439107884017195, "deser_min_ns": 24959.0, "deser_max_ns": 57258.0, "deser_p5_ns": 26287.4, "deser_p25_ns": 28487.5, "deser_p50_ns": 30419.0, "deser_p75_ns": 39546.5, "deser_p95_ns": 50566.2, "deser_p99_ns": 53796.5, "deser_ci_low_ns": 32425.99626436782, "deser_ci_high_ns": 35658.21235632184, "total_mean_ns": 71157.19540229885, "total_median_ns": 65710.0, "total_std_ns": 15201.82477024041, "total_mad_ns": 6653.0, "total_cv": 0.2136372110268597, "total_min_ns": 52338.0, "total_max_ns": 119889.0, "total_p5_ns": 54830.1, "total_p25_ns": 60748.5, "total_p50_ns": 65710.0, "total_p75_ns": 80088.0, "total_p95_ns": 103360.5, "total_p99_ns": 113527.58, "total_ci_low_ns": 68105.23218390805, "total_ci_high_ns": 74226.37040229885, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.322982892673937}, {"serializer": "protobuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "4.28.3", "avg_time_ser_ns": 11272.954022988506, "avg_time_deser_ns": 11205.6091954023, "avg_time_total_ns": 22478.563218390806, "median_size_bytes": 50.0, "avg_ops_per_sec": 44486.829086204736, "min_ops_per_sec": 28207.94900002821, "max_ops_per_sec": 70962.2480840193, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 11272.954022988506, "ser_median_ns": 10570.0, "ser_std_ns": 2734.1271891105625, "ser_mad_ns": 1276.0, "ser_cv": 0.24253866231823185, "ser_min_ns": 7520.0, "ser_max_ns": 20002.0, "ser_p5_ns": 8169.3, "ser_p25_ns": 9324.0, "ser_p50_ns": 10570.0, "ser_p75_ns": 11850.0, "ser_p95_ns": 17124.5, "ser_p99_ns": 19459.34, "ser_ci_low_ns": 10748.4908045977, "ser_ci_high_ns": 11846.41235632184, "deser_mean_ns": 11205.6091954023, "deser_median_ns": 10515.0, "deser_std_ns": 2202.8445371378757, "deser_mad_ns": 1043.0, "deser_cv": 0.1965840945123903, "deser_min_ns": 6572.0, "deser_max_ns": 17432.0, "deser_p5_ns": 8992.9, "deser_p25_ns": 9718.5, "deser_p50_ns": 10515.0, "deser_p75_ns": 12077.0, "deser_p95_ns": 16509.700000000004, "deser_p99_ns": 17238.5, "deser_ci_low_ns": 10771.789655172413, "deser_ci_high_ns": 11682.031896551724, "total_mean_ns": 22478.563218390806, "total_median_ns": 21600.0, "total_std_ns": 4504.329250071533, "total_mad_ns": 2466.0, "total_cv": 0.20038332549592505, "total_min_ns": 14092.0, "total_max_ns": 35451.0, "total_p5_ns": 17346.5, "total_p25_ns": 19048.0, "total_p50_ns": 21600.0, "total_p75_ns": 24013.0, "total_p95_ns": 33329.700000000004, "total_p99_ns": 35078.62, "total_ci_low_ns": 21589.27672413793, "total_ci_high_ns": 23492.799425287358, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "hessian", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "4.0.66", "avg_time_ser_ns": 21701.521739130436, "avg_time_deser_ns": 20766.467391304348, "avg_time_total_ns": 42467.989130434784, "median_size_bytes": 143.0, "avg_ops_per_sec": 23547.14740386301, "min_ops_per_sec": 13345.077001094296, "max_ops_per_sec": 38181.05456072697, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 21701.521739130436, "ser_median_ns": 19253.5, "ser_std_ns": 6329.5200579789125, "ser_mad_ns": 3354.0, "ser_cv": 0.29166249878993655, "ser_min_ns": 13181.0, "ser_max_ns": 41094.0, "ser_p5_ns": 15601.7, "ser_p25_ns": 16561.0, "ser_p50_ns": 19253.5, "ser_p75_ns": 25565.75, "ser_p95_ns": 34518.950000000004, "ser_p99_ns": 38000.91000000001, "ser_ci_low_ns": 20459.61277173913, "ser_ci_high_ns": 23080.140760869563, "deser_mean_ns": 20766.467391304348, "deser_median_ns": 18975.5, "deser_std_ns": 4901.163406293319, "deser_mad_ns": 2535.0, "deser_cv": 0.23601334372092622, "deser_min_ns": 13010.0, "deser_max_ns": 34655.0, "deser_p5_ns": 15625.15, "deser_p25_ns": 17233.0, "deser_p50_ns": 18975.5, "deser_p75_ns": 23185.75, "deser_p95_ns": 31306.950000000008, "deser_p99_ns": 34119.920000000006, "deser_ci_low_ns": 19771.040489130435, "deser_ci_high_ns": 21816.12581521739, "total_mean_ns": 42467.989130434784, "total_median_ns": 39016.0, "total_std_ns": 10549.018472642101, "total_mad_ns": 5901.0, "total_cv": 0.24839929294137741, "total_min_ns": 26191.0, "total_max_ns": 74934.0, "total_p5_ns": 31461.25, "total_p25_ns": 34056.75, "total_p50_ns": 39016.0, "total_p75_ns": 49195.75, "total_p95_ns": 61090.8, "total_p99_ns": 72047.48000000001, "total_ci_low_ns": 40393.46494565217, "total_ci_high_ns": 44682.48641304347, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.9630184907546226, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.430454446700493}, {"serializer": "avro", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "1.12.0", "avg_time_ser_ns": 29314.522727272728, "avg_time_deser_ns": 38447.079545454544, "avg_time_total_ns": 67761.60227272728, "median_size_bytes": 44.0, "avg_ops_per_sec": 14757.620340428113, "min_ops_per_sec": 9101.499927188, "max_ops_per_sec": 22534.703443302686, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 29314.522727272728, "ser_median_ns": 27868.5, "ser_std_ns": 7714.29160785174, "ser_mad_ns": 4795.5, "ser_cv": 0.26315596810569114, "ser_min_ns": 14020.0, "ser_max_ns": 50033.0, "ser_p5_ns": 20545.85, "ser_p25_ns": 23373.5, "ser_p50_ns": 27868.5, "ser_p75_ns": 33147.0, "ser_p95_ns": 45758.69999999998, "ser_p99_ns": 49511.0, "ser_ci_low_ns": 27755.457102272725, "ser_ci_high_ns": 31031.66477272727, "deser_mean_ns": 38447.079545454544, "deser_median_ns": 36169.0, "deser_std_ns": 8590.205223113648, "deser_mad_ns": 5434.0, "deser_cv": 0.2234293299952151, "deser_min_ns": 25375.0, "deser_max_ns": 62978.0, "deser_p5_ns": 28891.35, "deser_p25_ns": 31704.75, "deser_p50_ns": 36169.0, "deser_p75_ns": 44576.75, "deser_p95_ns": 54702.79999999999, "deser_p99_ns": 60683.80999999999, "deser_ci_low_ns": 36741.738068181825, "deser_ci_high_ns": 40202.77670454545, "total_mean_ns": 67761.60227272728, "total_median_ns": 62310.0, "total_std_ns": 15331.325282210937, "total_mad_ns": 9500.5, "total_cv": 0.22625387783047593, "total_min_ns": 44376.0, "total_max_ns": 109872.0, "total_p5_ns": 50142.8, "total_p25_ns": 55401.0, "total_p50_ns": 62310.0, "total_p75_ns": 76919.25, "total_p95_ns": 96843.5, "total_p99_ns": 105609.86999999998, "total_ci_low_ns": 64639.74318181818, "total_ci_high_ns": 71033.76761363636, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.98061002470063}, {"serializer": "jackson-cbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 32326.777777777777, "avg_time_deser_ns": 40262.666666666664, "avg_time_total_ns": 72589.44444444444, "median_size_bytes": 115.0, "avg_ops_per_sec": 13776.107637321007, "min_ops_per_sec": 7291.340075392456, "max_ops_per_sec": 28112.78850749206, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 32326.777777777777, "ser_median_ns": 29574.5, "ser_std_ns": 11120.55623737923, "ser_mad_ns": 7681.0, "ser_cv": 0.34400447560300224, "ser_min_ns": 16146.0, "ser_max_ns": 64971.0, "ser_p5_ns": 18814.15, "ser_p25_ns": 22977.75, "ser_p50_ns": 29574.5, "ser_p75_ns": 39799.25, "ser_p95_ns": 51643.899999999994, "ser_p99_ns": 64603.43, "ser_ci_low_ns": 30034.379722222224, "ser_ci_high_ns": 34647.295000000006, "deser_mean_ns": 40262.666666666664, "deser_median_ns": 34932.0, "deser_std_ns": 15145.03526097512, "deser_mad_ns": 8707.5, "deser_cv": 0.37615579182472897, "deser_min_ns": 19094.0, "deser_max_ns": 83503.0, "deser_p5_ns": 21914.9, "deser_p25_ns": 28384.25, "deser_p50_ns": 34932.0, "deser_p75_ns": 49050.25, "deser_p95_ns": 72544.3, "deser_p99_ns": 77317.5, "deser_ci_low_ns": 37143.37027777778, "deser_ci_high_ns": 43449.949166666665, "total_mean_ns": 72589.44444444444, "total_median_ns": 64619.5, "total_std_ns": 24890.137022348048, "total_mad_ns": 16210.0, "total_cv": 0.3428892067275353, "total_min_ns": 35571.0, "total_max_ns": 137149.0, "total_p5_ns": 41226.3, "total_p25_ns": 52844.25, "total_p50_ns": 64619.5, "total_p75_ns": 89479.75, "total_p95_ns": 119301.74999999999, "total_p99_ns": 133543.61, "total_ci_low_ns": 67654.12194444444, "total_ci_high_ns": 77630.96527777777, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.767550538267255}, {"serializer": "bson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "5.3.1", "avg_time_ser_ns": 43665.782608695656, "avg_time_deser_ns": 48169.663043478264, "avg_time_total_ns": 91835.44565217392, "median_size_bytes": 134.0, "avg_ops_per_sec": 10889.041730003606, "min_ops_per_sec": 5038.138710034965, "max_ops_per_sec": 20670.98001116233, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 43665.782608695656, "ser_median_ns": 36529.5, "ser_std_ns": 17806.70574072692, "ser_mad_ns": 8112.0, "ser_cv": 0.40779541043152795, "ser_min_ns": 23621.0, "ser_max_ns": 97135.0, "ser_p5_ns": 26874.5, "ser_p25_ns": 29718.25, "ser_p50_ns": 36529.5, "ser_p75_ns": 54648.75, "ser_p95_ns": 81033.45000000001, "ser_p99_ns": 90917.88000000002, "ser_ci_low_ns": 40302.15543478261, "ser_ci_high_ns": 47461.84755434782, "deser_mean_ns": 48169.663043478264, "deser_median_ns": 42400.0, "deser_std_ns": 19258.322711348552, "deser_mad_ns": 12796.0, "deser_cv": 0.39980189801132426, "deser_min_ns": 24756.0, "deser_max_ns": 101351.0, "deser_p5_ns": 27674.6, "deser_p25_ns": 32051.75, "deser_p50_ns": 42400.0, "deser_p75_ns": 60951.0, "deser_p95_ns": 87217.30000000002, "deser_p99_ns": 95698.99000000002, "deser_ci_low_ns": 44353.67717391304, "deser_ci_high_ns": 52129.95298913043, "total_mean_ns": 91835.44565217392, "total_median_ns": 77325.5, "total_std_ns": 35473.97323634383, "total_mad_ns": 20296.0, "total_cv": 0.38627757489957903, "total_min_ns": 48377.0, "total_max_ns": 198486.0, "total_p5_ns": 54869.5, "total_p25_ns": 62792.0, "total_p50_ns": 77325.5, "total_p75_ns": 116663.5, "total_p95_ns": 163171.45, "total_p99_ns": 173018.7400000001, "total_ci_low_ns": 84598.24673913044, "total_ci_high_ns": 99357.91086956522, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.694729687585112}, {"serializer": "gson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.12.1", "avg_time_ser_ns": 34920.684782608696, "avg_time_deser_ns": 34315.61956521739, "avg_time_total_ns": 69236.30434782608, "median_size_bytes": 158.0, "avg_ops_per_sec": 14443.289679013587, "min_ops_per_sec": 7808.473755719707, "max_ops_per_sec": 30016.509079993997, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 34920.684782608696, "ser_median_ns": 28769.0, "ser_std_ns": 13799.345709070674, "ser_mad_ns": 7173.0, "ser_cv": 0.39516251742987196, "ser_min_ns": 15035.0, "ser_max_ns": 68874.0, "ser_p5_ns": 20762.85, "ser_p25_ns": 23533.75, "ser_p50_ns": 28769.0, "ser_p75_ns": 45920.0, "ser_p95_ns": 61235.10000000001, "ser_p99_ns": 68282.5, "ser_ci_low_ns": 32386.466032608696, "ser_ci_high_ns": 37757.44320652173, "deser_mean_ns": 34315.61956521739, "deser_median_ns": 30123.5, "deser_std_ns": 11065.922841146436, "deser_mad_ns": 7062.0, "deser_cv": 0.3224748083045818, "deser_min_ns": 18280.0, "deser_max_ns": 68995.0, "deser_p5_ns": 21510.8, "deser_p25_ns": 25827.0, "deser_p50_ns": 30123.5, "deser_p75_ns": 42722.0, "deser_p95_ns": 53031.55, "deser_p99_ns": 60074.27000000003, "deser_ci_low_ns": 32157.130706521737, "deser_ci_high_ns": 36558.19891304348, "total_mean_ns": 69236.30434782608, "total_median_ns": 60325.5, "total_std_ns": 23808.118823803205, "total_mad_ns": 14931.0, "total_cv": 0.34386755688456594, "total_min_ns": 33315.0, "total_max_ns": 128066.0, "total_p5_ns": 43057.4, "total_p25_ns": 49602.0, "total_p50_ns": 60325.5, "total_p75_ns": 87164.75, "total_p95_ns": 112820.55000000002, "total_p99_ns": 123874.54000000002, "total_ci_low_ns": 64364.948369565216, "total_ci_high_ns": 74148.58288043478, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.9987506246876562, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.6824005409816607}, {"serializer": "jsoniter", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "0.9.23", "avg_time_ser_ns": 15647.41573033708, "avg_time_deser_ns": 14252.651685393259, "avg_time_total_ns": 29900.067415730337, "median_size_bytes": 150.0, "avg_ops_per_sec": 33444.74064543089, "min_ops_per_sec": 21413.276231263382, "max_ops_per_sec": 54436.58138268917, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 15647.41573033708, "ser_median_ns": 14811.0, "ser_std_ns": 3244.965855714008, "ser_mad_ns": 1903.0, "ser_cv": 0.20738030558124018, "ser_min_ns": 9109.0, "ser_max_ns": 24946.0, "ser_p5_ns": 12029.2, "ser_p25_ns": 13107.0, "ser_p50_ns": 14811.0, "ser_p75_ns": 17031.0, "ser_p95_ns": 21554.0, "ser_p99_ns": 23253.76000000001, "ser_ci_low_ns": 15002.283988764046, "ser_ci_high_ns": 16336.101966292135, "deser_mean_ns": 14252.651685393259, "deser_median_ns": 13046.0, "deser_std_ns": 3075.2436566478455, "deser_mad_ns": 1416.0, "deser_cv": 0.21576642189323195, "deser_min_ns": 9261.0, "deser_max_ns": 23677.0, "deser_p5_ns": 11114.4, "deser_p25_ns": 12049.0, "deser_p50_ns": 13046.0, "deser_p75_ns": 15406.0, "deser_p95_ns": 19732.2, "deser_p99_ns": 23264.280000000002, "deser_ci_low_ns": 13679.730056179777, "deser_ci_high_ns": 14916.969382022473, "total_mean_ns": 29900.067415730337, "total_median_ns": 28026.0, "total_std_ns": 5998.934874772946, "total_mad_ns": 3287.0, "total_cv": 0.20063282103561159, "total_min_ns": 18370.0, "total_max_ns": 46700.0, "total_p5_ns": 23704.8, "total_p25_ns": 25539.0, "total_p50_ns": 28026.0, "total_p75_ns": 32437.0, "total_p95_ns": 42425.99999999999, "total_p99_ns": 45959.04, "total_ci_low_ns": 28683.928651685394, "total_ci_high_ns": 31153.97191011236, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.731886865555986, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.3908192944280864}, {"serializer": "jackson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 38500.90217391304, "avg_time_deser_ns": 52637.065217391304, "avg_time_total_ns": 91137.96739130435, "median_size_bytes": 158.0, "avg_ops_per_sec": 10972.375494248865, "min_ops_per_sec": 5959.333508140449, "max_ops_per_sec": 22735.540196435068, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 38500.90217391304, "ser_median_ns": 36386.0, "ser_std_ns": 12130.985905287373, "ser_mad_ns": 8813.5, "ser_cv": 0.31508315962286554, "ser_min_ns": 19714.0, "ser_max_ns": 72470.0, "ser_p5_ns": 21592.1, "ser_p25_ns": 29856.0, "ser_p50_ns": 36386.0, "ser_p75_ns": 45793.0, "ser_p95_ns": 60826.65, "ser_p99_ns": 71731.99, "ser_ci_low_ns": 36204.888315217395, "ser_ci_high_ns": 40924.4679347826, "deser_mean_ns": 52637.065217391304, "deser_median_ns": 51384.5, "deser_std_ns": 18781.95296157045, "deser_mad_ns": 13959.5, "deser_cv": 0.35681991167252397, "deser_min_ns": 24270.0, "deser_max_ns": 103161.0, "deser_p5_ns": 27953.95, "deser_p25_ns": 38231.0, "deser_p50_ns": 51384.5, "deser_p75_ns": 65294.5, "deser_p95_ns": 87161.65000000001, "deser_p99_ns": 97844.78000000001, "deser_ci_low_ns": 48927.887500000004, "deser_ci_high_ns": 56636.418478260865, "total_mean_ns": 91137.96739130435, "total_median_ns": 88807.0, "total_std_ns": 28647.986360186474, "total_mad_ns": 21495.0, "total_cv": 0.3143364634980858, "total_min_ns": 43984.0, "total_max_ns": 167804.0, "total_p5_ns": 51484.9, "total_p25_ns": 69180.0, "total_p50_ns": 88807.0, "total_p75_ns": 111169.75, "total_p95_ns": 137823.75, "total_p99_ns": 163734.48, "total_ci_low_ns": 85398.50951086957, "total_ci_high_ns": 97121.72309782608, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.290108727640051}, {"serializer": "java-serialization", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "21.0.11", "avg_time_ser_ns": 43246.16483516483, "avg_time_deser_ns": 72321.94505494506, "avg_time_total_ns": 115568.10989010989, "median_size_bytes": 206.0, "avg_ops_per_sec": 8652.906073750526, "min_ops_per_sec": 5313.2704242115105, "max_ops_per_sec": 12404.94709290065, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 43246.16483516483, "ser_median_ns": 38822.0, "ser_std_ns": 12875.084276111436, "ser_mad_ns": 7847.0, "ser_cv": 0.2977162096381387, "ser_min_ns": 24685.0, "ser_max_ns": 81591.0, "ser_p5_ns": 27870.0, "ser_p25_ns": 32851.5, "ser_p50_ns": 38822.0, "ser_p75_ns": 51693.5, "ser_p95_ns": 67089.5, "ser_p99_ns": 80044.79999999999, "ser_ci_low_ns": 40699.89752747253, "ser_ci_high_ns": 45862.96153846154, "deser_mean_ns": 72321.94505494506, "deser_median_ns": 67970.0, "deser_std_ns": 14727.701835024767, "deser_mad_ns": 8295.0, "deser_cv": 0.20364084267694557, "deser_min_ns": 52502.0, "deser_max_ns": 111666.0, "deser_p5_ns": 56661.0, "deser_p25_ns": 61265.0, "deser_p50_ns": 67970.0, "deser_p75_ns": 78551.5, "deser_p95_ns": 106890.5, "deser_p99_ns": 111203.4, "deser_ci_low_ns": 69427.78406593407, "deser_ci_high_ns": 75348.4923076923, "total_mean_ns": 115568.10989010989, "total_median_ns": 108026.0, "total_std_ns": 25970.697535000032, "total_mad_ns": 15866.0, "total_cv": 0.22472200644013957, "total_min_ns": 80613.0, "total_max_ns": 188208.0, "total_p5_ns": 86106.5, "total_p25_ns": 97711.0, "total_p50_ns": 108026.0, "total_p75_ns": 132639.0, "total_p95_ns": 169077.0, "total_p99_ns": 180796.49999999994, "total_ci_low_ns": 110340.45467032968, "total_ci_high_ns": 120799.8467032967, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.920864572620153}, {"serializer": "moshi", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "1.15.2", "avg_time_ser_ns": 33896.54838709677, "avg_time_deser_ns": 42005.07526881721, "avg_time_total_ns": 75901.62365591398, "median_size_bytes": 158.0, "avg_ops_per_sec": 13174.948727491203, "min_ops_per_sec": 6445.957095709571, "max_ops_per_sec": 22810.739296060587, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 33896.54838709677, "ser_median_ns": 29000.0, "ser_std_ns": 12392.445131502787, "ser_mad_ns": 6619.0, "ser_cv": 0.36559607751154266, "ser_min_ns": 19918.0, "ser_max_ns": 65986.0, "ser_p5_ns": 21219.6, "ser_p25_ns": 24005.0, "ser_p50_ns": 29000.0, "ser_p75_ns": 43597.0, "ser_p95_ns": 57975.4, "ser_p99_ns": 64382.439999999995, "ser_ci_low_ns": 31364.76935483871, "ser_ci_high_ns": 36582.90806451613, "deser_mean_ns": 42005.07526881721, "deser_median_ns": 36099.0, "deser_std_ns": 17141.605814405106, "deser_mad_ns": 10966.0, "deser_cv": 0.408084158990433, "deser_min_ns": 23341.0, "deser_max_ns": 97165.0, "deser_p5_ns": 24582.2, "deser_p25_ns": 27315.0, "deser_p50_ns": 36099.0, "deser_p75_ns": 54741.0, "deser_p95_ns": 73314.3999999999, "deser_p99_ns": 90948.55999999998, "deser_ci_low_ns": 38748.82150537635, "deser_ci_high_ns": 45565.28897849462, "total_mean_ns": 75901.62365591398, "total_median_ns": 64711.0, "total_std_ns": 28166.168005757634, "total_mad_ns": 15733.0, "total_cv": 0.37108781932575996, "total_min_ns": 43839.0, "total_max_ns": 155136.0, "total_p5_ns": 46453.4, "total_p25_ns": 51286.0, "total_p50_ns": 64711.0, "total_p75_ns": 95958.0, "total_p95_ns": 126914.59999999999, "total_p99_ns": 143709.59999999998, "total_ci_low_ns": 70402.01424731183, "total_ci_high_ns": 81959.0693548387, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.596274455134169}, {"serializer": "msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "0.9.8", "avg_time_ser_ns": 43274.882978723406, "avg_time_deser_ns": 41950.44680851064, "avg_time_total_ns": 85225.32978723405, "median_size_bytes": 114.0, "avg_ops_per_sec": 11733.600826145357, "min_ops_per_sec": 5981.612523103979, "max_ops_per_sec": 23856.10000477122, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 43274.882978723406, "ser_median_ns": 36847.5, "ser_std_ns": 16447.962283083238, "ser_mad_ns": 8497.0, "ser_cv": 0.38008103433046986, "ser_min_ns": 22432.0, "ser_max_ns": 84757.0, "ser_p5_ns": 25438.5, "ser_p25_ns": 30880.25, "ser_p50_ns": 36847.5, "ser_p75_ns": 52735.25, "ser_p95_ns": 76511.04999999999, "ser_p99_ns": 83149.02999999998, "ser_ci_low_ns": 40202.58909574468, "ser_ci_high_ns": 46592.168351063825, "deser_mean_ns": 41950.44680851064, "deser_median_ns": 34182.5, "deser_std_ns": 18402.610272784103, "deser_mad_ns": 9527.5, "deser_cv": 0.43867495277906543, "deser_min_ns": 19130.0, "deser_max_ns": 88491.0, "deser_p5_ns": 21775.95, "deser_p25_ns": 27511.75, "deser_p50_ns": 34182.5, "deser_p75_ns": 55513.0, "deser_p95_ns": 76725.59999999999, "deser_p99_ns": 84454.79999999997, "deser_ci_low_ns": 38416.489627659575, "deser_ci_high_ns": 45941.55079787234, "total_mean_ns": 85225.32978723405, "total_median_ns": 72350.0, "total_std_ns": 33688.52196778514, "total_mad_ns": 19771.5, "total_cv": 0.39528766919281977, "total_min_ns": 41918.0, "total_max_ns": 167179.0, "total_p5_ns": 48596.05, "total_p25_ns": 58622.75, "total_p50_ns": 72350.0, "total_p75_ns": 108456.5, "total_p95_ns": 151518.99999999997, "total_p99_ns": 164387.13999999998, "total_ci_low_ns": 78444.86170212766, "total_ci_high_ns": 92132.10638297872, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.5521604217795257}, {"serializer": "gson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.12.1", "avg_time_ser_ns": 37669.8023255814, "avg_time_deser_ns": 29413.3488372093, "avg_time_total_ns": 67083.1511627907, "median_size_bytes": 158.0, "avg_ops_per_sec": 14906.872779027624, "min_ops_per_sec": 10666.211574972802, "max_ops_per_sec": 19249.2781520693, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 37669.8023255814, "ser_median_ns": 36350.0, "ser_std_ns": 5603.0605057462435, "ser_mad_ns": 3621.0, "ser_cv": 0.14874143637173348, "ser_min_ns": 28800.0, "ser_max_ns": 53375.0, "ser_p5_ns": 30407.75, "ser_p25_ns": 33796.25, "ser_p50_ns": 36350.0, "ser_p75_ns": 40875.5, "ser_p95_ns": 49637.75, "ser_p99_ns": 52260.65000000001, "ser_ci_low_ns": 36528.950000000004, "ser_ci_high_ns": 38923.78895348837, "deser_mean_ns": 29413.3488372093, "deser_median_ns": 28185.5, "deser_std_ns": 5380.303376024204, "deser_mad_ns": 2993.0, "deser_cv": 0.18292046260362782, "deser_min_ns": 22320.0, "deser_max_ns": 44201.0, "deser_p5_ns": 23174.5, "deser_p25_ns": 25165.5, "deser_p50_ns": 28185.5, "deser_p75_ns": 31069.75, "deser_p95_ns": 41126.5, "deser_p99_ns": 43777.700000000004, "deser_ci_low_ns": 28294.736337209302, "deser_ci_high_ns": 30589.035465116278, "total_mean_ns": 67083.1511627907, "total_median_ns": 65797.0, "total_std_ns": 9868.396510211947, "total_mad_ns": 6228.5, "total_cv": 0.1471069313107297, "total_min_ns": 51950.0, "total_max_ns": 93754.0, "total_p5_ns": 55033.25, "total_p25_ns": 59516.25, "total_p50_ns": 65797.0, "total_p75_ns": 71839.25, "total_p95_ns": 87235.0, "total_p99_ns": 92108.40000000001, "total_ci_low_ns": 65049.8613372093, "total_ci_high_ns": 69166.30959302325, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.897688482139802}, {"serializer": "kryo", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "5.6.2", "avg_time_ser_ns": 16295.780487804877, "avg_time_deser_ns": 12300.024390243903, "avg_time_total_ns": 28595.80487804878, "median_size_bytes": 46.0, "avg_ops_per_sec": 34970.16447918337, "min_ops_per_sec": 25266.562231542775, "max_ops_per_sec": 47067.68332862657, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 16295.780487804877, "ser_median_ns": 16256.0, "ser_std_ns": 2408.3274664769765, "ser_mad_ns": 1267.0, "ser_cv": 0.14778840867912243, "ser_min_ns": 11941.0, "ser_max_ns": 23226.0, "ser_p5_ns": 12718.9, "ser_p25_ns": 14957.25, "ser_p50_ns": 16256.0, "ser_p75_ns": 17348.75, "ser_p95_ns": 21394.100000000002, "ser_p99_ns": 22895.52, "ser_ci_low_ns": 15801.399085365852, "ser_ci_high_ns": 16818.436890243902, "deser_mean_ns": 12300.024390243903, "deser_median_ns": 12367.5, "deser_std_ns": 1485.7565639427633, "deser_mad_ns": 783.5, "deser_cv": 0.1207929770546822, "deser_min_ns": 9228.0, "deser_max_ns": 16352.0, "deser_p5_ns": 9991.35, "deser_p25_ns": 11437.0, "deser_p50_ns": 12367.5, "deser_p75_ns": 13045.25, "deser_p95_ns": 14902.900000000001, "deser_p99_ns": 16051.49, "deser_ci_low_ns": 11990.750304878049, "deser_ci_high_ns": 12613.426524390243, "total_mean_ns": 28595.80487804878, "total_median_ns": 28694.5, "total_std_ns": 3754.6322317938534, "total_mad_ns": 1956.0, "total_cv": 0.1313001067046744, "total_min_ns": 21246.0, "total_max_ns": 39578.0, "total_p5_ns": 22716.55, "total_p25_ns": 26409.25, "total_p50_ns": 28694.5, "total_p75_ns": 30423.0, "total_p95_ns": 36271.55, "total_p99_ns": 38776.909999999996, "total_ci_low_ns": 27780.243292682928, "total_ci_high_ns": 29350.745426829268, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.744794765020821, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.6080032352239706}, {"serializer": "dsl-json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.0.2", "avg_time_ser_ns": 27463.571428571428, "avg_time_deser_ns": 26122.154761904763, "avg_time_total_ns": 53585.72619047619, "median_size_bytes": 158.0, "avg_ops_per_sec": 18661.68607000665, "min_ops_per_sec": 13132.666193890684, "max_ops_per_sec": 25414.25231269696, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 27463.571428571428, "ser_median_ns": 26846.0, "ser_std_ns": 4396.9097507547585, "ser_mad_ns": 2712.5, "ser_cv": 0.1600997074320961, "ser_min_ns": 18894.0, "ser_max_ns": 39993.0, "ser_p5_ns": 21517.65, "ser_p25_ns": 24416.25, "ser_p50_ns": 26846.0, "ser_p75_ns": 29891.5, "ser_p95_ns": 35395.5, "ser_p99_ns": 39047.630000000005, "ser_ci_low_ns": 26563.641964285714, "ser_ci_high_ns": 28416.465773809527, "deser_mean_ns": 26122.154761904763, "deser_median_ns": 25663.0, "deser_std_ns": 2990.0077224949537, "deser_mad_ns": 1613.0, "deser_cv": 0.11446252232053347, "deser_min_ns": 20265.0, "deser_max_ns": 36153.0, "deser_p5_ns": 22489.75, "deser_p25_ns": 24110.75, "deser_p50_ns": 25663.0, "deser_p75_ns": 27261.0, "deser_p95_ns": 32258.499999999993, "deser_p99_ns": 34479.72, "deser_ci_low_ns": 25497.31101190476, "deser_ci_high_ns": 26760.73601190476, "total_mean_ns": 53585.72619047619, "total_median_ns": 52767.5, "total_std_ns": 7086.724735612492, "total_mad_ns": 4063.5, "total_cv": 0.1322502322805512, "total_min_ns": 39348.0, "total_max_ns": 76146.0, "total_p5_ns": 44635.35, "total_p25_ns": 48779.75, "total_p50_ns": 52767.5, "total_p75_ns": 57044.75, "total_p95_ns": 66455.49999999999, "total_p99_ns": 73294.95000000001, "total_ci_low_ns": 52216.299999999996, "total_ci_high_ns": 55153.347916666666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.4531838162139055}, {"serializer": "msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "0.9.8", "avg_time_ser_ns": 25228.048192771083, "avg_time_deser_ns": 21997.55421686747, "avg_time_total_ns": 47225.60240963855, "median_size_bytes": 114.0, "avg_ops_per_sec": 21174.954875660922, "min_ops_per_sec": 14393.66678661389, "max_ops_per_sec": 27374.76047084588, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 25228.048192771083, "ser_median_ns": 24248.0, "ser_std_ns": 4134.958742542322, "ser_mad_ns": 1917.0, "ser_cv": 0.16390323622923653, "ser_min_ns": 20137.0, "ser_max_ns": 38011.0, "ser_p5_ns": 20686.7, "ser_p25_ns": 22509.0, "ser_p50_ns": 24248.0, "ser_p75_ns": 26768.0, "ser_p95_ns": 35216.89999999998, "ser_p99_ns": 37493.579999999994, "ser_ci_low_ns": 24352.2406626506, "ser_ci_high_ns": 26146.148493975903, "deser_mean_ns": 21997.55421686747, "deser_median_ns": 21102.0, "deser_std_ns": 3654.4360755883076, "deser_mad_ns": 2210.0, "deser_cv": 0.16612919961738876, "deser_min_ns": 16202.0, "deser_max_ns": 33430.0, "deser_p5_ns": 17515.6, "deser_p25_ns": 19597.0, "deser_p50_ns": 21102.0, "deser_p75_ns": 23623.5, "deser_p95_ns": 29297.8, "deser_p99_ns": 32335.29999999999, "deser_ci_low_ns": 21217.692771084337, "deser_ci_high_ns": 22824.99186746988, "total_mean_ns": 47225.60240963855, "total_median_ns": 46244.0, "total_std_ns": 7010.4637210313385, "total_mad_ns": 3490.0, "total_cv": 0.14844625295029654, "total_min_ns": 36530.0, "total_max_ns": 69475.0, "total_p5_ns": 38511.0, "total_p25_ns": 42587.5, "total_p50_ns": 46244.0, "total_p75_ns": 49223.0, "total_p95_ns": 60544.39999999999, "total_p99_ns": 67951.43999999999, "total_ci_low_ns": 45782.98734939759, "total_ci_high_ns": 48756.364457831325, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.3777136287773395}, {"serializer": "moshi", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "1.15.2", "avg_time_ser_ns": 19193.77108433735, "avg_time_deser_ns": 30438.518072289156, "avg_time_total_ns": 49632.2891566265, "median_size_bytes": 158.0, "avg_ops_per_sec": 20148.174041383867, "min_ops_per_sec": 11287.955751213456, "max_ops_per_sec": 40663.63044892648, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 19193.77108433735, "ser_median_ns": 18570.0, "ser_std_ns": 3830.6530753311417, "ser_mad_ns": 2187.0, "ser_cv": 0.19957792861544862, "ser_min_ns": 11062.0, "ser_max_ns": 31266.0, "ser_p5_ns": 15316.4, "ser_p25_ns": 16385.5, "ser_p50_ns": 18570.0, "ser_p75_ns": 20838.0, "ser_p95_ns": 26776.699999999997, "ser_p99_ns": 30953.579999999998, "ser_ci_low_ns": 18387.11596385542, "ser_ci_high_ns": 20026.06325301205, "deser_mean_ns": 30438.518072289156, "deser_median_ns": 26471.0, "deser_std_ns": 10953.133548031397, "deser_mad_ns": 3690.0, "deser_cv": 0.3598445076077141, "deser_min_ns": 13530.0, "deser_max_ns": 61792.0, "deser_p5_ns": 19167.6, "deser_p25_ns": 23677.5, "deser_p50_ns": 26471.0, "deser_p75_ns": 33719.5, "deser_p95_ns": 55086.19999999998, "deser_p99_ns": 61336.079999999994, "deser_ci_low_ns": 28201.422891566264, "deser_ci_high_ns": 32871.60753012048, "total_mean_ns": 49632.2891566265, "total_median_ns": 45785.0, "total_std_ns": 13330.29921857841, "total_mad_ns": 6639.0, "total_cv": 0.26858118867964115, "total_min_ns": 24592.0, "total_max_ns": 88590.0, "total_p5_ns": 34656.7, "total_p25_ns": 40170.5, "total_p50_ns": 45785.0, "total_p75_ns": 57208.0, "total_p95_ns": 73820.59999999999, "total_p99_ns": 87037.73999999999, "total_ci_low_ns": 46889.05481927711, "total_ci_high_ns": 52470.31506024096, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9926535409932412, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.7441066864510653}, {"serializer": "protobuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "4.28.3", "avg_time_ser_ns": 11707.976744186046, "avg_time_deser_ns": 12837.651162790698, "avg_time_total_ns": 24545.627906976744, "median_size_bytes": 50.0, "avg_ops_per_sec": 40740.45299593922, "min_ops_per_sec": 27434.08959973663, "max_ops_per_sec": 51781.275890637946, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 11707.976744186046, "ser_median_ns": 10898.5, "ser_std_ns": 2415.38026223978, "ser_mad_ns": 924.0, "ser_cv": 0.20630210624899056, "ser_min_ns": 8827.0, "ser_max_ns": 18640.0, "ser_p5_ns": 9323.75, "ser_p25_ns": 10083.25, "ser_p50_ns": 10898.5, "ser_p75_ns": 12095.75, "ser_p95_ns": 17689.0, "ser_p99_ns": 18564.350000000002, "ser_ci_low_ns": 11237.612500000001, "ser_ci_high_ns": 12263.6, "deser_mean_ns": 12837.651162790698, "deser_median_ns": 12208.0, "deser_std_ns": 2035.6953763066513, "deser_mad_ns": 1038.5, "deser_cv": 0.15857226142793274, "deser_min_ns": 10284.0, "deser_max_ns": 18969.0, "deser_p5_ns": 10608.5, "deser_p25_ns": 11259.0, "deser_p50_ns": 12208.0, "deser_p75_ns": 13586.25, "deser_p95_ns": 17482.5, "deser_p99_ns": 18741.2, "deser_ci_low_ns": 12433.572674418605, "deser_ci_high_ns": 13286.292151162792, "total_mean_ns": 24545.627906976744, "total_median_ns": 23019.0, "total_std_ns": 3998.549663672954, "total_mad_ns": 2018.0, "total_cv": 0.16290272462479655, "total_min_ns": 19312.0, "total_max_ns": 36451.0, "total_p5_ns": 20274.5, "total_p25_ns": 21533.75, "total_p50_ns": 23019.0, "total_p75_ns": 26729.0, "total_p95_ns": 31652.0, "total_p99_ns": 36241.9, "total_ci_low_ns": 23717.201744186044, "total_ci_high_ns": 25402.632558139532, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.3048780487804878, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.49911239627586024}, {"serializer": "fory", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "1.3.0", "avg_time_ser_ns": 14779.80459770115, "avg_time_deser_ns": 12890.32183908046, "avg_time_total_ns": 27670.126436781607, "median_size_bytes": 133.0, "avg_ops_per_sec": 36140.0589290662, "min_ops_per_sec": 22799.817601459188, "max_ops_per_sec": 57355.89331803843, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 14779.80459770115, "ser_median_ns": 14122.0, "ser_std_ns": 3412.885605913035, "ser_mad_ns": 1934.0, "ser_cv": 0.23091547546196078, "ser_min_ns": 9012.0, "ser_max_ns": 24530.0, "ser_p5_ns": 11147.3, "ser_p25_ns": 12338.0, "ser_p50_ns": 14122.0, "ser_p75_ns": 16098.5, "ser_p95_ns": 22406.1, "ser_p99_ns": 24204.920000000002, "ser_ci_low_ns": 14127.310344827585, "ser_ci_high_ns": 15506.397701149426, "deser_mean_ns": 12890.32183908046, "deser_median_ns": 12290.0, "deser_std_ns": 2634.117024709864, "deser_mad_ns": 1295.0, "deser_cv": 0.20434842958876584, "deser_min_ns": 8423.0, "deser_max_ns": 20899.0, "deser_p5_ns": 10122.6, "deser_p25_ns": 11051.5, "deser_p50_ns": 12290.0, "deser_p75_ns": 13727.0, "deser_p95_ns": 18495.300000000003, "deser_p99_ns": 19961.600000000002, "deser_ci_low_ns": 12361.199137931035, "deser_ci_high_ns": 13456.699137931035, "total_mean_ns": 27670.126436781607, "total_median_ns": 26647.0, "total_std_ns": 5381.454557853894, "total_mad_ns": 3383.0, "total_cv": 0.19448608484493163, "total_min_ns": 17435.0, "total_max_ns": 43860.0, "total_p5_ns": 21441.9, "total_p25_ns": 23618.0, "total_p50_ns": 26647.0, "total_p75_ns": 30892.0, "total_p95_ns": 37525.100000000006, "total_p99_ns": 40879.240000000005, "total_ci_low_ns": 26576.341954022988, "total_ci_high_ns": 28852.90344827586, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.5873282870759742, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.087215156539213}, {"serializer": "jackson-smile", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 18498.464285714286, "avg_time_deser_ns": 21739.666666666668, "avg_time_total_ns": 40238.130952380954, "median_size_bytes": 119.0, "avg_ops_per_sec": 24852.04894788555, "min_ops_per_sec": 17964.93245185398, "max_ops_per_sec": 35775.615340583856, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 18498.464285714286, "ser_median_ns": 18570.0, "ser_std_ns": 2365.1412217263314, "ser_mad_ns": 1682.0, "ser_cv": 0.12785608498067846, "ser_min_ns": 13048.0, "ser_max_ns": 26408.0, "ser_p5_ns": 15075.15, "ser_p25_ns": 16745.75, "ser_p50_ns": 18570.0, "ser_p75_ns": 20093.0, "ser_p95_ns": 22140.6, "ser_p99_ns": 23932.110000000004, "ser_ci_low_ns": 18007.23482142857, "ser_ci_high_ns": 18986.548214285714, "deser_mean_ns": 21739.666666666668, "deser_median_ns": 21482.5, "deser_std_ns": 2739.955515131514, "deser_mad_ns": 1777.5, "deser_cv": 0.12603484483654367, "deser_min_ns": 14904.0, "deser_max_ns": 30699.0, "deser_p5_ns": 18065.85, "deser_p25_ns": 19762.25, "deser_p50_ns": 21482.5, "deser_p75_ns": 23412.5, "deser_p95_ns": 26395.849999999995, "deser_p99_ns": 29501.31, "deser_ci_low_ns": 21150.2875, "deser_ci_high_ns": 22345.192857142854, "total_mean_ns": 40238.130952380954, "total_median_ns": 40510.0, "total_std_ns": 4899.467809259508, "total_mad_ns": 3203.0, "total_cv": 0.12176181381430685, "total_min_ns": 27952.0, "total_max_ns": 55664.0, "total_p5_ns": 33003.7, "total_p25_ns": 36518.25, "total_p50_ns": 40510.0, "total_p75_ns": 43428.5, "total_p95_ns": 46978.15, "total_p99_ns": 51678.34000000001, "total_ci_low_ns": 39198.30982142857, "total_ci_high_ns": 41327.359821428574, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9939024390243902, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.0574115346517114}, {"serializer": "hessian", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "4.0.66", "avg_time_ser_ns": 15670.081395348838, "avg_time_deser_ns": 16870.616279069767, "avg_time_total_ns": 32540.697674418603, "median_size_bytes": 143.0, "avg_ops_per_sec": 30730.74861532964, "min_ops_per_sec": 20425.670983291802, "max_ops_per_sec": 41498.941776984684, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 15670.081395348838, "ser_median_ns": 14759.5, "ser_std_ns": 3086.55906725431, "ser_mad_ns": 2009.5, "ser_cv": 0.196971476368365, "ser_min_ns": 10444.0, "ser_max_ns": 23490.0, "ser_p5_ns": 11790.25, "ser_p25_ns": 13104.75, "ser_p50_ns": 14759.5, "ser_p75_ns": 17756.75, "ser_p95_ns": 21533.25, "ser_p99_ns": 23218.850000000002, "ser_ci_low_ns": 15032.19534883721, "ser_ci_high_ns": 16302.118023255814, "deser_mean_ns": 16870.616279069767, "deser_median_ns": 16423.0, "deser_std_ns": 2619.969910777399, "deser_mad_ns": 1588.0, "deser_cv": 0.15529781884896632, "deser_min_ns": 12356.0, "deser_max_ns": 25468.0, "deser_p5_ns": 13965.0, "deser_p25_ns": 14849.75, "deser_p50_ns": 16423.0, "deser_p75_ns": 18013.0, "deser_p95_ns": 22126.0, "deser_p99_ns": 25416.15, "deser_ci_low_ns": 16337.949709302326, "deser_ci_high_ns": 17424.872674418606, "total_mean_ns": 32540.697674418603, "total_median_ns": 31961.0, "total_std_ns": 4900.045414122722, "total_mad_ns": 3099.5, "total_cv": 0.1505820638251042, "total_min_ns": 24097.0, "total_max_ns": 48958.0, "total_p5_ns": 26452.25, "total_p25_ns": 28818.25, "total_p50_ns": 31961.0, "total_p75_ns": 34935.0, "total_p95_ns": 41942.25, "total_p99_ns": 45281.75000000002, "total_ci_low_ns": 31501.833430232557, "total_ci_high_ns": 33586.46191860465, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9035734543391946, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.2799062712335405}, {"serializer": "bson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "5.3.1", "avg_time_ser_ns": 29555.505747126437, "avg_time_deser_ns": 29434.96551724138, "avg_time_total_ns": 58990.471264367814, "median_size_bytes": 134.0, "avg_ops_per_sec": 16951.89034036473, "min_ops_per_sec": 11795.095599249831, "max_ops_per_sec": 21406.40051375361, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 29555.505747126437, "ser_median_ns": 28633.0, "ser_std_ns": 4495.624259814392, "ser_mad_ns": 2910.0, "ser_cv": 0.15210784407746036, "ser_min_ns": 23070.0, "ser_max_ns": 42909.0, "ser_p5_ns": 24317.4, "ser_p25_ns": 25907.0, "ser_p50_ns": 28633.0, "ser_p75_ns": 32296.0, "ser_p95_ns": 38283.1, "ser_p99_ns": 42481.58, "ser_ci_low_ns": 28631.397413793104, "ser_ci_high_ns": 30495.216954022984, "deser_mean_ns": 29434.96551724138, "deser_median_ns": 28383.0, "deser_std_ns": 4192.552792440635, "deser_mad_ns": 2519.0, "deser_cv": 0.14243443872848666, "deser_min_ns": 20976.0, "deser_max_ns": 42369.0, "deser_p5_ns": 24742.9, "deser_p25_ns": 26092.0, "deser_p50_ns": 28383.0, "deser_p75_ns": 32128.5, "deser_p95_ns": 36642.1, "deser_p99_ns": 39929.18, "deser_ci_low_ns": 28569.24511494253, "deser_ci_high_ns": 30322.094540229882, "total_mean_ns": 58990.471264367814, "total_median_ns": 57301.0, "total_std_ns": 7858.056591270294, "total_mad_ns": 4603.0, "total_cv": 0.1332089136235943, "total_min_ns": 46715.0, "total_max_ns": 84781.0, "total_p5_ns": 49722.4, "total_p25_ns": 52887.5, "total_p50_ns": 57301.0, "total_p75_ns": 62144.5, "total_p95_ns": 73063.0, "total_p99_ns": 78691.34000000001, "total_ci_low_ns": 57362.42902298851, "total_ci_high_ns": 60662.04195402299, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.856956205478318}, {"serializer": "jackson-cbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 19205.659090909092, "avg_time_deser_ns": 22623.06818181818, "avg_time_total_ns": 41828.72727272727, "median_size_bytes": 115.0, "avg_ops_per_sec": 23907.014752801468, "min_ops_per_sec": 16473.650396191293, "max_ops_per_sec": 36037.33467872716, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 19205.659090909092, "ser_median_ns": 18856.0, "ser_std_ns": 2907.6394576663856, "ser_mad_ns": 1724.5, "ser_cv": 0.1513949322906967, "ser_min_ns": 13106.0, "ser_max_ns": 27489.0, "ser_p5_ns": 14939.25, "ser_p25_ns": 17265.25, "ser_p50_ns": 18856.0, "ser_p75_ns": 20931.5, "ser_p95_ns": 24451.74999999999, "ser_p99_ns": 27314.129999999997, "ser_ci_low_ns": 18628.46931818182, "ser_ci_high_ns": 19801.302272727273, "deser_mean_ns": 22623.06818181818, "deser_median_ns": 22018.0, "deser_std_ns": 3874.1396754870448, "deser_mad_ns": 2501.5, "deser_cv": 0.17124731465914214, "deser_min_ns": 14643.0, "deser_max_ns": 33810.0, "deser_p5_ns": 17448.4, "deser_p25_ns": 19747.25, "deser_p50_ns": 22018.0, "deser_p75_ns": 24947.25, "deser_p95_ns": 29473.84999999999, "deser_p99_ns": 33466.35, "deser_ci_low_ns": 21845.201704545456, "deser_ci_high_ns": 23482.149999999998, "total_mean_ns": 41828.72727272727, "total_median_ns": 40931.5, "total_std_ns": 6254.927805802347, "total_mad_ns": 3985.5, "total_cv": 0.14953665133102484, "total_min_ns": 27749.0, "total_max_ns": 60703.0, "total_p5_ns": 32351.85, "total_p25_ns": 37219.5, "total_p50_ns": 40931.5, "total_p75_ns": 45528.75, "total_p95_ns": 53402.85, "total_p99_ns": 55899.729999999974, "total_ci_low_ns": 40520.28522727273, "total_ci_high_ns": 43169.49971590909, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9939024390243902, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.7046533121200835}, {"serializer": "protostuff", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "1.8.0", "avg_time_ser_ns": 11548.560975609756, "avg_time_deser_ns": 11079.682926829268, "avg_time_total_ns": 22628.243902439026, "median_size_bytes": 52.0, "avg_ops_per_sec": 44192.55883538595, "min_ops_per_sec": 29292.87011541391, "max_ops_per_sec": 57201.69317011783, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 11548.560975609756, "ser_median_ns": 11024.0, "ser_std_ns": 1740.5725473338853, "ser_mad_ns": 900.5, "ser_cv": 0.15071769989437875, "ser_min_ns": 9107.0, "ser_max_ns": 16248.0, "ser_p5_ns": 9500.75, "ser_p25_ns": 10402.75, "ser_p50_ns": 11024.0, "ser_p75_ns": 12192.25, "ser_p95_ns": 15191.050000000001, "ser_p99_ns": 16132.98, "ser_ci_low_ns": 11198.862804878048, "ser_ci_high_ns": 11949.559146341462, "deser_mean_ns": 11079.682926829268, "deser_median_ns": 10505.5, "deser_std_ns": 2558.19728617899, "deser_mad_ns": 1365.5, "deser_cv": 0.23089083894128035, "deser_min_ns": 8144.0, "deser_max_ns": 19315.0, "deser_p5_ns": 8657.1, "deser_p25_ns": 9198.5, "deser_p50_ns": 10505.5, "deser_p75_ns": 11872.0, "deser_p95_ns": 17777.350000000006, "deser_p99_ns": 19166.77, "deser_ci_low_ns": 10564.964634146341, "deser_ci_high_ns": 11635.420121951218, "total_mean_ns": 22628.243902439026, "total_median_ns": 21996.5, "total_std_ns": 3632.263136851835, "total_mad_ns": 2282.0, "total_cv": 0.16051900238092826, "total_min_ns": 17482.0, "total_max_ns": 34138.0, "total_p5_ns": 18490.55, "total_p25_ns": 19749.25, "total_p50_ns": 21996.5, "total_p75_ns": 24288.75, "total_p95_ns": 29701.2, "total_p99_ns": 32814.46, "total_ci_low_ns": 21879.965853658538, "total_ci_high_ns": 23435.21737804878, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "fastjson2", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.0.57", "avg_time_ser_ns": 22821.559139784946, "avg_time_deser_ns": 19168.47311827957, "avg_time_total_ns": 41990.032258064515, "median_size_bytes": 158.0, "avg_ops_per_sec": 23815.175798250122, "min_ops_per_sec": 17457.49100939213, "max_ops_per_sec": 36141.53023239004, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 22821.559139784946, "ser_median_ns": 22140.0, "ser_std_ns": 3705.7193764514805, "ser_mad_ns": 2219.0, "ser_cv": 0.1623780107990641, "ser_min_ns": 15588.0, "ser_max_ns": 32974.0, "ser_p5_ns": 18747.4, "ser_p25_ns": 19969.0, "ser_p50_ns": 22140.0, "ser_p75_ns": 24726.0, "ser_p95_ns": 30291.199999999993, "ser_p99_ns": 32478.12, "ser_ci_low_ns": 22048.772849462363, "ser_ci_high_ns": 23610.502419354838, "deser_mean_ns": 19168.47311827957, "deser_median_ns": 18885.0, "deser_std_ns": 2958.504174010759, "deser_mad_ns": 2081.0, "deser_cv": 0.15434219281604908, "deser_min_ns": 11961.0, "deser_max_ns": 27591.0, "deser_p5_ns": 15569.2, "deser_p25_ns": 16862.0, "deser_p50_ns": 18885.0, "deser_p75_ns": 20966.0, "deser_p95_ns": 24405.19999999999, "deser_p99_ns": 27373.88, "deser_ci_low_ns": 18545.162634408603, "deser_ci_high_ns": 19755.675537634408, "total_mean_ns": 41990.032258064515, "total_median_ns": 40425.0, "total_std_ns": 6079.206737173521, "total_mad_ns": 3834.0, "total_cv": 0.14477737715969394, "total_min_ns": 27669.0, "total_max_ns": 57282.0, "total_p5_ns": 34410.4, "total_p25_ns": 37707.0, "total_p50_ns": 40425.0, "total_p75_ns": 45614.0, "total_p95_ns": 52852.79999999998, "total_p99_ns": 56440.2, "total_ci_low_ns": 40790.26075268818, "total_ci_high_ns": 43259.48548387097, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.99475478625754, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.7930555704507802}, {"serializer": "jackson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 21811.855555555554, "avg_time_deser_ns": 27985.2, "avg_time_total_ns": 49797.055555555555, "median_size_bytes": 158.0, "avg_ops_per_sec": 20081.508612178095, "min_ops_per_sec": 14721.686516407319, "max_ops_per_sec": 26803.184218285132, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 21811.855555555554, "ser_median_ns": 21449.5, "ser_std_ns": 3179.24612137055, "ser_mad_ns": 2005.5, "ser_cv": 0.14575771021740447, "ser_min_ns": 16456.0, "ser_max_ns": 30479.0, "ser_p5_ns": 17562.65, "ser_p25_ns": 19328.25, "ser_p50_ns": 21449.5, "ser_p75_ns": 23369.5, "ser_p95_ns": 27837.85, "ser_p99_ns": 29384.3, "ser_ci_low_ns": 21171.81666666667, "ser_ci_high_ns": 22463.68055555556, "deser_mean_ns": 27985.2, "deser_median_ns": 27158.0, "deser_std_ns": 4327.191707321287, "deser_mad_ns": 2419.5, "deser_cv": 0.15462429095812383, "deser_min_ns": 20853.0, "deser_max_ns": 40375.0, "deser_p5_ns": 21705.3, "deser_p25_ns": 25238.5, "deser_p50_ns": 27158.0, "deser_p75_ns": 29769.75, "deser_p95_ns": 36776.4, "deser_p99_ns": 37850.07, "deser_ci_low_ns": 27142.521944444445, "deser_ci_high_ns": 28905.084722222222, "total_mean_ns": 49797.055555555555, "total_median_ns": 48916.5, "total_std_ns": 7012.126246902353, "total_mad_ns": 4349.5, "total_cv": 0.14081407361684967, "total_min_ns": 37309.0, "total_max_ns": 67927.0, "total_p5_ns": 39364.15, "total_p25_ns": 45236.25, "total_p50_ns": 48916.5, "total_p75_ns": 53711.0, "total_p95_ns": 63991.1, "total_p99_ns": 67751.67, "total_ci_low_ns": 48379.26, "total_ci_high_ns": 51251.15416666667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.779492174180189}, {"serializer": "java-serialization", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "21.0.11", "avg_time_ser_ns": 27509.60465116279, "avg_time_deser_ns": 58462.74418604651, "avg_time_total_ns": 85972.3488372093, "median_size_bytes": 206.0, "avg_ops_per_sec": 11631.646843725579, "min_ops_per_sec": 8668.440807551946, "max_ops_per_sec": 15791.800896974291, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 27509.60465116279, "ser_median_ns": 26619.0, "ser_std_ns": 4353.9412173585215, "ser_mad_ns": 2864.0, "ser_cv": 0.15826985783943234, "ser_min_ns": 18724.0, "ser_max_ns": 37899.0, "ser_p5_ns": 22305.25, "ser_p25_ns": 24003.75, "ser_p50_ns": 26619.0, "ser_p75_ns": 29803.5, "ser_p95_ns": 36435.5, "ser_p99_ns": 37373.700000000004, "ser_ci_low_ns": 26562.711627906978, "ser_ci_high_ns": 28401.425, "deser_mean_ns": 58462.74418604651, "deser_median_ns": 57315.0, "deser_std_ns": 7026.653537338335, "deser_mad_ns": 4529.5, "deser_cv": 0.12019027904296371, "deser_min_ns": 44576.0, "deser_max_ns": 78483.0, "deser_p5_ns": 50017.5, "deser_p25_ns": 53234.5, "deser_p50_ns": 57315.0, "deser_p75_ns": 62421.25, "deser_p95_ns": 72653.0, "deser_p99_ns": 77615.15000000001, "deser_ci_low_ns": 57014.63895348837, "deser_ci_high_ns": 59932.6988372093, "total_mean_ns": 85972.3488372093, "total_median_ns": 84592.0, "total_std_ns": 10316.280559521603, "total_mad_ns": 7247.5, "total_cv": 0.119995332209147, "total_min_ns": 63324.0, "total_max_ns": 115361.0, "total_p5_ns": 72418.0, "total_p25_ns": 78275.75, "total_p50_ns": 84592.0, "total_p75_ns": 92233.0, "total_p95_ns": 106640.75, "total_p99_ns": 111274.20000000003, "total_ci_low_ns": 83914.92093023256, "total_ci_high_ns": 88119.27122093024, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.078135750917236}, {"serializer": "jsoniter", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "0.9.23", "avg_time_ser_ns": 12260.156626506025, "avg_time_deser_ns": 11293.024096385541, "avg_time_total_ns": 23553.180722891568, "median_size_bytes": 150.0, "avg_ops_per_sec": 42457.110645276465, "min_ops_per_sec": 32064.642318914932, "max_ops_per_sec": 54860.653938994954, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 12260.156626506025, "ser_median_ns": 12019.0, "ser_std_ns": 1707.3122114493563, "ser_mad_ns": 789.0, "ser_cv": 0.13925696575182472, "ser_min_ns": 9091.0, "ser_max_ns": 17667.0, "ser_p5_ns": 10312.2, "ser_p25_ns": 11222.5, "ser_p50_ns": 12019.0, "ser_p75_ns": 12792.0, "ser_p95_ns": 16122.599999999995, "ser_p99_ns": 17423.46, "ser_ci_low_ns": 11910.44548192771, "ser_ci_high_ns": 12646.034337349396, "deser_mean_ns": 11293.024096385541, "deser_median_ns": 11139.0, "deser_std_ns": 1123.3086253140614, "deser_mad_ns": 611.0, "deser_cv": 0.09946924895640565, "deser_min_ns": 9051.0, "deser_max_ns": 14682.0, "deser_p5_ns": 9842.1, "deser_p25_ns": 10602.0, "deser_p50_ns": 11139.0, "deser_p75_ns": 11845.5, "deser_p95_ns": 13934.499999999995, "deser_p99_ns": 14543.419999999998, "deser_ci_low_ns": 11059.322289156626, "deser_ci_high_ns": 11539.785240963856, "total_mean_ns": 23553.180722891568, "total_median_ns": 23307.0, "total_std_ns": 2655.0365719982565, "total_mad_ns": 1395.0, "total_cv": 0.1127251815045855, "total_min_ns": 18228.0, "total_max_ns": 31187.0, "total_p5_ns": 20355.9, "total_p25_ns": 21774.0, "total_p50_ns": 23307.0, "total_p75_ns": 24491.5, "total_p95_ns": 29023.899999999994, "total_p99_ns": 30949.199999999997, "total_ci_low_ns": 22988.193975903614, "total_ci_high_ns": 24150.133132530118, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.239494563620335, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.2896630858262613}, {"serializer": "avro", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "1.12.0", "avg_time_ser_ns": 21425.97701149425, "avg_time_deser_ns": 28554.597701149425, "avg_time_total_ns": 49980.574712643676, "median_size_bytes": 44.0, "avg_ops_per_sec": 20007.773134850093, "min_ops_per_sec": 14451.702410543961, "max_ops_per_sec": 25644.313373509423, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 21425.97701149425, "ser_median_ns": 21152.0, "ser_std_ns": 2783.9908612896793, "ser_mad_ns": 1694.0, "ser_cv": 0.12993530515766774, "ser_min_ns": 16280.0, "ser_max_ns": 28313.0, "ser_p5_ns": 17332.2, "ser_p25_ns": 19592.0, "ser_p50_ns": 21152.0, "ser_p75_ns": 22946.0, "ser_p95_ns": 27231.800000000003, "ser_p99_ns": 28267.42, "ser_ci_low_ns": 20851.52155172414, "ser_ci_high_ns": 22019.347413793104, "deser_mean_ns": 28554.597701149425, "deser_median_ns": 27339.0, "deser_std_ns": 4510.846541650495, "deser_mad_ns": 2420.0, "deser_cv": 0.15797268758119878, "deser_min_ns": 22101.0, "deser_max_ns": 44213.0, "deser_p5_ns": 23626.8, "deser_p25_ns": 25270.0, "deser_p50_ns": 27339.0, "deser_p75_ns": 30074.5, "deser_p95_ns": 38772.6, "deser_p99_ns": 40653.46, "deser_ci_low_ns": 27634.1658045977, "deser_ci_high_ns": 29510.654310344828, "total_mean_ns": 49980.574712643676, "total_median_ns": 48872.0, "total_std_ns": 6733.518161307314, "total_mad_ns": 4097.0, "total_cv": 0.13472270377082965, "total_min_ns": 38995.0, "total_max_ns": 69196.0, "total_p5_ns": 41981.1, "total_p25_ns": 44939.5, "total_p50_ns": 48872.0, "total_p75_ns": 53445.0, "total_p95_ns": 63177.9, "total_p99_ns": 67782.16, "total_ci_low_ns": 48627.307758620685, "total_ci_high_ns": 51418.230172413794, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.992377165097828}, {"serializer": "ion", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 54936.409638554214, "avg_time_deser_ns": 74080.95180722892, "avg_time_total_ns": 129017.36144578313, "median_size_bytes": 144.0, "avg_ops_per_sec": 7750.894831469866, "min_ops_per_sec": 5232.615941687728, "max_ops_per_sec": 11636.295934278201, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 54936.409638554214, "ser_median_ns": 52351.0, "ser_std_ns": 11583.815050441404, "ser_mad_ns": 5965.0, "ser_cv": 0.21085861137732445, "ser_min_ns": 37966.0, "ser_max_ns": 88277.0, "ser_p5_ns": 43420.0, "ser_p25_ns": 46547.5, "ser_p50_ns": 52351.0, "ser_p75_ns": 58507.5, "ser_p95_ns": 82139.59999999999, "ser_p99_ns": 87625.09999999999, "ser_ci_low_ns": 52709.58253012048, "ser_ci_high_ns": 57551.94879518072, "deser_mean_ns": 74080.95180722892, "deser_median_ns": 73130.0, "deser_std_ns": 11872.151064574951, "deser_mad_ns": 8063.0, "deser_cv": 0.1602591594053527, "deser_min_ns": 47972.0, "deser_max_ns": 105699.0, "deser_p5_ns": 58221.1, "deser_p25_ns": 65215.5, "deser_p50_ns": 73130.0, "deser_p75_ns": 81302.5, "deser_p95_ns": 95780.3, "deser_p99_ns": 102302.55999999997, "deser_ci_low_ns": 71616.31777108433, "deser_ci_high_ns": 76717.296686747, "total_mean_ns": 129017.36144578313, "total_median_ns": 125630.0, "total_std_ns": 21958.54293701074, "total_mad_ns": 12211.0, "total_cv": 0.17019835695708568, "total_min_ns": 85938.0, "total_max_ns": 191109.0, "total_p5_ns": 101608.6, "total_p25_ns": 112960.5, "total_p50_ns": 125630.0, "total_p75_ns": 137705.0, "total_p95_ns": 179293.99999999994, "total_p99_ns": 184410.41999999993, "total_ci_low_ns": 124333.98945783133, "total_ci_high_ns": 134146.29789156627, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.7093952268749115}, {"serializer": "msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "0.9.8", "avg_time_ser_ns": 130296.9, "avg_time_deser_ns": 116427.66666666667, "avg_time_total_ns": 246724.56666666668, "median_size_bytes": 11031.0, "avg_ops_per_sec": 4053.1026703596735, "min_ops_per_sec": 2545.9804061347945, "max_ops_per_sec": 6435.337726523888, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 130296.9, "ser_median_ns": 131645.0, "ser_std_ns": 36115.19631229049, "ser_mad_ns": 26709.5, "ser_cv": 0.27717617466179545, "ser_min_ns": 77930.0, "ser_max_ns": 247900.0, "ser_p5_ns": 83023.55, "ser_p25_ns": 99804.25, "ser_p50_ns": 131645.0, "ser_p75_ns": 144614.0, "ser_p95_ns": 191229.9, "ser_p99_ns": 232184.37999999998, "ser_ci_low_ns": 122926.30944444444, "ser_ci_high_ns": 138137.1963888889, "deser_mean_ns": 116427.66666666667, "deser_median_ns": 118774.0, "deser_std_ns": 26921.44569343777, "deser_mad_ns": 25630.5, "deser_cv": 0.23122893779632364, "deser_min_ns": 74393.0, "deser_max_ns": 189420.0, "deser_p5_ns": 83173.45, "deser_p25_ns": 90884.0, "deser_p50_ns": 118774.0, "deser_p75_ns": 130857.25, "deser_p95_ns": 163424.44999999998, "deser_p99_ns": 175295.69999999998, "deser_ci_low_ns": 111007.37638888888, "deser_ci_high_ns": 121855.42361111111, "total_mean_ns": 246724.56666666668, "total_median_ns": 251570.0, "total_std_ns": 60604.70923113061, "total_mad_ns": 51976.0, "total_cv": 0.24563710882106704, "total_min_ns": 155392.0, "total_max_ns": 392776.0, "total_p5_ns": 167288.4, "total_p25_ns": 189472.75, "total_p50_ns": 251570.0, "total_p75_ns": 280581.0, "total_p95_ns": 356106.6, "total_p99_ns": 381162.39, "total_ci_low_ns": 234324.03472222222, "total_ci_high_ns": 259636.29638888888, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.5238107305940507}, {"serializer": "protostuff", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "1.8.0", "avg_time_ser_ns": 51068.913978494624, "avg_time_deser_ns": 51451.68817204301, "avg_time_total_ns": 102520.60215053764, "median_size_bytes": 4948.0, "avg_ops_per_sec": 9754.137012691705, "min_ops_per_sec": 6380.725105601001, "max_ops_per_sec": 17917.293771948684, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 51068.913978494624, "ser_median_ns": 55256.0, "ser_std_ns": 15931.78432421772, "ser_mad_ns": 13799.0, "ser_cv": 0.31196638195452275, "ser_min_ns": 26725.0, "ser_max_ns": 89952.0, "ser_p5_ns": 28097.6, "ser_p25_ns": 34769.0, "ser_p50_ns": 55256.0, "ser_p75_ns": 61873.0, "ser_p95_ns": 76428.59999999999, "ser_p99_ns": 84866.23999999999, "ser_ci_low_ns": 47683.86370967742, "ser_ci_high_ns": 54401.056720430104, "deser_mean_ns": 51451.68817204301, "deser_median_ns": 53244.0, "deser_std_ns": 12302.167756112436, "deser_mad_ns": 8603.0, "deser_cv": 0.2391013432829788, "deser_min_ns": 28161.0, "deser_max_ns": 77651.0, "deser_p5_ns": 30478.8, "deser_p25_ns": 40930.0, "deser_p50_ns": 53244.0, "deser_p75_ns": 59092.0, "deser_p95_ns": 72292.4, "deser_p99_ns": 75353.76, "deser_ci_low_ns": 48980.621505376344, "deser_ci_high_ns": 54111.324731182794, "total_mean_ns": 102520.60215053764, "total_median_ns": 109606.0, "total_std_ns": 27120.779917820666, "total_mad_ns": 22165.0, "total_cv": 0.26453980320948045, "total_min_ns": 55812.0, "total_max_ns": 156722.0, "total_p5_ns": 58398.6, "total_p25_ns": 78855.0, "total_p50_ns": 109606.0, "total_p75_ns": 121901.0, "total_p95_ns": 143913.8, "total_p99_ns": 152523.12, "total_ci_low_ns": 97003.01155913979, "total_ci_high_ns": 107944.67284946237, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.3477938450129774, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.6509480179665672}, {"serializer": "jackson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 90807.25287356322, "avg_time_deser_ns": 138467.80459770115, "avg_time_total_ns": 229275.05747126436, "median_size_bytes": 15546.0, "avg_ops_per_sec": 4361.573435110065, "min_ops_per_sec": 2190.5948998569543, "max_ops_per_sec": 6945.9397509186, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 90807.25287356322, "ser_median_ns": 86565.0, "ser_std_ns": 27909.18314246222, "ser_mad_ns": 14888.0, "ser_cv": 0.3073453084339196, "ser_min_ns": 57344.0, "ser_max_ns": 168554.0, "ser_p5_ns": 60198.3, "ser_p25_ns": 68326.0, "ser_p50_ns": 86565.0, "ser_p75_ns": 99282.5, "ser_p95_ns": 159263.1, "ser_p99_ns": 164024.38, "ser_ci_low_ns": 85018.01925287356, "ser_ci_high_ns": 96603.35143678161, "deser_mean_ns": 138467.80459770115, "deser_median_ns": 125414.0, "deser_std_ns": 52490.07897353004, "deser_mad_ns": 20346.0, "deser_cv": 0.3790778594781121, "deser_min_ns": 84155.0, "deser_max_ns": 296453.0, "deser_p5_ns": 88840.3, "deser_p25_ns": 100409.5, "deser_p50_ns": 125414.0, "deser_p75_ns": 141313.5, "deser_p95_ns": 260513.5, "deser_p99_ns": 292275.12, "deser_ci_low_ns": 127551.05344827587, "deser_ci_high_ns": 150170.12471264368, "total_mean_ns": 229275.05747126436, "total_median_ns": 212794.0, "total_std_ns": 78752.8408539427, "total_mad_ns": 37429.0, "total_cv": 0.3434862986080071, "total_min_ns": 143969.0, "total_max_ns": 456497.0, "total_p5_ns": 151295.7, "total_p25_ns": 173273.5, "total_p50_ns": 212794.0, "total_p75_ns": 246374.0, "total_p95_ns": 422012.6, "total_p99_ns": 449687.52, "total_ci_low_ns": 214391.54252873565, "total_ci_high_ns": 246066.66120689653, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.4732114706140407}, {"serializer": "moshi", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "1.15.2", "avg_time_ser_ns": 127714.41304347826, "avg_time_deser_ns": 171770.66304347827, "avg_time_total_ns": 299485.07608695654, "median_size_bytes": 15546.0, "avg_ops_per_sec": 3339.064547275292, "min_ops_per_sec": 2180.254740963934, "max_ops_per_sec": 4704.199909679362, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 127714.41304347826, "ser_median_ns": 125105.0, "ser_std_ns": 27433.851263870692, "ser_mad_ns": 19853.5, "ser_cv": 0.2148062275048885, "ser_min_ns": 88656.0, "ser_max_ns": 209945.0, "ser_p5_ns": 93270.45, "ser_p25_ns": 104973.5, "ser_p50_ns": 125105.0, "ser_p75_ns": 143913.75, "ser_p95_ns": 180669.40000000005, "ser_p99_ns": 203115.45, "ser_ci_low_ns": 122039.72336956522, "ser_ci_high_ns": 133426.83097826087, "deser_mean_ns": 171770.66304347827, "deser_median_ns": 167654.5, "deser_std_ns": 35548.23538449056, "deser_mad_ns": 27036.0, "deser_cv": 0.20695172711473236, "deser_min_ns": 123920.0, "deser_max_ns": 263862.0, "deser_p5_ns": 128746.05, "deser_p25_ns": 140762.25, "deser_p50_ns": 167654.5, "deser_p75_ns": 193317.0, "deser_p95_ns": 246283.0, "deser_p99_ns": 260289.34000000003, "deser_ci_low_ns": 165156.33586956523, "deser_ci_high_ns": 179470.23804347825, "total_mean_ns": 299485.07608695654, "total_median_ns": 294173.5, "total_std_ns": 61522.30996038981, "total_mad_ns": 48081.0, "total_cv": 0.2054269640552192, "total_min_ns": 212576.0, "total_max_ns": 458662.0, "total_p5_ns": 224590.6, "total_p25_ns": 244387.5, "total_p50_ns": 294173.5, "total_p75_ns": 333984.25, "total_p95_ns": 421115.80000000005, "total_p99_ns": 449137.03, "total_ci_low_ns": 287056.92934782605, "total_ci_high_ns": 311693.13206521736, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.605001564231565}, {"serializer": "gson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.12.1", "avg_time_ser_ns": 206284.05747126436, "avg_time_deser_ns": 171542.8620689655, "avg_time_total_ns": 377826.9195402299, "median_size_bytes": 15546.0, "avg_ops_per_sec": 2646.7145358961725, "min_ops_per_sec": 1751.0558866996798, "max_ops_per_sec": 3700.1953703155527, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 206284.05747126436, "ser_median_ns": 203471.0, "ser_std_ns": 40677.1898503887, "ser_mad_ns": 24551.0, "ser_cv": 0.19719017721985174, "ser_min_ns": 155480.0, "ser_max_ns": 316305.0, "ser_p5_ns": 158417.6, "ser_p25_ns": 174956.0, "ser_p50_ns": 203471.0, "ser_p75_ns": 220294.0, "ser_p95_ns": 303111.4, "ser_p99_ns": 315998.84, "ser_ci_low_ns": 198243.44770114945, "ser_ci_high_ns": 215206.51925287352, "deser_mean_ns": 171542.8620689655, "deser_median_ns": 172951.0, "deser_std_ns": 40948.45056505103, "deser_mad_ns": 34175.0, "deser_cv": 0.23870681689214499, "deser_min_ns": 112594.0, "deser_max_ns": 259529.0, "deser_p5_ns": 115405.1, "deser_p25_ns": 129757.5, "deser_p50_ns": 172951.0, "deser_p75_ns": 194948.5, "deser_p95_ns": 248242.2, "deser_p99_ns": 255984.08000000002, "deser_ci_low_ns": 162658.69022988505, "deser_ci_high_ns": 179921.8617816092, "total_mean_ns": 377826.9195402299, "total_median_ns": 380531.0, "total_std_ns": 79401.69011208919, "total_mad_ns": 54536.0, "total_cv": 0.21015360739438982, "total_min_ns": 270256.0, "total_max_ns": 571084.0, "total_p5_ns": 276562.0, "total_p25_ns": 302609.0, "total_p50_ns": 380531.0, "total_p75_ns": 417977.0, "total_p95_ns": 546581.8, "total_p99_ns": 568815.32, "total_ci_low_ns": 362248.008045977, "total_ci_high_ns": 394984.75373563217, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.022968451810184}, {"serializer": "java-serialization", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "21.0.11", "avg_time_ser_ns": 117801.4375, "avg_time_deser_ns": 186288.92708333334, "avg_time_total_ns": 304090.3645833333, "median_size_bytes": 5953.0, "avg_ops_per_sec": 3288.496172413114, "min_ops_per_sec": 1822.665575497542, "max_ops_per_sec": 7615.044281482496, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 117801.4375, "ser_median_ns": 122184.5, "ser_std_ns": 45552.695229709396, "ser_mad_ns": 43463.0, "ser_cv": 0.3866904869451139, "ser_min_ns": 49505.0, "ser_max_ns": 221264.0, "ser_p5_ns": 61746.0, "ser_p25_ns": 73484.75, "ser_p50_ns": 122184.5, "ser_p75_ns": 156887.0, "ser_p95_ns": 185705.0, "ser_p99_ns": 219288.0, "ser_ci_low_ns": 108912.8859375, "ser_ci_high_ns": 126473.44192708333, "deser_mean_ns": 186288.92708333334, "deser_median_ns": 191140.5, "deser_std_ns": 55283.14095430518, "deser_mad_ns": 42277.5, "deser_cv": 0.2967602091002175, "deser_min_ns": 81814.0, "deser_max_ns": 344710.0, "deser_p5_ns": 110928.0, "deser_p25_ns": 135008.25, "deser_p50_ns": 191140.5, "deser_p75_ns": 221295.75, "deser_p95_ns": 272066.75, "deser_p99_ns": 330225.35, "deser_ci_low_ns": 175475.3453125, "deser_ci_high_ns": 197239.30416666667, "total_mean_ns": 304090.3645833333, "total_median_ns": 315431.5, "total_std_ns": 95675.60708474288, "total_mad_ns": 79221.0, "total_cv": 0.31462886769147796, "total_min_ns": 131319.0, "total_max_ns": 548647.0, "total_p5_ns": 172181.25, "total_p25_ns": 209210.75, "total_p50_ns": 315431.5, "total_p75_ns": 383345.25, "total_p95_ns": 450733.0, "total_p99_ns": 486714.5999999998, "total_ci_low_ns": 285641.025, "total_ci_high_ns": 322839.04661458335, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.064815939153768}, {"serializer": "jackson-cbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 67782.68674698795, "avg_time_deser_ns": 84608.60240963855, "avg_time_total_ns": 152391.2891566265, "median_size_bytes": 11130.0, "avg_ops_per_sec": 6562.054862415452, "min_ops_per_sec": 3388.096262591013, "max_ops_per_sec": 9649.063558381658, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 67782.68674698795, "ser_median_ns": 63360.0, "ser_std_ns": 20937.991146872937, "ser_mad_ns": 11287.0, "ser_cv": 0.308898808113465, "ser_min_ns": 41269.0, "ser_max_ns": 134730.0, "ser_p5_ns": 45712.3, "ser_p25_ns": 52239.5, "ser_p50_ns": 63360.0, "ser_p75_ns": 75176.0, "ser_p95_ns": 108308.4, "ser_p99_ns": 131920.67999999996, "ser_ci_low_ns": 63761.05391566265, "ser_ci_high_ns": 72234.64728915662, "deser_mean_ns": 84608.60240963855, "deser_median_ns": 78602.0, "deser_std_ns": 23260.826226302408, "deser_mad_ns": 11652.0, "deser_cv": 0.2749227095571614, "deser_min_ns": 62368.0, "deser_max_ns": 169284.0, "deser_p5_ns": 63281.4, "deser_p25_ns": 68036.5, "deser_p50_ns": 78602.0, "deser_p75_ns": 90833.5, "deser_p95_ns": 141457.29999999996, "deser_p99_ns": 157371.0399999999, "deser_ci_low_ns": 79826.40692771085, "deser_ci_high_ns": 89856.72198795181, "total_mean_ns": 152391.2891566265, "total_median_ns": 143170.0, "total_std_ns": 42866.817022576746, "total_mad_ns": 22972.0, "total_cv": 0.28129440507927317, "total_min_ns": 103637.0, "total_max_ns": 295151.0, "total_p5_ns": 109227.1, "total_p25_ns": 120199.5, "total_p50_ns": 143170.0, "total_p75_ns": 166172.5, "total_p95_ns": 249547.8, "total_p99_ns": 287696.37999999995, "total_ci_low_ns": 143606.21596385541, "total_ci_high_ns": 161725.92951807228, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.9609472372247612, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.9852335237544902}, {"serializer": "jackson-smile", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 59547.375, "avg_time_deser_ns": 72222.025, "avg_time_total_ns": 131769.4, "median_size_bytes": 5862.0, "avg_ops_per_sec": 7589.015355613671, "min_ops_per_sec": 4211.519347719884, "max_ops_per_sec": 11958.575494487097, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 59547.375, "ser_median_ns": 57029.0, "ser_std_ns": 15044.183667185976, "ser_mad_ns": 8992.5, "ser_cv": 0.25264226453619454, "ser_min_ns": 34645.0, "ser_max_ns": 110138.0, "ser_p5_ns": 42942.5, "ser_p25_ns": 48284.25, "ser_p50_ns": 57029.0, "ser_p75_ns": 66579.75, "ser_p95_ns": 89042.84999999999, "ser_p99_ns": 105358.49999999996, "ser_ci_low_ns": 56250.1646875, "ser_ci_high_ns": 63056.966875, "deser_mean_ns": 72222.025, "deser_median_ns": 71442.0, "deser_std_ns": 15245.612442891914, "deser_mad_ns": 10469.0, "deser_cv": 0.21109367181122263, "deser_min_ns": 47083.0, "deser_max_ns": 127306.0, "deser_p5_ns": 52111.7, "deser_p25_ns": 60735.5, "deser_p50_ns": 71442.0, "deser_p75_ns": 78839.75, "deser_p95_ns": 94364.94999999998, "deser_p99_ns": 124322.16999999998, "deser_ci_low_ns": 68787.5103125, "deser_ci_high_ns": 75505.4225, "total_mean_ns": 131769.4, "total_median_ns": 127021.5, "total_std_ns": 29566.71168884256, "total_mad_ns": 18253.5, "total_cv": 0.22438222902162838, "total_min_ns": 83622.0, "total_max_ns": 237444.0, "total_p5_ns": 96032.05, "total_p25_ns": 108706.75, "total_p50_ns": 127021.5, "total_p75_ns": 145183.75, "total_p95_ns": 186916.9, "total_p99_ns": 229680.66999999993, "total_ci_low_ns": 125774.3715625, "total_ci_high_ns": 138482.9909375, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.8554597701149426, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.822962110177839}, {"serializer": "dsl-json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.0.2", "avg_time_ser_ns": 122213.90123456791, "avg_time_deser_ns": 145814.41975308643, "avg_time_total_ns": 268028.3209876543, "median_size_bytes": 15546.0, "avg_ops_per_sec": 3730.9490143247253, "min_ops_per_sec": 2671.782239060388, "max_ops_per_sec": 5371.001960415716, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 122213.90123456791, "ser_median_ns": 121727.0, "ser_std_ns": 23107.358351077768, "ser_mad_ns": 16831.0, "ser_cv": 0.18907307693850056, "ser_min_ns": 80914.0, "ser_max_ns": 183684.0, "ser_p5_ns": 90509.0, "ser_p25_ns": 103934.0, "ser_p50_ns": 121727.0, "ser_p75_ns": 135050.0, "ser_p95_ns": 163435.0, "ser_p99_ns": 179416.00000000003, "ser_ci_low_ns": 117279.66296296298, "ser_ci_high_ns": 127146.22345679012, "deser_mean_ns": 145814.41975308643, "deser_median_ns": 150421.0, "deser_std_ns": 27021.33782442322, "deser_mad_ns": 25745.0, "deser_cv": 0.1853132075015596, "deser_min_ns": 105271.0, "deser_max_ns": 222724.0, "deser_p5_ns": 111473.0, "deser_p25_ns": 119555.0, "deser_p50_ns": 150421.0, "deser_p75_ns": 165088.0, "deser_p95_ns": 185247.0, "deser_p99_ns": 202193.60000000006, "deser_ci_low_ns": 139563.28024691358, "deser_ci_high_ns": 151896.00308641978, "total_mean_ns": 268028.3209876543, "total_median_ns": 273900.0, "total_std_ns": 48172.81842253657, "total_mad_ns": 40899.0, "total_cv": 0.17973032941080677, "total_min_ns": 186185.0, "total_max_ns": 374282.0, "total_p5_ns": 203510.0, "total_p25_ns": 226065.0, "total_p50_ns": 273900.0, "total_p75_ns": 297641.0, "total_p95_ns": 355200.0, "total_p99_ns": 365908.4, "total_ci_low_ns": 257732.9725308642, "total_ci_high_ns": 278062.47222222225, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.013824143588583}, {"serializer": "avro", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "1.12.0", "avg_time_ser_ns": 56624.29268292683, "avg_time_deser_ns": 120958.4756097561, "avg_time_total_ns": 177582.76829268291, "median_size_bytes": 4051.0, "avg_ops_per_sec": 5631.176997713262, "min_ops_per_sec": 2595.6362163930003, "max_ops_per_sec": 10677.942574024837, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 56624.29268292683, "ser_median_ns": 53283.0, "ser_std_ns": 19186.39341522136, "ser_mad_ns": 12273.5, "ser_cv": 0.33883678728946626, "ser_min_ns": 35758.0, "ser_max_ns": 123365.0, "ser_p5_ns": 37531.6, "ser_p25_ns": 40603.75, "ser_p50_ns": 53283.0, "ser_p75_ns": 65179.5, "ser_p95_ns": 99979.40000000002, "ser_p99_ns": 117604.27999999998, "ser_ci_low_ns": 52745.47865853659, "ser_ci_high_ns": 61258.6618902439, "deser_mean_ns": 120958.4756097561, "deser_median_ns": 121003.5, "deser_std_ns": 54909.580821166244, "deser_mad_ns": 43015.5, "deser_cv": 0.453953975067601, "deser_min_ns": 57767.0, "deser_max_ns": 320633.0, "deser_p5_ns": 63280.05, "deser_p25_ns": 70823.25, "deser_p50_ns": 121003.5, "deser_p75_ns": 156692.25, "deser_p95_ns": 219112.55000000002, "deser_p99_ns": 269531.71999999986, "deser_ci_low_ns": 109243.73902439025, "deser_ci_high_ns": 132926.7826219512, "total_mean_ns": 177582.76829268291, "total_median_ns": 181960.5, "total_std_ns": 70080.13667387927, "total_mad_ns": 62325.0, "total_cv": 0.39463365363455055, "total_min_ns": 93651.0, "total_max_ns": 385262.0, "total_p5_ns": 101914.55, "total_p25_ns": 112421.0, "total_p50_ns": 181960.5, "total_p75_ns": 220800.25, "total_p95_ns": 295027.35000000003, "total_p99_ns": 381736.88, "total_ci_low_ns": 162132.0131097561, "total_ci_high_ns": 193511.2106707317, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.9044014578076816, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.778660497340099}, {"serializer": "hessian", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "4.0.66", "avg_time_ser_ns": 57545.5376344086, "avg_time_deser_ns": 116495.3440860215, "avg_time_total_ns": 174040.8817204301, "median_size_bytes": 4802.0, "avg_ops_per_sec": 5745.776452720725, "min_ops_per_sec": 4036.929834122553, "max_ops_per_sec": 9309.08007670682, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 57545.5376344086, "ser_median_ns": 58253.0, "ser_std_ns": 8480.69926177535, "ser_mad_ns": 4919.0, "ser_cv": 0.14737370803021962, "ser_min_ns": 41616.0, "ser_max_ns": 79205.0, "ser_p5_ns": 43906.8, "ser_p25_ns": 50980.0, "ser_p50_ns": 58253.0, "ser_p75_ns": 62856.0, "ser_p95_ns": 70169.79999999999, "ser_p99_ns": 77959.31999999999, "ser_ci_low_ns": 55816.23602150538, "ser_ci_high_ns": 59347.84086021505, "deser_mean_ns": 116495.3440860215, "deser_median_ns": 113689.0, "deser_std_ns": 27208.314249785864, "deser_mad_ns": 21175.0, "deser_cv": 0.23355709589299065, "deser_min_ns": 65522.0, "deser_max_ns": 178871.0, "deser_p5_ns": 81707.6, "deser_p25_ns": 93950.0, "deser_p50_ns": 113689.0, "deser_p75_ns": 142010.0, "deser_p95_ns": 161390.59999999998, "deser_p99_ns": 176791.8, "deser_ci_low_ns": 111139.34838709678, "deser_ci_high_ns": 122073.02795698924, "total_mean_ns": 174040.8817204301, "total_median_ns": 177612.0, "total_std_ns": 33107.825658993264, "total_mad_ns": 27857.0, "total_cv": 0.19023016507222648, "total_min_ns": 107422.0, "total_max_ns": 247713.0, "total_p5_ns": 126383.2, "total_p25_ns": 145527.0, "total_p50_ns": 177612.0, "total_p75_ns": 200135.0, "total_p95_ns": 229318.2, "total_p99_ns": 244868.36, "total_ci_low_ns": 167456.2991935484, "total_ci_high_ns": 180957.8440860215, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.9930787294524781, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.2087961378601904}, {"serializer": "ion", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 180371.52380952382, "avg_time_deser_ns": 458447.14285714284, "avg_time_total_ns": 638818.6666666666, "median_size_bytes": 14146.0, "avg_ops_per_sec": 1565.389448022809, "min_ops_per_sec": 1042.5300118327157, "max_ops_per_sec": 2050.4870932089916, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 180371.52380952382, "ser_median_ns": 179041.5, "ser_std_ns": 40260.83024014696, "ser_mad_ns": 28503.0, "ser_cv": 0.2232105677760047, "ser_min_ns": 124198.0, "ser_max_ns": 308290.0, "ser_p5_ns": 128431.2, "ser_p25_ns": 146804.25, "ser_p50_ns": 179041.5, "ser_p75_ns": 201498.25, "ser_p95_ns": 265408.69999999995, "ser_p99_ns": 286635.30000000005, "ser_ci_low_ns": 171988.9318452381, "ser_ci_high_ns": 189303.2636904762, "deser_mean_ns": 458447.14285714284, "deser_median_ns": 457171.0, "deser_std_ns": 73421.52624879326, "deser_mad_ns": 60115.0, "deser_cv": 0.16015265313077154, "deser_min_ns": 361898.0, "deser_max_ns": 691840.0, "deser_p5_ns": 370160.8, "deser_p25_ns": 395247.5, "deser_p50_ns": 457171.0, "deser_p75_ns": 494021.25, "deser_p95_ns": 592308.0499999999, "deser_p99_ns": 652056.4400000001, "deser_ci_low_ns": 443160.0568452381, "deser_ci_high_ns": 475074.30803571426, "total_mean_ns": 638818.6666666666, "total_median_ns": 642368.0, "total_std_ns": 109110.16574322511, "total_mad_ns": 93973.5, "total_cv": 0.17079990212646434, "total_min_ns": 487689.0, "total_max_ns": 959205.0, "total_p5_ns": 503811.05, "total_p25_ns": 539991.25, "total_p50_ns": 642368.0, "total_p75_ns": 704489.5, "total_p95_ns": 839913.4499999996, "total_p99_ns": 930334.28, "total_ci_low_ns": 616555.7949404762, "total_ci_high_ns": 663306.7523809524, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.080400410856278}, {"serializer": "fastjson2", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.0.57", "avg_time_ser_ns": 102111.33333333333, "avg_time_deser_ns": 113084.17204301075, "avg_time_total_ns": 215195.50537634408, "median_size_bytes": 15547.0, "avg_ops_per_sec": 4646.937203689049, "min_ops_per_sec": 3010.950828162025, "max_ops_per_sec": 7151.029748283753, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 102111.33333333333, "ser_median_ns": 100705.0, "ser_std_ns": 12542.350622498208, "ser_mad_ns": 8864.0, "ser_cv": 0.1228301522765825, "ser_min_ns": 74784.0, "ser_max_ns": 136402.0, "ser_p5_ns": 83841.6, "ser_p25_ns": 93279.0, "ser_p50_ns": 100705.0, "ser_p75_ns": 110596.0, "ser_p95_ns": 123703.4, "ser_p99_ns": 133169.12, "ser_ci_low_ns": 99634.80725806451, "ser_ci_high_ns": 104735.54838709677, "deser_mean_ns": 113084.17204301075, "deser_median_ns": 119289.0, "deser_std_ns": 38062.38737675168, "deser_mad_ns": 34668.0, "deser_cv": 0.33658456960957295, "deser_min_ns": 63174.0, "deser_max_ns": 226913.0, "deser_p5_ns": 68391.0, "deser_p25_ns": 76649.0, "deser_p50_ns": 119289.0, "deser_p75_ns": 137394.0, "deser_p95_ns": 179373.59999999995, "deser_p99_ns": 206715.31999999995, "deser_ci_low_ns": 106122.01451612903, "deser_ci_high_ns": 120775.40215053763, "total_mean_ns": 215195.50537634408, "total_median_ns": 226103.0, "total_std_ns": 47450.3766198055, "total_mad_ns": 40856.0, "total_cv": 0.2204989204436312, "total_min_ns": 139840.0, "total_max_ns": 332121.0, "total_p5_ns": 150528.8, "total_p25_ns": 169243.0, "total_p50_ns": 226103.0, "total_p75_ns": 249592.0, "total_p95_ns": 291115.39999999997, "total_p99_ns": 325958.83999999997, "total_ci_low_ns": 205564.62311827956, "total_ci_high_ns": 225133.31505376345, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.5026347206689286}, {"serializer": "fory", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "1.3.0", "avg_time_ser_ns": 49887.14942528736, "avg_time_deser_ns": 37484.75862068965, "avg_time_total_ns": 87371.908045977, "median_size_bytes": 4441.0, "avg_ops_per_sec": 11445.32633388043, "min_ops_per_sec": 7705.050660708094, "max_ops_per_sec": 21065.492616544838, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 49887.14942528736, "ser_median_ns": 51475.0, "ser_std_ns": 8816.354762109222, "ser_mad_ns": 6626.0, "ser_cv": 0.17672596778280317, "ser_min_ns": 29696.0, "ser_max_ns": 67926.0, "ser_p5_ns": 37130.0, "ser_p25_ns": 41691.0, "ser_p50_ns": 51475.0, "ser_p75_ns": 56204.0, "ser_p95_ns": 65764.2, "ser_p99_ns": 66995.48, "ser_ci_low_ns": 48125.96781609196, "ser_ci_high_ns": 51694.07787356321, "deser_mean_ns": 37484.75862068965, "deser_median_ns": 39591.0, "deser_std_ns": 10143.24262400494, "deser_mad_ns": 7551.0, "deser_cv": 0.2705964503238496, "deser_min_ns": 17775.0, "deser_max_ns": 69974.0, "deser_p5_ns": 23539.2, "deser_p25_ns": 28012.5, "deser_p50_ns": 39591.0, "deser_p75_ns": 44087.5, "deser_p95_ns": 50889.200000000004, "deser_p99_ns": 65597.46, "deser_ci_low_ns": 35331.62212643678, "deser_ci_high_ns": 39536.14511494253, "total_mean_ns": 87371.908045977, "total_median_ns": 91377.0, "total_std_ns": 18017.75637674989, "total_mad_ns": 13507.0, "total_cv": 0.20621910153625755, "total_min_ns": 47471.0, "total_max_ns": 129785.0, "total_p5_ns": 61831.7, "total_p25_ns": 70781.5, "total_p50_ns": 91377.0, "total_p75_ns": 100965.0, "total_p95_ns": 114778.0, "total_p99_ns": 122661.62000000001, "total_ci_low_ns": 83484.1275862069, "total_ci_high_ns": 91151.73908045977, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "jsoniter", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "0.9.23", "avg_time_ser_ns": 53836.13978494624, "avg_time_deser_ns": 82743.4623655914, "avg_time_total_ns": 136579.60215053763, "median_size_bytes": 14804.0, "avg_ops_per_sec": 7321.737538068115, "min_ops_per_sec": 4602.7588936808725, "max_ops_per_sec": 12149.782518892911, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 53836.13978494624, "ser_median_ns": 52630.0, "ser_std_ns": 11734.8713416109, "ser_mad_ns": 7883.0, "ser_cv": 0.2179738626968241, "ser_min_ns": 38083.0, "ser_max_ns": 88442.0, "ser_p5_ns": 38848.2, "ser_p25_ns": 43461.0, "ser_p50_ns": 52630.0, "ser_p75_ns": 60323.0, "ser_p95_ns": 75545.6, "ser_p99_ns": 83884.31999999999, "ser_ci_low_ns": 51514.97392473119, "ser_ci_high_ns": 56195.81209677419, "deser_mean_ns": 82743.4623655914, "deser_median_ns": 90705.0, "deser_std_ns": 28909.795445999727, "deser_mad_ns": 23927.0, "deser_cv": 0.3493906904483341, "deser_min_ns": 44223.0, "deser_max_ns": 170414.0, "deser_p5_ns": 45636.4, "deser_p25_ns": 54038.0, "deser_p50_ns": 90705.0, "deser_p75_ns": 99389.0, "deser_p95_ns": 129806.79999999996, "deser_p99_ns": 159248.87999999998, "deser_ci_low_ns": 77107.53978494625, "deser_ci_high_ns": 88474.31129032258, "total_mean_ns": 136579.60215053763, "total_median_ns": 144286.0, "total_std_ns": 37888.23969775243, "total_mad_ns": 31268.0, "total_cv": 0.27740774684635655, "total_min_ns": 82306.0, "total_max_ns": 217261.0, "total_p5_ns": 86072.2, "total_p25_ns": 99286.0, "total_p50_ns": 144286.0, "total_p75_ns": 161946.0, "total_p95_ns": 202664.99999999997, "total_p99_ns": 215732.88, "total_ci_low_ns": 129061.84005376344, "total_ci_high_ns": 144253.30887096774, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.6932394018044741, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.6344238927897035}, {"serializer": "kryo", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "5.6.2", "avg_time_ser_ns": 81395.98936170213, "avg_time_deser_ns": 60101.63829787234, "avg_time_total_ns": 141497.62765957447, "median_size_bytes": 4154.0, "avg_ops_per_sec": 7067.256296380279, "min_ops_per_sec": 4148.620168931813, "max_ops_per_sec": 14701.990649533947, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 81395.98936170213, "ser_median_ns": 74845.0, "ser_std_ns": 24420.284709221873, "ser_mad_ns": 16641.0, "ser_cv": 0.30001827977917467, "ser_min_ns": 43643.0, "ser_max_ns": 147975.0, "ser_p5_ns": 46976.4, "ser_p25_ns": 61421.0, "ser_p50_ns": 74845.0, "ser_p75_ns": 102548.25, "ser_p95_ns": 119891.09999999999, "ser_p99_ns": 128545.43999999986, "ser_ci_low_ns": 76569.25531914894, "ser_ci_high_ns": 86123.3494680851, "deser_mean_ns": 60101.63829787234, "deser_median_ns": 55343.5, "deser_std_ns": 21207.869580083458, "deser_mad_ns": 17100.5, "deser_cv": 0.35286674674281276, "deser_min_ns": 24375.0, "deser_max_ns": 124130.0, "deser_p5_ns": 33190.0, "deser_p25_ns": 43271.0, "deser_p50_ns": 55343.5, "deser_p75_ns": 77530.0, "deser_p95_ns": 91269.49999999999, "deser_p99_ns": 120467.65999999997, "deser_ci_low_ns": 55677.62792553191, "deser_ci_high_ns": 64375.77632978724, "total_mean_ns": 141497.62765957447, "total_median_ns": 130605.0, "total_std_ns": 43790.143396274965, "total_mad_ns": 33542.0, "total_cv": 0.30947616663671956, "total_min_ns": 68018.0, "total_max_ns": 241044.0, "total_p5_ns": 85152.55, "total_p25_ns": 106671.75, "total_p50_ns": 130605.0, "total_p75_ns": 182284.5, "total_p95_ns": 214079.4, "total_p99_ns": 234448.43999999994, "total_ci_low_ns": 132798.54840425533, "total_ci_high_ns": 150349.77420212765, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.7493274639276106, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.5878276131452265}, {"serializer": "bson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "5.3.1", "avg_time_ser_ns": 197377.5760869565, "avg_time_deser_ns": 208107.40217391305, "avg_time_total_ns": 405484.97826086957, "median_size_bytes": 13461.0, "avg_ops_per_sec": 2466.182605059781, "min_ops_per_sec": 1344.1131205602264, "max_ops_per_sec": 4492.060283449004, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 197377.5760869565, "ser_median_ns": 193432.0, "ser_std_ns": 81696.0183470613, "ser_mad_ns": 55130.0, "ser_cv": 0.41390729365867457, "ser_min_ns": 81814.0, "ser_max_ns": 412084.0, "ser_p5_ns": 90316.8, "ser_p25_ns": 129150.25, "ser_p50_ns": 193432.0, "ser_p75_ns": 239389.25, "ser_p95_ns": 389583.10000000003, "ser_p99_ns": 411633.55, "ser_ci_low_ns": 180984.87744565218, "ser_ci_high_ns": 214676.68967391303, "deser_mean_ns": 208107.40217391305, "deser_median_ns": 207118.5, "deser_std_ns": 47734.304088051234, "deser_mad_ns": 37149.5, "deser_cv": 0.2293734081028036, "deser_min_ns": 135122.0, "deser_max_ns": 331901.0, "deser_p5_ns": 144864.0, "deser_p25_ns": 161526.5, "deser_p50_ns": 207118.5, "deser_p75_ns": 238656.0, "deser_p95_ns": 291482.10000000003, "deser_p99_ns": 331168.45, "deser_ci_low_ns": 198431.43179347826, "deser_ci_high_ns": 217579.5043478261, "total_mean_ns": 405484.97826086957, "total_median_ns": 401625.0, "total_std_ns": 127055.19317806733, "total_mad_ns": 86543.5, "total_cv": 0.3133413072982598, "total_min_ns": 222615.0, "total_max_ns": 743985.0, "total_p5_ns": 234505.05, "total_p25_ns": 286572.5, "total_p50_ns": 401625.0, "total_p75_ns": 478940.5, "total_p95_ns": 690582.4, "total_p99_ns": 731853.79, "total_ci_low_ns": 380316.74510869564, "total_ci_high_ns": 431427.47472826083, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.4444514165677274}, {"serializer": "protobuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "4.28.3", "avg_time_ser_ns": 41925.141304347824, "avg_time_deser_ns": 62773.010869565216, "avg_time_total_ns": 104698.15217391304, "median_size_bytes": 4841.0, "avg_ops_per_sec": 9551.266944414741, "min_ops_per_sec": 6846.923334999418, "max_ops_per_sec": 13231.888852133641, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 41925.141304347824, "ser_median_ns": 39536.5, "ser_std_ns": 7674.491073911672, "ser_mad_ns": 3261.5, "ser_cv": 0.18305224109324095, "ser_min_ns": 32221.0, "ser_max_ns": 64157.0, "ser_p5_ns": 33292.85, "ser_p25_ns": 36682.0, "ser_p50_ns": 39536.5, "ser_p75_ns": 43912.25, "ser_p95_ns": 56779.85, "ser_p99_ns": 61154.000000000015, "ser_ci_low_ns": 40410.8910326087, "ser_ci_high_ns": 43534.02663043478, "deser_mean_ns": 62773.010869565216, "deser_median_ns": 64439.5, "deser_std_ns": 11226.195092400088, "deser_mad_ns": 8921.0, "deser_cv": 0.17883792631401374, "deser_min_ns": 42216.0, "deser_max_ns": 89011.0, "deser_p5_ns": 46077.6, "deser_p25_ns": 52519.0, "deser_p50_ns": 64439.5, "deser_p75_ns": 71632.5, "deser_p95_ns": 80564.85, "deser_p99_ns": 86740.55, "deser_ci_low_ns": 60524.872282608696, "deser_ci_high_ns": 65038.84184782609, "total_mean_ns": 104698.15217391304, "total_median_ns": 105847.0, "total_std_ns": 16395.4290567405, "total_mad_ns": 13319.5, "total_cv": 0.1565971195891425, "total_min_ns": 75575.0, "total_max_ns": 146051.0, "total_p5_ns": 80070.6, "total_p25_ns": 90539.75, "total_p50_ns": 105847.0, "total_p75_ns": 115788.75, "total_p95_ns": 129387.45, "total_p99_ns": 140665.62000000002, "total_ci_low_ns": 101344.81114130435, "total_ci_high_ns": 107890.55434782608, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.49075462268865566, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.0029021872206365}, {"serializer": "protostuff", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "1.8.0", "avg_time_ser_ns": 19358.827956989247, "avg_time_deser_ns": 24334.56989247312, "avg_time_total_ns": 43693.397849462366, "median_size_bytes": 4948.0, "avg_ops_per_sec": 22886.752901326596, "min_ops_per_sec": 14768.649111665756, "max_ops_per_sec": 36002.30414746544, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 19358.827956989247, "ser_median_ns": 19258.0, "ser_std_ns": 3828.7736162983156, "ser_mad_ns": 3086.0, "ser_cv": 0.19777920568357485, "ser_min_ns": 13529.0, "ser_max_ns": 31328.0, "ser_p5_ns": 14500.2, "ser_p25_ns": 16128.0, "ser_p50_ns": 19258.0, "ser_p75_ns": 22217.0, "ser_p95_ns": 26015.99999999999, "ser_p99_ns": 30511.96, "ser_ci_low_ns": 18607.50806451613, "ser_ci_high_ns": 20187.23709677419, "deser_mean_ns": 24334.56989247312, "deser_median_ns": 24964.0, "deser_std_ns": 5315.510860143272, "deser_mad_ns": 3263.0, "deser_cv": 0.21843455148913082, "deser_min_ns": 13353.0, "deser_max_ns": 36383.0, "deser_p5_ns": 14048.0, "deser_p25_ns": 21701.0, "deser_p50_ns": 24964.0, "deser_p75_ns": 28146.0, "deser_p95_ns": 31136.999999999993, "deser_p99_ns": 35611.119999999995, "deser_ci_low_ns": 23258.35510752688, "deser_ci_high_ns": 25397.053763440857, "total_mean_ns": 43693.397849462366, "total_median_ns": 45157.0, "total_std_ns": 8607.888575047316, "total_mad_ns": 6200.0, "total_cv": 0.1970066188192602, "total_min_ns": 27776.0, "total_max_ns": 67711.0, "total_p5_ns": 28991.0, "total_p25_ns": 37884.0, "total_p50_ns": 45157.0, "total_p75_ns": 49750.0, "total_p95_ns": 57111.2, "total_p99_ns": 61118.279999999984, "total_ci_low_ns": 42011.82607526882, "total_ci_high_ns": 45423.58010752688, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "bson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "5.3.1", "avg_time_ser_ns": 126543.28571428571, "avg_time_deser_ns": 154276.42857142858, "avg_time_total_ns": 280819.71428571426, "median_size_bytes": 13461.0, "avg_ops_per_sec": 3561.0035518466857, "min_ops_per_sec": 2808.8861923581444, "max_ops_per_sec": 6160.746189578482, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 126543.28571428571, "ser_median_ns": 128511.0, "ser_std_ns": 18849.26055088035, "ser_mad_ns": 10002.0, "ser_cv": 0.14895504288895212, "ser_min_ns": 76951.0, "ser_max_ns": 160253.0, "ser_p5_ns": 91096.55, "ser_p25_ns": 120650.5, "ser_p50_ns": 128511.0, "ser_p75_ns": 139219.0, "ser_p95_ns": 153947.1, "ser_p99_ns": 159830.53, "ser_ci_low_ns": 122537.61666666667, "ser_ci_high_ns": 130694.15565476191, "deser_mean_ns": 154276.42857142858, "deser_median_ns": 154432.5, "deser_std_ns": 21336.99628835545, "deser_mad_ns": 12683.5, "deser_cv": 0.13830367014541445, "deser_min_ns": 84785.0, "deser_max_ns": 199567.0, "deser_p5_ns": 121513.7, "deser_p25_ns": 144233.0, "deser_p50_ns": 154432.5, "deser_p75_ns": 167467.0, "deser_p95_ns": 188283.49999999997, "deser_p99_ns": 198181.73, "deser_ci_low_ns": 149509.6023809524, "deser_ci_high_ns": 158704.64970238094, "total_mean_ns": 280819.71428571426, "total_median_ns": 283574.0, "total_std_ns": 38180.13514039821, "total_mad_ns": 22018.5, "total_cv": 0.1359595968449445, "total_min_ns": 162318.0, "total_max_ns": 356013.0, "total_p5_ns": 214484.85, "total_p25_ns": 261774.75, "total_p50_ns": 283574.0, "total_p75_ns": 305538.75, "total_p95_ns": 338513.1, "total_p99_ns": 352904.65, "total_ci_low_ns": 272158.53779761906, "total_ci_high_ns": 288793.8229166666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.736795556001015}, {"serializer": "jsoniter", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "0.9.23", "avg_time_ser_ns": 36718.942528735635, "avg_time_deser_ns": 55775.666666666664, "avg_time_total_ns": 92494.6091954023, "median_size_bytes": 14804.0, "avg_ops_per_sec": 10811.440890435242, "min_ops_per_sec": 8377.524776529526, "max_ops_per_sec": 18076.318215505868, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 36718.942528735635, "ser_median_ns": 37490.0, "ser_std_ns": 7357.494712886108, "ser_mad_ns": 3967.0, "ser_cv": 0.2003732734712677, "ser_min_ns": 21137.0, "ser_max_ns": 53537.0, "ser_p5_ns": 22074.7, "ser_p25_ns": 33387.5, "ser_p50_ns": 37490.0, "ser_p75_ns": 41030.0, "ser_p95_ns": 48154.5, "ser_p99_ns": 52425.88, "ser_ci_low_ns": 35214.68275862069, "ser_ci_high_ns": 38289.41494252874, "deser_mean_ns": 55775.666666666664, "deser_median_ns": 56564.0, "deser_std_ns": 9782.80026333197, "deser_mad_ns": 5911.0, "deser_cv": 0.17539548781724354, "deser_min_ns": 34184.0, "deser_max_ns": 77947.0, "deser_p5_ns": 35433.1, "deser_p25_ns": 50554.5, "deser_p50_ns": 56564.0, "deser_p75_ns": 62390.0, "deser_p95_ns": 69205.8, "deser_p99_ns": 75795.28, "deser_ci_low_ns": 53754.739655172416, "deser_ci_high_ns": 57723.50229885057, "total_mean_ns": 92494.6091954023, "total_median_ns": 95236.0, "total_std_ns": 16241.486258714363, "total_mad_ns": 9854.0, "total_cv": 0.17559386865890658, "total_min_ns": 55321.0, "total_max_ns": 119367.0, "total_p5_ns": 57414.4, "total_p25_ns": 85334.0, "total_p50_ns": 95236.0, "total_p75_ns": 103821.5, "total_p95_ns": 115970.8, "total_p99_ns": 117508.54000000001, "total_ci_low_ns": 88896.4525862069, "total_ci_high_ns": 95912.8948275862, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9903596588802372, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.7746408141218626}, {"serializer": "jackson-smile", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 45569.68686868687, "avg_time_deser_ns": 61172.20202020202, "avg_time_total_ns": 106741.88888888889, "median_size_bytes": 5862.0, "avg_ops_per_sec": 9368.393330953068, "min_ops_per_sec": 7080.999553897028, "max_ops_per_sec": 14202.931485058516, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 45569.68686868687, "ser_median_ns": 44813.0, "ser_std_ns": 7463.451818964833, "ser_mad_ns": 5495.0, "ser_cv": 0.16378106438324752, "ser_min_ns": 29679.0, "ser_max_ns": 61970.0, "ser_p5_ns": 32457.2, "ser_p25_ns": 40616.0, "ser_p50_ns": 44813.0, "ser_p75_ns": 51157.0, "ser_p95_ns": 57428.2, "ser_p99_ns": 58614.47999999999, "ser_ci_low_ns": 44083.464141414144, "ser_ci_high_ns": 47035.14444444444, "deser_mean_ns": 61172.20202020202, "deser_median_ns": 60398.0, "deser_std_ns": 10217.368650608867, "deser_mad_ns": 6609.0, "deser_cv": 0.16702633407302547, "deser_min_ns": 40267.0, "deser_max_ns": 87753.0, "deser_p5_ns": 43777.4, "deser_p25_ns": 54834.0, "deser_p50_ns": 60398.0, "deser_p75_ns": 68857.0, "deser_p95_ns": 77380.29999999999, "deser_p99_ns": 87285.54, "deser_ci_low_ns": 59195.64621212122, "deser_ci_high_ns": 63213.66868686869, "total_mean_ns": 106741.88888888889, "total_median_ns": 106346.0, "total_std_ns": 16893.208563477838, "total_mad_ns": 13177.0, "total_cv": 0.158262222444485, "total_min_ns": 70408.0, "total_max_ns": 141223.0, "total_p5_ns": 77295.3, "total_p25_ns": 94653.5, "total_p50_ns": 106346.0, "total_p75_ns": 121238.5, "total_p95_ns": 131100.9, "total_p99_ns": 136277.91999999998, "total_ci_low_ns": 103328.5303030303, "total_ci_high_ns": 110340.75833333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.641316119568459}, {"serializer": "kryo", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "5.6.2", "avg_time_ser_ns": 33390.41176470588, "avg_time_deser_ns": 26304.964705882354, "avg_time_total_ns": 59695.376470588235, "median_size_bytes": 4154.0, "avg_ops_per_sec": 16751.716114776453, "min_ops_per_sec": 12094.823415578132, "max_ops_per_sec": 26155.41547877488, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 33390.41176470588, "ser_median_ns": 33640.0, "ser_std_ns": 6439.045077261286, "ser_mad_ns": 4266.0, "ser_cv": 0.19284114022419585, "ser_min_ns": 22247.0, "ser_max_ns": 52100.0, "ser_p5_ns": 23976.2, "ser_p25_ns": 29036.0, "ser_p50_ns": 33640.0, "ser_p75_ns": 37481.0, "ser_p95_ns": 44326.2, "ser_p99_ns": 49075.15999999999, "ser_ci_low_ns": 32088.95205882353, "ser_ci_high_ns": 34785.45647058823, "deser_mean_ns": 26304.964705882354, "deser_median_ns": 26960.0, "deser_std_ns": 5153.355258024248, "deser_mad_ns": 2843.0, "deser_cv": 0.1959080848670307, "deser_min_ns": 15732.0, "deser_max_ns": 39178.0, "deser_p5_ns": 17090.4, "deser_p25_ns": 23914.0, "deser_p50_ns": 26960.0, "deser_p75_ns": 29579.0, "deser_p95_ns": 34510.6, "deser_p99_ns": 38269.96, "deser_ci_low_ns": 25167.349411764706, "deser_ci_high_ns": 27429.678529411765, "total_mean_ns": 59695.376470588235, "total_median_ns": 60699.0, "total_std_ns": 10640.374417168552, "total_mad_ns": 6753.0, "total_cv": 0.17824453159133755, "total_min_ns": 38233.0, "total_max_ns": 82680.0, "total_p5_ns": 41067.4, "total_p25_ns": 53946.0, "total_p50_ns": 60699.0, "total_p75_ns": 66860.0, "total_p95_ns": 74989.2, "total_p99_ns": 82402.8, "total_ci_low_ns": 57533.772352941174, "total_ci_high_ns": 62092.96323529412, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.7507906388361796, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.654315798609122}, {"serializer": "protobuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "4.28.3", "avg_time_ser_ns": 26891.722222222223, "avg_time_deser_ns": 51610.71111111111, "avg_time_total_ns": 78502.43333333333, "median_size_bytes": 4841.0, "avg_ops_per_sec": 12738.458638012495, "min_ops_per_sec": 6932.889628397116, "max_ops_per_sec": 29920.41170486506, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 26891.722222222223, "ser_median_ns": 20765.5, "ser_std_ns": 12591.6089216819, "ser_mad_ns": 8337.5, "ser_cv": 0.46823363775774496, "ser_min_ns": 11161.0, "ser_max_ns": 63230.0, "ser_p5_ns": 12423.4, "ser_p25_ns": 16676.5, "ser_p50_ns": 20765.5, "ser_p75_ns": 36248.0, "ser_p95_ns": 49553.95, "ser_p99_ns": 59103.96, "ser_ci_low_ns": 24352.695, "ser_ci_high_ns": 29615.33444444444, "deser_mean_ns": 51610.71111111111, "deser_median_ns": 49641.0, "deser_std_ns": 15935.760690018475, "deser_mad_ns": 10385.0, "deser_cv": 0.3087684774524975, "deser_min_ns": 22261.0, "deser_max_ns": 94637.0, "deser_p5_ns": 26248.5, "deser_p25_ns": 41109.25, "deser_p50_ns": 49641.0, "deser_p75_ns": 61498.75, "deser_p95_ns": 79076.65, "deser_p99_ns": 85623.07999999999, "deser_ci_low_ns": 48270.22277777778, "deser_ci_high_ns": 54824.73777777777, "total_mean_ns": 78502.43333333333, "total_median_ns": 74891.0, "total_std_ns": 26505.747090208803, "total_mad_ns": 20178.5, "total_cv": 0.33764236297824485, "total_min_ns": 33422.0, "total_max_ns": 144240.0, "total_p5_ns": 38741.05, "total_p25_ns": 59577.25, "total_p50_ns": 74891.0, "total_p75_ns": 98316.0, "total_p95_ns": 119816.5, "total_p99_ns": 125952.27999999998, "total_ci_low_ns": 73089.57750000001, "total_ci_high_ns": 84050.57944444443, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.7821983273596177, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.7710078952280648}, {"serializer": "avro", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "1.12.0", "avg_time_ser_ns": 34702.22093023256, "avg_time_deser_ns": 70386.33720930232, "avg_time_total_ns": 105088.55813953489, "median_size_bytes": 4051.0, "avg_ops_per_sec": 9515.783808473385, "min_ops_per_sec": 7038.040609494316, "max_ops_per_sec": 15460.729746444033, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 34702.22093023256, "ser_median_ns": 35170.5, "ser_std_ns": 4352.942448778791, "ser_mad_ns": 2467.0, "ser_cv": 0.1254369989036209, "ser_min_ns": 24824.0, "ser_max_ns": 45980.0, "ser_p5_ns": 25540.5, "ser_p25_ns": 32620.0, "ser_p50_ns": 35170.5, "ser_p75_ns": 37509.0, "ser_p95_ns": 39490.5, "ser_p99_ns": 45940.9, "ser_ci_low_ns": 33794.76686046512, "ser_ci_high_ns": 35619.402034883715, "deser_mean_ns": 70386.33720930232, "deser_median_ns": 71361.0, "deser_std_ns": 13708.33152125804, "deser_mad_ns": 8183.5, "deser_cv": 0.1947584156921627, "deser_min_ns": 39647.0, "deser_max_ns": 102870.0, "deser_p5_ns": 40566.5, "deser_p25_ns": 63131.25, "deser_p50_ns": 71361.0, "deser_p75_ns": 78727.25, "deser_p95_ns": 89518.75, "deser_p99_ns": 101720.8, "deser_ci_low_ns": 67579.91744186047, "deser_ci_high_ns": 73112.42209302326, "total_mean_ns": 105088.55813953489, "total_median_ns": 107470.0, "total_std_ns": 17296.675464040618, "total_mad_ns": 10184.0, "total_cv": 0.16459142432113658, "total_min_ns": 64680.0, "total_max_ns": 142085.0, "total_p5_ns": 66013.0, "total_p25_ns": 96475.0, "total_p50_ns": 107470.0, "total_p75_ns": 115813.0, "total_p95_ns": 126155.5, "total_p99_ns": 139614.90000000002, "total_ci_low_ns": 101665.63662790698, "total_ci_high_ns": 108543.33808139536, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9982495623905977, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.529304284079445}, {"serializer": "jackson-cbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 44068.17391304348, "avg_time_deser_ns": 78458.53260869565, "avg_time_total_ns": 122526.70652173914, "median_size_bytes": 11130.0, "avg_ops_per_sec": 8161.486000789358, "min_ops_per_sec": 5954.578475389727, "max_ops_per_sec": 12086.344847591192, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 44068.17391304348, "ser_median_ns": 43940.0, "ser_std_ns": 7390.541125199698, "ser_mad_ns": 5106.0, "ser_cv": 0.16770699733968816, "ser_min_ns": 29739.0, "ser_max_ns": 64514.0, "ser_p5_ns": 32343.45, "ser_p25_ns": 39489.0, "ser_p50_ns": 43940.0, "ser_p75_ns": 49373.25, "ser_p95_ns": 55845.450000000004, "ser_p99_ns": 63743.23, "ser_ci_low_ns": 42640.45190217391, "ser_ci_high_ns": 45564.72418478261, "deser_mean_ns": 78458.53260869565, "deser_median_ns": 78616.0, "deser_std_ns": 12303.067723803986, "deser_mad_ns": 7730.5, "deser_cv": 0.15680981168949906, "deser_min_ns": 52999.0, "deser_max_ns": 106208.0, "deser_p5_ns": 56551.2, "deser_p25_ns": 71354.0, "deser_p50_ns": 78616.0, "deser_p75_ns": 86540.0, "deser_p95_ns": 99979.70000000001, "deser_p99_ns": 103962.12000000001, "deser_ci_low_ns": 75995.73070652175, "deser_ci_high_ns": 81003.96874999999, "total_mean_ns": 122526.70652173914, "total_median_ns": 121418.5, "total_std_ns": 18975.19935903499, "total_mad_ns": 12335.0, "total_cv": 0.15486582393095125, "total_min_ns": 82738.0, "total_max_ns": 167938.0, "total_p5_ns": 88482.9, "total_p25_ns": 110825.0, "total_p50_ns": 121418.5, "total_p75_ns": 136047.25, "total_p95_ns": 153683.15, "total_p99_ns": 161402.38000000003, "total_ci_low_ns": 118586.20298913044, "total_ci_high_ns": 126576.41929347826, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.33826174382273}, {"serializer": "fory", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "1.3.0", "avg_time_ser_ns": 27617.273684210526, "avg_time_deser_ns": 26997.684210526317, "avg_time_total_ns": 54614.95789473684, "median_size_bytes": 4441.0, "avg_ops_per_sec": 18310.002214546585, "min_ops_per_sec": 10091.530178721, "max_ops_per_sec": 45181.40333438756, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 27617.273684210526, "ser_median_ns": 27366.0, "ser_std_ns": 9263.619869927354, "ser_mad_ns": 7332.0, "ser_cv": 0.33542847045121593, "ser_min_ns": 11601.0, "ser_max_ns": 54677.0, "ser_p5_ns": 13840.0, "ser_p25_ns": 19891.0, "ser_p50_ns": 27366.0, "ser_p75_ns": 34129.5, "ser_p95_ns": 41497.6, "ser_p99_ns": 49343.44000000001, "ser_ci_low_ns": 25840.548684210527, "ser_ci_high_ns": 29475.184210526313, "deser_mean_ns": 26997.684210526317, "deser_median_ns": 27537.0, "deser_std_ns": 7927.576343779362, "deser_mad_ns": 4967.0, "deser_cv": 0.2936391240804433, "deser_min_ns": 10532.0, "deser_max_ns": 47610.0, "deser_p5_ns": 12346.3, "deser_p25_ns": 22238.0, "deser_p50_ns": 27537.0, "deser_p75_ns": 32401.5, "deser_p95_ns": 38735.899999999994, "deser_p99_ns": 46904.060000000005, "deser_ci_low_ns": 25439.800526315787, "deser_ci_high_ns": 28486.21157894737, "total_mean_ns": 54614.95789473684, "total_median_ns": 54876.0, "total_std_ns": 16292.282678328065, "total_mad_ns": 11623.0, "total_cv": 0.2983117319202058, "total_min_ns": 22133.0, "total_max_ns": 99093.0, "total_p5_ns": 26251.2, "total_p25_ns": 42713.0, "total_p50_ns": 54876.0, "total_p75_ns": 65937.0, "total_p95_ns": 81274.0, "total_p99_ns": 88774.62000000002, "total_ci_low_ns": 51261.07289473684, "total_ci_high_ns": 57933.15921052632, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.4545557441992077, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.8323173471803592}, {"serializer": "java-serialization", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "21.0.11", "avg_time_ser_ns": 92266.82474226804, "avg_time_deser_ns": 110159.9587628866, "avg_time_total_ns": 202426.78350515463, "median_size_bytes": 5953.0, "avg_ops_per_sec": 4940.057746728638, "min_ops_per_sec": 2748.604396117871, "max_ops_per_sec": 9029.263844118788, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 92266.82474226804, "ser_median_ns": 65843.0, "ser_std_ns": 53888.45431112198, "ser_mad_ns": 10561.0, "ser_cv": 0.5840501660445168, "ser_min_ns": 44771.0, "ser_max_ns": 229493.0, "ser_p5_ns": 47234.8, "ser_p25_ns": 56770.0, "ser_p50_ns": 65843.0, "ser_p75_ns": 160512.0, "ser_p95_ns": 190820.79999999987, "ser_p99_ns": 218533.6399999999, "ser_ci_low_ns": 82139.56907216496, "ser_ci_high_ns": 103071.12190721648, "deser_mean_ns": 110159.9587628866, "deser_median_ns": 109875.0, "deser_std_ns": 23053.11930805927, "deser_mad_ns": 16626.0, "deser_cv": 0.20926949834540037, "deser_min_ns": 64968.0, "deser_max_ns": 168153.0, "deser_p5_ns": 67051.6, "deser_p25_ns": 95191.0, "deser_p50_ns": 109875.0, "deser_p75_ns": 128285.0, "deser_p95_ns": 140785.39999999988, "deser_p99_ns": 162537.95999999996, "deser_ci_low_ns": 105581.58015463919, "deser_ci_high_ns": 114927.62268041237, "total_mean_ns": 202426.78350515463, "total_median_ns": 179219.0, "total_std_ns": 70795.67747519189, "total_mad_ns": 29089.0, "total_cv": 0.3497347349462238, "total_min_ns": 110751.0, "total_max_ns": 363821.0, "total_p5_ns": 114360.6, "total_p25_ns": 154459.0, "total_p50_ns": 179219.0, "total_p75_ns": 268913.0, "total_p95_ns": 332832.79999999993, "total_p99_ns": 355204.99999999994, "total_ci_low_ns": 188272.6286082474, "total_ci_high_ns": 217165.55128865977, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.1032133848209833}, {"serializer": "ion", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 149186.40476190476, "avg_time_deser_ns": 341866.78571428574, "avg_time_total_ns": 491053.1904761905, "median_size_bytes": 14146.0, "avg_ops_per_sec": 2036.4392684838622, "min_ops_per_sec": 1762.8942492626695, "max_ops_per_sec": 2529.2571824580837, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 149186.40476190476, "ser_median_ns": 149521.0, "ser_std_ns": 18502.28011615986, "ser_mad_ns": 15808.5, "ser_cv": 0.124021221274745, "ser_min_ns": 110235.0, "ser_max_ns": 189924.0, "ser_p5_ns": 123403.6, "ser_p25_ns": 133183.75, "ser_p50_ns": 149521.0, "ser_p75_ns": 164159.75, "ser_p95_ns": 176990.5, "ser_p99_ns": 186704.43, "ser_ci_low_ns": 145231.9773809524, "ser_ci_high_ns": 153191.38958333334, "deser_mean_ns": 341866.78571428574, "deser_median_ns": 340960.5, "deser_std_ns": 23875.2429032349, "deser_mad_ns": 16990.0, "deser_cv": 0.06983785468761089, "deser_min_ns": 266726.0, "deser_max_ns": 404642.0, "deser_p5_ns": 309758.5, "deser_p25_ns": 328028.0, "deser_p50_ns": 340960.5, "deser_p75_ns": 361144.25, "deser_p95_ns": 375748.55, "deser_p99_ns": 386826.88000000006, "deser_ci_low_ns": 336794.55505952385, "deser_ci_high_ns": 346949.9910714286, "total_mean_ns": 491053.1904761905, "total_median_ns": 487400.5, "total_std_ns": 36084.48811060295, "total_mad_ns": 26153.5, "total_cv": 0.0734838685715709, "total_min_ns": 395373.0, "total_max_ns": 567249.0, "total_p5_ns": 441078.35, "total_p25_ns": 464990.25, "total_p50_ns": 487400.5, "total_p75_ns": 523202.25, "total_p95_ns": 547892.1, "total_p99_ns": 556694.72, "total_ci_low_ns": 483243.9791666667, "total_ci_high_ns": 498591.40773809527, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.38466599057584}, {"serializer": "moshi", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "1.15.2", "avg_time_ser_ns": 103797.1294117647, "avg_time_deser_ns": 154349.97647058824, "avg_time_total_ns": 258147.10588235295, "median_size_bytes": 15546.0, "avg_ops_per_sec": 3873.760259995851, "min_ops_per_sec": 3376.5532144786603, "max_ops_per_sec": 4727.081925056843, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 103797.1294117647, "ser_median_ns": 103131.0, "ser_std_ns": 7830.612844392674, "ser_mad_ns": 5163.0, "ser_cv": 0.07544151643470332, "ser_min_ns": 81418.0, "ser_max_ns": 125570.0, "ser_p5_ns": 92235.4, "ser_p25_ns": 98698.0, "ser_p50_ns": 103131.0, "ser_p75_ns": 108828.0, "ser_p95_ns": 118123.79999999999, "ser_p99_ns": 122322.55999999998, "ser_ci_low_ns": 102140.26264705883, "ser_ci_high_ns": 105407.58647058823, "deser_mean_ns": 154349.97647058824, "deser_median_ns": 154196.0, "deser_std_ns": 11850.772054391819, "deser_mad_ns": 8231.0, "deser_cv": 0.07677858024584805, "deser_min_ns": 128708.0, "deser_max_ns": 178420.0, "deser_p5_ns": 132257.4, "deser_p25_ns": 146908.0, "deser_p50_ns": 154196.0, "deser_p75_ns": 163080.0, "deser_p95_ns": 173982.19999999998, "deser_p99_ns": 177353.19999999998, "deser_ci_low_ns": 151910.67823529412, "deser_ci_high_ns": 156828.85647058822, "total_mean_ns": 258147.10588235295, "total_median_ns": 256533.0, "total_std_ns": 18300.34482762781, "total_mad_ns": 13630.0, "total_cv": 0.07089114853748524, "total_min_ns": 211547.0, "total_max_ns": 296160.0, "total_p5_ns": 226064.2, "total_p25_ns": 246323.0, "total_p50_ns": 256533.0, "total_p75_ns": 273770.0, "total_p95_ns": 284838.4, "total_p99_ns": 292548.83999999997, "total_ci_low_ns": 254088.14941176472, "total_ci_high_ns": 261878.26911764705, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.153659989812628}, {"serializer": "hessian", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "4.0.66", "avg_time_ser_ns": 37186.96703296703, "avg_time_deser_ns": 56088.79120879121, "avg_time_total_ns": 93275.75824175825, "median_size_bytes": 4802.0, "avg_ops_per_sec": 10720.899179485996, "min_ops_per_sec": 6215.233537400168, "max_ops_per_sec": 19964.861843156046, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 37186.96703296703, "ser_median_ns": 37085.0, "ser_std_ns": 7003.285267882892, "ser_mad_ns": 4787.0, "ser_cv": 0.18832633652737346, "ser_min_ns": 24313.0, "ser_max_ns": 54396.0, "ser_p5_ns": 24821.5, "ser_p25_ns": 33012.0, "ser_p50_ns": 37085.0, "ser_p75_ns": 42298.5, "ser_p95_ns": 49947.5, "ser_p99_ns": 52447.499999999985, "ser_ci_low_ns": 35786.142857142855, "ser_ci_high_ns": 38668.53461538462, "deser_mean_ns": 56088.79120879121, "deser_median_ns": 53626.0, "deser_std_ns": 21426.823039004423, "deser_mad_ns": 19992.0, "deser_cv": 0.3820161315162385, "deser_min_ns": 25338.0, "deser_max_ns": 115875.0, "deser_p5_ns": 26341.5, "deser_p25_ns": 36575.0, "deser_p50_ns": 53626.0, "deser_p75_ns": 76037.0, "deser_p95_ns": 87290.0, "deser_p99_ns": 111458.69999999997, "deser_ci_low_ns": 51758.989560439564, "deser_ci_high_ns": 60444.250824175826, "total_mean_ns": 93275.75824175825, "total_median_ns": 90929.0, "total_std_ns": 27326.854579064675, "total_mad_ns": 22987.0, "total_cv": 0.2929684528346276, "total_min_ns": 50088.0, "total_max_ns": 160895.0, "total_p5_ns": 51118.5, "total_p25_ns": 69659.5, "total_p50_ns": 90929.0, "total_p75_ns": 118019.0, "total_p95_ns": 132653.0, "total_p99_ns": 153747.19999999995, "total_ci_low_ns": 87755.68956043955, "total_ci_high_ns": 98430.52939560439, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9595887982984758, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.448375494713282}, {"serializer": "msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "0.9.8", "avg_time_ser_ns": 90191.18292682926, "avg_time_deser_ns": 117624.64634146342, "avg_time_total_ns": 207815.82926829267, "median_size_bytes": 11031.0, "avg_ops_per_sec": 4811.952985106771, "min_ops_per_sec": 3744.3787513994616, "max_ops_per_sec": 6928.614484961442, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 90191.18292682926, "ser_median_ns": 89736.0, "ser_std_ns": 11546.973208367926, "ser_mad_ns": 8395.0, "ser_cv": 0.12802773878390986, "ser_min_ns": 63877.0, "ser_max_ns": 124073.0, "ser_p5_ns": 74264.55, "ser_p25_ns": 81543.5, "ser_p50_ns": 89736.0, "ser_p75_ns": 99150.75, "ser_p95_ns": 108140.8, "ser_p99_ns": 113553.52999999997, "ser_ci_low_ns": 87660.6268292683, "ser_ci_high_ns": 92844.3375, "deser_mean_ns": 117624.64634146342, "deser_median_ns": 116047.5, "deser_std_ns": 12052.989442582744, "deser_mad_ns": 7696.5, "deser_cv": 0.10246993140870334, "deser_min_ns": 80452.0, "deser_max_ns": 148297.0, "deser_p5_ns": 99156.8, "deser_p25_ns": 111313.5, "deser_p50_ns": 116047.5, "deser_p75_ns": 125175.5, "deser_p95_ns": 139699.55, "deser_p99_ns": 146280.91, "deser_ci_low_ns": 115118.60609756097, "deser_ci_high_ns": 120186.78963414633, "total_mean_ns": 207815.82926829267, "total_median_ns": 204589.5, "total_std_ns": 22320.623881057323, "total_mad_ns": 16421.0, "total_cv": 0.10740579271389927, "total_min_ns": 144329.0, "total_max_ns": 267067.0, "total_p5_ns": 177960.6, "total_p25_ns": 192200.75, "total_p50_ns": 204589.5, "total_p75_ns": 224993.0, "total_p95_ns": 242222.15, "total_p99_ns": 260479.27, "total_ci_low_ns": 203276.52591463417, "total_ci_high_ns": 212325.33414634145, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.896006716791167}, {"serializer": "jackson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 66805.16129032258, "avg_time_deser_ns": 118465.25806451614, "avg_time_total_ns": 185270.4193548387, "median_size_bytes": 15546.0, "avg_ops_per_sec": 5397.515715041118, "min_ops_per_sec": 4311.292568624999, "max_ops_per_sec": 7914.899005888685, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 66805.16129032258, "ser_median_ns": 68469.0, "ser_std_ns": 10741.019428068152, "ser_mad_ns": 6253.0, "ser_cv": 0.160781281275405, "ser_min_ns": 43026.0, "ser_max_ns": 93679.0, "ser_p5_ns": 49362.4, "ser_p25_ns": 58962.0, "ser_p50_ns": 68469.0, "ser_p75_ns": 73325.0, "ser_p95_ns": 83887.4, "ser_p99_ns": 91632.0, "ser_ci_low_ns": 64532.67123655914, "ser_ci_high_ns": 69061.86505376342, "deser_mean_ns": 118465.25806451614, "deser_median_ns": 119959.0, "deser_std_ns": 14408.391197872847, "deser_mad_ns": 8378.0, "deser_cv": 0.12162545739803346, "deser_min_ns": 83079.0, "deser_max_ns": 149786.0, "deser_p5_ns": 85638.2, "deser_p25_ns": 111827.0, "deser_p50_ns": 119959.0, "deser_p75_ns": 128337.0, "deser_p95_ns": 140518.2, "deser_p99_ns": 148225.68, "deser_ci_low_ns": 115500.92930107527, "deser_ci_high_ns": 121365.06747311828, "total_mean_ns": 185270.4193548387, "total_median_ns": 187248.0, "total_std_ns": 23563.156477452798, "total_mad_ns": 15571.0, "total_cv": 0.1271825073830244, "total_min_ns": 126344.0, "total_max_ns": 231949.0, "total_p5_ns": 134662.2, "total_p25_ns": 170960.0, "total_p50_ns": 187248.0, "total_p75_ns": 201985.0, "total_p95_ns": 219612.39999999994, "total_p99_ns": 227695.84, "total_ci_low_ns": 180444.99623655915, "total_ci_high_ns": 189764.71182795698, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.948705445122114}, {"serializer": "fastjson2", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.0.57", "avg_time_ser_ns": 47570.11578947368, "avg_time_deser_ns": 65045.04210526316, "avg_time_total_ns": 112615.15789473684, "median_size_bytes": 15547.0, "avg_ops_per_sec": 8879.799297841555, "min_ops_per_sec": 5216.701792458736, "max_ops_per_sec": 15717.33936879165, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 47570.11578947368, "ser_median_ns": 50643.0, "ser_std_ns": 15943.172694653864, "ser_mad_ns": 12444.0, "ser_cv": 0.33515101718927853, "ser_min_ns": 25534.0, "ser_max_ns": 94407.0, "ser_p5_ns": 25621.8, "ser_p25_ns": 32525.5, "ser_p50_ns": 50643.0, "ser_p75_ns": 57498.0, "ser_p95_ns": 71071.8, "ser_p99_ns": 94125.94, "ser_ci_low_ns": 44425.85394736842, "ser_ci_high_ns": 50873.21342105263, "deser_mean_ns": 65045.04210526316, "deser_median_ns": 65431.0, "deser_std_ns": 13816.614900042652, "deser_mad_ns": 8715.0, "deser_cv": 0.21241611124923343, "deser_min_ns": 38012.0, "deser_max_ns": 97285.0, "deser_p5_ns": 39759.4, "deser_p25_ns": 56856.5, "deser_p50_ns": 65431.0, "deser_p75_ns": 74309.5, "deser_p95_ns": 86779.59999999999, "deser_p99_ns": 94261.96, "deser_ci_low_ns": 62324.409736842106, "deser_ci_high_ns": 67859.83236842106, "total_mean_ns": 112615.15789473684, "total_median_ns": 115744.0, "total_std_ns": 27836.228259389714, "total_mad_ns": 19738.0, "total_cv": 0.24718012015228602, "total_min_ns": 63624.0, "total_max_ns": 191692.0, "total_p5_ns": 65670.8, "total_p25_ns": 92098.0, "total_p50_ns": 115744.0, "total_p75_ns": 130349.0, "total_p95_ns": 155942.0, "total_p99_ns": 177646.52000000005, "total_ci_low_ns": 106751.37263157895, "total_ci_high_ns": 118121.85078947368, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9979626485568761, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.3170653459972215}, {"serializer": "gson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.12.1", "avg_time_ser_ns": 386114.36363636365, "avg_time_deser_ns": 175815.41558441558, "avg_time_total_ns": 561929.7792207792, "median_size_bytes": 15546.0, "avg_ops_per_sec": 1779.581785800153, "min_ops_per_sec": 1452.3421195190424, "max_ops_per_sec": 2346.8944718900716, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 386114.36363636365, "ser_median_ns": 380834.0, "ser_std_ns": 40421.11630399098, "ser_mad_ns": 22158.0, "ser_cv": 0.10468690137116718, "ser_min_ns": 277332.0, "ser_max_ns": 487143.0, "ser_p5_ns": 340987.4, "ser_p25_ns": 359525.0, "ser_p50_ns": 380834.0, "ser_p75_ns": 405778.0, "ser_p95_ns": 476334.4, "ser_p99_ns": 486768.32, "ser_ci_low_ns": 377490.83214285714, "ser_ci_high_ns": 395432.72857142857, "deser_mean_ns": 175815.41558441558, "deser_median_ns": 176093.0, "deser_std_ns": 18466.33929994807, "deser_mad_ns": 11752.0, "deser_cv": 0.10503253789530013, "deser_min_ns": 138465.0, "deser_max_ns": 227550.0, "deser_p5_ns": 148696.6, "deser_p25_ns": 163475.0, "deser_p50_ns": 176093.0, "deser_p75_ns": 186167.0, "deser_p95_ns": 207061.0, "deser_p99_ns": 213994.6399999999, "deser_ci_low_ns": 171822.91720779223, "deser_ci_high_ns": 180047.2753246753, "total_mean_ns": 561929.7792207792, "total_median_ns": 552661.0, "total_std_ns": 54374.862267852994, "total_mad_ns": 39497.0, "total_cv": 0.0967645144972632, "total_min_ns": 426095.0, "total_max_ns": 688543.0, "total_p5_ns": 491170.4, "total_p25_ns": 526243.0, "total_p50_ns": 552661.0, "total_p75_ns": 600459.0, "total_p95_ns": 660520.0, "total_p99_ns": 676965.9199999999, "total_ci_low_ns": 550028.6941558442, "total_ci_high_ns": 574687.5081168831, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.897666600593656}, {"serializer": "dsl-json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.0.2", "avg_time_ser_ns": 67978.41666666667, "avg_time_deser_ns": 102203.48958333333, "avg_time_total_ns": 170181.90625, "median_size_bytes": 15546.0, "avg_ops_per_sec": 5876.065335235954, "min_ops_per_sec": 3167.5741766682822, "max_ops_per_sec": 13162.051174054965, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 67978.41666666667, "ser_median_ns": 63936.0, "ser_std_ns": 18246.37082742565, "ser_mad_ns": 16147.5, "ser_cv": 0.26841417794264083, "ser_min_ns": 35091.0, "ser_max_ns": 116743.0, "ser_p5_ns": 43502.25, "ser_p25_ns": 53353.75, "ser_p50_ns": 63936.0, "ser_p75_ns": 84270.0, "ser_p95_ns": 96864.25, "ser_p99_ns": 106881.04999999997, "ser_ci_low_ns": 64437.629687500004, "ser_ci_high_ns": 71661.34036458333, "deser_mean_ns": 102203.48958333333, "deser_median_ns": 87329.5, "deser_std_ns": 44359.980278339026, "deser_mad_ns": 33933.5, "deser_cv": 0.43403586765175345, "deser_min_ns": 40885.0, "deser_max_ns": 235845.0, "deser_p5_ns": 48592.0, "deser_p25_ns": 63395.75, "deser_p50_ns": 87329.5, "deser_p75_ns": 139401.0, "deser_p95_ns": 167112.75, "deser_p99_ns": 220996.49999999994, "deser_ci_low_ns": 93404.24713541666, "deser_ci_high_ns": 111485.33098958332, "total_mean_ns": 170181.90625, "total_median_ns": 154992.5, "total_std_ns": 60112.03121296945, "total_mad_ns": 52339.0, "total_cv": 0.35322222284115146, "total_min_ns": 75976.0, "total_max_ns": 315699.0, "total_p5_ns": 94042.5, "total_p25_ns": 116240.0, "total_p50_ns": 154992.5, "total_p75_ns": 225095.5, "total_p95_ns": 252934.5, "total_p99_ns": 300143.69999999995, "total_ci_low_ns": 158354.66770833332, "total_ci_high_ns": 182266.21067708332, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.9115962868720424}, {"serializer": "ion", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 37467.57142857143, "avg_time_deser_ns": 34306.40476190476, "avg_time_total_ns": 71773.97619047618, "median_size_bytes": 380.0, "avg_ops_per_sec": 13932.626462635517, "min_ops_per_sec": 10176.459813160198, "max_ops_per_sec": 16712.90570578601, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 37467.57142857143, "ser_median_ns": 36797.0, "ser_std_ns": 4400.578166520368, "ser_mad_ns": 2959.5, "ser_cv": 0.11745031766763096, "ser_min_ns": 30883.0, "ser_max_ns": 51438.0, "ser_p5_ns": 31538.8, "ser_p25_ns": 34145.75, "ser_p50_ns": 36797.0, "ser_p75_ns": 40230.5, "ser_p95_ns": 44962.99999999999, "ser_p99_ns": 49783.810000000005, "ser_ci_low_ns": 36591.18988095238, "ser_ci_high_ns": 38475.86190476191, "deser_mean_ns": 34306.40476190476, "deser_median_ns": 34065.0, "deser_std_ns": 4311.555745044665, "deser_mad_ns": 2912.5, "deser_cv": 0.1256778661293122, "deser_min_ns": 25238.0, "deser_max_ns": 46828.0, "deser_p5_ns": 28732.8, "deser_p25_ns": 30827.25, "deser_p50_ns": 34065.0, "deser_p75_ns": 36545.0, "deser_p95_ns": 41873.649999999994, "deser_p99_ns": 46825.51, "deser_ci_low_ns": 33397.640178571426, "deser_ci_high_ns": 35256.13779761905, "total_mean_ns": 71773.97619047618, "total_median_ns": 70289.0, "total_std_ns": 7982.852174680411, "total_mad_ns": 4809.5, "total_cv": 0.11122209745625977, "total_min_ns": 59834.0, "total_max_ns": 98266.0, "total_p5_ns": 61355.1, "total_p25_ns": 65777.75, "total_p50_ns": 70289.0, "total_p75_ns": 75461.25, "total_p95_ns": 86484.45, "total_p99_ns": 91782.04000000001, "total_ci_low_ns": 70088.67648809524, "total_ci_high_ns": 73561.04017857142, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.615882187218981}, {"serializer": "hessian", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "4.0.66", "avg_time_ser_ns": 8639.129411764707, "avg_time_deser_ns": 18245.035294117646, "avg_time_total_ns": 26884.164705882355, "median_size_bytes": 300.0, "avg_ops_per_sec": 37196.61782094336, "min_ops_per_sec": 22883.81885168997, "max_ops_per_sec": 59934.072520227746, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 8639.129411764707, "ser_median_ns": 8435.0, "ser_std_ns": 1527.0099540343174, "ser_mad_ns": 987.0, "ser_cv": 0.1767550734863221, "ser_min_ns": 5483.0, "ser_max_ns": 13077.0, "ser_p5_ns": 6405.8, "ser_p25_ns": 7824.0, "ser_p50_ns": 8435.0, "ser_p75_ns": 9529.0, "ser_p95_ns": 11294.4, "ser_p99_ns": 12968.64, "ser_ci_low_ns": 8333.607058823529, "ser_ci_high_ns": 8972.18, "deser_mean_ns": 18245.035294117646, "deser_median_ns": 17534.0, "deser_std_ns": 4169.738804903785, "deser_mad_ns": 2197.0, "deser_cv": 0.2285410106193735, "deser_min_ns": 10441.0, "deser_max_ns": 30751.0, "deser_p5_ns": 12608.8, "deser_p25_ns": 15656.0, "deser_p50_ns": 17534.0, "deser_p75_ns": 19967.0, "deser_p95_ns": 26807.6, "deser_p99_ns": 29316.279999999995, "deser_ci_low_ns": 17426.967352941174, "deser_ci_high_ns": 19147.366764705883, "total_mean_ns": 26884.164705882355, "total_median_ns": 25994.0, "total_std_ns": 5364.385505675501, "total_mad_ns": 2926.0, "total_cv": 0.1995369974988196, "total_min_ns": 16685.0, "total_max_ns": 43699.0, "total_p5_ns": 19773.0, "total_p25_ns": 23238.0, "total_p50_ns": 25994.0, "total_p75_ns": 29489.0, "total_p95_ns": 36215.799999999996, "total_p99_ns": 41399.91999999999, "total_ci_low_ns": 25750.549117647057, "total_ci_high_ns": 28083.87911764706, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.7704481792717087, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.7151262347353609}, {"serializer": "kryo", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "5.6.2", "avg_time_ser_ns": 10938.357142857143, "avg_time_deser_ns": 10488.035714285714, "avg_time_total_ns": 21426.39285714286, "median_size_bytes": 126.0, "avg_ops_per_sec": 46671.411593512006, "min_ops_per_sec": 27818.73313489304, "max_ops_per_sec": 94482.2373393802, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 10938.357142857143, "ser_median_ns": 10654.0, "ser_std_ns": 2439.680517514276, "ser_mad_ns": 1885.0, "ser_cv": 0.22303902548175725, "ser_min_ns": 6164.0, "ser_max_ns": 17726.0, "ser_p5_ns": 7603.2, "ser_p25_ns": 8847.25, "ser_p50_ns": 10654.0, "ser_p75_ns": 12618.25, "ser_p95_ns": 15148.349999999999, "ser_p99_ns": 16211.250000000004, "ser_ci_low_ns": 10442.88244047619, "ser_ci_high_ns": 11427.38630952381, "deser_mean_ns": 10488.035714285714, "deser_median_ns": 11241.0, "deser_std_ns": 3343.1096679171583, "deser_mad_ns": 2355.5, "deser_cv": 0.31875460372083986, "deser_min_ns": 4420.0, "deser_max_ns": 20097.0, "deser_p5_ns": 5964.65, "deser_p25_ns": 6811.5, "deser_p50_ns": 11241.0, "deser_p75_ns": 12759.5, "deser_p95_ns": 15146.5, "deser_p99_ns": 18539.920000000002, "deser_ci_low_ns": 9799.144642857143, "deser_ci_high_ns": 11193.14613095238, "total_mean_ns": 21426.39285714286, "total_median_ns": 22319.5, "total_std_ns": 5466.80877598635, "total_mad_ns": 3837.5, "total_cv": 0.2551436824870825, "total_min_ns": 10584.0, "total_max_ns": 35947.0, "total_p5_ns": 13793.3, "total_p25_ns": 15606.25, "total_p50_ns": 22319.5, "total_p75_ns": 25030.5, "total_p95_ns": 29695.899999999998, "total_p99_ns": 33261.950000000004, "total_ci_low_ns": 20262.81011904762, "total_ci_high_ns": 22604.246726190475, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.48214285714285715, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 0.7777021971192236}, {"serializer": "protostuff", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "1.8.0", "avg_time_ser_ns": 10055.869047619048, "avg_time_deser_ns": 6770.928571428572, "avg_time_total_ns": 16826.79761904762, "median_size_bytes": 155.0, "avg_ops_per_sec": 59429.01451836675, "min_ops_per_sec": 27845.070030351126, "max_ops_per_sec": 113869.27806877704, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 10055.869047619048, "ser_median_ns": 9279.5, "ser_std_ns": 3238.429594055877, "ser_mad_ns": 1588.5, "ser_cv": 0.32204373174714795, "ser_min_ns": 5463.0, "ser_max_ns": 20755.0, "ser_p5_ns": 6588.05, "ser_p25_ns": 7759.75, "ser_p50_ns": 9279.5, "ser_p75_ns": 10865.0, "ser_p95_ns": 17016.94999999999, "ser_p99_ns": 20540.86, "ser_ci_low_ns": 9374.951785714286, "ser_ci_high_ns": 10748.493452380953, "deser_mean_ns": 6770.928571428572, "deser_median_ns": 5124.5, "deser_std_ns": 3543.408691001222, "deser_mad_ns": 615.5, "deser_cv": 0.5233268455900447, "deser_min_ns": 3109.0, "deser_max_ns": 18723.0, "deser_p5_ns": 4123.55, "deser_p25_ns": 4791.25, "deser_p50_ns": 5124.5, "deser_p75_ns": 7183.75, "deser_p95_ns": 14995.699999999993, "deser_p99_ns": 17377.570000000003, "deser_ci_low_ns": 6064.49255952381, "deser_ci_high_ns": 7551.33869047619, "total_mean_ns": 16826.79761904762, "total_median_ns": 14569.0, "total_std_ns": 6280.219629686744, "total_mad_ns": 2186.5, "total_cv": 0.3732272635511854, "total_min_ns": 8782.0, "total_max_ns": 35913.0, "total_p5_ns": 10789.5, "total_p25_ns": 12975.5, "total_p50_ns": 14569.0, "total_p75_ns": 18276.0, "total_p95_ns": 30807.35, "total_p99_ns": 34663.850000000006, "total_ci_low_ns": 15524.599404761906, "total_ci_high_ns": 18200.121726190475, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "jackson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 17348.40740740741, "avg_time_deser_ns": 21518.543209876545, "avg_time_total_ns": 38866.950617283954, "median_size_bytes": 440.0, "avg_ops_per_sec": 25728.800024648823, "min_ops_per_sec": 17612.14533542331, "max_ops_per_sec": 36725.54996511073, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 17348.40740740741, "ser_median_ns": 16764.0, "ser_std_ns": 3977.829599096025, "ser_mad_ns": 2176.0, "ser_cv": 0.22929076460341682, "ser_min_ns": 11822.0, "ser_max_ns": 30190.0, "ser_p5_ns": 12268.0, "ser_p25_ns": 14588.0, "ser_p50_ns": 16764.0, "ser_p75_ns": 18901.0, "ser_p95_ns": 25873.0, "ser_p99_ns": 29287.600000000002, "ser_ci_low_ns": 16505.07592592593, "ser_ci_high_ns": 18247.887654320984, "deser_mean_ns": 21518.543209876545, "deser_median_ns": 21265.0, "deser_std_ns": 3719.271461084088, "deser_mad_ns": 2464.0, "deser_cv": 0.1728402998664437, "deser_min_ns": 14033.0, "deser_max_ns": 33002.0, "deser_p5_ns": 16841.0, "deser_p25_ns": 18836.0, "deser_p50_ns": 21265.0, "deser_p75_ns": 23729.0, "deser_p95_ns": 28251.0, "deser_p99_ns": 30938.000000000007, "deser_ci_low_ns": 20687.612345679012, "deser_ci_high_ns": 22312.574382716048, "total_mean_ns": 38866.950617283954, "total_median_ns": 38261.0, "total_std_ns": 6916.968396453092, "total_mad_ns": 4974.0, "total_cv": 0.17796529664915745, "total_min_ns": 27229.0, "total_max_ns": 56779.0, "total_p5_ns": 29213.0, "total_p25_ns": 33389.0, "total_p50_ns": 38261.0, "total_p75_ns": 43235.0, "total_p95_ns": 51826.0, "total_p99_ns": 55295.00000000001, "total_ci_low_ns": 37440.26944444444, "total_ci_high_ns": 40305.07932098765, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9647266313932981, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.323819252781288}, {"serializer": "jsoniter", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "0.9.23", "avg_time_ser_ns": 7324.951807228916, "avg_time_deser_ns": 12922.927710843374, "avg_time_total_ns": 20247.87951807229, "median_size_bytes": 440.0, "avg_ops_per_sec": 49387.88770979439, "min_ops_per_sec": 27417.541743207305, "max_ops_per_sec": 107307.65103551884, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 7324.951807228916, "ser_median_ns": 6967.0, "ser_std_ns": 1575.161547298612, "ser_mad_ns": 678.0, "ser_cv": 0.21504053388366354, "ser_min_ns": 3385.0, "ser_max_ns": 12108.0, "ser_p5_ns": 5299.1, "ser_p25_ns": 6337.0, "ser_p50_ns": 6967.0, "ser_p75_ns": 8012.5, "ser_p95_ns": 11220.599999999995, "ser_p99_ns": 11611.079999999996, "ser_ci_low_ns": 7009.164457831325, "ser_ci_high_ns": 7674.246084337349, "deser_mean_ns": 12922.927710843374, "deser_median_ns": 11458.0, "deser_std_ns": 4118.590383955185, "deser_mad_ns": 1807.0, "deser_cv": 0.31870412619420263, "deser_min_ns": 5934.0, "deser_max_ns": 24744.0, "deser_p5_ns": 9155.9, "deser_p25_ns": 10015.0, "deser_p50_ns": 11458.0, "deser_p75_ns": 14851.0, "deser_p95_ns": 21827.999999999996, "deser_p99_ns": 24481.6, "deser_ci_low_ns": 12073.776506024096, "deser_ci_high_ns": 13835.996686746987, "total_mean_ns": 20247.87951807229, "total_median_ns": 18779.0, "total_std_ns": 5273.699771317098, "total_mad_ns": 2681.0, "total_cv": 0.26045689212097717, "total_min_ns": 9319.0, "total_max_ns": 36473.0, "total_p5_ns": 14977.7, "total_p25_ns": 16522.5, "total_p50_ns": 18779.0, "total_p75_ns": 23123.0, "total_p95_ns": 29139.9, "total_p99_ns": 36286.86, "total_ci_low_ns": 19196.80753012048, "total_ci_high_ns": 21426.71234939759, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.4853700516351119, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 0.5869666080787178}, {"serializer": "java-serialization", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "21.0.11", "avg_time_ser_ns": 16187.204819277109, "avg_time_deser_ns": 46299.638554216865, "avg_time_total_ns": 62486.843373493975, "median_size_bytes": 626.0, "avg_ops_per_sec": 16003.368805539403, "min_ops_per_sec": 10619.318664514485, "max_ops_per_sec": 24862.63394744039, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 16187.204819277109, "ser_median_ns": 15574.0, "ser_std_ns": 2925.719793691119, "ser_mad_ns": 1462.0, "ser_cv": 0.18074274257695938, "ser_min_ns": 10264.0, "ser_max_ns": 25760.0, "ser_p5_ns": 12923.5, "ser_p25_ns": 14522.0, "ser_p50_ns": 15574.0, "ser_p75_ns": 17671.5, "ser_p95_ns": 21910.49999999999, "ser_p99_ns": 24903.91999999999, "ser_ci_low_ns": 15573.619578313253, "ser_ci_high_ns": 16837.861144578314, "deser_mean_ns": 46299.638554216865, "deser_median_ns": 45783.0, "deser_std_ns": 6886.035357223667, "deser_mad_ns": 3413.0, "deser_cv": 0.14872762665652609, "deser_min_ns": 29957.0, "deser_max_ns": 69452.0, "deser_p5_ns": 36056.0, "deser_p25_ns": 42604.5, "deser_p50_ns": 45783.0, "deser_p75_ns": 50043.0, "deser_p95_ns": 58229.79999999999, "deser_p99_ns": 66805.03999999998, "deser_ci_low_ns": 44875.58463855422, "deser_ci_high_ns": 47800.38072289157, "total_mean_ns": 62486.843373493975, "total_median_ns": 61516.0, "total_std_ns": 9283.962339382437, "total_mad_ns": 5339.0, "total_cv": 0.1485746732938755, "total_min_ns": 40221.0, "total_max_ns": 94168.0, "total_p5_ns": 48600.5, "total_p25_ns": 57188.5, "total_p50_ns": 61516.0, "total_p75_ns": 67897.0, "total_p95_ns": 77471.2, "total_p99_ns": 86942.97999999994, "total_ci_low_ns": 60525.76265060241, "total_ci_high_ns": 64443.342168674695, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.741270139536518}, {"serializer": "jackson-smile", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 14938.9375, "avg_time_deser_ns": 16883.7, "avg_time_total_ns": 31822.6375, "median_size_bytes": 233.0, "avg_ops_per_sec": 31424.17092235048, "min_ops_per_sec": 20243.324763659184, "max_ops_per_sec": 42733.216529208155, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 14938.9375, "ser_median_ns": 14425.5, "ser_std_ns": 3097.2971040045036, "ser_mad_ns": 2185.0, "ser_cv": 0.20733048143514246, "ser_min_ns": 10322.0, "ser_max_ns": 24576.0, "ser_p5_ns": 10969.5, "ser_p25_ns": 12520.0, "ser_p50_ns": 14425.5, "ser_p75_ns": 16714.25, "ser_p95_ns": 21617.3, "ser_p99_ns": 23428.12999999999, "ser_ci_low_ns": 14298.05, "ser_ci_high_ns": 15638.690312499999, "deser_mean_ns": 16883.7, "deser_median_ns": 16420.5, "deser_std_ns": 2755.469563696122, "deser_mad_ns": 1436.5, "deser_cv": 0.16320294507105207, "deser_min_ns": 12992.0, "deser_max_ns": 26276.0, "deser_p5_ns": 13187.1, "deser_p25_ns": 15334.0, "deser_p50_ns": 16420.5, "deser_p75_ns": 17888.5, "deser_p95_ns": 23808.1, "deser_p99_ns": 24632.009999999987, "deser_ci_low_ns": 16313.124062500001, "deser_ci_high_ns": 17478.1121875, "total_mean_ns": 31822.6375, "total_median_ns": 31272.5, "total_std_ns": 5419.780224054935, "total_mad_ns": 3977.0, "total_cv": 0.17031210012227727, "total_min_ns": 23401.0, "total_max_ns": 49399.0, "total_p5_ns": 24631.5, "total_p25_ns": 28177.0, "total_p50_ns": 31272.5, "total_p75_ns": 35363.5, "total_p95_ns": 41787.35, "total_p99_ns": 46554.99999999998, "total_ci_low_ns": 30644.8359375, "total_ci_high_ns": 33017.9909375, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.8830357142857143, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.540050250965619}, {"serializer": "fastjson2", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.0.57", "avg_time_ser_ns": 17039.352941176472, "avg_time_deser_ns": 18844.75294117647, "avg_time_total_ns": 35884.10588235294, "median_size_bytes": 440.0, "avg_ops_per_sec": 27867.491063551322, "min_ops_per_sec": 15876.796062554577, "max_ops_per_sec": 50507.6013940098, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 17039.352941176472, "ser_median_ns": 15693.0, "ser_std_ns": 3702.3643562365023, "ser_mad_ns": 1515.0, "ser_cv": 0.21728315441424706, "ser_min_ns": 9460.0, "ser_max_ns": 29136.0, "ser_p5_ns": 13425.4, "ser_p25_ns": 14405.0, "ser_p50_ns": 15693.0, "ser_p75_ns": 19978.0, "ser_p95_ns": 23835.6, "ser_p99_ns": 28042.319999999996, "ser_ci_low_ns": 16277.41705882353, "ser_ci_high_ns": 17825.19794117647, "deser_mean_ns": 18844.75294117647, "deser_median_ns": 17649.0, "deser_std_ns": 4030.4196369782703, "deser_mad_ns": 2225.0, "deser_cv": 0.2138748992655487, "deser_min_ns": 10339.0, "deser_max_ns": 33849.0, "deser_p5_ns": 14841.4, "deser_p25_ns": 16085.0, "deser_p50_ns": 17649.0, "deser_p75_ns": 20774.0, "deser_p95_ns": 25992.0, "deser_p99_ns": 32376.479999999992, "deser_ci_low_ns": 18052.246176470588, "deser_ci_high_ns": 19756.291764705882, "total_mean_ns": 35884.10588235294, "total_median_ns": 33408.0, "total_std_ns": 7517.7623555080245, "total_mad_ns": 3730.0, "total_cv": 0.20950117526002243, "total_min_ns": 19799.0, "total_max_ns": 62985.0, "total_p5_ns": 28475.4, "total_p25_ns": 30702.0, "total_p50_ns": 33408.0, "total_p75_ns": 40983.0, "total_p95_ns": 50331.2, "total_p99_ns": 56187.71999999997, "total_ci_low_ns": 34364.81911764706, "total_ci_high_ns": 37465.45705882353, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9285714285714286, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.73745603478606}, {"serializer": "avro", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "1.12.0", "avg_time_ser_ns": 9599.329411764706, "avg_time_deser_ns": 21594.38823529412, "avg_time_total_ns": 31193.717647058824, "median_size_bytes": 114.0, "avg_ops_per_sec": 32057.737115995453, "min_ops_per_sec": 18681.113394358305, "max_ops_per_sec": 65681.44499178982, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 9599.329411764706, "ser_median_ns": 8318.0, "ser_std_ns": 3485.606678041227, "ser_mad_ns": 1023.0, "ser_cv": 0.36310939322171315, "ser_min_ns": 3794.0, "ser_max_ns": 20527.0, "ser_p5_ns": 6482.0, "ser_p25_ns": 7503.0, "ser_p50_ns": 8318.0, "ser_p75_ns": 10518.0, "ser_p95_ns": 16740.4, "ser_p99_ns": 20275.84, "ser_ci_low_ns": 8890.87882352941, "ser_ci_high_ns": 10349.619411764706, "deser_mean_ns": 21594.38823529412, "deser_median_ns": 20471.0, "deser_std_ns": 4039.9208888238372, "deser_mad_ns": 2166.0, "deser_cv": 0.1870819791144138, "deser_min_ns": 11431.0, "deser_max_ns": 33057.0, "deser_p5_ns": 17586.4, "deser_p25_ns": 18814.0, "deser_p50_ns": 20471.0, "deser_p75_ns": 23752.0, "deser_p95_ns": 29072.399999999998, "deser_p99_ns": 33013.32, "deser_ci_low_ns": 20745.38705882353, "deser_ci_high_ns": 22468.77911764706, "total_mean_ns": 31193.717647058824, "total_median_ns": 29598.0, "total_std_ns": 6939.473982761443, "total_mad_ns": 3436.0, "total_cv": 0.2224638326626563, "total_min_ns": 15225.0, "total_max_ns": 53530.0, "total_p5_ns": 24296.0, "total_p25_ns": 26695.0, "total_p50_ns": 29598.0, "total_p75_ns": 34015.0, "total_p95_ns": 43142.8, "total_p99_ns": 53280.52, "total_ci_low_ns": 29848.954705882355, "total_ci_high_ns": 32649.134705882352, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.8532212885154061, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.160458054168019}, {"serializer": "fory", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "1.3.0", "avg_time_ser_ns": 10695.358974358975, "avg_time_deser_ns": 11091.615384615385, "avg_time_total_ns": 21786.97435897436, "median_size_bytes": 241.0, "avg_ops_per_sec": 45898.984573233596, "min_ops_per_sec": 27987.6854184159, "max_ops_per_sec": 70601.52499293984, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 10695.358974358975, "ser_median_ns": 9622.0, "ser_std_ns": 2667.1677033466717, "ser_mad_ns": 1262.0, "ser_cv": 0.24937617425847347, "ser_min_ns": 6767.0, "ser_max_ns": 19481.0, "ser_p5_ns": 7988.2, "ser_p25_ns": 8595.5, "ser_p50_ns": 9622.0, "ser_p75_ns": 12189.25, "ser_p95_ns": 16429.899999999998, "ser_p99_ns": 17425.87000000001, "ser_ci_low_ns": 10124.906089743588, "ser_ci_high_ns": 11263.571474358972, "deser_mean_ns": 11091.615384615385, "deser_median_ns": 10447.5, "deser_std_ns": 2439.063803954345, "deser_mad_ns": 1421.0, "deser_cv": 0.21990158506013888, "deser_min_ns": 7396.0, "deser_max_ns": 19108.0, "deser_p5_ns": 8241.75, "deser_p25_ns": 9189.25, "deser_p50_ns": 10447.5, "deser_p75_ns": 12548.25, "deser_p95_ns": 16007.399999999996, "deser_p99_ns": 18307.970000000005, "deser_ci_low_ns": 10568.291346153846, "deser_ci_high_ns": 11616.275, "total_mean_ns": 21786.97435897436, "total_median_ns": 20505.0, "total_std_ns": 4577.758553698237, "total_mad_ns": 3003.5, "total_cv": 0.21011446923618352, "total_min_ns": 14164.0, "total_max_ns": 35730.0, "total_p5_ns": 16459.35, "total_p25_ns": 17975.0, "total_p50_ns": 20505.0, "total_p75_ns": 25016.5, "total_p95_ns": 29693.49999999999, "total_p99_ns": 33769.58000000001, "total_ci_low_ns": 20813.58717948718, "total_ci_high_ns": 22765.87564102564, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.6053113553113553, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 0.8932695421076455}, {"serializer": "protobuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "4.28.3", "avg_time_ser_ns": 6926.3452380952385, "avg_time_deser_ns": 20573.52380952381, "avg_time_total_ns": 27499.869047619046, "median_size_bytes": 155.0, "avg_ops_per_sec": 36363.8095246341, "min_ops_per_sec": 19199.38561966017, "max_ops_per_sec": 60587.700696758555, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 6926.3452380952385, "ser_median_ns": 6485.0, "ser_std_ns": 1202.7739173436175, "ser_mad_ns": 589.5, "ser_cv": 0.173652030904885, "ser_min_ns": 4200.0, "ser_max_ns": 10777.0, "ser_p5_ns": 5677.2, "ser_p25_ns": 6067.0, "ser_p50_ns": 6485.0, "ser_p75_ns": 7921.5, "ser_p95_ns": 8685.649999999998, "ser_p99_ns": 10290.62, "ser_ci_low_ns": 6671.142261904762, "ser_ci_high_ns": 7177.102678571429, "deser_mean_ns": 20573.52380952381, "deser_median_ns": 18557.5, "deser_std_ns": 6721.31724302268, "deser_mad_ns": 3708.0, "deser_cv": 0.3266974245759142, "deser_min_ns": 11673.0, "deser_max_ns": 45940.0, "deser_p5_ns": 14217.9, "deser_p25_ns": 15202.5, "deser_p50_ns": 18557.5, "deser_p75_ns": 25325.75, "deser_p95_ns": 33560.29999999998, "deser_p99_ns": 38827.73000000002, "deser_ci_low_ns": 19218.64285714286, "deser_ci_high_ns": 22005.33035714286, "total_mean_ns": 27499.869047619046, "total_median_ns": 24973.0, "total_std_ns": 7420.746268092984, "total_mad_ns": 3945.0, "total_cv": 0.2698466038235726, "total_min_ns": 16505.0, "total_max_ns": 52085.0, "total_p5_ns": 20067.2, "total_p25_ns": 21463.0, "total_p50_ns": 24973.0, "total_p75_ns": 33312.0, "total_p95_ns": 42471.59999999998, "total_p99_ns": 47415.42000000001, "total_ci_low_ns": 26021.13869047619, "total_ci_high_ns": 29143.740476190476, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.7689909297052154, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.545607008544586}, {"serializer": "msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "0.9.8", "avg_time_ser_ns": 16857.77108433735, "avg_time_deser_ns": 16183.096385542169, "avg_time_total_ns": 33040.867469879515, "median_size_bytes": 317.0, "avg_ops_per_sec": 30265.549199385066, "min_ops_per_sec": 19776.91638319753, "max_ops_per_sec": 43363.253978578556, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 16857.77108433735, "ser_median_ns": 16080.0, "ser_std_ns": 3498.1298185525316, "ser_mad_ns": 1669.0, "ser_cv": 0.20750844231137197, "ser_min_ns": 11023.0, "ser_max_ns": 28253.0, "ser_p5_ns": 12536.9, "ser_p25_ns": 14916.5, "ser_p50_ns": 16080.0, "ser_p75_ns": 18489.5, "ser_p95_ns": 22460.4, "ser_p99_ns": 28216.92, "ser_ci_low_ns": 16125.48343373494, "ser_ci_high_ns": 17639.27439759036, "deser_mean_ns": 16183.096385542169, "deser_median_ns": 15886.0, "deser_std_ns": 2276.4922557734594, "deser_mad_ns": 1311.0, "deser_cv": 0.140670994075476, "deser_min_ns": 11988.0, "deser_max_ns": 23899.0, "deser_p5_ns": 13311.0, "deser_p25_ns": 14671.5, "deser_p50_ns": 15886.0, "deser_p75_ns": 17414.5, "deser_p95_ns": 20435.7, "deser_p99_ns": 21862.93999999998, "deser_ci_low_ns": 15685.448192771084, "deser_ci_high_ns": 16670.185843373496, "total_mean_ns": 33040.867469879515, "total_median_ns": 32112.0, "total_std_ns": 5174.93747286624, "total_mad_ns": 3380.0, "total_cv": 0.1566223246887746, "total_min_ns": 23061.0, "total_max_ns": 50564.0, "total_p5_ns": 26347.6, "total_p25_ns": 29735.0, "total_p50_ns": 32112.0, "total_p75_ns": 35975.5, "total_p95_ns": 40975.4, "total_p99_ns": 48829.69999999998, "total_ci_low_ns": 31967.04156626506, "total_ci_high_ns": 34180.91746987952, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9067699368904188, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.803339339305276}, {"serializer": "bson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "5.3.1", "avg_time_ser_ns": 19266.023255813954, "avg_time_deser_ns": 17942.558139534885, "avg_time_total_ns": 37208.58139534884, "median_size_bytes": 517.0, "avg_ops_per_sec": 26875.520713213817, "min_ops_per_sec": 17286.084701815038, "max_ops_per_sec": 51075.13151846366, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 19266.023255813954, "ser_median_ns": 18376.5, "ser_std_ns": 3946.9863976180886, "ser_mad_ns": 1619.0, "ser_cv": 0.20486772725279448, "ser_min_ns": 10414.0, "ser_max_ns": 31627.0, "ser_p5_ns": 14505.75, "ser_p25_ns": 16813.0, "ser_p50_ns": 18376.5, "ser_p75_ns": 20367.0, "ser_p95_ns": 27962.75, "ser_p99_ns": 31252.15, "ser_ci_low_ns": 18436.63401162791, "ser_ci_high_ns": 20088.482848837208, "deser_mean_ns": 17942.558139534885, "deser_median_ns": 16633.0, "deser_std_ns": 3984.568656571621, "deser_mad_ns": 1306.5, "deser_cv": 0.22207360988241506, "deser_min_ns": 9165.0, "deser_max_ns": 32058.0, "deser_p5_ns": 14513.5, "deser_p25_ns": 15448.75, "deser_p50_ns": 16633.0, "deser_p75_ns": 18382.75, "deser_p95_ns": 25825.0, "deser_p99_ns": 30580.70000000001, "deser_ci_low_ns": 17101.113372093023, "deser_ci_high_ns": 18793.712209302328, "total_mean_ns": 37208.58139534884, "total_median_ns": 35267.0, "total_std_ns": 7125.513414674666, "total_mad_ns": 3128.5, "total_cv": 0.1915018833683719, "total_min_ns": 19579.0, "total_max_ns": 57850.0, "total_p5_ns": 29377.5, "total_p25_ns": 32342.0, "total_p50_ns": 35267.0, "total_p75_ns": 40457.25, "total_p95_ns": 52157.5, "total_p99_ns": 57085.850000000006, "total_ci_low_ns": 35788.98284883721, "total_ci_high_ns": 38785.36976744186, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9509966777408638, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.0189050216416473}, {"serializer": "jackson-cbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 15877.878048780487, "avg_time_deser_ns": 18884.426829268294, "avg_time_total_ns": 34762.30487804878, "median_size_bytes": 334.0, "avg_ops_per_sec": 28766.79217641481, "min_ops_per_sec": 20407.746780677946, "max_ops_per_sec": 40645.44974190139, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 15877.878048780487, "ser_median_ns": 15896.5, "ser_std_ns": 2420.346773390708, "ser_mad_ns": 1662.0, "ser_cv": 0.15243515323362777, "ser_min_ns": 11337.0, "ser_max_ns": 23726.0, "ser_p5_ns": 12465.9, "ser_p25_ns": 13988.5, "ser_p50_ns": 15896.5, "ser_p75_ns": 17228.75, "ser_p95_ns": 19875.15, "ser_p99_ns": 21669.409999999993, "ser_ci_low_ns": 15361.563719512196, "ser_ci_high_ns": 16389.2875, "deser_mean_ns": 18884.426829268294, "deser_median_ns": 18623.0, "deser_std_ns": 2884.5251231247703, "deser_mad_ns": 1602.5, "deser_cv": 0.1527462363143661, "deser_min_ns": 12863.0, "deser_max_ns": 29251.0, "deser_p5_ns": 15046.45, "deser_p25_ns": 17037.75, "deser_p50_ns": 18623.0, "deser_p75_ns": 20150.5, "deser_p95_ns": 25085.050000000003, "deser_p99_ns": 26656.569999999992, "deser_ci_low_ns": 18271.30274390244, "deser_ci_high_ns": 19530.463109756096, "total_mean_ns": 34762.30487804878, "total_median_ns": 34412.0, "total_std_ns": 4859.313703737796, "total_mad_ns": 3425.5, "total_cv": 0.13978686743542967, "total_min_ns": 24603.0, "total_max_ns": 49001.0, "total_p5_ns": 27683.35, "total_p25_ns": 30858.0, "total_p50_ns": 34412.0, "total_p75_ns": 37532.5, "total_p95_ns": 41904.5, "total_p99_ns": 48904.61, "total_ci_low_ns": 33662.877439024385, "total_ci_high_ns": 35805.636890243906, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.936411149825784, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.1747870201417574}, {"serializer": "dsl-json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.0.2", "avg_time_ser_ns": 15073.938271604939, "avg_time_deser_ns": 14439.765432098766, "avg_time_total_ns": 29513.703703703704, "median_size_bytes": 440.0, "avg_ops_per_sec": 33882.565537666116, "min_ops_per_sec": 21901.487110974835, "max_ops_per_sec": 58312.43804303458, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 15073.938271604939, "ser_median_ns": 15228.0, "ser_std_ns": 3199.384129585251, "ser_mad_ns": 2367.0, "ser_cv": 0.21224606814345198, "ser_min_ns": 9740.0, "ser_max_ns": 25709.0, "ser_p5_ns": 10984.0, "ser_p25_ns": 12518.0, "ser_p50_ns": 15228.0, "ser_p75_ns": 17087.0, "ser_p95_ns": 19821.0, "ser_p99_ns": 25488.2, "ser_ci_low_ns": 14384.309567901235, "ser_ci_high_ns": 15786.395061728395, "deser_mean_ns": 14439.765432098766, "deser_median_ns": 13516.0, "deser_std_ns": 3831.852033519839, "deser_mad_ns": 2221.0, "deser_cv": 0.26536802495432876, "deser_min_ns": 7409.0, "deser_max_ns": 28928.0, "deser_p5_ns": 9779.0, "deser_p25_ns": 11740.0, "deser_p50_ns": 13516.0, "deser_p75_ns": 16804.0, "deser_p95_ns": 20419.0, "deser_p99_ns": 25354.400000000012, "deser_ci_low_ns": 13622.943827160494, "deser_ci_high_ns": 15254.216049382716, "total_mean_ns": 29513.703703703704, "total_median_ns": 29043.0, "total_std_ns": 6586.015632467866, "total_mad_ns": 4741.0, "total_cv": 0.22315110629918605, "total_min_ns": 17149.0, "total_max_ns": 45659.0, "total_p5_ns": 20978.0, "total_p25_ns": 24311.0, "total_p50_ns": 29043.0, "total_p75_ns": 33784.0, "total_p95_ns": 41707.0, "total_p99_ns": 44909.4, "total_ci_low_ns": 28133.239814814817, "total_ci_high_ns": 30982.350617283948, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.8236331569664903, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.9633402610566768}, {"serializer": "gson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.12.1", "avg_time_ser_ns": 23014.963855421687, "avg_time_deser_ns": 13069.975903614459, "avg_time_total_ns": 36084.93975903615, "median_size_bytes": 440.0, "avg_ops_per_sec": 27712.392113654194, "min_ops_per_sec": 21782.221350933367, "max_ops_per_sec": 35792.261713017644, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 23014.963855421687, "ser_median_ns": 22882.0, "ser_std_ns": 2477.261752694003, "ser_mad_ns": 1821.0, "ser_cv": 0.107637003831767, "ser_min_ns": 17570.0, "ser_max_ns": 29223.0, "ser_p5_ns": 19619.1, "ser_p25_ns": 21268.5, "ser_p50_ns": 22882.0, "ser_p75_ns": 24959.5, "ser_p95_ns": 27519.099999999995, "ser_p99_ns": 28248.839999999993, "ser_ci_low_ns": 22501.25572289157, "ser_ci_high_ns": 23524.34909638554, "deser_mean_ns": 13069.975903614459, "deser_median_ns": 12482.0, "deser_std_ns": 2205.613116329443, "deser_mad_ns": 1301.0, "deser_cv": 0.16875418383284763, "deser_min_ns": 10302.0, "deser_max_ns": 21511.0, "deser_p5_ns": 10487.2, "deser_p25_ns": 11398.0, "deser_p50_ns": 12482.0, "deser_p75_ns": 14297.5, "deser_p95_ns": 16892.1, "deser_p99_ns": 19520.039999999983, "deser_ci_low_ns": 12595.243674698795, "deser_ci_high_ns": 13547.10391566265, "total_mean_ns": 36084.93975903615, "total_median_ns": 35972.0, "total_std_ns": 4245.4268921189505, "total_mad_ns": 3280.0, "total_cv": 0.11765093472425264, "total_min_ns": 27939.0, "total_max_ns": 45909.0, "total_p5_ns": 29966.2, "total_p25_ns": 32794.5, "total_p50_ns": 35972.0, "total_p75_ns": 39371.0, "total_p95_ns": 43790.7, "total_p99_ns": 45023.399999999994, "total_ci_low_ns": 35239.68403614458, "total_ci_high_ns": 36999.42801204819, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9592656339644291, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.572373713703727}, {"serializer": "moshi", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "1.15.2", "avg_time_ser_ns": 10379.559523809523, "avg_time_deser_ns": 13842.690476190477, "avg_time_total_ns": 24222.25, "median_size_bytes": 440.0, "avg_ops_per_sec": 41284.35632527944, "min_ops_per_sec": 27693.926721869895, "max_ops_per_sec": 60938.45216331505, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 10379.559523809523, "ser_median_ns": 9949.0, "ser_std_ns": 1854.7447156602577, "ser_mad_ns": 890.0, "ser_cv": 0.17869204482191034, "ser_min_ns": 6726.0, "ser_max_ns": 16864.0, "ser_p5_ns": 7553.75, "ser_p25_ns": 9380.75, "ser_p50_ns": 9949.0, "ser_p75_ns": 11192.75, "ser_p95_ns": 14182.199999999995, "ser_p99_ns": 15588.290000000003, "ser_ci_low_ns": 9998.460119047619, "ser_ci_high_ns": 10780.075297619047, "deser_mean_ns": 13842.690476190477, "deser_median_ns": 13393.5, "deser_std_ns": 2224.896889318913, "deser_mad_ns": 1217.5, "deser_cv": 0.1607272006222888, "deser_min_ns": 9684.0, "deser_max_ns": 21887.0, "deser_p5_ns": 11149.1, "deser_p25_ns": 12424.5, "deser_p50_ns": 13393.5, "deser_p75_ns": 14897.5, "deser_p95_ns": 18282.549999999996, "deser_p99_ns": 20002.900000000005, "deser_ci_low_ns": 13386.740773809523, "deser_ci_high_ns": 14331.28244047619, "total_mean_ns": 24222.25, "total_median_ns": 23363.0, "total_std_ns": 3857.915083587076, "total_mad_ns": 1928.5, "total_cv": 0.15927154098347907, "total_min_ns": 16410.0, "total_max_ns": 36109.0, "total_p5_ns": 18768.65, "total_p25_ns": 22040.25, "total_p50_ns": 23363.0, "total_p75_ns": 26196.0, "total_p95_ns": 32267.699999999993, "total_p99_ns": 33694.530000000006, "total_ci_low_ns": 23419.58958333333, "total_ci_high_ns": 25087.62767857143, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.6989795918367347, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.4125753129839131}, {"serializer": "protostuff", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "1.8.0", "avg_time_ser_ns": 6418.615384615385, "avg_time_deser_ns": 5604.0, "avg_time_total_ns": 12022.615384615385, "median_size_bytes": 155.0, "avg_ops_per_sec": 83176.57747578282, "min_ops_per_sec": 64362.48954109545, "max_ops_per_sec": 109039.36321011886, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 6418.615384615385, "ser_median_ns": 6408.0, "ser_std_ns": 484.3834541655306, "ser_mad_ns": 269.5, "ser_cv": 0.07546541195263654, "ser_min_ns": 5176.0, "ser_max_ns": 7669.0, "ser_p5_ns": 5545.85, "ser_p25_ns": 6148.75, "ser_p50_ns": 6408.0, "ser_p75_ns": 6679.0, "ser_p95_ns": 7176.75, "ser_p99_ns": 7507.300000000001, "ser_ci_low_ns": 6308.469871794872, "ser_ci_high_ns": 6527.900961538461, "deser_mean_ns": 5604.0, "deser_median_ns": 5336.5, "deser_std_ns": 884.4391722162974, "deser_mad_ns": 464.5, "deser_cv": 0.15782283587014587, "deser_min_ns": 3995.0, "deser_max_ns": 8544.0, "deser_p5_ns": 4484.55, "deser_p25_ns": 5041.25, "deser_p50_ns": 5336.5, "deser_p75_ns": 6188.5, "deser_p95_ns": 6902.999999999998, "deser_p99_ns": 8452.37, "deser_ci_low_ns": 5416.574679487179, "deser_ci_high_ns": 5811.708333333333, "total_mean_ns": 12022.615384615385, "total_median_ns": 11853.5, "total_std_ns": 1292.5770115042778, "total_mad_ns": 654.5, "total_cv": 0.10751213194080138, "total_min_ns": 9171.0, "total_max_ns": 15537.0, "total_p5_ns": 10117.25, "total_p25_ns": 11234.25, "total_p50_ns": 11853.5, "total_p75_ns": 12714.75, "total_p95_ns": 14363.4, "total_p99_ns": 15479.25, "total_ci_low_ns": 11750.960256410257, "total_ci_high_ns": 12319.061858974359, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "avro", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "1.12.0", "avg_time_ser_ns": 6313.292682926829, "avg_time_deser_ns": 20372.878048780487, "avg_time_total_ns": 26686.170731707316, "median_size_bytes": 114.0, "avg_ops_per_sec": 37472.59245448223, "min_ops_per_sec": 26697.27954721414, "max_ops_per_sec": 53350.40546308152, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 6313.292682926829, "ser_median_ns": 6409.5, "ser_std_ns": 1188.5183169906734, "ser_mad_ns": 903.0, "ser_cv": 0.18825648939178896, "ser_min_ns": 3191.0, "ser_max_ns": 8650.0, "ser_p5_ns": 4567.35, "ser_p25_ns": 5211.25, "ser_p50_ns": 6409.5, "ser_p75_ns": 7200.0, "ser_p95_ns": 8213.45, "ser_p99_ns": 8418.34, "ser_ci_low_ns": 6060.9289634146335, "ser_ci_high_ns": 6568.646951219513, "deser_mean_ns": 20372.878048780487, "deser_median_ns": 20252.0, "deser_std_ns": 3695.738708597815, "deser_mad_ns": 2215.0, "deser_cv": 0.18140484126733583, "deser_min_ns": 14234.0, "deser_max_ns": 31661.0, "deser_p5_ns": 15046.35, "deser_p25_ns": 17674.0, "deser_p50_ns": 20252.0, "deser_p75_ns": 22174.75, "deser_p95_ns": 27151.3, "deser_p99_ns": 29511.259999999995, "deser_ci_low_ns": 19610.80030487805, "deser_ci_high_ns": 21172.15853658536, "total_mean_ns": 26686.170731707316, "total_median_ns": 26340.0, "total_std_ns": 4466.699123168089, "total_mad_ns": 3053.0, "total_cv": 0.1673787958592709, "total_min_ns": 18744.0, "total_max_ns": 37457.0, "total_p5_ns": 19984.5, "total_p25_ns": 23772.0, "total_p50_ns": 26340.0, "total_p75_ns": 29594.5, "total_p95_ns": 34257.45, "total_p99_ns": 36119.689999999995, "total_ci_low_ns": 25710.75030487805, "total_ci_high_ns": 27676.813109756098, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.391736558020301}, {"serializer": "ion", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 29053.112359550563, "avg_time_deser_ns": 43754.629213483146, "avg_time_total_ns": 72807.74157303371, "median_size_bytes": 380.0, "avg_ops_per_sec": 13734.803173325963, "min_ops_per_sec": 10782.252412528976, "max_ops_per_sec": 17278.02062995663, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 29053.112359550563, "ser_median_ns": 28183.0, "ser_std_ns": 3891.7807429078316, "ser_mad_ns": 1964.0, "ser_cv": 0.13395400447100447, "ser_min_ns": 21821.0, "ser_max_ns": 41205.0, "ser_p5_ns": 23627.2, "ser_p25_ns": 26715.0, "ser_p50_ns": 28183.0, "ser_p75_ns": 31026.0, "ser_p95_ns": 36339.0, "ser_p99_ns": 39917.560000000005, "ser_ci_low_ns": 28293.969662921347, "ser_ci_high_ns": 29828.619943820224, "deser_mean_ns": 43754.629213483146, "deser_median_ns": 43307.0, "deser_std_ns": 4170.157740045831, "deser_mad_ns": 2353.0, "deser_cv": 0.09530780662542518, "deser_min_ns": 35102.0, "deser_max_ns": 55048.0, "deser_p5_ns": 38416.0, "deser_p25_ns": 41039.0, "deser_p50_ns": 43307.0, "deser_p75_ns": 45768.0, "deser_p95_ns": 52650.0, "deser_p99_ns": 54187.36000000001, "deser_ci_low_ns": 42890.66853932584, "deser_ci_high_ns": 44622.89016853933, "total_mean_ns": 72807.74157303371, "total_median_ns": 71965.0, "total_std_ns": 6958.958767347196, "total_mad_ns": 4424.0, "total_cv": 0.09557992896080479, "total_min_ns": 57877.0, "total_max_ns": 92745.0, "total_p5_ns": 62354.0, "total_p25_ns": 68287.0, "total_p50_ns": 71965.0, "total_p75_ns": 77390.0, "total_p95_ns": 85291.79999999999, "total_p99_ns": 89437.08000000002, "total_ci_low_ns": 71370.43623595506, "total_ci_high_ns": 74283.94971910113, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.73042927757358}, {"serializer": "hessian", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "4.0.66", "avg_time_ser_ns": 7081.386363636364, "avg_time_deser_ns": 12710.90909090909, "avg_time_total_ns": 19792.295454545456, "median_size_bytes": 300.0, "avg_ops_per_sec": 50524.71060249569, "min_ops_per_sec": 38707.180181923744, "max_ops_per_sec": 67902.49202145719, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 7081.386363636364, "ser_median_ns": 7048.0, "ser_std_ns": 1055.8074801848163, "ser_mad_ns": 880.5, "ser_cv": 0.14909615518318484, "ser_min_ns": 5147.0, "ser_max_ns": 9860.0, "ser_p5_ns": 5651.1, "ser_p25_ns": 6147.75, "ser_p50_ns": 7048.0, "ser_p75_ns": 7839.5, "ser_p95_ns": 8862.3, "ser_p99_ns": 9202.279999999997, "ser_ci_low_ns": 6854.534943181818, "ser_ci_high_ns": 7308.174715909091, "deser_mean_ns": 12710.90909090909, "deser_median_ns": 12586.0, "deser_std_ns": 1513.0471548467908, "deser_mad_ns": 1048.0, "deser_cv": 0.11903532186607567, "deser_min_ns": 9539.0, "deser_max_ns": 17193.0, "deser_p5_ns": 10646.95, "deser_p25_ns": 11538.5, "deser_p50_ns": 12586.0, "deser_p75_ns": 13644.75, "deser_p95_ns": 15401.699999999999, "deser_p99_ns": 16272.539999999995, "deser_ci_low_ns": 12400.52471590909, "deser_ci_high_ns": 13039.819602272728, "total_mean_ns": 19792.295454545456, "total_median_ns": 19688.0, "total_std_ns": 2342.2086008923384, "total_mad_ns": 1857.5, "total_cv": 0.11833941173076172, "total_min_ns": 14727.0, "total_max_ns": 25835.0, "total_p5_ns": 16363.6, "total_p25_ns": 17991.5, "total_p50_ns": 19688.0, "total_p75_ns": 21561.75, "total_p95_ns": 23509.95, "total_p99_ns": 25288.639999999996, "total_ci_low_ns": 19307.268465909092, "total_ci_high_ns": 20264.201420454545, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9994172494172494, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.023665844333563}, {"serializer": "kryo", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "5.6.2", "avg_time_ser_ns": 8464.458823529412, "avg_time_deser_ns": 6674.247058823529, "avg_time_total_ns": 15138.70588235294, "median_size_bytes": 126.0, "avg_ops_per_sec": 66055.84438797318, "min_ops_per_sec": 50077.620311482795, "max_ops_per_sec": 87320.99196646873, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 8464.458823529412, "ser_median_ns": 8431.0, "ser_std_ns": 951.7151628825214, "ser_mad_ns": 668.0, "ser_cv": 0.11243662267420497, "ser_min_ns": 5950.0, "ser_max_ns": 11175.0, "ser_p5_ns": 6990.0, "ser_p25_ns": 7836.0, "ser_p50_ns": 8431.0, "ser_p75_ns": 9099.0, "ser_p95_ns": 9882.6, "ser_p99_ns": 10534.919999999998, "ser_ci_low_ns": 8256.606176470588, "ser_ci_high_ns": 8662.800588235294, "deser_mean_ns": 6674.247058823529, "deser_median_ns": 6591.0, "deser_std_ns": 728.0421708397174, "deser_mad_ns": 454.0, "deser_cv": 0.10908229264261751, "deser_min_ns": 5138.0, "deser_max_ns": 8794.0, "deser_p5_ns": 5683.8, "deser_p25_ns": 6180.0, "deser_p50_ns": 6591.0, "deser_p75_ns": 7157.0, "deser_p95_ns": 7843.799999999999, "deser_p99_ns": 8377.359999999999, "deser_ci_low_ns": 6522.231470588235, "deser_ci_high_ns": 6822.100588235294, "total_mean_ns": 15138.70588235294, "total_median_ns": 15240.0, "total_std_ns": 1579.4708790297723, "total_mad_ns": 1133.0, "total_cv": 0.10433328260052584, "total_min_ns": 11452.0, "total_max_ns": 19969.0, "total_p5_ns": 12968.8, "total_p25_ns": 13936.0, "total_p50_ns": 15240.0, "total_p75_ns": 16254.0, "total_p95_ns": 17572.8, "total_p99_ns": 18763.599999999995, "total_ci_low_ns": 14806.079411764707, "total_ci_high_ns": 15506.775294117646, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.8654600301659126, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.1399408766485104}, {"serializer": "jackson-smile", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 10432.361445783132, "avg_time_deser_ns": 15214.783132530121, "avg_time_total_ns": 25647.14457831325, "median_size_bytes": 233.0, "avg_ops_per_sec": 38990.69531684168, "min_ops_per_sec": 26407.52086194148, "max_ops_per_sec": 73335.28894103842, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 10432.361445783132, "ser_median_ns": 9837.0, "ser_std_ns": 2258.8919017653984, "ser_mad_ns": 1042.0, "ser_cv": 0.2165273810253637, "ser_min_ns": 5573.0, "ser_max_ns": 17002.0, "ser_p5_ns": 7933.6, "ser_p25_ns": 8958.0, "ser_p50_ns": 9837.0, "ser_p75_ns": 11611.0, "ser_p95_ns": 14643.3, "ser_p99_ns": 16878.18, "ser_ci_low_ns": 9959.867469879518, "ser_ci_high_ns": 10913.216867469879, "deser_mean_ns": 15214.783132530121, "deser_median_ns": 14720.0, "deser_std_ns": 3030.0075989930983, "deser_mad_ns": 1409.0, "deser_cv": 0.1991489180358253, "deser_min_ns": 8063.0, "deser_max_ns": 23213.0, "deser_p5_ns": 11724.9, "deser_p25_ns": 13385.5, "deser_p50_ns": 14720.0, "deser_p75_ns": 16830.0, "deser_p95_ns": 21740.49999999999, "deser_p99_ns": 23172.0, "deser_ci_low_ns": 14587.331325301206, "deser_ci_high_ns": 15875.1328313253, "total_mean_ns": 25647.14457831325, "total_median_ns": 24623.0, "total_std_ns": 4861.739092468089, "total_mad_ns": 2499.0, "total_cv": 0.18956258766440165, "total_min_ns": 13636.0, "total_max_ns": 37868.0, "total_p5_ns": 20069.4, "total_p25_ns": 22336.5, "total_p50_ns": 24623.0, "total_p75_ns": 28346.5, "total_p95_ns": 35012.2, "total_p99_ns": 37725.32, "total_ci_low_ns": 24640.42469879518, "total_ci_high_ns": 26745.756024096387, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9950571516836577, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.761056068175763}, {"serializer": "bson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "5.3.1", "avg_time_ser_ns": 15007.372093023256, "avg_time_deser_ns": 11434.593023255815, "avg_time_total_ns": 26441.96511627907, "median_size_bytes": 517.0, "avg_ops_per_sec": 37818.6717818619, "min_ops_per_sec": 24996.250562415637, "max_ops_per_sec": 60244.59304777396, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 15007.372093023256, "ser_median_ns": 14420.5, "ser_std_ns": 3141.956198618238, "ser_mad_ns": 1859.5, "ser_cv": 0.20936085139642105, "ser_min_ns": 9371.0, "ser_max_ns": 24572.0, "ser_p5_ns": 11340.0, "ser_p25_ns": 12591.5, "ser_p50_ns": 14420.5, "ser_p75_ns": 16616.5, "ser_p95_ns": 20523.75, "ser_p99_ns": 23985.500000000004, "ser_ci_low_ns": 14366.013953488373, "ser_ci_high_ns": 15682.055813953488, "deser_mean_ns": 11434.593023255815, "deser_median_ns": 11506.0, "deser_std_ns": 1714.0441299687018, "deser_mad_ns": 1337.5, "deser_cv": 0.1498998806938435, "deser_min_ns": 7228.0, "deser_max_ns": 16001.0, "deser_p5_ns": 9203.75, "deser_p25_ns": 10078.75, "deser_p50_ns": 11506.0, "deser_p75_ns": 12617.5, "deser_p95_ns": 14403.75, "deser_p99_ns": 15519.050000000003, "deser_ci_low_ns": 11087.395639534883, "deser_ci_high_ns": 11789.146220930234, "total_mean_ns": 26441.96511627907, "total_median_ns": 25968.5, "total_std_ns": 4725.788498037188, "total_mad_ns": 3332.0, "total_cv": 0.17872304411776654, "total_min_ns": 16599.0, "total_max_ns": 40006.0, "total_p5_ns": 20562.75, "total_p25_ns": 22664.0, "total_p50_ns": 25968.5, "total_p75_ns": 29288.5, "total_p95_ns": 35258.25, "total_p99_ns": 38765.00000000001, "total_ci_low_ns": 25448.50436046512, "total_ci_high_ns": 27446.975290697672, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.0575344182636}, {"serializer": "fory", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "1.3.0", "avg_time_ser_ns": 8819.0, "avg_time_deser_ns": 9571.4625, "avg_time_total_ns": 18390.4625, "median_size_bytes": 241.0, "avg_ops_per_sec": 54376.01147877602, "min_ops_per_sec": 47427.08086317287, "max_ops_per_sec": 63151.247237132935, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 8819.0, "ser_median_ns": 8773.5, "ser_std_ns": 565.0565783254459, "ser_mad_ns": 350.5, "ser_cv": 0.06407263616344777, "ser_min_ns": 7464.0, "ser_max_ns": 10370.0, "ser_p5_ns": 7952.3, "ser_p25_ns": 8487.25, "ser_p50_ns": 8773.5, "ser_p75_ns": 9153.5, "ser_p95_ns": 9831.449999999999, "ser_p99_ns": 10299.689999999999, "ser_ci_low_ns": 8695.4025, "ser_ci_high_ns": 8942.129062499998, "deser_mean_ns": 9571.4625, "deser_median_ns": 9559.5, "deser_std_ns": 557.4032457052837, "deser_mad_ns": 392.5, "deser_cv": 0.058235953565642, "deser_min_ns": 8371.0, "deser_max_ns": 10927.0, "deser_p5_ns": 8781.35, "deser_p25_ns": 9202.75, "deser_p50_ns": 9559.5, "deser_p75_ns": 9958.0, "deser_p95_ns": 10433.85, "deser_p99_ns": 10857.48, "deser_ci_low_ns": 9450.38, "deser_ci_high_ns": 9693.0684375, "total_mean_ns": 18390.4625, "total_median_ns": 18289.0, "total_std_ns": 1048.5048902628273, "total_mad_ns": 712.0, "total_cv": 0.057013513948484286, "total_min_ns": 15835.0, "total_max_ns": 21085.0, "total_p5_ns": 16723.75, "total_p25_ns": 17661.0, "total_p50_ns": 18289.0, "total_p75_ns": 19178.75, "total_p95_ns": 20172.2, "total_p99_ns": 20701.85, "total_ci_low_ns": 18177.2265625, "total_ci_high_ns": 18619.384062499998, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.391841923710275}, {"serializer": "jackson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 10032.476744186046, "avg_time_deser_ns": 16116.46511627907, "avg_time_total_ns": 26148.941860465115, "median_size_bytes": 440.0, "avg_ops_per_sec": 38242.46523381933, "min_ops_per_sec": 26422.173487991124, "max_ops_per_sec": 66644.45184938353, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 10032.476744186046, "ser_median_ns": 9702.5, "ser_std_ns": 1929.7692622008353, "ser_mad_ns": 1324.5, "ser_cv": 0.19235222880722475, "ser_min_ns": 5709.0, "ser_max_ns": 15626.0, "ser_p5_ns": 7674.5, "ser_p25_ns": 8737.0, "ser_p50_ns": 9702.5, "ser_p75_ns": 11230.0, "ser_p95_ns": 13269.0, "ser_p99_ns": 15516.35, "ser_ci_low_ns": 9629.383430232558, "ser_ci_high_ns": 10446.994186046511, "deser_mean_ns": 16116.46511627907, "deser_median_ns": 15405.5, "deser_std_ns": 3115.4230029009072, "deser_mad_ns": 1814.0, "deser_cv": 0.19330684367963863, "deser_min_ns": 9296.0, "deser_max_ns": 25376.0, "deser_p5_ns": 12610.75, "deser_p25_ns": 13977.25, "deser_p50_ns": 15405.5, "deser_p75_ns": 17919.0, "deser_p95_ns": 22053.25, "deser_p99_ns": 24900.000000000004, "deser_ci_low_ns": 15468.264534883721, "deser_ci_high_ns": 16779.445639534886, "total_mean_ns": 26148.941860465115, "total_median_ns": 25502.5, "total_std_ns": 4600.449337017242, "total_mad_ns": 3328.5, "total_cv": 0.17593252383082905, "total_min_ns": 15005.0, "total_max_ns": 37847.0, "total_p5_ns": 20366.0, "total_p25_ns": 22457.75, "total_p50_ns": 25502.5, "total_p75_ns": 29649.5, "total_p95_ns": 34999.25, "total_p99_ns": 36759.850000000006, "total_ci_low_ns": 25171.475872093026, "total_ci_high_ns": 27163.58575581395, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9994036970781157, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.0762416660328205}, {"serializer": "gson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.12.1", "avg_time_ser_ns": 20650.476744186046, "avg_time_deser_ns": 12912.383720930233, "avg_time_total_ns": 33562.86046511628, "median_size_bytes": 440.0, "avg_ops_per_sec": 29794.83828678294, "min_ops_per_sec": 19191.279482603106, "max_ops_per_sec": 47881.254488867606, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 20650.476744186046, "ser_median_ns": 18977.5, "ser_std_ns": 5529.439305107217, "ser_mad_ns": 2695.5, "ser_cv": 0.26776327605434, "ser_min_ns": 12451.0, "ser_max_ns": 36569.0, "ser_p5_ns": 14942.75, "ser_p25_ns": 16469.25, "ser_p50_ns": 18977.5, "ser_p75_ns": 22814.75, "ser_p95_ns": 32317.75, "ser_p99_ns": 34204.30000000002, "ser_ci_low_ns": 19544.872093023256, "ser_ci_high_ns": 21860.65988372093, "deser_mean_ns": 12912.383720930233, "deser_median_ns": 12406.0, "deser_std_ns": 1957.3650245320327, "deser_mad_ns": 1180.5, "deser_cv": 0.1515882014379155, "deser_min_ns": 8434.0, "deser_max_ns": 18093.0, "deser_p5_ns": 10738.0, "deser_p25_ns": 11436.75, "deser_p50_ns": 12406.0, "deser_p75_ns": 14149.5, "deser_p95_ns": 16333.0, "deser_p99_ns": 18087.05, "deser_ci_low_ns": 12494.5875, "deser_ci_high_ns": 13320.508139534883, "total_mean_ns": 33562.86046511628, "total_median_ns": 31999.0, "total_std_ns": 7122.4830438346935, "total_mad_ns": 4154.5, "total_cv": 0.2122132304914082, "total_min_ns": 20885.0, "total_max_ns": 52107.0, "total_p5_ns": 26066.75, "total_p25_ns": 27862.0, "total_p50_ns": 31999.0, "total_p75_ns": 36816.5, "total_p95_ns": 47751.75, "total_p99_ns": 51914.05, "total_ci_low_ns": 32096.31511627907, "total_ci_high_ns": 35068.76686046512, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.095105407326192}, {"serializer": "jsoniter", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "0.9.23", "avg_time_ser_ns": 6814.418604651163, "avg_time_deser_ns": 9875.883720930233, "avg_time_total_ns": 16690.302325581397, "median_size_bytes": 440.0, "avg_ops_per_sec": 59915.032124210826, "min_ops_per_sec": 50256.3071665494, "max_ops_per_sec": 71489.8484415213, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 6814.418604651163, "ser_median_ns": 6798.5, "ser_std_ns": 411.6673833003098, "ser_mad_ns": 237.5, "ser_cv": 0.060411226134439014, "ser_min_ns": 5833.0, "ser_max_ns": 8001.0, "ser_p5_ns": 6121.5, "ser_p25_ns": 6589.25, "ser_p50_ns": 6798.5, "ser_p75_ns": 7096.25, "ser_p95_ns": 7445.75, "ser_p99_ns": 7804.6500000000015, "ser_ci_low_ns": 6728.344476744186, "ser_ci_high_ns": 6896.070930232559, "deser_mean_ns": 9875.883720930233, "deser_median_ns": 9800.0, "deser_std_ns": 872.2847945428704, "deser_mad_ns": 628.5, "deser_cv": 0.08832473317746878, "deser_min_ns": 7947.0, "deser_max_ns": 11897.0, "deser_p5_ns": 8535.0, "deser_p25_ns": 9324.5, "deser_p50_ns": 9800.0, "deser_p75_ns": 10481.5, "deser_p95_ns": 11335.75, "deser_p99_ns": 11848.550000000001, "deser_ci_low_ns": 9686.017151162792, "deser_ci_high_ns": 10057.92238372093, "total_mean_ns": 16690.302325581397, "total_median_ns": 16769.5, "total_std_ns": 1211.7635575014813, "total_mad_ns": 766.0, "total_cv": 0.07260285247464925, "total_min_ns": 13988.0, "total_max_ns": 19898.0, "total_p5_ns": 14632.5, "total_p25_ns": 15923.75, "total_p50_ns": 16769.5, "total_p75_ns": 17510.75, "total_p95_ns": 18377.25, "total_p99_ns": 19649.800000000003, "total_ci_low_ns": 16445.243895348838, "total_ci_high_ns": 16944.803779069767, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9871794871794872, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.714380288561804}, {"serializer": "java-serialization", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "21.0.11", "avg_time_ser_ns": 13247.951219512195, "avg_time_deser_ns": 42951.71951219512, "avg_time_total_ns": 56199.670731707316, "median_size_bytes": 626.0, "avg_ops_per_sec": 17793.698556952746, "min_ops_per_sec": 14508.944764447282, "max_ops_per_sec": 23660.23896841358, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 13247.951219512195, "ser_median_ns": 12995.0, "ser_std_ns": 1588.1331994890988, "ser_mad_ns": 975.0, "ser_cv": 0.11987764546943853, "ser_min_ns": 9323.0, "ser_max_ns": 18426.0, "ser_p5_ns": 11294.1, "ser_p25_ns": 12107.75, "ser_p50_ns": 12995.0, "ser_p75_ns": 14302.25, "ser_p95_ns": 15890.35, "ser_p99_ns": 17756.94, "ser_ci_low_ns": 12895.932012195122, "ser_ci_high_ns": 13585.37743902439, "deser_mean_ns": 42951.71951219512, "deser_median_ns": 42451.5, "deser_std_ns": 3866.622650689417, "deser_mad_ns": 2327.0, "deser_cv": 0.09002253447831304, "deser_min_ns": 32942.0, "deser_max_ns": 53020.0, "deser_p5_ns": 37202.35, "deser_p25_ns": 40528.75, "deser_p50_ns": 42451.5, "deser_p75_ns": 45429.25, "deser_p95_ns": 49747.35, "deser_p99_ns": 51408.909999999996, "deser_ci_low_ns": 42124.47225609756, "deser_ci_high_ns": 43786.696646341465, "total_mean_ns": 56199.670731707316, "total_median_ns": 55346.0, "total_std_ns": 5283.874116627625, "total_mad_ns": 3029.5, "total_cv": 0.09401966324415695, "total_min_ns": 42265.0, "total_max_ns": 68923.0, "total_p5_ns": 48585.75, "total_p25_ns": 52991.25, "total_p50_ns": 55346.0, "total_p75_ns": 59569.75, "total_p95_ns": 66534.2, "total_p99_ns": 68360.05, "total_ci_low_ns": 55084.58719512195, "total_ci_high_ns": 57333.267682926824, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.30436901840313}, {"serializer": "jackson-cbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 13499.785714285714, "avg_time_deser_ns": 16644.880952380954, "avg_time_total_ns": 30144.666666666668, "median_size_bytes": 334.0, "avg_ops_per_sec": 33173.364000265385, "min_ops_per_sec": 24755.539051862856, "max_ops_per_sec": 47263.44645051517, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 13499.785714285714, "ser_median_ns": 13237.0, "ser_std_ns": 1599.5750118667895, "ser_mad_ns": 984.5, "ser_cv": 0.11848891869254567, "ser_min_ns": 9605.0, "ser_max_ns": 18044.0, "ser_p5_ns": 10989.5, "ser_p25_ns": 12577.25, "ser_p50_ns": 13237.0, "ser_p75_ns": 14513.75, "ser_p95_ns": 16064.6, "ser_p99_ns": 17270.440000000002, "ser_ci_low_ns": 13149.766964285714, "ser_ci_high_ns": 13853.44761904762, "deser_mean_ns": 16644.880952380954, "deser_median_ns": 16671.5, "deser_std_ns": 2423.5713138605506, "deser_mad_ns": 1762.5, "deser_cv": 0.1456046048508309, "deser_min_ns": 11553.0, "deser_max_ns": 23769.0, "deser_p5_ns": 12788.35, "deser_p25_ns": 14860.75, "deser_p50_ns": 16671.5, "deser_p75_ns": 18337.75, "deser_p95_ns": 20656.999999999996, "deser_p99_ns": 22592.06, "deser_ci_low_ns": 16121.620833333332, "deser_ci_high_ns": 17167.602976190476, "total_mean_ns": 30144.666666666668, "total_median_ns": 30078.0, "total_std_ns": 3846.5250139224268, "total_mad_ns": 2588.0, "total_cv": 0.12760217442297453, "total_min_ns": 21158.0, "total_max_ns": 40395.0, "total_p5_ns": 23691.65, "total_p25_ns": 27545.5, "total_p50_ns": 30078.0, "total_p75_ns": 32737.75, "total_p95_ns": 36541.0, "total_p99_ns": 38267.71000000001, "total_ci_low_ns": 29298.94880952381, "total_ci_high_ns": 30951.277678571427, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.194159207040432}, {"serializer": "msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "0.9.8", "avg_time_ser_ns": 11429.04705882353, "avg_time_deser_ns": 13675.0, "avg_time_total_ns": 25104.04705882353, "median_size_bytes": 317.0, "avg_ops_per_sec": 39834.21468485981, "min_ops_per_sec": 29387.563183260845, "max_ops_per_sec": 54611.98186882202, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 11429.04705882353, "ser_median_ns": 11325.0, "ser_std_ns": 1561.416236762565, "ser_mad_ns": 793.0, "ser_cv": 0.13661823498723893, "ser_min_ns": 7901.0, "ser_max_ns": 15864.0, "ser_p5_ns": 8927.2, "ser_p25_ns": 10484.0, "ser_p50_ns": 11325.0, "ser_p75_ns": 12025.0, "ser_p95_ns": 14058.4, "ser_p99_ns": 15544.8, "ser_ci_low_ns": 11103.781470588236, "ser_ci_high_ns": 11764.285588235294, "deser_mean_ns": 13675.0, "deser_median_ns": 13484.0, "deser_std_ns": 1534.4966291138944, "deser_mad_ns": 784.0, "deser_cv": 0.1122118193136303, "deser_min_ns": 10410.0, "deser_max_ns": 18243.0, "deser_p5_ns": 11218.2, "deser_p25_ns": 12719.0, "deser_p50_ns": 13484.0, "deser_p75_ns": 14367.0, "deser_p95_ns": 15938.6, "deser_p99_ns": 18176.64, "deser_ci_low_ns": 13370.753529411764, "deser_ci_high_ns": 14009.422647058824, "total_mean_ns": 25104.04705882353, "total_median_ns": 24952.0, "total_std_ns": 3019.337837001613, "total_mad_ns": 1649.0, "total_cv": 0.12027295160524251, "total_min_ns": 18311.0, "total_max_ns": 34028.0, "total_p5_ns": 20645.6, "total_p25_ns": 23303.0, "total_p50_ns": 24952.0, "total_p75_ns": 26437.0, "total_p95_ns": 29903.0, "total_p99_ns": 33775.159999999996, "total_ci_low_ns": 24464.47794117647, "total_ci_high_ns": 25735.523823529413, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.5241447119933715}, {"serializer": "fastjson2", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.0.57", "avg_time_ser_ns": 15281.192771084337, "avg_time_deser_ns": 16058.012048192772, "avg_time_total_ns": 31339.204819277107, "median_size_bytes": 440.0, "avg_ops_per_sec": 31908.914274202914, "min_ops_per_sec": 26542.095763881516, "max_ops_per_sec": 37698.86149438287, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 15281.192771084337, "ser_median_ns": 15209.0, "ser_std_ns": 750.0067879014997, "ser_mad_ns": 486.0, "ser_cv": 0.04908038260735062, "ser_min_ns": 13446.0, "ser_max_ns": 17237.0, "ser_p5_ns": 14006.7, "ser_p25_ns": 14788.5, "ser_p50_ns": 15209.0, "ser_p75_ns": 15750.5, "ser_p95_ns": 16356.8, "ser_p99_ns": 17209.94, "ser_ci_low_ns": 15129.605722891567, "ser_ci_high_ns": 15443.402108433736, "deser_mean_ns": 16058.012048192772, "deser_median_ns": 16111.0, "deser_std_ns": 1898.2446544494082, "deser_mad_ns": 1253.0, "deser_cv": 0.1182116845318374, "deser_min_ns": 12124.0, "deser_max_ns": 21894.0, "deser_p5_ns": 13197.6, "deser_p25_ns": 14677.5, "deser_p50_ns": 16111.0, "deser_p75_ns": 17101.0, "deser_p95_ns": 18880.7, "deser_p99_ns": 21642.26, "deser_ci_low_ns": 15654.852409638554, "deser_ci_high_ns": 16474.133734939758, "total_mean_ns": 31339.204819277107, "total_median_ns": 31240.0, "total_std_ns": 2298.2996724462923, "total_mad_ns": 1548.0, "total_cv": 0.07333624722451737, "total_min_ns": 26526.0, "total_max_ns": 37676.0, "total_p5_ns": 28025.2, "total_p25_ns": 29733.5, "total_p50_ns": 31240.0, "total_p75_ns": 32701.0, "total_p95_ns": 35175.2, "total_p99_ns": 37456.24, "total_ci_low_ns": 30843.836746987952, "total_ci_high_ns": 31831.63674698795, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.227900833367194}, {"serializer": "moshi", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "1.15.2", "avg_time_ser_ns": 9052.158536585366, "avg_time_deser_ns": 11533.609756097561, "avg_time_total_ns": 20585.768292682926, "median_size_bytes": 440.0, "avg_ops_per_sec": 48577.24937841855, "min_ops_per_sec": 40661.976985321024, "max_ops_per_sec": 60823.55087890031, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 9052.158536585366, "ser_median_ns": 9051.5, "ser_std_ns": 812.7217413585319, "ser_mad_ns": 454.0, "ser_cv": 0.0897820931962052, "ser_min_ns": 7145.0, "ser_max_ns": 10916.0, "ser_p5_ns": 7825.8, "ser_p25_ns": 8496.5, "ser_p50_ns": 9051.5, "ser_p75_ns": 9488.0, "ser_p95_ns": 10529.05, "ser_p99_ns": 10728.08, "ser_ci_low_ns": 8881.84725609756, "ser_ci_high_ns": 9237.698780487804, "deser_mean_ns": 11533.609756097561, "deser_median_ns": 11504.5, "deser_std_ns": 882.7757115715636, "deser_mad_ns": 512.0, "deser_cv": 0.0765394122256356, "deser_min_ns": 9296.0, "deser_max_ns": 14120.0, "deser_p5_ns": 10100.6, "deser_p25_ns": 10992.25, "deser_p50_ns": 11504.5, "deser_p75_ns": 12010.5, "deser_p95_ns": 13028.300000000001, "deser_p99_ns": 13646.96, "deser_ci_low_ns": 11342.379268292683, "deser_ci_high_ns": 11725.164634146342, "total_mean_ns": 20585.768292682926, "total_median_ns": 20510.5, "total_std_ns": 1610.543810457197, "total_mad_ns": 974.0, "total_cv": 0.07823578831544772, "total_min_ns": 16441.0, "total_max_ns": 24593.0, "total_p5_ns": 17926.25, "total_p25_ns": 19655.75, "total_p50_ns": 20510.5, "total_p75_ns": 21536.5, "total_p95_ns": 23155.65, "total_p99_ns": 24478.79, "total_ci_low_ns": 20236.34542682927, "total_ci_high_ns": 20954.485670731705, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.820399537120669}, {"serializer": "protobuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "4.28.3", "avg_time_ser_ns": 7131.692307692308, "avg_time_deser_ns": 16222.076923076924, "avg_time_total_ns": 23353.76923076923, "median_size_bytes": 155.0, "avg_ops_per_sec": 42819.64038089717, "min_ops_per_sec": 30875.632950475483, "max_ops_per_sec": 60779.189205616, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 7131.692307692308, "ser_median_ns": 6904.0, "ser_std_ns": 941.2106090506047, "ser_mad_ns": 532.5, "ser_cv": 0.13197577355313078, "ser_min_ns": 4760.0, "ser_max_ns": 9998.0, "ser_p5_ns": 5816.9, "ser_p25_ns": 6516.5, "ser_p50_ns": 6904.0, "ser_p75_ns": 7683.5, "ser_p95_ns": 8633.849999999999, "ser_p99_ns": 9515.980000000003, "ser_ci_low_ns": 6925.517628205129, "ser_ci_high_ns": 7341.141666666666, "deser_mean_ns": 16222.076923076924, "deser_median_ns": 15893.0, "deser_std_ns": 2086.017704655419, "deser_mad_ns": 1230.5, "deser_cv": 0.1285912842447398, "deser_min_ns": 11500.0, "deser_max_ns": 22762.0, "deser_p5_ns": 13644.85, "deser_p25_ns": 14887.0, "deser_p50_ns": 15893.0, "deser_p75_ns": 17294.0, "deser_p95_ns": 19581.899999999987, "deser_p99_ns": 22475.56, "deser_ci_low_ns": 15754.904487179489, "deser_ci_high_ns": 16676.67051282051, "total_mean_ns": 23353.76923076923, "total_median_ns": 22977.5, "total_std_ns": 2664.0241112899985, "total_mad_ns": 1549.0, "total_cv": 0.11407255441147691, "total_min_ns": 16453.0, "total_max_ns": 32388.0, "total_p5_ns": 19585.25, "total_p25_ns": 21796.0, "total_p50_ns": 22977.5, "total_p75_ns": 24778.0, "total_p95_ns": 27748.6, "total_p99_ns": 29794.640000000014, "total_ci_low_ns": 22792.388461538463, "total_ci_high_ns": 23946.469230769228, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.385432952214565}, {"serializer": "dsl-json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.0.2", "avg_time_ser_ns": 14423.518072289156, "avg_time_deser_ns": 11972.132530120482, "avg_time_total_ns": 26395.650602409638, "median_size_bytes": 440.0, "avg_ops_per_sec": 37885.029433929194, "min_ops_per_sec": 33145.508783559824, "max_ops_per_sec": 46492.1660700172, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 14423.518072289156, "ser_median_ns": 14293.0, "ser_std_ns": 1107.471558424048, "ser_mad_ns": 677.0, "ser_cv": 0.07678234622603979, "ser_min_ns": 11791.0, "ser_max_ns": 17290.0, "ser_p5_ns": 12502.1, "ser_p25_ns": 13766.5, "ser_p50_ns": 14293.0, "ser_p75_ns": 15025.0, "ser_p95_ns": 16355.199999999999, "ser_p99_ns": 16897.219999999998, "ser_ci_low_ns": 14194.25, "ser_ci_high_ns": 14655.112951807228, "deser_mean_ns": 11972.132530120482, "deser_median_ns": 11964.0, "deser_std_ns": 982.22422767975, "deser_mad_ns": 631.0, "deser_cv": 0.08204254548707919, "deser_min_ns": 9718.0, "deser_max_ns": 13787.0, "deser_p5_ns": 10055.1, "deser_p25_ns": 11396.0, "deser_p50_ns": 11964.0, "deser_p75_ns": 12649.5, "deser_p95_ns": 13466.0, "deser_p99_ns": 13702.539999999999, "deser_ci_low_ns": 11752.221084337349, "deser_ci_high_ns": 12178.495180722892, "total_mean_ns": 26395.650602409638, "total_median_ns": 26304.0, "total_std_ns": 1946.6036365670268, "total_mad_ns": 1376.0, "total_cv": 0.07374713606753541, "total_min_ns": 21509.0, "total_max_ns": 30170.0, "total_p5_ns": 22852.7, "total_p25_ns": 25340.0, "total_p50_ns": 26304.0, "total_p75_ns": 27879.0, "total_p95_ns": 29606.299999999996, "total_p99_ns": 30157.7, "total_ci_low_ns": 25981.515060240967, "total_ci_high_ns": 26798.02951807229, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.605502166710162}, {"serializer": "kryo", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "5.6.2", "avg_time_ser_ns": 108235.09756097561, "avg_time_deser_ns": 96521.30487804877, "avg_time_total_ns": 204756.4024390244, "median_size_bytes": 13070.0, "avg_ops_per_sec": 4883.852168177236, "min_ops_per_sec": 3475.8549734270887, "max_ops_per_sec": 6366.669213334352, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 108235.09756097561, "ser_median_ns": 108769.5, "ser_std_ns": 16203.05326859516, "ser_mad_ns": 10783.0, "ser_cv": 0.1497023944517347, "ser_min_ns": 85246.0, "ser_max_ns": 156644.0, "ser_p5_ns": 88576.0, "ser_p25_ns": 94241.25, "ser_p50_ns": 108769.5, "ser_p75_ns": 115705.75, "ser_p95_ns": 144037.45, "ser_p99_ns": 154958.38999999998, "ser_ci_low_ns": 104807.28780487804, "ser_ci_high_ns": 111781.29481707317, "deser_mean_ns": 96521.30487804877, "deser_median_ns": 91519.5, "deser_std_ns": 20659.616258365953, "deser_mad_ns": 13683.5, "deser_cv": 0.2140420323209331, "deser_min_ns": 71822.0, "deser_max_ns": 171096.0, "deser_p5_ns": 74584.95, "deser_p25_ns": 79010.0, "deser_p50_ns": 91519.5, "deser_p75_ns": 109035.0, "deser_p95_ns": 130699.25, "deser_p99_ns": 170695.05, "deser_ci_low_ns": 92464.74908536585, "deser_ci_high_ns": 100843.5118902439, "total_mean_ns": 204756.4024390244, "total_median_ns": 203853.0, "total_std_ns": 33066.57793553647, "total_mad_ns": 26336.0, "total_cv": 0.16149227834467136, "total_min_ns": 157068.0, "total_max_ns": 287699.0, "total_p5_ns": 164156.95, "total_p25_ns": 174870.0, "total_p50_ns": 203853.0, "total_p75_ns": 227978.25, "total_p95_ns": 262156.0, "total_p99_ns": 284130.95, "total_ci_low_ns": 197344.1868902439, "total_ci_high_ns": 212086.19817073172, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.8422256097560976, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.178065706612306}, {"serializer": "gson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.12.1", "avg_time_ser_ns": 494618.0425531915, "avg_time_deser_ns": 234821.70212765958, "avg_time_total_ns": 729439.7446808511, "median_size_bytes": 44604.0, "avg_ops_per_sec": 1370.9151541194483, "min_ops_per_sec": 1080.195904329209, "max_ops_per_sec": 1785.5899321297268, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 494618.0425531915, "ser_median_ns": 501850.5, "ser_std_ns": 39796.88590100392, "ser_mad_ns": 31559.0, "ser_cv": 0.08045983461414905, "ser_min_ns": 383590.0, "ser_max_ns": 577566.0, "ser_p5_ns": 432782.9, "ser_p25_ns": 458592.75, "ser_p50_ns": 501850.5, "ser_p75_ns": 523058.75, "ser_p95_ns": 556267.2, "ser_p99_ns": 573898.08, "ser_ci_low_ns": 486458.2156914894, "ser_ci_high_ns": 502517.2015957447, "deser_mean_ns": 234821.70212765958, "deser_median_ns": 222630.5, "deser_std_ns": 41396.818521158835, "deser_mad_ns": 25381.0, "deser_cv": 0.17629042863616445, "deser_min_ns": 176449.0, "deser_max_ns": 361403.0, "deser_p5_ns": 186612.9, "deser_p25_ns": 203790.25, "deser_p50_ns": 222630.5, "deser_p75_ns": 265441.25, "deser_p95_ns": 307708.7, "deser_p99_ns": 338014.4299999998, "deser_ci_low_ns": 226679.93723404253, "deser_ci_high_ns": 243296.40292553193, "total_mean_ns": 729439.7446808511, "total_median_ns": 726974.0, "total_std_ns": 77656.16616911144, "total_mad_ns": 59684.5, "total_cv": 0.10646001501205289, "total_min_ns": 560039.0, "total_max_ns": 925758.0, "total_p5_ns": 619975.55, "total_p25_ns": 663500.75, "total_p50_ns": 726974.0, "total_p75_ns": 784713.0, "total_p95_ns": 867672.45, "total_p99_ns": 885864.7199999997, "total_ci_low_ns": 713909.2380319149, "total_ci_high_ns": 745401.5125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.550993133244953}, {"serializer": "msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "0.9.8", "avg_time_ser_ns": 222232.5376344086, "avg_time_deser_ns": 295834.55913978495, "avg_time_total_ns": 518067.0967741936, "median_size_bytes": 31959.0, "avg_ops_per_sec": 1930.251904100104, "min_ops_per_sec": 1468.3123511498354, "max_ops_per_sec": 2402.6506041464945, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 222232.5376344086, "ser_median_ns": 215150.0, "ser_std_ns": 31964.83248058959, "ser_mad_ns": 20889.0, "ser_cv": 0.14383506943152696, "ser_min_ns": 172979.0, "ser_max_ns": 306177.0, "ser_p5_ns": 181006.2, "ser_p25_ns": 194982.0, "ser_p50_ns": 215150.0, "ser_p75_ns": 244278.0, "ser_p95_ns": 282225.8, "ser_p99_ns": 292092.72, "ser_ci_low_ns": 216040.05456989247, "ser_ci_high_ns": 228475.8556451613, "deser_mean_ns": 295834.55913978495, "deser_median_ns": 290919.0, "deser_std_ns": 35997.75307222913, "deser_mad_ns": 21946.0, "deser_cv": 0.12168204139807685, "deser_min_ns": 237717.0, "deser_max_ns": 392703.0, "deser_p5_ns": 247117.8, "deser_p25_ns": 268973.0, "deser_p50_ns": 290919.0, "deser_p75_ns": 306244.0, "deser_p95_ns": 357690.6, "deser_p99_ns": 390387.36, "deser_ci_low_ns": 288700.9239247312, "deser_ci_high_ns": 303236.6008064516, "total_mean_ns": 518067.0967741936, "total_median_ns": 502859.0, "total_std_ns": 66369.77466749791, "total_mad_ns": 38335.0, "total_cv": 0.12811038392663268, "total_min_ns": 416207.0, "total_max_ns": 681054.0, "total_p5_ns": 432861.0, "total_p25_ns": 467097.0, "total_p50_ns": 502859.0, "total_p75_ns": 543452.0, "total_p95_ns": 634592.6, "total_p99_ns": 678096.2, "total_ci_low_ns": 505444.88252688176, "total_ci_high_ns": 531752.9102150537, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.99537004168468}, {"serializer": "bson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "5.3.1", "avg_time_ser_ns": 298703.393258427, "avg_time_deser_ns": 296208.34831460676, "avg_time_total_ns": 594911.7415730337, "median_size_bytes": 52646.0, "avg_ops_per_sec": 1680.921605876955, "min_ops_per_sec": 1256.3540104076367, "max_ops_per_sec": 2195.7608640758153, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 298703.393258427, "ser_median_ns": 302082.0, "ser_std_ns": 37787.70255490113, "ser_mad_ns": 29374.0, "ser_cv": 0.12650576929405227, "ser_min_ns": 231317.0, "ser_max_ns": 384969.0, "ser_p5_ns": 237499.8, "ser_p25_ns": 267248.0, "ser_p50_ns": 302082.0, "ser_p75_ns": 329084.0, "ser_p95_ns": 353858.8, "ser_p99_ns": 382786.60000000003, "ser_ci_low_ns": 291015.7241573034, "ser_ci_high_ns": 306667.65308988764, "deser_mean_ns": 296208.34831460676, "deser_median_ns": 275105.0, "deser_std_ns": 52307.643111582285, "deser_mad_ns": 31646.0, "deser_cv": 0.17659071194045367, "deser_min_ns": 224106.0, "deser_max_ns": 413465.0, "deser_p5_ns": 235559.2, "deser_p25_ns": 250729.0, "deser_p50_ns": 275105.0, "deser_p75_ns": 336342.0, "deser_p95_ns": 381955.39999999997, "deser_p99_ns": 412022.68, "deser_ci_low_ns": 285400.8997191011, "deser_ci_high_ns": 307399.07162921346, "total_mean_ns": 594911.7415730337, "total_median_ns": 580295.0, "total_std_ns": 86210.33568289511, "total_mad_ns": 67706.0, "total_cv": 0.1449128158992834, "total_min_ns": 455423.0, "total_max_ns": 795954.0, "total_p5_ns": 479204.8, "total_p25_ns": 517694.0, "total_p50_ns": 580295.0, "total_p75_ns": 662840.0, "total_p95_ns": 731205.6, "total_p99_ns": 778082.9600000001, "total_ci_low_ns": 576028.6351123595, "total_ci_high_ns": 612249.9803370787, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.954926247057056}, {"serializer": "fastjson2", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.0.57", "avg_time_ser_ns": 86891.0, "avg_time_deser_ns": 124058.77659574468, "avg_time_total_ns": 210949.77659574468, "median_size_bytes": 44604.0, "avg_ops_per_sec": 4740.464844939647, "min_ops_per_sec": 2201.8865764186753, "max_ops_per_sec": 9242.144177449169, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 86891.0, "ser_median_ns": 73447.0, "ser_std_ns": 41450.54421033979, "ser_mad_ns": 25641.5, "ser_cv": 0.47704070859283226, "ser_min_ns": 42264.0, "ser_max_ns": 230015.0, "ser_p5_ns": 45727.1, "ser_p25_ns": 49211.0, "ser_p50_ns": 73447.0, "ser_p75_ns": 111792.75, "ser_p95_ns": 154617.74999999997, "ser_p99_ns": 204416.74999999983, "ser_ci_low_ns": 78712.45265957447, "ser_ci_high_ns": 95757.18563829787, "deser_mean_ns": 124058.77659574468, "deser_median_ns": 112440.5, "deser_std_ns": 53999.44061182869, "deser_mad_ns": 37601.5, "deser_cv": 0.4352730382614535, "deser_min_ns": 65936.0, "deser_max_ns": 304720.0, "deser_p5_ns": 70397.55, "deser_p25_ns": 75896.5, "deser_p50_ns": 112440.5, "deser_p75_ns": 156649.75, "deser_p95_ns": 212853.64999999997, "deser_p99_ns": 256936.59999999966, "deser_ci_low_ns": 113435.88430851065, "deser_ci_high_ns": 135361.9239361702, "total_mean_ns": 210949.77659574468, "total_median_ns": 191620.5, "total_std_ns": 90331.64662546474, "total_mad_ns": 69135.5, "total_cv": 0.4282139952135267, "total_min_ns": 108200.0, "total_max_ns": 454156.0, "total_p5_ns": 116870.85, "total_p25_ns": 124606.5, "total_p50_ns": 191620.5, "total_p75_ns": 272243.5, "total_p95_ns": 360015.85, "total_p99_ns": 413308.5399999997, "total_ci_low_ns": 193777.59441489363, "total_ci_high_ns": 228714.62367021278, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.6524822695035462, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.3401262054135386}, {"serializer": "dsl-json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.0.2", "avg_time_ser_ns": 118362.90625, "avg_time_deser_ns": 187093.41666666666, "avg_time_total_ns": 305456.3229166667, "median_size_bytes": 44604.0, "avg_ops_per_sec": 3273.790473385669, "min_ops_per_sec": 1671.6202346286161, "max_ops_per_sec": 5397.527932207049, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 118362.90625, "ser_median_ns": 108114.0, "ser_std_ns": 40721.75165193222, "ser_mad_ns": 26088.5, "ser_cv": 0.34404149865940137, "ser_min_ns": 73481.0, "ser_max_ns": 210029.0, "ser_p5_ns": 75478.75, "ser_p25_ns": 82132.75, "ser_p50_ns": 108114.0, "ser_p75_ns": 135254.0, "ser_p95_ns": 193229.75, "ser_p99_ns": 205666.59999999998, "ser_ci_low_ns": 110446.11302083333, "ser_ci_high_ns": 126503.10911458333, "deser_mean_ns": 187093.41666666666, "deser_median_ns": 165434.0, "deser_std_ns": 74342.30594425205, "deser_mad_ns": 38228.0, "deser_cv": 0.3973539383093493, "deser_min_ns": 110743.0, "deser_max_ns": 395453.0, "deser_p5_ns": 119311.25, "deser_p25_ns": 127359.0, "deser_p50_ns": 165434.0, "deser_p75_ns": 204674.5, "deser_p95_ns": 345564.25, "deser_p99_ns": 371860.69999999995, "deser_ci_low_ns": 172824.4010416667, "deser_ci_high_ns": 203091.13802083334, "total_mean_ns": 305456.3229166667, "total_median_ns": 276088.0, "total_std_ns": 113988.44781223226, "total_mad_ns": 65251.0, "total_cv": 0.3731742945237055, "total_min_ns": 185270.0, "total_max_ns": 598222.0, "total_p5_ns": 195384.25, "total_p25_ns": 210867.5, "total_p50_ns": 276088.0, "total_p75_ns": 338346.25, "total_p95_ns": 535575.75, "total_p99_ns": 581526.7, "total_ci_low_ns": 282671.4192708333, "total_ci_high_ns": 327824.24114583334, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.9845920138888888, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.182531342533267}, {"serializer": "jackson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 125626.6043956044, "avg_time_deser_ns": 206870.989010989, "avg_time_total_ns": 332497.5934065934, "median_size_bytes": 44604.0, "avg_ops_per_sec": 3007.54056519487, "min_ops_per_sec": 1916.5606169791938, "max_ops_per_sec": 4054.3279951348063, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 125626.6043956044, "ser_median_ns": 119694.0, "ser_std_ns": 26354.64277541124, "ser_mad_ns": 14379.0, "ser_cv": 0.20978552196172687, "ser_min_ns": 93599.0, "ser_max_ns": 202660.0, "ser_p5_ns": 97590.5, "ser_p25_ns": 104235.0, "ser_p50_ns": 119694.0, "ser_p75_ns": 133848.5, "ser_p95_ns": 178570.5, "ser_p99_ns": 198548.8, "ser_ci_low_ns": 120295.3107142857, "ser_ci_high_ns": 131389.98076923075, "deser_mean_ns": 206870.989010989, "deser_median_ns": 192678.0, "deser_std_ns": 48384.518087801254, "deser_mad_ns": 19087.0, "deser_cv": 0.2338874016077289, "deser_min_ns": 153051.0, "deser_max_ns": 335552.0, "deser_p5_ns": 163874.5, "deser_p25_ns": 170819.0, "deser_p50_ns": 192678.0, "deser_p75_ns": 208538.5, "deser_p95_ns": 319018.5, "deser_p99_ns": 333552.2, "deser_ci_low_ns": 197255.3653846154, "deser_ci_high_ns": 217212.0848901099, "total_mean_ns": 332497.5934065934, "total_median_ns": 312670.0, "total_std_ns": 72479.72502185668, "total_mad_ns": 31856.0, "total_cv": 0.2179857131574036, "total_min_ns": 246650.0, "total_max_ns": 521768.0, "total_p5_ns": 263609.5, "total_p25_ns": 277041.0, "total_p50_ns": 312670.0, "total_p75_ns": 339368.0, "total_p95_ns": 495306.0, "total_p99_ns": 519400.1, "total_ci_low_ns": 318510.69752747257, "total_ci_high_ns": 346953.37115384615, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.5706412808202237}, {"serializer": "jackson-smile", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 113048.34020618557, "avg_time_deser_ns": 152742.42268041236, "avg_time_total_ns": 265790.76288659795, "median_size_bytes": 18778.0, "avg_ops_per_sec": 3762.3579884401743, "min_ops_per_sec": 2342.041041927219, "max_ops_per_sec": 5363.569562815445, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 113048.34020618557, "ser_median_ns": 104904.0, "ser_std_ns": 27935.488527471123, "ser_mad_ns": 17682.0, "ser_cv": 0.24711100115685378, "ser_min_ns": 76952.0, "ser_max_ns": 192566.0, "ser_p5_ns": 82032.8, "ser_p25_ns": 90340.0, "ser_p50_ns": 104904.0, "ser_p75_ns": 133258.0, "ser_p95_ns": 163967.8, "ser_p99_ns": 178748.71999999988, "ser_ci_low_ns": 107711.87036082475, "ser_ci_high_ns": 118913.93015463918, "deser_mean_ns": 152742.42268041236, "deser_median_ns": 143176.0, "deser_std_ns": 33432.68576708623, "deser_mad_ns": 18402.0, "deser_cv": 0.21888277781895904, "deser_min_ns": 109491.0, "deser_max_ns": 251926.0, "deser_p5_ns": 117502.2, "deser_p25_ns": 130333.0, "deser_p50_ns": 143176.0, "deser_p75_ns": 176234.0, "deser_p95_ns": 215549.8, "deser_p99_ns": 235112.55999999985, "deser_ci_low_ns": 146140.20309278351, "deser_ci_high_ns": 159330.31726804122, "total_mean_ns": 265790.76288659795, "total_median_ns": 247656.0, "total_std_ns": 59752.92740139969, "total_mad_ns": 32542.0, "total_cv": 0.2248119037413419, "total_min_ns": 186443.0, "total_max_ns": 426978.0, "total_p5_ns": 199241.4, "total_p25_ns": 219970.0, "total_p50_ns": 247656.0, "total_p75_ns": 311945.0, "total_p95_ns": 368666.2, "total_p99_ns": 412840.0799999999, "total_ci_low_ns": 254189.11701030927, "total_ci_high_ns": 277907.3853092783, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.9903350515463918, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.7989949670189453}, {"serializer": "protostuff", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "1.8.0", "avg_time_ser_ns": 68777.83116883117, "avg_time_deser_ns": 63409.857142857145, "avg_time_total_ns": 132187.6883116883, "median_size_bytes": 16108.0, "avg_ops_per_sec": 7565.001043380664, "min_ops_per_sec": 5061.1129387352275, "max_ops_per_sec": 9232.246390191662, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 68777.83116883117, "ser_median_ns": 66007.0, "ser_std_ns": 11855.384970555295, "ser_mad_ns": 5759.0, "ser_cv": 0.17237218401745613, "ser_min_ns": 54937.0, "ser_max_ns": 123076.0, "ser_p5_ns": 57209.0, "ser_p25_ns": 59475.0, "ser_p50_ns": 66007.0, "ser_p75_ns": 70982.0, "ser_p95_ns": 90635.6, "ser_p99_ns": 100303.35999999984, "ser_ci_low_ns": 66209.77467532468, "ser_ci_high_ns": 71808.212012987, "deser_mean_ns": 63409.857142857145, "deser_median_ns": 63985.0, "deser_std_ns": 6505.00898238444, "deser_mad_ns": 3979.0, "deser_cv": 0.1025867156226073, "deser_min_ns": 52408.0, "deser_max_ns": 92365.0, "deser_p5_ns": 54511.6, "deser_p25_ns": 59169.0, "deser_p50_ns": 63985.0, "deser_p75_ns": 66501.0, "deser_p95_ns": 73369.8, "deser_p99_ns": 80090.23999999992, "deser_ci_low_ns": 62052.675, "deser_ci_high_ns": 64878.79707792208, "total_mean_ns": 132187.6883116883, "total_median_ns": 130925.0, "total_std_ns": 16979.851103013814, "total_mad_ns": 10696.0, "total_cv": 0.12845259131074782, "total_min_ns": 108316.0, "total_max_ns": 197585.0, "total_p5_ns": 111421.6, "total_p25_ns": 119399.0, "total_p50_ns": 130925.0, "total_p75_ns": 138994.0, "total_p95_ns": 163450.6, "total_p99_ns": 178293.91999999987, "total_ci_low_ns": 128602.09772727273, "total_ci_high_ns": 135840.01688311688, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.27624458874458874, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.48293257541353496}, {"serializer": "protobuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "4.28.3", "avg_time_ser_ns": 58756.17021276596, "avg_time_deser_ns": 124885.34042553192, "avg_time_total_ns": 183641.51063829788, "median_size_bytes": 16265.0, "avg_ops_per_sec": 5445.391929766956, "min_ops_per_sec": 2835.7773007370183, "max_ops_per_sec": 9299.124952341985, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 58756.17021276596, "ser_median_ns": 55626.0, "ser_std_ns": 15712.067167638812, "ser_mad_ns": 10422.5, "ser_cv": 0.2674113563008409, "ser_min_ns": 37274.0, "ser_max_ns": 100208.0, "ser_p5_ns": 40239.1, "ser_p25_ns": 45220.5, "ser_p50_ns": 55626.0, "ser_p75_ns": 66506.5, "ser_p95_ns": 86804.59999999998, "ser_p99_ns": 98185.24999999999, "ser_ci_low_ns": 55656.816223404254, "ser_ci_high_ns": 61878.101861702125, "deser_mean_ns": 124885.34042553192, "deser_median_ns": 113004.0, "deser_std_ns": 45606.79486079089, "deser_mad_ns": 29823.5, "deser_cv": 0.3651893385195666, "deser_min_ns": 70263.0, "deser_max_ns": 256337.0, "deser_p5_ns": 78597.35, "deser_p25_ns": 85679.25, "deser_p50_ns": 113004.0, "deser_p75_ns": 154787.25, "deser_p95_ns": 204394.75, "deser_p99_ns": 225554.92999999976, "deser_ci_low_ns": 115548.69175531915, "deser_ci_high_ns": 134062.53643617022, "total_mean_ns": 183641.51063829788, "total_median_ns": 169269.5, "total_std_ns": 60549.453588673954, "total_mad_ns": 40332.0, "total_cv": 0.329715505923564, "total_min_ns": 107537.0, "total_max_ns": 352637.0, "total_p5_ns": 119300.85, "total_p25_ns": 132527.5, "total_p50_ns": 169269.5, "total_p75_ns": 216042.5, "total_p95_ns": 289173.55, "total_p99_ns": 325489.3699999998, "total_ci_low_ns": 171524.1345744681, "total_ci_high_ns": 196445.82127659576, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.6110372340425532, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.273970574311538}, {"serializer": "hessian", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "4.0.66", "avg_time_ser_ns": 109923.53086419753, "avg_time_deser_ns": 92230.4074074074, "avg_time_total_ns": 202153.93827160494, "median_size_bytes": 13309.0, "avg_ops_per_sec": 4946.725295336294, "min_ops_per_sec": 2638.27182642282, "max_ops_per_sec": 6782.327966251136, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 109923.53086419753, "ser_median_ns": 103756.0, "ser_std_ns": 22259.42480337622, "ser_mad_ns": 10659.0, "ser_cv": 0.20249917946027507, "ser_min_ns": 85001.0, "ser_max_ns": 174056.0, "ser_p5_ns": 89382.0, "ser_p25_ns": 94024.0, "ser_p50_ns": 103756.0, "ser_p75_ns": 115089.0, "ser_p95_ns": 157812.0, "ser_p99_ns": 171536.80000000002, "ser_ci_low_ns": 105553.84814814814, "ser_ci_high_ns": 114721.89660493827, "deser_mean_ns": 92230.4074074074, "deser_median_ns": 80347.0, "deser_std_ns": 30806.473530241085, "deser_mad_ns": 12918.0, "deser_cv": 0.33401645288370363, "deser_min_ns": 62098.0, "deser_max_ns": 208129.0, "deser_p5_ns": 63815.0, "deser_p25_ns": 68591.0, "deser_p50_ns": 80347.0, "deser_p75_ns": 102498.0, "deser_p95_ns": 147580.0, "deser_p99_ns": 172860.20000000013, "deser_ci_low_ns": 85934.90802469137, "deser_ci_high_ns": 98993.61080246913, "total_mean_ns": 202153.93827160494, "total_median_ns": 182936.0, "total_std_ns": 51118.09251486837, "total_mad_ns": 22655.0, "total_cv": 0.25286716129264025, "total_min_ns": 147442.0, "total_max_ns": 379036.0, "total_p5_ns": 154396.0, "total_p25_ns": 162418.0, "total_p50_ns": 182936.0, "total_p75_ns": 215154.0, "total_p95_ns": 293890.0, "total_p99_ns": 342772.0000000001, "total_ci_low_ns": 191554.77808641977, "total_ci_high_ns": 213836.22191358026, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.7685185185185185, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.7830935177435203}, {"serializer": "avro", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "1.12.0", "avg_time_ser_ns": 103291.55952380953, "avg_time_deser_ns": 190698.2380952381, "avg_time_total_ns": 293989.79761904763, "median_size_bytes": 11967.0, "avg_ops_per_sec": 3401.4785822459094, "min_ops_per_sec": 2020.295892536421, "max_ops_per_sec": 4629.522464757761, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 103291.55952380953, "ser_median_ns": 100447.0, "ser_std_ns": 17047.35312624432, "ser_mad_ns": 9486.5, "ser_cv": 0.16504110505093855, "ser_min_ns": 77340.0, "ser_max_ns": 147025.0, "ser_p5_ns": 83662.6, "ser_p25_ns": 90883.5, "ser_p50_ns": 100447.0, "ser_p75_ns": 109062.5, "ser_p95_ns": 139224.55, "ser_p99_ns": 143799.62, "ser_ci_low_ns": 99609.80297619048, "ser_ci_high_ns": 106995.05565476189, "deser_mean_ns": 190698.2380952381, "deser_median_ns": 187632.5, "deser_std_ns": 45791.55443087338, "deser_mad_ns": 33434.0, "deser_cv": 0.2401257341874562, "deser_min_ns": 132790.0, "deser_max_ns": 364243.0, "deser_p5_ns": 136130.75, "deser_p25_ns": 150849.5, "deser_p50_ns": 187632.5, "deser_p75_ns": 208272.25, "deser_p95_ns": 268067.49999999994, "deser_p99_ns": 352865.36000000004, "deser_ci_low_ns": 181365.99017857143, "deser_ci_high_ns": 200843.73809523808, "total_mean_ns": 293989.79761904763, "total_median_ns": 290188.0, "total_std_ns": 59647.43614558534, "total_mad_ns": 40485.5, "total_cv": 0.20288947653508904, "total_min_ns": 216005.0, "total_max_ns": 494977.0, "total_p5_ns": 221122.65, "total_p25_ns": 243832.0, "total_p50_ns": 290188.0, "total_p75_ns": 318450.25, "total_p95_ns": 408265.69999999995, "total_p99_ns": 458024.57000000007, "total_ci_low_ns": 281171.20357142854, "total_ci_high_ns": 307401.25476190477, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.9997519841269841, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.3500338323740033}, {"serializer": "java-serialization", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "21.0.11", "avg_time_ser_ns": 230080.18279569893, "avg_time_deser_ns": 320599.98924731184, "avg_time_total_ns": 550680.1720430107, "median_size_bytes": 28605.0, "avg_ops_per_sec": 1815.9360927959747, "min_ops_per_sec": 1355.0135501355014, "max_ops_per_sec": 2400.948854987491, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 230080.18279569893, "ser_median_ns": 235102.0, "ser_std_ns": 26515.95401703687, "ser_mad_ns": 22734.0, "ser_cv": 0.1152465792353002, "ser_min_ns": 181126.0, "ser_max_ns": 303616.0, "ser_p5_ns": 190956.0, "ser_p25_ns": 205203.0, "ser_p50_ns": 235102.0, "ser_p75_ns": 250403.0, "ser_p95_ns": 267497.8, "ser_p99_ns": 275945.16, "ser_ci_low_ns": 224767.87634408602, "ser_ci_high_ns": 235509.05833333332, "deser_mean_ns": 320599.98924731184, "deser_median_ns": 321698.0, "deser_std_ns": 55360.75132110148, "deser_mad_ns": 40478.0, "deser_cv": 0.1726785813407998, "deser_min_ns": 232471.0, "deser_max_ns": 473928.0, "deser_p5_ns": 249487.8, "deser_p25_ns": 276570.0, "deser_p50_ns": 321698.0, "deser_p75_ns": 354674.0, "deser_p95_ns": 423685.6, "deser_p99_ns": 470604.96, "deser_ci_low_ns": 309589.85591397854, "deser_ci_high_ns": 331810.42123655917, "total_mean_ns": 550680.1720430107, "total_median_ns": 557732.0, "total_std_ns": 76292.94469839717, "total_mad_ns": 59524.0, "total_cv": 0.13854311190350674, "total_min_ns": 416502.0, "total_max_ns": 738000.0, "total_p5_ns": 443429.0, "total_p25_ns": 489446.0, "total_p50_ns": 557732.0, "total_p75_ns": 605662.0, "total_p95_ns": 674573.3999999999, "total_p99_ns": 734347.6, "total_ci_low_ns": 534831.9932795699, "total_ci_high_ns": 566719.4379032259, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.871124411529489}, {"serializer": "ion", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 296812.3146067416, "avg_time_deser_ns": 766048.3707865168, "avg_time_total_ns": 1062860.6853932585, "median_size_bytes": 38604.0, "avg_ops_per_sec": 940.8570791476777, "min_ops_per_sec": 680.7106346741745, "max_ops_per_sec": 1166.7522284967565, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 296812.3146067416, "ser_median_ns": 282735.0, "ser_std_ns": 53542.52991730361, "ser_mad_ns": 36574.0, "ser_cv": 0.18039187487299585, "ser_min_ns": 218219.0, "ser_max_ns": 431025.0, "ser_p5_ns": 232292.2, "ser_p25_ns": 251418.0, "ser_p50_ns": 282735.0, "ser_p75_ns": 337061.0, "ser_p95_ns": 400883.0, "ser_p99_ns": 411628.9200000001, "ser_ci_low_ns": 285734.96910112357, "ser_ci_high_ns": 307845.4297752809, "deser_mean_ns": 766048.3707865168, "deser_median_ns": 758529.0, "deser_std_ns": 94851.66496566459, "deser_mad_ns": 67314.0, "deser_cv": 0.12381942000382891, "deser_min_ns": 603274.0, "deser_max_ns": 1038028.0, "deser_p5_ns": 648348.6, "deser_p25_ns": 688273.0, "deser_p50_ns": 758529.0, "deser_p75_ns": 808160.0, "deser_p95_ns": 959797.0, "deser_p99_ns": 1016880.7200000001, "deser_ci_low_ns": 746012.0334269663, "deser_ci_high_ns": 785861.7617977527, "total_mean_ns": 1062860.6853932585, "total_median_ns": 1047312.0, "total_std_ns": 143782.89204534254, "total_mad_ns": 119847.0, "total_cv": 0.13527915184118686, "total_min_ns": 857080.0, "total_max_ns": 1469053.0, "total_p5_ns": 888714.2, "total_p25_ns": 931460.0, "total_p50_ns": 1047312.0, "total_p75_ns": 1169151.0, "total_p95_ns": 1318977.1999999997, "total_p99_ns": 1423929.2400000002, "total_ci_low_ns": 1036529.5359550562, "total_ci_high_ns": 1092804.533988764, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.965066077765833}, {"serializer": "jackson-cbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 124434.4945054945, "avg_time_deser_ns": 218994.75824175825, "avg_time_total_ns": 343429.25274725276, "median_size_bytes": 33572.0, "avg_ops_per_sec": 2911.807867269686, "min_ops_per_sec": 1788.7903662906033, "max_ops_per_sec": 3961.7610820361865, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 124434.4945054945, "ser_median_ns": 119232.0, "ser_std_ns": 29771.56799564668, "ser_mad_ns": 17285.0, "ser_cv": 0.23925494384784193, "ser_min_ns": 87007.0, "ser_max_ns": 205380.0, "ser_p5_ns": 91041.5, "ser_p25_ns": 101480.0, "ser_p50_ns": 119232.0, "ser_p75_ns": 134312.0, "ser_p95_ns": 193711.0, "ser_p99_ns": 202457.69999999998, "ser_ci_low_ns": 118764.34093406593, "ser_ci_high_ns": 130812.03379120879, "deser_mean_ns": 218994.75824175825, "deser_median_ns": 210200.0, "deser_std_ns": 41778.787317473456, "deser_mad_ns": 25193.0, "deser_cv": 0.190775284545176, "deser_min_ns": 164669.0, "deser_max_ns": 359638.0, "deser_p5_ns": 170817.5, "deser_p25_ns": 185862.0, "deser_p50_ns": 210200.0, "deser_p75_ns": 235242.0, "deser_p95_ns": 299343.0, "deser_p99_ns": 311046.0999999997, "deser_ci_low_ns": 210541.278021978, "deser_ci_high_ns": 227557.03351648353, "total_mean_ns": 343429.25274725276, "total_median_ns": 327145.0, "total_std_ns": 70126.56095035817, "total_mad_ns": 39825.0, "total_cv": 0.20419507187982006, "total_min_ns": 252413.0, "total_max_ns": 559037.0, "total_p5_ns": 264753.0, "total_p25_ns": 290485.5, "total_p50_ns": 327145.0, "total_p75_ns": 365667.5, "total_p95_ns": 485480.0, "total_p99_ns": 508965.4999999997, "total_ci_low_ns": 328996.72692307696, "total_ci_high_ns": 357859.3678571428, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.834843754322182}, {"serializer": "fory", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "1.3.0", "avg_time_ser_ns": 57359.5, "avg_time_deser_ns": 56848.833333333336, "avg_time_total_ns": 114208.33333333333, "median_size_bytes": 14633.0, "avg_ops_per_sec": 8755.928493250638, "min_ops_per_sec": 4609.420734096346, "max_ops_per_sec": 16676.67267026883, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 57359.5, "ser_median_ns": 52583.0, "ser_std_ns": 25083.51248130931, "ser_mad_ns": 21046.5, "ser_cv": 0.43730354137168753, "ser_min_ns": 28847.0, "ser_max_ns": 110214.0, "ser_p5_ns": 30159.75, "ser_p25_ns": 33548.25, "ser_p50_ns": 52583.0, "ser_p75_ns": 79919.25, "ser_p95_ns": 98684.0, "ser_p99_ns": 109218.4, "ser_ci_low_ns": 52622.96432291667, "ser_ci_high_ns": 62319.6921875, "deser_mean_ns": 56848.833333333336, "deser_median_ns": 47472.0, "deser_std_ns": 24530.309724766674, "deser_mad_ns": 14009.5, "deser_cv": 0.4315006709272839, "deser_min_ns": 31117.0, "deser_max_ns": 118650.0, "deser_p5_ns": 32785.0, "deser_p25_ns": 36354.0, "deser_p50_ns": 47472.0, "deser_p75_ns": 72623.25, "deser_p95_ns": 105633.75, "deser_p99_ns": 116122.99999999999, "deser_ci_low_ns": 51970.91510416666, "deser_ci_high_ns": 61644.67005208333, "total_mean_ns": 114208.33333333333, "total_median_ns": 102126.5, "total_std_ns": 47353.43528152317, "total_mad_ns": 36442.5, "total_cv": 0.4146232932347888, "total_min_ns": 59964.0, "total_max_ns": 216947.0, "total_p5_ns": 63187.25, "total_p25_ns": 70081.0, "total_p50_ns": 102126.5, "total_p75_ns": 158534.5, "total_p95_ns": 191667.5, "total_p99_ns": 202019.64999999997, "total_ci_low_ns": 105156.76536458333, "total_ci_high_ns": 123704.08854166666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "moshi", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "1.15.2", "avg_time_ser_ns": 211629.7011494253, "avg_time_deser_ns": 258420.67816091955, "avg_time_total_ns": 470050.3793103448, "median_size_bytes": 44604.0, "avg_ops_per_sec": 2127.4315350350194, "min_ops_per_sec": 1626.063852275351, "max_ops_per_sec": 2757.441645641174, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 211629.7011494253, "ser_median_ns": 210505.0, "ser_std_ns": 22393.184702989613, "ser_mad_ns": 14720.0, "ser_cv": 0.10581305261674243, "ser_min_ns": 161344.0, "ser_max_ns": 268702.0, "ser_p5_ns": 178142.5, "ser_p25_ns": 196084.5, "ser_p50_ns": 210505.0, "ser_p75_ns": 225726.0, "ser_p95_ns": 253031.2, "ser_p99_ns": 265445.18, "ser_ci_low_ns": 207085.67356321838, "ser_ci_high_ns": 216182.55402298848, "deser_mean_ns": 258420.67816091955, "deser_median_ns": 251958.0, "deser_std_ns": 38363.087512606, "deser_mad_ns": 17506.0, "deser_cv": 0.1484520812561182, "deser_min_ns": 201311.0, "deser_max_ns": 370268.0, "deser_p5_ns": 212391.1, "deser_p25_ns": 233194.0, "deser_p50_ns": 251958.0, "deser_p75_ns": 267541.5, "deser_p95_ns": 336799.80000000005, "deser_p99_ns": 367898.7, "deser_ci_low_ns": 250727.1382183908, "deser_ci_high_ns": 266279.5333333333, "total_mean_ns": 470050.3793103448, "total_median_ns": 463301.0, "total_std_ns": 57927.12123209793, "total_mad_ns": 32128.0, "total_cv": 0.12323598444296177, "total_min_ns": 362655.0, "total_max_ns": 614982.0, "total_p5_ns": 386711.1, "total_p25_ns": 428978.5, "total_p50_ns": 463301.0, "total_p75_ns": 490729.5, "total_p95_ns": 585287.6, "total_p99_ns": 611470.62, "total_ci_low_ns": 458181.0244252874, "total_ci_high_ns": 483279.21379310347, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.731498992778995}, {"serializer": "jsoniter", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "0.9.23", "avg_time_ser_ns": 66842.13684210526, "avg_time_deser_ns": 95222.81052631579, "avg_time_total_ns": 162064.94736842104, "median_size_bytes": 44604.0, "avg_ops_per_sec": 6170.365746805862, "min_ops_per_sec": 3669.3342726829073, "max_ops_per_sec": 9310.813578890524, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 66842.13684210526, "ser_median_ns": 62769.0, "ser_std_ns": 16496.57001590287, "ser_mad_ns": 12439.0, "ser_cv": 0.24679896238013949, "ser_min_ns": 47630.0, "ser_max_ns": 114438.0, "ser_p5_ns": 48111.5, "ser_p25_ns": 52275.5, "ser_p50_ns": 62769.0, "ser_p75_ns": 77678.5, "ser_p95_ns": 95197.79999999999, "ser_p99_ns": 113215.06, "ser_ci_low_ns": 63590.248947368425, "ser_ci_high_ns": 70233.88999999998, "deser_mean_ns": 95222.81052631579, "deser_median_ns": 85001.0, "deser_std_ns": 33200.69553497744, "deser_mad_ns": 18051.0, "deser_cv": 0.3486632599003376, "deser_min_ns": 59687.0, "deser_max_ns": 185130.0, "deser_p5_ns": 63363.1, "deser_p25_ns": 69766.0, "deser_p50_ns": 85001.0, "deser_p75_ns": 104460.5, "deser_p95_ns": 157802.6, "deser_p99_ns": 170773.38000000003, "deser_ci_low_ns": 88934.91157894736, "deser_ci_high_ns": 101849.9136842105, "total_mean_ns": 162064.94736842104, "total_median_ns": 150552.0, "total_std_ns": 48146.13283654484, "total_mad_ns": 29890.0, "total_cv": 0.29707924889578124, "total_min_ns": 107402.0, "total_max_ns": 272529.0, "total_p5_ns": 111463.9, "total_p25_ns": 122581.0, "total_p50_ns": 150552.0, "total_p75_ns": 183230.0, "total_p95_ns": 258370.5, "total_p99_ns": 269503.14, "total_ci_low_ns": 152995.87263157897, "total_ci_high_ns": 172291.07289473683, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.49353070175438596, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 0.9982643396295653}, {"serializer": "jackson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 94111.84146341463, "avg_time_deser_ns": 177958.6219512195, "avg_time_total_ns": 272070.46341463417, "median_size_bytes": 44604.0, "avg_ops_per_sec": 3675.518420667386, "min_ops_per_sec": 3290.6210718210955, "max_ops_per_sec": 4017.629357621242, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 94111.84146341463, "ser_median_ns": 93493.0, "ser_std_ns": 4593.507623069524, "ser_mad_ns": 3354.0, "ser_cv": 0.04880902925329774, "ser_min_ns": 84185.0, "ser_max_ns": 106516.0, "ser_p5_ns": 88005.1, "ser_p25_ns": 90781.25, "ser_p50_ns": 93493.0, "ser_p75_ns": 97182.25, "ser_p95_ns": 101350.8, "ser_p99_ns": 106181.47, "ser_ci_low_ns": 93150.0237804878, "ser_ci_high_ns": 95140.78353658537, "deser_mean_ns": 177958.6219512195, "deser_median_ns": 176629.0, "deser_std_ns": 8804.911638062025, "deser_mad_ns": 5006.5, "deser_cv": 0.049477297258885, "deser_min_ns": 161596.0, "deser_max_ns": 206846.0, "deser_p5_ns": 165770.35, "deser_p25_ns": 171940.25, "deser_p50_ns": 176629.0, "deser_p75_ns": 182838.75, "deser_p95_ns": 193591.25, "deser_p99_ns": 203077.06999999998, "deser_ci_low_ns": 176185.57317073172, "deser_ci_high_ns": 179933.02225609755, "total_mean_ns": 272070.46341463417, "total_median_ns": 271041.5, "total_std_ns": 11869.901787683935, "total_mad_ns": 8427.0, "total_cv": 0.04362804267214504, "total_min_ns": 248903.0, "total_max_ns": 303894.0, "total_p5_ns": 254922.0, "total_p25_ns": 262696.0, "total_p50_ns": 271041.5, "total_p75_ns": 279258.75, "total_p95_ns": 295425.5, "total_p99_ns": 303403.14, "total_ci_low_ns": 269660.0518292683, "total_ci_high_ns": 274578.1576219512, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.287088941887113}, {"serializer": "kryo", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "5.6.2", "avg_time_ser_ns": 94071.15662650602, "avg_time_deser_ns": 79860.0843373494, "avg_time_total_ns": 173931.2409638554, "median_size_bytes": 13070.0, "avg_ops_per_sec": 5749.398408580375, "min_ops_per_sec": 4958.472790380562, "max_ops_per_sec": 6367.480006112781, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 94071.15662650602, "ser_median_ns": 93179.0, "ser_std_ns": 5698.5844615494525, "ser_mad_ns": 3705.0, "ser_cv": 0.06057738275903995, "ser_min_ns": 86139.0, "ser_max_ns": 109948.0, "ser_p5_ns": 86974.6, "ser_p25_ns": 89767.5, "ser_p50_ns": 93179.0, "ser_p75_ns": 96979.0, "ser_p95_ns": 107166.29999999997, "ser_p99_ns": 109226.4, "ser_ci_low_ns": 92892.47891566265, "ser_ci_high_ns": 95338.08795180723, "deser_mean_ns": 79860.0843373494, "deser_median_ns": 79303.0, "deser_std_ns": 4314.259584342735, "deser_mad_ns": 2526.0, "deser_cv": 0.05402272762595893, "deser_min_ns": 70603.0, "deser_max_ns": 91727.0, "deser_p5_ns": 74518.1, "deser_p25_ns": 76807.0, "deser_p50_ns": 79303.0, "deser_p75_ns": 81829.0, "deser_p95_ns": 89037.4, "deser_p99_ns": 91604.0, "deser_ci_low_ns": 78969.54668674698, "deser_ci_high_ns": 80794.59427710844, "total_mean_ns": 173931.2409638554, "total_median_ns": 173291.0, "total_std_ns": 9174.121310473123, "total_mad_ns": 5582.0, "total_cv": 0.052745678462557476, "total_min_ns": 157048.0, "total_max_ns": 201675.0, "total_p5_ns": 162934.7, "total_p25_ns": 167342.5, "total_p50_ns": 173291.0, "total_p75_ns": 178516.0, "total_p95_ns": 192646.9, "total_p99_ns": 199128.08, "total_ci_low_ns": 172026.80722891566, "total_ci_high_ns": 175898.79849397592, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.233799527925763}, {"serializer": "jackson-smile", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 81396.92857142857, "avg_time_deser_ns": 131621.59523809524, "avg_time_total_ns": 213018.52380952382, "median_size_bytes": 18778.0, "avg_ops_per_sec": 4694.427424040252, "min_ops_per_sec": 3993.801619885937, "max_ops_per_sec": 5096.190597528348, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 81396.92857142857, "ser_median_ns": 80378.5, "ser_std_ns": 3845.582497076931, "ser_mad_ns": 2028.0, "ser_cv": 0.04724481088622775, "ser_min_ns": 75312.0, "ser_max_ns": 95000.0, "ser_p5_ns": 76624.0, "ser_p25_ns": 78881.0, "ser_p50_ns": 80378.5, "ser_p75_ns": 83455.5, "ser_p95_ns": 88176.4, "ser_p99_ns": 92133.18000000001, "ser_ci_low_ns": 80610.9431547619, "ser_ci_high_ns": 82285.84494047619, "deser_mean_ns": 131621.59523809524, "deser_median_ns": 127322.5, "deser_std_ns": 10804.230369738823, "deser_mad_ns": 3934.0, "deser_cv": 0.08208554493048535, "deser_min_ns": 119976.0, "deser_max_ns": 162969.0, "deser_p5_ns": 121481.8, "deser_p25_ns": 124529.5, "deser_p50_ns": 127322.5, "deser_p75_ns": 133735.25, "deser_p95_ns": 157371.09999999998, "deser_p99_ns": 161904.11000000002, "deser_ci_low_ns": 129435.87559523809, "deser_ci_high_ns": 134024.4955357143, "total_mean_ns": 213018.52380952382, "total_median_ns": 208635.5, "total_std_ns": 13181.664065266827, "total_mad_ns": 7063.5, "total_cv": 0.06188036528247451, "total_min_ns": 196225.0, "total_max_ns": 250388.0, "total_p5_ns": 198204.15, "total_p25_ns": 203537.5, "total_p50_ns": 208635.5, "total_p75_ns": 218903.75, "total_p95_ns": 239033.05, "total_p99_ns": 249665.9, "total_ci_low_ns": 210286.67648809523, "total_ci_high_ns": 215865.54374999998, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.366732726511481}, {"serializer": "fory", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "1.3.0", "avg_time_ser_ns": 32593.48148148148, "avg_time_deser_ns": 36174.555555555555, "avg_time_total_ns": 68768.03703703704, "median_size_bytes": 14633.0, "avg_ops_per_sec": 14541.63944597431, "min_ops_per_sec": 11769.967750288364, "max_ops_per_sec": 16058.3238321584, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 32593.48148148148, "ser_median_ns": 31710.0, "ser_std_ns": 2375.128223439269, "ser_mad_ns": 1034.0, "ser_cv": 0.07287126491193452, "ser_min_ns": 29293.0, "ser_max_ns": 39833.0, "ser_p5_ns": 29923.0, "ser_p25_ns": 31071.0, "ser_p50_ns": 31710.0, "ser_p75_ns": 33508.0, "ser_p95_ns": 37256.0, "ser_p99_ns": 39519.4, "ser_ci_low_ns": 32091.759567901234, "ser_ci_high_ns": 33116.01388888889, "deser_mean_ns": 36174.555555555555, "deser_median_ns": 35203.0, "deser_std_ns": 2611.031113372646, "deser_mad_ns": 1051.0, "deser_cv": 0.07217866462416436, "deser_min_ns": 32921.0, "deser_max_ns": 45521.0, "deser_p5_ns": 33369.0, "deser_p25_ns": 34531.0, "deser_p50_ns": 35203.0, "deser_p75_ns": 37181.0, "deser_p95_ns": 41056.0, "deser_p99_ns": 44891.4, "deser_ci_low_ns": 35618.64135802469, "deser_ci_high_ns": 36741.721296296295, "total_mean_ns": 68768.03703703704, "total_median_ns": 67477.0, "total_std_ns": 4821.4642159940495, "total_mad_ns": 2144.0, "total_cv": 0.07011199423065266, "total_min_ns": 62273.0, "total_max_ns": 84962.0, "total_p5_ns": 63682.0, "total_p25_ns": 65480.0, "total_p50_ns": 67477.0, "total_p75_ns": 70052.0, "total_p95_ns": 77638.0, "total_p99_ns": 84151.6, "total_ci_low_ns": 67774.56481481482, "total_ci_high_ns": 69829.65586419753, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "moshi", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "1.15.2", "avg_time_ser_ns": 189534.8, "avg_time_deser_ns": 241785.01176470588, "avg_time_total_ns": 431319.81176470587, "median_size_bytes": 44604.0, "avg_ops_per_sec": 2318.465261098466, "min_ops_per_sec": 2109.9049487820575, "max_ops_per_sec": 2467.3325174687143, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 189534.8, "ser_median_ns": 190126.0, "ser_std_ns": 8692.467618850353, "ser_mad_ns": 5751.0, "ser_cv": 0.04586211935143495, "ser_min_ns": 173274.0, "ser_max_ns": 213818.0, "ser_p5_ns": 176513.4, "ser_p25_ns": 182936.0, "ser_p50_ns": 190126.0, "ser_p75_ns": 194486.0, "ser_p95_ns": 204257.8, "ser_p99_ns": 212495.84, "ser_ci_low_ns": 187632.15411764706, "ser_ci_high_ns": 191415.58676470586, "deser_mean_ns": 241785.01176470588, "deser_median_ns": 238345.0, "deser_std_ns": 10210.668854886328, "deser_mad_ns": 5884.0, "deser_cv": 0.042230363165864405, "deser_min_ns": 224857.0, "deser_max_ns": 270190.0, "deser_p5_ns": 229953.6, "deser_p25_ns": 234443.0, "deser_p50_ns": 238345.0, "deser_p75_ns": 246714.0, "deser_p95_ns": 261731.6, "deser_p99_ns": 269504.56, "deser_ci_low_ns": 239634.26676470588, "deser_ci_high_ns": 244034.9511764706, "total_mean_ns": 431319.81176470587, "total_median_ns": 430973.0, "total_std_ns": 14274.888370420105, "total_mad_ns": 9638.0, "total_cv": 0.033095832792877505, "total_min_ns": 405296.0, "total_max_ns": 473955.0, "total_p5_ns": 412398.0, "total_p25_ns": 420812.0, "total_p50_ns": 430973.0, "total_p75_ns": 439901.0, "total_p95_ns": 452988.0, "total_p99_ns": 472979.76, "total_ci_low_ns": 428363.9173529412, "total_ci_high_ns": 434312.6888235294, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 33.549726406382035}, {"serializer": "protobuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "4.28.3", "avg_time_ser_ns": 41597.0, "avg_time_deser_ns": 88987.25974025975, "avg_time_total_ns": 130584.25974025975, "median_size_bytes": 16265.0, "avg_ops_per_sec": 7657.89079012327, "min_ops_per_sec": 6333.082121075864, "max_ops_per_sec": 8614.822663875464, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 41597.0, "ser_median_ns": 40933.0, "ser_std_ns": 2809.590010360193, "ser_mad_ns": 1052.0, "ser_cv": 0.0675430922989685, "ser_min_ns": 35804.0, "ser_max_ns": 51231.0, "ser_p5_ns": 38563.2, "ser_p25_ns": 39905.0, "ser_p50_ns": 40933.0, "ser_p75_ns": 42293.0, "ser_p95_ns": 47904.0, "ser_p99_ns": 49740.63999999999, "ser_ci_low_ns": 41014.845129870126, "ser_ci_high_ns": 42242.04285714286, "deser_mean_ns": 88987.25974025975, "deser_median_ns": 87044.0, "deser_std_ns": 6276.636271046437, "deser_mad_ns": 2236.0, "deser_cv": 0.07053409993033814, "deser_min_ns": 80275.0, "deser_max_ns": 111019.0, "deser_p5_ns": 83579.0, "deser_p25_ns": 85408.0, "deser_p50_ns": 87044.0, "deser_p75_ns": 90744.0, "deser_p95_ns": 105421.6, "deser_p99_ns": 108967.75999999998, "deser_ci_low_ns": 87672.85974025974, "deser_ci_high_ns": 90480.50292207793, "total_mean_ns": 130584.25974025975, "total_median_ns": 128134.0, "total_std_ns": 8333.635608662229, "total_mad_ns": 3122.0, "total_cv": 0.06381807137581781, "total_min_ns": 116079.0, "total_max_ns": 157901.0, "total_p5_ns": 122996.2, "total_p25_ns": 125522.0, "total_p50_ns": 128134.0, "total_p75_ns": 132476.0, "total_p95_ns": 148268.4, "total_p99_ns": 156308.03999999998, "total_ci_low_ns": 128852.10097402598, "total_ci_high_ns": 132572.82727272727, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.094602511290242}, {"serializer": "ion", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 239452.91463414635, "avg_time_deser_ns": 738785.6463414634, "avg_time_total_ns": 978238.5609756098, "median_size_bytes": 38604.0, "avg_ops_per_sec": 1022.2455338528949, "min_ops_per_sec": 921.5417762533428, "max_ops_per_sec": 1090.7206936983612, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 239452.91463414635, "ser_median_ns": 237179.5, "ser_std_ns": 11553.143806230299, "ser_mad_ns": 6102.5, "ser_cv": 0.04824808177374677, "ser_min_ns": 220076.0, "ser_max_ns": 269561.0, "ser_p5_ns": 225540.75, "ser_p25_ns": 231981.5, "ser_p50_ns": 237179.5, "ser_p75_ns": 244320.25, "ser_p95_ns": 264996.65, "ser_p99_ns": 268205.87, "ser_ci_low_ns": 237088.8338414634, "ser_ci_high_ns": 241793.8356707317, "deser_mean_ns": 738785.6463414634, "deser_median_ns": 736904.5, "deser_std_ns": 24749.038297500763, "deser_mad_ns": 16318.5, "deser_cv": 0.033499619842454094, "deser_min_ns": 696749.0, "deser_max_ns": 827116.0, "deser_p5_ns": 706034.45, "deser_p25_ns": 719358.0, "deser_p50_ns": 736904.5, "deser_p75_ns": 752163.0, "deser_p95_ns": 775937.15, "deser_p99_ns": 825034.3, "deser_ci_low_ns": 733817.1423780487, "deser_ci_high_ns": 744195.0268292682, "total_mean_ns": 978238.5609756098, "total_median_ns": 973507.0, "total_std_ns": 30447.70217205174, "total_mad_ns": 20120.5, "total_cv": 0.03112502756146298, "total_min_ns": 916825.0, "total_max_ns": 1085138.0, "total_p5_ns": 934501.3, "total_p25_ns": 960383.25, "total_p50_ns": 973507.0, "total_p75_ns": 997423.75, "total_p95_ns": 1033158.45, "total_p99_ns": 1066240.7, "total_ci_low_ns": 971841.7353658536, "total_ci_high_ns": 985006.1865853658, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 41.40580244856463}, {"serializer": "avro", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "1.12.0", "avg_time_ser_ns": 87172.48148148147, "avg_time_deser_ns": 152545.76543209876, "avg_time_total_ns": 239718.24691358025, "median_size_bytes": 11967.0, "avg_ops_per_sec": 4171.563962590239, "min_ops_per_sec": 3643.292516312842, "max_ops_per_sec": 4527.693638137669, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 87172.48148148147, "ser_median_ns": 86820.0, "ser_std_ns": 3617.4338491225762, "ser_mad_ns": 1775.0, "ser_cv": 0.0414974288633856, "ser_min_ns": 80448.0, "ser_max_ns": 99737.0, "ser_p5_ns": 82218.0, "ser_p25_ns": 85039.0, "ser_p50_ns": 86820.0, "ser_p75_ns": 88467.0, "ser_p95_ns": 94557.0, "ser_p99_ns": 96889.00000000001, "ser_ci_low_ns": 86428.28796296298, "ser_ci_high_ns": 88028.13302469136, "deser_mean_ns": 152545.76543209876, "deser_median_ns": 148873.0, "deser_std_ns": 11324.614770789784, "deser_mad_ns": 4999.0, "deser_cv": 0.07423749022932138, "deser_min_ns": 136755.0, "deser_max_ns": 183495.0, "deser_p5_ns": 141067.0, "deser_p25_ns": 145164.0, "deser_p50_ns": 148873.0, "deser_p75_ns": 155461.0, "deser_p95_ns": 179397.0, "deser_p99_ns": 182703.8, "deser_ci_low_ns": 150322.10432098765, "deser_ci_high_ns": 155130.72623456788, "total_mean_ns": 239718.24691358025, "total_median_ns": 234882.0, "total_std_ns": 12917.623186494937, "total_mad_ns": 5572.0, "total_cv": 0.053886691367102356, "total_min_ns": 220863.0, "total_max_ns": 274477.0, "total_p5_ns": 225854.0, "total_p25_ns": 231310.0, "total_p50_ns": 234882.0, "total_p75_ns": 245895.0, "total_p95_ns": 266659.0, "total_p99_ns": 273470.6, "total_ci_low_ns": 237202.74197530866, "total_ci_high_ns": 242541.7962962963, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.45165796142006}, {"serializer": "java-serialization", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "21.0.11", "avg_time_ser_ns": 201637.18181818182, "avg_time_deser_ns": 264722.36363636365, "avg_time_total_ns": 466359.54545454547, "median_size_bytes": 28605.0, "avg_ops_per_sec": 2144.268322041811, "min_ops_per_sec": 1903.1668696711329, "max_ops_per_sec": 2355.8901966697135, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 201637.18181818182, "ser_median_ns": 199451.0, "ser_std_ns": 8891.314534447098, "ser_mad_ns": 5163.5, "ser_cv": 0.04409561001732548, "ser_min_ns": 185146.0, "ser_max_ns": 228431.0, "ser_p5_ns": 190223.3, "ser_p25_ns": 195535.0, "ser_p50_ns": 199451.0, "ser_p75_ns": 206337.0, "ser_p95_ns": 218311.6, "ser_p99_ns": 226045.46, "ser_ci_low_ns": 199827.078125, "ser_ci_high_ns": 203465.55227272728, "deser_mean_ns": 264722.36363636365, "deser_median_ns": 259524.5, "deser_std_ns": 17802.38789044551, "deser_mad_ns": 9671.0, "deser_cv": 0.06724927824722732, "deser_min_ns": 239322.0, "deser_max_ns": 306541.0, "deser_p5_ns": 241881.95, "deser_p25_ns": 251330.5, "deser_p50_ns": 259524.5, "deser_p75_ns": 275692.75, "deser_p95_ns": 302154.6, "deser_p99_ns": 306146.89, "deser_ci_low_ns": 261105.7880681818, "deser_ci_high_ns": 268336.01335227274, "total_mean_ns": 466359.54545454547, "total_median_ns": 463485.0, "total_std_ns": 22862.204130377708, "total_mad_ns": 13924.0, "total_cv": 0.049022700088822375, "total_min_ns": 424468.0, "total_max_ns": 525440.0, "total_p5_ns": 433865.4, "total_p25_ns": 450705.25, "total_p50_ns": 463485.0, "total_p75_ns": 479318.0, "total_p95_ns": 517213.04999999993, "total_p99_ns": 524670.05, "total_ci_low_ns": 461910.375, "total_ci_high_ns": 471090.7315340909, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.5101802714417}, {"serializer": "msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "0.9.8", "avg_time_ser_ns": 183645.4, "avg_time_deser_ns": 272039.0588235294, "avg_time_total_ns": 455684.4588235294, "median_size_bytes": 31959.0, "avg_ops_per_sec": 2194.500998743222, "min_ops_per_sec": 1993.6840090593, "max_ops_per_sec": 2381.201840192782, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 183645.4, "ser_median_ns": 181450.0, "ser_std_ns": 8435.589175798994, "ser_mad_ns": 5140.0, "ser_cv": 0.04593411637753515, "ser_min_ns": 170457.0, "ser_max_ns": 211019.0, "ser_p5_ns": 173652.2, "ser_p25_ns": 178120.0, "ser_p50_ns": 181450.0, "ser_p75_ns": 188033.0, "ser_p95_ns": 201164.6, "ser_p99_ns": 210732.56, "ser_ci_low_ns": 181859.62529411766, "ser_ci_high_ns": 185472.3061764706, "deser_mean_ns": 272039.0588235294, "deser_median_ns": 269827.0, "deser_std_ns": 13488.989754745959, "deser_mad_ns": 8656.0, "deser_cv": 0.049584753796315, "deser_min_ns": 247008.0, "deser_max_ns": 314359.0, "deser_p5_ns": 254453.0, "deser_p25_ns": 262683.0, "deser_p50_ns": 269827.0, "deser_p75_ns": 280531.0, "deser_p95_ns": 296442.4, "deser_p99_ns": 310144.72, "deser_ci_low_ns": 269187.9055882353, "deser_ci_high_ns": 274878.77911764703, "total_mean_ns": 455684.4588235294, "total_median_ns": 456880.0, "total_std_ns": 16603.426772344133, "total_mad_ns": 11410.0, "total_cv": 0.036436236634469155, "total_min_ns": 419956.0, "total_max_ns": 501584.0, "total_p5_ns": 430944.0, "total_p25_ns": 444028.0, "total_p50_ns": 456880.0, "total_p75_ns": 467374.0, "total_p95_ns": 481493.8, "total_p99_ns": 500077.88, "total_ci_low_ns": 452358.8558823529, "total_ci_high_ns": 459407.0867647059, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 31.184133419164606}, {"serializer": "dsl-json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.0.2", "avg_time_ser_ns": 80152.37804878049, "avg_time_deser_ns": 133283.4024390244, "avg_time_total_ns": 213435.78048780488, "median_size_bytes": 44604.0, "avg_ops_per_sec": 4685.250044367032, "min_ops_per_sec": 4277.891854893908, "max_ops_per_sec": 4997.176595223698, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 80152.37804878049, "ser_median_ns": 79490.5, "ser_std_ns": 3875.395698283935, "ser_mad_ns": 2770.0, "ser_cv": 0.04835035207471176, "ser_min_ns": 72696.0, "ser_max_ns": 89645.0, "ser_p5_ns": 74984.5, "ser_p25_ns": 77119.75, "ser_p50_ns": 79490.5, "ser_p75_ns": 82779.25, "ser_p95_ns": 88293.95000000001, "ser_p99_ns": 89340.44, "ser_ci_low_ns": 79307.66341463414, "ser_ci_high_ns": 81014.48079268292, "deser_mean_ns": 133283.4024390244, "deser_median_ns": 131834.5, "deser_std_ns": 6026.242806833089, "deser_mad_ns": 3065.5, "deser_cv": 0.04521375277458141, "deser_min_ns": 122923.0, "deser_max_ns": 152240.0, "deser_p5_ns": 125266.2, "deser_p25_ns": 129295.25, "deser_p50_ns": 131834.5, "deser_p75_ns": 135807.75, "deser_p95_ns": 144520.9, "deser_p99_ns": 149900.72, "deser_ci_low_ns": 132006.6679878049, "deser_ci_high_ns": 134582.7393292683, "total_mean_ns": 213435.78048780488, "total_median_ns": 211327.0, "total_std_ns": 8136.843784050074, "total_mad_ns": 4614.0, "total_cv": 0.03812314770022822, "total_min_ns": 200113.0, "total_max_ns": 233760.0, "total_p5_ns": 201867.05, "total_p25_ns": 207773.5, "total_p50_ns": 211327.0, "total_p75_ns": 219364.25, "total_p95_ns": 228728.5, "total_p99_ns": 233244.03, "total_ci_low_ns": 211685.86554878048, "total_ci_high_ns": 215229.43201219515, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.498454155623282}, {"serializer": "gson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.12.1", "avg_time_ser_ns": 576887.9024390244, "avg_time_deser_ns": 204123.36585365853, "avg_time_total_ns": 781011.268292683, "median_size_bytes": 44604.0, "avg_ops_per_sec": 1280.3912575884262, "min_ops_per_sec": 1140.980718566837, "max_ops_per_sec": 1380.018437046319, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 576887.9024390244, "ser_median_ns": 574959.0, "ser_std_ns": 19696.14045141135, "ser_mad_ns": 11087.0, "ser_cv": 0.03414205839321302, "ser_min_ns": 535407.0, "ser_max_ns": 645282.0, "ser_p5_ns": 548388.0, "ser_p25_ns": 563802.5, "ser_p50_ns": 574959.0, "ser_p75_ns": 585717.5, "ser_p95_ns": 608970.35, "ser_p99_ns": 640372.59, "ser_ci_low_ns": 572770.5219512195, "ser_ci_high_ns": 581247.5225609756, "deser_mean_ns": 204123.36585365853, "deser_median_ns": 200275.5, "deser_std_ns": 12328.391239567987, "deser_mad_ns": 5644.5, "deser_cv": 0.06039676637708658, "deser_min_ns": 182420.0, "deser_max_ns": 238439.0, "deser_p5_ns": 190013.85, "deser_p25_ns": 196169.25, "deser_p50_ns": 200275.5, "deser_p75_ns": 210977.75, "deser_p95_ns": 230938.40000000002, "deser_p99_ns": 234756.74, "deser_ci_low_ns": 201508.91158536586, "deser_ci_high_ns": 206883.34207317073, "total_mean_ns": 781011.268292683, "total_median_ns": 777553.0, "total_std_ns": 26413.881846459735, "total_mad_ns": 14962.5, "total_cv": 0.03382010339518068, "total_min_ns": 724628.0, "total_max_ns": 876439.0, "total_p5_ns": 744892.2, "total_p25_ns": 765375.75, "total_p50_ns": 777553.0, "total_p75_ns": 794557.0, "total_p95_ns": 829156.4500000001, "total_p99_ns": 851578.48, "total_ci_low_ns": 775426.6710365854, "total_ci_high_ns": 786824.8128048781, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 37.23100487143734}, {"serializer": "bson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "5.3.1", "avg_time_ser_ns": 257987.09411764707, "avg_time_deser_ns": 250944.41176470587, "avg_time_total_ns": 508931.50588235294, "median_size_bytes": 52646.0, "avg_ops_per_sec": 1964.900951192369, "min_ops_per_sec": 1687.1059553153116, "max_ops_per_sec": 2199.668290021865, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 257987.09411764707, "ser_median_ns": 255333.0, "ser_std_ns": 21291.419607339438, "ser_mad_ns": 11424.0, "ser_cv": 0.08252901053116302, "ser_min_ns": 219005.0, "ser_max_ns": 336980.0, "ser_p5_ns": 234320.0, "ser_p25_ns": 243271.0, "ser_p50_ns": 255333.0, "ser_p75_ns": 263360.0, "ser_p95_ns": 302976.6, "ser_p99_ns": 315528.0799999999, "ser_ci_low_ns": 253556.82588235295, "ser_ci_high_ns": 262515.6823529412, "deser_mean_ns": 250944.41176470587, "deser_median_ns": 250508.0, "deser_std_ns": 11564.818942537297, "deser_mad_ns": 6861.0, "deser_cv": 0.046085182217091444, "deser_min_ns": 228679.0, "deser_max_ns": 286632.0, "deser_p5_ns": 235249.0, "deser_p25_ns": 243047.0, "deser_p50_ns": 250508.0, "deser_p75_ns": 255751.0, "deser_p95_ns": 276371.8, "deser_p99_ns": 281293.8, "deser_ci_low_ns": 248623.82, "deser_ci_high_ns": 253501.15470588233, "total_mean_ns": 508931.50588235294, "total_median_ns": 505543.0, "total_std_ns": 27101.50102749693, "total_mad_ns": 11854.0, "total_cv": 0.05325176514766969, "total_min_ns": 454614.0, "total_max_ns": 592731.0, "total_p5_ns": 477499.4, "total_p25_ns": 493120.0, "total_p50_ns": 505543.0, "total_p75_ns": 516415.0, "total_p95_ns": 568125.0, "total_p99_ns": 585210.48, "total_ci_low_ns": 503659.4285294117, "total_ci_high_ns": 514525.23294117645, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.25668791861172}, {"serializer": "fastjson2", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.0.57", "avg_time_ser_ns": 51402.942528735635, "avg_time_deser_ns": 78576.91954022988, "avg_time_total_ns": 129979.86206896552, "median_size_bytes": 44604.0, "avg_ops_per_sec": 7693.4994704750015, "min_ops_per_sec": 6329.153981987228, "max_ops_per_sec": 8605.4816918377, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 51402.942528735635, "ser_median_ns": 50190.0, "ser_std_ns": 4604.566619397812, "ser_mad_ns": 2129.0, "ser_cv": 0.08957788003719311, "ser_min_ns": 42531.0, "ser_max_ns": 65961.0, "ser_p5_ns": 46350.7, "ser_p25_ns": 48296.0, "ser_p50_ns": 50190.0, "ser_p75_ns": 53294.0, "ser_p95_ns": 60865.5, "ser_p99_ns": 62957.880000000005, "ser_ci_low_ns": 50505.4683908046, "ser_ci_high_ns": 52375.534770114944, "deser_mean_ns": 78576.91954022988, "deser_median_ns": 77587.0, "deser_std_ns": 4385.516588643224, "deser_mad_ns": 2276.0, "deser_cv": 0.05581176526521791, "deser_min_ns": 70601.0, "deser_max_ns": 92573.0, "deser_p5_ns": 72840.1, "deser_p25_ns": 75677.5, "deser_p50_ns": 77587.0, "deser_p75_ns": 80669.5, "deser_p95_ns": 87221.40000000001, "deser_p99_ns": 92112.9, "deser_ci_low_ns": 77723.38563218391, "deser_ci_high_ns": 79567.33333333333, "total_mean_ns": 129979.86206896552, "total_median_ns": 127858.0, "total_std_ns": 8568.483504223437, "total_mad_ns": 4243.0, "total_cv": 0.0659216233025168, "total_min_ns": 116205.0, "total_max_ns": 157999.0, "total_p5_ns": 118826.6, "total_p25_ns": 124171.0, "total_p50_ns": 127858.0, "total_p75_ns": 133698.5, "total_p95_ns": 146666.4, "total_p99_ns": 154431.72, "total_ci_low_ns": 128251.49109195401, "total_ci_high_ns": 131784.53850574713, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.683787113216463}, {"serializer": "protostuff", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "1.8.0", "avg_time_ser_ns": 59271.80487804878, "avg_time_deser_ns": 56064.92682926829, "avg_time_total_ns": 115336.73170731707, "median_size_bytes": 16108.0, "avg_ops_per_sec": 8670.26475605047, "min_ops_per_sec": 7685.9815382723455, "max_ops_per_sec": 9326.705154869938, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 59271.80487804878, "ser_median_ns": 58498.5, "ser_std_ns": 2737.9536173646384, "ser_mad_ns": 1350.0, "ser_cv": 0.04619318785715998, "ser_min_ns": 55339.0, "ser_max_ns": 69327.0, "ser_p5_ns": 55831.2, "ser_p25_ns": 57560.75, "ser_p50_ns": 58498.5, "ser_p75_ns": 60845.75, "ser_p95_ns": 64406.8, "ser_p99_ns": 66651.56999999999, "ser_ci_low_ns": 58696.87195121951, "ser_ci_high_ns": 59887.69207317073, "deser_mean_ns": 56064.92682926829, "deser_median_ns": 55608.0, "deser_std_ns": 2332.2550830382434, "deser_mad_ns": 1064.5, "deser_cv": 0.04159918178686905, "deser_min_ns": 51520.0, "deser_max_ns": 64083.0, "deser_p5_ns": 53197.05, "deser_p25_ns": 54799.75, "deser_p50_ns": 55608.0, "deser_p75_ns": 56908.0, "deser_p95_ns": 60385.6, "deser_p99_ns": 62748.92999999999, "deser_ci_low_ns": 55570.987804878045, "deser_ci_high_ns": 56611.34542682926, "total_mean_ns": 115336.73170731707, "total_median_ns": 114071.0, "total_std_ns": 4624.674758130393, "total_mad_ns": 2297.0, "total_cv": 0.04009715456361418, "total_min_ns": 107219.0, "total_max_ns": 130107.0, "total_p5_ns": 110003.0, "total_p25_ns": 112219.0, "total_p50_ns": 114071.0, "total_p75_ns": 117961.5, "total_p95_ns": 124198.1, "total_p99_ns": 127665.65999999999, "total_ci_low_ns": 114392.5493902439, "total_ci_high_ns": 116346.53231707316, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.812974879371115}, {"serializer": "jsoniter", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "0.9.23", "avg_time_ser_ns": 54136.75555555556, "avg_time_deser_ns": 72087.14444444445, "avg_time_total_ns": 126223.9, "median_size_bytes": 44604.0, "avg_ops_per_sec": 7922.429904320815, "min_ops_per_sec": 5746.99432196961, "max_ops_per_sec": 9266.037193873297, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 54136.75555555556, "ser_median_ns": 52091.0, "ser_std_ns": 5505.328867522405, "ser_mad_ns": 1995.0, "ser_cv": 0.10169299602509045, "ser_min_ns": 48536.0, "ser_max_ns": 69710.0, "ser_p5_ns": 49446.45, "ser_p25_ns": 50361.5, "ser_p50_ns": 52091.0, "ser_p75_ns": 56177.25, "ser_p95_ns": 67510.85, "ser_p99_ns": 69194.69, "ser_ci_low_ns": 53008.245, "ser_ci_high_ns": 55320.928611111114, "deser_mean_ns": 72087.14444444445, "deser_median_ns": 67344.5, "deser_std_ns": 11121.033923076902, "deser_mad_ns": 5188.5, "deser_cv": 0.1542720828905572, "deser_min_ns": 59148.0, "deser_max_ns": 105312.0, "deser_p5_ns": 61629.05, "deser_p25_ns": 64106.0, "deser_p50_ns": 67344.5, "deser_p75_ns": 75940.25, "deser_p95_ns": 97602.09999999999, "deser_p99_ns": 103418.08, "deser_ci_low_ns": 69882.27916666666, "deser_ci_high_ns": 74441.24555555555, "total_mean_ns": 126223.9, "total_median_ns": 120241.5, "total_std_ns": 15735.695064713947, "total_mad_ns": 7216.0, "total_cv": 0.12466494114596323, "total_min_ns": 107921.0, "total_max_ns": 174004.0, "total_p5_ns": 111441.6, "total_p25_ns": 115048.75, "total_p50_ns": 120241.5, "total_p75_ns": 130576.5, "total_p95_ns": 163468.65, "total_p99_ns": 172500.79, "total_ci_low_ns": 123083.47111111111, "total_ci_high_ns": 129390.78055555555, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.810272854583329}, {"serializer": "jackson-cbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 89365.5243902439, "avg_time_deser_ns": 185326.60975609755, "avg_time_total_ns": 274692.1341463415, "median_size_bytes": 33572.0, "avg_ops_per_sec": 3640.439152390337, "min_ops_per_sec": 3209.726755961265, "max_ops_per_sec": 3917.2519693984277, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 89365.5243902439, "ser_median_ns": 88167.5, "ser_std_ns": 4551.103847177389, "ser_mad_ns": 2507.0, "ser_cv": 0.050926840951590016, "ser_min_ns": 81683.0, "ser_max_ns": 103840.0, "ser_p5_ns": 83795.4, "ser_p25_ns": 86580.25, "ser_p50_ns": 88167.5, "ser_p75_ns": 91101.25, "ser_p95_ns": 98029.2, "ser_p99_ns": 101983.48, "ser_ci_low_ns": 88408.80152439023, "ser_ci_high_ns": 90328.60213414635, "deser_mean_ns": 185326.60975609755, "deser_median_ns": 182477.5, "deser_std_ns": 9432.81482903783, "deser_mad_ns": 4626.0, "deser_cv": 0.05089832939507207, "deser_min_ns": 171580.0, "deser_max_ns": 211447.0, "deser_p5_ns": 175124.45, "deser_p25_ns": 178907.25, "deser_p50_ns": 182477.5, "deser_p75_ns": 189025.75, "deser_p95_ns": 206915.4, "deser_p99_ns": 211183.75, "deser_ci_low_ns": 183288.19390243903, "deser_ci_high_ns": 187457.51585365855, "total_mean_ns": 274692.1341463415, "total_median_ns": 272113.0, "total_std_ns": 12504.702078346463, "total_mad_ns": 7325.0, "total_cv": 0.04552260703498928, "total_min_ns": 255281.0, "total_max_ns": 311553.0, "total_p5_ns": 258750.95, "total_p25_ns": 265277.0, "total_p50_ns": 272113.0, "total_p75_ns": 280299.25, "total_p95_ns": 301031.7, "total_p99_ns": 307609.11, "total_ci_low_ns": 272023.5085365854, "total_ci_high_ns": 277474.58841463417, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.57861869117863}, {"serializer": "hessian", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "4.0.66", "avg_time_ser_ns": 91725.5487804878, "avg_time_deser_ns": 67839.37804878049, "avg_time_total_ns": 159564.92682926828, "median_size_bytes": 13309.0, "avg_ops_per_sec": 6267.041384789922, "min_ops_per_sec": 5403.477678233711, "max_ops_per_sec": 6774.654661978606, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 91725.5487804878, "ser_median_ns": 90703.5, "ser_std_ns": 4204.015382595223, "ser_mad_ns": 2081.0, "ser_cv": 0.04583254544114013, "ser_min_ns": 85004.0, "ser_max_ns": 105074.0, "ser_p5_ns": 86490.85, "ser_p25_ns": 89019.25, "ser_p50_ns": 90703.5, "ser_p75_ns": 93455.0, "ser_p95_ns": 99762.90000000001, "ser_p99_ns": 105056.99, "ser_ci_low_ns": 90836.55213414635, "ser_ci_high_ns": 92658.46707317073, "deser_mean_ns": 67839.37804878049, "deser_median_ns": 66908.5, "deser_std_ns": 4158.007006093432, "deser_mad_ns": 2534.0, "deser_cv": 0.061291938777852314, "deser_min_ns": 60188.0, "deser_max_ns": 83101.0, "deser_p5_ns": 62646.6, "deser_p25_ns": 64636.75, "deser_p50_ns": 66908.5, "deser_p75_ns": 69966.25, "deser_p95_ns": 76313.15000000001, "deser_p99_ns": 79226.76999999999, "deser_ci_low_ns": 67006.10762195122, "deser_ci_high_ns": 68786.83384146342, "total_mean_ns": 159564.92682926828, "total_median_ns": 158625.5, "total_std_ns": 7291.68362034937, "total_mad_ns": 4339.0, "total_cv": 0.045697283013524305, "total_min_ns": 147609.0, "total_max_ns": 185066.0, "total_p5_ns": 149902.9, "total_p25_ns": 154276.75, "total_p50_ns": 158625.5, "total_p75_ns": 162905.75, "total_p95_ns": 171353.75, "total_p99_ns": 182196.16999999998, "total_ci_low_ns": 158033.65792682927, "total_ci_high_ns": 161156.0042682927, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.602852473222976}, {"serializer": "msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "0.9.8", "avg_time_ser_ns": 8725.175824175823, "avg_time_deser_ns": 16515.20879120879, "avg_time_total_ns": 25240.384615384617, "median_size_bytes": 346.0, "avg_ops_per_sec": 39619.04761904762, "min_ops_per_sec": 23996.35255441173, "max_ops_per_sec": 68198.86789879289, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 8725.175824175823, "ser_median_ns": 8168.0, "ser_std_ns": 2071.591211248046, "ser_mad_ns": 1084.0, "ser_cv": 0.23742687287837294, "ser_min_ns": 5387.0, "ser_max_ns": 14880.0, "ser_p5_ns": 6206.0, "ser_p25_ns": 7305.5, "ser_p50_ns": 8168.0, "ser_p75_ns": 9930.0, "ser_p95_ns": 13276.0, "ser_p99_ns": 14578.499999999998, "ser_ci_low_ns": 8303.52142857143, "ser_ci_high_ns": 9179.497527472526, "deser_mean_ns": 16515.20879120879, "deser_median_ns": 15703.0, "deser_std_ns": 3545.1112300885056, "deser_mad_ns": 2185.0, "deser_cv": 0.2146573667282731, "deser_min_ns": 9276.0, "deser_max_ns": 27128.0, "deser_p5_ns": 12252.5, "deser_p25_ns": 14033.0, "deser_p50_ns": 15703.0, "deser_p75_ns": 18399.0, "deser_p95_ns": 23313.5, "deser_p99_ns": 26453.899999999994, "deser_ci_low_ns": 15832.116208791209, "deser_ci_high_ns": 17244.700274725274, "total_mean_ns": 25240.384615384617, "total_median_ns": 24151.0, "total_std_ns": 5426.464799212654, "total_mad_ns": 2881.0, "total_cv": 0.2149913672830918, "total_min_ns": 14663.0, "total_max_ns": 41673.0, "total_p5_ns": 18726.0, "total_p25_ns": 21478.5, "total_p50_ns": 24151.0, "total_p75_ns": 28402.5, "total_p95_ns": 35727.0, "total_p99_ns": 38895.599999999984, "total_ci_low_ns": 24114.30054945055, "total_ci_high_ns": 26418.73269230769, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bson", "effect_vs_fastest_cliffs_delta": 0.9991546914623838, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.1536419084998477}, {"serializer": "jackson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 13761.386363636364, "avg_time_deser_ns": 23484.863636363636, "avg_time_total_ns": 37246.25, "median_size_bytes": 663.0, "avg_ops_per_sec": 26848.34043695674, "min_ops_per_sec": 16873.934832863677, "max_ops_per_sec": 56433.4085778781, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 13761.386363636364, "ser_median_ns": 13612.5, "ser_std_ns": 2737.7544596240223, "ser_mad_ns": 1673.0, "ser_cv": 0.19894466932912908, "ser_min_ns": 6632.0, "ser_max_ns": 20705.0, "ser_p5_ns": 10153.35, "ser_p25_ns": 11950.75, "ser_p50_ns": 13612.5, "ser_p75_ns": 15277.25, "ser_p95_ns": 19366.699999999997, "ser_p99_ns": 20212.579999999998, "ser_ci_low_ns": 13202.327272727272, "ser_ci_high_ns": 14331.438352272728, "deser_mean_ns": 23484.863636363636, "deser_median_ns": 22287.0, "deser_std_ns": 5730.207575189092, "deser_mad_ns": 2856.0, "deser_cv": 0.24399577804303355, "deser_min_ns": 11088.0, "deser_max_ns": 39124.0, "deser_p5_ns": 15176.15, "deser_p25_ns": 19912.75, "deser_p50_ns": 22287.0, "deser_p75_ns": 27060.5, "deser_p95_ns": 34170.5, "deser_p99_ns": 36876.789999999986, "deser_ci_low_ns": 22302.44147727273, "deser_ci_high_ns": 24661.110795454544, "total_mean_ns": 37246.25, "total_median_ns": 36413.0, "total_std_ns": 7924.725580295415, "total_mad_ns": 4832.0, "total_cv": 0.21276573024923087, "total_min_ns": 17720.0, "total_max_ns": 59263.0, "total_p5_ns": 26048.45, "total_p25_ns": 31866.0, "total_p50_ns": 36413.0, "total_p75_ns": 41271.25, "total_p95_ns": 52281.79999999999, "total_p99_ns": 56710.419999999984, "total_ci_low_ns": 35650.475, "total_ci_high_ns": 38874.39289772727, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.248996289290813}, {"serializer": "java-serialization", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "21.0.11", "avg_time_ser_ns": 13207.214285714286, "avg_time_deser_ns": 32182.190476190477, "avg_time_total_ns": 45389.40476190476, "median_size_bytes": 493.0, "avg_ops_per_sec": 22031.57334284538, "min_ops_per_sec": 15168.752370117558, "max_ops_per_sec": 30988.534242330337, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 13207.214285714286, "ser_median_ns": 11718.5, "ser_std_ns": 3477.9221918849057, "ser_mad_ns": 743.0, "ser_cv": 0.2633350316460629, "ser_min_ns": 9423.0, "ser_max_ns": 25916.0, "ser_p5_ns": 10245.2, "ser_p25_ns": 11194.25, "ser_p50_ns": 11718.5, "ser_p75_ns": 13753.25, "ser_p95_ns": 21660.249999999993, "ser_p99_ns": 23855.940000000006, "ser_ci_low_ns": 12515.146428571428, "ser_ci_high_ns": 14040.215476190477, "deser_mean_ns": 32182.190476190477, "deser_median_ns": 31715.5, "deser_std_ns": 4725.228372057903, "deser_mad_ns": 2789.5, "deser_cv": 0.1468274316365691, "deser_min_ns": 22847.0, "deser_max_ns": 45080.0, "deser_p5_ns": 25986.7, "deser_p25_ns": 28799.75, "deser_p50_ns": 31715.5, "deser_p75_ns": 34193.0, "deser_p95_ns": 41799.2, "deser_p99_ns": 44837.64, "deser_ci_low_ns": 31214.005357142858, "deser_ci_high_ns": 33219.708928571425, "total_mean_ns": 45389.40476190476, "total_median_ns": 44148.5, "total_std_ns": 7337.286288210224, "total_mad_ns": 4381.5, "total_cv": 0.16165196099615725, "total_min_ns": 32270.0, "total_max_ns": 65925.0, "total_p5_ns": 36638.05, "total_p25_ns": 39737.5, "total_p50_ns": 44148.5, "total_p75_ns": 48316.75, "total_p95_ns": 62632.4, "total_p99_ns": 63947.94, "total_ci_low_ns": 43873.43660714285, "total_ci_high_ns": 47014.42946428571, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.145893680451002}, {"serializer": "jackson-smile", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 8630.975903614459, "avg_time_deser_ns": 11981.024096385541, "avg_time_total_ns": 20612.0, "median_size_bytes": 414.0, "avg_ops_per_sec": 48515.42790607413, "min_ops_per_sec": 28762.90735467541, "max_ops_per_sec": 110840.16847705608, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 8630.975903614459, "ser_median_ns": 8302.0, "ser_std_ns": 1992.9083538209568, "ser_mad_ns": 864.0, "ser_cv": 0.23090185583606734, "ser_min_ns": 4394.0, "ser_max_ns": 14853.0, "ser_p5_ns": 6214.9, "ser_p25_ns": 7452.0, "ser_p50_ns": 8302.0, "ser_p75_ns": 9209.0, "ser_p95_ns": 13305.299999999996, "ser_p99_ns": 14097.779999999993, "ser_ci_low_ns": 8214.346987951807, "ser_ci_high_ns": 9061.319578313252, "deser_mean_ns": 11981.024096385541, "deser_median_ns": 11728.0, "deser_std_ns": 3187.9372563825336, "deser_mad_ns": 1898.0, "deser_cv": 0.2660822005478043, "deser_min_ns": 4628.0, "deser_max_ns": 20298.0, "deser_p5_ns": 7105.0, "deser_p25_ns": 9823.0, "deser_p50_ns": 11728.0, "deser_p75_ns": 13527.5, "deser_p95_ns": 18031.6, "deser_p99_ns": 19983.119999999995, "deser_ci_low_ns": 11303.196084337349, "deser_ci_high_ns": 12680.21656626506, "total_mean_ns": 20612.0, "total_median_ns": 20011.0, "total_std_ns": 4916.627028915597, "total_mad_ns": 3148.0, "total_cv": 0.2385322641624101, "total_min_ns": 9022.0, "total_max_ns": 34767.0, "total_p5_ns": 13378.300000000001, "total_p25_ns": 17472.0, "total_p50_ns": 20011.0, "total_p75_ns": 23434.5, "total_p95_ns": 29149.6, "total_p99_ns": 33177.01999999998, "total_ci_low_ns": 19564.649999999998, "total_ci_high_ns": 21679.324698795182, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bson", "effect_vs_fastest_cliffs_delta": 0.9218412109978376, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.2634813680322603}, {"serializer": "jsoniter", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "0.9.23", "avg_time_ser_ns": 6668.5952380952385, "avg_time_deser_ns": 9139.595238095239, "avg_time_total_ns": 15808.190476190477, "median_size_bytes": 387.0, "avg_ops_per_sec": 63258.34708951357, "min_ops_per_sec": 54668.70763175158, "max_ops_per_sec": 78388.33581563063, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 6668.5952380952385, "ser_median_ns": 6604.0, "ser_std_ns": 568.848067018378, "ser_mad_ns": 287.5, "ser_cv": 0.08530253324849552, "ser_min_ns": 5343.0, "ser_max_ns": 8433.0, "ser_p5_ns": 5800.05, "ser_p25_ns": 6333.75, "ser_p50_ns": 6604.0, "ser_p75_ns": 6894.0, "ser_p95_ns": 7711.2, "ser_p99_ns": 8006.380000000001, "ser_ci_low_ns": 6548.833035714286, "ser_ci_high_ns": 6796.436607142858, "deser_mean_ns": 9139.595238095239, "deser_median_ns": 9031.5, "deser_std_ns": 645.9170769831812, "deser_mad_ns": 385.5, "deser_cv": 0.07067239414398786, "deser_min_ns": 7414.0, "deser_max_ns": 10702.0, "deser_p5_ns": 8228.55, "deser_p25_ns": 8764.25, "deser_p50_ns": 9031.5, "deser_p75_ns": 9511.0, "deser_p95_ns": 10381.55, "deser_p99_ns": 10576.67, "deser_ci_low_ns": 9007.802976190475, "deser_ci_high_ns": 9277.61011904762, "total_mean_ns": 15808.190476190477, "total_median_ns": 15765.0, "total_std_ns": 1094.8094456652457, "total_mad_ns": 639.5, "total_cv": 0.06925583591077006, "total_min_ns": 12757.0, "total_max_ns": 18292.0, "total_p5_ns": 13866.75, "total_p25_ns": 15179.25, "total_p50_ns": 15765.0, "total_p75_ns": 16450.75, "total_p95_ns": 17493.2, "total_p99_ns": 18143.43, "total_ci_low_ns": 15573.672916666666, "total_ci_high_ns": 16035.056845238094, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bson", "effect_vs_fastest_cliffs_delta": 0.9621489621489622, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.011144179780551}, {"serializer": "fastjson2", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.0.57", "avg_time_ser_ns": 15144.04938271605, "avg_time_deser_ns": 15262.641975308641, "avg_time_total_ns": 30406.69135802469, "median_size_bytes": 663.0, "avg_ops_per_sec": 32887.49795975707, "min_ops_per_sec": 26616.98163428267, "max_ops_per_sec": 38725.167486349375, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 15144.04938271605, "ser_median_ns": 14892.0, "ser_std_ns": 1363.8547017666008, "ser_mad_ns": 599.0, "ser_cv": 0.09005878594949461, "ser_min_ns": 12451.0, "ser_max_ns": 19217.0, "ser_p5_ns": 13509.0, "ser_p25_ns": 14454.0, "ser_p50_ns": 14892.0, "ser_p75_ns": 15545.0, "ser_p95_ns": 17933.0, "ser_p99_ns": 19089.0, "ser_ci_low_ns": 14858.486728395063, "ser_ci_high_ns": 15428.496913580246, "deser_mean_ns": 15262.641975308641, "deser_median_ns": 14838.0, "deser_std_ns": 1560.8014152082415, "deser_mad_ns": 548.0, "deser_cv": 0.10226285971545755, "deser_min_ns": 12419.0, "deser_max_ns": 19868.0, "deser_p5_ns": 13239.0, "deser_p25_ns": 14390.0, "deser_p50_ns": 14838.0, "deser_p75_ns": 15839.0, "deser_p95_ns": 18415.0, "deser_p99_ns": 19573.600000000002, "deser_ci_low_ns": 14930.406790123456, "deser_ci_high_ns": 15610.962345679012, "total_mean_ns": 30406.69135802469, "total_median_ns": 29928.0, "total_std_ns": 2579.004922649312, "total_mad_ns": 1114.0, "total_cv": 0.08481701913183269, "total_min_ns": 25823.0, "total_max_ns": 37570.0, "total_p5_ns": 26610.0, "total_p25_ns": 28985.0, "total_p50_ns": 29928.0, "total_p75_ns": 31172.0, "total_p95_ns": 35569.0, "total_p99_ns": 37478.8, "total_ci_low_ns": 29860.490432098766, "total_ci_high_ns": 30985.12160493827, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.894834501098245}, {"serializer": "hessian", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "4.0.66", "avg_time_ser_ns": 9740.97435897436, "avg_time_deser_ns": 9080.205128205129, "avg_time_total_ns": 18821.17948717949, "median_size_bytes": 384.0, "avg_ops_per_sec": 53131.63293943266, "min_ops_per_sec": 37531.902116799276, "max_ops_per_sec": 70308.65499542994, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 9740.97435897436, "ser_median_ns": 9537.0, "ser_std_ns": 1929.0530209860895, "ser_mad_ns": 1322.0, "ser_cv": 0.19803491415710925, "ser_min_ns": 6319.0, "ser_max_ns": 16705.0, "ser_p5_ns": 7188.35, "ser_p25_ns": 8195.0, "ser_p50_ns": 9537.0, "ser_p75_ns": 10648.75, "ser_p95_ns": 13020.8, "ser_p99_ns": 16289.200000000003, "ser_ci_low_ns": 9346.067628205128, "ser_ci_high_ns": 10190.433012820513, "deser_mean_ns": 9080.205128205129, "deser_median_ns": 8926.0, "deser_std_ns": 900.005373129334, "deser_mad_ns": 395.5, "deser_cv": 0.09911729530577651, "deser_min_ns": 7335.0, "deser_max_ns": 11647.0, "deser_p5_ns": 7760.35, "deser_p25_ns": 8625.75, "deser_p50_ns": 8926.0, "deser_p75_ns": 9430.5, "deser_p95_ns": 11186.5, "deser_p99_ns": 11370.570000000002, "deser_ci_low_ns": 8886.278846153846, "deser_ci_high_ns": 9283.226282051282, "total_mean_ns": 18821.17948717949, "total_median_ns": 18518.0, "total_std_ns": 2495.7546850372632, "total_mad_ns": 1410.5, "total_cv": 0.13260352183226923, "total_min_ns": 14223.0, "total_max_ns": 26644.0, "total_p5_ns": 16094.15, "total_p25_ns": 17007.0, "total_p50_ns": 18518.0, "total_p75_ns": 19733.5, "total_p95_ns": 24093.55, "total_p99_ns": 25840.120000000003, "total_ci_low_ns": 18293.133333333335, "total_ci_high_ns": 19380.86378205128, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bson", "effect_vs_fastest_cliffs_delta": 0.997370151216305, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.2892781761147223}, {"serializer": "dsl-json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.0.2", "avg_time_ser_ns": 17502.717647058824, "avg_time_deser_ns": 15870.552941176471, "avg_time_total_ns": 33373.2705882353, "median_size_bytes": 663.0, "avg_ops_per_sec": 29964.099483630434, "min_ops_per_sec": 22221.234611795033, "max_ops_per_sec": 46829.63379226375, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 17502.717647058824, "ser_median_ns": 17035.0, "ser_std_ns": 2521.4539674171965, "ser_mad_ns": 1177.0, "ser_cv": 0.14406071207124252, "ser_min_ns": 11932.0, "ser_max_ns": 24007.0, "ser_p5_ns": 13853.2, "ser_p25_ns": 16108.0, "ser_p50_ns": 17035.0, "ser_p75_ns": 18329.0, "ser_p95_ns": 22922.399999999998, "ser_p99_ns": 23986.84, "ser_ci_low_ns": 16960.590588235296, "ser_ci_high_ns": 18055.938235294117, "deser_mean_ns": 15870.552941176471, "deser_median_ns": 16022.0, "deser_std_ns": 2860.96072569156, "deser_mad_ns": 1673.0, "deser_cv": 0.18026849702688932, "deser_min_ns": 9422.0, "deser_max_ns": 22382.0, "deser_p5_ns": 11378.2, "deser_p25_ns": 14122.0, "deser_p50_ns": 16022.0, "deser_p75_ns": 17136.0, "deser_p95_ns": 21572.0, "deser_p99_ns": 22224.079999999998, "deser_ci_low_ns": 15298.163823529412, "deser_ci_high_ns": 16486.80176470588, "total_mean_ns": 33373.2705882353, "total_median_ns": 33026.0, "total_std_ns": 4837.629211731308, "total_mad_ns": 2760.0, "total_cv": 0.1449552029652336, "total_min_ns": 21354.0, "total_max_ns": 45002.0, "total_p5_ns": 26822.2, "total_p25_ns": 30427.0, "total_p50_ns": 33026.0, "total_p75_ns": 35932.0, "total_p95_ns": 41913.0, "total_p99_ns": 44720.6, "total_ci_low_ns": 32390.50617647059, "total_ci_high_ns": 34395.82411764706, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.826299042448211}, {"serializer": "moshi", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "1.15.2", "avg_time_ser_ns": 15561.101123595505, "avg_time_deser_ns": 27138.20224719101, "avg_time_total_ns": 42699.30337078652, "median_size_bytes": 663.0, "avg_ops_per_sec": 23419.585825940376, "min_ops_per_sec": 16713.185031671484, "max_ops_per_sec": 32757.886461165526, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 15561.101123595505, "ser_median_ns": 15142.0, "ser_std_ns": 2481.0619749915, "ser_mad_ns": 1203.0, "ser_cv": 0.15944000076122072, "ser_min_ns": 10804.0, "ser_max_ns": 22871.0, "ser_p5_ns": 12304.0, "ser_p25_ns": 13963.0, "ser_p50_ns": 15142.0, "ser_p75_ns": 16602.0, "ser_p95_ns": 20619.6, "ser_p99_ns": 22360.600000000002, "ser_ci_low_ns": 15036.170505617978, "ser_ci_high_ns": 16105.707584269663, "deser_mean_ns": 27138.20224719101, "deser_median_ns": 26744.0, "deser_std_ns": 5123.983471648026, "deser_mad_ns": 4116.0, "deser_cv": 0.18881071874163638, "deser_min_ns": 19408.0, "deser_max_ns": 41728.0, "deser_p5_ns": 21083.2, "deser_p25_ns": 22627.0, "deser_p50_ns": 26744.0, "deser_p75_ns": 30244.0, "deser_p95_ns": 37546.6, "deser_p99_ns": 39052.80000000002, "deser_ci_low_ns": 26056.20702247191, "deser_ci_high_ns": 28217.315168539328, "total_mean_ns": 42699.30337078652, "total_median_ns": 42298.0, "total_std_ns": 6698.524297126424, "total_mad_ns": 4781.0, "total_cv": 0.1568766646836992, "total_min_ns": 30527.0, "total_max_ns": 59833.0, "total_p5_ns": 34753.0, "total_p25_ns": 37072.0, "total_p50_ns": 42298.0, "total_p75_ns": 45711.0, "total_p95_ns": 56518.59999999999, "total_p99_ns": 59517.08, "total_ci_low_ns": 41354.394101123595, "total_ci_high_ns": 44038.683426966294, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.089885893468288}, {"serializer": "protostuff", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "1.8.0", "avg_time_ser_ns": 6981.848101265823, "avg_time_deser_ns": 6754.683544303797, "avg_time_total_ns": 13736.531645569621, "median_size_bytes": 324.0, "avg_ops_per_sec": 72798.58015123675, "min_ops_per_sec": 46418.790326324095, "max_ops_per_sec": 130684.78829064297, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 6981.848101265823, "ser_median_ns": 6780.0, "ser_std_ns": 1355.912220975214, "ser_mad_ns": 630.0, "ser_cv": 0.19420534524797015, "ser_min_ns": 3514.0, "ser_max_ns": 11171.0, "ser_p5_ns": 5406.2, "ser_p25_ns": 6208.5, "ser_p50_ns": 6780.0, "ser_p75_ns": 7450.5, "ser_p95_ns": 9794.3, "ser_p99_ns": 11151.5, "ser_ci_low_ns": 6686.930696202532, "ser_ci_high_ns": 7285.938924050633, "deser_mean_ns": 6754.683544303797, "deser_median_ns": 6552.0, "deser_std_ns": 1079.2960971107784, "deser_mad_ns": 464.0, "deser_cv": 0.1597848500276442, "deser_min_ns": 4138.0, "deser_max_ns": 10397.0, "deser_p5_ns": 5735.6, "deser_p25_ns": 6130.0, "deser_p50_ns": 6552.0, "deser_p75_ns": 7055.0, "deser_p95_ns": 8483.599999999993, "deser_p99_ns": 10326.02, "deser_ci_low_ns": 6532.204746835443, "deser_ci_high_ns": 6995.442721518987, "total_mean_ns": 13736.531645569621, "total_median_ns": 13341.0, "total_std_ns": 2300.7907215778096, "total_mad_ns": 1127.0, "total_cv": 0.167494297756004, "total_min_ns": 7652.0, "total_max_ns": 21543.0, "total_p5_ns": 11169.7, "total_p25_ns": 12340.0, "total_p50_ns": 13341.0, "total_p75_ns": 14515.5, "total_p95_ns": 17692.7, "total_p99_ns": 21399.48, "total_ci_low_ns": 13220.638924050634, "total_ci_high_ns": 14262.594303797467, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bson", "effect_vs_fastest_cliffs_delta": 0.4339500162284972, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.7436629298478398}, {"serializer": "bson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "5.3.1", "avg_time_ser_ns": 4816.01282051282, "avg_time_deser_ns": 7551.25641025641, "avg_time_total_ns": 12367.26923076923, "median_size_bytes": 463.0, "avg_ops_per_sec": 80858.59386905262, "min_ops_per_sec": 63107.40880979427, "max_ops_per_sec": 103348.49111202976, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 4816.01282051282, "ser_median_ns": 4847.5, "ser_std_ns": 370.3308276547092, "ser_mad_ns": 207.5, "ser_cv": 0.07689573127325594, "ser_min_ns": 3931.0, "ser_max_ns": 5727.0, "ser_p5_ns": 4150.7, "ser_p25_ns": 4603.5, "ser_p50_ns": 4847.5, "ser_p75_ns": 5040.25, "ser_p95_ns": 5444.75, "ser_p99_ns": 5696.2, "ser_ci_low_ns": 4733.77467948718, "ser_ci_high_ns": 4898.425961538462, "deser_mean_ns": 7551.25641025641, "deser_median_ns": 7514.5, "deser_std_ns": 887.4662376734807, "deser_mad_ns": 587.0, "deser_cv": 0.11752563937149446, "deser_min_ns": 5745.0, "deser_max_ns": 10363.0, "deser_p5_ns": 6062.7, "deser_p25_ns": 6966.0, "deser_p50_ns": 7514.5, "deser_p75_ns": 8140.25, "deser_p95_ns": 9073.65, "deser_p99_ns": 9967.990000000002, "deser_ci_low_ns": 7358.9391025641025, "deser_ci_high_ns": 7753.207051282051, "total_mean_ns": 12367.26923076923, "total_median_ns": 12282.0, "total_std_ns": 1181.5190604513286, "total_mad_ns": 701.5, "total_cv": 0.09553596985757862, "total_min_ns": 9676.0, "total_max_ns": 15846.0, "total_p5_ns": 10240.05, "total_p25_ns": 11717.0, "total_p50_ns": 12282.0, "total_p75_ns": 13171.5, "total_p95_ns": 14369.0, "total_p99_ns": 15183.030000000004, "total_ci_low_ns": 12118.38814102564, "total_ci_high_ns": 12613.428205128204, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bson", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "protobuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "4.28.3", "avg_time_ser_ns": 6468.9625, "avg_time_deser_ns": 14281.3875, "avg_time_total_ns": 20750.35, "median_size_bytes": 291.0, "avg_ops_per_sec": 48191.95820793384, "min_ops_per_sec": 36159.82643283312, "max_ops_per_sec": 60934.73889464384, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 6468.9625, "ser_median_ns": 6347.0, "ser_std_ns": 558.6926295130014, "ser_mad_ns": 191.0, "ser_cv": 0.08636510561206708, "ser_min_ns": 5163.0, "ser_max_ns": 8269.0, "ser_p5_ns": 5824.4, "ser_p25_ns": 6179.5, "ser_p50_ns": 6347.0, "ser_p75_ns": 6601.75, "ser_p95_ns": 7834.8, "ser_p99_ns": 8074.659999999998, "ser_ci_low_ns": 6344.681875, "ser_ci_high_ns": 6592.025, "deser_mean_ns": 14281.3875, "deser_median_ns": 13728.5, "deser_std_ns": 1758.61063179777, "deser_mad_ns": 653.5, "deser_cv": 0.12314004026553933, "deser_min_ns": 11057.0, "deser_max_ns": 20386.0, "deser_p5_ns": 12526.95, "deser_p25_ns": 13252.75, "deser_p50_ns": 13728.5, "deser_p75_ns": 14921.0, "deser_p95_ns": 17727.649999999998, "deser_p99_ns": 20235.11, "deser_ci_low_ns": 13914.374062500001, "deser_ci_high_ns": 14663.78875, "total_mean_ns": 20750.35, "total_median_ns": 20280.5, "total_std_ns": 2087.017956774386, "total_mad_ns": 814.5, "total_cv": 0.1005774821520787, "total_min_ns": 16411.0, "total_max_ns": 27655.0, "total_p5_ns": 18421.3, "total_p25_ns": 19552.25, "total_p50_ns": 20280.5, "total_p75_ns": 21445.5, "total_p95_ns": 25255.6, "total_p99_ns": 27131.229999999996, "total_ci_low_ns": 20297.2609375, "total_ci_high_ns": 21199.2503125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.903418125588176}, {"serializer": "fory", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "1.3.0", "avg_time_ser_ns": 9849.87951807229, "avg_time_deser_ns": 6941.807228915663, "avg_time_total_ns": 16791.68674698795, "median_size_bytes": 337.0, "avg_ops_per_sec": 59553.27865911847, "min_ops_per_sec": 41881.308372073545, "max_ops_per_sec": 78523.75343541421, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 9849.87951807229, "ser_median_ns": 9747.0, "ser_std_ns": 1277.036445395376, "ser_mad_ns": 458.0, "ser_cv": 0.12964995592609072, "ser_min_ns": 7233.0, "ser_max_ns": 13576.0, "ser_p5_ns": 7711.5, "ser_p25_ns": 9235.0, "ser_p50_ns": 9747.0, "ser_p75_ns": 10156.5, "ser_p95_ns": 12496.3, "ser_p99_ns": 13465.3, "ser_ci_low_ns": 9589.507831325302, "ser_ci_high_ns": 10122.945783132529, "deser_mean_ns": 6941.807228915663, "deser_median_ns": 6746.0, "deser_std_ns": 1019.4129881627516, "deser_mad_ns": 473.0, "deser_cv": 0.14685123838018013, "deser_min_ns": 5028.0, "deser_max_ns": 10301.0, "deser_p5_ns": 5613.9, "deser_p25_ns": 6329.0, "deser_p50_ns": 6746.0, "deser_p75_ns": 7400.0, "deser_p95_ns": 9040.399999999996, "deser_p99_ns": 10018.099999999997, "deser_ci_low_ns": 6733.024096385542, "deser_ci_high_ns": 7171.385542168674, "total_mean_ns": 16791.68674698795, "total_median_ns": 16486.0, "total_std_ns": 2185.596809311131, "total_mad_ns": 887.0, "total_cv": 0.130159455821386, "total_min_ns": 12735.0, "total_max_ns": 23877.0, "total_p5_ns": 13087.8, "total_p25_ns": 15603.5, "total_p50_ns": 16486.0, "total_p75_ns": 17493.5, "total_p95_ns": 21501.29999999999, "total_p99_ns": 23067.659999999993, "total_ci_low_ns": 16334.1921686747, "total_ci_high_ns": 17270.942771084337, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "bson", "effect_vs_fastest_cliffs_delta": 0.9456286685202347, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.485217983939607}, {"serializer": "jackson-cbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 8962.47311827957, "avg_time_deser_ns": 11053.806451612903, "avg_time_total_ns": 20016.279569892475, "median_size_bytes": 346.0, "avg_ops_per_sec": 49959.33417637471, "min_ops_per_sec": 31990.786653443807, "max_ops_per_sec": 84111.36344520145, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 8962.47311827957, "ser_median_ns": 8711.0, "ser_std_ns": 1875.9146904643485, "ser_mad_ns": 1279.0, "ser_cv": 0.2093077062221022, "ser_min_ns": 5435.0, "ser_max_ns": 13519.0, "ser_p5_ns": 6564.4, "ser_p25_ns": 7605.0, "ser_p50_ns": 8711.0, "ser_p75_ns": 10165.0, "ser_p95_ns": 12983.199999999997, "ser_p99_ns": 13461.039999999999, "ser_ci_low_ns": 8578.870161290322, "ser_ci_high_ns": 9345.61559139785, "deser_mean_ns": 11053.806451612903, "deser_median_ns": 10691.0, "deser_std_ns": 2885.6238955344934, "deser_mad_ns": 2171.0, "deser_cv": 0.26105250785474365, "deser_min_ns": 6162.0, "deser_max_ns": 18847.0, "deser_p5_ns": 7206.8, "deser_p25_ns": 8578.0, "deser_p50_ns": 10691.0, "deser_p75_ns": 12930.0, "deser_p95_ns": 16287.199999999999, "deser_p99_ns": 17989.559999999998, "deser_ci_low_ns": 10485.35564516129, "deser_ci_high_ns": 11637.735215053763, "total_mean_ns": 20016.279569892475, "total_median_ns": 19890.0, "total_std_ns": 4361.840861792165, "total_mad_ns": 3391.0, "total_cv": 0.21791466523844102, "total_min_ns": 11889.0, "total_max_ns": 31259.0, "total_p5_ns": 14125.6, "total_p25_ns": 16386.0, "total_p50_ns": 19890.0, "total_p75_ns": 23188.0, "total_p95_ns": 27295.799999999996, "total_p99_ns": 28993.959999999995, "total_ci_low_ns": 19186.887903225805, "total_ci_high_ns": 20885.968010752687, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bson", "effect_vs_fastest_cliffs_delta": 0.9542321477805349, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.296723001030506}, {"serializer": "gson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.12.1", "avg_time_ser_ns": 16889.141176470588, "avg_time_deser_ns": 22522.15294117647, "avg_time_total_ns": 39411.294117647056, "median_size_bytes": 663.0, "avg_ops_per_sec": 25373.43729477367, "min_ops_per_sec": 17688.470654827182, "max_ops_per_sec": 32409.658078107277, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 16889.141176470588, "ser_median_ns": 16234.0, "ser_std_ns": 3038.7883438764793, "ser_mad_ns": 1539.0, "ser_cv": 0.1799255694605728, "ser_min_ns": 12791.0, "ser_max_ns": 26762.0, "ser_p5_ns": 13577.0, "ser_p25_ns": 14722.0, "ser_p50_ns": 16234.0, "ser_p75_ns": 17896.0, "ser_p95_ns": 23936.399999999998, "ser_p99_ns": 25630.519999999997, "ser_ci_low_ns": 16267.995588235295, "ser_ci_high_ns": 17576.083823529414, "deser_mean_ns": 22522.15294117647, "deser_median_ns": 20866.0, "deser_std_ns": 3894.843491280314, "deser_mad_ns": 2022.0, "deser_cv": 0.1729338887562346, "deser_min_ns": 17869.0, "deser_max_ns": 32060.0, "deser_p5_ns": 18540.8, "deser_p25_ns": 19495.0, "deser_p50_ns": 20866.0, "deser_p75_ns": 24275.0, "deser_p95_ns": 30568.399999999998, "deser_p99_ns": 31781.12, "deser_ci_low_ns": 21750.527647058825, "deser_ci_high_ns": 23312.31705882353, "total_mean_ns": 39411.294117647056, "total_median_ns": 38328.0, "total_std_ns": 6260.366746870516, "total_mad_ns": 3773.0, "total_cv": 0.15884702309400528, "total_min_ns": 30855.0, "total_max_ns": 56534.0, "total_p5_ns": 32339.0, "total_p25_ns": 34613.0, "total_p50_ns": 38328.0, "total_p75_ns": 42241.0, "total_p95_ns": 53562.799999999996, "total_p99_ns": 56296.28, "total_ci_low_ns": 38126.42117647059, "total_ci_high_ns": 40798.59029411765, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.857834690493824}, {"serializer": "kryo", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "5.6.2", "avg_time_ser_ns": 13335.565789473685, "avg_time_deser_ns": 8417.842105263158, "avg_time_total_ns": 21753.407894736843, "median_size_bytes": 291.0, "avg_ops_per_sec": 45969.8087232551, "min_ops_per_sec": 31016.40767966254, "max_ops_per_sec": 67709.39129257228, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 13335.565789473685, "ser_median_ns": 13337.5, "ser_std_ns": 2475.2288747266794, "ser_mad_ns": 1626.5, "ser_cv": 0.18561108795852369, "ser_min_ns": 8313.0, "ser_max_ns": 21135.0, "ser_p5_ns": 10435.0, "ser_p25_ns": 11392.75, "ser_p50_ns": 13337.5, "ser_p75_ns": 14197.0, "ser_p95_ns": 18312.5, "ser_p99_ns": 20311.5, "ser_ci_low_ns": 12785.816447368421, "ser_ci_high_ns": 13920.119736842105, "deser_mean_ns": 8417.842105263158, "deser_median_ns": 7852.5, "deser_std_ns": 1363.2290984045353, "deser_mad_ns": 599.0, "deser_cv": 0.1619451970419108, "deser_min_ns": 5894.0, "deser_max_ns": 13729.0, "deser_p5_ns": 7006.0, "deser_p25_ns": 7533.5, "deser_p50_ns": 7852.5, "deser_p75_ns": 9079.25, "deser_p95_ns": 11137.0, "deser_p99_ns": 12585.25, "deser_ci_low_ns": 8129.158881578947, "deser_ci_high_ns": 8740.136513157895, "total_mean_ns": 21753.407894736843, "total_median_ns": 21162.5, "total_std_ns": 3345.0452560072845, "total_mad_ns": 1751.0, "total_cv": 0.15377109058928673, "total_min_ns": 14769.0, "total_max_ns": 32241.0, "total_p5_ns": 17715.0, "total_p25_ns": 19458.75, "total_p50_ns": 21162.5, "total_p75_ns": 22954.5, "total_p95_ns": 28169.0, "total_p99_ns": 31028.25, "total_ci_low_ns": 21055.12960526316, "total_ci_high_ns": 22547.031907894736, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bson", "effect_vs_fastest_cliffs_delta": 0.9986504723346828, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.7424238665546676}, {"serializer": "avro", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "1.12.0", "avg_time_ser_ns": 6451.8674698795185, "avg_time_deser_ns": 11859.084337349397, "avg_time_total_ns": 18310.951807228917, "median_size_bytes": 288.0, "avg_ops_per_sec": 54612.12560262506, "min_ops_per_sec": 31357.792411414237, "max_ops_per_sec": 135464.643727987, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 6451.8674698795185, "ser_median_ns": 5929.0, "ser_std_ns": 1512.5443736372065, "ser_mad_ns": 777.0, "ser_cv": 0.23443512761204496, "ser_min_ns": 3018.0, "ser_max_ns": 11075.0, "ser_p5_ns": 4827.2, "ser_p25_ns": 5391.0, "ser_p50_ns": 5929.0, "ser_p75_ns": 7439.0, "ser_p95_ns": 9020.799999999997, "ser_p99_ns": 10728.959999999997, "ser_ci_low_ns": 6136.133734939759, "ser_ci_high_ns": 6787.611746987951, "deser_mean_ns": 11859.084337349397, "deser_median_ns": 10287.0, "deser_std_ns": 3694.1803843765756, "deser_mad_ns": 1633.0, "deser_cv": 0.31150637598064806, "deser_min_ns": 4364.0, "deser_max_ns": 20870.0, "deser_p5_ns": 7606.500000000001, "deser_p25_ns": 9297.5, "deser_p50_ns": 10287.0, "deser_p75_ns": 14114.0, "deser_p95_ns": 19020.3, "deser_p99_ns": 20824.899999999998, "deser_ci_low_ns": 11065.41686746988, "deser_ci_high_ns": 12634.422891566266, "total_mean_ns": 18310.951807228917, "total_median_ns": 16511.0, "total_std_ns": 5005.909899756327, "total_mad_ns": 2885.0, "total_cv": 0.27338338020091674, "total_min_ns": 7382.0, "total_max_ns": 31890.0, "total_p5_ns": 12433.7, "total_p25_ns": 14720.0, "total_p50_ns": 16511.0, "total_p75_ns": 21344.0, "total_p95_ns": 27113.399999999994, "total_p99_ns": 31250.399999999994, "total_ci_low_ns": 17265.23463855422, "total_ci_high_ns": 19363.541867469878, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bson", "effect_vs_fastest_cliffs_delta": 0.8640716713005869, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.6041151168272534}, {"serializer": "ion", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 19240.223529411764, "avg_time_deser_ns": 38082.964705882354, "avg_time_total_ns": 57323.18823529412, "median_size_bytes": 719.0, "avg_ops_per_sec": 17444.94733780868, "min_ops_per_sec": 11417.480162128219, "max_ops_per_sec": 28344.67120181406, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 19240.223529411764, "ser_median_ns": 18702.0, "ser_std_ns": 3633.457216246934, "ser_mad_ns": 2137.0, "ser_cv": 0.18884693364880156, "ser_min_ns": 11469.0, "ser_max_ns": 29059.0, "ser_p5_ns": 14555.6, "ser_p25_ns": 16704.0, "ser_p50_ns": 18702.0, "ser_p75_ns": 21243.0, "ser_p95_ns": 26799.399999999998, "ser_p99_ns": 28019.079999999994, "ser_ci_low_ns": 18453.261176470587, "ser_ci_high_ns": 19998.494411764706, "deser_mean_ns": 38082.964705882354, "deser_median_ns": 34745.0, "deser_std_ns": 9058.958777348083, "deser_mad_ns": 3351.0, "deser_cv": 0.23787430540954765, "deser_min_ns": 23811.0, "deser_max_ns": 62689.0, "deser_p5_ns": 28130.4, "deser_p25_ns": 32466.0, "deser_p50_ns": 34745.0, "deser_p75_ns": 40307.0, "deser_p95_ns": 60126.2, "deser_p99_ns": 61750.719999999994, "deser_ci_low_ns": 36335.70941176471, "deser_ci_high_ns": 39948.32941176471, "total_mean_ns": 57323.18823529412, "total_median_ns": 53441.0, "total_std_ns": 11551.908511144811, "total_mad_ns": 5538.0, "total_cv": 0.20152243562810512, "total_min_ns": 35280.0, "total_max_ns": 87585.0, "total_p5_ns": 42786.2, "total_p25_ns": 49374.0, "total_p50_ns": 53441.0, "total_p75_ns": 63369.0, "total_p95_ns": 81065.0, "total_p99_ns": 86097.36, "total_ci_low_ns": 54923.968235294116, "total_ci_high_ns": 59810.19264705882, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "bson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.337072137672883}, {"serializer": "jackson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 10519.333333333334, "avg_time_deser_ns": 16316.471264367816, "avg_time_total_ns": 26835.80459770115, "median_size_bytes": 663.0, "avg_ops_per_sec": 37263.64888219761, "min_ops_per_sec": 30875.632950475483, "max_ops_per_sec": 47578.266247977925, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 10519.333333333334, "ser_median_ns": 10368.0, "ser_std_ns": 1137.0852851639731, "ser_mad_ns": 809.0, "ser_cv": 0.10809480497787943, "ser_min_ns": 7706.0, "ser_max_ns": 13640.0, "ser_p5_ns": 8693.5, "ser_p25_ns": 9779.5, "ser_p50_ns": 10368.0, "ser_p75_ns": 11243.0, "ser_p95_ns": 12390.1, "ser_p99_ns": 13145.5, "ser_ci_low_ns": 10283.429310344827, "ser_ci_high_ns": 10764.235057471265, "deser_mean_ns": 16316.471264367816, "deser_median_ns": 16320.0, "deser_std_ns": 1256.357283643734, "deser_mad_ns": 736.0, "deser_cv": 0.07699932560708689, "deser_min_ns": 13312.0, "deser_max_ns": 19701.0, "deser_p5_ns": 14047.8, "deser_p25_ns": 15495.0, "deser_p50_ns": 16320.0, "deser_p75_ns": 17042.5, "deser_p95_ns": 18521.4, "deser_p99_ns": 19375.920000000002, "deser_ci_low_ns": 16060.125574712643, "deser_ci_high_ns": 16584.561494252874, "total_mean_ns": 26835.80459770115, "total_median_ns": 26960.0, "total_std_ns": 2252.5579456660525, "total_mad_ns": 1419.0, "total_cv": 0.08393852837410415, "total_min_ns": 21018.0, "total_max_ns": 32388.0, "total_p5_ns": 22855.8, "total_p25_ns": 25310.0, "total_p50_ns": 26960.0, "total_p75_ns": 28306.0, "total_p95_ns": 30432.1, "total_p99_ns": 31593.36, "total_ci_low_ns": 26388.98908045977, "total_ci_high_ns": 27310.314942528734, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.271043152535144}, {"serializer": "fastjson2", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.0.57", "avg_time_ser_ns": 12520.044444444444, "avg_time_deser_ns": 12170.355555555556, "avg_time_total_ns": 24690.4, "median_size_bytes": 663.0, "avg_ops_per_sec": 40501.571460972686, "min_ops_per_sec": 29014.942695488175, "max_ops_per_sec": 58948.36123555765, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 12520.044444444444, "ser_median_ns": 12549.5, "ser_std_ns": 1575.45146667398, "ser_mad_ns": 1078.0, "ser_cv": 0.12583433498697041, "ser_min_ns": 9170.0, "ser_max_ns": 16858.0, "ser_p5_ns": 10286.3, "ser_p25_ns": 11279.0, "ser_p50_ns": 12549.5, "ser_p75_ns": 13403.0, "ser_p95_ns": 14855.3, "ser_p99_ns": 16734.29, "ser_ci_low_ns": 12204.690555555555, "ser_ci_high_ns": 12850.92888888889, "deser_mean_ns": 12170.355555555556, "deser_median_ns": 12242.0, "deser_std_ns": 2757.93781578833, "deser_mad_ns": 2632.0, "deser_cv": 0.22661111281415106, "deser_min_ns": 7689.0, "deser_max_ns": 18031.0, "deser_p5_ns": 8709.9, "deser_p25_ns": 9608.25, "deser_p50_ns": 12242.0, "deser_p75_ns": 14788.0, "deser_p95_ns": 16497.25, "deser_p99_ns": 18011.42, "deser_ci_low_ns": 11578.940833333334, "deser_ci_high_ns": 12764.969444444443, "total_mean_ns": 24690.4, "total_median_ns": 25114.0, "total_std_ns": 4100.340933481814, "total_mad_ns": 3614.0, "total_cv": 0.16607025133176515, "total_min_ns": 16964.0, "total_max_ns": 34465.0, "total_p5_ns": 18942.9, "total_p25_ns": 21050.5, "total_p50_ns": 25114.0, "total_p75_ns": 27546.0, "total_p95_ns": 30926.449999999997, "total_p99_ns": 32933.31, "total_ci_low_ns": 23871.672222222223, "total_ci_high_ns": 25530.233333333334, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.133654259406503}, {"serializer": "dsl-json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.0.2", "avg_time_ser_ns": 10345.551724137931, "avg_time_deser_ns": 8803.528735632184, "avg_time_total_ns": 19149.080459770114, "median_size_bytes": 663.0, "avg_ops_per_sec": 52221.828724406805, "min_ops_per_sec": 45875.76841912102, "max_ops_per_sec": 62134.957126879584, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 10345.551724137931, "ser_median_ns": 10313.0, "ser_std_ns": 676.20704753109, "ser_mad_ns": 470.0, "ser_cv": 0.06536210591392472, "ser_min_ns": 8702.0, "ser_max_ns": 11900.0, "ser_p5_ns": 9291.7, "ser_p25_ns": 9880.5, "ser_p50_ns": 10313.0, "ser_p75_ns": 10783.5, "ser_p95_ns": 11449.4, "ser_p99_ns": 11784.76, "ser_ci_low_ns": 10207.264655172414, "ser_ci_high_ns": 10479.371839080459, "deser_mean_ns": 8803.528735632184, "deser_median_ns": 8840.0, "deser_std_ns": 613.3312932889146, "deser_mad_ns": 432.0, "deser_cv": 0.06966880119405564, "deser_min_ns": 7392.0, "deser_max_ns": 10032.0, "deser_p5_ns": 7646.6, "deser_p25_ns": 8403.0, "deser_p50_ns": 8840.0, "deser_p75_ns": 9219.0, "deser_p95_ns": 9721.800000000001, "deser_p99_ns": 9946.0, "deser_ci_low_ns": 8671.029310344828, "deser_ci_high_ns": 8940.111781609196, "total_mean_ns": 19149.080459770114, "total_median_ns": 19215.0, "total_std_ns": 1231.8016038004528, "total_mad_ns": 910.0, "total_cv": 0.06432693237611685, "total_min_ns": 16094.0, "total_max_ns": 21798.0, "total_p5_ns": 17119.3, "total_p25_ns": 18249.5, "total_p50_ns": 19215.0, "total_p75_ns": 20099.5, "total_p95_ns": 21065.8, "total_p99_ns": 21693.08, "total_ci_low_ns": 18878.70775862069, "total_ci_high_ns": 19404.175, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.688693787716607}, {"serializer": "jackson-cbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 5743.422222222222, "avg_time_deser_ns": 7304.2, "avg_time_total_ns": 13047.622222222222, "median_size_bytes": 346.0, "avg_ops_per_sec": 76642.31711865764, "min_ops_per_sec": 59712.18725741924, "max_ops_per_sec": 108225.10822510823, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 5743.422222222222, "ser_median_ns": 5572.0, "ser_std_ns": 1009.3028072902576, "ser_mad_ns": 778.0, "ser_cv": 0.17573195357031268, "ser_min_ns": 3960.0, "ser_max_ns": 7987.0, "ser_p5_ns": 4173.3, "ser_p25_ns": 4986.5, "ser_p50_ns": 5572.0, "ser_p75_ns": 6547.75, "ser_p95_ns": 7340.7, "ser_p99_ns": 7914.91, "ser_ci_low_ns": 5523.978055555555, "ser_ci_high_ns": 5954.327777777778, "deser_mean_ns": 7304.2, "deser_median_ns": 7386.5, "deser_std_ns": 885.8201963292094, "deser_mad_ns": 490.5, "deser_cv": 0.12127545745313784, "deser_min_ns": 5223.0, "deser_max_ns": 8908.0, "deser_p5_ns": 5663.6, "deser_p25_ns": 6798.75, "deser_p50_ns": 7386.5, "deser_p75_ns": 7837.25, "deser_p95_ns": 8738.85, "deser_p99_ns": 8859.94, "deser_ci_low_ns": 7117.555833333333, "deser_ci_high_ns": 7478.897222222222, "total_mean_ns": 13047.622222222222, "total_median_ns": 13016.5, "total_std_ns": 1771.7474493334894, "total_mad_ns": 1324.5, "total_cv": 0.1357908298659901, "total_min_ns": 9240.0, "total_max_ns": 16747.0, "total_p5_ns": 9963.95, "total_p25_ns": 11868.0, "total_p50_ns": 13016.5, "total_p75_ns": 14436.25, "total_p95_ns": 15626.1, "total_p99_ns": 16601.04, "total_ci_low_ns": 12678.312777777777, "total_ci_high_ns": 13420.130555555555, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.47382716049382717, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.921187572874222}, {"serializer": "java-serialization", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "21.0.11", "avg_time_ser_ns": 9654.78125, "avg_time_deser_ns": 28220.708333333332, "avg_time_total_ns": 37875.489583333336, "median_size_bytes": 493.0, "avg_ops_per_sec": 26402.2989801837, "min_ops_per_sec": 20297.974262168635, "max_ops_per_sec": 36805.2999631947, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 9654.78125, "ser_median_ns": 9379.0, "ser_std_ns": 1341.4842149698065, "ser_mad_ns": 763.0, "ser_cv": 0.13894506568647597, "ser_min_ns": 6079.0, "ser_max_ns": 12981.0, "ser_p5_ns": 7772.5, "ser_p25_ns": 8682.75, "ser_p50_ns": 9379.0, "ser_p75_ns": 10604.75, "ser_p95_ns": 11997.75, "ser_p99_ns": 12751.099999999999, "ser_ci_low_ns": 9373.2, "ser_ci_high_ns": 9909.199479166666, "deser_mean_ns": 28220.708333333332, "deser_median_ns": 28370.0, "deser_std_ns": 3415.458347654295, "deser_mad_ns": 2225.0, "deser_cv": 0.12102666975300803, "deser_min_ns": 20008.0, "deser_max_ns": 37090.0, "deser_p5_ns": 22244.25, "deser_p25_ns": 26078.0, "deser_p50_ns": 28370.0, "deser_p75_ns": 30409.5, "deser_p95_ns": 33414.75, "deser_p99_ns": 36674.85, "deser_ci_low_ns": 27526.1484375, "deser_ci_high_ns": 28909.572656250002, "total_mean_ns": 37875.489583333336, "total_median_ns": 38040.5, "total_std_ns": 4423.490288983628, "total_mad_ns": 2904.5, "total_cv": 0.11679031314568492, "total_min_ns": 27170.0, "total_max_ns": 49266.0, "total_p5_ns": 30021.75, "total_p25_ns": 35155.75, "total_p50_ns": 38040.5, "total_p75_ns": 40702.0, "total_p95_ns": 44881.75, "total_p99_ns": 47658.6, "total_ci_low_ns": 36978.169270833336, "total_ci_high_ns": 38718.72890625, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.628919679991266}, {"serializer": "jackson-smile", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 5992.523809523809, "avg_time_deser_ns": 8531.892857142857, "avg_time_total_ns": 14524.416666666666, "median_size_bytes": 414.0, "avg_ops_per_sec": 68849.5808781764, "min_ops_per_sec": 53650.94693921348, "max_ops_per_sec": 102690.49086054631, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 5992.523809523809, "ser_median_ns": 5770.5, "ser_std_ns": 999.552266950576, "ser_mad_ns": 716.5, "ser_cv": 0.16679988244051794, "ser_min_ns": 3771.0, "ser_max_ns": 8153.0, "ser_p5_ns": 4751.7, "ser_p25_ns": 5256.5, "ser_p50_ns": 5770.5, "ser_p75_ns": 6809.5, "ser_p95_ns": 7835.499999999999, "ser_p99_ns": 8115.65, "ser_ci_low_ns": 5771.941964285715, "ser_ci_high_ns": 6207.97619047619, "deser_mean_ns": 8531.892857142857, "deser_median_ns": 8520.5, "deser_std_ns": 932.8303480599342, "deser_mad_ns": 591.5, "deser_cv": 0.10933451271355024, "deser_min_ns": 5967.0, "deser_max_ns": 10702.0, "deser_p5_ns": 6919.1, "deser_p25_ns": 7968.5, "deser_p50_ns": 8520.5, "deser_p75_ns": 9111.75, "deser_p95_ns": 10113.05, "deser_p99_ns": 10560.07, "deser_ci_low_ns": 8334.947023809524, "deser_ci_high_ns": 8728.95267857143, "total_mean_ns": 14524.416666666666, "total_median_ns": 14355.0, "total_std_ns": 1866.1486995616137, "total_mad_ns": 1346.5, "total_cv": 0.12848355582117105, "total_min_ns": 9738.0, "total_max_ns": 18639.0, "total_p5_ns": 11690.0, "total_p25_ns": 13227.5, "total_p50_ns": 14355.0, "total_p75_ns": 15745.0, "total_p95_ns": 18051.399999999998, "total_p99_ns": 18465.53, "total_ci_low_ns": 14109.197916666668, "total_ci_high_ns": 14917.37380952381, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.7548941798941798, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.658009019654691}, {"serializer": "fory", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "1.3.0", "avg_time_ser_ns": 8738.24705882353, "avg_time_deser_ns": 6256.670588235294, "avg_time_total_ns": 14994.917647058823, "median_size_bytes": 337.0, "avg_ops_per_sec": 66689.26255798043, "min_ops_per_sec": 59637.40458015267, "max_ops_per_sec": 81142.48620577734, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 8738.24705882353, "ser_median_ns": 8804.0, "ser_std_ns": 577.1889371667436, "ser_mad_ns": 387.0, "ser_cv": 0.06605317213867527, "ser_min_ns": 7000.0, "ser_max_ns": 9898.0, "ser_p5_ns": 7728.2, "ser_p25_ns": 8364.0, "ser_p50_ns": 8804.0, "ser_p75_ns": 9119.0, "ser_p95_ns": 9646.0, "ser_p99_ns": 9816.52, "ser_ci_low_ns": 8613.566470588235, "ser_ci_high_ns": 8852.823529411764, "deser_mean_ns": 6256.670588235294, "deser_median_ns": 6293.0, "deser_std_ns": 345.1146941247798, "deser_mad_ns": 226.0, "deser_cv": 0.05515947967177861, "deser_min_ns": 5324.0, "deser_max_ns": 7029.0, "deser_p5_ns": 5713.0, "deser_p25_ns": 6022.0, "deser_p50_ns": 6293.0, "deser_p75_ns": 6483.0, "deser_p95_ns": 6735.8, "deser_p99_ns": 6995.4, "deser_ci_low_ns": 6184.937352941177, "deser_ci_high_ns": 6324.099117647059, "total_mean_ns": 14994.917647058823, "total_median_ns": 15107.0, "total_std_ns": 879.9260955406684, "total_mad_ns": 615.0, "total_cv": 0.05868162241713021, "total_min_ns": 12324.0, "total_max_ns": 16768.0, "total_p5_ns": 13591.0, "total_p25_ns": 14354.0, "total_p50_ns": 15107.0, "total_p75_ns": 15556.0, "total_p95_ns": 16363.6, "total_p99_ns": 16694.079999999998, "total_ci_low_ns": 14798.011470588237, "total_ci_high_ns": 15171.677058823529, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9435294117647058, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.3588622941507817}, {"serializer": "moshi", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "1.15.2", "avg_time_ser_ns": 10945.25, "avg_time_deser_ns": 18360.07894736842, "avg_time_total_ns": 29305.32894736842, "median_size_bytes": 663.0, "avg_ops_per_sec": 34123.48661214392, "min_ops_per_sec": 27898.672023211697, "max_ops_per_sec": 40809.66372837088, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 10945.25, "ser_median_ns": 10754.5, "ser_std_ns": 1127.0870197105457, "ser_mad_ns": 653.0, "ser_cv": 0.10297499095137577, "ser_min_ns": 8431.0, "ser_max_ns": 14835.0, "ser_p5_ns": 9678.0, "ser_p25_ns": 10126.5, "ser_p50_ns": 10754.5, "ser_p75_ns": 11506.5, "ser_p95_ns": 12689.75, "ser_p99_ns": 14448.0, "ser_ci_low_ns": 10704.74375, "ser_ci_high_ns": 11196.998684210526, "deser_mean_ns": 18360.07894736842, "deser_median_ns": 18443.5, "deser_std_ns": 938.111873401858, "deser_mad_ns": 610.5, "deser_cv": 0.05109519823368293, "deser_min_ns": 15646.0, "deser_max_ns": 21009.0, "deser_p5_ns": 16924.5, "deser_p25_ns": 17715.5, "deser_p50_ns": 18443.5, "deser_p75_ns": 18903.25, "deser_p95_ns": 19882.5, "deser_p99_ns": 20551.5, "deser_ci_low_ns": 18148.22927631579, "deser_ci_high_ns": 18567.771381578947, "total_mean_ns": 29305.32894736842, "total_median_ns": 29182.0, "total_std_ns": 1860.5498498251022, "total_mad_ns": 1180.0, "total_cv": 0.06348844789173326, "total_min_ns": 24504.0, "total_max_ns": 35844.0, "total_p5_ns": 26809.0, "total_p25_ns": 28098.75, "total_p50_ns": 29182.0, "total_p75_ns": 30412.0, "total_p95_ns": 31947.75, "total_p99_ns": 33431.25, "total_ci_low_ns": 28881.554605263158, "total_ci_high_ns": 29698.680592105266, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.252744624647809}, {"serializer": "jsoniter", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "0.9.23", "avg_time_ser_ns": 5072.734177215189, "avg_time_deser_ns": 7444.316455696203, "avg_time_total_ns": 12517.050632911392, "median_size_bytes": 387.0, "avg_ops_per_sec": 79891.02459733406, "min_ops_per_sec": 64462.06407529169, "max_ops_per_sec": 102796.05263157895, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 5072.734177215189, "ser_median_ns": 5053.0, "ser_std_ns": 343.157761015466, "ser_mad_ns": 213.0, "ser_cv": 0.06764749522196557, "ser_min_ns": 4116.0, "ser_max_ns": 5871.0, "ser_p5_ns": 4551.2, "ser_p25_ns": 4853.0, "ser_p50_ns": 5053.0, "ser_p75_ns": 5280.0, "ser_p95_ns": 5609.9, "ser_p99_ns": 5814.0599999999995, "ser_ci_low_ns": 4997.847151898734, "ser_ci_high_ns": 5151.039556962025, "deser_mean_ns": 7444.316455696203, "deser_median_ns": 7100.0, "deser_std_ns": 1006.1463616870037, "deser_mad_ns": 351.0, "deser_cv": 0.13515631256072222, "deser_min_ns": 5595.0, "deser_max_ns": 9993.0, "deser_p5_ns": 6451.8, "deser_p25_ns": 6843.5, "deser_p50_ns": 7100.0, "deser_p75_ns": 7717.0, "deser_p95_ns": 9567.9, "deser_p99_ns": 9974.28, "deser_ci_low_ns": 7225.174683544304, "deser_ci_high_ns": 7663.355379746836, "total_mean_ns": 12517.050632911392, "total_median_ns": 12192.0, "total_std_ns": 1249.4912287554378, "total_mad_ns": 518.0, "total_cv": 0.09982313449065384, "total_min_ns": 9728.0, "total_max_ns": 15513.0, "total_p5_ns": 11233.0, "total_p25_ns": 11749.5, "total_p50_ns": 12192.0, "total_p75_ns": 13074.5, "total_p95_ns": 15044.0, "total_p99_ns": 15393.66, "total_ci_low_ns": 12253.896518987342, "total_ci_high_ns": 12793.188924050632, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.2879043600562588, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.7163882109871472}, {"serializer": "avro", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "1.12.0", "avg_time_ser_ns": 3441.2763157894738, "avg_time_deser_ns": 9217.46052631579, "avg_time_total_ns": 12658.736842105263, "median_size_bytes": 288.0, "avg_ops_per_sec": 78996.82349614994, "min_ops_per_sec": 69309.67563071805, "max_ops_per_sec": 103145.95152140278, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 3441.2763157894738, "ser_median_ns": 3475.0, "ser_std_ns": 265.50839779232143, "ser_mad_ns": 130.0, "ser_cv": 0.07715404792521298, "ser_min_ns": 2778.0, "ser_max_ns": 4133.0, "ser_p5_ns": 2885.5, "ser_p25_ns": 3330.0, "ser_p50_ns": 3475.0, "ser_p75_ns": 3584.0, "ser_p95_ns": 3818.25, "ser_p99_ns": 4033.25, "ser_ci_low_ns": 3379.1572368421052, "ser_ci_high_ns": 3496.2006578947367, "deser_mean_ns": 9217.46052631579, "deser_median_ns": 9333.5, "deser_std_ns": 1001.2575351798288, "deser_mad_ns": 813.5, "deser_cv": 0.10862618096613975, "deser_min_ns": 6817.0, "deser_max_ns": 10852.0, "deser_p5_ns": 7658.5, "deser_p25_ns": 8514.5, "deser_p50_ns": 9333.5, "deser_p75_ns": 10116.75, "deser_p95_ns": 10646.0, "deser_p99_ns": 10809.25, "deser_ci_low_ns": 8984.319078947368, "deser_ci_high_ns": 9440.319407894738, "total_mean_ns": 12658.736842105263, "total_median_ns": 12810.0, "total_std_ns": 1171.8891343287958, "total_mad_ns": 885.0, "total_cv": 0.09257551910162783, "total_min_ns": 9695.0, "total_max_ns": 14428.0, "total_p5_ns": 10531.0, "total_p25_ns": 11828.75, "total_p50_ns": 12810.0, "total_p75_ns": 13642.25, "total_p95_ns": 14200.5, "total_p99_ns": 14419.75, "total_ci_low_ns": 12406.51052631579, "total_ci_high_ns": 12905.732894736842, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.3864035087719298, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.8085802516495146}, {"serializer": "kryo", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "5.6.2", "avg_time_ser_ns": 9269.086021505376, "avg_time_deser_ns": 6655.94623655914, "avg_time_total_ns": 15925.032258064517, "median_size_bytes": 291.0, "avg_ops_per_sec": 62794.22131114334, "min_ops_per_sec": 42183.41348181895, "max_ops_per_sec": 174855.74401119078, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 9269.086021505376, "ser_median_ns": 10076.0, "ser_std_ns": 2014.199461518332, "ser_mad_ns": 1071.0, "ser_cv": 0.2173029203575359, "ser_min_ns": 4257.0, "ser_max_ns": 15151.0, "ser_p5_ns": 6292.400000000001, "ser_p25_ns": 7464.0, "ser_p50_ns": 10076.0, "ser_p75_ns": 10761.0, "ser_p95_ns": 11749.399999999996, "ser_p99_ns": 12919.999999999996, "ser_ci_low_ns": 8876.196774193548, "ser_ci_high_ns": 9665.037365591397, "deser_mean_ns": 6655.94623655914, "deser_median_ns": 7753.0, "deser_std_ns": 2301.599785619783, "deser_mad_ns": 1557.0, "deser_cv": 0.3457960301689003, "deser_min_ns": 1386.0, "deser_max_ns": 10403.0, "deser_p5_ns": 3358.4, "deser_p25_ns": 4352.0, "deser_p50_ns": 7753.0, "deser_p75_ns": 8388.0, "deser_p95_ns": 9729.0, "deser_p99_ns": 10322.96, "deser_ci_low_ns": 6190.172849462366, "deser_ci_high_ns": 7121.710215053764, "total_mean_ns": 15925.032258064517, "total_median_ns": 17855.0, "total_std_ns": 4130.080224643534, "total_mad_ns": 2012.0, "total_cv": 0.2593451716590427, "total_min_ns": 5719.0, "total_max_ns": 23706.0, "total_p5_ns": 9680.800000000001, "total_p25_ns": 11843.0, "total_p50_ns": 17855.0, "total_p75_ns": 19311.0, "total_p95_ns": 20626.6, "total_p99_ns": 21755.599999999995, "total_ci_low_ns": 15104.395161290324, "total_ci_high_ns": 16745.02069892473, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.5764635603345281, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.4122481724621034}, {"serializer": "gson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.12.1", "avg_time_ser_ns": 16242.183908045978, "avg_time_deser_ns": 17317.862068965518, "avg_time_total_ns": 33560.0459770115, "median_size_bytes": 663.0, "avg_ops_per_sec": 29797.33700856656, "min_ops_per_sec": 24985.633260874998, "max_ops_per_sec": 38134.46211341189, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 16242.183908045978, "ser_median_ns": 16166.0, "ser_std_ns": 1912.2781709243695, "ser_mad_ns": 1286.0, "ser_cv": 0.11773528619984866, "ser_min_ns": 11773.0, "ser_max_ns": 22069.0, "ser_p5_ns": 13337.2, "ser_p25_ns": 14970.5, "ser_p50_ns": 16166.0, "ser_p75_ns": 17594.5, "ser_p95_ns": 18940.3, "ser_p99_ns": 20689.56, "ser_ci_low_ns": 15850.174712643679, "ser_ci_high_ns": 16650.82068965517, "deser_mean_ns": 17317.862068965518, "deser_median_ns": 17175.0, "deser_std_ns": 1292.9460336263412, "deser_mad_ns": 791.0, "deser_cv": 0.07465967961157086, "deser_min_ns": 14450.0, "deser_max_ns": 20850.0, "deser_p5_ns": 15425.6, "deser_p25_ns": 16461.5, "deser_p50_ns": 17175.0, "deser_p75_ns": 17967.0, "deser_p95_ns": 20002.4, "deser_p99_ns": 20837.96, "deser_ci_low_ns": 17068.943103448277, "deser_ci_high_ns": 17603.8, "total_mean_ns": 33560.0459770115, "total_median_ns": 33468.0, "total_std_ns": 2786.5802869352165, "total_mad_ns": 1607.0, "total_cv": 0.08303267191123676, "total_min_ns": 26223.0, "total_max_ns": 40023.0, "total_p5_ns": 28978.1, "total_p25_ns": 31955.0, "total_p50_ns": 33468.0, "total_p75_ns": 35104.5, "total_p95_ns": 38563.700000000004, "total_p99_ns": 39717.7, "total_ci_low_ns": 32993.00086206896, "total_ci_high_ns": 34131.13074712643, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.164936026403767}, {"serializer": "msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "0.9.8", "avg_time_ser_ns": 7114.235294117647, "avg_time_deser_ns": 12909.164705882353, "avg_time_total_ns": 20023.4, "median_size_bytes": 346.0, "avg_ops_per_sec": 49941.56836501293, "min_ops_per_sec": 39345.29430280138, "max_ops_per_sec": 65286.936084089575, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 7114.235294117647, "ser_median_ns": 7036.0, "ser_std_ns": 768.0750156670093, "ser_mad_ns": 555.0, "ser_cv": 0.10796311675298208, "ser_min_ns": 5473.0, "ser_max_ns": 9216.0, "ser_p5_ns": 5855.8, "ser_p25_ns": 6617.0, "ser_p50_ns": 7036.0, "ser_p75_ns": 7669.0, "ser_p95_ns": 8250.8, "ser_p99_ns": 8815.319999999998, "ser_ci_low_ns": 6960.479411764706, "ser_ci_high_ns": 7269.200294117647, "deser_mean_ns": 12909.164705882353, "deser_median_ns": 12804.0, "deser_std_ns": 1335.3341551395865, "deser_mad_ns": 752.0, "deser_cv": 0.10344078687996841, "deser_min_ns": 9844.0, "deser_max_ns": 16200.0, "deser_p5_ns": 10376.0, "deser_p25_ns": 12128.0, "deser_p50_ns": 12804.0, "deser_p75_ns": 13585.0, "deser_p95_ns": 15196.6, "deser_p99_ns": 16047.96, "deser_ci_low_ns": 12628.497647058824, "deser_ci_high_ns": 13189.789999999999, "total_mean_ns": 20023.4, "total_median_ns": 19954.0, "total_std_ns": 1969.2958567540254, "total_mad_ns": 1181.0, "total_cv": 0.09834972366101787, "total_min_ns": 15317.0, "total_max_ns": 25416.0, "total_p5_ns": 16237.4, "total_p25_ns": 19052.0, "total_p50_ns": 19954.0, "total_p75_ns": 21188.0, "total_p95_ns": 23411.8, "total_p99_ns": 24457.559999999998, "total_ci_low_ns": 19593.105882352942, "total_ci_high_ns": 20440.166176470586, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.376081298848382}, {"serializer": "bson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "5.3.1", "avg_time_ser_ns": 4907.482758620689, "avg_time_deser_ns": 7309.402298850575, "avg_time_total_ns": 12216.885057471265, "median_size_bytes": 463.0, "avg_ops_per_sec": 81853.92555432513, "min_ops_per_sec": 68799.44960440317, "max_ops_per_sec": 97077.95359673818, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 4907.482758620689, "ser_median_ns": 4943.0, "ser_std_ns": 319.01945927631544, "ser_mad_ns": 240.0, "ser_cv": 0.06500674071975343, "ser_min_ns": 4161.0, "ser_max_ns": 5692.0, "ser_p5_ns": 4335.8, "ser_p25_ns": 4681.0, "ser_p50_ns": 4943.0, "ser_p75_ns": 5109.0, "ser_p95_ns": 5370.0, "ser_p99_ns": 5541.5, "ser_ci_low_ns": 4844.631609195402, "ser_ci_high_ns": 4973.598850574713, "deser_mean_ns": 7309.402298850575, "deser_median_ns": 7370.0, "deser_std_ns": 561.385484186329, "deser_mad_ns": 356.0, "deser_cv": 0.07680319966443884, "deser_min_ns": 5994.0, "deser_max_ns": 8843.0, "deser_p5_ns": 6416.0, "deser_p25_ns": 6980.0, "deser_p50_ns": 7370.0, "deser_p75_ns": 7674.0, "deser_p95_ns": 8069.7, "deser_p99_ns": 8788.82, "deser_ci_low_ns": 7191.341954022988, "deser_ci_high_ns": 7424.486781609195, "total_mean_ns": 12216.885057471265, "total_median_ns": 12383.0, "total_std_ns": 817.4879335612915, "total_mad_ns": 561.0, "total_cv": 0.06691459645528504, "total_min_ns": 10301.0, "total_max_ns": 14535.0, "total_p5_ns": 10851.5, "total_p25_ns": 11725.0, "total_p50_ns": 12383.0, "total_p75_ns": 12809.0, "total_p95_ns": 13315.800000000001, "total_p99_ns": 13711.980000000001, "total_ci_low_ns": 12044.332183908047, "total_ci_high_ns": 12381.120402298851, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.21583652618135377, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.5940016619025936}, {"serializer": "protostuff", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "1.8.0", "avg_time_ser_ns": 5346.233333333334, "avg_time_deser_ns": 5954.0, "avg_time_total_ns": 11300.233333333334, "median_size_bytes": 324.0, "avg_ops_per_sec": 88493.74791670968, "min_ops_per_sec": 66190.09796134499, "max_ops_per_sec": 155690.4873112253, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 5346.233333333334, "ser_median_ns": 5182.5, "ser_std_ns": 903.7977183697341, "ser_mad_ns": 553.0, "ser_cv": 0.1690531748277106, "ser_min_ns": 3103.0, "ser_max_ns": 7570.0, "ser_p5_ns": 4068.7, "ser_p25_ns": 4706.0, "ser_p50_ns": 5182.5, "ser_p75_ns": 6123.5, "ser_p95_ns": 6791.55, "ser_p99_ns": 7137.46, "ser_ci_low_ns": 5162.985000000001, "ser_ci_high_ns": 5529.065555555555, "deser_mean_ns": 5954.0, "deser_median_ns": 6537.0, "deser_std_ns": 1188.5257509512182, "deser_mad_ns": 813.0, "deser_cv": 0.19961803005562953, "deser_min_ns": 3320.0, "deser_max_ns": 7949.0, "deser_p5_ns": 4258.7, "deser_p25_ns": 4781.75, "deser_p50_ns": 6537.0, "deser_p75_ns": 6972.25, "deser_p95_ns": 7428.05, "deser_p99_ns": 7583.21, "deser_ci_low_ns": 5698.151666666667, "deser_ci_high_ns": 6177.5599999999995, "total_mean_ns": 11300.233333333334, "total_median_ns": 11918.5, "total_std_ns": 1999.1678721155151, "total_mad_ns": 1813.5, "total_cv": 0.1769138577181753, "total_min_ns": 6423.0, "total_max_ns": 15108.0, "total_p5_ns": 8300.9, "total_p25_ns": 9556.0, "total_p50_ns": 11918.5, "total_p75_ns": 13158.25, "total_p95_ns": 14032.199999999999, "total_p99_ns": 14506.359999999999, "total_ci_low_ns": 10892.84861111111, "total_ci_high_ns": 11721.887499999999, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "ion", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 16347.433333333332, "avg_time_deser_ns": 37173.13333333333, "avg_time_total_ns": 53520.566666666666, "median_size_bytes": 719.0, "avg_ops_per_sec": 18684.406056986194, "min_ops_per_sec": 15801.782441059351, "max_ops_per_sec": 24021.138601969735, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 16347.433333333332, "ser_median_ns": 16391.5, "ser_std_ns": 1272.7271440281563, "ser_mad_ns": 869.0, "ser_cv": 0.07785486064243458, "ser_min_ns": 12812.0, "ser_max_ns": 19591.0, "ser_p5_ns": 14523.35, "ser_p25_ns": 15543.25, "ser_p50_ns": 16391.5, "ser_p75_ns": 17260.5, "ser_p95_ns": 18076.05, "ser_p99_ns": 19090.82, "ser_ci_low_ns": 16095.09638888889, "ser_ci_high_ns": 16614.32, "deser_mean_ns": 37173.13333333333, "deser_median_ns": 37042.0, "deser_std_ns": 4503.327112607529, "deser_mad_ns": 2849.5, "deser_cv": 0.12114467382197705, "deser_min_ns": 28060.0, "deser_max_ns": 47359.0, "deser_p5_ns": 29908.8, "deser_p25_ns": 34180.25, "deser_p50_ns": 37042.0, "deser_p75_ns": 39751.25, "deser_p95_ns": 45819.4, "deser_p99_ns": 46815.21, "deser_ci_low_ns": 36260.549166666664, "deser_ci_high_ns": 38123.22111111111, "total_mean_ns": 53520.566666666666, "total_median_ns": 53553.5, "total_std_ns": 5058.43145082511, "total_mad_ns": 2812.5, "total_cv": 0.09451378723864615, "total_min_ns": 41630.0, "total_max_ns": 63284.0, "total_p5_ns": 45195.55, "total_p25_ns": 50551.25, "total_p50_ns": 53553.5, "total_p75_ns": 56221.75, "total_p95_ns": 62643.35, "total_p99_ns": 63262.64, "total_ci_low_ns": 52517.23166666667, "total_ci_high_ns": 54580.41388888889, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.931227248046163}, {"serializer": "protobuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "4.28.3", "avg_time_ser_ns": 2738.597222222222, "avg_time_deser_ns": 10565.625, "avg_time_total_ns": 13304.222222222223, "median_size_bytes": 291.0, "avg_ops_per_sec": 75164.1083031285, "min_ops_per_sec": 54920.91388400703, "max_ops_per_sec": 94099.93413004611, "runs": 72, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 27, "ser_mean_ns": 2738.597222222222, "ser_median_ns": 2370.0, "ser_std_ns": 1301.4833104255001, "ser_mad_ns": 132.0, "ser_cv": 0.475237212637431, "ser_min_ns": 1751.0, "ser_max_ns": 7117.0, "ser_p5_ns": 1894.85, "ser_p25_ns": 2211.5, "ser_p50_ns": 2370.0, "ser_p75_ns": 2479.75, "ser_p95_ns": 6729.2, "ser_p99_ns": 7073.6900000000005, "ser_ci_low_ns": 2458.2527777777777, "ser_ci_high_ns": 3056.288194444444, "deser_mean_ns": 10565.625, "deser_median_ns": 10674.0, "deser_std_ns": 818.8119259454045, "deser_mad_ns": 469.5, "deser_cv": 0.07749772738909477, "deser_min_ns": 8632.0, "deser_max_ns": 12965.0, "deser_p5_ns": 9411.05, "deser_p25_ns": 10011.5, "deser_p50_ns": 10674.0, "deser_p75_ns": 11021.25, "deser_p95_ns": 11698.9, "deser_p99_ns": 12874.12, "deser_ci_low_ns": 10379.335416666667, "deser_ci_high_ns": 10763.82638888889, "total_mean_ns": 13304.222222222223, "total_median_ns": 13137.5, "total_std_ns": 1706.892755711154, "total_mad_ns": 701.0, "total_cv": 0.12829707195209863, "total_min_ns": 10627.0, "total_max_ns": 18208.0, "total_p5_ns": 11312.4, "total_p25_ns": 12260.5, "total_p50_ns": 13137.5, "total_p75_ns": 13675.0, "total_p95_ns": 17517.750000000004, "total_p99_ns": 18141.97, "total_ci_low_ns": 12942.53125, "total_ci_high_ns": 13699.336458333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.48055555555555557, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.0637184832771691}, {"serializer": "hessian", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "4.0.66", "avg_time_ser_ns": 7255.125, "avg_time_deser_ns": 7944.056818181818, "avg_time_total_ns": 15199.181818181818, "median_size_bytes": 384.0, "avg_ops_per_sec": 65793.01517426177, "min_ops_per_sec": 54522.65416280465, "max_ops_per_sec": 84395.30762089627, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 7255.125, "ser_median_ns": 7255.0, "ser_std_ns": 472.4939411519341, "ser_mad_ns": 290.0, "ser_cv": 0.06512554106951074, "ser_min_ns": 6201.0, "ser_max_ns": 8548.0, "ser_p5_ns": 6516.25, "ser_p25_ns": 6955.0, "ser_p50_ns": 7255.0, "ser_p75_ns": 7490.25, "ser_p95_ns": 8091.549999999999, "ser_p99_ns": 8305.269999999999, "ser_ci_low_ns": 7162.289772727273, "ser_ci_high_ns": 7356.750568181818, "deser_mean_ns": 7944.056818181818, "deser_median_ns": 8144.5, "deser_std_ns": 1197.8480355515958, "deser_mad_ns": 1088.5, "deser_cv": 0.1507854315455099, "deser_min_ns": 5577.0, "deser_max_ns": 10318.0, "deser_p5_ns": 6313.25, "deser_p25_ns": 6739.0, "deser_p50_ns": 8144.5, "deser_p75_ns": 9023.0, "deser_p95_ns": 9570.6, "deser_p99_ns": 9939.549999999997, "deser_ci_low_ns": 7707.669318181818, "deser_ci_high_ns": 8181.190909090909, "total_mean_ns": 15199.181818181818, "total_median_ns": 15433.0, "total_std_ns": 1533.7372997007042, "total_mad_ns": 1117.5, "total_cv": 0.1009092014325397, "total_min_ns": 11849.0, "total_max_ns": 18341.0, "total_p5_ns": 12787.35, "total_p25_ns": 14039.75, "total_p50_ns": 15433.0, "total_p75_ns": 16472.0, "total_p95_ns": 17533.449999999997, "total_p99_ns": 17987.78, "total_ci_low_ns": 14884.521306818182, "total_ci_high_ns": 15518.596590909092, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.880429292929293, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.175773324807677}, {"serializer": "bson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "5.3.1", "avg_time_ser_ns": 191184.12765957447, "avg_time_deser_ns": 144203.82978723405, "avg_time_total_ns": 335387.9574468085, "median_size_bytes": 46739.0, "avg_ops_per_sec": 2981.621664691395, "min_ops_per_sec": 2198.502819579866, "max_ops_per_sec": 3682.969946965233, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 191184.12765957447, "ser_median_ns": 193461.0, "ser_std_ns": 13442.179430173894, "ser_mad_ns": 8864.5, "ser_cv": 0.07031012247057064, "ser_min_ns": 160744.0, "ser_max_ns": 220904.0, "ser_p5_ns": 167782.1, "ser_p25_ns": 180062.0, "ser_p50_ns": 193461.0, "ser_p75_ns": 199702.75, "ser_p95_ns": 211775.59999999998, "ser_p99_ns": 219206.75, "ser_ci_low_ns": 188400.88457446807, "ser_ci_high_ns": 193917.61835106384, "deser_mean_ns": 144203.82978723405, "deser_median_ns": 132501.5, "deser_std_ns": 31228.559144295796, "deser_mad_ns": 12716.0, "deser_cv": 0.2165584588867859, "deser_min_ns": 109553.0, "deser_max_ns": 245205.0, "deser_p5_ns": 112209.2, "deser_p25_ns": 121315.75, "deser_p50_ns": 132501.5, "deser_p75_ns": 152101.5, "deser_p95_ns": 207109.04999999996, "deser_p99_ns": 228027.89999999988, "deser_ci_low_ns": 138351.85957446808, "deser_ci_high_ns": 150891.7859042553, "total_mean_ns": 335387.9574468085, "total_median_ns": 327719.5, "total_std_ns": 40380.61937775971, "total_mad_ns": 27390.0, "total_cv": 0.1203997295703855, "total_min_ns": 271520.0, "total_max_ns": 454855.0, "total_p5_ns": 286666.95, "total_p25_ns": 303012.25, "total_p50_ns": 327719.5, "total_p75_ns": 362429.25, "total_p95_ns": 411793.14999999997, "total_p99_ns": 432683.7999999998, "total_ci_low_ns": 327489.1002659575, "total_ci_high_ns": 343875.84335106384, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.831508439604981}, {"serializer": "hessian", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "4.0.66", "avg_time_ser_ns": 62328.55670103093, "avg_time_deser_ns": 71033.28865979382, "avg_time_total_ns": 133361.84536082475, "median_size_bytes": 32495.0, "avg_ops_per_sec": 7498.396541337539, "min_ops_per_sec": 4464.724213985302, "max_ops_per_sec": 11602.408660037823, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 62328.55670103093, "ser_median_ns": 54282.0, "ser_std_ns": 17936.091512046944, "ser_mad_ns": 10031.0, "ser_cv": 0.2877668353220551, "ser_min_ns": 41475.0, "ser_max_ns": 111681.0, "ser_p5_ns": 43276.2, "ser_p25_ns": 47161.0, "ser_p50_ns": 54282.0, "ser_p75_ns": 73864.0, "ser_p95_ns": 103437.19999999998, "ser_p99_ns": 110547.23999999999, "ser_ci_low_ns": 59133.37113402062, "ser_ci_high_ns": 65984.8636597938, "deser_mean_ns": 71033.28865979382, "deser_median_ns": 64462.0, "deser_std_ns": 22951.367894945626, "deser_mad_ns": 17409.0, "deser_cv": 0.32310721251931185, "deser_min_ns": 42154.0, "deser_max_ns": 132346.0, "deser_p5_ns": 45082.8, "deser_p25_ns": 51313.0, "deser_p50_ns": 64462.0, "deser_p75_ns": 94176.0, "deser_p95_ns": 107236.79999999994, "deser_p99_ns": 114794.31999999986, "deser_ci_low_ns": 66440.21958762888, "deser_ci_high_ns": 75408.34020618556, "total_mean_ns": 133361.84536082475, "total_median_ns": 116292.0, "total_std_ns": 39318.07475373662, "total_mad_ns": 26073.0, "total_cv": 0.29482251574546947, "total_min_ns": 86189.0, "total_max_ns": 223978.0, "total_p5_ns": 88439.6, "total_p25_ns": 97972.0, "total_p50_ns": 116292.0, "total_p75_ns": 167935.0, "total_p95_ns": 200962.19999999998, "total_p99_ns": 218083.59999999995, "total_ci_low_ns": 125346.93865979381, "total_ci_high_ns": 141235.9610824742, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.985742487387585, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.5609445618955995}, {"serializer": "kryo", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "5.6.2", "avg_time_ser_ns": 56870.48453608248, "avg_time_deser_ns": 48298.71134020619, "avg_time_total_ns": 105169.19587628866, "median_size_bytes": 29038.0, "avg_ops_per_sec": 9508.487648572569, "min_ops_per_sec": 5534.463101734501, "max_ops_per_sec": 15348.487406566082, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 56870.48453608248, "ser_median_ns": 54592.0, "ser_std_ns": 14515.831992685176, "ser_mad_ns": 11372.0, "ser_cv": 0.25524368415527304, "ser_min_ns": 37096.0, "ser_max_ns": 101272.0, "ser_p5_ns": 38780.2, "ser_p25_ns": 44064.0, "ser_p50_ns": 54592.0, "ser_p75_ns": 70706.0, "ser_p95_ns": 80640.8, "ser_p99_ns": 84728.31999999986, "ser_ci_low_ns": 53820.46958762887, "ser_ci_high_ns": 59700.47396907217, "deser_mean_ns": 48298.71134020619, "deser_median_ns": 42384.0, "deser_std_ns": 17046.959909784724, "deser_mad_ns": 12265.0, "deser_cv": 0.3529485453495735, "deser_min_ns": 26699.0, "deser_max_ns": 101699.0, "deser_p5_ns": 28939.4, "deser_p25_ns": 33414.0, "deser_p50_ns": 42384.0, "deser_p75_ns": 64230.0, "deser_p95_ns": 73602.4, "deser_p99_ns": 84169.39999999985, "deser_ci_low_ns": 45209.24716494845, "deser_ci_high_ns": 51767.2, "total_mean_ns": 105169.19587628866, "total_median_ns": 96703.0, "total_std_ns": 30155.446181908548, "total_mad_ns": 25304.0, "total_cv": 0.2867326875578723, "total_min_ns": 65153.0, "total_max_ns": 180686.0, "total_p5_ns": 68188.2, "total_p25_ns": 79469.0, "total_p50_ns": 96703.0, "total_p75_ns": 136869.0, "total_p95_ns": 147512.8, "total_p99_ns": 169629.6799999999, "total_ci_low_ns": 99211.35953608248, "total_ci_high_ns": 111239.3456185567, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.88528186005703, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.032850106787824}, {"serializer": "fory", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "1.3.0", "avg_time_ser_ns": 27793.22340425532, "avg_time_deser_ns": 24972.042553191488, "avg_time_total_ns": 52765.265957446805, "median_size_bytes": 29577.0, "avg_ops_per_sec": 18951.861264310926, "min_ops_per_sec": 9402.384444695175, "max_ops_per_sec": 43112.73981461522, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 27793.22340425532, "ser_median_ns": 27709.5, "ser_std_ns": 11458.260587988128, "ser_mad_ns": 9823.5, "ser_cv": 0.41226814253699684, "ser_min_ns": 12155.0, "ser_max_ns": 61194.0, "ser_p5_ns": 13957.2, "ser_p25_ns": 16591.25, "ser_p50_ns": 27709.5, "ser_p75_ns": 36595.0, "ser_p95_ns": 45010.29999999999, "ser_p99_ns": 60019.40999999999, "ser_ci_low_ns": 25584.015691489363, "ser_ci_high_ns": 30116.997074468083, "deser_mean_ns": 24972.042553191488, "deser_median_ns": 25627.5, "deser_std_ns": 9641.392539757762, "deser_mad_ns": 7406.0, "deser_cv": 0.38608746237802516, "deser_min_ns": 11040.0, "deser_max_ns": 49377.0, "deser_p5_ns": 12384.4, "deser_p25_ns": 15332.75, "deser_p50_ns": 25627.5, "deser_p75_ns": 31792.0, "deser_p95_ns": 40443.94999999996, "deser_p99_ns": 46631.63999999998, "deser_ci_low_ns": 23104.82260638298, "deser_ci_high_ns": 26946.25744680851, "total_mean_ns": 52765.265957446805, "total_median_ns": 56018.0, "total_std_ns": 20027.67953488776, "total_mad_ns": 16356.0, "total_cv": 0.379561803991272, "total_min_ns": 23195.0, "total_max_ns": 106356.0, "total_p5_ns": 26317.85, "total_p25_ns": 32054.5, "total_p50_ns": 56018.0, "total_p75_ns": 68273.25, "total_p95_ns": 84364.75, "total_p99_ns": 93324.83999999991, "total_ci_low_ns": 48990.456648936175, "total_ci_high_ns": 56843.59255319149, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "jackson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 282266.8817204301, "avg_time_deser_ns": 668327.8602150538, "avg_time_total_ns": 950594.7419354839, "median_size_bytes": 65958.0, "avg_ops_per_sec": 1051.9729974141485, "min_ops_per_sec": 836.6156554214368, "max_ops_per_sec": 1312.702894641153, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 282266.8817204301, "ser_median_ns": 281672.0, "ser_std_ns": 28107.487188682393, "ser_mad_ns": 24528.0, "ser_cv": 0.09957770113647736, "ser_min_ns": 224688.0, "ser_max_ns": 334801.0, "ser_p5_ns": 241566.8, "ser_p25_ns": 258586.0, "ser_p50_ns": 281672.0, "ser_p75_ns": 306200.0, "ser_p95_ns": 325675.4, "ser_p99_ns": 331271.88, "ser_ci_low_ns": 276452.1422043011, "ser_ci_high_ns": 288183.99892473116, "deser_mean_ns": 668327.8602150538, "deser_median_ns": 672213.0, "deser_std_ns": 64845.566414364934, "deser_mad_ns": 51251.0, "deser_cv": 0.09702657972914522, "deser_min_ns": 530871.0, "deser_max_ns": 872309.0, "deser_p5_ns": 571786.0, "deser_p25_ns": 618066.0, "deser_p50_ns": 672213.0, "deser_p75_ns": 717767.0, "deser_p95_ns": 770980.2, "deser_p99_ns": 807674.3999999999, "deser_ci_low_ns": 654816.4634408603, "deser_ci_high_ns": 682396.3588709676, "total_mean_ns": 950594.7419354839, "total_median_ns": 954077.0, "total_std_ns": 91418.98433014019, "total_mad_ns": 73532.0, "total_cv": 0.09617030296633465, "total_min_ns": 761787.0, "total_max_ns": 1195292.0, "total_p5_ns": 820637.0, "total_p25_ns": 875399.0, "total_p50_ns": 954077.0, "total_p75_ns": 1025509.0, "total_p95_ns": 1096942.4, "total_p99_ns": 1141529.96, "total_ci_low_ns": 932283.3322580645, "total_ci_high_ns": 970617.8849462366, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.54550792800842}, {"serializer": "java-serialization", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "21.0.11", "avg_time_ser_ns": 93971.20202020202, "avg_time_deser_ns": 150113.0202020202, "avg_time_total_ns": 244084.22222222222, "median_size_bytes": 32717.0, "avg_ops_per_sec": 4096.9465002517345, "min_ops_per_sec": 2414.8931289045804, "max_ops_per_sec": 6526.264953304574, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 93971.20202020202, "ser_median_ns": 83304.0, "ser_std_ns": 25602.0509745143, "ser_mad_ns": 11552.0, "ser_cv": 0.2724457112830199, "ser_min_ns": 65603.0, "ser_max_ns": 163729.0, "ser_p5_ns": 68782.9, "ser_p25_ns": 73263.0, "ser_p50_ns": 83304.0, "ser_p75_ns": 113908.0, "ser_p95_ns": 142547.79999999996, "ser_p99_ns": 155873.31999999998, "ser_ci_low_ns": 89297.30505050505, "ser_ci_high_ns": 99209.79242424243, "deser_mean_ns": 150113.0202020202, "deser_median_ns": 131822.0, "deser_std_ns": 45451.5070963122, "deser_mad_ns": 28402.0, "deser_cv": 0.30278191082388545, "deser_min_ns": 87624.0, "deser_max_ns": 250368.0, "deser_p5_ns": 99241.0, "deser_p25_ns": 111681.0, "deser_p50_ns": 131822.0, "deser_p75_ns": 188854.0, "deser_p95_ns": 236300.69999999998, "deser_p99_ns": 248989.13999999998, "deser_ci_low_ns": 141496.20454545453, "deser_ci_high_ns": 159017.33964646465, "total_mean_ns": 244084.22222222222, "total_median_ns": 216860.0, "total_std_ns": 69876.11310866255, "total_mad_ns": 41166.0, "total_cv": 0.2862786970517294, "total_min_ns": 153227.0, "total_max_ns": 414097.0, "total_p5_ns": 169186.5, "total_p25_ns": 187352.0, "total_p50_ns": 216860.0, "total_p75_ns": 308812.5, "total_p95_ns": 364719.1, "total_p99_ns": 390802.3999999999, "total_ci_low_ns": 230830.3828282828, "total_ci_high_ns": 258030.8414141414, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.6670855759955017}, {"serializer": "protobuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "4.28.3", "avg_time_ser_ns": 37174.20224719101, "avg_time_deser_ns": 68119.21348314607, "avg_time_total_ns": 105293.41573033707, "median_size_bytes": 29432.0, "avg_ops_per_sec": 9497.270015069713, "min_ops_per_sec": 4181.580972133945, "max_ops_per_sec": 15703.764192276889, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 37174.20224719101, "ser_median_ns": 30730.0, "ser_std_ns": 13741.6872303187, "ser_mad_ns": 3912.0, "ser_cv": 0.3696565467348277, "ser_min_ns": 24594.0, "ser_max_ns": 77864.0, "ser_p5_ns": 25359.6, "ser_p25_ns": 28064.0, "ser_p50_ns": 30730.0, "ser_p75_ns": 40733.0, "ser_p95_ns": 62710.2, "ser_p99_ns": 67399.92000000006, "ser_ci_low_ns": 34382.92219101124, "ser_ci_high_ns": 40199.925561797754, "deser_mean_ns": 68119.21348314607, "deser_median_ns": 53337.0, "deser_std_ns": 34213.42656681063, "deser_mad_ns": 9142.0, "deser_cv": 0.5022580974936778, "deser_min_ns": 38642.0, "deser_max_ns": 176984.0, "deser_p5_ns": 40980.2, "deser_p25_ns": 45905.0, "deser_p50_ns": 53337.0, "deser_p75_ns": 67871.0, "deser_p95_ns": 131927.6, "deser_p99_ns": 151728.88000000012, "deser_ci_low_ns": 61237.40758426966, "deser_ci_high_ns": 75247.3592696629, "total_mean_ns": 105293.41573033707, "total_median_ns": 86382.0, "total_std_ns": 47477.447186151876, "total_mad_ns": 13957.0, "total_cv": 0.45090613555309617, "total_min_ns": 63679.0, "total_max_ns": 239144.0, "total_p5_ns": 66644.6, "total_p25_ns": 74485.0, "total_p50_ns": 86382.0, "total_p75_ns": 102975.0, "total_p95_ns": 193169.0, "total_p99_ns": 225392.24000000008, "total_ci_low_ns": 95595.6393258427, "total_ci_high_ns": 115112.49129213483, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.8288309825484103, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.4497010988670054}, {"serializer": "jackson-cbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 47320.333333333336, "avg_time_deser_ns": 85873.79166666667, "avg_time_total_ns": 133194.125, "median_size_bytes": 34634.0, "avg_ops_per_sec": 7507.838652793432, "min_ops_per_sec": 4448.260063076327, "max_ops_per_sec": 11431.184270690443, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 47320.333333333336, "ser_median_ns": 39747.0, "ser_std_ns": 15928.21226474827, "ser_mad_ns": 8603.5, "ser_cv": 0.3366039742904376, "ser_min_ns": 29400.0, "ser_max_ns": 84511.0, "ser_p5_ns": 30180.25, "ser_p25_ns": 34922.75, "ser_p50_ns": 39747.0, "ser_p75_ns": 64130.75, "ser_p95_ns": 73618.75, "ser_p99_ns": 83602.8, "ser_ci_low_ns": 44299.9515625, "ser_ci_high_ns": 50332.51692708333, "deser_mean_ns": 85873.79166666667, "deser_median_ns": 75858.5, "deser_std_ns": 21273.72301018407, "deser_mad_ns": 10912.5, "deser_cv": 0.2477324291532572, "deser_min_ns": 57548.0, "deser_max_ns": 156190.0, "deser_p5_ns": 62761.5, "deser_p25_ns": 68259.5, "deser_p50_ns": 75858.5, "deser_p75_ns": 104390.5, "deser_p95_ns": 124649.75, "deser_p99_ns": 132925.44999999992, "deser_ci_low_ns": 81527.6234375, "deser_ci_high_ns": 90107.23072916667, "total_mean_ns": 133194.125, "total_median_ns": 116162.0, "total_std_ns": 35758.80239759892, "total_mad_ns": 19274.0, "total_cv": 0.2684713188182956, "total_min_ns": 87480.0, "total_max_ns": 224807.0, "total_p5_ns": 93152.0, "total_p25_ns": 103269.25, "total_p50_ns": 116162.0, "total_p75_ns": 172425.0, "total_p95_ns": 190487.75, "total_p99_ns": 215733.54999999996, "total_ci_low_ns": 126410.36979166667, "total_ci_high_ns": 140478.30729166666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.9922429078014184, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.756489045386752}, {"serializer": "moshi", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "1.15.2", "avg_time_ser_ns": 474464.3870967742, "avg_time_deser_ns": 1003624.9247311827, "avg_time_total_ns": 1478089.311827957, "median_size_bytes": 65958.0, "avg_ops_per_sec": 676.5491043050013, "min_ops_per_sec": 560.4350769589448, "max_ops_per_sec": 808.3002738521328, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 474464.3870967742, "ser_median_ns": 472584.0, "ser_std_ns": 43058.90237727251, "ser_mad_ns": 33571.0, "ser_cv": 0.09075265404164043, "ser_min_ns": 381667.0, "ser_max_ns": 616383.0, "ser_p5_ns": 405300.4, "ser_p25_ns": 440786.0, "ser_p50_ns": 472584.0, "ser_p75_ns": 507668.0, "ser_p95_ns": 533704.2, "ser_p99_ns": 555128.4799999999, "ser_ci_low_ns": 465956.7166666667, "ser_ci_high_ns": 483077.75349462364, "deser_mean_ns": 1003624.9247311827, "deser_median_ns": 1005891.0, "deser_std_ns": 79460.90348393607, "deser_mad_ns": 60607.0, "deser_cv": 0.07917390404111314, "deser_min_ns": 812541.0, "deser_max_ns": 1167945.0, "deser_p5_ns": 884922.6, "deser_p25_ns": 942529.0, "deser_p50_ns": 1005891.0, "deser_p75_ns": 1055559.0, "deser_p95_ns": 1130903.8, "deser_p99_ns": 1158762.48, "deser_ci_low_ns": 987854.0268817204, "deser_ci_high_ns": 1019886.4575268817, "total_mean_ns": 1478089.311827957, "total_median_ns": 1474523.0, "total_std_ns": 118204.53471125328, "total_mad_ns": 92544.0, "total_cv": 0.07997117208368784, "total_min_ns": 1237164.0, "total_max_ns": 1784328.0, "total_p5_ns": 1305248.2, "total_p25_ns": 1387410.0, "total_p50_ns": 1474523.0, "total_p75_ns": 1573334.0, "total_p95_ns": 1648129.0, "total_p99_ns": 1698410.1199999999, "total_ci_low_ns": 1454145.8330645163, "total_ci_high_ns": 1500478.9177419355, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.78777051153734}, {"serializer": "ion", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 392943.623655914, "avg_time_deser_ns": 1176643.9462365592, "avg_time_total_ns": 1569587.569892473, "median_size_bytes": 71558.0, "avg_ops_per_sec": 637.1100403582493, "min_ops_per_sec": 492.89176146207467, "max_ops_per_sec": 761.7811357090239, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 392943.623655914, "ser_median_ns": 391889.0, "ser_std_ns": 42103.87482630826, "ser_mad_ns": 33524.0, "ser_cv": 0.10714991233240381, "ser_min_ns": 319000.0, "ser_max_ns": 527139.0, "ser_p5_ns": 338823.8, "ser_p25_ns": 358325.0, "ser_p50_ns": 391889.0, "ser_p75_ns": 422619.0, "ser_p95_ns": 452300.0, "ser_p99_ns": 518730.2, "ser_ci_low_ns": 384693.89973118284, "ser_ci_high_ns": 401428.21962365595, "deser_mean_ns": 1176643.9462365592, "deser_median_ns": 1176994.0, "deser_std_ns": 107803.23739959777, "deser_mad_ns": 84993.0, "deser_cv": 0.0916192512989179, "deser_min_ns": 992704.0, "deser_max_ns": 1522547.0, "deser_p5_ns": 1017932.6, "deser_p25_ns": 1092637.0, "deser_p50_ns": 1176994.0, "deser_p75_ns": 1262570.0, "deser_p95_ns": 1322125.1999999997, "deser_p99_ns": 1504403.68, "deser_ci_low_ns": 1155214.2771505376, "deser_ci_high_ns": 1198803.3099462364, "total_mean_ns": 1569587.569892473, "total_median_ns": 1577052.0, "total_std_ns": 145866.57283876263, "total_mad_ns": 118208.0, "total_cv": 0.09293305810822357, "total_min_ns": 1312713.0, "total_max_ns": 2028843.0, "total_p5_ns": 1357934.2, "total_p25_ns": 1449947.0, "total_p50_ns": 1577052.0, "total_p75_ns": 1691756.0, "total_p95_ns": 1796037.5999999999, "total_p99_ns": 1947107.44, "total_ci_low_ns": 1540416.8392473117, "total_ci_high_ns": 1598882.7639784946, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.548060744681012}, {"serializer": "jsoniter", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "0.9.23", "avg_time_ser_ns": 85620.94680851063, "avg_time_deser_ns": 106597.1170212766, "avg_time_total_ns": 192218.06382978722, "median_size_bytes": 39143.0, "avg_ops_per_sec": 5202.424684110434, "min_ops_per_sec": 3391.8311139451744, "max_ops_per_sec": 7182.721245771173, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 85620.94680851063, "ser_median_ns": 84864.5, "ser_std_ns": 14960.775514203388, "ser_mad_ns": 12269.5, "ser_cv": 0.17473265680725106, "ser_min_ns": 64989.0, "ser_max_ns": 126854.0, "ser_p5_ns": 67218.15, "ser_p25_ns": 72689.5, "ser_p50_ns": 84864.5, "ser_p75_ns": 97016.75, "ser_p95_ns": 113806.59999999999, "ser_p99_ns": 117288.94999999992, "ser_ci_low_ns": 82743.14707446808, "ser_ci_high_ns": 88729.68430851062, "deser_mean_ns": 106597.1170212766, "deser_median_ns": 97392.0, "deser_std_ns": 27583.272027423558, "deser_mad_ns": 18651.5, "deser_cv": 0.2587618952388551, "deser_min_ns": 71197.0, "deser_max_ns": 172923.0, "deser_p5_ns": 75300.9, "deser_p25_ns": 81126.5, "deser_p50_ns": 97392.0, "deser_p75_ns": 132228.0, "deser_p95_ns": 151961.0, "deser_p99_ns": 168318.56999999998, "deser_ci_low_ns": 101310.1114361702, "deser_ci_high_ns": 112102.76037234043, "total_mean_ns": 192218.06382978722, "total_median_ns": 183784.5, "total_std_ns": 41399.893365612115, "total_mad_ns": 32356.5, "total_cv": 0.21537982716480025, "total_min_ns": 139223.0, "total_max_ns": 294826.0, "total_p5_ns": 142863.95, "total_p25_ns": 157140.75, "total_p50_ns": 183784.5, "total_p75_ns": 233558.5, "total_p95_ns": 263074.24999999994, "total_p99_ns": 280168.2699999999, "total_ci_low_ns": 183929.47313829788, "total_ci_high_ns": 200823.0255319149, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.270944032797895}, {"serializer": "fastjson2", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.0.57", "avg_time_ser_ns": 169174.1157894737, "avg_time_deser_ns": 199733.07368421054, "avg_time_total_ns": 368907.18947368424, "median_size_bytes": 65960.0, "avg_ops_per_sec": 2710.708895174119, "min_ops_per_sec": 1943.3701925879861, "max_ops_per_sec": 3469.740394023719, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 169174.1157894737, "ser_median_ns": 171376.0, "ser_std_ns": 20992.550029516882, "ser_mad_ns": 14887.0, "ser_cv": 0.1240884276625436, "ser_min_ns": 133053.0, "ser_max_ns": 235883.0, "ser_p5_ns": 136988.9, "ser_p25_ns": 150077.0, "ser_p50_ns": 171376.0, "ser_p75_ns": 183897.5, "ser_p95_ns": 197307.5, "ser_p99_ns": 218747.74000000005, "ser_ci_low_ns": 164769.48815789472, "ser_ci_high_ns": 173479.54315789472, "deser_mean_ns": 199733.07368421054, "deser_median_ns": 183273.0, "deser_std_ns": 40320.28232213989, "deser_mad_ns": 21898.0, "deser_cv": 0.20187083480169424, "deser_min_ns": 146304.0, "deser_max_ns": 319145.0, "deser_p5_ns": 156979.3, "deser_p25_ns": 167671.0, "deser_p50_ns": 183273.0, "deser_p75_ns": 234020.5, "deser_p95_ns": 264393.99999999994, "deser_p99_ns": 306079.94000000006, "deser_ci_low_ns": 191405.99631578947, "deser_ci_high_ns": 208378.86315789472, "total_mean_ns": 368907.18947368424, "total_median_ns": 351820.0, "total_std_ns": 58270.25890428349, "total_mad_ns": 38209.0, "total_cv": 0.15795370913594017, "total_min_ns": 288206.0, "total_max_ns": 514570.0, "total_p5_ns": 299711.9, "total_p25_ns": 317233.0, "total_p50_ns": 351820.0, "total_p75_ns": 416289.0, "total_p95_ns": 479359.99999999994, "total_p99_ns": 497475.16000000003, "total_ci_low_ns": 357030.43842105265, "total_ci_high_ns": 380336.8139473684, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.211772610191259}, {"serializer": "avro", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "1.12.0", "avg_time_ser_ns": 42239.9693877551, "avg_time_deser_ns": 125778.5306122449, "avg_time_total_ns": 168018.5, "median_size_bytes": 28835.0, "avg_ops_per_sec": 5951.725554031253, "min_ops_per_sec": 3186.6822176758888, "max_ops_per_sec": 9407.24922625375, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 42239.9693877551, "ser_median_ns": 33915.0, "ser_std_ns": 17179.36430748712, "ser_mad_ns": 5434.0, "ser_cv": 0.4067087300604727, "ser_min_ns": 26690.0, "ser_max_ns": 85765.0, "ser_p5_ns": 27035.85, "ser_p25_ns": 29927.5, "ser_p50_ns": 33915.0, "ser_p75_ns": 51387.75, "ser_p95_ns": 80639.64999999998, "ser_p99_ns": 84485.57, "ser_ci_low_ns": 38951.89821428571, "ser_ci_high_ns": 45715.4706632653, "deser_mean_ns": 125778.5306122449, "deser_median_ns": 104381.5, "deser_std_ns": 42655.969073894856, "deser_mad_ns": 22362.0, "deser_cv": 0.33913553343532366, "deser_min_ns": 78520.0, "deser_max_ns": 229912.0, "deser_p5_ns": 81316.0, "deser_p25_ns": 89928.75, "deser_p50_ns": 104381.5, "deser_p75_ns": 167914.75, "deser_p95_ns": 193071.99999999988, "deser_p99_ns": 224652.66, "deser_ci_low_ns": 117611.69770408164, "deser_ci_high_ns": 133896.65025510202, "total_mean_ns": 168018.5, "total_median_ns": 136940.5, "total_std_ns": 58039.7693175821, "total_mad_ns": 25892.5, "total_cv": 0.3454367781975324, "total_min_ns": 106301.0, "total_max_ns": 313806.0, "total_p5_ns": 109292.85, "total_p25_ns": 119594.0, "total_p50_ns": 136940.5, "total_p75_ns": 226003.0, "total_p95_ns": 265314.89999999997, "total_p99_ns": 288317.31000000006, "total_ci_low_ns": 156386.30612244896, "total_ci_high_ns": 179265.6288265306, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.9997828918801563, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.6225528418515713}, {"serializer": "gson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.12.1", "avg_time_ser_ns": 531619.8181818182, "avg_time_deser_ns": 852899.4431818182, "avg_time_total_ns": 1384519.2613636365, "median_size_bytes": 65958.0, "avg_ops_per_sec": 722.2723640659814, "min_ops_per_sec": 608.9299578316004, "max_ops_per_sec": 888.8478043681537, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 531619.8181818182, "ser_median_ns": 529070.0, "ser_std_ns": 47132.186229244355, "ser_mad_ns": 38890.5, "ser_cv": 0.08865769224036861, "ser_min_ns": 429324.0, "ser_max_ns": 653653.0, "ser_p5_ns": 459354.55, "ser_p25_ns": 497773.25, "ser_p50_ns": 529070.0, "ser_p75_ns": 572331.5, "ser_p95_ns": 601858.4, "ser_p99_ns": 636212.1099999999, "ser_ci_low_ns": 521828.90340909094, "ser_ci_high_ns": 541958.546875, "deser_mean_ns": 852899.4431818182, "deser_median_ns": 844635.5, "deser_std_ns": 81986.85370703247, "deser_mad_ns": 59850.0, "deser_cv": 0.09612722151766581, "deser_min_ns": 689252.0, "deser_max_ns": 1005051.0, "deser_p5_ns": 721730.05, "deser_p25_ns": 790800.25, "deser_p50_ns": 844635.5, "deser_p75_ns": 910482.25, "deser_p95_ns": 988264.35, "deser_p99_ns": 1003390.17, "deser_ci_low_ns": 835420.8369318182, "deser_ci_high_ns": 869707.5607954545, "total_mean_ns": 1384519.2613636365, "total_median_ns": 1373768.0, "total_std_ns": 127318.44967544371, "total_mad_ns": 97782.0, "total_cv": 0.0919585976362984, "total_min_ns": 1125052.0, "total_max_ns": 1642225.0, "total_p5_ns": 1183521.15, "total_p25_ns": 1283015.0, "total_p50_ns": 1373768.0, "total_p75_ns": 1481419.5, "total_p95_ns": 1581840.9, "total_p99_ns": 1637453.92, "total_ci_low_ns": 1358921.6619318181, "total_ci_high_ns": 1411179.5008522726, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.78850632506979}, {"serializer": "msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "0.9.8", "avg_time_ser_ns": 101893.52631578948, "avg_time_deser_ns": 135657.74736842106, "avg_time_total_ns": 237551.27368421052, "median_size_bytes": 34635.0, "avg_ops_per_sec": 4209.617504848039, "min_ops_per_sec": 3086.5150158955526, "max_ops_per_sec": 6147.0371281042535, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 101893.52631578948, "ser_median_ns": 95404.0, "ser_std_ns": 17848.64983560626, "ser_mad_ns": 13085.0, "ser_cv": 0.1751696155876433, "ser_min_ns": 71935.0, "ser_max_ns": 138640.0, "ser_p5_ns": 81011.5, "ser_p25_ns": 87022.5, "ser_p50_ns": 95404.0, "ser_p75_ns": 117277.0, "ser_p95_ns": 132059.2, "ser_p99_ns": 136093.54, "ser_ci_low_ns": 98336.62236842106, "ser_ci_high_ns": 105498.31526315789, "deser_mean_ns": 135657.74736842106, "deser_median_ns": 127218.0, "deser_std_ns": 25988.103017869795, "deser_mad_ns": 18425.0, "deser_cv": 0.1915710935940206, "deser_min_ns": 90745.0, "deser_max_ns": 191298.0, "deser_p5_ns": 105541.4, "deser_p25_ns": 113695.0, "deser_p50_ns": 127218.0, "deser_p75_ns": 161558.0, "deser_p95_ns": 178733.6, "deser_p99_ns": 186397.78, "deser_ci_low_ns": 130606.87684210527, "deser_ci_high_ns": 140758.58315789473, "total_mean_ns": 237551.27368421052, "total_median_ns": 222094.0, "total_std_ns": 42813.07208294704, "total_mad_ns": 32168.0, "total_cv": 0.18022665767669477, "total_min_ns": 162680.0, "total_max_ns": 323990.0, "total_p5_ns": 186806.2, "total_p25_ns": 200632.0, "total_p50_ns": 222094.0, "total_p75_ns": 274660.0, "total_p95_ns": 307430.7, "total_p99_ns": 322270.74, "total_ci_low_ns": 228769.62289473685, "total_ci_high_ns": 246247.3110526316, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.497248114656491}, {"serializer": "dsl-json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.0.2", "avg_time_ser_ns": 387048.0319148936, "avg_time_deser_ns": 200363.74468085106, "avg_time_total_ns": 587411.7765957447, "median_size_bytes": 65958.0, "avg_ops_per_sec": 1702.3833022132233, "min_ops_per_sec": 1369.8611371765244, "max_ops_per_sec": 2180.811043627125, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 387048.0319148936, "ser_median_ns": 396040.0, "ser_std_ns": 36209.86743863752, "ser_mad_ns": 24576.5, "ser_cv": 0.09355393763273175, "ser_min_ns": 315537.0, "ser_max_ns": 466528.0, "ser_p5_ns": 326719.55, "ser_p25_ns": 354320.0, "ser_p50_ns": 396040.0, "ser_p75_ns": 412958.0, "ser_p95_ns": 447823.55, "ser_p99_ns": 455473.0899999999, "ser_ci_low_ns": 379405.4861702128, "ser_ci_high_ns": 393985.91170212766, "deser_mean_ns": 200363.74468085106, "deser_median_ns": 194919.0, "deser_std_ns": 37104.96905190346, "deser_mad_ns": 36657.0, "deser_cv": 0.18518803943800327, "deser_min_ns": 141123.0, "deser_max_ns": 277020.0, "deser_p5_ns": 150600.6, "deser_p25_ns": 167798.5, "deser_p50_ns": 194919.0, "deser_p75_ns": 240353.5, "deser_p95_ns": 256400.35, "deser_p99_ns": 274919.13, "deser_ci_low_ns": 193174.31489361703, "deser_ci_high_ns": 208015.7590425532, "total_mean_ns": 587411.7765957447, "total_median_ns": 594574.5, "total_std_ns": 71426.366370445, "total_mad_ns": 65842.5, "total_cv": 0.12159505344680968, "total_min_ns": 458545.0, "total_max_ns": 730001.0, "total_p5_ns": 476842.0, "total_p25_ns": 524071.5, "total_p50_ns": 594574.5, "total_p75_ns": 653252.25, "total_p95_ns": 691652.4, "total_p99_ns": 722129.48, "total_ci_low_ns": 572901.2332446808, "total_ci_high_ns": 601176.7566489362, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.15152863567182}, {"serializer": "protostuff", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "1.8.0", "avg_time_ser_ns": 48925.8969072165, "avg_time_deser_ns": 60476.48453608248, "avg_time_total_ns": 109402.38144329897, "median_size_bytes": 32533.0, "avg_ops_per_sec": 9140.568850581005, "min_ops_per_sec": 5184.355688275061, "max_ops_per_sec": 14364.51390484946, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 48925.8969072165, "ser_median_ns": 48967.0, "ser_std_ns": 8210.112614032436, "ser_mad_ns": 5941.0, "ser_cv": 0.16780709466812976, "ser_min_ns": 36437.0, "ser_max_ns": 71719.0, "ser_p5_ns": 38010.2, "ser_p25_ns": 42467.0, "ser_p50_ns": 48967.0, "ser_p75_ns": 54033.0, "ser_p95_ns": 64754.0, "ser_p99_ns": 71167.0, "ser_ci_low_ns": 47164.0618556701, "ser_ci_high_ns": 50523.96056701031, "deser_mean_ns": 60476.48453608248, "deser_median_ns": 54654.0, "deser_std_ns": 23667.39069554766, "deser_mad_ns": 17568.0, "deser_cv": 0.3913486519115844, "deser_min_ns": 33103.0, "deser_max_ns": 134637.0, "deser_p5_ns": 34969.6, "deser_p25_ns": 40130.0, "deser_p50_ns": 54654.0, "deser_p75_ns": 84798.0, "deser_p95_ns": 94216.99999999999, "deser_p99_ns": 123332.0399999999, "deser_ci_low_ns": 55925.345360824744, "deser_ci_high_ns": 65447.270876288654, "total_mean_ns": 109402.38144329897, "total_median_ns": 104488.0, "total_std_ns": 30203.46012788494, "total_mad_ns": 27591.0, "total_cv": 0.2760768068247105, "total_min_ns": 69616.0, "total_max_ns": 192888.0, "total_p5_ns": 73237.4, "total_p25_ns": 83202.0, "total_p50_ns": 104488.0, "total_p75_ns": 136906.0, "total_p95_ns": 156000.59999999998, "total_p99_ns": 189152.63999999996, "total_ci_low_ns": 103529.92706185568, "total_ci_high_ns": 115740.23041237112, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.926518973459092, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.1946148315154597}, {"serializer": "jackson-smile", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 55194.857142857145, "avg_time_deser_ns": 88560.38775510204, "avg_time_total_ns": 143755.24489795917, "median_size_bytes": 39256.0, "avg_ops_per_sec": 6956.267931022783, "min_ops_per_sec": 3627.6967390634013, "max_ops_per_sec": 11503.11159168555, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 55194.857142857145, "ser_median_ns": 46220.0, "ser_std_ns": 20422.516567971543, "ser_mad_ns": 8535.5, "ser_cv": 0.3700075989890383, "ser_min_ns": 31297.0, "ser_max_ns": 114767.0, "ser_p5_ns": 33860.85, "ser_p25_ns": 39355.0, "ser_p50_ns": 46220.0, "ser_p75_ns": 75120.5, "ser_p95_ns": 90589.15, "ser_p99_ns": 102726.39000000001, "ser_ci_low_ns": 51388.205357142855, "ser_ci_high_ns": 59315.40051020408, "deser_mean_ns": 88560.38775510204, "deser_median_ns": 75887.5, "deser_std_ns": 27428.201463048586, "deser_mad_ns": 12364.0, "deser_cv": 0.30971184926263406, "deser_min_ns": 54897.0, "deser_max_ns": 177667.0, "deser_p5_ns": 59320.1, "deser_p25_ns": 68016.75, "deser_p50_ns": 75887.5, "deser_p75_ns": 112868.0, "deser_p95_ns": 133394.9, "deser_p99_ns": 161393.31000000003, "deser_ci_low_ns": 83438.71326530613, "deser_ci_high_ns": 94158.07117346939, "total_mean_ns": 143755.24489795917, "total_median_ns": 121713.0, "total_std_ns": 46422.08205910516, "total_mad_ns": 19250.0, "total_cv": 0.32292444071906135, "total_min_ns": 86933.0, "total_max_ns": 275657.0, "total_p5_ns": 93432.7, "total_p25_ns": 108704.0, "total_p50_ns": 121713.0, "total_p75_ns": 190192.75, "total_p95_ns": 222484.05, "total_p99_ns": 250269.19000000003, "total_ci_low_ns": 134697.56785714286, "total_ci_high_ns": 152862.45637755102, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.9943551888840643, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.5170034737635305}, {"serializer": "msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "0.9.8", "avg_time_ser_ns": 80772.90361445783, "avg_time_deser_ns": 114942.50602409638, "avg_time_total_ns": 195715.4096385542, "median_size_bytes": 34635.0, "avg_ops_per_sec": 5109.459709109225, "min_ops_per_sec": 4240.666293488033, "max_ops_per_sec": 5844.911128126297, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 80772.90361445783, "ser_median_ns": 79803.0, "ser_std_ns": 5916.632782115298, "ser_mad_ns": 3705.0, "ser_cv": 0.07325021780022105, "ser_min_ns": 67643.0, "ser_max_ns": 100177.0, "ser_p5_ns": 72392.8, "ser_p25_ns": 76959.0, "ser_p50_ns": 79803.0, "ser_p75_ns": 84049.5, "ser_p95_ns": 91296.0, "ser_p99_ns": 94381.23999999995, "ser_ci_low_ns": 79591.91234939758, "ser_ci_high_ns": 81996.9954819277, "deser_mean_ns": 114942.50602409638, "deser_median_ns": 112903.0, "deser_std_ns": 7120.498570125436, "deser_mad_ns": 4127.0, "deser_cv": 0.06194834980048813, "deser_min_ns": 103446.0, "deser_max_ns": 135635.0, "deser_p5_ns": 104815.3, "deser_p25_ns": 110110.5, "deser_p50_ns": 112903.0, "deser_p75_ns": 119870.0, "deser_p95_ns": 126426.3, "deser_p99_ns": 133492.33999999997, "deser_ci_low_ns": 113448.35963855422, "deser_ci_high_ns": 116464.51325301205, "total_mean_ns": 195715.4096385542, "total_median_ns": 193241.0, "total_std_ns": 12352.89205797588, "total_mad_ns": 7249.0, "total_cv": 0.0631166042612031, "total_min_ns": 171089.0, "total_max_ns": 235812.0, "total_p5_ns": 178620.5, "total_p25_ns": 187646.5, "total_p50_ns": 193241.0, "total_p75_ns": 203400.5, "total_p95_ns": 218279.6, "total_p99_ns": 226091.7199999999, "total_ci_low_ns": 193104.91325301203, "total_ci_high_ns": 198261.66837349397, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.982343814702663}, {"serializer": "avro", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "1.12.0", "avg_time_ser_ns": 27751.17777777778, "avg_time_deser_ns": 90534.6888888889, "avg_time_total_ns": 118285.86666666667, "median_size_bytes": 28835.0, "avg_ops_per_sec": 8454.095389249096, "min_ops_per_sec": 6586.400400453144, "max_ops_per_sec": 9979.243174197669, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 27751.17777777778, "ser_median_ns": 27355.0, "ser_std_ns": 2508.9502956450688, "ser_mad_ns": 1672.0, "ser_cv": 0.09040878609678876, "ser_min_ns": 21332.0, "ser_max_ns": 33817.0, "ser_p5_ns": 24483.85, "ser_p25_ns": 26059.0, "ser_p50_ns": 27355.0, "ser_p75_ns": 29442.25, "ser_p95_ns": 32368.0, "ser_p99_ns": 33702.19, "ser_ci_low_ns": 27251.300555555554, "ser_ci_high_ns": 28249.167222222222, "deser_mean_ns": 90534.6888888889, "deser_median_ns": 88486.0, "deser_std_ns": 8431.697749316576, "deser_mad_ns": 4777.0, "deser_cv": 0.09313223310089022, "deser_min_ns": 76833.0, "deser_max_ns": 118011.0, "deser_p5_ns": 79967.95, "deser_p25_ns": 84929.5, "deser_p50_ns": 88486.0, "deser_p75_ns": 95497.5, "deser_p95_ns": 106624.15, "deser_p99_ns": 109927.12999999999, "deser_ci_low_ns": 88846.44777777778, "deser_ci_high_ns": 92300.99027777778, "total_mean_ns": 118285.86666666667, "total_median_ns": 116993.0, "total_std_ns": 10149.479972508914, "total_mad_ns": 6429.0, "total_cv": 0.08580467183886366, "total_min_ns": 100208.0, "total_max_ns": 151828.0, "total_p5_ns": 103938.1, "total_p25_ns": 111240.75, "total_p50_ns": 116993.0, "total_p75_ns": 124590.25, "total_p95_ns": 136131.2, "total_p99_ns": 140255.33, "total_ci_low_ns": 116240.02249999999, "total_ci_high_ns": 120368.55444444444, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.124273236958706}, {"serializer": "hessian", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "4.0.66", "avg_time_ser_ns": 47249.52688172043, "avg_time_deser_ns": 50140.41935483871, "avg_time_total_ns": 97389.94623655915, "median_size_bytes": 32495.0, "avg_ops_per_sec": 10268.000329017645, "min_ops_per_sec": 7863.118827451721, "max_ops_per_sec": 12480.03194888179, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 47249.52688172043, "ser_median_ns": 45089.0, "ser_std_ns": 6464.746737685993, "ser_mad_ns": 3793.0, "ser_cv": 0.13682140678083762, "ser_min_ns": 38381.0, "ser_max_ns": 67370.0, "ser_p5_ns": 40680.2, "ser_p25_ns": 41812.0, "ser_p50_ns": 45089.0, "ser_p75_ns": 50576.0, "ser_p95_ns": 59458.59999999999, "ser_p99_ns": 66891.6, "ser_ci_low_ns": 45983.676612903226, "ser_ci_high_ns": 48615.7876344086, "deser_mean_ns": 50140.41935483871, "deser_median_ns": 48579.0, "deser_std_ns": 5851.962854132198, "deser_mad_ns": 3826.0, "deser_cv": 0.1167114860511725, "deser_min_ns": 41240.0, "deser_max_ns": 67915.0, "deser_p5_ns": 43461.6, "deser_p25_ns": 45406.0, "deser_p50_ns": 48579.0, "deser_p75_ns": 53624.0, "deser_p95_ns": 60790.8, "deser_p99_ns": 67259.04, "deser_ci_low_ns": 48984.61505376344, "deser_ci_high_ns": 51323.09784946236, "total_mean_ns": 97389.94623655915, "total_median_ns": 95762.0, "total_std_ns": 11133.755278202596, "total_mad_ns": 8190.0, "total_cv": 0.11432140285978619, "total_min_ns": 80128.0, "total_max_ns": 127176.0, "total_p5_ns": 84216.8, "total_p25_ns": 87635.0, "total_p50_ns": 95762.0, "total_p75_ns": 104511.0, "total_p95_ns": 116732.4, "total_p99_ns": 119356.91999999998, "total_ci_low_ns": 95098.72365591399, "total_ci_high_ns": 99598.05510752689, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.985031452354271}, {"serializer": "bson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "5.3.1", "avg_time_ser_ns": 182068.26086956522, "avg_time_deser_ns": 126863.80434782608, "avg_time_total_ns": 308932.0652173913, "median_size_bytes": 46739.0, "avg_ops_per_sec": 3236.9576116882317, "min_ops_per_sec": 2847.1534160146684, "max_ops_per_sec": 3824.2965206550257, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 182068.26086956522, "ser_median_ns": 180846.5, "ser_std_ns": 10743.405014976146, "ser_mad_ns": 6599.5, "ser_cv": 0.05900756652293606, "ser_min_ns": 152591.0, "ser_max_ns": 211100.0, "ser_p5_ns": 167660.2, "ser_p25_ns": 174629.75, "ser_p50_ns": 180846.5, "ser_p75_ns": 188344.25, "ser_p95_ns": 203405.9, "ser_p99_ns": 205519.88000000003, "ser_ci_low_ns": 179988.29048913045, "ser_ci_high_ns": 184249.03777173912, "deser_mean_ns": 126863.80434782608, "deser_median_ns": 124905.0, "deser_std_ns": 9736.613956911046, "deser_mad_ns": 4996.5, "deser_cv": 0.07674855729705138, "deser_min_ns": 105966.0, "deser_max_ns": 151592.0, "deser_p5_ns": 114370.45, "deser_p25_ns": 120570.5, "deser_p50_ns": 124905.0, "deser_p75_ns": 130646.5, "deser_p95_ns": 146777.05, "deser_p99_ns": 150545.5, "deser_ci_low_ns": 124868.27146739131, "deser_ci_high_ns": 128821.16005434783, "total_mean_ns": 308932.0652173913, "total_median_ns": 307691.5, "total_std_ns": 17996.76432566427, "total_mad_ns": 11802.0, "total_cv": 0.058254763269718186, "total_min_ns": 261486.0, "total_max_ns": 351228.0, "total_p5_ns": 283713.7, "total_p25_ns": 296164.75, "total_p50_ns": 307691.5, "total_p75_ns": 320553.75, "total_p95_ns": 339308.35, "total_p99_ns": 350580.99, "total_ci_low_ns": 305452.4375, "total_ci_high_ns": 312904.2293478261, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.429917237952807}, {"serializer": "jackson-smile", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 31971.404494382023, "avg_time_deser_ns": 75537.32584269663, "avg_time_total_ns": 107508.73033707865, "median_size_bytes": 39256.0, "avg_ops_per_sec": 9301.570178204498, "min_ops_per_sec": 7739.578657337895, "max_ops_per_sec": 10902.747492368077, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 31971.404494382023, "ser_median_ns": 31186.0, "ser_std_ns": 3327.8519065303603, "ser_mad_ns": 2275.0, "ser_cv": 0.10408838645531279, "ser_min_ns": 26048.0, "ser_max_ns": 39978.0, "ser_p5_ns": 27541.8, "ser_p25_ns": 29541.0, "ser_p50_ns": 31186.0, "ser_p75_ns": 34426.0, "ser_p95_ns": 38519.4, "ser_p99_ns": 39615.44, "ser_ci_low_ns": 31295.182584269663, "ser_ci_high_ns": 32672.08904494382, "deser_mean_ns": 75537.32584269663, "deser_median_ns": 73834.0, "deser_std_ns": 6090.775386851378, "deser_mad_ns": 3497.0, "deser_cv": 0.08063265834344158, "deser_min_ns": 64171.0, "deser_max_ns": 92984.0, "deser_p5_ns": 67539.8, "deser_p25_ns": 71487.0, "deser_p50_ns": 73834.0, "deser_p75_ns": 78838.0, "deser_p95_ns": 87879.59999999999, "deser_p99_ns": 90667.84000000001, "deser_ci_low_ns": 74212.5738764045, "deser_ci_high_ns": 76780.11938202247, "total_mean_ns": 107508.73033707865, "total_median_ns": 105108.0, "total_std_ns": 9005.21233756525, "total_mad_ns": 5078.0, "total_cv": 0.08376261452749614, "total_min_ns": 91720.0, "total_max_ns": 129206.0, "total_p5_ns": 95099.8, "total_p25_ns": 101269.0, "total_p50_ns": 105108.0, "total_p75_ns": 113162.0, "total_p95_ns": 125356.8, "total_p99_ns": 128788.0, "total_ci_low_ns": 105762.37808988764, "total_ci_high_ns": 109366.91544943821, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.64845127071107}, {"serializer": "moshi", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "1.15.2", "avg_time_ser_ns": 432493.9, "avg_time_deser_ns": 952043.6222222223, "avg_time_total_ns": 1384537.5222222223, "median_size_bytes": 65958.0, "avg_ops_per_sec": 722.2628379149822, "min_ops_per_sec": 684.3540245491475, "max_ops_per_sec": 766.8464666015359, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 432493.9, "ser_median_ns": 431092.0, "ser_std_ns": 20307.01603672313, "ser_mad_ns": 16750.5, "ser_cv": 0.04695330046671902, "ser_min_ns": 390303.0, "ser_max_ns": 481041.0, "ser_p5_ns": 404092.9, "ser_p25_ns": 415518.0, "ser_p50_ns": 431092.0, "ser_p75_ns": 447871.0, "ser_p95_ns": 465567.55, "ser_p99_ns": 477045.79, "ser_ci_low_ns": 428323.3113888889, "ser_ci_high_ns": 436882.0788888889, "deser_mean_ns": 952043.6222222223, "deser_median_ns": 957333.5, "deser_std_ns": 22768.792537341313, "deser_mad_ns": 14455.5, "deser_cv": 0.023915703026501353, "deser_min_ns": 893867.0, "deser_max_ns": 1013806.0, "deser_p5_ns": 911462.0, "deser_p25_ns": 936375.5, "deser_p50_ns": 957333.5, "deser_p75_ns": 966795.25, "deser_p95_ns": 985000.7999999999, "deser_p99_ns": 998820.1799999999, "deser_ci_low_ns": 947457.7908333334, "deser_ci_high_ns": 956747.4827777777, "total_mean_ns": 1384537.5222222223, "total_median_ns": 1383260.0, "total_std_ns": 35683.342177708226, "total_mad_ns": 22610.5, "total_cv": 0.025772751987562924, "total_min_ns": 1304042.0, "total_max_ns": 1461232.0, "total_p5_ns": 1329623.5, "total_p25_ns": 1362587.5, "total_p50_ns": 1383260.0, "total_p75_ns": 1407130.25, "total_p95_ns": 1447869.1, "total_p99_ns": 1458793.4, "total_ci_low_ns": 1377470.1936111113, "total_ci_high_ns": 1391756.1683333335, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 52.77561609255564}, {"serializer": "ion", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 345745.48913043475, "avg_time_deser_ns": 1150452.0869565217, "avg_time_total_ns": 1496197.5760869565, "median_size_bytes": 71558.0, "avg_ops_per_sec": 668.3609277160609, "min_ops_per_sec": 620.8268793205671, "max_ops_per_sec": 730.466592840843, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 345745.48913043475, "ser_median_ns": 345312.5, "ser_std_ns": 17139.215437500847, "ser_mad_ns": 12090.5, "ser_cv": 0.04957176876148618, "ser_min_ns": 302786.0, "ser_max_ns": 394214.0, "ser_p5_ns": 320046.85, "ser_p25_ns": 333592.5, "ser_p50_ns": 345312.5, "ser_p75_ns": 357581.0, "ser_p95_ns": 370647.8, "ser_p99_ns": 385552.62000000005, "ser_ci_low_ns": 342162.41576086957, "ser_ci_high_ns": 349257.6445652174, "deser_mean_ns": 1150452.0869565217, "deser_median_ns": 1152215.5, "deser_std_ns": 39089.50189963523, "deser_mad_ns": 25933.0, "deser_cv": 0.03397751400759771, "deser_min_ns": 1059150.0, "deser_max_ns": 1241520.0, "deser_p5_ns": 1084637.25, "deser_p25_ns": 1123391.75, "deser_p50_ns": 1152215.5, "deser_p75_ns": 1176637.25, "deser_p95_ns": 1213665.0, "deser_p99_ns": 1238712.65, "deser_ci_low_ns": 1142859.4472826088, "deser_ci_high_ns": 1158657.8421195652, "total_mean_ns": 1496197.5760869565, "total_median_ns": 1497509.5, "total_std_ns": 51198.71423549398, "total_mad_ns": 32950.5, "total_cv": 0.03421922014430425, "total_min_ns": 1368988.0, "total_max_ns": 1610755.0, "total_p5_ns": 1419199.85, "total_p25_ns": 1462386.25, "total_p50_ns": 1497509.5, "total_p75_ns": 1528035.5, "total_p95_ns": 1580930.5, "total_p99_ns": 1602969.95, "total_ci_low_ns": 1485817.4067934782, "total_ci_high_ns": 1506654.866576087, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 39.84322126673465}, {"serializer": "protostuff", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "1.8.0", "avg_time_ser_ns": 38875.91111111111, "avg_time_deser_ns": 37778.4, "avg_time_total_ns": 76654.3111111111, "median_size_bytes": 32533.0, "avg_ops_per_sec": 13045.580679089153, "min_ops_per_sec": 11053.143514015386, "max_ops_per_sec": 14979.478114982474, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 38875.91111111111, "ser_median_ns": 38193.5, "ser_std_ns": 3120.634394753389, "ser_mad_ns": 1737.0, "ser_cv": 0.08027167224028048, "ser_min_ns": 33948.0, "ser_max_ns": 47480.0, "ser_p5_ns": 34833.35, "ser_p25_ns": 36650.75, "ser_p50_ns": 38193.5, "ser_p75_ns": 40135.5, "ser_p95_ns": 45080.9, "ser_p99_ns": 46951.34, "ser_ci_low_ns": 38240.466944444444, "ser_ci_high_ns": 39498.88777777778, "deser_mean_ns": 37778.4, "deser_median_ns": 37562.5, "deser_std_ns": 2639.6779842765213, "deser_mad_ns": 1885.0, "deser_cv": 0.06987267815144424, "deser_min_ns": 32737.0, "deser_max_ns": 45044.0, "deser_p5_ns": 34013.25, "deser_p25_ns": 35832.25, "deser_p50_ns": 37562.5, "deser_p75_ns": 39499.5, "deser_p95_ns": 42947.6, "deser_p99_ns": 44374.72, "deser_ci_low_ns": 37231.66972222222, "deser_ci_high_ns": 38316.4175, "total_mean_ns": 76654.3111111111, "total_median_ns": 75819.5, "total_std_ns": 5480.392909404232, "total_mad_ns": 3624.5, "total_cv": 0.07149490785274104, "total_min_ns": 66758.0, "total_max_ns": 90472.0, "total_p5_ns": 69002.55, "total_p25_ns": 72851.0, "total_p50_ns": 75819.5, "total_p75_ns": 79753.25, "total_p95_ns": 86620.4, "total_p99_ns": 88581.64, "total_ci_low_ns": 75555.5625, "total_ci_high_ns": 77724.11027777777, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.487111271763631}, {"serializer": "jsoniter", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "0.9.23", "avg_time_ser_ns": 73818.91111111111, "avg_time_deser_ns": 80723.32222222222, "avg_time_total_ns": 154542.23333333334, "median_size_bytes": 39143.0, "avg_ops_per_sec": 6470.723105463943, "min_ops_per_sec": 5512.223355290356, "max_ops_per_sec": 7355.861886337222, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 73818.91111111111, "ser_median_ns": 72734.5, "ser_std_ns": 5551.103523542742, "ser_mad_ns": 3520.5, "ser_cv": 0.07519893534039407, "ser_min_ns": 64902.0, "ser_max_ns": 87380.0, "ser_p5_ns": 67100.6, "ser_p25_ns": 69850.0, "ser_p50_ns": 72734.5, "ser_p75_ns": 76859.5, "ser_p95_ns": 84936.85, "ser_p99_ns": 87043.58, "ser_ci_low_ns": 72705.3586111111, "ser_ci_high_ns": 74903.15, "deser_mean_ns": 80723.32222222222, "deser_median_ns": 80114.0, "deser_std_ns": 5424.758009054781, "deser_mad_ns": 3637.5, "deser_cv": 0.0672018675609142, "deser_min_ns": 71044.0, "deser_max_ns": 94476.0, "deser_p5_ns": 73246.9, "deser_p25_ns": 76826.25, "deser_p50_ns": 80114.0, "deser_p75_ns": 83882.5, "deser_p95_ns": 90715.65, "deser_p99_ns": 93287.85, "deser_ci_low_ns": 79659.09722222223, "deser_ci_high_ns": 81783.1738888889, "total_mean_ns": 154542.23333333334, "total_median_ns": 152947.5, "total_std_ns": 10381.509806684773, "total_mad_ns": 6658.0, "total_cv": 0.06717587537571568, "total_min_ns": 135946.0, "total_max_ns": 181415.0, "total_p5_ns": 140532.3, "total_p25_ns": 146362.0, "total_p50_ns": 152947.5, "total_p75_ns": 159561.5, "total_p95_ns": 173676.5, "total_p99_ns": 178948.81, "total_ci_low_ns": 152398.72444444444, "total_ci_high_ns": 156689.69638888887, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.323086011573881}, {"serializer": "protobuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "4.28.3", "avg_time_ser_ns": 27381.63529411765, "avg_time_deser_ns": 41175.95294117647, "avg_time_total_ns": 68557.58823529411, "median_size_bytes": 29432.0, "avg_ops_per_sec": 14586.277401823629, "min_ops_per_sec": 10722.825679022935, "max_ops_per_sec": 17347.558331164888, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 27381.63529411765, "ser_median_ns": 26495.0, "ser_std_ns": 3056.9730354086682, "ser_mad_ns": 1860.0, "ser_cv": 0.11164318721553466, "ser_min_ns": 23447.0, "ser_max_ns": 37739.0, "ser_p5_ns": 24070.6, "ser_p25_ns": 25039.0, "ser_p50_ns": 26495.0, "ser_p75_ns": 28883.0, "ser_p95_ns": 33422.799999999996, "ser_p99_ns": 36100.99999999999, "ser_ci_low_ns": 26777.274411764705, "ser_ci_high_ns": 28057.847352941175, "deser_mean_ns": 41175.95294117647, "deser_median_ns": 39922.0, "deser_std_ns": 6459.066901329816, "deser_mad_ns": 3562.0, "deser_cv": 0.15686502533547117, "deser_min_ns": 31982.0, "deser_max_ns": 64733.0, "deser_p5_ns": 34256.0, "deser_p25_ns": 36510.0, "deser_p50_ns": 39922.0, "deser_p75_ns": 43760.0, "deser_p95_ns": 53743.0, "deser_p99_ns": 62559.079999999994, "deser_ci_low_ns": 39791.15088235294, "deser_ci_high_ns": 42610.702647058824, "total_mean_ns": 68557.58823529411, "total_median_ns": 66752.0, "total_std_ns": 8661.035610152872, "total_mad_ns": 5429.0, "total_cv": 0.12633226799676256, "total_min_ns": 57645.0, "total_max_ns": 93259.0, "total_p5_ns": 58584.6, "total_p25_ns": 61461.0, "total_p50_ns": 66752.0, "total_p75_ns": 72360.0, "total_p95_ns": 87266.8, "total_p99_ns": 92507.2, "total_ci_low_ns": 66714.94499999999, "total_ci_high_ns": 70359.68147058824, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.5508169830222345}, {"serializer": "jackson-cbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 28511.66265060241, "avg_time_deser_ns": 72788.78313253012, "avg_time_total_ns": 101300.44578313253, "median_size_bytes": 34634.0, "avg_ops_per_sec": 9871.62487064306, "min_ops_per_sec": 7928.390774524495, "max_ops_per_sec": 11708.916339792751, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 28511.66265060241, "ser_median_ns": 28112.0, "ser_std_ns": 3116.2477878133227, "ser_mad_ns": 2176.0, "ser_cv": 0.1092973014587587, "ser_min_ns": 20826.0, "ser_max_ns": 36570.0, "ser_p5_ns": 24354.5, "ser_p25_ns": 26138.0, "ser_p50_ns": 28112.0, "ser_p75_ns": 30480.0, "ser_p95_ns": 33749.6, "ser_p99_ns": 35559.75999999999, "ser_ci_low_ns": 27863.985542168673, "ser_ci_high_ns": 29169.552108433734, "deser_mean_ns": 72788.78313253012, "deser_median_ns": 71431.0, "deser_std_ns": 5923.768222372896, "deser_mad_ns": 3213.0, "deser_cv": 0.08138298192988334, "deser_min_ns": 62074.0, "deser_max_ns": 96081.0, "deser_p5_ns": 66672.5, "deser_p25_ns": 68696.0, "deser_p50_ns": 71431.0, "deser_p75_ns": 75732.5, "deser_p95_ns": 84062.9, "deser_p99_ns": 91113.43999999996, "deser_ci_low_ns": 71500.71897590361, "deser_ci_high_ns": 74137.50331325302, "total_mean_ns": 101300.44578313253, "total_median_ns": 99755.0, "total_std_ns": 8072.668580226182, "total_mad_ns": 5713.0, "total_cv": 0.07969035592901959, "total_min_ns": 85405.0, "total_max_ns": 126129.0, "total_p5_ns": 91326.5, "total_p25_ns": 94865.0, "total_p50_ns": 99755.0, "total_p75_ns": 106433.5, "total_p95_ns": 115131.7, "total_p99_ns": 121717.39999999997, "total_ci_low_ns": 99650.36114457832, "total_ci_high_ns": 102923.9530120482, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.589704695114547}, {"serializer": "fastjson2", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.0.57", "avg_time_ser_ns": 147648.4, "avg_time_deser_ns": 171647.26315789475, "avg_time_total_ns": 319295.66315789474, "median_size_bytes": 65960.0, "avg_ops_per_sec": 3131.893462347124, "min_ops_per_sec": 2825.6968874948784, "max_ops_per_sec": 3521.5235519495154, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 147648.4, "ser_median_ns": 146981.0, "ser_std_ns": 7893.61531306399, "ser_mad_ns": 5427.0, "ser_cv": 0.05346224756288581, "ser_min_ns": 131094.0, "ser_max_ns": 170247.0, "ser_p5_ns": 136314.4, "ser_p25_ns": 142114.0, "ser_p50_ns": 146981.0, "ser_p75_ns": 152896.5, "ser_p95_ns": 162833.8, "ser_p99_ns": 166299.0, "ser_ci_low_ns": 146047.13342105265, "ser_ci_high_ns": 149187.9836842105, "deser_mean_ns": 171647.26315789475, "deser_median_ns": 170741.0, "deser_std_ns": 8896.34613880893, "deser_mad_ns": 6135.0, "deser_cv": 0.05182923383185765, "deser_min_ns": 152874.0, "deser_max_ns": 192273.0, "deser_p5_ns": 159654.9, "deser_p25_ns": 164998.5, "deser_p50_ns": 170741.0, "deser_p75_ns": 177516.5, "deser_p95_ns": 189890.1, "deser_p99_ns": 191982.54, "deser_ci_low_ns": 169962.94736842104, "deser_ci_high_ns": 173338.005, "total_mean_ns": 319295.66315789474, "total_median_ns": 317938.0, "total_std_ns": 15200.811314161312, "total_mad_ns": 11967.0, "total_cv": 0.04760732157719401, "total_min_ns": 283968.0, "total_max_ns": 353895.0, "total_p5_ns": 296820.8, "total_p25_ns": 306075.5, "total_p50_ns": 317938.0, "total_p75_ns": 329798.5, "total_p95_ns": 345239.8, "total_p99_ns": 353711.7, "total_ci_low_ns": 316302.3686842105, "total_ci_high_ns": 322406.2155263158, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.555973181689467}, {"serializer": "dsl-json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.0.2", "avg_time_ser_ns": 350356.8045977011, "avg_time_deser_ns": 165478.1379310345, "avg_time_total_ns": 515834.9425287356, "median_size_bytes": 65958.0, "avg_ops_per_sec": 1938.6046146811643, "min_ops_per_sec": 1796.7191907576764, "max_ops_per_sec": 2088.0357638765636, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 350356.8045977011, "ser_median_ns": 350866.0, "ser_std_ns": 11290.971090169718, "ser_mad_ns": 7830.0, "ser_cv": 0.032227063787542615, "ser_min_ns": 323708.0, "ser_max_ns": 375319.0, "ser_p5_ns": 334266.2, "ser_p25_ns": 342611.0, "ser_p50_ns": 350866.0, "ser_p75_ns": 357002.0, "ser_p95_ns": 370629.7, "ser_p99_ns": 372167.1, "ser_ci_low_ns": 348045.7037356322, "ser_ci_high_ns": 352668.7054597701, "deser_mean_ns": 165478.1379310345, "deser_median_ns": 164276.0, "deser_std_ns": 7738.008679860151, "deser_mad_ns": 4209.0, "deser_cv": 0.04676151651576525, "deser_min_ns": 151079.0, "deser_max_ns": 188181.0, "deser_p5_ns": 154900.1, "deser_p25_ns": 160733.5, "deser_p50_ns": 164276.0, "deser_p75_ns": 170048.5, "deser_p95_ns": 176748.8, "deser_p99_ns": 186430.04, "deser_ci_low_ns": 163909.7264367816, "deser_ci_high_ns": 167140.34770114944, "total_mean_ns": 515834.9425287356, "total_median_ns": 515107.0, "total_std_ns": 17511.969295018822, "total_mad_ns": 12943.0, "total_cv": 0.033948784487478345, "total_min_ns": 478919.0, "total_max_ns": 556570.0, "total_p5_ns": 490174.6, "total_p25_ns": 502998.0, "total_p50_ns": 515107.0, "total_p75_ns": 530101.0, "total_p95_ns": 545801.3, "total_p99_ns": 552319.02, "total_ci_low_ns": 512191.95201149426, "total_ci_high_ns": 519411.4597701149, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 37.253842480010306}, {"serializer": "java-serialization", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "21.0.11", "avg_time_ser_ns": 72749.86956521739, "avg_time_deser_ns": 112224.67391304347, "avg_time_total_ns": 184974.54347826086, "median_size_bytes": 32717.0, "avg_ops_per_sec": 5406.149306796506, "min_ops_per_sec": 4125.957222075522, "max_ops_per_sec": 6436.331805777251, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 72749.86956521739, "ser_median_ns": 71824.0, "ser_std_ns": 5342.230087938008, "ser_mad_ns": 3493.5, "ser_cv": 0.0734328476444746, "ser_min_ns": 63365.0, "ser_max_ns": 90226.0, "ser_p5_ns": 66422.15, "ser_p25_ns": 68871.5, "ser_p50_ns": 71824.0, "ser_p75_ns": 76324.0, "ser_p95_ns": 82115.25, "ser_p99_ns": 85764.27000000002, "ser_ci_low_ns": 71736.17201086957, "ser_ci_high_ns": 73833.43179347826, "deser_mean_ns": 112224.67391304347, "deser_median_ns": 108604.5, "deser_std_ns": 15061.791557629052, "deser_mad_ns": 10090.5, "deser_cv": 0.1342110521016045, "deser_min_ns": 91442.0, "deser_max_ns": 157698.0, "deser_p5_ns": 93232.8, "deser_p25_ns": 100739.5, "deser_p50_ns": 108604.5, "deser_p75_ns": 124126.0, "deser_p95_ns": 137724.7, "deser_p99_ns": 152642.04, "deser_ci_low_ns": 109278.42173913044, "deser_ci_high_ns": 115321.13125, "total_mean_ns": 184974.54347826086, "total_median_ns": 180249.5, "total_std_ns": 19412.255231526116, "total_mad_ns": 13961.0, "total_cv": 0.10494555016327174, "total_min_ns": 155368.0, "total_max_ns": 242368.0, "total_p5_ns": 159767.85, "total_p25_ns": 170105.25, "total_p50_ns": 180249.5, "total_p75_ns": 200026.25, "total_p95_ns": 216594.9, "total_p99_ns": 238721.63, "total_ci_low_ns": 181208.8875, "total_ci_high_ns": 188912.97554347827, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.400899969212883}, {"serializer": "fory", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "1.3.0", "avg_time_ser_ns": 18334.032967032967, "avg_time_deser_ns": 17552.67032967033, "avg_time_total_ns": 35886.703296703294, "median_size_bytes": 29577.0, "avg_ops_per_sec": 27865.474065205213, "min_ops_per_sec": 19703.268772289324, "max_ops_per_sec": 34916.20111731844, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 18334.032967032967, "ser_median_ns": 17771.0, "ser_std_ns": 3102.989295110083, "ser_mad_ns": 2226.0, "ser_cv": 0.16924750275564962, "ser_min_ns": 13989.0, "ser_max_ns": 26859.0, "ser_p5_ns": 14723.5, "ser_p25_ns": 15662.5, "ser_p50_ns": 17771.0, "ser_p75_ns": 20552.5, "ser_p95_ns": 24273.5, "ser_p99_ns": 26821.2, "ser_ci_low_ns": 17717.546153846157, "ser_ci_high_ns": 18976.96538461538, "deser_mean_ns": 17552.67032967033, "deser_median_ns": 16849.0, "deser_std_ns": 2570.457110472096, "deser_mad_ns": 1291.0, "deser_cv": 0.14644251058068913, "deser_min_ns": 14512.0, "deser_max_ns": 23966.0, "deser_p5_ns": 14744.0, "deser_p25_ns": 15591.0, "deser_p50_ns": 16849.0, "deser_p75_ns": 18835.0, "deser_p95_ns": 23217.0, "deser_p99_ns": 23939.0, "deser_ci_low_ns": 17050.660714285714, "deser_ci_high_ns": 18121.47032967033, "total_mean_ns": 35886.703296703294, "total_median_ns": 34881.0, "total_std_ns": 5364.01681473565, "total_mad_ns": 3505.0, "total_cv": 0.1494708714363409, "total_min_ns": 28640.0, "total_max_ns": 50753.0, "total_p5_ns": 29967.5, "total_p25_ns": 31549.5, "total_p50_ns": 34881.0, "total_p75_ns": 39065.0, "total_p95_ns": 46520.5, "total_p99_ns": 48663.19999999999, "total_ci_low_ns": 34797.72692307692, "total_ci_high_ns": 37011.485439560434, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "kryo", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "5.6.2", "avg_time_ser_ns": 40398.808988764045, "avg_time_deser_ns": 32261.685393258427, "avg_time_total_ns": 72660.49438202247, "median_size_bytes": 29038.0, "avg_ops_per_sec": 13762.636884114267, "min_ops_per_sec": 11018.555247036009, "max_ops_per_sec": 16516.094934513683, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 40398.808988764045, "ser_median_ns": 40047.0, "ser_std_ns": 3751.7379272097005, "ser_mad_ns": 2671.0, "ser_cv": 0.09286753795769465, "ser_min_ns": 33450.0, "ser_max_ns": 51797.0, "ser_p5_ns": 34969.2, "ser_p25_ns": 37618.0, "ser_p50_ns": 40047.0, "ser_p75_ns": 42929.0, "ser_p95_ns": 46840.399999999994, "ser_p99_ns": 51240.840000000004, "ser_ci_low_ns": 39666.628932584266, "ser_ci_high_ns": 41186.58735955056, "deser_mean_ns": 32261.685393258427, "deser_median_ns": 31931.0, "deser_std_ns": 2571.308557009913, "deser_mad_ns": 1684.0, "deser_cv": 0.07970161898445724, "deser_min_ns": 27097.0, "deser_max_ns": 38959.0, "deser_p5_ns": 28893.8, "deser_p25_ns": 30303.0, "deser_p50_ns": 31931.0, "deser_p75_ns": 33835.0, "deser_p95_ns": 36889.4, "deser_p99_ns": 38374.68, "deser_ci_low_ns": 31731.844662921347, "deser_ci_high_ns": 32815.74185393259, "total_mean_ns": 72660.49438202247, "total_median_ns": 71716.0, "total_std_ns": 6059.963043923461, "total_mad_ns": 4457.0, "total_cv": 0.08340107090467039, "total_min_ns": 60547.0, "total_max_ns": 90756.0, "total_p5_ns": 64723.8, "total_p25_ns": 67771.0, "total_p50_ns": 71716.0, "total_p75_ns": 76975.0, "total_p95_ns": 82620.8, "total_p99_ns": 88248.00000000001, "total_ci_low_ns": 71340.59915730337, "total_ci_high_ns": 73890.68623595504, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.403340751334299}, {"serializer": "jackson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 248494.96703296702, "avg_time_deser_ns": 651910.0549450549, "avg_time_total_ns": 900405.021978022, "median_size_bytes": 65958.0, "avg_ops_per_sec": 1110.6113089009505, "min_ops_per_sec": 1019.9335819251451, "max_ops_per_sec": 1202.165821944816, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 248494.96703296702, "ser_median_ns": 245263.0, "ser_std_ns": 12493.290341842207, "ser_mad_ns": 7378.0, "ser_cv": 0.050275828484625855, "ser_min_ns": 224284.0, "ser_max_ns": 282175.0, "ser_p5_ns": 231682.0, "ser_p25_ns": 239374.0, "ser_p50_ns": 245263.0, "ser_p75_ns": 257561.5, "ser_p95_ns": 271389.5, "ser_p99_ns": 275289.99999999994, "ser_ci_low_ns": 245924.03351648353, "ser_ci_high_ns": 251012.37225274724, "deser_mean_ns": 651910.0549450549, "deser_median_ns": 651519.0, "deser_std_ns": 23214.415558902012, "deser_mad_ns": 17988.0, "deser_cv": 0.03560984430721597, "deser_min_ns": 603682.0, "deser_max_ns": 713349.0, "deser_p5_ns": 618046.5, "deser_p25_ns": 633523.5, "deser_p50_ns": 651519.0, "deser_p75_ns": 667987.0, "deser_p95_ns": 689814.5, "deser_p99_ns": 711473.4, "deser_ci_low_ns": 647071.0980769232, "deser_ci_high_ns": 656679.0346153846, "total_mean_ns": 900405.021978022, "total_median_ns": 900852.0, "total_std_ns": 29825.61840430994, "total_mad_ns": 18765.0, "total_cv": 0.033124669094790934, "total_min_ns": 831832.0, "total_max_ns": 980456.0, "total_p5_ns": 852919.5, "total_p25_ns": 883793.5, "total_p50_ns": 900852.0, "total_p75_ns": 920537.5, "total_p95_ns": 948367.5, "total_p99_ns": 979216.7, "total_ci_low_ns": 894125.3340659341, "total_ci_high_ns": 906550.4733516483, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 40.176447662941804}, {"serializer": "gson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.12.1", "avg_time_ser_ns": 610268.1777777778, "avg_time_deser_ns": 787432.5222222222, "avg_time_total_ns": 1397700.7, "median_size_bytes": 65958.0, "avg_ops_per_sec": 715.4607563693716, "min_ops_per_sec": 673.0317522920096, "max_ops_per_sec": 776.819096699218, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 610268.1777777778, "ser_median_ns": 612600.5, "ser_std_ns": 22288.163213939053, "ser_mad_ns": 13310.0, "ser_cv": 0.03652191614365158, "ser_min_ns": 555186.0, "ser_max_ns": 664456.0, "ser_p5_ns": 575865.3, "ser_p25_ns": 595897.75, "ser_p50_ns": 612600.5, "ser_p75_ns": 623338.5, "ser_p95_ns": 651656.7, "ser_p99_ns": 664403.49, "ser_ci_low_ns": 605867.8933333333, "ser_ci_high_ns": 615061.4108333333, "deser_mean_ns": 787432.5222222222, "deser_median_ns": 787805.5, "deser_std_ns": 24803.886941331937, "deser_mad_ns": 16577.0, "deser_cv": 0.03149969837584636, "deser_min_ns": 725476.0, "deser_max_ns": 850040.0, "deser_p5_ns": 746256.5, "deser_p25_ns": 771400.75, "deser_p50_ns": 787805.5, "deser_p75_ns": 804325.0, "deser_p95_ns": 821059.3, "deser_p99_ns": 839241.63, "deser_ci_low_ns": 782389.7808333333, "deser_ci_high_ns": 792672.9202777777, "total_mean_ns": 1397700.7, "total_median_ns": 1402992.0, "total_std_ns": 40992.90623270532, "total_mad_ns": 24725.5, "total_cv": 0.02932881569903007, "total_min_ns": 1287301.0, "total_max_ns": 1485814.0, "total_p5_ns": 1324123.4, "total_p25_ns": 1374082.25, "total_p50_ns": 1402992.0, "total_p75_ns": 1422743.75, "total_p95_ns": 1460812.15, "total_p99_ns": 1478613.01, "total_ci_low_ns": 1388929.7872222222, "total_ci_high_ns": 1405860.9175, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 46.51434237170774}, {"serializer": "jackson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 3498.3333333333335, "avg_time_deser_ns": 4746.264367816092, "avg_time_total_ns": 8244.597701149425, "median_size_bytes": 411.0, "avg_ops_per_sec": 121291.5458398394, "min_ops_per_sec": 89245.8723784025, "max_ops_per_sec": 194024.05898331394, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 3498.3333333333335, "ser_median_ns": 3547.0, "ser_std_ns": 614.869123277214, "ser_mad_ns": 376.0, "ser_cv": 0.17576058788295779, "ser_min_ns": 2061.0, "ser_max_ns": 4940.0, "ser_p5_ns": 2516.4, "ser_p25_ns": 3080.0, "ser_p50_ns": 3547.0, "ser_p75_ns": 3794.5, "ser_p95_ns": 4567.6, "ser_p99_ns": 4855.72, "ser_ci_low_ns": 3367.298563218391, "ser_ci_high_ns": 3619.8235632183905, "deser_mean_ns": 4746.264367816092, "deser_median_ns": 4701.0, "deser_std_ns": 836.2036368733607, "deser_mad_ns": 637.0, "deser_cv": 0.17618142860805808, "deser_min_ns": 3009.0, "deser_max_ns": 6888.0, "deser_p5_ns": 3482.9, "deser_p25_ns": 4072.0, "deser_p50_ns": 4701.0, "deser_p75_ns": 5349.5, "deser_p95_ns": 6101.400000000001, "deser_p99_ns": 6692.78, "deser_ci_low_ns": 4570.203160919541, "deser_ci_high_ns": 4920.632758620689, "total_mean_ns": 8244.597701149425, "total_median_ns": 8308.0, "total_std_ns": 1402.3814252389107, "total_mad_ns": 977.0, "total_cv": 0.17009701092430463, "total_min_ns": 5154.0, "total_max_ns": 11205.0, "total_p5_ns": 6042.7, "total_p25_ns": 7274.0, "total_p50_ns": 8308.0, "total_p75_ns": 9157.0, "total_p95_ns": 10716.0, "total_p99_ns": 11088.04, "total_ci_low_ns": 7946.504022988506, "total_ci_high_ns": 8546.431609195402, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 0.932713418571613, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.610617978394355}, {"serializer": "dsl-json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.0.2", "avg_time_ser_ns": 2193.8426966292136, "avg_time_deser_ns": 2862.2134831460676, "avg_time_total_ns": 5056.056179775281, "median_size_bytes": 411.0, "avg_ops_per_sec": 197782.61246386025, "min_ops_per_sec": 132643.5866825839, "max_ops_per_sec": 316555.87211142766, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 2193.8426966292136, "ser_median_ns": 2244.0, "ser_std_ns": 368.3537979022467, "ser_mad_ns": 225.0, "ser_cv": 0.16790346840646936, "ser_min_ns": 1284.0, "ser_max_ns": 2901.0, "ser_p5_ns": 1538.4, "ser_p25_ns": 2000.0, "ser_p50_ns": 2244.0, "ser_p75_ns": 2452.0, "ser_p95_ns": 2694.4, "ser_p99_ns": 2859.6400000000003, "ser_ci_low_ns": 2111.940168539326, "ser_ci_high_ns": 2268.0227528089886, "deser_mean_ns": 2862.2134831460676, "deser_median_ns": 2634.0, "deser_std_ns": 768.4276223075468, "deser_mad_ns": 374.0, "deser_cv": 0.2684732032856305, "deser_min_ns": 1745.0, "deser_max_ns": 5087.0, "deser_p5_ns": 1828.4, "deser_p25_ns": 2331.0, "deser_p50_ns": 2634.0, "deser_p75_ns": 3275.0, "deser_p95_ns": 4430.599999999999, "deser_p99_ns": 4811.560000000001, "deser_ci_low_ns": 2703.772191011236, "deser_ci_high_ns": 3030.1716292134834, "total_mean_ns": 5056.056179775281, "total_median_ns": 4938.0, "total_std_ns": 1001.1097292453936, "total_mad_ns": 556.0, "total_cv": 0.19800209761314172, "total_min_ns": 3159.0, "total_max_ns": 7539.0, "total_p5_ns": 3499.6, "total_p25_ns": 4421.0, "total_p50_ns": 4938.0, "total_p75_ns": 5651.0, "total_p95_ns": 6920.4, "total_p99_ns": 7529.32, "total_ci_low_ns": 4852.908707865168, "total_ci_high_ns": 5273.934831460673, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "moshi", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "1.15.2", "avg_time_ser_ns": 2838.3152173913045, "avg_time_deser_ns": 3531.228260869565, "avg_time_total_ns": 6369.54347826087, "median_size_bytes": 411.0, "avg_ops_per_sec": 156997.12285707457, "min_ops_per_sec": 118147.44801512288, "max_ops_per_sec": 246548.3234714004, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 2838.3152173913045, "ser_median_ns": 2819.0, "ser_std_ns": 438.4463812331398, "ser_mad_ns": 321.5, "ser_cv": 0.1544741678255581, "ser_min_ns": 1803.0, "ser_max_ns": 3822.0, "ser_p5_ns": 2045.9, "ser_p25_ns": 2614.75, "ser_p50_ns": 2819.0, "ser_p75_ns": 3211.25, "ser_p95_ns": 3474.95, "ser_p99_ns": 3618.1600000000008, "ser_ci_low_ns": 2751.4646739130435, "ser_ci_high_ns": 2932.0540760869562, "deser_mean_ns": 3531.228260869565, "deser_median_ns": 3596.5, "deser_std_ns": 523.9258001164968, "deser_mad_ns": 307.5, "deser_cv": 0.14836928156762091, "deser_min_ns": 2253.0, "deser_max_ns": 4642.0, "deser_p5_ns": 2593.45, "deser_p25_ns": 3221.0, "deser_p50_ns": 3596.5, "deser_p75_ns": 3851.0, "deser_p95_ns": 4365.4, "deser_p99_ns": 4514.6, "deser_ci_low_ns": 3425.5176630434785, "deser_ci_high_ns": 3632.6415760869563, "total_mean_ns": 6369.54347826087, "total_median_ns": 6395.0, "total_std_ns": 938.9863767229455, "total_mad_ns": 605.0, "total_cv": 0.1474181595474916, "total_min_ns": 4056.0, "total_max_ns": 8464.0, "total_p5_ns": 4722.4, "total_p25_ns": 5891.0, "total_p50_ns": 6395.0, "total_p75_ns": 6996.5, "total_p95_ns": 7826.15, "total_p99_ns": 8079.980000000001, "total_ci_low_ns": 6158.552717391304, "total_ci_high_ns": 6548.3676630434775, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 0.6590131900341963, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.3483945940455577}, {"serializer": "ion", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 8715.95652173913, "avg_time_deser_ns": 8285.652173913044, "avg_time_total_ns": 17001.608695652172, "median_size_bytes": 409.0, "avg_ops_per_sec": 58817.96351751881, "min_ops_per_sec": 43853.878875586546, "max_ops_per_sec": 83787.18056137412, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 8715.95652173913, "ser_median_ns": 8567.0, "ser_std_ns": 1300.8645216099073, "ser_mad_ns": 823.5, "ser_cv": 0.14925091908906638, "ser_min_ns": 5964.0, "ser_max_ns": 11722.0, "ser_p5_ns": 6748.1, "ser_p25_ns": 7840.5, "ser_p50_ns": 8567.0, "ser_p75_ns": 9553.25, "ser_p95_ns": 11221.550000000001, "ser_p99_ns": 11712.9, "ser_ci_low_ns": 8443.42527173913, "ser_ci_high_ns": 8990.791032608695, "deser_mean_ns": 8285.652173913044, "deser_median_ns": 8299.5, "deser_std_ns": 1241.1537032334743, "deser_mad_ns": 812.0, "deser_cv": 0.14979553536427512, "deser_min_ns": 5923.0, "deser_max_ns": 11654.0, "deser_p5_ns": 6290.55, "deser_p25_ns": 7351.0, "deser_p50_ns": 8299.5, "deser_p75_ns": 9038.0, "deser_p95_ns": 10323.450000000003, "deser_p99_ns": 11653.09, "deser_ci_low_ns": 8019.082336956522, "deser_ci_high_ns": 8538.184782608694, "total_mean_ns": 17001.608695652172, "total_median_ns": 16985.0, "total_std_ns": 2454.830228263023, "total_mad_ns": 1644.5, "total_cv": 0.14438811480767685, "total_min_ns": 11935.0, "total_max_ns": 22803.0, "total_p5_ns": 13245.05, "total_p25_ns": 15198.25, "total_p50_ns": 16985.0, "total_p75_ns": 18565.75, "total_p95_ns": 21462.45, "total_p99_ns": 22678.33, "total_ci_low_ns": 16513.816304347823, "total_ci_high_ns": 17521.167663043478, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.307839132681831}, {"serializer": "fory", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "1.3.0", "avg_time_ser_ns": 5449.428571428572, "avg_time_deser_ns": 4704.934065934066, "avg_time_total_ns": 10154.362637362638, "median_size_bytes": 364.0, "avg_ops_per_sec": 98479.83922895696, "min_ops_per_sec": 79339.89209774675, "max_ops_per_sec": 130446.12575006523, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 5449.428571428572, "ser_median_ns": 5439.0, "ser_std_ns": 581.5944968190112, "ser_mad_ns": 336.0, "ser_cv": 0.1067257766930498, "ser_min_ns": 4062.0, "ser_max_ns": 6870.0, "ser_p5_ns": 4303.5, "ser_p25_ns": 5119.5, "ser_p50_ns": 5439.0, "ser_p75_ns": 5796.0, "ser_p95_ns": 6340.0, "ser_p99_ns": 6788.999999999999, "ser_ci_low_ns": 5329.650274725275, "ser_ci_high_ns": 5570.908241758241, "deser_mean_ns": 4704.934065934066, "deser_median_ns": 4741.0, "deser_std_ns": 504.76220588836134, "deser_mad_ns": 331.0, "deser_cv": 0.10728358757311329, "deser_min_ns": 3482.0, "deser_max_ns": 5824.0, "deser_p5_ns": 3715.5, "deser_p25_ns": 4377.0, "deser_p50_ns": 4741.0, "deser_p75_ns": 5068.0, "deser_p95_ns": 5427.5, "deser_p99_ns": 5733.099999999999, "deser_ci_low_ns": 4601.048351648352, "deser_ci_high_ns": 4816.0348901098905, "total_mean_ns": 10154.362637362638, "total_median_ns": 10154.0, "total_std_ns": 1031.4848360654494, "total_mad_ns": 647.0, "total_cv": 0.10158046082283248, "total_min_ns": 7666.0, "total_max_ns": 12604.0, "total_p5_ns": 8302.5, "total_p25_ns": 9566.5, "total_p50_ns": 10154.0, "total_p75_ns": 10897.0, "total_p95_ns": 11798.0, "total_p99_ns": 11978.499999999996, "total_ci_low_ns": 9939.45521978022, "total_ci_high_ns": 10372.570604395603, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.993987456868082}, {"serializer": "bson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "5.3.1", "avg_time_ser_ns": 4001.2528735632186, "avg_time_deser_ns": 4903.563218390805, "avg_time_total_ns": 8904.816091954022, "median_size_bytes": 599.0, "avg_ops_per_sec": 112298.78188091425, "min_ops_per_sec": 84083.07407718826, "max_ops_per_sec": 159184.9729385546, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 4001.2528735632186, "ser_median_ns": 4025.0, "ser_std_ns": 487.0074307821139, "ser_mad_ns": 280.0, "ser_cv": 0.12171373471540209, "ser_min_ns": 2919.0, "ser_max_ns": 5229.0, "ser_p5_ns": 3135.3, "ser_p25_ns": 3674.5, "ser_p50_ns": 4025.0, "ser_p75_ns": 4277.5, "ser_p95_ns": 4836.900000000001, "ser_p99_ns": 5043.24, "ser_ci_low_ns": 3896.6669540229886, "ser_ci_high_ns": 4104.981321839081, "deser_mean_ns": 4903.563218390805, "deser_median_ns": 4902.0, "deser_std_ns": 732.0567029307228, "deser_mad_ns": 378.0, "deser_cv": 0.14929076476166261, "deser_min_ns": 3223.0, "deser_max_ns": 6664.0, "deser_p5_ns": 3618.4, "deser_p25_ns": 4522.0, "deser_p50_ns": 4902.0, "deser_p75_ns": 5269.5, "deser_p95_ns": 6215.5, "deser_p99_ns": 6573.7, "deser_ci_low_ns": 4751.182183908046, "deser_ci_high_ns": 5060.404597701148, "total_mean_ns": 8904.816091954022, "total_median_ns": 8960.0, "total_std_ns": 1171.9411498909856, "total_mad_ns": 672.0, "total_cv": 0.13160756356887562, "total_min_ns": 6282.0, "total_max_ns": 11893.0, "total_p5_ns": 6816.8, "total_p25_ns": 8135.5, "total_p50_ns": 8960.0, "total_p75_ns": 9572.0, "total_p95_ns": 10718.800000000001, "total_p99_ns": 11595.44, "total_ci_low_ns": 8650.753735632185, "total_ci_high_ns": 9154.621839080459, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 0.9839855353222265, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.5192872776140502}, {"serializer": "hessian", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "4.0.66", "avg_time_ser_ns": 4260.2, "avg_time_deser_ns": 3537.0588235294117, "avg_time_total_ns": 7797.2588235294115, "median_size_bytes": 374.0, "avg_ops_per_sec": 128250.19954222224, "min_ops_per_sec": 105999.576001696, "max_ops_per_sec": 174978.12773403325, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 4260.2, "ser_median_ns": 4311.0, "ser_std_ns": 560.1795587981037, "ser_mad_ns": 467.0, "ser_cv": 0.13149137570961544, "ser_min_ns": 3110.0, "ser_max_ns": 5412.0, "ser_p5_ns": 3415.8, "ser_p25_ns": 3716.0, "ser_p50_ns": 4311.0, "ser_p75_ns": 4713.0, "ser_p95_ns": 5157.4, "ser_p99_ns": 5305.32, "ser_ci_low_ns": 4140.9255882352945, "ser_ci_high_ns": 4373.741470588236, "deser_mean_ns": 3537.0588235294117, "deser_median_ns": 3543.0, "deser_std_ns": 359.92083630065287, "deser_mad_ns": 215.0, "deser_cv": 0.10175709657593712, "deser_min_ns": 2605.0, "deser_max_ns": 4372.0, "deser_p5_ns": 2885.8, "deser_p25_ns": 3342.0, "deser_p50_ns": 3543.0, "deser_p75_ns": 3777.0, "deser_p95_ns": 4034.4, "deser_p99_ns": 4303.96, "deser_ci_low_ns": 3461.1005882352943, "deser_ci_high_ns": 3614.0861764705883, "total_mean_ns": 7797.2588235294115, "total_median_ns": 7778.0, "total_std_ns": 839.5136510552543, "total_mad_ns": 544.0, "total_cv": 0.10766779326625589, "total_min_ns": 5715.0, "total_max_ns": 9434.0, "total_p5_ns": 6305.2, "total_p25_ns": 7339.0, "total_p50_ns": 7778.0, "total_p75_ns": 8381.0, "total_p95_ns": 9197.6, "total_p99_ns": 9427.28, "total_ci_low_ns": 7606.232352941176, "total_ci_high_ns": 7968.430588235294, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 0.9542630535360211, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.948221459151878}, {"serializer": "jsoniter", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "0.9.23", "avg_time_ser_ns": 2520.3118279569894, "avg_time_deser_ns": 4255.4838709677415, "avg_time_total_ns": 6775.795698924731, "median_size_bytes": 411.0, "avg_ops_per_sec": 147584.14279797318, "min_ops_per_sec": 91692.64624977077, "max_ops_per_sec": 283446.7120181406, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 2520.3118279569894, "ser_median_ns": 2486.0, "ser_std_ns": 357.69467118390423, "ser_mad_ns": 233.0, "ser_cv": 0.1419247678863048, "ser_min_ns": 1569.0, "ser_max_ns": 3447.0, "ser_p5_ns": 1955.8, "ser_p25_ns": 2289.0, "ser_p50_ns": 2486.0, "ser_p75_ns": 2795.0, "ser_p95_ns": 3099.2, "ser_p99_ns": 3244.5999999999995, "ser_ci_low_ns": 2447.5744623655914, "ser_ci_high_ns": 2596.8841397849465, "deser_mean_ns": 4255.4838709677415, "deser_median_ns": 3760.0, "deser_std_ns": 1353.9131178607022, "deser_mad_ns": 847.0, "deser_cv": 0.3181572669320935, "deser_min_ns": 1959.0, "deser_max_ns": 7459.0, "deser_p5_ns": 2688.8, "deser_p25_ns": 3182.0, "deser_p50_ns": 3760.0, "deser_p75_ns": 5568.0, "deser_p95_ns": 6546.8, "deser_p99_ns": 6781.879999999999, "deser_ci_low_ns": 3989.835483870968, "deser_ci_high_ns": 4546.828494623656, "total_mean_ns": 6775.795698924731, "total_median_ns": 6426.0, "total_std_ns": 1603.6630660916642, "total_mad_ns": 1159.0, "total_cv": 0.23667523894590767, "total_min_ns": 3528.0, "total_max_ns": 10906.0, "total_p5_ns": 4652.2, "total_p25_ns": 5577.0, "total_p50_ns": 6426.0, "total_p75_ns": 8084.0, "total_p95_ns": 9503.599999999999, "total_p99_ns": 9883.879999999997, "total_ci_low_ns": 6452.147043010753, "total_ci_high_ns": 7093.072043010752, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 0.6389996375498369, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.274906534248908}, {"serializer": "protostuff", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "1.8.0", "avg_time_ser_ns": 2570.6666666666665, "avg_time_deser_ns": 5491.8387096774195, "avg_time_total_ns": 8062.5053763440865, "median_size_bytes": 368.0, "avg_ops_per_sec": 124030.92504397762, "min_ops_per_sec": 85012.32678738417, "max_ops_per_sec": 186915.8878504673, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 2570.6666666666665, "ser_median_ns": 2002.0, "ser_std_ns": 1261.4727274217964, "ser_mad_ns": 221.0, "ser_cv": 0.49071812529374864, "ser_min_ns": 1208.0, "ser_max_ns": 6004.0, "ser_p5_ns": 1429.0, "ser_p25_ns": 1796.0, "ser_p50_ns": 2002.0, "ser_p75_ns": 2737.0, "ser_p95_ns": 5107.0, "ser_p99_ns": 5510.879999999999, "ser_ci_low_ns": 2318.875537634409, "ser_ci_high_ns": 2840.711827956989, "deser_mean_ns": 5491.8387096774195, "deser_median_ns": 5291.0, "deser_std_ns": 760.4554740749065, "deser_mad_ns": 397.0, "deser_cv": 0.13847010341634275, "deser_min_ns": 4142.0, "deser_max_ns": 7306.0, "deser_p5_ns": 4427.0, "deser_p25_ns": 5033.0, "deser_p50_ns": 5291.0, "deser_p75_ns": 5988.0, "deser_p95_ns": 6937.399999999999, "deser_p99_ns": 7299.56, "deser_ci_low_ns": 5339.0981182795695, "deser_ci_high_ns": 5653.963978494624, "total_mean_ns": 8062.5053763440865, "total_median_ns": 7642.0, "total_std_ns": 1460.5425333822384, "total_mad_ns": 764.0, "total_cv": 0.1811524414814736, "total_min_ns": 5350.0, "total_max_ns": 11763.0, "total_p5_ns": 5891.8, "total_p25_ns": 7101.0, "total_p50_ns": 7642.0, "total_p75_ns": 9038.0, "total_p95_ns": 10743.399999999998, "total_p99_ns": 11650.76, "total_ci_low_ns": 7787.458602150538, "total_ci_high_ns": 8372.991666666665, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 0.929201401473964, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.3816202315764134}, {"serializer": "jackson-smile", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 2903.131868131868, "avg_time_deser_ns": 3514.813186813187, "avg_time_total_ns": 6417.945054945055, "median_size_bytes": 350.0, "avg_ops_per_sec": 155813.11330010463, "min_ops_per_sec": 105385.18284329223, "max_ops_per_sec": 295683.0277942046, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 2903.131868131868, "ser_median_ns": 2920.0, "ser_std_ns": 543.9784964865842, "ser_mad_ns": 364.0, "ser_cv": 0.18737643386369082, "ser_min_ns": 1590.0, "ser_max_ns": 4400.0, "ser_p5_ns": 2077.5, "ser_p25_ns": 2528.5, "ser_p50_ns": 2920.0, "ser_p75_ns": 3243.5, "ser_p95_ns": 3858.5, "ser_p99_ns": 4297.4, "ser_ci_low_ns": 2788.8725274725275, "ser_ci_high_ns": 3014.6052197802196, "deser_mean_ns": 3514.813186813187, "deser_median_ns": 3594.0, "deser_std_ns": 697.2780238117665, "deser_mad_ns": 452.0, "deser_cv": 0.19838266978962116, "deser_min_ns": 1792.0, "deser_max_ns": 5391.0, "deser_p5_ns": 2483.5, "deser_p25_ns": 3024.0, "deser_p50_ns": 3594.0, "deser_p75_ns": 4005.0, "deser_p95_ns": 4560.0, "deser_p99_ns": 5128.199999999998, "deser_ci_low_ns": 3374.7656593406596, "deser_ci_high_ns": 3655.477747252747, "total_mean_ns": 6417.945054945055, "total_median_ns": 6489.0, "total_std_ns": 1203.7441899030187, "total_mad_ns": 741.0, "total_cv": 0.1875591298457017, "total_min_ns": 3382.0, "total_max_ns": 9489.0, "total_p5_ns": 4577.0, "total_p25_ns": 5665.5, "total_p50_ns": 6489.0, "total_p75_ns": 7136.0, "total_p95_ns": 8310.5, "total_p99_ns": 9420.6, "total_ci_low_ns": 6176.1835164835165, "total_ci_high_ns": 6659.421428571429, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 0.6210643289294975, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.223727895978302}, {"serializer": "protobuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "4.28.3", "avg_time_ser_ns": 4030.1348314606744, "avg_time_deser_ns": 7055.404494382023, "avg_time_total_ns": 11085.539325842698, "median_size_bytes": 368.0, "avg_ops_per_sec": 90207.60926523368, "min_ops_per_sec": 73626.85907819173, "max_ops_per_sec": 123502.53180190193, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 4030.1348314606744, "ser_median_ns": 4026.0, "ser_std_ns": 423.5378375018103, "ser_mad_ns": 283.0, "ser_cv": 0.10509272151281948, "ser_min_ns": 2997.0, "ser_max_ns": 5140.0, "ser_p5_ns": 3376.0, "ser_p25_ns": 3735.0, "ser_p50_ns": 4026.0, "ser_p75_ns": 4303.0, "ser_p95_ns": 4720.4, "ser_p99_ns": 5063.4400000000005, "ser_ci_low_ns": 3939.91797752809, "ser_ci_high_ns": 4114.23820224719, "deser_mean_ns": 7055.404494382023, "deser_median_ns": 7021.0, "deser_std_ns": 851.6652767466422, "deser_mad_ns": 503.0, "deser_cv": 0.1207110488739227, "deser_min_ns": 4962.0, "deser_max_ns": 9616.0, "deser_p5_ns": 5650.2, "deser_p25_ns": 6564.0, "deser_p50_ns": 7021.0, "deser_p75_ns": 7524.0, "deser_p95_ns": 8403.4, "deser_p99_ns": 9041.360000000002, "deser_ci_low_ns": 6881.077247191011, "deser_ci_high_ns": 7223.430337078652, "total_mean_ns": 11085.539325842698, "total_median_ns": 11113.0, "total_std_ns": 1134.2562045853879, "total_mad_ns": 751.0, "total_cv": 0.10231854050990562, "total_min_ns": 8097.0, "total_max_ns": 13582.0, "total_p5_ns": 9151.4, "total_p25_ns": 10369.0, "total_p50_ns": 11113.0, "total_p75_ns": 11864.0, "total_p95_ns": 12827.4, "total_p99_ns": 13248.480000000001, "total_ci_low_ns": 10855.74382022472, "total_ci_high_ns": 11313.96797752809, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.612261222575245}, {"serializer": "jackson-cbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 3341.277777777778, "avg_time_deser_ns": 3898.188888888889, "avg_time_total_ns": 7239.466666666666, "median_size_bytes": 346.0, "avg_ops_per_sec": 138131.72241049065, "min_ops_per_sec": 101040.7194099222, "max_ops_per_sec": 219250.16443762332, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 3341.277777777778, "ser_median_ns": 3296.5, "ser_std_ns": 550.5479809025777, "ser_mad_ns": 380.0, "ser_cv": 0.16477168841338807, "ser_min_ns": 1931.0, "ser_max_ns": 4685.0, "ser_p5_ns": 2548.75, "ser_p25_ns": 2985.0, "ser_p50_ns": 3296.5, "ser_p75_ns": 3687.0, "ser_p95_ns": 4313.749999999999, "ser_p99_ns": 4642.28, "ser_ci_low_ns": 3228.7194444444444, "ser_ci_high_ns": 3455.235833333333, "deser_mean_ns": 3898.188888888889, "deser_median_ns": 3868.0, "deser_std_ns": 540.9536916450146, "deser_mad_ns": 292.0, "deser_cv": 0.13877051806979113, "deser_min_ns": 2541.0, "deser_max_ns": 5260.0, "deser_p5_ns": 3087.4, "deser_p25_ns": 3591.75, "deser_p50_ns": 3868.0, "deser_p75_ns": 4242.0, "deser_p95_ns": 4738.75, "deser_p99_ns": 5057.97, "deser_ci_low_ns": 3786.3105555555553, "deser_ci_high_ns": 3997.9977777777776, "total_mean_ns": 7239.466666666666, "total_median_ns": 7092.5, "total_std_ns": 1032.2045372606988, "total_mad_ns": 645.0, "total_cv": 0.1425801906117438, "total_min_ns": 4561.0, "total_max_ns": 9897.0, "total_p5_ns": 5692.05, "total_p25_ns": 6593.25, "total_p50_ns": 7092.5, "total_p75_ns": 7821.0, "total_p95_ns": 8959.5, "total_p99_ns": 9737.69, "total_ci_low_ns": 7031.359444444444, "total_ci_high_ns": 7451.655555555555, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 0.8617977528089887, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.1380892845103503}, {"serializer": "fastjson2", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.0.57", "avg_time_ser_ns": 5046.448275862069, "avg_time_deser_ns": 6098.942528735633, "avg_time_total_ns": 11145.3908045977, "median_size_bytes": 411.0, "avg_ops_per_sec": 89723.18849398082, "min_ops_per_sec": 74404.76190476191, "max_ops_per_sec": 122129.94626282365, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 5046.448275862069, "ser_median_ns": 5020.0, "ser_std_ns": 694.7242343753297, "ser_mad_ns": 507.0, "ser_cv": 0.13766597741589895, "ser_min_ns": 3516.0, "ser_max_ns": 6849.0, "ser_p5_ns": 3827.0, "ser_p25_ns": 4561.5, "ser_p50_ns": 5020.0, "ser_p75_ns": 5535.5, "ser_p95_ns": 6045.5, "ser_p99_ns": 6380.3, "ser_ci_low_ns": 4896.540229885058, "ser_ci_high_ns": 5189.179885057471, "deser_mean_ns": 6098.942528735633, "deser_median_ns": 6176.0, "deser_std_ns": 575.4927384489613, "deser_mad_ns": 322.0, "deser_cv": 0.09435942964497261, "deser_min_ns": 4672.0, "deser_max_ns": 7506.0, "deser_p5_ns": 4986.3, "deser_p25_ns": 5757.0, "deser_p50_ns": 6176.0, "deser_p75_ns": 6453.0, "deser_p95_ns": 6967.7, "deser_p99_ns": 7276.38, "deser_ci_low_ns": 5981.312068965517, "deser_ci_high_ns": 6217.322988505747, "total_mean_ns": 11145.3908045977, "total_median_ns": 11195.0, "total_std_ns": 1198.808937550797, "total_mad_ns": 830.0, "total_cv": 0.10756096027213904, "total_min_ns": 8188.0, "total_max_ns": 13440.0, "total_p5_ns": 8800.8, "total_p25_ns": 10344.0, "total_p50_ns": 11195.0, "total_p75_ns": 12014.5, "total_p95_ns": 12920.300000000001, "total_p99_ns": 13401.3, "total_ci_low_ns": 10881.810632183908, "total_ci_high_ns": 11398.748850574713, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.495577403193733}, {"serializer": "java-serialization", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "21.0.11", "avg_time_ser_ns": 8091.077777777778, "avg_time_deser_ns": 20932.966666666667, "avg_time_total_ns": 29024.044444444444, "median_size_bytes": 528.0, "avg_ops_per_sec": 34454.1920032586, "min_ops_per_sec": 24441.511463068877, "max_ops_per_sec": 56116.72278338945, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 8091.077777777778, "ser_median_ns": 7546.5, "ser_std_ns": 1926.0578662114506, "ser_mad_ns": 1426.0, "ser_cv": 0.23804713279377773, "ser_min_ns": 4719.0, "ser_max_ns": 13993.0, "ser_p5_ns": 5733.5, "ser_p25_ns": 6582.5, "ser_p50_ns": 7546.5, "ser_p75_ns": 9635.25, "ser_p95_ns": 11193.35, "ser_p99_ns": 12475.55, "ser_ci_low_ns": 7697.825555555556, "ser_ci_high_ns": 8501.105833333333, "deser_mean_ns": 20932.966666666667, "deser_median_ns": 20802.0, "deser_std_ns": 3350.917434160651, "deser_mad_ns": 2262.5, "deser_cv": 0.1600784775287776, "deser_min_ns": 12872.0, "deser_max_ns": 28626.0, "deser_p5_ns": 16258.7, "deser_p25_ns": 18629.0, "deser_p50_ns": 20802.0, "deser_p75_ns": 23104.75, "deser_p95_ns": 26787.299999999996, "deser_p99_ns": 28502.29, "deser_ci_low_ns": 20231.076666666664, "deser_ci_high_ns": 21617.64972222222, "total_mean_ns": 29024.044444444444, "total_median_ns": 28850.0, "total_std_ns": 4941.007969110299, "total_mad_ns": 3756.0, "total_cv": 0.1702384372573571, "total_min_ns": 17820.0, "total_max_ns": 40914.0, "total_p5_ns": 22299.9, "total_p25_ns": 25290.25, "total_p50_ns": 28850.0, "total_p75_ns": 32670.5, "total_p95_ns": 38048.299999999996, "total_p99_ns": 39343.15, "total_ci_low_ns": 28050.854444444445, "total_ci_high_ns": 30004.704722222225, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.677608691112589}, {"serializer": "gson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.12.1", "avg_time_ser_ns": 5077.076086956522, "avg_time_deser_ns": 3157.858695652174, "avg_time_total_ns": 8234.934782608696, "median_size_bytes": 411.0, "avg_ops_per_sec": 121433.87001824148, "min_ops_per_sec": 94091.0801656003, "max_ops_per_sec": 185873.6059479554, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 5077.076086956522, "ser_median_ns": 5134.5, "ser_std_ns": 662.4053941772132, "ser_mad_ns": 441.0, "ser_cv": 0.13046985761726004, "ser_min_ns": 3432.0, "ser_max_ns": 6374.0, "ser_p5_ns": 3804.55, "ser_p25_ns": 4646.75, "ser_p50_ns": 5134.5, "ser_p75_ns": 5503.5, "ser_p95_ns": 6143.3, "ser_p99_ns": 6366.72, "ser_ci_low_ns": 4938.097554347826, "ser_ci_high_ns": 5209.163315217391, "deser_mean_ns": 3157.858695652174, "deser_median_ns": 3148.5, "deser_std_ns": 481.97035113594296, "deser_mad_ns": 336.0, "deser_cv": 0.1526256864499773, "deser_min_ns": 1948.0, "deser_max_ns": 4254.0, "deser_p5_ns": 2273.7, "deser_p25_ns": 2851.5, "deser_p50_ns": 3148.5, "deser_p75_ns": 3525.5, "deser_p95_ns": 3995.35, "deser_p99_ns": 4157.54, "deser_ci_low_ns": 3061.6445652173916, "deser_ci_high_ns": 3253.8437499999995, "total_mean_ns": 8234.934782608696, "total_median_ns": 8329.0, "total_std_ns": 1116.6867968653335, "total_mad_ns": 695.0, "total_cv": 0.13560359934163133, "total_min_ns": 5380.0, "total_max_ns": 10628.0, "total_p5_ns": 6062.0, "total_p25_ns": 7522.25, "total_p50_ns": 8329.0, "total_p75_ns": 8878.25, "total_p95_ns": 10051.35, "total_p99_ns": 10440.54, "total_ci_low_ns": 8008.595652173914, "total_ci_high_ns": 8450.908967391304, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 0.9546897899364925, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.9823059377126606}, {"serializer": "kryo", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "5.6.2", "avg_time_ser_ns": 13652.155844155845, "avg_time_deser_ns": 2412.5194805194806, "avg_time_total_ns": 16064.675324675325, "median_size_bytes": 341.0, "avg_ops_per_sec": 62248.379116881435, "min_ops_per_sec": 52405.40823813018, "max_ops_per_sec": 77796.7947720554, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 13652.155844155845, "ser_median_ns": 13609.0, "ser_std_ns": 930.6216239546422, "ser_mad_ns": 549.0, "ser_cv": 0.06816664229283749, "ser_min_ns": 11217.0, "ser_max_ns": 16368.0, "ser_p5_ns": 12058.8, "ser_p25_ns": 13180.0, "ser_p50_ns": 13609.0, "ser_p75_ns": 14276.0, "ser_p95_ns": 14966.400000000001, "ser_p99_ns": 15763.039999999995, "ser_ci_low_ns": 13441.778896103895, "ser_ci_high_ns": 13855.743181818181, "deser_mean_ns": 2412.5194805194806, "deser_median_ns": 2395.0, "deser_std_ns": 319.3616828674616, "deser_mad_ns": 218.0, "deser_cv": 0.1323768307142102, "deser_min_ns": 1637.0, "deser_max_ns": 3069.0, "deser_p5_ns": 1899.8, "deser_p25_ns": 2211.0, "deser_p50_ns": 2395.0, "deser_p75_ns": 2651.0, "deser_p95_ns": 2933.0, "deser_p99_ns": 3067.48, "deser_ci_low_ns": 2346.1892857142857, "deser_ci_high_ns": 2479.4912337662336, "total_mean_ns": 16064.675324675325, "total_median_ns": 16030.0, "total_std_ns": 1194.7869821322088, "total_mad_ns": 815.0, "total_cv": 0.07437355302768038, "total_min_ns": 12854.0, "total_max_ns": 19082.0, "total_p5_ns": 13952.2, "total_p25_ns": 15460.0, "total_p50_ns": 16030.0, "total_p75_ns": 16906.0, "total_p95_ns": 17771.2, "total_p99_ns": 18627.519999999997, "total_ci_low_ns": 15794.932792207792, "total_ci_high_ns": 16322.766883116883, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.006302905126258}, {"serializer": "avro", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "1.12.0", "avg_time_ser_ns": 2272.462365591398, "avg_time_deser_ns": 4346.440860215053, "avg_time_total_ns": 6618.903225806452, "median_size_bytes": 338.0, "avg_ops_per_sec": 151082.43252463618, "min_ops_per_sec": 116292.59216187929, "max_ops_per_sec": 228623.68541380888, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 2272.462365591398, "ser_median_ns": 2318.0, "ser_std_ns": 383.64356077018954, "ser_mad_ns": 257.0, "ser_cv": 0.1688228445844242, "ser_min_ns": 1258.0, "ser_max_ns": 3065.0, "ser_p5_ns": 1601.8, "ser_p25_ns": 1993.0, "ser_p50_ns": 2318.0, "ser_p75_ns": 2514.0, "ser_p95_ns": 2893.999999999999, "ser_p99_ns": 3050.2799999999997, "ser_ci_low_ns": 2192.658064516129, "ser_ci_high_ns": 2346.7534946236556, "deser_mean_ns": 4346.440860215053, "deser_median_ns": 4406.0, "deser_std_ns": 577.5084878421154, "deser_mad_ns": 399.0, "deser_cv": 0.13286928464351438, "deser_min_ns": 2999.0, "deser_max_ns": 5560.0, "deser_p5_ns": 3289.8, "deser_p25_ns": 3958.0, "deser_p50_ns": 4406.0, "deser_p75_ns": 4754.0, "deser_p95_ns": 5277.999999999999, "deser_p99_ns": 5482.72, "deser_ci_low_ns": 4228.417741935484, "deser_ci_high_ns": 4470.580913978495, "total_mean_ns": 6618.903225806452, "total_median_ns": 6685.0, "total_std_ns": 944.505933239312, "total_mad_ns": 638.0, "total_cv": 0.14269825392774688, "total_min_ns": 4374.0, "total_max_ns": 8599.0, "total_p5_ns": 4891.6, "total_p25_ns": 5987.0, "total_p50_ns": 6685.0, "total_p75_ns": 7211.0, "total_p95_ns": 8124.599999999998, "total_p99_ns": 8545.64, "total_ci_low_ns": 6427.6537634408605, "total_ci_high_ns": 6808.976881720429, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 0.7314244291409931, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.6001863223432142}, {"serializer": "msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "0.9.8", "avg_time_ser_ns": 3888.021739130435, "avg_time_deser_ns": 4231.717391304348, "avg_time_total_ns": 8119.739130434783, "median_size_bytes": 346.0, "avg_ops_per_sec": 123156.66598841255, "min_ops_per_sec": 84961.76720475785, "max_ops_per_sec": 201653.5591853196, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 3888.021739130435, "ser_median_ns": 3952.5, "ser_std_ns": 702.9302402081875, "ser_mad_ns": 510.0, "ser_cv": 0.18079380398870903, "ser_min_ns": 2247.0, "ser_max_ns": 5478.0, "ser_p5_ns": 2682.95, "ser_p25_ns": 3360.0, "ser_p50_ns": 3952.5, "ser_p75_ns": 4301.5, "ser_p95_ns": 5048.45, "ser_p99_ns": 5390.64, "ser_ci_low_ns": 3743.2192934782606, "ser_ci_high_ns": 4031.88125, "deser_mean_ns": 4231.717391304348, "deser_median_ns": 4285.5, "deser_std_ns": 711.5793504605872, "deser_mad_ns": 464.0, "deser_cv": 0.1681537977755306, "deser_min_ns": 2654.0, "deser_max_ns": 6292.0, "deser_p5_ns": 3121.6, "deser_p25_ns": 3662.25, "deser_p50_ns": 4285.5, "deser_p75_ns": 4699.0, "deser_p95_ns": 5342.3, "deser_p99_ns": 5958.030000000002, "deser_ci_low_ns": 4093.3736413043475, "deser_ci_high_ns": 4374.998369565217, "total_mean_ns": 8119.739130434783, "total_median_ns": 8211.5, "total_std_ns": 1380.7358196725063, "total_mad_ns": 943.0, "total_cv": 0.17004682016164388, "total_min_ns": 4959.0, "total_max_ns": 11770.0, "total_p5_ns": 5924.05, "total_p25_ns": 7024.0, "total_p50_ns": 8211.5, "total_p75_ns": 8886.5, "total_p95_ns": 10311.35, "total_p99_ns": 11348.670000000002, "total_ci_low_ns": 7832.523913043478, "total_ci_high_ns": 8406.795923913043, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 0.9250122129946263, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.5232394059760304}, {"serializer": "protobuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "4.28.3", "avg_time_ser_ns": 3009.325842696629, "avg_time_deser_ns": 5383.213483146067, "avg_time_total_ns": 8392.539325842698, "median_size_bytes": 368.0, "avg_ops_per_sec": 119153.44822046332, "min_ops_per_sec": 64499.48400412797, "max_ops_per_sec": 187828.70022539445, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 3009.325842696629, "ser_median_ns": 2675.0, "ser_std_ns": 770.6959041742272, "ser_mad_ns": 282.0, "ser_cv": 0.25610251081471913, "ser_min_ns": 2075.0, "ser_max_ns": 5541.0, "ser_p5_ns": 2254.2, "ser_p25_ns": 2472.0, "ser_p50_ns": 2675.0, "ser_p75_ns": 3554.0, "ser_p95_ns": 4355.2, "ser_p99_ns": 4829.960000000004, "ser_ci_low_ns": 2856.3303370786516, "ser_ci_high_ns": 3171.678370786517, "deser_mean_ns": 5383.213483146067, "deser_median_ns": 4677.0, "deser_std_ns": 1788.102107567928, "deser_mad_ns": 698.0, "deser_cv": 0.3321625852599333, "deser_min_ns": 3231.0, "deser_max_ns": 11138.0, "deser_p5_ns": 3657.4, "deser_p25_ns": 4212.0, "deser_p50_ns": 4677.0, "deser_p75_ns": 6095.0, "deser_p95_ns": 9098.599999999995, "deser_p99_ns": 10734.080000000002, "deser_ci_low_ns": 5029.923876404495, "deser_ci_high_ns": 5762.205056179775, "total_mean_ns": 8392.539325842698, "total_median_ns": 7440.0, "total_std_ns": 2391.2988057851617, "total_mad_ns": 987.0, "total_cv": 0.28493149843477805, "total_min_ns": 5324.0, "total_max_ns": 15504.0, "total_p5_ns": 6013.0, "total_p25_ns": 6783.0, "total_p50_ns": 7440.0, "total_p75_ns": 9619.0, "total_p95_ns": 12738.999999999998, "total_p99_ns": 14645.120000000004, "total_ci_low_ns": 7924.9, "total_ci_high_ns": 8899.238202247192, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 0.9095897569898093, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.755309990938675}, {"serializer": "kryo", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "5.6.2", "avg_time_ser_ns": 3666.8333333333335, "avg_time_deser_ns": 2315.78125, "avg_time_total_ns": 5982.614583333333, "median_size_bytes": 341.0, "avg_ops_per_sec": 167150.99829192573, "min_ops_per_sec": 131839.15622940013, "max_ops_per_sec": 242248.06201550388, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 3666.8333333333335, "ser_median_ns": 3705.0, "ser_std_ns": 456.08834939750477, "ser_mad_ns": 302.0, "ser_cv": 0.12438207792305025, "ser_min_ns": 2453.0, "ser_max_ns": 4583.0, "ser_p5_ns": 2920.0, "ser_p25_ns": 3312.5, "ser_p50_ns": 3705.0, "ser_p75_ns": 3960.5, "ser_p95_ns": 4398.25, "ser_p99_ns": 4534.55, "ser_ci_low_ns": 3576.6434895833336, "ser_ci_high_ns": 3757.05390625, "deser_mean_ns": 2315.78125, "deser_median_ns": 2303.5, "deser_std_ns": 323.17709673685596, "deser_mad_ns": 219.0, "deser_cv": 0.13955424189433088, "deser_min_ns": 1648.0, "deser_max_ns": 3104.0, "deser_p5_ns": 1797.25, "deser_p25_ns": 2075.25, "deser_p50_ns": 2303.5, "deser_p75_ns": 2517.5, "deser_p95_ns": 2860.25, "deser_p99_ns": 3055.5499999999997, "deser_ci_low_ns": 2251.81015625, "deser_ci_high_ns": 2377.961458333333, "total_mean_ns": 5982.614583333333, "total_median_ns": 6048.0, "total_std_ns": 764.4689022595555, "total_mad_ns": 516.0, "total_cv": 0.1277817401758173, "total_min_ns": 4128.0, "total_max_ns": 7585.0, "total_p5_ns": 4750.5, "total_p25_ns": 5363.5, "total_p50_ns": 6048.0, "total_p75_ns": 6518.75, "total_p95_ns": 7184.5, "total_p99_ns": 7506.15, "total_ci_low_ns": 5825.861197916667, "total_ci_high_ns": 6134.994270833333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 0.48498062015503873, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 0.9475018208693679}, {"serializer": "gson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.12.1", "avg_time_ser_ns": 6717.0, "avg_time_deser_ns": 4454.53125, "avg_time_total_ns": 11171.53125, "median_size_bytes": 411.0, "avg_ops_per_sec": 89513.24376414379, "min_ops_per_sec": 72600.55176419341, "max_ops_per_sec": 121713.72930866602, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 6717.0, "ser_median_ns": 6706.5, "ser_std_ns": 715.9748745959118, "ser_mad_ns": 489.0, "ser_cv": 0.10659146562392613, "ser_min_ns": 4870.0, "ser_max_ns": 8377.0, "ser_p5_ns": 5610.75, "ser_p25_ns": 6229.25, "ser_p50_ns": 6706.5, "ser_p75_ns": 7204.25, "ser_p95_ns": 7891.25, "ser_p99_ns": 8040.699999999999, "ser_ci_low_ns": 6567.23828125, "ser_ci_high_ns": 6856.7640625, "deser_mean_ns": 4454.53125, "deser_median_ns": 4469.0, "deser_std_ns": 554.0942339221638, "deser_mad_ns": 431.0, "deser_cv": 0.12438889814100278, "deser_min_ns": 3241.0, "deser_max_ns": 5427.0, "deser_p5_ns": 3597.5, "deser_p25_ns": 4038.5, "deser_p50_ns": 4469.0, "deser_p75_ns": 4894.75, "deser_p95_ns": 5312.25, "deser_p99_ns": 5411.8, "deser_ci_low_ns": 4344.88359375, "deser_ci_high_ns": 4567.092447916666, "total_mean_ns": 11171.53125, "total_median_ns": 11236.0, "total_std_ns": 1240.8359232738396, "total_mad_ns": 876.5, "total_cv": 0.11107124847131764, "total_min_ns": 8216.0, "total_max_ns": 13774.0, "total_p5_ns": 9283.25, "total_p25_ns": 10341.0, "total_p50_ns": 11236.0, "total_p75_ns": 12095.0, "total_p95_ns": 13241.25, "total_p99_ns": 13414.9, "total_ci_low_ns": 10927.578906249999, "total_ci_high_ns": 11411.981510416666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.2902844877715935}, {"serializer": "jsoniter", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "0.9.23", "avg_time_ser_ns": 2478.7934782608695, "avg_time_deser_ns": 3495.4021739130435, "avg_time_total_ns": 5974.195652173913, "median_size_bytes": 411.0, "avg_ops_per_sec": 167386.5501268135, "min_ops_per_sec": 127469.72594008922, "max_ops_per_sec": 265041.081367612, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 2478.7934782608695, "ser_median_ns": 2456.0, "ser_std_ns": 362.8743171772971, "ser_mad_ns": 239.0, "ser_cv": 0.14639150875606266, "ser_min_ns": 1655.0, "ser_max_ns": 3311.0, "ser_p5_ns": 1872.7, "ser_p25_ns": 2254.75, "ser_p50_ns": 2456.0, "ser_p75_ns": 2714.0, "ser_p95_ns": 3072.0, "ser_p99_ns": 3296.44, "ser_ci_low_ns": 2406.3165760869565, "ser_ci_high_ns": 2554.4842391304346, "deser_mean_ns": 3495.4021739130435, "deser_median_ns": 3553.5, "deser_std_ns": 499.0583894086725, "deser_mad_ns": 311.0, "deser_cv": 0.14277567060330146, "deser_min_ns": 2112.0, "deser_max_ns": 4537.0, "deser_p5_ns": 2599.0, "deser_p25_ns": 3179.75, "deser_p50_ns": 3553.5, "deser_p75_ns": 3799.75, "deser_p95_ns": 4257.3, "deser_p99_ns": 4534.27, "deser_ci_low_ns": 3395.100543478261, "deser_ci_high_ns": 3590.757608695652, "total_mean_ns": 5974.195652173913, "total_median_ns": 5957.5, "total_std_ns": 847.7255703458821, "total_mad_ns": 542.0, "total_cv": 0.14189785867448257, "total_min_ns": 3773.0, "total_max_ns": 7845.0, "total_p5_ns": 4467.2, "total_p25_ns": 5425.25, "total_p50_ns": 5957.5, "total_p75_ns": 6523.75, "total_p95_ns": 7263.35, "total_p99_ns": 7833.17, "total_ci_low_ns": 5807.117934782608, "total_ci_high_ns": 6156.268206521739, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 0.4696663296258847, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.8966626987456908}, {"serializer": "msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "0.9.8", "avg_time_ser_ns": 3332.1894736842105, "avg_time_deser_ns": 4464.831578947368, "avg_time_total_ns": 7797.021052631579, "median_size_bytes": 346.0, "avg_ops_per_sec": 128254.11054424295, "min_ops_per_sec": 90818.27263645445, "max_ops_per_sec": 215053.7634408602, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 3332.1894736842105, "ser_median_ns": 3268.0, "ser_std_ns": 636.1640744927773, "ser_mad_ns": 508.0, "ser_cv": 0.1909147362467979, "ser_min_ns": 1718.0, "ser_max_ns": 4882.0, "ser_p5_ns": 2335.2, "ser_p25_ns": 2926.5, "ser_p50_ns": 3268.0, "ser_p75_ns": 3798.0, "ser_p95_ns": 4308.0, "ser_p99_ns": 4645.120000000001, "ser_ci_low_ns": 3207.4810526315787, "ser_ci_high_ns": 3453.1460526315786, "deser_mean_ns": 4464.831578947368, "deser_median_ns": 4432.0, "deser_std_ns": 653.170494386299, "deser_mad_ns": 409.0, "deser_cv": 0.1462923030436662, "deser_min_ns": 2877.0, "deser_max_ns": 6129.0, "deser_p5_ns": 3379.6, "deser_p25_ns": 4024.0, "deser_p50_ns": 4432.0, "deser_p75_ns": 4896.5, "deser_p95_ns": 5487.3, "deser_p99_ns": 5850.76, "deser_ci_low_ns": 4331.899210526316, "deser_ci_high_ns": 4594.836052631579, "total_mean_ns": 7797.021052631579, "total_median_ns": 7681.0, "total_std_ns": 1271.4873011551788, "total_mad_ns": 910.0, "total_cv": 0.16307347287795743, "total_min_ns": 4650.0, "total_max_ns": 11011.0, "total_p5_ns": 5688.9, "total_p25_ns": 6869.5, "total_p50_ns": 7681.0, "total_p75_ns": 8700.5, "total_p95_ns": 9769.7, "total_p99_ns": 10495.880000000001, "total_ci_low_ns": 7564.373684210526, "total_ci_high_ns": 8045.016315789473, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 0.9020807833537332, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.2961302529800056}, {"serializer": "jackson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 3016.8105263157895, "avg_time_deser_ns": 4611.147368421052, "avg_time_total_ns": 7627.957894736842, "median_size_bytes": 411.0, "avg_ops_per_sec": 131096.68587578106, "min_ops_per_sec": 92575.4489909276, "max_ops_per_sec": 215100.02151000215, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 3016.8105263157895, "ser_median_ns": 2999.0, "ser_std_ns": 563.4700485675336, "ser_mad_ns": 332.0, "ser_cv": 0.1867767443968907, "ser_min_ns": 1639.0, "ser_max_ns": 4282.0, "ser_p5_ns": 2181.3, "ser_p25_ns": 2663.5, "ser_p50_ns": 2999.0, "ser_p75_ns": 3318.0, "ser_p95_ns": 3976.2999999999997, "ser_p99_ns": 4272.6, "ser_ci_low_ns": 2909.8986842105264, "ser_ci_high_ns": 3130.861052631579, "deser_mean_ns": 4611.147368421052, "deser_median_ns": 4479.0, "deser_std_ns": 791.4825567414483, "deser_mad_ns": 533.0, "deser_cv": 0.17164546988062704, "deser_min_ns": 2827.0, "deser_max_ns": 6832.0, "deser_p5_ns": 3543.9, "deser_p25_ns": 4065.5, "deser_p50_ns": 4479.0, "deser_p75_ns": 5204.0, "deser_p95_ns": 6028.7, "deser_p99_ns": 6476.680000000001, "deser_ci_low_ns": 4456.637368421052, "deser_ci_high_ns": 4773.568421052631, "total_mean_ns": 7627.957894736842, "total_median_ns": 7499.0, "total_std_ns": 1307.9198924310301, "total_mad_ns": 911.0, "total_cv": 0.1714639632887161, "total_min_ns": 4649.0, "total_max_ns": 10802.0, "total_p5_ns": 5699.9, "total_p25_ns": 6675.5, "total_p50_ns": 7499.0, "total_p75_ns": 8502.5, "total_p95_ns": 9853.6, "total_p99_ns": 10730.56, "total_ci_low_ns": 7376.207368421053, "total_ci_high_ns": 7874.00447368421, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 0.8878824969400245, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.1111914630613637}, {"serializer": "ion", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 7974.8, "avg_time_deser_ns": 11421.6, "avg_time_total_ns": 19396.4, "median_size_bytes": 409.0, "avg_ops_per_sec": 51555.95883772246, "min_ops_per_sec": 40531.77691309987, "max_ops_per_sec": 75728.89057175313, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 7974.8, "ser_median_ns": 8105.0, "ser_std_ns": 1226.0103397571693, "ser_mad_ns": 722.0, "ser_cv": 0.1537355594820145, "ser_min_ns": 5083.0, "ser_max_ns": 10585.0, "ser_p5_ns": 5695.7, "ser_p25_ns": 7231.5, "ser_p50_ns": 8105.0, "ser_p75_ns": 8619.0, "ser_p95_ns": 9923.4, "ser_p99_ns": 10287.960000000001, "ser_ci_low_ns": 7729.954736842105, "ser_ci_high_ns": 8214.906842105262, "deser_mean_ns": 11421.6, "deser_median_ns": 11436.0, "deser_std_ns": 1519.3582309786436, "deser_mad_ns": 1042.0, "deser_cv": 0.13302499045480876, "deser_min_ns": 8022.0, "deser_max_ns": 15354.0, "deser_p5_ns": 9092.8, "deser_p25_ns": 10378.0, "deser_p50_ns": 11436.0, "deser_p75_ns": 12419.5, "deser_p95_ns": 13887.0, "deser_p99_ns": 14962.960000000001, "deser_ci_low_ns": 11123.815789473685, "deser_ci_high_ns": 11713.995789473685, "total_mean_ns": 19396.4, "total_median_ns": 19709.0, "total_std_ns": 2600.6273604815256, "total_mad_ns": 1701.0, "total_cv": 0.13407783714924035, "total_min_ns": 13205.0, "total_max_ns": 24672.0, "total_p5_ns": 14920.3, "total_p25_ns": 17635.0, "total_p50_ns": 19709.0, "total_p75_ns": 20887.5, "total_p95_ns": 23566.7, "total_p99_ns": 24125.86, "total_ci_low_ns": 18867.402105263158, "total_ci_high_ns": 19949.671842105265, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.0712130988477355}, {"serializer": "hessian", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "4.0.66", "avg_time_ser_ns": 3650.3636363636365, "avg_time_deser_ns": 3521.2727272727275, "avg_time_total_ns": 7171.636363636364, "median_size_bytes": 374.0, "avg_ops_per_sec": 139438.19085285466, "min_ops_per_sec": 112688.7536623845, "max_ops_per_sec": 196579.51641438963, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 3650.3636363636365, "ser_median_ns": 3611.5, "ser_std_ns": 380.2725030731533, "ser_mad_ns": 257.5, "ser_cv": 0.10417386894966096, "ser_min_ns": 2723.0, "ser_max_ns": 4430.0, "ser_p5_ns": 3015.45, "ser_p25_ns": 3433.25, "ser_p50_ns": 3611.5, "ser_p75_ns": 3915.0, "ser_p95_ns": 4249.45, "ser_p99_ns": 4344.74, "ser_ci_low_ns": 3572.4031250000003, "ser_ci_high_ns": 3730.8681818181817, "deser_mean_ns": 3521.2727272727275, "deser_median_ns": 3497.0, "deser_std_ns": 487.5563445723031, "deser_mad_ns": 353.0, "deser_cv": 0.1384602620513072, "deser_min_ns": 2362.0, "deser_max_ns": 4675.0, "deser_p5_ns": 2702.95, "deser_p25_ns": 3163.0, "deser_p50_ns": 3497.0, "deser_p75_ns": 3876.0, "deser_p95_ns": 4370.15, "deser_p99_ns": 4480.119999999999, "deser_ci_low_ns": 3422.815340909091, "deser_ci_high_ns": 3620.206818181818, "total_mean_ns": 7171.636363636364, "total_median_ns": 7154.0, "total_std_ns": 842.496129556486, "total_mad_ns": 541.0, "total_cv": 0.11747613610588868, "total_min_ns": 5087.0, "total_max_ns": 8874.0, "total_p5_ns": 5662.4, "total_p25_ns": 6690.0, "total_p50_ns": 7154.0, "total_p75_ns": 7746.75, "total_p95_ns": 8590.1, "total_p99_ns": 8794.83, "total_ci_low_ns": 6999.25, "total_ci_high_ns": 7339.360511363637, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 0.880946088794926, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.1844422857226746}, {"serializer": "bson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "5.3.1", "avg_time_ser_ns": 3996.887640449438, "avg_time_deser_ns": 4084.0898876404494, "avg_time_total_ns": 8080.9775280898875, "median_size_bytes": 599.0, "avg_ops_per_sec": 123747.4051281481, "min_ops_per_sec": 93650.49634763064, "max_ops_per_sec": 181257.93003443902, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 3996.887640449438, "ser_median_ns": 3983.0, "ser_std_ns": 472.030753962509, "ser_mad_ns": 293.0, "ser_cv": 0.11809958058001113, "ser_min_ns": 2767.0, "ser_max_ns": 5151.0, "ser_p5_ns": 3246.4, "ser_p25_ns": 3696.0, "ser_p50_ns": 3983.0, "ser_p75_ns": 4291.0, "ser_p95_ns": 4685.6, "ser_p99_ns": 5079.72, "ser_ci_low_ns": 3899.02191011236, "ser_ci_high_ns": 4091.840449438202, "deser_mean_ns": 4084.0898876404494, "deser_median_ns": 3977.0, "deser_std_ns": 680.8759171505988, "deser_mad_ns": 414.0, "deser_cv": 0.16671423398664945, "deser_min_ns": 2459.0, "deser_max_ns": 5608.0, "deser_p5_ns": 3084.0, "deser_p25_ns": 3676.0, "deser_p50_ns": 3977.0, "deser_p75_ns": 4499.0, "deser_p95_ns": 5477.599999999999, "deser_p99_ns": 5607.12, "deser_ci_low_ns": 3938.2828651685395, "deser_ci_high_ns": 4225.52893258427, "total_mean_ns": 8080.9775280898875, "total_median_ns": 8021.0, "total_std_ns": 1087.9980675276129, "total_mad_ns": 761.0, "total_cv": 0.13463693764098172, "total_min_ns": 5517.0, "total_max_ns": 10678.0, "total_p5_ns": 6333.2, "total_p25_ns": 7332.0, "total_p50_ns": 8021.0, "total_p75_ns": 8906.0, "total_p95_ns": 9941.8, "total_p99_ns": 10289.920000000002, "total_ci_low_ns": 7854.975, "total_ci_high_ns": 8306.273595505618, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 0.9594983015416776, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.7948407945445255}, {"serializer": "fastjson2", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.0.57", "avg_time_ser_ns": 4355.95744680851, "avg_time_deser_ns": 4312.787234042553, "avg_time_total_ns": 8668.744680851063, "median_size_bytes": 411.0, "avg_ops_per_sec": 115356.95614717585, "min_ops_per_sec": 74682.59895444362, "max_ops_per_sec": 185494.3424225561, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 4355.95744680851, "ser_median_ns": 4302.0, "ser_std_ns": 582.7061620474207, "ser_mad_ns": 408.0, "ser_cv": 0.13377223472978447, "ser_min_ns": 2950.0, "ser_max_ns": 5796.0, "ser_p5_ns": 3398.2, "ser_p25_ns": 4027.25, "ser_p50_ns": 4302.0, "ser_p75_ns": 4810.5, "ser_p95_ns": 5380.05, "ser_p99_ns": 5565.359999999999, "ser_ci_low_ns": 4236.350797872341, "ser_ci_high_ns": 4477.260106382979, "deser_mean_ns": 4312.787234042553, "deser_median_ns": 3737.0, "deser_std_ns": 1488.2505416340314, "deser_mad_ns": 604.0, "deser_cv": 0.3450785909137078, "deser_min_ns": 2396.0, "deser_max_ns": 8411.0, "deser_p5_ns": 2786.25, "deser_p25_ns": 3182.5, "deser_p50_ns": 3737.0, "deser_p75_ns": 5845.25, "deser_p95_ns": 6814.15, "deser_p99_ns": 7401.019999999992, "deser_ci_low_ns": 4032.20585106383, "deser_ci_high_ns": 4610.084840425532, "total_mean_ns": 8668.744680851063, "total_median_ns": 8058.0, "total_std_ns": 1937.8573409557614, "total_mad_ns": 1202.0, "total_cv": 0.22354532430011656, "total_min_ns": 5391.0, "total_max_ns": 13390.0, "total_p5_ns": 6216.5, "total_p25_ns": 7233.0, "total_p50_ns": 8058.0, "total_p75_ns": 10197.5, "total_p95_ns": 11825.099999999999, "total_p99_ns": 13139.829999999998, "total_ci_low_ns": 8283.318882978723, "total_ci_high_ns": 9072.167021276597, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 0.9480455220188025, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.2479406832044813}, {"serializer": "moshi", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "1.15.2", "avg_time_ser_ns": 2767.968085106383, "avg_time_deser_ns": 3669.223404255319, "avg_time_total_ns": 6437.191489361702, "median_size_bytes": 411.0, "avg_ops_per_sec": 155347.25068418894, "min_ops_per_sec": 113921.1665527455, "max_ops_per_sec": 237135.40431586435, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 2767.968085106383, "ser_median_ns": 2737.0, "ser_std_ns": 413.53741368692914, "ser_mad_ns": 269.0, "ser_cv": 0.14940107724220217, "ser_min_ns": 1713.0, "ser_max_ns": 3788.0, "ser_p5_ns": 2142.7, "ser_p25_ns": 2485.25, "ser_p50_ns": 2737.0, "ser_p75_ns": 3027.75, "ser_p95_ns": 3387.8499999999995, "ser_p99_ns": 3770.33, "ser_ci_low_ns": 2682.2837765957447, "ser_ci_high_ns": 2849.2359042553194, "deser_mean_ns": 3669.223404255319, "deser_median_ns": 3633.0, "deser_std_ns": 513.0622623403019, "deser_mad_ns": 302.5, "deser_cv": 0.13982857019425057, "deser_min_ns": 2504.0, "deser_max_ns": 4990.0, "deser_p5_ns": 2892.25, "deser_p25_ns": 3357.25, "deser_p50_ns": 3633.0, "deser_p75_ns": 3962.0, "deser_p95_ns": 4580.999999999999, "deser_p99_ns": 4931.41, "deser_ci_low_ns": 3564.188829787234, "deser_ci_high_ns": 3770.567819148936, "total_mean_ns": 6437.191489361702, "total_median_ns": 6395.5, "total_std_ns": 888.9723712894779, "total_mad_ns": 580.5, "total_cv": 0.13809941381402444, "total_min_ns": 4217.0, "total_max_ns": 8778.0, "total_p5_ns": 4998.2, "total_p25_ns": 5809.5, "total_p50_ns": 6395.5, "total_p75_ns": 6948.75, "total_p95_ns": 7781.099999999999, "total_p99_ns": 8512.949999999999, "total_ci_low_ns": 6253.119148936171, "total_ci_high_ns": 6612.286436170213, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 0.6684809500247402, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.3659356689213598}, {"serializer": "protostuff", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "1.8.0", "avg_time_ser_ns": 1841.3695652173913, "avg_time_deser_ns": 3303.358695652174, "avg_time_total_ns": 5144.728260869565, "median_size_bytes": 368.0, "avg_ops_per_sec": 194373.7257428985, "min_ops_per_sec": 75227.56337922215, "max_ops_per_sec": 369412.6339120798, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 1841.3695652173913, "ser_median_ns": 1725.0, "ser_std_ns": 399.82473405811703, "ser_mad_ns": 181.5, "ser_cv": 0.21713443168097216, "ser_min_ns": 1224.0, "ser_max_ns": 2835.0, "ser_p5_ns": 1361.4, "ser_p25_ns": 1565.75, "ser_p50_ns": 1725.0, "ser_p75_ns": 1950.0, "ser_p95_ns": 2720.4500000000003, "ser_p99_ns": 2814.07, "ser_ci_low_ns": 1760.4741847826087, "ser_ci_high_ns": 1924.785597826087, "deser_mean_ns": 3303.358695652174, "deser_median_ns": 2078.5, "deser_std_ns": 2273.8027816202034, "deser_mad_ns": 296.5, "deser_cv": 0.6883305723392815, "deser_min_ns": 1480.0, "deser_max_ns": 11459.0, "deser_p5_ns": 1678.55, "deser_p25_ns": 1858.5, "deser_p50_ns": 2078.5, "deser_p75_ns": 5433.0, "deser_p95_ns": 8093.95, "deser_p99_ns": 8757.21000000001, "deser_ci_low_ns": 2862.4546195652174, "deser_ci_high_ns": 3774.261141304348, "total_mean_ns": 5144.728260869565, "total_median_ns": 3763.5, "total_std_ns": 2595.3379212245927, "total_mad_ns": 450.5, "total_cv": 0.5044655013102533, "total_min_ns": 2707.0, "total_max_ns": 13293.0, "total_p5_ns": 3150.45, "total_p25_ns": 3433.25, "total_p50_ns": 3763.5, "total_p75_ns": 7352.25, "total_p95_ns": 10349.45, "total_p99_ns": 11389.280000000008, "total_ci_low_ns": 4622.013586956522, "total_ci_high_ns": 5687.856793478261, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": -0.3172396359959555, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.0025720670440684264}, {"serializer": "jackson-smile", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 2378.1739130434785, "avg_time_deser_ns": 3599.608695652174, "avg_time_total_ns": 5977.782608695652, "median_size_bytes": 350.0, "avg_ops_per_sec": 167286.11016154021, "min_ops_per_sec": 119388.72970391595, "max_ops_per_sec": 279329.6089385475, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 2378.1739130434785, "ser_median_ns": 2313.5, "ser_std_ns": 460.4834919353346, "ser_mad_ns": 357.5, "ser_cv": 0.1936290232643368, "ser_min_ns": 1339.0, "ser_max_ns": 3480.0, "ser_p5_ns": 1713.95, "ser_p25_ns": 2058.75, "ser_p50_ns": 2313.5, "ser_p75_ns": 2720.5, "ser_p95_ns": 3154.5000000000005, "ser_p99_ns": 3397.1900000000005, "ser_ci_low_ns": 2286.097554347826, "ser_ci_high_ns": 2476.186956521739, "deser_mean_ns": 3599.608695652174, "deser_median_ns": 3527.0, "deser_std_ns": 675.9298350432364, "deser_mad_ns": 490.5, "deser_cv": 0.18777869824007967, "deser_min_ns": 2179.0, "deser_max_ns": 5150.0, "deser_p5_ns": 2572.25, "deser_p25_ns": 3115.75, "deser_p50_ns": 3527.0, "deser_p75_ns": 4120.75, "deser_p95_ns": 4755.8, "deser_p99_ns": 5071.740000000001, "deser_ci_low_ns": 3465.4793478260867, "deser_ci_high_ns": 3733.654347826087, "total_mean_ns": 5977.782608695652, "total_median_ns": 5839.5, "total_std_ns": 1119.5988177294812, "total_mad_ns": 853.5, "total_cv": 0.18729333115942415, "total_min_ns": 3580.0, "total_max_ns": 8376.0, "total_p5_ns": 4323.3, "total_p25_ns": 5214.75, "total_p50_ns": 5839.5, "total_p75_ns": 6833.75, "total_p95_ns": 7816.200000000001, "total_p99_ns": 8325.04, "total_ci_low_ns": 5751.491847826087, "total_ci_high_ns": 6203.454076086957, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 0.4044489383215369, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.7832240822607038}, {"serializer": "fory", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "1.3.0", "avg_time_ser_ns": 3679.537634408602, "avg_time_deser_ns": 3369.1397849462364, "avg_time_total_ns": 7048.677419354839, "median_size_bytes": 364.0, "avg_ops_per_sec": 141870.5865662284, "min_ops_per_sec": 87161.16098666434, "max_ops_per_sec": 338524.0352064997, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 3679.537634408602, "ser_median_ns": 3204.0, "ser_std_ns": 1322.3261088862191, "ser_mad_ns": 565.0, "ser_cv": 0.35937289960583635, "ser_min_ns": 1449.0, "ser_max_ns": 7768.0, "ser_p5_ns": 2121.6, "ser_p25_ns": 2743.0, "ser_p50_ns": 3204.0, "ser_p75_ns": 4754.0, "ser_p95_ns": 6048.6, "ser_p99_ns": 6283.119999999997, "ser_ci_low_ns": 3413.7956989247314, "ser_ci_high_ns": 3962.5470430107525, "deser_mean_ns": 3369.1397849462364, "deser_median_ns": 3058.0, "deser_std_ns": 985.6005627931703, "deser_mad_ns": 457.0, "deser_cv": 0.292537747230603, "deser_min_ns": 1505.0, "deser_max_ns": 5384.0, "deser_p5_ns": 2163.6, "deser_p25_ns": 2716.0, "deser_p50_ns": 3058.0, "deser_p75_ns": 3988.0, "deser_p95_ns": 5162.0, "deser_p99_ns": 5381.24, "deser_ci_low_ns": 3176.685483870968, "deser_ci_high_ns": 3569.564247311828, "total_mean_ns": 7048.677419354839, "total_median_ns": 6183.0, "total_std_ns": 2244.9789732785543, "total_mad_ns": 945.0, "total_cv": 0.31849648376787765, "total_min_ns": 2954.0, "total_max_ns": 11473.0, "total_p5_ns": 4302.6, "total_p25_ns": 5456.0, "total_p50_ns": 6183.0, "total_p75_ns": 8976.0, "total_p95_ns": 11137.999999999998, "total_p99_ns": 11431.6, "total_ci_low_ns": 6605.541129032258, "total_ci_high_ns": 7519.043279569893, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 0.5418854713678419, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.0789423510302818}, {"serializer": "java-serialization", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "21.0.11", "avg_time_ser_ns": 6628.58947368421, "avg_time_deser_ns": 18294.115789473683, "avg_time_total_ns": 24922.705263157895, "median_size_bytes": 528.0, "avg_ops_per_sec": 40124.05513129647, "min_ops_per_sec": 26944.736345754856, "max_ops_per_sec": 69161.07614634484, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 6628.58947368421, "ser_median_ns": 6551.0, "ser_std_ns": 1075.2653655126237, "ser_mad_ns": 742.0, "ser_cv": 0.16221631612298124, "ser_min_ns": 4375.0, "ser_max_ns": 9514.0, "ser_p5_ns": 5091.2, "ser_p25_ns": 5810.0, "ser_p50_ns": 6551.0, "ser_p75_ns": 7278.5, "ser_p95_ns": 8805.199999999999, "ser_p99_ns": 9347.62, "ser_ci_low_ns": 6417.555263157895, "ser_ci_high_ns": 6849.383421052631, "deser_mean_ns": 18294.115789473683, "deser_median_ns": 18061.0, "deser_std_ns": 3300.8383521274864, "deser_mad_ns": 2481.0, "deser_cv": 0.18043169673315218, "deser_min_ns": 10084.0, "deser_max_ns": 27776.0, "deser_p5_ns": 13567.7, "deser_p25_ns": 15868.5, "deser_p50_ns": 18061.0, "deser_p75_ns": 20580.5, "deser_p95_ns": 23922.0, "deser_p99_ns": 25888.480000000003, "deser_ci_low_ns": 17606.773421052632, "deser_ci_high_ns": 18947.83184210526, "total_mean_ns": 24922.705263157895, "total_median_ns": 24748.0, "total_std_ns": 4271.7798121239675, "total_mad_ns": 3040.0, "total_cv": 0.17140112869042134, "total_min_ns": 14459.0, "total_max_ns": 37113.0, "total_p5_ns": 19011.3, "total_p25_ns": 21647.0, "total_p50_ns": 24748.0, "total_p75_ns": 27728.0, "total_p95_ns": 32698.3, "total_p99_ns": 34951.94, "total_ci_low_ns": 24091.040789473685, "total_ci_high_ns": 25779.286315789475, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.210478125503939}, {"serializer": "avro", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "1.12.0", "avg_time_ser_ns": 2184.0333333333333, "avg_time_deser_ns": 4934.766666666666, "avg_time_total_ns": 7118.8, "median_size_bytes": 338.0, "avg_ops_per_sec": 140473.1134460864, "min_ops_per_sec": 107944.7322970639, "max_ops_per_sec": 193124.75859405176, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 2184.0333333333333, "ser_median_ns": 2163.0, "ser_std_ns": 369.5686963858203, "ser_mad_ns": 223.0, "ser_cv": 0.16921385344507273, "ser_min_ns": 1368.0, "ser_max_ns": 3074.0, "ser_p5_ns": 1552.1, "ser_p25_ns": 1952.25, "ser_p50_ns": 2163.0, "ser_p75_ns": 2423.75, "ser_p95_ns": 2841.6, "ser_p99_ns": 3004.58, "ser_ci_low_ns": 2107.351666666667, "ser_ci_high_ns": 2260.637222222222, "deser_mean_ns": 4934.766666666666, "deser_median_ns": 4920.5, "deser_std_ns": 509.1901931586946, "deser_mad_ns": 294.5, "deser_cv": 0.10318424913545957, "deser_min_ns": 3810.0, "deser_max_ns": 6190.0, "deser_p5_ns": 3972.6, "deser_p25_ns": 4654.5, "deser_p50_ns": 4920.5, "deser_p75_ns": 5250.75, "deser_p95_ns": 5787.299999999999, "deser_p99_ns": 6007.55, "deser_ci_low_ns": 4830.486111111111, "deser_ci_high_ns": 5045.385277777777, "total_mean_ns": 7118.8, "total_median_ns": 7030.5, "total_std_ns": 861.2362188848662, "total_mad_ns": 498.5, "total_cv": 0.12098053307929231, "total_min_ns": 5178.0, "total_max_ns": 9264.0, "total_p5_ns": 5526.5, "total_p25_ns": 6585.5, "total_p50_ns": 7030.5, "total_p75_ns": 7648.5, "total_p95_ns": 8509.35, "total_p99_ns": 8986.32, "total_ci_low_ns": 6949.536944444445, "total_ci_high_ns": 7280.670555555555, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 0.879328165374677, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.109835528148471}, {"serializer": "jackson-cbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 2888.315789473684, "avg_time_deser_ns": 3694.3368421052633, "avg_time_total_ns": 6582.652631578947, "median_size_bytes": 346.0, "avg_ops_per_sec": 151914.44178638593, "min_ops_per_sec": 106033.2944544587, "max_ops_per_sec": 277161.8625277162, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 2888.315789473684, "ser_median_ns": 2933.0, "ser_std_ns": 542.1308286625454, "ser_mad_ns": 369.0, "ser_cv": 0.18769790707730533, "ser_min_ns": 1502.0, "ser_max_ns": 4291.0, "ser_p5_ns": 1913.3, "ser_p25_ns": 2537.5, "ser_p50_ns": 2933.0, "ser_p75_ns": 3277.0, "ser_p95_ns": 3706.2, "ser_p99_ns": 3828.5200000000013, "ser_ci_low_ns": 2780.195789473684, "ser_ci_high_ns": 2995.217894736842, "deser_mean_ns": 3694.3368421052633, "deser_median_ns": 3671.0, "deser_std_ns": 597.219846375533, "deser_mad_ns": 416.0, "deser_cv": 0.16165820061908592, "deser_min_ns": 2098.0, "deser_max_ns": 5140.0, "deser_p5_ns": 2777.2, "deser_p25_ns": 3303.0, "deser_p50_ns": 3671.0, "deser_p75_ns": 4096.0, "deser_p95_ns": 4679.4, "deser_p99_ns": 4929.4400000000005, "deser_ci_low_ns": 3573.184210526316, "deser_ci_high_ns": 3811.5189473684213, "total_mean_ns": 6582.652631578947, "total_median_ns": 6603.0, "total_std_ns": 1116.2771596697874, "total_mad_ns": 803.0, "total_cv": 0.16957862159012813, "total_min_ns": 3608.0, "total_max_ns": 9431.0, "total_p5_ns": 4707.8, "total_p25_ns": 5886.5, "total_p50_ns": 6603.0, "total_p75_ns": 7419.0, "total_p95_ns": 8259.4, "total_p99_ns": 8742.920000000002, "total_ci_low_ns": 6365.124210526315, "total_ci_high_ns": 6812.747894736842, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 0.6685434516523868, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.3496615481100267}, {"serializer": "dsl-json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.0.2", "avg_time_ser_ns": 2359.860465116279, "avg_time_deser_ns": 2779.720930232558, "avg_time_total_ns": 5139.581395348837, "median_size_bytes": 411.0, "avg_ops_per_sec": 194568.37494683306, "min_ops_per_sec": 126008.06451612903, "max_ops_per_sec": 364166.0597232338, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 2359.860465116279, "ser_median_ns": 2390.0, "ser_std_ns": 404.8852608068176, "ser_mad_ns": 253.0, "ser_cv": 0.17157169535736402, "ser_min_ns": 1276.0, "ser_max_ns": 3176.0, "ser_p5_ns": 1587.25, "ser_p25_ns": 2130.75, "ser_p50_ns": 2390.0, "ser_p75_ns": 2627.0, "ser_p95_ns": 2928.0, "ser_p99_ns": 3078.2500000000005, "ser_ci_low_ns": 2276.6901162790696, "ser_ci_high_ns": 2443.401453488372, "deser_mean_ns": 2779.720930232558, "deser_median_ns": 2717.0, "deser_std_ns": 657.8234279655148, "deser_mad_ns": 467.0, "deser_cv": 0.23665088851580499, "deser_min_ns": 1413.0, "deser_max_ns": 4902.0, "deser_p5_ns": 1817.0, "deser_p25_ns": 2292.5, "deser_p50_ns": 2717.0, "deser_p75_ns": 3256.5, "deser_p95_ns": 3756.75, "deser_p99_ns": 4296.800000000004, "deser_ci_low_ns": 2644.5322674418603, "deser_ci_high_ns": 2919.9552325581394, "total_mean_ns": 5139.581395348837, "total_median_ns": 5242.5, "total_std_ns": 1004.635450008858, "total_mad_ns": 738.5, "total_cv": 0.19547028692220386, "total_min_ns": 2746.0, "total_max_ns": 7936.0, "total_p5_ns": 3348.0, "total_p25_ns": 4463.25, "total_p50_ns": 5242.5, "total_p75_ns": 5891.0, "total_p95_ns": 6488.5, "total_p99_ns": 7142.950000000005, "total_ci_low_ns": 4922.201744186046, "total_ci_high_ns": 5341.259302325581, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "dsl-json", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "dsl-json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.0.2", "avg_time_ser_ns": 90349.35483870968, "avg_time_deser_ns": 108251.6559139785, "avg_time_total_ns": 198601.01075268816, "median_size_bytes": 41431.0, "avg_ops_per_sec": 5035.221100889913, "min_ops_per_sec": 4251.736834496892, "max_ops_per_sec": 5983.258841760753, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 90349.35483870968, "ser_median_ns": 88947.0, "ser_std_ns": 5385.893484160348, "ser_mad_ns": 2759.0, "ser_cv": 0.05961186434341634, "ser_min_ns": 80088.0, "ser_max_ns": 106628.0, "ser_p5_ns": 83866.0, "ser_p25_ns": 86391.0, "ser_p50_ns": 88947.0, "ser_p75_ns": 94707.0, "ser_p95_ns": 100101.59999999999, "ser_p99_ns": 104527.64, "ser_ci_low_ns": 89211.02930107528, "ser_ci_high_ns": 91428.71129032258, "deser_mean_ns": 108251.6559139785, "deser_median_ns": 106669.0, "deser_std_ns": 8379.161794613941, "deser_mad_ns": 4708.0, "deser_cv": 0.07740446761638815, "deser_min_ns": 86896.0, "deser_max_ns": 132223.0, "deser_p5_ns": 98131.4, "deser_p25_ns": 102684.0, "deser_p50_ns": 106669.0, "deser_p75_ns": 113571.0, "deser_p95_ns": 123388.99999999997, "deser_p99_ns": 130085.84, "deser_ci_low_ns": 106543.76182795699, "deser_ci_high_ns": 109927.56370967742, "total_mean_ns": 198601.01075268816, "total_median_ns": 196945.0, "total_std_ns": 12411.108594893163, "total_mad_ns": 8877.0, "total_cv": 0.06249267588244222, "total_min_ns": 167133.0, "total_max_ns": 235198.0, "total_p5_ns": 182632.0, "total_p25_ns": 189936.0, "total_p50_ns": 196945.0, "total_p75_ns": 208397.0, "total_p95_ns": 218950.8, "total_p99_ns": 222869.08, "total_ci_low_ns": 196110.15268817203, "total_ci_high_ns": 201305.71102150538, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.9997277800462774, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.707958742274783}, {"serializer": "avro", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "1.12.0", "avg_time_ser_ns": 102156.52222222222, "avg_time_deser_ns": 205859.94444444444, "avg_time_total_ns": 308016.4666666667, "median_size_bytes": 34033.0, "avg_ops_per_sec": 3246.5796742035654, "min_ops_per_sec": 2872.3746495702926, "max_ops_per_sec": 3744.8134333947482, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 102156.52222222222, "ser_median_ns": 100676.0, "ser_std_ns": 6245.6698550037745, "ser_mad_ns": 2945.5, "ser_cv": 0.061138238843110766, "ser_min_ns": 91438.0, "ser_max_ns": 122028.0, "ser_p5_ns": 93828.75, "ser_p25_ns": 98195.5, "ser_p50_ns": 100676.0, "ser_p75_ns": 105646.25, "ser_p95_ns": 113968.2, "ser_p99_ns": 121160.25, "ser_ci_low_ns": 100896.13916666666, "ser_ci_high_ns": 103443.64805555556, "deser_mean_ns": 205859.94444444444, "deser_median_ns": 202027.5, "deser_std_ns": 12490.5505167051, "deser_mad_ns": 4664.5, "deser_cv": 0.060674992167191286, "deser_min_ns": 175598.0, "deser_max_ns": 235914.0, "deser_p5_ns": 190472.1, "deser_p25_ns": 198186.0, "deser_p50_ns": 202027.5, "deser_p75_ns": 213083.25, "deser_p95_ns": 230556.05, "deser_p99_ns": 233365.04, "deser_ci_low_ns": 203387.1313888889, "deser_ci_high_ns": 208445.96666666665, "total_mean_ns": 308016.4666666667, "total_median_ns": 303122.5, "total_std_ns": 16398.857534336366, "total_mad_ns": 7146.0, "total_cv": 0.05324019755113644, "total_min_ns": 267036.0, "total_max_ns": 348144.0, "total_p5_ns": 284275.2, "total_p25_ns": 297198.25, "total_p50_ns": 303122.5, "total_p75_ns": 323457.25, "total_p95_ns": 335609.75, "total_p99_ns": 346346.2, "total_ci_low_ns": 304587.0958333334, "total_ci_high_ns": 311319.5775, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.944162753826234}, {"serializer": "gson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.12.1", "avg_time_ser_ns": 287757.65625, "avg_time_deser_ns": 136355.375, "avg_time_total_ns": 424113.03125, "median_size_bytes": 41431.0, "avg_ops_per_sec": 2357.861999789708, "min_ops_per_sec": 2116.1289230385073, "max_ops_per_sec": 2671.147070686565, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 287757.65625, "ser_median_ns": 284531.5, "ser_std_ns": 12651.598202206147, "ser_mad_ns": 7303.5, "ser_cv": 0.04396615668573074, "ser_min_ns": 260205.0, "ser_max_ns": 323126.0, "ser_p5_ns": 272292.0, "ser_p25_ns": 278747.25, "ser_p50_ns": 284531.5, "ser_p75_ns": 294826.25, "ser_p95_ns": 311340.5, "ser_p99_ns": 321412.2, "ser_ci_low_ns": 285363.365625, "ser_ci_high_ns": 290401.9635416667, "deser_mean_ns": 136355.375, "deser_median_ns": 132572.0, "deser_std_ns": 10124.052559960468, "deser_mad_ns": 4607.0, "deser_cv": 0.07424755027046398, "deser_min_ns": 114166.0, "deser_max_ns": 164201.0, "deser_p5_ns": 125230.5, "deser_p25_ns": 129708.0, "deser_p50_ns": 132572.0, "deser_p75_ns": 142880.25, "deser_p95_ns": 156433.75, "deser_p99_ns": 159258.15, "deser_ci_low_ns": 134381.71432291667, "deser_ci_high_ns": 138493.07890625, "total_mean_ns": 424113.03125, "total_median_ns": 421483.5, "total_std_ns": 19101.533602499938, "total_mad_ns": 11986.0, "total_cv": 0.045038780219040814, "total_min_ns": 374371.0, "total_max_ns": 472561.0, "total_p5_ns": 402396.75, "total_p25_ns": 411109.0, "total_p50_ns": 421483.5, "total_p75_ns": 435933.75, "total_p95_ns": 458395.25, "total_p99_ns": 470298.1, "total_ci_low_ns": 420499.25885416666, "total_ci_high_ns": 427937.52682291664, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.962209849966207}, {"serializer": "jackson-cbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 86348.13684210526, "avg_time_deser_ns": 129106.88421052632, "avg_time_total_ns": 215455.02105263158, "median_size_bytes": 34832.0, "avg_ops_per_sec": 4641.339965596434, "min_ops_per_sec": 4035.4962247932817, "max_ops_per_sec": 5327.026134390216, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 86348.13684210526, "ser_median_ns": 84368.0, "ser_std_ns": 6468.891388810293, "ser_mad_ns": 3828.0, "ser_cv": 0.07491639802997949, "ser_min_ns": 75069.0, "ser_max_ns": 101888.0, "ser_p5_ns": 79164.1, "ser_p25_ns": 81442.5, "ser_p50_ns": 84368.0, "ser_p75_ns": 92157.0, "ser_p95_ns": 97205.9, "ser_p99_ns": 101190.52, "ser_ci_low_ns": 85106.06131578947, "ser_ci_high_ns": 87725.50315789472, "deser_mean_ns": 129106.88421052632, "deser_median_ns": 126302.0, "deser_std_ns": 9315.079187730194, "deser_mad_ns": 4600.0, "deser_cv": 0.07215013548418295, "deser_min_ns": 108763.0, "deser_max_ns": 151479.0, "deser_p5_ns": 119760.0, "deser_p25_ns": 122308.5, "deser_p50_ns": 126302.0, "deser_p75_ns": 132537.0, "deser_p95_ns": 147218.4, "deser_p99_ns": 150676.24, "deser_ci_low_ns": 127281.86394736842, "deser_ci_high_ns": 131074.5563157895, "total_mean_ns": 215455.02105263158, "total_median_ns": 211340.0, "total_std_ns": 14596.755113744148, "total_mad_ns": 8010.0, "total_cv": 0.06774850287744483, "total_min_ns": 187722.0, "total_max_ns": 247801.0, "total_p5_ns": 198071.4, "total_p25_ns": 205067.0, "total_p50_ns": 211340.0, "total_p75_ns": 224980.0, "total_p95_ns": 242608.1, "total_p99_ns": 246396.64, "total_ci_low_ns": 212578.9660526316, "total_ci_high_ns": 218348.94052631577, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.532553710911133}, {"serializer": "fory", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "1.3.0", "avg_time_ser_ns": 73664.72151898734, "avg_time_deser_ns": 73160.93670886075, "avg_time_total_ns": 146825.6582278481, "median_size_bytes": 34257.0, "avg_ops_per_sec": 6810.798685119276, "min_ops_per_sec": 5963.100335126239, "max_ops_per_sec": 7693.372928559339, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 73664.72151898734, "ser_median_ns": 71900.0, "ser_std_ns": 5269.17859831504, "ser_mad_ns": 2805.0, "ser_cv": 0.07152919999781567, "ser_min_ns": 63057.0, "ser_max_ns": 91195.0, "ser_p5_ns": 66928.3, "ser_p25_ns": 70044.0, "ser_p50_ns": 71900.0, "ser_p75_ns": 77609.0, "ser_p95_ns": 82704.59999999999, "ser_p99_ns": 87644.43999999999, "ser_ci_low_ns": 72565.7503164557, "ser_ci_high_ns": 74859.0069620253, "deser_mean_ns": 73160.93670886075, "deser_median_ns": 72659.0, "deser_std_ns": 4554.268227244249, "deser_mad_ns": 2729.0, "deser_cv": 0.06224999886712313, "deser_min_ns": 64163.0, "deser_max_ns": 86382.0, "deser_p5_ns": 67421.8, "deser_p25_ns": 70074.5, "deser_p50_ns": 72659.0, "deser_p75_ns": 75682.5, "deser_p95_ns": 83021.3, "deser_p99_ns": 85091.09999999999, "deser_ci_low_ns": 72165.54303797468, "deser_ci_high_ns": 74225.44493670887, "total_mean_ns": 146825.6582278481, "total_median_ns": 144971.0, "total_std_ns": 8921.134109066552, "total_mad_ns": 4999.0, "total_cv": 0.06076004845980319, "total_min_ns": 129982.0, "total_max_ns": 167698.0, "total_p5_ns": 134948.6, "total_p25_ns": 140212.0, "total_p50_ns": 144971.0, "total_p75_ns": 151482.5, "total_p95_ns": 163232.49999999997, "total_p99_ns": 167193.34, "total_ci_low_ns": 144870.7829113924, "total_ci_high_ns": 148727.33607594937, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "0.9.8", "avg_time_ser_ns": 147015.11458333334, "avg_time_deser_ns": 169881.89583333334, "avg_time_total_ns": 316897.0104166667, "median_size_bytes": 34833.0, "avg_ops_per_sec": 3155.599349723012, "min_ops_per_sec": 2836.5816921344426, "max_ops_per_sec": 3618.507944434192, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 147015.11458333334, "ser_median_ns": 142684.0, "ser_std_ns": 11516.97694880753, "ser_mad_ns": 6068.5, "ser_cv": 0.07833872715365808, "ser_min_ns": 128419.0, "ser_max_ns": 177644.0, "ser_p5_ns": 133327.75, "ser_p25_ns": 139026.0, "ser_p50_ns": 142684.0, "ser_p75_ns": 155087.0, "ser_p95_ns": 166924.75, "ser_p99_ns": 177179.45, "ser_ci_low_ns": 144650.58072916666, "ser_ci_high_ns": 149369.96197916666, "deser_mean_ns": 169881.89583333334, "deser_median_ns": 166215.0, "deser_std_ns": 10908.453693765909, "deser_mad_ns": 5024.0, "deser_cv": 0.06421198468651365, "deser_min_ns": 147679.0, "deser_max_ns": 198903.0, "deser_p5_ns": 156914.0, "deser_p25_ns": 162583.25, "deser_p50_ns": 166215.0, "deser_p75_ns": 178714.0, "deser_p95_ns": 188738.75, "deser_p99_ns": 197056.19999999998, "deser_ci_low_ns": 167830.45182291666, "deser_ci_high_ns": 172121.38385416666, "total_mean_ns": 316897.0104166667, "total_median_ns": 310888.0, "total_std_ns": 18788.024018952405, "total_mad_ns": 11263.5, "total_cv": 0.05928747637678654, "total_min_ns": 276357.0, "total_max_ns": 352537.0, "total_p5_ns": 294227.25, "total_p25_ns": 302658.5, "total_p50_ns": 310888.0, "total_p75_ns": 332803.0, "total_p95_ns": 348987.25, "total_p99_ns": 350807.05, "total_ci_low_ns": 313330.83489583334, "total_ci_high_ns": 320557.7505208333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.17225602278813}, {"serializer": "jackson-smile", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 84191.98924731182, "avg_time_deser_ns": 112571.55913978495, "avg_time_total_ns": 196763.5483870968, "median_size_bytes": 34341.0, "avg_ops_per_sec": 5082.242154083745, "min_ops_per_sec": 4244.392096941915, "max_ops_per_sec": 5860.15330161037, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 84191.98924731182, "ser_median_ns": 81662.0, "ser_std_ns": 6840.249549691665, "ser_mad_ns": 3343.0, "ser_cv": 0.08124584786325224, "ser_min_ns": 72979.0, "ser_max_ns": 103880.0, "ser_p5_ns": 75273.2, "ser_p25_ns": 79166.0, "ser_p50_ns": 81662.0, "ser_p75_ns": 88955.0, "ser_p95_ns": 98409.8, "ser_p99_ns": 100879.87999999999, "ser_ci_low_ns": 82803.01693548387, "ser_ci_high_ns": 85603.425, "deser_mean_ns": 112571.55913978495, "deser_median_ns": 110781.0, "deser_std_ns": 7404.900678167782, "deser_mad_ns": 4284.0, "deser_cv": 0.06577949825650721, "deser_min_ns": 97665.0, "deser_max_ns": 135047.0, "deser_p5_ns": 103563.0, "deser_p25_ns": 107507.0, "deser_p50_ns": 110781.0, "deser_p75_ns": 116685.0, "deser_p95_ns": 125968.79999999999, "deser_p99_ns": 133869.4, "deser_ci_low_ns": 111115.75510752689, "deser_ci_high_ns": 114045.26908602151, "total_mean_ns": 196763.5483870968, "total_median_ns": 193293.0, "total_std_ns": 12729.881463565858, "total_mad_ns": 7356.0, "total_cv": 0.06469634019062369, "total_min_ns": 170644.0, "total_max_ns": 235605.0, "total_p5_ns": 181434.0, "total_p25_ns": 187051.0, "total_p50_ns": 193293.0, "total_p75_ns": 205456.0, "total_p95_ns": 219446.0, "total_p99_ns": 232404.32, "total_ci_low_ns": 194343.2373655914, "total_ci_high_ns": 199282.36559139786, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.460896852485823}, {"serializer": "fastjson2", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.0.57", "avg_time_ser_ns": 97280.30769230769, "avg_time_deser_ns": 116697.10989010989, "avg_time_total_ns": 213977.41758241758, "median_size_bytes": 41431.0, "avg_ops_per_sec": 4673.390357255015, "min_ops_per_sec": 3968.6634335288563, "max_ops_per_sec": 5432.2436252621055, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 97280.30769230769, "ser_median_ns": 95357.0, "ser_std_ns": 6339.032202144824, "ser_mad_ns": 3204.0, "ser_cv": 0.06516254268227478, "ser_min_ns": 85661.0, "ser_max_ns": 116375.0, "ser_p5_ns": 89398.0, "ser_p25_ns": 93228.0, "ser_p50_ns": 95357.0, "ser_p75_ns": 100708.5, "ser_p95_ns": 107913.0, "ser_p99_ns": 115259.9, "ser_ci_low_ns": 96012.54340659341, "ser_ci_high_ns": 98645.67857142858, "deser_mean_ns": 116697.10989010989, "deser_median_ns": 114035.0, "deser_std_ns": 9602.540671267452, "deser_mad_ns": 3285.0, "deser_cv": 0.08228601959645677, "deser_min_ns": 98425.0, "deser_max_ns": 141273.0, "deser_p5_ns": 105710.0, "deser_p25_ns": 111012.0, "deser_p50_ns": 114035.0, "deser_p75_ns": 117912.0, "deser_p95_ns": 138173.5, "deser_p99_ns": 140831.1, "deser_ci_low_ns": 114895.42142857143, "deser_ci_high_ns": 118678.86675824177, "total_mean_ns": 213977.41758241758, "total_median_ns": 210413.0, "total_std_ns": 14527.738229612065, "total_mad_ns": 6976.0, "total_cv": 0.06789379175499406, "total_min_ns": 184086.0, "total_max_ns": 251974.0, "total_p5_ns": 194939.5, "total_p25_ns": 204722.5, "total_p50_ns": 210413.0, "total_p75_ns": 219294.0, "total_p95_ns": 243468.5, "total_p99_ns": 251168.5, "total_ci_low_ns": 211094.02032967034, "total_ci_high_ns": 217110.66016483516, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.458109467836492}, {"serializer": "protobuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "4.28.3", "avg_time_ser_ns": 96093.46987951807, "avg_time_deser_ns": 141084.48192771085, "avg_time_total_ns": 237177.9518072289, "median_size_bytes": 37330.0, "avg_ops_per_sec": 4216.243509905887, "min_ops_per_sec": 3312.333141218011, "max_ops_per_sec": 5122.530940086878, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 96093.46987951807, "ser_median_ns": 93374.0, "ser_std_ns": 8944.906605379383, "ser_mad_ns": 2436.0, "ser_cv": 0.09308547830143402, "ser_min_ns": 80288.0, "ser_max_ns": 128237.0, "ser_p5_ns": 88951.0, "ser_p25_ns": 91168.5, "ser_p50_ns": 93374.0, "ser_p75_ns": 96051.5, "ser_p95_ns": 117954.9, "ser_p99_ns": 125070.97999999997, "ser_ci_low_ns": 94320.55933734939, "ser_ci_high_ns": 98186.04728915662, "deser_mean_ns": 141084.48192771085, "deser_median_ns": 138513.0, "deser_std_ns": 12027.92960851336, "deser_mad_ns": 5089.0, "deser_cv": 0.08525338466831706, "deser_min_ns": 114928.0, "deser_max_ns": 177526.0, "deser_p5_ns": 129053.7, "deser_p25_ns": 133513.5, "deser_p50_ns": 138513.0, "deser_p75_ns": 143755.0, "deser_p95_ns": 167058.69999999998, "deser_p99_ns": 171852.41999999995, "deser_ci_low_ns": 138459.45843373495, "deser_ci_high_ns": 143807.93072289156, "total_mean_ns": 237177.9518072289, "total_median_ns": 233193.0, "total_std_ns": 19201.15470670501, "total_mad_ns": 7477.0, "total_cv": 0.08095674391484387, "total_min_ns": 195216.0, "total_max_ns": 301902.0, "total_p5_ns": 217570.9, "total_p25_ns": 225427.5, "total_p50_ns": 233193.0, "total_p75_ns": 239569.5, "total_p95_ns": 282757.0, "total_p99_ns": 291131.29999999993, "total_ci_low_ns": 233156.51506024096, "total_ci_high_ns": 241308.83012048193, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.958912387067475}, {"serializer": "jackson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 94896.1875, "avg_time_deser_ns": 124422.05208333333, "avg_time_total_ns": 219318.23958333334, "median_size_bytes": 41431.0, "avg_ops_per_sec": 4559.584291301201, "min_ops_per_sec": 3898.1643544055105, "max_ops_per_sec": 5409.206469410938, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 94896.1875, "ser_median_ns": 92455.0, "ser_std_ns": 8008.89972772067, "ser_mad_ns": 3464.0, "ser_cv": 0.08439643297282802, "ser_min_ns": 81590.0, "ser_max_ns": 116601.0, "ser_p5_ns": 85772.25, "ser_p25_ns": 89320.75, "ser_p50_ns": 92455.0, "ser_p75_ns": 99640.5, "ser_p95_ns": 112602.25, "ser_p99_ns": 114539.5, "ser_ci_low_ns": 93342.82526041666, "ser_ci_high_ns": 96486.9140625, "deser_mean_ns": 124422.05208333333, "deser_median_ns": 122404.5, "deser_std_ns": 8967.107927097015, "deser_mad_ns": 5035.5, "deser_cv": 0.07207008546275362, "deser_min_ns": 103152.0, "deser_max_ns": 146969.0, "deser_p5_ns": 113208.25, "deser_p25_ns": 118411.0, "deser_p50_ns": 122404.5, "deser_p75_ns": 130186.25, "deser_p95_ns": 141481.75, "deser_p99_ns": 146783.75, "deser_ci_low_ns": 122648.74635416667, "deser_ci_high_ns": 126174.034375, "total_mean_ns": 219318.23958333334, "total_median_ns": 215511.5, "total_std_ns": 14841.067995152252, "total_mad_ns": 8544.5, "total_cv": 0.06766910049682923, "total_min_ns": 184870.0, "total_max_ns": 256531.0, "total_p5_ns": 199093.5, "total_p25_ns": 208907.75, "total_p50_ns": 215511.5, "total_p75_ns": 231250.25, "total_p95_ns": 245862.75, "total_p99_ns": 256105.4, "total_ci_low_ns": 216452.57239583335, "total_ci_high_ns": 222220.27421874998, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.7634760828889116}, {"serializer": "moshi", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "1.15.2", "avg_time_ser_ns": 148344.64835164836, "avg_time_deser_ns": 158695.05494505496, "avg_time_total_ns": 307039.7032967033, "median_size_bytes": 41431.0, "avg_ops_per_sec": 3256.9077850940494, "min_ops_per_sec": 2863.7704401615165, "max_ops_per_sec": 3696.406723024548, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 148344.64835164836, "ser_median_ns": 149613.0, "ser_std_ns": 10677.335011211184, "ser_mad_ns": 6165.0, "ser_cv": 0.07197654333913517, "ser_min_ns": 121615.0, "ser_max_ns": 169671.0, "ser_p5_ns": 132477.0, "ser_p25_ns": 139712.0, "ser_p50_ns": 149613.0, "ser_p75_ns": 154638.5, "ser_p95_ns": 164789.5, "ser_p99_ns": 169254.3, "ser_ci_low_ns": 146194.60576923078, "ser_ci_high_ns": 150480.5239010989, "deser_mean_ns": 158695.05494505496, "deser_median_ns": 156597.0, "deser_std_ns": 8451.859638055517, "deser_mad_ns": 3541.0, "deser_cv": 0.05325849404054718, "deser_min_ns": 138177.0, "deser_max_ns": 182076.0, "deser_p5_ns": 149195.0, "deser_p25_ns": 153550.5, "deser_p50_ns": 156597.0, "deser_p75_ns": 160858.5, "deser_p95_ns": 175341.0, "deser_p99_ns": 182066.1, "deser_ci_low_ns": 156999.06346153846, "deser_ci_high_ns": 160459.57032967033, "total_mean_ns": 307039.7032967033, "total_median_ns": 305655.0, "total_std_ns": 16473.177583571356, "total_mad_ns": 8708.0, "total_cv": 0.05365162031717033, "total_min_ns": 270533.0, "total_max_ns": 349190.0, "total_p5_ns": 284163.5, "total_p25_ns": 295393.5, "total_p50_ns": 305655.0, "total_p75_ns": 314193.5, "total_p95_ns": 337283.5, "total_p99_ns": 346159.69999999995, "total_ci_low_ns": 303487.817032967, "total_ci_high_ns": 310575.2857142857, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.8122055081953}, {"serializer": "jsoniter", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "0.9.23", "avg_time_ser_ns": 87637.29787234042, "avg_time_deser_ns": 118386.6914893617, "avg_time_total_ns": 206023.98936170212, "median_size_bytes": 41431.0, "avg_ops_per_sec": 4853.80369100789, "min_ops_per_sec": 4059.2652729855895, "max_ops_per_sec": 5992.222095719756, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 87637.29787234042, "ser_median_ns": 86270.5, "ser_std_ns": 5738.108320092407, "ser_mad_ns": 3330.5, "ser_cv": 0.06547564175758819, "ser_min_ns": 74631.0, "ser_max_ns": 105242.0, "ser_p5_ns": 81058.75, "ser_p25_ns": 83400.5, "ser_p50_ns": 86270.5, "ser_p75_ns": 91071.25, "ser_p95_ns": 97816.7, "ser_p99_ns": 103299.22999999998, "ser_ci_low_ns": 86473.08138297872, "ser_ci_high_ns": 88830.90744680852, "deser_mean_ns": 118386.6914893617, "deser_median_ns": 114497.0, "deser_std_ns": 13403.581748901921, "deser_mad_ns": 8250.0, "deser_cv": 0.11321865304518941, "deser_min_ns": 92252.0, "deser_max_ns": 151362.0, "deser_p5_ns": 101057.95, "deser_p25_ns": 109921.75, "deser_p50_ns": 114497.0, "deser_p75_ns": 129685.5, "deser_p95_ns": 139789.5, "deser_p99_ns": 150217.16999999998, "deser_ci_low_ns": 115670.87180851064, "deser_ci_high_ns": 121225.16117021276, "total_mean_ns": 206023.98936170212, "total_median_ns": 203051.5, "total_std_ns": 17234.177236566615, "total_mad_ns": 11817.5, "total_cv": 0.08365131308233119, "total_min_ns": 166883.0, "total_max_ns": 246350.0, "total_p5_ns": 181464.15, "total_p25_ns": 194226.0, "total_p50_ns": 203051.5, "total_p75_ns": 219609.5, "total_p95_ns": 235615.35, "total_p99_ns": 242762.98999999996, "total_ci_low_ns": 202727.54228723404, "total_ci_high_ns": 209469.74468085106, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.9994613520064638, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.190276074630118}, {"serializer": "ion", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 161232.90425531915, "avg_time_deser_ns": 328158.2021276596, "avg_time_total_ns": 489391.10638297873, "median_size_bytes": 41231.0, "avg_ops_per_sec": 2043.3554818575683, "min_ops_per_sec": 1810.2955126394834, "max_ops_per_sec": 2243.8328254791704, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 161232.90425531915, "ser_median_ns": 157815.5, "ser_std_ns": 12620.65089580348, "ser_mad_ns": 7163.5, "ser_cv": 0.07827590127520213, "ser_min_ns": 137342.0, "ser_max_ns": 194353.0, "ser_p5_ns": 146623.85, "ser_p25_ns": 151655.5, "ser_p50_ns": 157815.5, "ser_p75_ns": 167174.0, "ser_p95_ns": 185950.3, "ser_p99_ns": 191177.97999999998, "ser_ci_low_ns": 158830.80265957446, "ser_ci_high_ns": 163968.66063829788, "deser_mean_ns": 328158.2021276596, "deser_median_ns": 323946.0, "deser_std_ns": 17177.659596603073, "deser_mad_ns": 11461.5, "deser_cv": 0.052345665856374506, "deser_min_ns": 299406.0, "deser_max_ns": 376873.0, "deser_p5_ns": 306215.65, "deser_p25_ns": 315648.75, "deser_p50_ns": 323946.0, "deser_p75_ns": 340926.0, "deser_p95_ns": 358897.05, "deser_p99_ns": 370138.86999999994, "deser_ci_low_ns": 324726.9178191489, "deser_ci_high_ns": 331596.1414893617, "total_mean_ns": 489391.10638297873, "total_median_ns": 484040.5, "total_std_ns": 27068.5014872038, "total_mad_ns": 16345.5, "total_cv": 0.05531057089954763, "total_min_ns": 445666.0, "total_max_ns": 552396.0, "total_p5_ns": 454177.9, "total_p25_ns": 470185.25, "total_p50_ns": 484040.5, "total_p75_ns": 502098.25, "total_p95_ns": 540050.15, "total_p99_ns": 550908.0, "total_ci_low_ns": 483829.8223404255, "total_ci_high_ns": 495013.6382978723, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.356547796276182}, {"serializer": "java-serialization", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "21.0.11", "avg_time_ser_ns": 277501.11340206186, "avg_time_deser_ns": 336712.74226804124, "avg_time_total_ns": 614213.8556701031, "median_size_bytes": 42652.0, "avg_ops_per_sec": 1628.0974301841609, "min_ops_per_sec": 1398.8126877906034, "max_ops_per_sec": 1868.8933908454126, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 277501.11340206186, "ser_median_ns": 277433.0, "ser_std_ns": 15969.529681472235, "ser_mad_ns": 11719.0, "ser_cv": 0.05754762381199722, "ser_min_ns": 240770.0, "ser_max_ns": 324495.0, "ser_p5_ns": 256625.4, "ser_p25_ns": 265714.0, "ser_p50_ns": 277433.0, "ser_p75_ns": 289003.0, "ser_p95_ns": 304106.8, "ser_p99_ns": 310561.5599999999, "ser_ci_low_ns": 274467.9358247423, "ser_ci_high_ns": 280725.69845360826, "deser_mean_ns": 336712.74226804124, "deser_median_ns": 334335.0, "deser_std_ns": 25510.91146666394, "deser_mad_ns": 18543.0, "deser_cv": 0.07576461554388073, "deser_min_ns": 291119.0, "deser_max_ns": 411051.0, "deser_p5_ns": 304036.0, "deser_p25_ns": 316705.0, "deser_p50_ns": 334335.0, "deser_p75_ns": 354233.0, "deser_p95_ns": 386414.19999999995, "deser_p99_ns": 390370.6799999998, "deser_ci_low_ns": 331717.0554123711, "deser_ci_high_ns": 341761.6608247423, "total_mean_ns": 614213.8556701031, "total_median_ns": 610567.0, "total_std_ns": 37125.411159617055, "total_mad_ns": 24699.0, "total_cv": 0.0604437865035029, "total_min_ns": 535076.0, "total_max_ns": 714892.0, "total_p5_ns": 560726.8, "total_p25_ns": 586667.0, "total_p50_ns": 610567.0, "total_p75_ns": 640495.0, "total_p95_ns": 681611.6, "total_p99_ns": 697166.5599999998, "total_ci_low_ns": 606767.2842783505, "total_ci_high_ns": 621579.2659793814, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.49342494385524}, {"serializer": "hessian", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "4.0.66", "avg_time_ser_ns": 105482.83516483517, "avg_time_deser_ns": 143457.8021978022, "avg_time_total_ns": 248940.63736263735, "median_size_bytes": 34168.0, "avg_ops_per_sec": 4017.0219317920273, "min_ops_per_sec": 3491.9980863850487, "max_ops_per_sec": 4462.532576487808, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 105482.83516483517, "ser_median_ns": 102198.0, "ser_std_ns": 8502.80411428258, "ser_mad_ns": 3456.0, "ser_cv": 0.08060841463917308, "ser_min_ns": 95122.0, "ser_max_ns": 131140.0, "ser_p5_ns": 97128.5, "ser_p25_ns": 99706.0, "ser_p50_ns": 102198.0, "ser_p75_ns": 110154.5, "ser_p95_ns": 124228.0, "ser_p99_ns": 129691.9, "ser_ci_low_ns": 103767.90851648351, "ser_ci_high_ns": 107275.2662087912, "deser_mean_ns": 143457.8021978022, "deser_median_ns": 142036.0, "deser_std_ns": 7413.397027933476, "deser_mad_ns": 4860.0, "deser_cv": 0.051676499391171145, "deser_min_ns": 128265.0, "deser_max_ns": 163197.0, "deser_p5_ns": 133388.5, "deser_p25_ns": 138925.0, "deser_p50_ns": 142036.0, "deser_p75_ns": 148993.5, "deser_p95_ns": 157094.5, "deser_p99_ns": 159772.49999999997, "deser_ci_low_ns": 141992.96510989012, "deser_ci_high_ns": 145001.54972527473, "total_mean_ns": 248940.63736263735, "total_median_ns": 245694.0, "total_std_ns": 13743.095957620551, "total_mad_ns": 8437.0, "total_cv": 0.05520631787248411, "total_min_ns": 224088.0, "total_max_ns": 286369.0, "total_p5_ns": 232126.5, "total_p25_ns": 238579.5, "total_p50_ns": 245694.0, "total_p75_ns": 258155.5, "total_p95_ns": 274620.5, "total_p99_ns": 282705.1, "total_ci_low_ns": 246035.90027472525, "total_ci_high_ns": 251811.48296703296, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.649581442615341}, {"serializer": "bson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "5.3.1", "avg_time_ser_ns": 226512.78260869565, "avg_time_deser_ns": 196062.03260869565, "avg_time_total_ns": 422574.8152173913, "median_size_bytes": 60537.0, "avg_ops_per_sec": 2366.4448613331474, "min_ops_per_sec": 2051.5513831559424, "max_ops_per_sec": 2670.1485403633005, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 226512.78260869565, "ser_median_ns": 224620.0, "ser_std_ns": 15956.873495594915, "ser_mad_ns": 11630.0, "ser_cv": 0.07044579697367748, "ser_min_ns": 190462.0, "ser_max_ns": 260679.0, "ser_p5_ns": 202260.95, "ser_p25_ns": 216965.5, "ser_p50_ns": 224620.0, "ser_p75_ns": 238074.25, "ser_p95_ns": 256252.55000000002, "ser_p99_ns": 259768.09, "ser_ci_low_ns": 223463.10951086957, "ser_ci_high_ns": 229802.38423913042, "deser_mean_ns": 196062.03260869565, "deser_median_ns": 192256.0, "deser_std_ns": 13221.387618527964, "deser_mad_ns": 7092.5, "deser_cv": 0.06743471666906291, "deser_min_ns": 167324.0, "deser_max_ns": 237923.0, "deser_p5_ns": 182020.4, "deser_p25_ns": 186093.5, "deser_p50_ns": 192256.0, "deser_p75_ns": 203313.0, "deser_p95_ns": 217404.75, "deser_p99_ns": 229293.47000000003, "deser_ci_low_ns": 193463.1934782609, "deser_ci_high_ns": 198829.41494565216, "total_mean_ns": 422574.8152173913, "total_median_ns": 418053.0, "total_std_ns": 23798.489665314803, "total_mad_ns": 18261.0, "total_cv": 0.056317813575974235, "total_min_ns": 374511.0, "total_max_ns": 487436.0, "total_p5_ns": 386497.65, "total_p25_ns": 406659.25, "total_p50_ns": 418053.0, "total_p75_ns": 442221.5, "total_p95_ns": 459520.9, "total_p99_ns": 470433.56000000006, "total_ci_low_ns": 418033.45516304346, "total_ci_high_ns": 427438.9342391304, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.851057228564725}, {"serializer": "protostuff", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "1.8.0", "avg_time_ser_ns": 88784.0625, "avg_time_deser_ns": 106554.5375, "avg_time_total_ns": 195338.6, "median_size_bytes": 37131.0, "avg_ops_per_sec": 5119.315895578242, "min_ops_per_sec": 4495.291182486346, "max_ops_per_sec": 5790.4550139549965, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 88784.0625, "ser_median_ns": 87233.0, "ser_std_ns": 4923.7513236667555, "ser_mad_ns": 1839.0, "ser_cv": 0.055457603369599755, "ser_min_ns": 78763.0, "ser_max_ns": 103254.0, "ser_p5_ns": 84319.25, "ser_p25_ns": 85902.5, "ser_p50_ns": 87233.0, "ser_p75_ns": 89566.25, "ser_p95_ns": 98947.09999999999, "ser_p99_ns": 103250.84, "ser_ci_low_ns": 87766.8946875, "ser_ci_high_ns": 89878.47343750001, "deser_mean_ns": 106554.5375, "deser_median_ns": 105282.0, "deser_std_ns": 4919.95297894519, "deser_mad_ns": 2802.0, "deser_cv": 0.04617309684202974, "deser_min_ns": 93935.0, "deser_max_ns": 119564.0, "deser_p5_ns": 100080.95, "deser_p25_ns": 103409.5, "deser_p50_ns": 105282.0, "deser_p75_ns": 109479.75, "deser_p95_ns": 115734.65, "deser_p99_ns": 119358.59999999999, "deser_ci_low_ns": 105481.0840625, "deser_ci_high_ns": 107640.2209375, "total_mean_ns": 195338.6, "total_median_ns": 192889.5, "total_std_ns": 8604.71676009844, "total_mad_ns": 3930.5, "total_cv": 0.04405026328692045, "total_min_ns": 172698.0, "total_max_ns": 222455.0, "total_p5_ns": 186150.4, "total_p25_ns": 190144.0, "total_p50_ns": 192889.5, "total_p75_ns": 199475.75, "total_p95_ns": 214173.0, "total_p99_ns": 217959.89999999997, "total_ci_low_ns": 193488.886875, "total_ci_high_ns": 197223.76875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.509405080949168}, {"serializer": "kryo", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "5.6.2", "avg_time_ser_ns": 201335.7875, "avg_time_deser_ns": 113671.3875, "avg_time_total_ns": 315007.175, "median_size_bytes": 34236.0, "avg_ops_per_sec": 3174.530865844564, "min_ops_per_sec": 2617.2392313691826, "max_ops_per_sec": 3733.7116827838554, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 201335.7875, "ser_median_ns": 194549.5, "ser_std_ns": 17349.302371480444, "ser_mad_ns": 6510.0, "ser_cv": 0.08617098125925796, "ser_min_ns": 169132.0, "ser_max_ns": 269618.0, "ser_p5_ns": 185311.4, "ser_p25_ns": 190163.0, "ser_p50_ns": 194549.5, "ser_p75_ns": 210939.0, "ser_p95_ns": 232813.0, "ser_p99_ns": 245610.6899999998, "ser_ci_low_ns": 197580.8378125, "ser_ci_high_ns": 205138.71250000002, "deser_mean_ns": 113671.3875, "deser_median_ns": 112503.0, "deser_std_ns": 6760.938453498425, "deser_mad_ns": 2860.0, "deser_cv": 0.05947792669899824, "deser_min_ns": 97839.0, "deser_max_ns": 137549.0, "deser_p5_ns": 105161.65, "deser_p25_ns": 110289.25, "deser_p50_ns": 112503.0, "deser_p75_ns": 115595.5, "deser_p95_ns": 127935.5, "deser_p99_ns": 134674.97999999998, "deser_ci_low_ns": 112280.5228125, "deser_ci_high_ns": 115140.8315625, "total_mean_ns": 315007.175, "total_median_ns": 307225.5, "total_std_ns": 21366.56663318902, "total_mad_ns": 8133.0, "total_cv": 0.0678288252741831, "total_min_ns": 267830.0, "total_max_ns": 382082.0, "total_p5_ns": 290582.35, "total_p25_ns": 301641.75, "total_p50_ns": 307225.5, "total_p75_ns": 326080.5, "total_p95_ns": 354084.25, "total_p99_ns": 368926.1299999999, "total_ci_low_ns": 310615.9825, "total_ci_high_ns": 320106.8021875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.200238191226749}, {"serializer": "protobuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "4.28.3", "avg_time_ser_ns": 88679.0843373494, "avg_time_deser_ns": 125618.92771084337, "avg_time_total_ns": 214298.01204819276, "median_size_bytes": 37330.0, "avg_ops_per_sec": 4666.3988640973175, "min_ops_per_sec": 4314.436103201311, "max_ops_per_sec": 4896.320415207972, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 88679.0843373494, "ser_median_ns": 88193.0, "ser_std_ns": 2655.5233520510183, "ser_mad_ns": 1479.0, "ser_cv": 0.029945317679972692, "ser_min_ns": 84270.0, "ser_max_ns": 96970.0, "ser_p5_ns": 84971.6, "ser_p25_ns": 87113.5, "ser_p50_ns": 88193.0, "ser_p75_ns": 90148.0, "ser_p95_ns": 93016.9, "ser_p99_ns": 96592.8, "ser_ci_low_ns": 88106.31686746987, "ser_ci_high_ns": 89255.41506024096, "deser_mean_ns": 125618.92771084337, "deser_median_ns": 124675.0, "deser_std_ns": 4306.853216544173, "deser_mad_ns": 2752.0, "deser_cv": 0.03428506591345794, "deser_min_ns": 118936.0, "deser_max_ns": 137809.0, "deser_p5_ns": 120193.2, "deser_p25_ns": 122524.5, "deser_p50_ns": 124675.0, "deser_p75_ns": 128422.5, "deser_p95_ns": 133453.9, "deser_p99_ns": 135725.37999999998, "deser_ci_low_ns": 124759.56656626506, "deser_ci_high_ns": 126534.58734939758, "total_mean_ns": 214298.01204819276, "total_median_ns": 212868.0, "total_std_ns": 6350.650278772065, "total_mad_ns": 3732.0, "total_cv": 0.029634667247141276, "total_min_ns": 204235.0, "total_max_ns": 231780.0, "total_p5_ns": 205668.0, "total_p25_ns": 209461.0, "total_p50_ns": 212868.0, "total_p75_ns": 217546.5, "total_p95_ns": 226532.0, "total_p99_ns": 230162.13999999998, "total_ci_low_ns": 213035.34427710844, "total_ci_high_ns": 215716.07138554216, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.411485254498741}, {"serializer": "jackson-smile", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 74291.20253164557, "avg_time_deser_ns": 110722.02531645569, "avg_time_total_ns": 185013.22784810126, "median_size_bytes": 34341.0, "avg_ops_per_sec": 5405.018936381217, "min_ops_per_sec": 4882.884026621484, "max_ops_per_sec": 6001.284274834815, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 74291.20253164557, "ser_median_ns": 73710.0, "ser_std_ns": 2589.5907526378282, "ser_mad_ns": 1000.0, "ser_cv": 0.03485730025079011, "ser_min_ns": 68213.0, "ser_max_ns": 82656.0, "ser_p5_ns": 71250.3, "ser_p25_ns": 72937.0, "ser_p50_ns": 73710.0, "ser_p75_ns": 75246.5, "ser_p95_ns": 79480.0, "ser_p99_ns": 82077.24, "ser_ci_low_ns": 73735.54493670886, "ser_ci_high_ns": 74868.30411392405, "deser_mean_ns": 110722.02531645569, "deser_median_ns": 110372.0, "deser_std_ns": 5034.682298368458, "deser_mad_ns": 2918.0, "deser_cv": 0.04547137106622448, "deser_min_ns": 98418.0, "deser_max_ns": 125475.0, "deser_p5_ns": 104532.8, "deser_p25_ns": 107262.0, "deser_p50_ns": 110372.0, "deser_p75_ns": 113083.0, "deser_p95_ns": 119189.89999999998, "deser_p99_ns": 125372.82, "deser_ci_low_ns": 109626.23607594937, "deser_ci_high_ns": 111776.16930379746, "total_mean_ns": 185013.22784810126, "total_median_ns": 184207.0, "total_std_ns": 6828.175153126833, "total_mad_ns": 3802.0, "total_cv": 0.036906416003578246, "total_min_ns": 166631.0, "total_max_ns": 204797.0, "total_p5_ns": 177139.0, "total_p25_ns": 180762.0, "total_p50_ns": 184207.0, "total_p75_ns": 188215.5, "total_p95_ns": 197330.5, "total_p99_ns": 204620.72, "total_ci_low_ns": 183548.385443038, "total_ci_high_ns": 186426.03069620254, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.143472628424318}, {"serializer": "msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "0.9.8", "avg_time_ser_ns": 134928.2, "avg_time_deser_ns": 167817.69333333333, "avg_time_total_ns": 302745.8933333333, "median_size_bytes": 34833.0, "avg_ops_per_sec": 3303.1001312343706, "min_ops_per_sec": 3135.3859660124162, "max_ops_per_sec": 3444.3089682916916, "runs": 75, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 24, "ser_mean_ns": 134928.2, "ser_median_ns": 134005.0, "ser_std_ns": 3820.478051309881, "ser_mad_ns": 2546.0, "ser_cv": 0.028314896747380313, "ser_min_ns": 128694.0, "ser_max_ns": 144165.0, "ser_p5_ns": 129616.7, "ser_p25_ns": 132292.5, "ser_p50_ns": 134005.0, "ser_p75_ns": 137149.5, "ser_p95_ns": 142109.3, "ser_p99_ns": 143412.42, "ser_ci_low_ns": 134068.71766666666, "ser_ci_high_ns": 135782.36666666667, "deser_mean_ns": 167817.69333333333, "deser_median_ns": 167386.0, "deser_std_ns": 3948.354864296574, "deser_mad_ns": 2171.0, "deser_cv": 0.023527643515240233, "deser_min_ns": 161066.0, "deser_max_ns": 180946.0, "deser_p5_ns": 161495.1, "deser_p25_ns": 165515.0, "deser_p50_ns": 167386.0, "deser_p75_ns": 169861.0, "deser_p95_ns": 173290.4, "deser_p99_ns": 178808.14, "deser_ci_low_ns": 166940.38733333335, "deser_ci_high_ns": 168675.51599999997, "total_mean_ns": 302745.8933333333, "total_median_ns": 302443.0, "total_std_ns": 6848.731801272829, "total_mad_ns": 3502.0, "total_cv": 0.02262204691157329, "total_min_ns": 290334.0, "total_max_ns": 318940.0, "total_p5_ns": 292177.0, "total_p25_ns": 297823.5, "total_p50_ns": 302443.0, "total_p75_ns": 305650.5, "total_p95_ns": 316346.9, "total_p99_ns": 317955.8, "total_ci_low_ns": 301247.20533333335, "total_ci_high_ns": 304312.8213333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.53602649096487}, {"serializer": "hessian", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "4.0.66", "avg_time_ser_ns": 98007.77108433735, "avg_time_deser_ns": 141904.0361445783, "avg_time_total_ns": 239911.80722891566, "median_size_bytes": 34168.0, "avg_ops_per_sec": 4168.198354013623, "min_ops_per_sec": 3825.393728649521, "max_ops_per_sec": 4421.746147553669, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 98007.77108433735, "ser_median_ns": 97576.0, "ser_std_ns": 2725.269135625454, "ser_mad_ns": 1903.0, "ser_cv": 0.027806663752003028, "ser_min_ns": 92894.0, "ser_max_ns": 105162.0, "ser_p5_ns": 94508.9, "ser_p25_ns": 96073.0, "ser_p50_ns": 97576.0, "ser_p75_ns": 99786.5, "ser_p95_ns": 103565.09999999999, "ser_p99_ns": 104661.79999999999, "ser_ci_low_ns": 97419.8734939759, "ser_ci_high_ns": 98614.65451807229, "deser_mean_ns": 141904.0361445783, "deser_median_ns": 140486.0, "deser_std_ns": 7351.583201722494, "deser_mad_ns": 4569.0, "deser_cv": 0.051806723765294216, "deser_min_ns": 131790.0, "deser_max_ns": 164209.0, "deser_p5_ns": 132976.1, "deser_p25_ns": 136815.5, "deser_p50_ns": 140486.0, "deser_p75_ns": 145759.0, "deser_p95_ns": 158763.69999999998, "deser_p99_ns": 162192.62, "deser_ci_low_ns": 140399.25, "deser_ci_high_ns": 143493.3560240964, "total_mean_ns": 239911.80722891566, "total_median_ns": 238023.0, "total_std_ns": 8449.428730087327, "total_mad_ns": 5859.0, "total_cv": 0.03521889492510542, "total_min_ns": 226155.0, "total_max_ns": 261411.0, "total_p5_ns": 228996.3, "total_p25_ns": 233708.0, "total_p50_ns": 238023.0, "total_p75_ns": 245079.5, "total_p95_ns": 256980.19999999998, "total_p99_ns": 260699.24, "total_ci_low_ns": 238021.90662650604, "total_ci_high_ns": 241696.21656626507, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.113468884559577}, {"serializer": "fastjson2", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.0.57", "avg_time_ser_ns": 95750.90697674418, "avg_time_deser_ns": 116411.26744186046, "avg_time_total_ns": 212162.17441860464, "median_size_bytes": 41431.0, "avg_ops_per_sec": 4713.3755238903195, "min_ops_per_sec": 4437.580985852992, "max_ops_per_sec": 4969.709619866911, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 95750.90697674418, "ser_median_ns": 95659.0, "ser_std_ns": 2644.848527311411, "ser_mad_ns": 1565.0, "ser_cv": 0.027622177280825, "ser_min_ns": 90429.0, "ser_max_ns": 102940.0, "ser_p5_ns": 91843.75, "ser_p25_ns": 93993.75, "ser_p50_ns": 95659.0, "ser_p75_ns": 97165.5, "ser_p95_ns": 100793.75, "ser_p99_ns": 101875.8, "ser_ci_low_ns": 95186.44738372092, "ser_ci_high_ns": 96348.24447674419, "deser_mean_ns": 116411.26744186046, "deser_median_ns": 116007.5, "deser_std_ns": 3247.1009311453718, "deser_mad_ns": 2504.5, "deser_cv": 0.027893356051355414, "deser_min_ns": 109214.0, "deser_max_ns": 125055.0, "deser_p5_ns": 111377.5, "deser_p25_ns": 114342.25, "deser_p50_ns": 116007.5, "deser_p75_ns": 118868.75, "deser_p95_ns": 121673.25, "deser_p99_ns": 124546.7, "deser_ci_low_ns": 115764.09069767443, "deser_ci_high_ns": 117112.07936046511, "total_mean_ns": 212162.17441860464, "total_median_ns": 211850.5, "total_std_ns": 5277.837525510882, "total_mad_ns": 3723.5, "total_cv": 0.024876430211812843, "total_min_ns": 201219.0, "total_max_ns": 225348.0, "total_p5_ns": 204366.75, "total_p25_ns": 208604.25, "total_p50_ns": 211850.5, "total_p75_ns": 216283.0, "total_p95_ns": 220434.5, "total_p99_ns": 224653.55000000002, "total_ci_low_ns": 211013.30319767442, "total_ci_high_ns": 213285.39825581395, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.20702788712489}, {"serializer": "bson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "5.3.1", "avg_time_ser_ns": 226668.88505747126, "avg_time_deser_ns": 192591.816091954, "avg_time_total_ns": 419260.7011494253, "median_size_bytes": 60537.0, "avg_ops_per_sec": 2385.1508077395456, "min_ops_per_sec": 2164.338199487052, "max_ops_per_sec": 2583.185015460362, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 226668.88505747126, "ser_median_ns": 223288.0, "ser_std_ns": 16104.10111815757, "ser_mad_ns": 9687.0, "ser_cv": 0.07104680959662558, "ser_min_ns": 195873.0, "ser_max_ns": 266924.0, "ser_p5_ns": 203847.3, "ser_p25_ns": 216111.0, "ser_p50_ns": 223288.0, "ser_p75_ns": 238012.0, "ser_p95_ns": 255668.3, "ser_p99_ns": 263348.98, "ser_ci_low_ns": 223321.43304597703, "ser_ci_high_ns": 229749.84137931035, "deser_mean_ns": 192591.816091954, "deser_median_ns": 191970.0, "deser_std_ns": 4941.7866991340325, "deser_mad_ns": 2449.0, "deser_cv": 0.02565938054592387, "deser_min_ns": 184104.0, "deser_max_ns": 206135.0, "deser_p5_ns": 185210.7, "deser_p25_ns": 189820.5, "deser_p50_ns": 191970.0, "deser_p75_ns": 194661.5, "deser_p95_ns": 201326.6, "deser_p99_ns": 205888.18, "deser_ci_low_ns": 191628.06005747127, "deser_ci_high_ns": 193638.50316091953, "total_mean_ns": 419260.7011494253, "total_median_ns": 418157.0, "total_std_ns": 18718.11772309642, "total_mad_ns": 13548.0, "total_cv": 0.044645533606607335, "total_min_ns": 387119.0, "total_max_ns": 462035.0, "total_p5_ns": 389858.2, "total_p25_ns": 405331.0, "total_p50_ns": 418157.0, "total_p75_ns": 432137.0, "total_p95_ns": 451869.2, "total_p99_ns": 460979.78, "total_ci_low_ns": 415579.11839080456, "total_ci_high_ns": 423276.98218390805, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.624421531063753}, {"serializer": "ion", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 148395.22471910113, "avg_time_deser_ns": 356704.71910112357, "avg_time_total_ns": 505099.9438202247, "median_size_bytes": 41231.0, "avg_ops_per_sec": 1979.80619921811, "min_ops_per_sec": 1810.3807230660607, "max_ops_per_sec": 2109.731346810297, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 148395.22471910113, "ser_median_ns": 146280.0, "ser_std_ns": 6489.404048406366, "ser_mad_ns": 2535.0, "ser_cv": 0.043730544973332036, "ser_min_ns": 138525.0, "ser_max_ns": 166847.0, "ser_p5_ns": 141218.8, "ser_p25_ns": 143981.0, "ser_p50_ns": 146280.0, "ser_p75_ns": 152452.0, "ser_p95_ns": 161861.8, "ser_p99_ns": 166343.64, "ser_ci_low_ns": 147139.93033707867, "ser_ci_high_ns": 149821.05140449438, "deser_mean_ns": 356704.71910112357, "deser_median_ns": 352858.0, "deser_std_ns": 15278.069830634517, "deser_mad_ns": 9916.0, "deser_cv": 0.04283114019106453, "deser_min_ns": 330195.0, "deser_max_ns": 398914.0, "deser_p5_ns": 338045.2, "deser_p25_ns": 345543.0, "deser_p50_ns": 352858.0, "deser_p75_ns": 366113.0, "deser_p95_ns": 384542.6, "deser_p99_ns": 392904.48000000004, "deser_ci_low_ns": 353520.3404494382, "deser_ci_high_ns": 360088.3438202247, "total_mean_ns": 505099.9438202247, "total_median_ns": 498850.0, "total_std_ns": 18327.881325852566, "total_mad_ns": 11428.0, "total_cv": 0.03628565306745674, "total_min_ns": 473994.0, "total_max_ns": 552370.0, "total_p5_ns": 482902.0, "total_p25_ns": 490099.0, "total_p50_ns": 498850.0, "total_p75_ns": 519644.0, "total_p95_ns": 534813.0, "total_p99_ns": 550299.36, "total_ci_low_ns": 501418.9351123595, "total_ci_high_ns": 508837.6778089887, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.209855857331082}, {"serializer": "dsl-json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.0.2", "avg_time_ser_ns": 86619.01282051283, "avg_time_deser_ns": 104796.71794871795, "avg_time_total_ns": 191415.73076923078, "median_size_bytes": 41431.0, "avg_ops_per_sec": 5224.231028355719, "min_ops_per_sec": 4807.7847650916365, "max_ops_per_sec": 5544.958523710243, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 86619.01282051283, "ser_median_ns": 86124.5, "ser_std_ns": 2950.897976881507, "ser_mad_ns": 1891.5, "ser_cv": 0.03406755492580129, "ser_min_ns": 81977.0, "ser_max_ns": 94762.0, "ser_p5_ns": 82392.8, "ser_p25_ns": 84517.0, "ser_p50_ns": 86124.5, "ser_p75_ns": 88510.25, "ser_p95_ns": 91799.65, "ser_p99_ns": 93696.32, "ser_ci_low_ns": 85985.61217948717, "ser_ci_high_ns": 87243.80416666667, "deser_mean_ns": 104796.71794871795, "deser_median_ns": 103984.5, "deser_std_ns": 3796.4124243866468, "deser_mad_ns": 2302.0, "deser_cv": 0.03622644390680644, "deser_min_ns": 98313.0, "deser_max_ns": 115569.0, "deser_p5_ns": 99323.9, "deser_p25_ns": 102712.0, "deser_p50_ns": 103984.5, "deser_p75_ns": 106791.0, "deser_p95_ns": 111964.9, "deser_p99_ns": 114941.45, "deser_ci_low_ns": 104000.77243589742, "deser_ci_high_ns": 105625.52435897435, "total_mean_ns": 191415.73076923078, "total_median_ns": 190475.0, "total_std_ns": 5573.439169249689, "total_mad_ns": 3184.0, "total_cv": 0.02911693384264735, "total_min_ns": 180344.0, "total_max_ns": 207996.0, "total_p5_ns": 182865.55, "total_p25_ns": 188229.75, "total_p50_ns": 190475.0, "total_p75_ns": 194829.5, "total_p95_ns": 200278.19999999998, "total_p99_ns": 207442.37, "total_ci_low_ns": 190203.02403846153, "total_ci_high_ns": 192715.32980769232, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.0622577447479}, {"serializer": "java-serialization", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "21.0.11", "avg_time_ser_ns": 271153.4301075269, "avg_time_deser_ns": 320867.3548387097, "avg_time_total_ns": 592020.7849462365, "median_size_bytes": 42652.0, "avg_ops_per_sec": 1689.1298843347427, "min_ops_per_sec": 1547.575568114991, "max_ops_per_sec": 1819.7335546129336, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 271153.4301075269, "ser_median_ns": 270042.0, "ser_std_ns": 8759.09450650387, "ser_mad_ns": 5502.0, "ser_cv": 0.032303093134504766, "ser_min_ns": 254443.0, "ser_max_ns": 294006.0, "ser_p5_ns": 258696.6, "ser_p25_ns": 265016.0, "ser_p50_ns": 270042.0, "ser_p75_ns": 275779.0, "ser_p95_ns": 288771.0, "ser_p99_ns": 293412.6, "ser_ci_low_ns": 269522.28360215056, "ser_ci_high_ns": 272990.7123655914, "deser_mean_ns": 320867.3548387097, "deser_median_ns": 315105.0, "deser_std_ns": 17320.002894771547, "deser_mad_ns": 9014.0, "deser_cv": 0.05397870064867705, "deser_min_ns": 295088.0, "deser_max_ns": 369076.0, "deser_p5_ns": 300879.4, "deser_p25_ns": 309219.0, "deser_p50_ns": 315105.0, "deser_p75_ns": 333823.0, "deser_p95_ns": 354795.6, "deser_p99_ns": 365200.96, "deser_ci_low_ns": 317514.97876344086, "deser_ci_high_ns": 324542.425, "total_mean_ns": 592020.7849462365, "total_median_ns": 588803.0, "total_std_ns": 21452.466974711213, "total_mad_ns": 14340.0, "total_cv": 0.03623600305968883, "total_min_ns": 549531.0, "total_max_ns": 646172.0, "total_p5_ns": 563773.2, "total_p25_ns": 576831.0, "total_p50_ns": 588803.0, "total_p75_ns": 604165.0, "total_p95_ns": 633572.2, "total_p99_ns": 638822.12, "total_ci_low_ns": 587524.2045698925, "total_ci_high_ns": 596291.2827956988, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.85112683145289}, {"serializer": "protostuff", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "1.8.0", "avg_time_ser_ns": 83838.76829268293, "avg_time_deser_ns": 102851.89024390244, "avg_time_total_ns": 186690.65853658537, "median_size_bytes": 37131.0, "avg_ops_per_sec": 5356.454403443181, "min_ops_per_sec": 5064.188590383106, "max_ops_per_sec": 5590.121137925059, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 83838.76829268293, "ser_median_ns": 83591.5, "ser_std_ns": 1946.3299702404802, "ser_mad_ns": 1390.5, "ser_cv": 0.023215154634020872, "ser_min_ns": 80271.0, "ser_max_ns": 89300.0, "ser_p5_ns": 81078.85, "ser_p25_ns": 82514.75, "ser_p50_ns": 83591.5, "ser_p75_ns": 85034.25, "ser_p95_ns": 87319.35, "ser_p99_ns": 88953.31999999999, "ser_ci_low_ns": 83396.4493902439, "ser_ci_high_ns": 84242.3643292683, "deser_mean_ns": 102851.89024390244, "deser_median_ns": 102150.5, "deser_std_ns": 2694.177608808461, "deser_mad_ns": 1372.0, "deser_cv": 0.02619473110722129, "deser_min_ns": 98011.0, "deser_max_ns": 110334.0, "deser_p5_ns": 99407.05, "deser_p25_ns": 101133.75, "deser_p50_ns": 102150.5, "deser_p75_ns": 104423.0, "deser_p95_ns": 109070.20000000001, "deser_p99_ns": 110160.66, "deser_ci_low_ns": 102305.99390243902, "deser_ci_high_ns": 103455.44054878048, "total_mean_ns": 186690.65853658537, "total_median_ns": 186106.0, "total_std_ns": 3914.6168575254624, "total_mad_ns": 2527.0, "total_cv": 0.02096846670428517, "total_min_ns": 178887.0, "total_max_ns": 197465.0, "total_p5_ns": 181043.7, "total_p25_ns": 183794.0, "total_p50_ns": 186106.0, "total_p75_ns": 188992.0, "total_p95_ns": 194273.15, "total_p99_ns": 195837.71, "total_ci_low_ns": 185880.0036585366, "total_ci_high_ns": 187527.0262195122, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.3694744459229}, {"serializer": "jackson-cbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 76896.6626506024, "avg_time_deser_ns": 132915.92771084336, "avg_time_total_ns": 209812.5903614458, "median_size_bytes": 34832.0, "avg_ops_per_sec": 4766.158209463465, "min_ops_per_sec": 4188.657116528441, "max_ops_per_sec": 5150.28532580705, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 76896.6626506024, "ser_median_ns": 76253.0, "ser_std_ns": 2726.9012757586866, "ser_mad_ns": 1724.0, "ser_cv": 0.03546189368645278, "ser_min_ns": 72608.0, "ser_max_ns": 86988.0, "ser_p5_ns": 73720.9, "ser_p25_ns": 74947.0, "ser_p50_ns": 76253.0, "ser_p75_ns": 78536.0, "ser_p95_ns": 81025.7, "ser_p99_ns": 85252.87999999999, "ser_ci_low_ns": 76327.07138554216, "ser_ci_high_ns": 77469.69307228916, "deser_mean_ns": 132915.92771084336, "deser_median_ns": 129319.0, "deser_std_ns": 10101.61345212605, "deser_mad_ns": 3017.0, "deser_cv": 0.07600002216515361, "deser_min_ns": 120760.0, "deser_max_ns": 158301.0, "deser_p5_ns": 121679.5, "deser_p25_ns": 126956.5, "deser_p50_ns": 129319.0, "deser_p75_ns": 135137.5, "deser_p95_ns": 154678.8, "deser_p99_ns": 157693.38, "deser_ci_low_ns": 130817.25722891565, "deser_ci_high_ns": 135274.50391566267, "total_mean_ns": 209812.5903614458, "total_median_ns": 205906.0, "total_std_ns": 11215.441615693424, "total_mad_ns": 4598.0, "total_cv": 0.053454569129395405, "total_min_ns": 194164.0, "total_max_ns": 238740.0, "total_p5_ns": 196989.0, "total_p25_ns": 202346.5, "total_p50_ns": 205906.0, "total_p75_ns": 214277.0, "total_p95_ns": 233012.0, "total_p99_ns": 235334.53999999998, "total_ci_low_ns": 207429.06957831324, "total_ci_high_ns": 212356.89518072287, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.110059006842028}, {"serializer": "kryo", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "5.6.2", "avg_time_ser_ns": 198050.27906976745, "avg_time_deser_ns": 112025.79069767441, "avg_time_total_ns": 310076.06976744183, "median_size_bytes": 34236.0, "avg_ops_per_sec": 3225.015076945485, "min_ops_per_sec": 2800.171370487874, "max_ops_per_sec": 3643.6774908179327, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 198050.27906976745, "ser_median_ns": 193628.0, "ser_std_ns": 15596.184448655955, "ser_mad_ns": 10683.0, "ser_cv": 0.0787486113218849, "ser_min_ns": 170269.0, "ser_max_ns": 242692.0, "ser_p5_ns": 179868.75, "ser_p25_ns": 185410.25, "ser_p50_ns": 193628.0, "ser_p75_ns": 210626.25, "ser_p95_ns": 225360.5, "ser_p99_ns": 237400.75000000003, "ser_ci_low_ns": 194913.9691860465, "ser_ci_high_ns": 201405.19389534884, "deser_mean_ns": 112025.79069767441, "deser_median_ns": 111373.5, "deser_std_ns": 3748.8734060382308, "deser_mad_ns": 2569.5, "deser_cv": 0.03346437800341324, "deser_min_ns": 104179.0, "deser_max_ns": 123562.0, "deser_p5_ns": 107539.0, "deser_p25_ns": 109882.25, "deser_p50_ns": 111373.5, "deser_p75_ns": 114113.0, "deser_p95_ns": 118043.5, "deser_p99_ns": 123407.3, "deser_ci_low_ns": 111265.63197674419, "deser_ci_high_ns": 112807.79854651164, "total_mean_ns": 310076.06976744183, "total_median_ns": 307077.0, "total_std_ns": 17585.000222308918, "total_mad_ns": 12054.0, "total_cv": 0.056711890845035966, "total_min_ns": 274448.0, "total_max_ns": 357121.0, "total_p5_ns": 288096.0, "total_p25_ns": 297030.0, "total_p50_ns": 307077.0, "total_p75_ns": 321477.5, "total_p95_ns": 341987.75, "total_p99_ns": 349138.6500000001, "total_ci_low_ns": 306508.8982558139, "total_ci_high_ns": 313871.01540697674, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.46268798574148}, {"serializer": "moshi", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "1.15.2", "avg_time_ser_ns": 146028.07954545456, "avg_time_deser_ns": 163212.4090909091, "avg_time_total_ns": 309240.48863636365, "median_size_bytes": 41431.0, "avg_ops_per_sec": 3233.729206707798, "min_ops_per_sec": 2974.198825191464, "max_ops_per_sec": 3503.6946460042113, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 146028.07954545456, "ser_median_ns": 148953.5, "ser_std_ns": 9892.172152270274, "ser_mad_ns": 5653.0, "ser_cv": 0.06774157533990653, "ser_min_ns": 127930.0, "ser_max_ns": 172333.0, "ser_p5_ns": 129967.55, "ser_p25_ns": 136991.0, "ser_p50_ns": 148953.5, "ser_p75_ns": 152472.25, "ser_p95_ns": 157785.3, "ser_p99_ns": 167594.97999999998, "ser_ci_low_ns": 143951.42357954546, "ser_ci_high_ns": 148117.72301136365, "deser_mean_ns": 163212.4090909091, "deser_median_ns": 162705.5, "deser_std_ns": 3400.638829898091, "deser_mad_ns": 2330.0, "deser_cv": 0.02083566346970554, "deser_min_ns": 156367.0, "deser_max_ns": 170790.0, "deser_p5_ns": 157143.05, "deser_p25_ns": 161334.25, "deser_p50_ns": 162705.5, "deser_p75_ns": 165643.75, "deser_p95_ns": 168762.8, "deser_p99_ns": 170034.84, "deser_ci_low_ns": 162522.70710227275, "deser_ci_high_ns": 163897.31107954544, "total_mean_ns": 309240.48863636365, "total_median_ns": 311870.0, "total_std_ns": 10856.782817635005, "total_mad_ns": 6654.5, "total_cv": 0.0351078956882697, "total_min_ns": 285413.0, "total_max_ns": 336225.0, "total_p5_ns": 291626.5, "total_p25_ns": 300349.5, "total_p50_ns": 311870.0, "total_p75_ns": 316305.5, "total_p95_ns": 324162.35, "total_p99_ns": 335736.06, "total_ci_low_ns": 306922.08125, "total_ci_high_ns": 311472.66051136365, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.802454929582954}, {"serializer": "gson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.12.1", "avg_time_ser_ns": 336312.6777777778, "avg_time_deser_ns": 135514.7888888889, "avg_time_total_ns": 471827.4666666667, "median_size_bytes": 41431.0, "avg_ops_per_sec": 2119.4187931972874, "min_ops_per_sec": 1887.7755208372662, "max_ops_per_sec": 2307.151014569659, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 336312.6777777778, "ser_median_ns": 330026.0, "ser_std_ns": 17225.991956778755, "ser_mad_ns": 9625.0, "ser_cv": 0.05122016829874315, "ser_min_ns": 311728.0, "ser_max_ns": 388292.0, "ser_p5_ns": 316112.15, "ser_p25_ns": 322906.5, "ser_p50_ns": 330026.0, "ser_p75_ns": 348984.25, "ser_p95_ns": 365998.25, "ser_p99_ns": 385702.1, "ser_ci_low_ns": 332920.01944444445, "ser_ci_high_ns": 339937.4475, "deser_mean_ns": 135514.7888888889, "deser_median_ns": 132508.0, "deser_std_ns": 8069.480172743602, "deser_mad_ns": 3002.5, "deser_cv": 0.05954686008004573, "deser_min_ns": 121707.0, "deser_max_ns": 158865.0, "deser_p5_ns": 127830.9, "deser_p25_ns": 130120.5, "deser_p50_ns": 132508.0, "deser_p75_ns": 138443.0, "deser_p95_ns": 153820.45, "deser_p99_ns": 157423.2, "deser_ci_low_ns": 133972.17666666667, "deser_ci_high_ns": 137250.84055555557, "total_mean_ns": 471827.4666666667, "total_median_ns": 471406.5, "total_std_ns": 20645.800317402747, "total_mad_ns": 15415.5, "total_cv": 0.043757097193301904, "total_min_ns": 433435.0, "total_max_ns": 529724.0, "total_p5_ns": 445637.3, "total_p25_ns": 455557.0, "total_p50_ns": 471406.5, "total_p75_ns": 484917.0, "total_p95_ns": 511969.45, "total_p99_ns": 528736.1, "total_ci_low_ns": 467644.11666666664, "total_ci_high_ns": 476189.98055555555, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.216213773470194}, {"serializer": "avro", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "1.12.0", "avg_time_ser_ns": 96743.83333333333, "avg_time_deser_ns": 200773.01388888888, "avg_time_total_ns": 297516.84722222225, "median_size_bytes": 34033.0, "avg_ops_per_sec": 3361.154197943879, "min_ops_per_sec": 3081.6546019888997, "max_ops_per_sec": 3517.7823899813557, "runs": 72, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 27, "ser_mean_ns": 96743.83333333333, "ser_median_ns": 96380.0, "ser_std_ns": 3173.0076725625554, "ser_mad_ns": 1816.5, "ser_cv": 0.0327980354223703, "ser_min_ns": 91505.0, "ser_max_ns": 105820.0, "ser_p5_ns": 92487.3, "ser_p25_ns": 94782.75, "ser_p50_ns": 96380.0, "ser_p75_ns": 98307.0, "ser_p95_ns": 103335.35, "ser_p99_ns": 105404.65000000001, "ser_ci_low_ns": 96063.00173611111, "ser_ci_high_ns": 97476.23229166666, "deser_mean_ns": 200773.01388888888, "deser_median_ns": 199401.0, "deser_std_ns": 6150.618218081261, "deser_mad_ns": 3509.0, "deser_cv": 0.030634685901986387, "deser_min_ns": 191714.0, "deser_max_ns": 220303.0, "deser_p5_ns": 193612.7, "deser_p25_ns": 196353.5, "deser_p50_ns": 199401.0, "deser_p75_ns": 203000.0, "deser_p95_ns": 213387.45, "deser_p99_ns": 219151.38, "deser_ci_low_ns": 199427.9013888889, "deser_ci_high_ns": 202157.02604166666, "total_mean_ns": 297516.84722222225, "total_median_ns": 296110.5, "total_std_ns": 8259.50928129992, "total_mad_ns": 4237.5, "total_cv": 0.027761484293797656, "total_min_ns": 284270.0, "total_max_ns": 324501.0, "total_p5_ns": 286390.3, "total_p25_ns": 292210.5, "total_p50_ns": 296110.5, "total_p75_ns": 300916.5, "total_p95_ns": 314342.45, "total_p99_ns": 322373.84, "total_ci_low_ns": 295687.55069444445, "total_ci_high_ns": 299502.2524305555, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.98038566418202}, {"serializer": "fory", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "1.3.0", "avg_time_ser_ns": 72767.69767441861, "avg_time_deser_ns": 74873.69767441861, "avg_time_total_ns": 147641.39534883722, "median_size_bytes": 34257.0, "avg_ops_per_sec": 6773.16817304027, "min_ops_per_sec": 6189.842468509177, "max_ops_per_sec": 7210.273197251444, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 72767.69767441861, "ser_median_ns": 72039.5, "ser_std_ns": 2865.8782621399487, "ser_mad_ns": 1737.0, "ser_cv": 0.03938393481902677, "ser_min_ns": 68399.0, "ser_max_ns": 80770.0, "ser_p5_ns": 69288.75, "ser_p25_ns": 70671.0, "ser_p50_ns": 72039.5, "ser_p75_ns": 74497.5, "ser_p95_ns": 78430.25, "ser_p99_ns": 80061.95000000001, "ser_ci_low_ns": 72204.93430232558, "ser_ci_high_ns": 73365.27906976745, "deser_mean_ns": 74873.69767441861, "deser_median_ns": 74216.0, "deser_std_ns": 2793.2926515021127, "deser_mad_ns": 1617.0, "deser_cv": 0.03730672770628331, "deser_min_ns": 70292.0, "deser_max_ns": 82764.0, "deser_p5_ns": 71314.0, "deser_p25_ns": 73038.75, "deser_p50_ns": 74216.0, "deser_p75_ns": 76773.5, "deser_p95_ns": 80692.5, "deser_p99_ns": 82248.05, "deser_ci_low_ns": 74292.68517441861, "deser_ci_high_ns": 75458.43110465116, "total_mean_ns": 147641.39534883722, "total_median_ns": 146594.5, "total_std_ns": 5246.497330777981, "total_mad_ns": 2709.5, "total_cv": 0.03553540874076615, "total_min_ns": 138691.0, "total_max_ns": 161555.0, "total_p5_ns": 141271.25, "total_p25_ns": 144098.25, "total_p50_ns": 146594.5, "total_p75_ns": 149399.5, "total_p95_ns": 158125.5, "total_p99_ns": 160725.4, "total_ci_low_ns": 146536.8636627907, "total_ci_high_ns": 148740.21482558138, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "jsoniter", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "0.9.23", "avg_time_ser_ns": 85890.22077922078, "avg_time_deser_ns": 105485.8051948052, "avg_time_total_ns": 191376.02597402598, "median_size_bytes": 41431.0, "avg_ops_per_sec": 5225.314899870073, "min_ops_per_sec": 4731.152272135879, "max_ops_per_sec": 5766.01510695958, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 85890.22077922078, "ser_median_ns": 85648.0, "ser_std_ns": 2729.05308728994, "ser_mad_ns": 1758.0, "ser_cv": 0.03177373468750209, "ser_min_ns": 78624.0, "ser_max_ns": 94319.0, "ser_p5_ns": 82302.6, "ser_p25_ns": 84248.0, "ser_p50_ns": 85648.0, "ser_p75_ns": 87495.0, "ser_p95_ns": 90130.0, "ser_p99_ns": 93489.84, "ser_ci_low_ns": 85294.58246753245, "ser_ci_high_ns": 86503.91201298701, "deser_mean_ns": 105485.8051948052, "deser_median_ns": 104920.0, "deser_std_ns": 4803.54967990767, "deser_mad_ns": 2681.0, "deser_cv": 0.04553740354957472, "deser_min_ns": 94806.0, "deser_max_ns": 121637.0, "deser_p5_ns": 99664.4, "deser_p25_ns": 102286.0, "deser_p50_ns": 104920.0, "deser_p75_ns": 107660.0, "deser_p95_ns": 114369.0, "deser_p99_ns": 118976.99999999999, "deser_ci_low_ns": 104438.4353896104, "deser_ci_high_ns": 106584.0327922078, "total_mean_ns": 191376.02597402598, "total_median_ns": 189951.0, "total_std_ns": 6678.133402093626, "total_mad_ns": 3410.0, "total_cv": 0.03489534996927984, "total_min_ns": 173430.0, "total_max_ns": 211365.0, "total_p5_ns": 182944.6, "total_p25_ns": 187239.0, "total_p50_ns": 189951.0, "total_p75_ns": 194100.0, "total_p95_ns": 203272.2, "total_p99_ns": 208451.91999999998, "total_ci_low_ns": 189948.75487012987, "total_ci_high_ns": 192875.06363636363, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.297336906718052}, {"serializer": "jackson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 84348.1375, "avg_time_deser_ns": 122843.1375, "avg_time_total_ns": 207191.275, "median_size_bytes": 41431.0, "avg_ops_per_sec": 4826.458063931505, "min_ops_per_sec": 4315.9257660768235, "max_ops_per_sec": 5082.3079776988325, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 84348.1375, "ser_median_ns": 84032.0, "ser_std_ns": 2677.589066436919, "ser_mad_ns": 1439.0, "ser_cv": 0.031744495442319866, "ser_min_ns": 80051.0, "ser_max_ns": 92442.0, "ser_p5_ns": 80654.05, "ser_p25_ns": 82752.5, "ser_p50_ns": 84032.0, "ser_p75_ns": 85618.75, "ser_p95_ns": 89821.9, "ser_p99_ns": 91417.37, "ser_ci_low_ns": 83790.51156249999, "ser_ci_high_ns": 84933.77125, "deser_mean_ns": 122843.1375, "deser_median_ns": 121456.5, "deser_std_ns": 5210.38758427075, "deser_mad_ns": 2141.0, "deser_cv": 0.04241496668278072, "deser_min_ns": 115115.0, "deser_max_ns": 140555.0, "deser_p5_ns": 116466.15, "deser_p25_ns": 119810.5, "deser_p50_ns": 121456.5, "deser_p75_ns": 124887.0, "deser_p95_ns": 133815.75, "deser_p99_ns": 138020.68, "deser_ci_low_ns": 121767.1959375, "deser_ci_high_ns": 123984.065625, "total_mean_ns": 207191.275, "total_median_ns": 206009.5, "total_std_ns": 7253.023111264133, "total_mad_ns": 3042.5, "total_cv": 0.03500641188324235, "total_min_ns": 196761.0, "total_max_ns": 231700.0, "total_p5_ns": 198324.7, "total_p25_ns": 203040.5, "total_p50_ns": 206009.5, "total_p75_ns": 209886.75, "total_p95_ns": 223399.4, "total_p99_ns": 227866.91999999998, "total_ci_low_ns": 205663.375, "total_ci_high_ns": 208788.74968749998, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.418892759759716}, {"serializer": "kryo", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "5.6.2", "avg_time_ser_ns": 3521.703296703297, "avg_time_deser_ns": 2603.8901098901097, "avg_time_total_ns": 6125.593406593406, "median_size_bytes": 112.0, "avg_ops_per_sec": 163249.49006958734, "min_ops_per_sec": 112296.46266142617, "max_ops_per_sec": 283366.39274582034, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 3521.703296703297, "ser_median_ns": 3438.0, "ser_std_ns": 617.6194170541794, "ser_mad_ns": 417.0, "ser_cv": 0.1753751991635239, "ser_min_ns": 2037.0, "ser_max_ns": 5307.0, "ser_p5_ns": 2713.5, "ser_p25_ns": 3076.0, "ser_p50_ns": 3438.0, "ser_p75_ns": 3876.0, "ser_p95_ns": 4481.0, "ser_p99_ns": 5301.6, "ser_ci_low_ns": 3399.286813186813, "ser_ci_high_ns": 3648.966208791209, "deser_mean_ns": 2603.8901098901097, "deser_median_ns": 2565.0, "deser_std_ns": 491.4437562608416, "deser_mad_ns": 327.0, "deser_cv": 0.18873444558748362, "deser_min_ns": 1492.0, "deser_max_ns": 3736.0, "deser_p5_ns": 1904.0, "deser_p25_ns": 2276.5, "deser_p50_ns": 2565.0, "deser_p75_ns": 2905.0, "deser_p95_ns": 3563.0, "deser_p99_ns": 3653.1999999999994, "deser_ci_low_ns": 2502.6554945054945, "deser_ci_high_ns": 2702.9637362637363, "total_mean_ns": 6125.593406593406, "total_median_ns": 5989.0, "total_std_ns": 1085.3005009163949, "total_mad_ns": 764.0, "total_cv": 0.1771747533468692, "total_min_ns": 3529.0, "total_max_ns": 8905.0, "total_p5_ns": 4622.0, "total_p25_ns": 5348.0, "total_p50_ns": 5989.0, "total_p75_ns": 6863.5, "total_p95_ns": 7945.0, "total_p99_ns": 8844.699999999999, "total_ci_low_ns": 5914.154670329671, "total_ci_high_ns": 6339.662637362637, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.03402621474910632, "effect_vs_fastest_cliffs_label": "negligible", "effect_vs_fastest_hedges_g": 0.13334746325937913}, {"serializer": "ion", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 9959.614457831325, "avg_time_deser_ns": 11073.638554216868, "avg_time_total_ns": 21033.253012048193, "median_size_bytes": 228.0, "avg_ops_per_sec": 47543.76317477775, "min_ops_per_sec": 37238.40023832576, "max_ops_per_sec": 68493.1506849315, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 9959.614457831325, "ser_median_ns": 9846.0, "ser_std_ns": 1318.1461189898234, "ser_mad_ns": 819.0, "ser_cv": 0.13234911095914506, "ser_min_ns": 6768.0, "ser_max_ns": 13609.0, "ser_p5_ns": 8022.5, "ser_p25_ns": 9305.0, "ser_p50_ns": 9846.0, "ser_p75_ns": 10809.5, "ser_p95_ns": 12342.599999999999, "ser_p99_ns": 12856.239999999993, "ser_ci_low_ns": 9671.645180722891, "ser_ci_high_ns": 10248.479518072289, "deser_mean_ns": 11073.638554216868, "deser_median_ns": 11173.0, "deser_std_ns": 1347.8141796574516, "deser_mad_ns": 873.0, "deser_cv": 0.1217137594891248, "deser_min_ns": 7832.0, "deser_max_ns": 14164.0, "deser_p5_ns": 8855.1, "deser_p25_ns": 10349.0, "deser_p50_ns": 11173.0, "deser_p75_ns": 12055.0, "deser_p95_ns": 13365.699999999997, "deser_p99_ns": 13861.419999999996, "deser_ci_low_ns": 10788.1921686747, "deser_ci_high_ns": 11357.590963855422, "total_mean_ns": 21033.253012048193, "total_median_ns": 20931.0, "total_std_ns": 2585.8260549433217, "total_mad_ns": 1731.0, "total_cv": 0.12293990156739511, "total_min_ns": 14600.0, "total_max_ns": 26854.0, "total_p5_ns": 16771.6, "total_p25_ns": 19749.0, "total_p50_ns": 20931.0, "total_p75_ns": 22785.5, "total_p95_ns": 25095.8, "total_p99_ns": 26101.239999999994, "total_ci_low_ns": 20480.52560240964, "total_ci_high_ns": 21600.785240963854, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.79322504981515}, {"serializer": "moshi", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "1.15.2", "avg_time_ser_ns": 3926.012048192771, "avg_time_deser_ns": 5172.21686746988, "avg_time_total_ns": 9098.22891566265, "median_size_bytes": 254.0, "avg_ops_per_sec": 109911.50137786647, "min_ops_per_sec": 80128.20512820513, "max_ops_per_sec": 172920.62943109113, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 3926.012048192771, "ser_median_ns": 3902.0, "ser_std_ns": 628.2080301312325, "ser_mad_ns": 301.0, "ser_cv": 0.16001174281174463, "ser_min_ns": 2501.0, "ser_max_ns": 5503.0, "ser_p5_ns": 2973.1, "ser_p25_ns": 3600.5, "ser_p50_ns": 3902.0, "ser_p75_ns": 4192.5, "ser_p95_ns": 5170.899999999999, "ser_p99_ns": 5439.86, "ser_ci_low_ns": 3792.177108433735, "ser_ci_high_ns": 4058.9412650602408, "deser_mean_ns": 5172.21686746988, "deser_median_ns": 5198.0, "deser_std_ns": 736.561822421312, "deser_mad_ns": 423.0, "deser_cv": 0.1424073741095121, "deser_min_ns": 3258.0, "deser_max_ns": 6977.0, "deser_p5_ns": 3973.4, "deser_p25_ns": 4655.5, "deser_p50_ns": 5198.0, "deser_p75_ns": 5586.0, "deser_p95_ns": 6301.9, "deser_p99_ns": 6707.2199999999975, "deser_ci_low_ns": 5015.862951807229, "deser_ci_high_ns": 5330.086144578313, "total_mean_ns": 9098.22891566265, "total_median_ns": 9053.0, "total_std_ns": 1327.3285781130608, "total_mad_ns": 752.0, "total_cv": 0.14588867684215523, "total_min_ns": 5783.0, "total_max_ns": 12480.0, "total_p5_ns": 7013.3, "total_p25_ns": 8349.5, "total_p50_ns": 9053.0, "total_p75_ns": 9789.5, "total_p95_ns": 11219.5, "total_p99_ns": 12101.159999999996, "total_ci_low_ns": 8799.035240963856, "total_ci_high_ns": 9375.292168674698, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9455653941065467, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.788346349404683}, {"serializer": "protostuff", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "1.8.0", "avg_time_ser_ns": 3531.8072289156626, "avg_time_deser_ns": 2463.4939759036147, "avg_time_total_ns": 5995.301204819277, "median_size_bytes": 123.0, "avg_ops_per_sec": 166797.29105122486, "min_ops_per_sec": 123823.67508667658, "max_ops_per_sec": 254841.99796126402, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 3531.8072289156626, "ser_median_ns": 3478.0, "ser_std_ns": 458.4272013869767, "ser_mad_ns": 255.0, "ser_cv": 0.1297996101354952, "ser_min_ns": 2611.0, "ser_max_ns": 4774.0, "ser_p5_ns": 2781.6, "ser_p25_ns": 3294.0, "ser_p50_ns": 3478.0, "ser_p75_ns": 3783.0, "ser_p95_ns": 4304.7, "ser_p99_ns": 4678.879999999999, "ser_ci_low_ns": 3434.704518072289, "ser_ci_high_ns": 3634.0996987951808, "deser_mean_ns": 2463.4939759036147, "deser_median_ns": 2379.0, "deser_std_ns": 566.0337698598947, "deser_mad_ns": 419.0, "deser_cv": 0.22976868439561432, "deser_min_ns": 1282.0, "deser_max_ns": 4218.0, "deser_p5_ns": 1590.5, "deser_p25_ns": 2068.0, "deser_p50_ns": 2379.0, "deser_p75_ns": 2838.5, "deser_p95_ns": 3334.2999999999997, "deser_p99_ns": 3759.619999999996, "deser_ci_low_ns": 2337.1963855421686, "deser_ci_high_ns": 2589.1548192771083, "total_mean_ns": 5995.301204819277, "total_median_ns": 5993.0, "total_std_ns": 832.0456972520223, "total_mad_ns": 553.0, "total_cv": 0.1387829683324649, "total_min_ns": 3924.0, "total_max_ns": 8076.0, "total_p5_ns": 4621.8, "total_p25_ns": 5410.0, "total_p50_ns": 5993.0, "total_p75_ns": 6467.0, "total_p95_ns": 7350.199999999998, "total_p99_ns": 7865.259999999998, "total_ci_low_ns": 5819.217168674699, "total_ci_high_ns": 6159.2768072289155, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "bson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "5.3.1", "avg_time_ser_ns": 3862.088888888889, "avg_time_deser_ns": 6003.677777777778, "avg_time_total_ns": 9865.766666666666, "median_size_bytes": 288.0, "avg_ops_per_sec": 101360.59708149054, "min_ops_per_sec": 71989.05766323519, "max_ops_per_sec": 169033.13049357675, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 3862.088888888889, "ser_median_ns": 3837.0, "ser_std_ns": 644.5389022428124, "ser_mad_ns": 378.0, "ser_cv": 0.1668886762542237, "ser_min_ns": 2411.0, "ser_max_ns": 5673.0, "ser_p5_ns": 2807.25, "ser_p25_ns": 3480.25, "ser_p50_ns": 3837.0, "ser_p75_ns": 4253.5, "ser_p95_ns": 4995.0, "ser_p99_ns": 5457.62, "ser_ci_low_ns": 3730.0724999999998, "ser_ci_high_ns": 3991.1744444444444, "deser_mean_ns": 6003.677777777778, "deser_median_ns": 5968.0, "deser_std_ns": 1077.35428981963, "deser_mad_ns": 738.0, "deser_cv": 0.17944905268023986, "deser_min_ns": 3278.0, "deser_max_ns": 8660.0, "deser_p5_ns": 4358.85, "deser_p25_ns": 5316.0, "deser_p50_ns": 5968.0, "deser_p75_ns": 6723.5, "deser_p95_ns": 7963.4, "deser_p99_ns": 8465.09, "deser_ci_low_ns": 5783.765277777778, "deser_ci_high_ns": 6210.320000000001, "total_mean_ns": 9865.766666666666, "total_median_ns": 9941.5, "total_std_ns": 1554.856885281686, "total_mad_ns": 975.0, "total_cv": 0.15760122226841833, "total_min_ns": 5916.0, "total_max_ns": 13891.0, "total_p5_ns": 7292.55, "total_p25_ns": 8890.0, "total_p50_ns": 9941.5, "total_p75_ns": 10729.75, "total_p95_ns": 12581.8, "total_p99_ns": 13373.91, "total_ci_low_ns": 9541.308888888889, "total_ci_high_ns": 10189.90138888889, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9643908969210174, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.0557535847297523}, {"serializer": "fastjson2", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.0.57", "avg_time_ser_ns": 10611.28947368421, "avg_time_deser_ns": 7329.986842105263, "avg_time_total_ns": 17941.276315789473, "median_size_bytes": 254.0, "avg_ops_per_sec": 55737.394731496104, "min_ops_per_sec": 44343.93153296971, "max_ops_per_sec": 76663.60012266177, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 10611.28947368421, "ser_median_ns": 10614.0, "ser_std_ns": 1312.564358455508, "ser_mad_ns": 674.0, "ser_cv": 0.12369508547577011, "ser_min_ns": 7612.0, "ser_max_ns": 13479.0, "ser_p5_ns": 8291.25, "ser_p25_ns": 9845.5, "ser_p50_ns": 10614.0, "ser_p75_ns": 11262.5, "ser_p95_ns": 12916.25, "ser_p99_ns": 13407.75, "ser_ci_low_ns": 10309.061513157894, "ser_ci_high_ns": 10914.870723684211, "deser_mean_ns": 7329.986842105263, "deser_median_ns": 7356.0, "deser_std_ns": 847.9371280689949, "deser_mad_ns": 481.5, "deser_cv": 0.1156805798338182, "deser_min_ns": 5311.0, "deser_max_ns": 9298.0, "deser_p5_ns": 5769.25, "deser_p25_ns": 6918.5, "deser_p50_ns": 7356.0, "deser_p75_ns": 7858.75, "deser_p95_ns": 8733.5, "deser_p99_ns": 9050.5, "deser_ci_low_ns": 7139.2677631578945, "deser_ci_high_ns": 7508.6125, "total_mean_ns": 17941.276315789473, "total_median_ns": 18056.0, "total_std_ns": 2129.0910335864564, "total_mad_ns": 1078.5, "total_cv": 0.11866998735829735, "total_min_ns": 13044.0, "total_max_ns": 22551.0, "total_p5_ns": 13816.0, "total_p25_ns": 16704.0, "total_p50_ns": 18056.0, "total_p75_ns": 19130.0, "total_p95_ns": 21606.75, "total_p99_ns": 22062.75, "total_ci_low_ns": 17471.10723684211, "total_ci_high_ns": 18432.31644736842, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.478807220413935}, {"serializer": "fory", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "1.3.0", "avg_time_ser_ns": 5865.123456790124, "avg_time_deser_ns": 4946.086419753086, "avg_time_total_ns": 10811.20987654321, "median_size_bytes": 209.0, "avg_ops_per_sec": 92496.58561986416, "min_ops_per_sec": 71566.59271452086, "max_ops_per_sec": 131044.42405975626, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 5865.123456790124, "ser_median_ns": 5904.0, "ser_std_ns": 703.3790831179879, "ser_mad_ns": 366.0, "ser_cv": 0.11992570800938171, "ser_min_ns": 4329.0, "ser_max_ns": 7642.0, "ser_p5_ns": 4564.0, "ser_p25_ns": 5540.0, "ser_p50_ns": 5904.0, "ser_p75_ns": 6276.0, "ser_p95_ns": 7101.0, "ser_p99_ns": 7590.8, "ser_ci_low_ns": 5703.406172839505, "ser_ci_high_ns": 6022.921604938271, "deser_mean_ns": 4946.086419753086, "deser_median_ns": 5050.0, "deser_std_ns": 641.1573363366215, "deser_mad_ns": 394.0, "deser_cv": 0.12962922236377517, "deser_min_ns": 3302.0, "deser_max_ns": 6395.0, "deser_p5_ns": 3821.0, "deser_p25_ns": 4545.0, "deser_p50_ns": 5050.0, "deser_p75_ns": 5394.0, "deser_p95_ns": 5807.0, "deser_p99_ns": 6201.400000000001, "deser_ci_low_ns": 4809.636728395062, "deser_ci_high_ns": 5081.298765432099, "total_mean_ns": 10811.20987654321, "total_median_ns": 11060.0, "total_std_ns": 1267.0124280768655, "total_mad_ns": 698.0, "total_cv": 0.11719432353504378, "total_min_ns": 7631.0, "total_max_ns": 13973.0, "total_p5_ns": 8385.0, "total_p25_ns": 10190.0, "total_p50_ns": 11060.0, "total_p75_ns": 11509.0, "total_p95_ns": 12715.0, "total_p99_ns": 13410.600000000002, "total_ci_low_ns": 10541.44413580247, "total_ci_high_ns": 11076.32098765432, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9988100550349547, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.483359821890528}, {"serializer": "protobuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "4.28.3", "avg_time_ser_ns": 3573.346153846154, "avg_time_deser_ns": 8082.282051282052, "avg_time_total_ns": 11655.628205128205, "median_size_bytes": 123.0, "avg_ops_per_sec": 85795.46142009088, "min_ops_per_sec": 66840.45184145444, "max_ops_per_sec": 113700.9664582149, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 3573.346153846154, "ser_median_ns": 3514.0, "ser_std_ns": 407.93190248243286, "ser_mad_ns": 177.5, "ser_cv": 0.11415963775111945, "ser_min_ns": 2712.0, "ser_max_ns": 4866.0, "ser_p5_ns": 2907.1, "ser_p25_ns": 3342.0, "ser_p50_ns": 3514.0, "ser_p75_ns": 3740.0, "ser_p95_ns": 4226.4, "ser_p99_ns": 4807.4800000000005, "ser_ci_low_ns": 3487.161217948718, "ser_ci_high_ns": 3662.8041666666663, "deser_mean_ns": 8082.282051282052, "deser_median_ns": 8154.5, "deser_std_ns": 831.7500701257434, "deser_mad_ns": 440.5, "deser_cv": 0.10291029994354219, "deser_min_ns": 5881.0, "deser_max_ns": 10171.0, "deser_p5_ns": 6235.75, "deser_p25_ns": 7698.75, "deser_p50_ns": 8154.5, "deser_p75_ns": 8552.0, "deser_p95_ns": 9384.75, "deser_p99_ns": 9688.210000000003, "deser_ci_low_ns": 7903.160256410257, "deser_ci_high_ns": 8258.840705128207, "total_mean_ns": 11655.628205128205, "total_median_ns": 11695.0, "total_std_ns": 1159.7161778728937, "total_mad_ns": 504.5, "total_cv": 0.0994983845969491, "total_min_ns": 8795.0, "total_max_ns": 14961.0, "total_p5_ns": 9048.65, "total_p25_ns": 11185.25, "total_p50_ns": 11695.0, "total_p75_ns": 12161.25, "total_p95_ns": 13539.75, "total_p99_ns": 14261.070000000003, "total_ci_low_ns": 11399.335897435898, "total_ci_high_ns": 11915.033333333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.610185853546147}, {"serializer": "jackson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 4724.908045977011, "avg_time_deser_ns": 7149.425287356322, "avg_time_total_ns": 11874.333333333334, "median_size_bytes": 254.0, "avg_ops_per_sec": 84215.2541897089, "min_ops_per_sec": 56776.24481916766, "max_ops_per_sec": 134246.20754463685, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 4724.908045977011, "ser_median_ns": 4584.0, "ser_std_ns": 870.3779135389235, "ser_mad_ns": 532.0, "ser_cv": 0.18421055078098303, "ser_min_ns": 3265.0, "ser_max_ns": 7312.0, "ser_p5_ns": 3491.1, "ser_p25_ns": 4108.0, "ser_p50_ns": 4584.0, "ser_p75_ns": 5230.5, "ser_p95_ns": 6263.200000000001, "ser_p99_ns": 7204.5, "ser_ci_low_ns": 4553.749137931035, "ser_ci_high_ns": 4906.035344827586, "deser_mean_ns": 7149.425287356322, "deser_median_ns": 7056.0, "deser_std_ns": 1535.5910583299456, "deser_mad_ns": 947.0, "deser_cv": 0.21478524449309527, "deser_min_ns": 4184.0, "deser_max_ns": 12096.0, "deser_p5_ns": 5047.9, "deser_p25_ns": 6127.5, "deser_p50_ns": 7056.0, "deser_p75_ns": 8038.0, "deser_p95_ns": 10162.900000000001, "deser_p99_ns": 11193.86, "deser_ci_low_ns": 6822.031609195402, "deser_ci_high_ns": 7502.059770114942, "total_mean_ns": 11874.333333333334, "total_median_ns": 11557.0, "total_std_ns": 2244.8324258516577, "total_mad_ns": 1509.0, "total_cv": 0.1890491333563982, "total_min_ns": 7449.0, "total_max_ns": 17613.0, "total_p5_ns": 8521.2, "total_p25_ns": 10408.5, "total_p50_ns": 11557.0, "total_p75_ns": 13476.0, "total_p95_ns": 15968.1, "total_p99_ns": 17549.36, "total_ci_low_ns": 11432.137643678161, "total_ci_high_ns": 12349.748850574713, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9986151502561972, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.426507318506177}, {"serializer": "msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "0.9.8", "avg_time_ser_ns": 4870.674418604651, "avg_time_deser_ns": 6212.802325581395, "avg_time_total_ns": 11083.476744186046, "median_size_bytes": 196.0, "avg_ops_per_sec": 90224.3964669805, "min_ops_per_sec": 64254.96369594551, "max_ops_per_sec": 133084.90817141335, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 4870.674418604651, "ser_median_ns": 4678.5, "ser_std_ns": 774.1270520719826, "ser_mad_ns": 499.5, "ser_cv": 0.15893631672752093, "ser_min_ns": 3140.0, "ser_max_ns": 7176.0, "ser_p5_ns": 3771.0, "ser_p25_ns": 4406.0, "ser_p50_ns": 4678.5, "ser_p75_ns": 5332.25, "ser_p95_ns": 6298.75, "ser_p99_ns": 6980.500000000001, "ser_ci_low_ns": 4713.44738372093, "ser_ci_high_ns": 5036.965406976744, "deser_mean_ns": 6212.802325581395, "deser_median_ns": 6065.5, "deser_std_ns": 933.8087071994922, "deser_mad_ns": 520.5, "deser_cv": 0.1503039463133259, "deser_min_ns": 4170.0, "deser_max_ns": 8617.0, "deser_p5_ns": 4780.25, "deser_p25_ns": 5622.5, "deser_p50_ns": 6065.5, "deser_p75_ns": 6823.75, "deser_p95_ns": 7729.5, "deser_p99_ns": 8309.300000000003, "deser_ci_low_ns": 6011.68226744186, "deser_ci_high_ns": 6413.100581395348, "total_mean_ns": 11083.476744186046, "total_median_ns": 10815.5, "total_std_ns": 1672.4350315473907, "total_mad_ns": 1003.5, "total_cv": 0.15089444135159882, "total_min_ns": 7514.0, "total_max_ns": 15563.0, "total_p5_ns": 8660.25, "total_p25_ns": 10114.25, "total_p50_ns": 10815.5, "total_p75_ns": 12267.75, "total_p95_ns": 13971.75, "total_p99_ns": 15450.800000000001, "total_ci_low_ns": 10727.268604651163, "total_ci_high_ns": 11410.389534883721, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9980386662930792, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.8142350004928693}, {"serializer": "hessian", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "4.0.66", "avg_time_ser_ns": 3434.0666666666666, "avg_time_deser_ns": 3933.1, "avg_time_total_ns": 7367.166666666667, "median_size_bytes": 231.0, "avg_ops_per_sec": 135737.39338958895, "min_ops_per_sec": 103508.95352447986, "max_ops_per_sec": 194439.04335990667, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 3434.0666666666666, "ser_median_ns": 3454.0, "ser_std_ns": 419.32505425218216, "ser_mad_ns": 309.5, "ser_cv": 0.12210742974865044, "ser_min_ns": 2621.0, "ser_max_ns": 4461.0, "ser_p5_ns": 2711.4, "ser_p25_ns": 3118.5, "ser_p50_ns": 3454.0, "ser_p75_ns": 3731.0, "ser_p95_ns": 4096.45, "ser_p99_ns": 4291.01, "ser_ci_low_ns": 3348.678611111111, "ser_ci_high_ns": 3519.7225, "deser_mean_ns": 3933.1, "deser_median_ns": 3979.5, "deser_std_ns": 598.0949165588044, "deser_mad_ns": 336.5, "deser_cv": 0.1520670505603225, "deser_min_ns": 2498.0, "deser_max_ns": 5200.0, "deser_p5_ns": 2807.9, "deser_p25_ns": 3611.25, "deser_p50_ns": 3979.5, "deser_p75_ns": 4265.75, "deser_p95_ns": 4938.099999999999, "deser_p99_ns": 5198.22, "deser_ci_low_ns": 3808.1030555555553, "deser_ci_high_ns": 4057.919722222222, "total_mean_ns": 7367.166666666667, "total_median_ns": 7440.5, "total_std_ns": 996.1950674238207, "total_mad_ns": 640.0, "total_cv": 0.1352209217596752, "total_min_ns": 5143.0, "total_max_ns": 9661.0, "total_p5_ns": 5529.55, "total_p25_ns": 6735.75, "total_p50_ns": 7440.5, "total_p75_ns": 8031.25, "total_p95_ns": 9080.55, "total_p99_ns": 9295.21, "total_ci_low_ns": 7166.892777777777, "total_ci_high_ns": 7568.723611111111, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.708433734939759, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.4827745870914713}, {"serializer": "dsl-json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.0.2", "avg_time_ser_ns": 4245.0989010989015, "avg_time_deser_ns": 4862.2967032967035, "avg_time_total_ns": 9107.395604395604, "median_size_bytes": 254.0, "avg_ops_per_sec": 109800.8743045442, "min_ops_per_sec": 76793.11933650744, "max_ops_per_sec": 173490.6315058987, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 4245.0989010989015, "ser_median_ns": 4253.0, "ser_std_ns": 900.5582843121391, "ser_mad_ns": 651.0, "ser_cv": 0.21214070750601768, "ser_min_ns": 2609.0, "ser_max_ns": 6397.0, "ser_p5_ns": 2825.0, "ser_p25_ns": 3514.5, "ser_p50_ns": 4253.0, "ser_p75_ns": 4859.0, "ser_p95_ns": 5611.0, "ser_p99_ns": 6389.8, "ser_ci_low_ns": 4053.0989010989015, "ser_ci_high_ns": 4430.830769230769, "deser_mean_ns": 4862.2967032967035, "deser_median_ns": 4801.0, "deser_std_ns": 744.5002275129194, "deser_mad_ns": 477.0, "deser_cv": 0.15311698831709264, "deser_min_ns": 3105.0, "deser_max_ns": 6633.0, "deser_p5_ns": 3646.5, "deser_p25_ns": 4395.0, "deser_p50_ns": 4801.0, "deser_p75_ns": 5301.0, "deser_p95_ns": 6144.0, "deser_p99_ns": 6499.799999999999, "deser_ci_low_ns": 4713.053571428572, "deser_ci_high_ns": 5016.077472527472, "total_mean_ns": 9107.395604395604, "total_median_ns": 9071.0, "total_std_ns": 1596.0797103397567, "total_mad_ns": 1119.0, "total_cv": 0.17525094765504892, "total_min_ns": 5764.0, "total_max_ns": 13022.0, "total_p5_ns": 6431.5, "total_p25_ns": 8004.5, "total_p50_ns": 9071.0, "total_p75_ns": 10212.0, "total_p95_ns": 11680.5, "total_p99_ns": 12896.0, "total_ci_low_ns": 8784.79478021978, "total_ci_high_ns": 9445.612362637363, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9216205481265722, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.4027149432654777}, {"serializer": "java-serialization", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "21.0.11", "avg_time_ser_ns": 6472.461538461538, "avg_time_deser_ns": 22572.505494505494, "avg_time_total_ns": 29044.967032967033, "median_size_bytes": 423.0, "avg_ops_per_sec": 34429.37287086488, "min_ops_per_sec": 23848.703822947224, "max_ops_per_sec": 59087.686126211294, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 6472.461538461538, "ser_median_ns": 6465.0, "ser_std_ns": 1212.33612232923, "ser_mad_ns": 662.0, "ser_cv": 0.1873068098010505, "ser_min_ns": 3615.0, "ser_max_ns": 9490.0, "ser_p5_ns": 4481.0, "ser_p25_ns": 5818.0, "ser_p50_ns": 6465.0, "ser_p75_ns": 7221.0, "ser_p95_ns": 8596.5, "ser_p99_ns": 8987.799999999997, "ser_ci_low_ns": 6227.410714285715, "ser_ci_high_ns": 6729.18901098901, "deser_mean_ns": 22572.505494505494, "deser_median_ns": 22843.0, "deser_std_ns": 4360.798480333686, "deser_mad_ns": 2900.0, "deser_cv": 0.19319071519974482, "deser_min_ns": 13183.0, "deser_max_ns": 33348.0, "deser_p5_ns": 14870.5, "deser_p25_ns": 19831.5, "deser_p50_ns": 22843.0, "deser_p75_ns": 25387.5, "deser_p95_ns": 28961.0, "deser_p99_ns": 31435.49999999999, "deser_ci_low_ns": 21686.627197802198, "deser_ci_high_ns": 23467.202472527475, "total_mean_ns": 29044.967032967033, "total_median_ns": 29298.0, "total_std_ns": 5495.686485175946, "total_mad_ns": 3113.0, "total_cv": 0.18921303917949547, "total_min_ns": 16924.0, "total_max_ns": 41931.0, "total_p5_ns": 19078.5, "total_p25_ns": 26070.0, "total_p50_ns": 29298.0, "total_p75_ns": 32227.0, "total_p95_ns": 37459.0, "total_p99_ns": 40332.59999999999, "total_ci_low_ns": 27948.947527472526, "total_ci_high_ns": 30223.785714285714, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.7134276964971695}, {"serializer": "jackson-smile", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 4176.360465116279, "avg_time_deser_ns": 6164.03488372093, "avg_time_total_ns": 10340.39534883721, "median_size_bytes": 181.0, "avg_ops_per_sec": 96708.10121514853, "min_ops_per_sec": 56192.402787143175, "max_ops_per_sec": 157878.11809283233, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 4176.360465116279, "ser_median_ns": 4102.0, "ser_std_ns": 767.2048566489028, "ser_mad_ns": 355.0, "ser_cv": 0.18370178126555517, "ser_min_ns": 2463.0, "ser_max_ns": 6463.0, "ser_p5_ns": 3124.25, "ser_p25_ns": 3688.25, "ser_p50_ns": 4102.0, "ser_p75_ns": 4423.25, "ser_p95_ns": 5687.75, "ser_p99_ns": 6427.3, "ser_ci_low_ns": 4018.0601744186047, "ser_ci_high_ns": 4335.490697674419, "deser_mean_ns": 6164.03488372093, "deser_median_ns": 5584.5, "deser_std_ns": 1818.9941011298747, "deser_mad_ns": 616.0, "deser_cv": 0.29509795701088504, "deser_min_ns": 3385.0, "deser_max_ns": 11333.0, "deser_p5_ns": 4266.25, "deser_p25_ns": 4994.75, "deser_p50_ns": 5584.5, "deser_p75_ns": 6315.25, "deser_p95_ns": 9771.75, "deser_p99_ns": 11296.45, "deser_ci_low_ns": 5784.476744186047, "deser_ci_high_ns": 6568.849709302325, "total_mean_ns": 10340.39534883721, "total_median_ns": 9779.0, "total_std_ns": 2411.721553916449, "total_mad_ns": 1025.5, "total_cv": 0.23323301213890724, "total_min_ns": 6334.0, "total_max_ns": 17796.0, "total_p5_ns": 7403.75, "total_p25_ns": 8852.75, "total_p50_ns": 9779.0, "total_p75_ns": 11035.75, "total_p95_ns": 15032.25, "total_p99_ns": 16770.900000000005, "total_ci_low_ns": 9847.167441860465, "total_ci_high_ns": 10816.14738372093, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9746427570748109, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.381002062578554}, {"serializer": "jackson-cbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 4305.436781609195, "avg_time_deser_ns": 5758.0114942528735, "avg_time_total_ns": 10063.448275862069, "median_size_bytes": 201.0, "avg_ops_per_sec": 99369.51754385965, "min_ops_per_sec": 73362.18912772357, "max_ops_per_sec": 142166.61927779356, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 4305.436781609195, "ser_median_ns": 4297.0, "ser_std_ns": 541.7503866376836, "ser_mad_ns": 343.0, "ser_cv": 0.1258293674062959, "ser_min_ns": 3039.0, "ser_max_ns": 5546.0, "ser_p5_ns": 3294.0, "ser_p25_ns": 4039.5, "ser_p50_ns": 4297.0, "ser_p75_ns": 4661.5, "ser_p95_ns": 5218.5, "ser_p99_ns": 5416.14, "ser_ci_low_ns": 4186.089367816092, "ser_ci_high_ns": 4417.565804597702, "deser_mean_ns": 5758.0114942528735, "deser_median_ns": 5690.0, "deser_std_ns": 833.3625986307392, "deser_mad_ns": 590.0, "deser_cv": 0.14473097170134627, "deser_min_ns": 3935.0, "deser_max_ns": 8085.0, "deser_p5_ns": 4437.1, "deser_p25_ns": 5134.5, "deser_p50_ns": 5690.0, "deser_p75_ns": 6283.0, "deser_p95_ns": 7255.7, "deser_p99_ns": 7806.360000000001, "deser_ci_low_ns": 5578.366666666667, "deser_ci_high_ns": 5934.266954022989, "total_mean_ns": 10063.448275862069, "total_median_ns": 10055.0, "total_std_ns": 1314.157690784098, "total_mad_ns": 909.0, "total_cv": 0.1305872157097685, "total_min_ns": 7034.0, "total_max_ns": 13631.0, "total_p5_ns": 7684.1, "total_p25_ns": 9145.0, "total_p50_ns": 10055.0, "total_p75_ns": 10888.0, "total_p95_ns": 12154.3, "total_p99_ns": 12777.880000000001, "total_ci_low_ns": 9795.755747126437, "total_ci_high_ns": 10346.58908045977, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.993075751280986, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.6636986394869204}, {"serializer": "jsoniter", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "0.9.23", "avg_time_ser_ns": 3932.0222222222224, "avg_time_deser_ns": 5064.211111111111, "avg_time_total_ns": 8996.233333333334, "median_size_bytes": 254.0, "avg_ops_per_sec": 111157.63263884514, "min_ops_per_sec": 86221.7623728229, "max_ops_per_sec": 148544.266191325, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 3932.0222222222224, "ser_median_ns": 3925.5, "ser_std_ns": 448.11196879717005, "ser_mad_ns": 254.5, "ser_cv": 0.11396475998142122, "ser_min_ns": 2954.0, "ser_max_ns": 5159.0, "ser_p5_ns": 3276.25, "ser_p25_ns": 3648.5, "ser_p50_ns": 3925.5, "ser_p75_ns": 4169.75, "ser_p95_ns": 4713.95, "ser_p99_ns": 4914.25, "ser_ci_low_ns": 3839.552222222222, "ser_ci_high_ns": 4022.201944444444, "deser_mean_ns": 5064.211111111111, "deser_median_ns": 5149.0, "deser_std_ns": 612.1951751356962, "deser_mad_ns": 421.5, "deser_cv": 0.12088658266882121, "deser_min_ns": 3504.0, "deser_max_ns": 6517.0, "deser_p5_ns": 3995.6, "deser_p25_ns": 4648.25, "deser_p50_ns": 5149.0, "deser_p75_ns": 5430.5, "deser_p95_ns": 6052.199999999999, "deser_p99_ns": 6451.14, "deser_ci_low_ns": 4940.468333333333, "deser_ci_high_ns": 5187.896944444444, "total_mean_ns": 8996.233333333334, "total_median_ns": 9059.0, "total_std_ns": 1012.6507661367286, "total_mad_ns": 677.5, "total_cv": 0.11256386185367157, "total_min_ns": 6732.0, "total_max_ns": 11598.0, "total_p5_ns": 7307.3, "total_p25_ns": 8318.0, "total_p50_ns": 9059.0, "total_p75_ns": 9567.5, "total_p95_ns": 10601.7, "total_p99_ns": 11114.73, "total_ci_low_ns": 8794.483055555555, "total_ci_high_ns": 9200.339444444446, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9812583668005355, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.2111507737293814}, {"serializer": "gson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "2.12.1", "avg_time_ser_ns": 5953.863636363636, "avg_time_deser_ns": 4838.806818181818, "avg_time_total_ns": 10792.670454545454, "median_size_bytes": 254.0, "avg_ops_per_sec": 92655.47430653169, "min_ops_per_sec": 66111.33148221605, "max_ops_per_sec": 138427.46400885936, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 5953.863636363636, "ser_median_ns": 5957.0, "ser_std_ns": 907.5611905125493, "ser_mad_ns": 558.0, "ser_cv": 0.1524323105033102, "ser_min_ns": 3829.0, "ser_max_ns": 8375.0, "ser_p5_ns": 4661.45, "ser_p25_ns": 5399.0, "ser_p50_ns": 5957.0, "ser_p75_ns": 6513.0, "ser_p95_ns": 7460.9, "ser_p99_ns": 8100.949999999999, "ser_ci_low_ns": 5766.533806818182, "ser_ci_high_ns": 6140.5232954545445, "deser_mean_ns": 4838.806818181818, "deser_median_ns": 4737.5, "deser_std_ns": 665.4040662989902, "deser_mad_ns": 402.5, "deser_cv": 0.1375140796691313, "deser_min_ns": 3395.0, "deser_max_ns": 6751.0, "deser_p5_ns": 3843.0, "deser_p25_ns": 4425.5, "deser_p50_ns": 4737.5, "deser_p75_ns": 5241.0, "deser_p95_ns": 5924.15, "deser_p99_ns": 6705.76, "deser_ci_low_ns": 4705.048295454545, "deser_ci_high_ns": 4977.751136363637, "total_mean_ns": 10792.670454545454, "total_median_ns": 10761.5, "total_std_ns": 1516.5473621505423, "total_mad_ns": 945.5, "total_cv": 0.14051641514837798, "total_min_ns": 7224.0, "total_max_ns": 15126.0, "total_p5_ns": 8569.55, "total_p25_ns": 9857.0, "total_p50_ns": 10761.5, "total_p75_ns": 11814.5, "total_p95_ns": 13589.749999999996, "total_p99_ns": 14450.879999999997, "total_ci_low_ns": 10481.191477272729, "total_ci_high_ns": 11119.150568181818, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9975355969331873, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.8740272616193496}, {"serializer": "avro", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "java", "serializer_version": "1.12.0", "avg_time_ser_ns": 3071.4942528735633, "avg_time_deser_ns": 5414.701149425287, "avg_time_total_ns": 8486.19540229885, "median_size_bytes": 105.0, "avg_ops_per_sec": 117838.43673091797, "min_ops_per_sec": 89541.54727793696, "max_ops_per_sec": 176959.83011856308, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 3071.4942528735633, "ser_median_ns": 3082.0, "ser_std_ns": 428.79506336003374, "ser_mad_ns": 239.0, "ser_cv": 0.13960470964868998, "ser_min_ns": 2060.0, "ser_max_ns": 4260.0, "ser_p5_ns": 2309.6, "ser_p25_ns": 2838.0, "ser_p50_ns": 3082.0, "ser_p75_ns": 3305.0, "ser_p95_ns": 3761.9, "ser_p99_ns": 4000.28, "ser_ci_low_ns": 2981.625287356322, "ser_ci_high_ns": 3159.935632183908, "deser_mean_ns": 5414.701149425287, "deser_median_ns": 5354.0, "deser_std_ns": 744.665698601112, "deser_mad_ns": 408.0, "deser_cv": 0.13752664792592484, "deser_min_ns": 3545.0, "deser_max_ns": 7327.0, "deser_p5_ns": 4149.9, "deser_p25_ns": 4974.0, "deser_p50_ns": 5354.0, "deser_p75_ns": 5810.0, "deser_p95_ns": 6761.5, "deser_p99_ns": 7226.38, "deser_ci_low_ns": 5269.204885057471, "deser_ci_high_ns": 5573.881896551724, "total_mean_ns": 8486.19540229885, "total_median_ns": 8429.0, "total_std_ns": 1138.46395740234, "total_mad_ns": 567.0, "total_cv": 0.13415481301478613, "total_min_ns": 5651.0, "total_max_ns": 11168.0, "total_p5_ns": 6325.7, "total_p25_ns": 7871.0, "total_p50_ns": 8429.0, "total_p75_ns": 9006.5, "total_p95_ns": 10681.4, "total_p99_ns": 11053.62, "total_ci_low_ns": 8250.05143678161, "total_ci_high_ns": 8728.02672413793, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9194017449106772, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.4780381405551224}, {"serializer": "kryo", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "5.6.2", "avg_time_ser_ns": 3482.5862068965516, "avg_time_deser_ns": 2439.2528735632186, "avg_time_total_ns": 5921.83908045977, "median_size_bytes": 112.0, "avg_ops_per_sec": 168866.4596273292, "min_ops_per_sec": 139236.9813422445, "max_ops_per_sec": 232558.13953488372, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 3482.5862068965516, "ser_median_ns": 3502.0, "ser_std_ns": 353.4310087514577, "ser_mad_ns": 233.0, "ser_cv": 0.101485214652134, "ser_min_ns": 2619.0, "ser_max_ns": 4380.0, "ser_p5_ns": 2747.0, "ser_p25_ns": 3287.5, "ser_p50_ns": 3502.0, "ser_p75_ns": 3740.0, "ser_p95_ns": 3973.5, "ser_p99_ns": 4299.16, "ser_ci_low_ns": 3409.8591954022986, "ser_ci_high_ns": 3557.902298850575, "deser_mean_ns": 2439.2528735632186, "deser_median_ns": 2455.0, "deser_std_ns": 331.91982845367403, "deser_mad_ns": 203.0, "deser_cv": 0.13607438246810846, "deser_min_ns": 1580.0, "deser_max_ns": 3356.0, "deser_p5_ns": 1815.4, "deser_p25_ns": 2252.0, "deser_p50_ns": 2455.0, "deser_p75_ns": 2665.0, "deser_p95_ns": 2920.4, "deser_p99_ns": 3134.98, "deser_ci_low_ns": 2371.275574712644, "deser_ci_high_ns": 2504.897413793103, "total_mean_ns": 5921.83908045977, "total_median_ns": 5934.0, "total_std_ns": 648.293464153589, "total_mad_ns": 432.0, "total_cv": 0.10947502209115341, "total_min_ns": 4300.0, "total_max_ns": 7182.0, "total_p5_ns": 4591.6, "total_p25_ns": 5598.5, "total_p50_ns": 5934.0, "total_p75_ns": 6422.5, "total_p95_ns": 6815.3, "total_p99_ns": 7024.62, "total_ci_low_ns": 5784.891379310345, "total_ci_high_ns": 6053.8227011494255, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.9913419913419913, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.8478591318573807}, {"serializer": "dsl-json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.0.2", "avg_time_ser_ns": 4752.359550561798, "avg_time_deser_ns": 5360.269662921349, "avg_time_total_ns": 10112.629213483146, "median_size_bytes": 254.0, "avg_ops_per_sec": 98886.25192217097, "min_ops_per_sec": 75187.96992481203, "max_ops_per_sec": 145116.81903932666, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 4752.359550561798, "ser_median_ns": 4819.0, "ser_std_ns": 730.749136894819, "ser_mad_ns": 531.0, "ser_cv": 0.15376554091081637, "ser_min_ns": 3150.0, "ser_max_ns": 6386.0, "ser_p5_ns": 3471.2, "ser_p25_ns": 4174.0, "ser_p50_ns": 4819.0, "ser_p75_ns": 5255.0, "ser_p95_ns": 5809.6, "ser_p99_ns": 6247.840000000001, "ser_ci_low_ns": 4603.359550561798, "ser_ci_high_ns": 4903.760955056179, "deser_mean_ns": 5360.269662921349, "deser_median_ns": 5371.0, "deser_std_ns": 690.9135876117042, "deser_mad_ns": 458.0, "deser_cv": 0.12889530397900842, "deser_min_ns": 3642.0, "deser_max_ns": 7209.0, "deser_p5_ns": 4173.4, "deser_p25_ns": 4955.0, "deser_p50_ns": 5371.0, "deser_p75_ns": 5833.0, "deser_p95_ns": 6518.2, "deser_p99_ns": 6949.4000000000015, "deser_ci_low_ns": 5216.0185393258425, "deser_ci_high_ns": 5501.124719101123, "total_mean_ns": 10112.629213483146, "total_median_ns": 10059.0, "total_std_ns": 1304.6467858984117, "total_mad_ns": 783.0, "total_cv": 0.129011630739801, "total_min_ns": 6891.0, "total_max_ns": 13300.0, "total_p5_ns": 8005.0, "total_p25_ns": 9371.0, "total_p50_ns": 10059.0, "total_p75_ns": 10982.0, "total_p95_ns": 12451.999999999998, "total_p99_ns": 12964.720000000001, "total_ci_low_ns": 9849.36320224719, "total_ci_high_ns": 10369.183426966292, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.318966069949332}, {"serializer": "protobuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "4.28.3", "avg_time_ser_ns": 3894.14606741573, "avg_time_deser_ns": 6694.168539325843, "avg_time_total_ns": 10588.314606741573, "median_size_bytes": 123.0, "avg_ops_per_sec": 94443.7370007216, "min_ops_per_sec": 73329.91127080737, "max_ops_per_sec": 129433.08309603935, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 3894.14606741573, "ser_median_ns": 3895.0, "ser_std_ns": 528.6636357699434, "ser_mad_ns": 325.0, "ser_cv": 0.13575855312504498, "ser_min_ns": 2651.0, "ser_max_ns": 5308.0, "ser_p5_ns": 3013.2, "ser_p25_ns": 3560.0, "ser_p50_ns": 3895.0, "ser_p75_ns": 4203.0, "ser_p95_ns": 4743.0, "ser_p99_ns": 5200.64, "ser_ci_low_ns": 3787.9910112359553, "ser_ci_high_ns": 4001.101966292135, "deser_mean_ns": 6694.168539325843, "deser_median_ns": 6660.0, "deser_std_ns": 728.3351850118538, "deser_mad_ns": 460.0, "deser_cv": 0.10880144124444215, "deser_min_ns": 5075.0, "deser_max_ns": 8329.0, "deser_p5_ns": 5381.8, "deser_p25_ns": 6277.0, "deser_p50_ns": 6660.0, "deser_p75_ns": 7212.0, "deser_p95_ns": 7873.0, "deser_p99_ns": 8200.52, "deser_ci_low_ns": 6545.287921348314, "deser_ci_high_ns": 6841.7685393258425, "total_mean_ns": 10588.314606741573, "total_median_ns": 10583.0, "total_std_ns": 1218.49225568757, "total_mad_ns": 762.0, "total_cv": 0.11507896213357287, "total_min_ns": 7726.0, "total_max_ns": 13637.0, "total_p5_ns": 8503.4, "total_p25_ns": 9844.0, "total_p50_ns": 10583.0, "total_p75_ns": 11375.0, "total_p95_ns": 12468.999999999998, "total_p99_ns": 13010.440000000002, "total_ci_low_ns": 10335.821348314606, "total_ci_high_ns": 10846.65, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.222797918614806}, {"serializer": "hessian", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "4.0.66", "avg_time_ser_ns": 3520.9438202247193, "avg_time_deser_ns": 3836.8314606741574, "avg_time_total_ns": 7357.775280898876, "median_size_bytes": 231.0, "avg_ops_per_sec": 135910.64714847246, "min_ops_per_sec": 111024.75852115022, "max_ops_per_sec": 192938.45263360988, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 3520.9438202247193, "ser_median_ns": 3493.0, "ser_std_ns": 411.1745747232876, "ser_mad_ns": 259.0, "ser_cv": 0.11677964651450899, "ser_min_ns": 2651.0, "ser_max_ns": 4565.0, "ser_p5_ns": 2849.4, "ser_p25_ns": 3258.0, "ser_p50_ns": 3493.0, "ser_p75_ns": 3757.0, "ser_p95_ns": 4302.999999999999, "ser_p99_ns": 4552.68, "ser_ci_low_ns": 3435.4308988764046, "ser_ci_high_ns": 3613.917415730337, "deser_mean_ns": 3836.8314606741574, "deser_median_ns": 3901.0, "deser_std_ns": 482.0387158148535, "deser_mad_ns": 274.0, "deser_cv": 0.12563458175203662, "deser_min_ns": 2532.0, "deser_max_ns": 4824.0, "deser_p5_ns": 2936.2000000000003, "deser_p25_ns": 3552.0, "deser_p50_ns": 3901.0, "deser_p75_ns": 4149.0, "deser_p95_ns": 4566.599999999999, "deser_p99_ns": 4686.720000000001, "deser_ci_low_ns": 3741.668820224719, "deser_ci_high_ns": 3931.9067415730333, "total_mean_ns": 7357.775280898876, "total_median_ns": 7444.0, "total_std_ns": 805.569050039798, "total_mad_ns": 504.0, "total_cv": 0.10948541091368913, "total_min_ns": 5183.0, "total_max_ns": 9007.0, "total_p5_ns": 5967.8, "total_p25_ns": 6826.0, "total_p50_ns": 7444.0, "total_p75_ns": 7925.0, "total_p95_ns": 8550.0, "total_p99_ns": 8974.44, "total_ci_low_ns": 7181.580337078652, "total_ci_high_ns": 7519.769101123595, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.415421150830581}, {"serializer": "msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "0.9.8", "avg_time_ser_ns": 4508.977011494253, "avg_time_deser_ns": 6534.850574712644, "avg_time_total_ns": 11043.827586206897, "median_size_bytes": 196.0, "avg_ops_per_sec": 90548.31689413029, "min_ops_per_sec": 69934.96048674732, "max_ops_per_sec": 144801.6217781639, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 4508.977011494253, "ser_median_ns": 4414.0, "ser_std_ns": 661.519656003763, "ser_mad_ns": 372.0, "ser_cv": 0.14671169409766818, "ser_min_ns": 2766.0, "ser_max_ns": 5822.0, "ser_p5_ns": 3365.3, "ser_p25_ns": 4134.5, "ser_p50_ns": 4414.0, "ser_p75_ns": 4932.5, "ser_p95_ns": 5530.4, "ser_p99_ns": 5803.94, "ser_ci_low_ns": 4372.930747126437, "ser_ci_high_ns": 4648.041954022989, "deser_mean_ns": 6534.850574712644, "deser_median_ns": 6554.0, "deser_std_ns": 910.3303965598583, "deser_mad_ns": 602.0, "deser_cv": 0.13930393452032194, "deser_min_ns": 4140.0, "deser_max_ns": 8477.0, "deser_p5_ns": 5060.5, "deser_p25_ns": 6003.0, "deser_p50_ns": 6554.0, "deser_p75_ns": 7192.5, "deser_p95_ns": 7907.2, "deser_p99_ns": 8351.44, "deser_ci_low_ns": 6342.372126436781, "deser_ci_high_ns": 6727.461206896552, "total_mean_ns": 11043.827586206897, "total_median_ns": 11074.0, "total_std_ns": 1521.3273672355729, "total_mad_ns": 925.0, "total_cv": 0.13775363254815956, "total_min_ns": 6906.0, "total_max_ns": 14299.0, "total_p5_ns": 8474.9, "total_p25_ns": 10172.0, "total_p50_ns": 11074.0, "total_p75_ns": 12166.5, "total_p95_ns": 13400.7, "total_p99_ns": 14091.74, "total_ci_low_ns": 10734.143965517242, "total_ci_high_ns": 11354.478448275862, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.316896098537503}, {"serializer": "moshi", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "1.15.2", "avg_time_ser_ns": 3726.1847826086955, "avg_time_deser_ns": 4840.163043478261, "avg_time_total_ns": 8566.347826086956, "median_size_bytes": 254.0, "avg_ops_per_sec": 116735.86227198441, "min_ops_per_sec": 92867.75631500743, "max_ops_per_sec": 170212.7659574468, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 3726.1847826086955, "ser_median_ns": 3785.0, "ser_std_ns": 441.2821212502463, "ser_mad_ns": 254.0, "ser_cv": 0.11842733170664323, "ser_min_ns": 2723.0, "ser_max_ns": 4664.0, "ser_p5_ns": 2892.75, "ser_p25_ns": 3482.25, "ser_p50_ns": 3785.0, "ser_p75_ns": 3978.75, "ser_p95_ns": 4391.8, "ser_p99_ns": 4636.7, "ser_ci_low_ns": 3635.6627717391307, "ser_ci_high_ns": 3819.424184782609, "deser_mean_ns": 4840.163043478261, "deser_median_ns": 4838.5, "deser_std_ns": 678.8223363542869, "deser_mad_ns": 463.5, "deser_cv": 0.14024782435148472, "deser_min_ns": 3152.0, "deser_max_ns": 6267.0, "deser_p5_ns": 3661.2, "deser_p25_ns": 4452.25, "deser_p50_ns": 4838.5, "deser_p75_ns": 5349.0, "deser_p95_ns": 5863.150000000001, "deser_p99_ns": 6233.33, "deser_ci_low_ns": 4695.520380434783, "deser_ci_high_ns": 4984.114673913044, "total_mean_ns": 8566.347826086956, "total_median_ns": 8616.0, "total_std_ns": 1087.9263815872212, "total_mad_ns": 716.0, "total_cv": 0.1270000242430242, "total_min_ns": 5875.0, "total_max_ns": 10768.0, "total_p5_ns": 6533.6, "total_p25_ns": 7859.25, "total_p50_ns": 8616.0, "total_p75_ns": 9288.5, "total_p95_ns": 10325.0, "total_p99_ns": 10703.39, "total_ci_low_ns": 8339.267391304347, "total_ci_high_ns": 8776.333967391303, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.59413943848202}, {"serializer": "jackson-smile", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 3502.6555555555556, "avg_time_deser_ns": 5232.777777777777, "avg_time_total_ns": 8735.433333333332, "median_size_bytes": 181.0, "avg_ops_per_sec": 114476.290052392, "min_ops_per_sec": 88526.91218130312, "max_ops_per_sec": 168833.3614722269, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 3502.6555555555556, "ser_median_ns": 3532.0, "ser_std_ns": 465.2326266276919, "ser_mad_ns": 283.5, "ser_cv": 0.1328228309203248, "ser_min_ns": 2433.0, "ser_max_ns": 4550.0, "ser_p5_ns": 2675.55, "ser_p25_ns": 3248.0, "ser_p50_ns": 3532.0, "ser_p75_ns": 3812.25, "ser_p95_ns": 4261.5, "ser_p99_ns": 4434.3, "ser_ci_low_ns": 3409.2655555555557, "ser_ci_high_ns": 3597.4569444444446, "deser_mean_ns": 5232.777777777777, "deser_median_ns": 5264.0, "deser_std_ns": 739.094690346492, "deser_mad_ns": 507.5, "deser_cv": 0.14124327875822124, "deser_min_ns": 3489.0, "deser_max_ns": 6876.0, "deser_p5_ns": 4054.6, "deser_p25_ns": 4790.75, "deser_p50_ns": 5264.0, "deser_p75_ns": 5782.75, "deser_p95_ns": 6487.349999999999, "deser_p99_ns": 6811.03, "deser_ci_low_ns": 5083.293055555556, "deser_ci_high_ns": 5383.2025, "total_mean_ns": 8735.433333333332, "total_median_ns": 8803.5, "total_std_ns": 1168.7523362952074, "total_mad_ns": 731.0, "total_cv": 0.13379443144914097, "total_min_ns": 5923.0, "total_max_ns": 11296.0, "total_p5_ns": 6871.2, "total_p25_ns": 7941.25, "total_p50_ns": 8803.5, "total_p75_ns": 9493.75, "total_p95_ns": 10576.9, "total_p99_ns": 11128.68, "total_ci_low_ns": 8492.241944444444, "total_ci_high_ns": 8981.468888888889, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.45567954465869}, {"serializer": "ion", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 9677.724137931034, "avg_time_deser_ns": 14607.206896551725, "avg_time_total_ns": 24284.931034482757, "median_size_bytes": 228.0, "avg_ops_per_sec": 41177.79863488498, "min_ops_per_sec": 33745.02260916515, "max_ops_per_sec": 52980.132450331126, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 9677.724137931034, "ser_median_ns": 9787.0, "ser_std_ns": 931.258759155375, "ser_mad_ns": 601.0, "ser_cv": 0.09622704118062053, "ser_min_ns": 7631.0, "ser_max_ns": 11792.0, "ser_p5_ns": 8062.3, "ser_p25_ns": 9146.5, "ser_p50_ns": 9787.0, "ser_p75_ns": 10245.0, "ser_p95_ns": 11099.5, "ser_p99_ns": 11665.58, "ser_ci_low_ns": 9471.008908045978, "ser_ci_high_ns": 9865.188793103449, "deser_mean_ns": 14607.206896551725, "deser_median_ns": 14680.0, "deser_std_ns": 1587.9444379736399, "deser_mad_ns": 1089.0, "deser_cv": 0.10870965607726832, "deser_min_ns": 11244.0, "deser_max_ns": 18048.0, "deser_p5_ns": 11906.1, "deser_p25_ns": 13578.5, "deser_p50_ns": 14680.0, "deser_p75_ns": 15651.5, "deser_p95_ns": 17012.3, "deser_p99_ns": 17870.84, "deser_ci_low_ns": 14279.295689655171, "deser_ci_high_ns": 14928.60172413793, "total_mean_ns": 24284.931034482757, "total_median_ns": 24302.0, "total_std_ns": 2436.0994929137228, "total_mad_ns": 1525.0, "total_cv": 0.10031321437374668, "total_min_ns": 18875.0, "total_max_ns": 29634.0, "total_p5_ns": 20252.3, "total_p25_ns": 22880.5, "total_p50_ns": 24302.0, "total_p75_ns": 26069.0, "total_p95_ns": 27945.0, "total_p99_ns": 29260.760000000002, "total_ci_low_ns": 23777.254022988505, "total_ci_high_ns": 24806.57011494253, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.350360184407375}, {"serializer": "jackson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 3974.2065217391305, "avg_time_deser_ns": 5777.336956521739, "avg_time_total_ns": 9751.54347826087, "median_size_bytes": 254.0, "avg_ops_per_sec": 102547.86867630765, "min_ops_per_sec": 76657.72326561902, "max_ops_per_sec": 151263.04643775526, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 3974.2065217391305, "ser_median_ns": 3902.5, "ser_std_ns": 532.7996249966397, "ser_mad_ns": 294.5, "ser_cv": 0.13406440306566764, "ser_min_ns": 2818.0, "ser_max_ns": 5475.0, "ser_p5_ns": 3009.5, "ser_p25_ns": 3663.25, "ser_p50_ns": 3902.5, "ser_p75_ns": 4350.0, "ser_p95_ns": 4847.150000000001, "ser_p99_ns": 5137.390000000001, "ser_ci_low_ns": 3863.4445652173913, "ser_ci_high_ns": 4082.063858695652, "deser_mean_ns": 5777.336956521739, "deser_median_ns": 5783.0, "deser_std_ns": 793.8132101981806, "deser_mad_ns": 552.5, "deser_cv": 0.1374012310814043, "deser_min_ns": 3793.0, "deser_max_ns": 7570.0, "deser_p5_ns": 4730.6, "deser_p25_ns": 5211.25, "deser_p50_ns": 5783.0, "deser_p75_ns": 6326.5, "deser_p95_ns": 7063.75, "deser_p99_ns": 7529.96, "deser_ci_low_ns": 5614.33125, "deser_ci_high_ns": 5937.447010869565, "total_mean_ns": 9751.54347826087, "total_median_ns": 9660.0, "total_std_ns": 1283.4700081517801, "total_mad_ns": 851.5, "total_cv": 0.13161711384592825, "total_min_ns": 6611.0, "total_max_ns": 13045.0, "total_p5_ns": 7811.35, "total_p25_ns": 8890.5, "total_p50_ns": 9660.0, "total_p75_ns": 10649.5, "total_p95_ns": 11856.9, "total_p99_ns": 12630.95, "total_ci_low_ns": 9493.781793478262, "total_ci_high_ns": 10021.033695652173, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.013182158199546}, {"serializer": "avro", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "1.12.0", "avg_time_ser_ns": 2733.7303370786517, "avg_time_deser_ns": 5415.0, "avg_time_total_ns": 8148.730337078651, "median_size_bytes": 105.0, "avg_ops_per_sec": 122718.50443372305, "min_ops_per_sec": 99088.38684106222, "max_ops_per_sec": 176803.3946251768, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 2733.7303370786517, "ser_median_ns": 2747.0, "ser_std_ns": 315.2775027309976, "ser_mad_ns": 194.0, "ser_cv": 0.1153286768832923, "ser_min_ns": 1974.0, "ser_max_ns": 3470.0, "ser_p5_ns": 2223.2, "ser_p25_ns": 2537.0, "ser_p50_ns": 2747.0, "ser_p75_ns": 2914.0, "ser_p95_ns": 3257.6, "ser_p99_ns": 3384.6400000000003, "ser_ci_low_ns": 2669.997752808989, "ser_ci_high_ns": 2796.6205056179774, "deser_mean_ns": 5415.0, "deser_median_ns": 5452.0, "deser_std_ns": 641.8238394677242, "deser_mad_ns": 412.0, "deser_cv": 0.11852702483245137, "deser_min_ns": 3682.0, "deser_max_ns": 7035.0, "deser_p5_ns": 4279.6, "deser_p25_ns": 5006.0, "deser_p50_ns": 5452.0, "deser_p75_ns": 5864.0, "deser_p95_ns": 6348.0, "deser_p99_ns": 6908.280000000001, "deser_ci_low_ns": 5282.638202247191, "deser_ci_high_ns": 5550.11095505618, "total_mean_ns": 8148.730337078651, "total_median_ns": 8222.0, "total_std_ns": 911.9233391330474, "total_mad_ns": 618.0, "total_cv": 0.11190986833661441, "total_min_ns": 5656.0, "total_max_ns": 10092.0, "total_p5_ns": 6480.2, "total_p25_ns": 7563.0, "total_p50_ns": 8222.0, "total_p75_ns": 8805.0, "total_p95_ns": 9564.8, "total_p99_ns": 10079.68, "total_ci_low_ns": 7955.025, "total_ci_high_ns": 8336.32893258427, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.970767395946031}, {"serializer": "fastjson2", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.0.57", "avg_time_ser_ns": 7557.965909090909, "avg_time_deser_ns": 6642.465909090909, "avg_time_total_ns": 14200.431818181818, "median_size_bytes": 254.0, "avg_ops_per_sec": 70420.39374602886, "min_ops_per_sec": 54791.51827297134, "max_ops_per_sec": 99950.02498750624, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 7557.965909090909, "ser_median_ns": 7273.5, "ser_std_ns": 1175.158638827396, "ser_mad_ns": 577.5, "ser_cv": 0.155486099429727, "ser_min_ns": 5224.0, "ser_max_ns": 10437.0, "ser_p5_ns": 5933.45, "ser_p25_ns": 6788.25, "ser_p50_ns": 7273.5, "ser_p75_ns": 8018.0, "ser_p95_ns": 9945.1, "ser_p99_ns": 10395.24, "ser_ci_low_ns": 7320.055113636364, "ser_ci_high_ns": 7804.202840909091, "deser_mean_ns": 6642.465909090909, "deser_median_ns": 6678.5, "deser_std_ns": 740.6719525898001, "deser_mad_ns": 438.5, "deser_cv": 0.11150557078149442, "deser_min_ns": 4781.0, "deser_max_ns": 8187.0, "deser_p5_ns": 5395.4, "deser_p25_ns": 6240.0, "deser_p50_ns": 6678.5, "deser_p75_ns": 7123.25, "deser_p95_ns": 7773.499999999999, "deser_p99_ns": 8036.489999999999, "deser_ci_low_ns": 6485.597159090909, "deser_ci_high_ns": 6798.509375, "total_mean_ns": 14200.431818181818, "total_median_ns": 14009.0, "total_std_ns": 1744.175613294272, "total_mad_ns": 1078.5, "total_cv": 0.12282553345040398, "total_min_ns": 10005.0, "total_max_ns": 18251.0, "total_p5_ns": 11613.4, "total_p25_ns": 13152.5, "total_p50_ns": 14009.0, "total_p75_ns": 15442.75, "total_p95_ns": 17336.8, "total_p99_ns": 17802.079999999998, "total_ci_low_ns": 13842.676420454547, "total_ci_high_ns": 14572.876420454546, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.942009022597256}, {"serializer": "jackson-cbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 3887.6444444444446, "avg_time_deser_ns": 5124.7, "avg_time_total_ns": 9012.344444444445, "median_size_bytes": 201.0, "avg_ops_per_sec": 110958.919309441, "min_ops_per_sec": 83381.97281747687, "max_ops_per_sec": 163105.52927744252, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 3887.6444444444446, "ser_median_ns": 3951.0, "ser_std_ns": 503.54697651069125, "ser_mad_ns": 287.5, "ser_cv": 0.12952495623160043, "ser_min_ns": 2699.0, "ser_max_ns": 5005.0, "ser_p5_ns": 3001.15, "ser_p25_ns": 3609.25, "ser_p50_ns": 3951.0, "ser_p75_ns": 4229.75, "ser_p95_ns": 4664.7, "ser_p99_ns": 4975.63, "ser_ci_low_ns": 3779.3419444444444, "ser_ci_high_ns": 3989.978888888889, "deser_mean_ns": 5124.7, "deser_median_ns": 5262.0, "deser_std_ns": 776.0900192487518, "deser_mad_ns": 523.0, "deser_cv": 0.1514410637205596, "deser_min_ns": 3272.0, "deser_max_ns": 6988.0, "deser_p5_ns": 3810.35, "deser_p25_ns": 4628.25, "deser_p50_ns": 5262.0, "deser_p75_ns": 5658.5, "deser_p95_ns": 6134.5, "deser_p99_ns": 6854.5, "deser_ci_low_ns": 4972.490277777778, "deser_ci_high_ns": 5283.702777777778, "total_mean_ns": 9012.344444444445, "total_median_ns": 9291.0, "total_std_ns": 1220.5186792167924, "total_mad_ns": 659.5, "total_cv": 0.13542743364288157, "total_min_ns": 6131.0, "total_max_ns": 11993.0, "total_p5_ns": 6811.5, "total_p25_ns": 8295.25, "total_p50_ns": 9291.0, "total_p75_ns": 9832.5, "total_p95_ns": 10763.65, "total_p99_ns": 11199.119999999999, "total_ci_low_ns": 8759.560000000001, "total_ci_high_ns": 9271.254444444443, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.539811912461649}, {"serializer": "jsoniter", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "0.9.23", "avg_time_ser_ns": 3969.6373626373625, "avg_time_deser_ns": 4844.450549450549, "avg_time_total_ns": 8814.087912087913, "median_size_bytes": 254.0, "avg_ops_per_sec": 113454.73405462284, "min_ops_per_sec": 91701.05456212747, "max_ops_per_sec": 155787.50584203147, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 3969.6373626373625, "ser_median_ns": 3993.0, "ser_std_ns": 442.813141340767, "ser_mad_ns": 310.0, "ser_cv": 0.11155002356350484, "ser_min_ns": 2744.0, "ser_max_ns": 4992.0, "ser_p5_ns": 3285.0, "ser_p25_ns": 3708.5, "ser_p50_ns": 3993.0, "ser_p75_ns": 4315.0, "ser_p95_ns": 4595.0, "ser_p99_ns": 4859.699999999999, "ser_ci_low_ns": 3885.457967032967, "ser_ci_high_ns": 4057.3590659340657, "deser_mean_ns": 4844.450549450549, "deser_median_ns": 4788.0, "deser_std_ns": 523.8520415311574, "deser_mad_ns": 364.0, "deser_cv": 0.10813445945703212, "deser_min_ns": 3550.0, "deser_max_ns": 6383.0, "deser_p5_ns": 4034.5, "deser_p25_ns": 4509.5, "deser_p50_ns": 4788.0, "deser_p75_ns": 5187.5, "deser_p95_ns": 5716.0, "deser_p99_ns": 5959.999999999997, "deser_ci_low_ns": 4739.71565934066, "deser_ci_high_ns": 4951.3164835164835, "total_mean_ns": 8814.087912087913, "total_median_ns": 8758.0, "total_std_ns": 931.6744382305757, "total_mad_ns": 603.0, "total_cv": 0.1057028756149401, "total_min_ns": 6419.0, "total_max_ns": 10905.0, "total_p5_ns": 7342.5, "total_p25_ns": 8239.5, "total_p50_ns": 8758.0, "total_p75_ns": 9401.0, "total_p95_ns": 10236.5, "total_p99_ns": 10820.4, "total_ci_low_ns": 8624.59478021978, "total_ci_high_ns": 9005.023351648351, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.729687008793912}, {"serializer": "bson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "5.3.1", "avg_time_ser_ns": 3873.8636363636365, "avg_time_deser_ns": 4852.102272727273, "avg_time_total_ns": 8725.96590909091, "median_size_bytes": 288.0, "avg_ops_per_sec": 114600.49356348932, "min_ops_per_sec": 91894.87226612755, "max_ops_per_sec": 162760.41666666666, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 3873.8636363636365, "ser_median_ns": 3874.5, "ser_std_ns": 485.8385376228387, "ser_mad_ns": 376.0, "ser_cv": 0.1254144655641238, "ser_min_ns": 2590.0, "ser_max_ns": 4908.0, "ser_p5_ns": 3129.55, "ser_p25_ns": 3515.0, "ser_p50_ns": 3874.5, "ser_p75_ns": 4297.5, "ser_p95_ns": 4611.099999999999, "ser_p99_ns": 4756.619999999999, "ser_ci_low_ns": 3770.7448863636364, "ser_ci_high_ns": 3970.994034090909, "deser_mean_ns": 4852.102272727273, "deser_median_ns": 4799.0, "deser_std_ns": 584.388786500801, "deser_mad_ns": 443.0, "deser_cv": 0.12044032744023908, "deser_min_ns": 3469.0, "deser_max_ns": 6381.0, "deser_p5_ns": 3920.75, "deser_p25_ns": 4443.25, "deser_p50_ns": 4799.0, "deser_p75_ns": 5270.5, "deser_p95_ns": 5830.049999999998, "deser_p99_ns": 6083.459999999998, "deser_ci_low_ns": 4731.650284090909, "deser_ci_high_ns": 4972.372443181818, "total_mean_ns": 8725.96590909091, "total_median_ns": 8765.0, "total_std_ns": 1003.0620183306487, "total_mad_ns": 775.5, "total_cv": 0.11495140237548211, "total_min_ns": 6144.0, "total_max_ns": 10882.0, "total_p5_ns": 7353.7, "total_p25_ns": 7985.75, "total_p50_ns": 8765.0, "total_p75_ns": 9498.25, "total_p95_ns": 10345.4, "total_p99_ns": 10667.98, "total_ci_low_ns": 8514.678693181819, "total_ci_high_ns": 8928.086931818181, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.244664033818192}, {"serializer": "java-serialization", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "21.0.11", "avg_time_ser_ns": 6452.898876404494, "avg_time_deser_ns": 22912.224719101123, "avg_time_total_ns": 29365.123595505618, "median_size_bytes": 423.0, "avg_ops_per_sec": 34054.00276105263, "min_ops_per_sec": 25965.93269630245, "max_ops_per_sec": 50955.41401273885, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 6452.898876404494, "ser_median_ns": 6403.0, "ser_std_ns": 837.837951419982, "ser_mad_ns": 550.0, "ser_cv": 0.1298390022015685, "ser_min_ns": 4480.0, "ser_max_ns": 8377.0, "ser_p5_ns": 5249.4, "ser_p25_ns": 5864.0, "ser_p50_ns": 6403.0, "ser_p75_ns": 6955.0, "ser_p95_ns": 7903.799999999999, "ser_p99_ns": 8335.64, "ser_ci_low_ns": 6281.062359550562, "ser_ci_high_ns": 6629.476123595506, "deser_mean_ns": 22912.224719101123, "deser_median_ns": 22781.0, "deser_std_ns": 2944.442973840758, "deser_mad_ns": 1741.0, "deser_cv": 0.12850969340336815, "deser_min_ns": 15130.0, "deser_max_ns": 30435.0, "deser_p5_ns": 17928.2, "deser_p25_ns": 21169.0, "deser_p50_ns": 22781.0, "deser_p75_ns": 24627.0, "deser_p95_ns": 27726.8, "deser_p99_ns": 29614.840000000004, "deser_ci_low_ns": 22296.82191011236, "deser_ci_high_ns": 23566.155898876405, "total_mean_ns": 29365.123595505618, "total_median_ns": 29083.0, "total_std_ns": 3728.067790486065, "total_mad_ns": 2512.0, "total_cv": 0.12695563083060382, "total_min_ns": 19625.0, "total_max_ns": 38512.0, "total_p5_ns": 23278.6, "total_p25_ns": 26955.0, "total_p50_ns": 29083.0, "total_p75_ns": 31607.0, "total_p95_ns": 35682.6, "total_p99_ns": 37955.840000000004, "total_ci_low_ns": 28588.70337078652, "total_ci_high_ns": 30156.176685393257, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.280869945599457}, {"serializer": "fory", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "1.3.0", "avg_time_ser_ns": 5879.310344827586, "avg_time_deser_ns": 4729.183908045977, "avg_time_total_ns": 10608.494252873563, "median_size_bytes": 209.0, "avg_ops_per_sec": 94264.08462531111, "min_ops_per_sec": 77700.0777000777, "max_ops_per_sec": 143184.421534937, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 5879.310344827586, "ser_median_ns": 5965.0, "ser_std_ns": 828.026503765581, "ser_mad_ns": 474.0, "ser_cv": 0.1408373525466384, "ser_min_ns": 3663.0, "ser_max_ns": 7828.0, "ser_p5_ns": 4161.6, "ser_p25_ns": 5509.0, "ser_p50_ns": 5965.0, "ser_p75_ns": 6445.0, "ser_p95_ns": 6947.0, "ser_p99_ns": 7328.34, "ser_ci_low_ns": 5701.460632183907, "ser_ci_high_ns": 6048.160632183908, "deser_mean_ns": 4729.183908045977, "deser_median_ns": 4849.0, "deser_std_ns": 594.6803426804994, "deser_mad_ns": 356.0, "deser_cv": 0.12574692679401672, "deser_min_ns": 3154.0, "deser_max_ns": 6243.0, "deser_p5_ns": 3564.9, "deser_p25_ns": 4447.0, "deser_p50_ns": 4849.0, "deser_p75_ns": 5189.0, "deser_p95_ns": 5486.400000000001, "deser_p99_ns": 5790.64, "deser_ci_low_ns": 4604.512356321839, "deser_ci_high_ns": 4852.930459770115, "total_mean_ns": 10608.494252873563, "total_median_ns": 10792.0, "total_std_ns": 1386.0401171545996, "total_mad_ns": 753.0, "total_cv": 0.13065380289753728, "total_min_ns": 6984.0, "total_max_ns": 12870.0, "total_p5_ns": 7731.0, "total_p25_ns": 9996.5, "total_p50_ns": 10792.0, "total_p75_ns": 11509.0, "total_p95_ns": 12567.2, "total_p99_ns": 12835.6, "total_ci_low_ns": 10318.000287356323, "total_ci_high_ns": 10892.672701149424, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.473101118932708}, {"serializer": "gson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "2.12.1", "avg_time_ser_ns": 7950.617021276596, "avg_time_deser_ns": 6028.776595744681, "avg_time_total_ns": 13979.393617021276, "median_size_bytes": 254.0, "avg_ops_per_sec": 71533.86100970805, "min_ops_per_sec": 54327.15814635737, "max_ops_per_sec": 99621.43853357242, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 7950.617021276596, "ser_median_ns": 8106.5, "ser_std_ns": 996.3739323368983, "ser_mad_ns": 664.5, "ser_cv": 0.12532032792807254, "ser_min_ns": 5613.0, "ser_max_ns": 10430.0, "ser_p5_ns": 6191.3, "ser_p25_ns": 7263.0, "ser_p50_ns": 8106.5, "ser_p75_ns": 8615.25, "ser_p95_ns": 9342.8, "ser_p99_ns": 9627.409999999994, "ser_ci_low_ns": 7750.0409574468085, "ser_ci_high_ns": 8145.943617021277, "deser_mean_ns": 6028.776595744681, "deser_median_ns": 5964.5, "deser_std_ns": 778.5377271299255, "deser_mad_ns": 593.5, "deser_cv": 0.12913693429599704, "deser_min_ns": 4364.0, "deser_max_ns": 7977.0, "deser_p5_ns": 4871.0, "deser_p25_ns": 5516.5, "deser_p50_ns": 5964.5, "deser_p75_ns": 6615.75, "deser_p95_ns": 7233.3, "deser_p99_ns": 7810.529999999999, "deser_ci_low_ns": 5872.116223404256, "deser_ci_high_ns": 6178.224734042553, "total_mean_ns": 13979.393617021276, "total_median_ns": 14172.5, "total_std_ns": 1682.9468344843085, "total_mad_ns": 1151.5, "total_cv": 0.12038768494472868, "total_min_ns": 10038.0, "total_max_ns": 18407.0, "total_p5_ns": 11192.05, "total_p25_ns": 12917.5, "total_p50_ns": 14172.5, "total_p75_ns": 15231.5, "total_p95_ns": 16413.55, "total_p99_ns": 16850.17999999999, "total_ci_low_ns": 13649.301329787235, "total_ci_high_ns": 14315.881914893618, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.9350950774079605}, {"serializer": "protostuff", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "java", "serializer_version": "1.8.0", "avg_time_ser_ns": 1935.6233766233765, "avg_time_deser_ns": 1810.4675324675325, "avg_time_total_ns": 3746.090909090909, "median_size_bytes": 123.0, "avg_ops_per_sec": 266944.9365399083, "min_ops_per_sec": 203210.729526519, "max_ops_per_sec": 387596.8992248062, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 1935.6233766233765, "ser_median_ns": 1939.0, "ser_std_ns": 229.52336419088368, "ser_mad_ns": 139.0, "ser_cv": 0.11857852460496665, "ser_min_ns": 1376.0, "ser_max_ns": 2596.0, "ser_p5_ns": 1500.8, "ser_p25_ns": 1803.0, "ser_p50_ns": 1939.0, "ser_p75_ns": 2082.0, "ser_p95_ns": 2228.8, "ser_p99_ns": 2519.2399999999993, "ser_ci_low_ns": 1885.987012987013, "ser_ci_high_ns": 1990.3396103896105, "deser_mean_ns": 1810.4675324675325, "deser_median_ns": 1794.0, "deser_std_ns": 265.5617969718846, "deser_mad_ns": 177.0, "deser_cv": 0.14668133628993812, "deser_min_ns": 1204.0, "deser_max_ns": 2429.0, "deser_p5_ns": 1429.0, "deser_p25_ns": 1636.0, "deser_p50_ns": 1794.0, "deser_p75_ns": 2003.0, "deser_p95_ns": 2266.8, "deser_p99_ns": 2349.9599999999996, "deser_ci_low_ns": 1753.810064935065, "deser_ci_high_ns": 1869.6652597402597, "total_mean_ns": 3746.090909090909, "total_median_ns": 3787.0, "total_std_ns": 446.8022399527494, "total_mad_ns": 272.0, "total_cv": 0.11927159559007555, "total_min_ns": 2580.0, "total_max_ns": 4921.0, "total_p5_ns": 2927.6, "total_p25_ns": 3477.0, "total_p50_ns": 3787.0, "total_p75_ns": 4011.0, "total_p95_ns": 4492.400000000001, "total_p99_ns": 4749.999999999999, "total_ci_low_ns": 3647.4376623376625, "total_ci_high_ns": 3844.118506493506, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "protostuff", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "kryo", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "5.6.2", "avg_time_ser_ns": 80194.82291666667, "avg_time_deser_ns": 66546.07291666667, "avg_time_total_ns": 146740.89583333334, "median_size_bytes": 11051.0, "avg_ops_per_sec": 6814.732827689622, "min_ops_per_sec": 6011.53011476011, "max_ops_per_sec": 7764.1559974223, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 80194.82291666667, "ser_median_ns": 80367.0, "ser_std_ns": 5587.836289646499, "ser_mad_ns": 3935.5, "ser_cv": 0.06967826708032039, "ser_min_ns": 69893.0, "ser_max_ns": 95708.0, "ser_p5_ns": 72118.5, "ser_p25_ns": 76000.75, "ser_p50_ns": 80367.0, "ser_p75_ns": 83729.0, "ser_p95_ns": 88726.5, "ser_p99_ns": 92062.84999999999, "ser_ci_low_ns": 79109.7671875, "ser_ci_high_ns": 81371.81119791666, "deser_mean_ns": 66546.07291666667, "deser_median_ns": 67428.5, "deser_std_ns": 4493.24356232963, "deser_mad_ns": 3429.5, "deser_cv": 0.06752079221799252, "deser_min_ns": 57809.0, "deser_max_ns": 77966.0, "deser_p5_ns": 59877.5, "deser_p25_ns": 62904.25, "deser_p50_ns": 67428.5, "deser_p75_ns": 69448.5, "deser_p95_ns": 73521.75, "deser_p99_ns": 76921.0, "deser_ci_low_ns": 65635.21145833333, "deser_ci_high_ns": 67394.73776041667, "total_mean_ns": 146740.89583333334, "total_median_ns": 148420.5, "total_std_ns": 9346.953155670475, "total_mad_ns": 7108.5, "total_cv": 0.06369698850882469, "total_min_ns": 128797.0, "total_max_ns": 166347.0, "total_p5_ns": 131683.5, "total_p25_ns": 138508.0, "total_p50_ns": 148420.5, "total_p75_ns": 154091.0, "total_p95_ns": 161201.0, "total_p99_ns": 164821.3, "total_ci_low_ns": 144910.79765624998, "total_ci_high_ns": 148583.09557291667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.6899439851939855}, {"serializer": "msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "0.9.8", "avg_time_ser_ns": 115580.14583333333, "avg_time_deser_ns": 143426.01041666666, "avg_time_total_ns": 259006.15625, "median_size_bytes": 19548.0, "avg_ops_per_sec": 3860.912089806746, "min_ops_per_sec": 3378.6523231613373, "max_ops_per_sec": 4428.894105141946, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 115580.14583333333, "ser_median_ns": 115323.5, "ser_std_ns": 7320.583291369425, "ser_mad_ns": 5167.0, "ser_cv": 0.06333772326196674, "ser_min_ns": 100366.0, "ser_max_ns": 136014.0, "ser_p5_ns": 104491.75, "ser_p25_ns": 110314.0, "ser_p50_ns": 115323.5, "ser_p75_ns": 120641.25, "ser_p95_ns": 127496.5, "ser_p99_ns": 134163.4, "ser_ci_low_ns": 114085.44114583333, "ser_ci_high_ns": 117012.41744791667, "deser_mean_ns": 143426.01041666666, "deser_median_ns": 143258.0, "deser_std_ns": 9033.387131250838, "deser_mad_ns": 6474.0, "deser_cv": 0.06298290738902909, "deser_min_ns": 125424.0, "deser_max_ns": 169044.0, "deser_p5_ns": 129534.5, "deser_p25_ns": 136790.0, "deser_p50_ns": 143258.0, "deser_p75_ns": 149375.5, "deser_p95_ns": 158023.5, "deser_p99_ns": 165168.94999999998, "deser_ci_low_ns": 141713.84375, "deser_ci_high_ns": 145166.54739583333, "total_mean_ns": 259006.15625, "total_median_ns": 258292.0, "total_std_ns": 14953.722689704799, "total_mad_ns": 11329.0, "total_cv": 0.0577350087202987, "total_min_ns": 225790.0, "total_max_ns": 295976.0, "total_p5_ns": 235915.0, "total_p25_ns": 247406.75, "total_p50_ns": 258292.0, "total_p75_ns": 269769.5, "total_p95_ns": 279938.75, "total_p99_ns": 294215.65, "total_ci_low_ns": 256094.3932291667, "total_ci_high_ns": 262075.52838541666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.46283119953132}, {"serializer": "fastjson2", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.0.57", "avg_time_ser_ns": 56607.290322580644, "avg_time_deser_ns": 63624.05376344086, "avg_time_total_ns": 120231.3440860215, "median_size_bytes": 25446.0, "avg_ops_per_sec": 8317.298684480591, "min_ops_per_sec": 6077.918920561599, "max_ops_per_sec": 11599.716966906008, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 56607.290322580644, "ser_median_ns": 57132.0, "ser_std_ns": 10507.061185305489, "ser_mad_ns": 8655.0, "ser_cv": 0.18561321563760177, "ser_min_ns": 36990.0, "ser_max_ns": 85789.0, "ser_p5_ns": 39424.8, "ser_p25_ns": 48303.0, "ser_p50_ns": 57132.0, "ser_p75_ns": 65645.0, "ser_p95_ns": 71992.8, "ser_p99_ns": 82998.64, "ser_ci_low_ns": 54516.13494623656, "ser_ci_high_ns": 58772.23225806452, "deser_mean_ns": 63624.05376344086, "deser_median_ns": 63250.0, "deser_std_ns": 9253.863223077478, "deser_mad_ns": 8068.0, "deser_cv": 0.14544598584497706, "deser_min_ns": 48006.0, "deser_max_ns": 87765.0, "deser_p5_ns": 50125.2, "deser_p25_ns": 55495.0, "deser_p50_ns": 63250.0, "deser_p75_ns": 71567.0, "deser_p95_ns": 78307.4, "deser_p99_ns": 79462.91999999998, "deser_ci_low_ns": 61789.85967741936, "deser_ci_high_ns": 65460.05752688172, "total_mean_ns": 120231.3440860215, "total_median_ns": 121647.0, "total_std_ns": 18740.664202473807, "total_mad_ns": 16584.0, "total_cv": 0.1558717017175279, "total_min_ns": 86209.0, "total_max_ns": 164530.0, "total_p5_ns": 90613.4, "total_p25_ns": 103711.0, "total_p50_ns": 121647.0, "total_p75_ns": 137328.0, "total_p95_ns": 147164.8, "total_p99_ns": 151739.24, "total_ci_low_ns": 116437.8123655914, "total_ci_high_ns": 123769.96290322581, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.9839853580416381, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.9611793338691452}, {"serializer": "java-serialization", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "21.0.11", "avg_time_ser_ns": 157261.1030927835, "avg_time_deser_ns": 220113.90721649484, "avg_time_total_ns": 377375.0103092783, "median_size_bytes": 17611.0, "avg_ops_per_sec": 2649.883995181473, "min_ops_per_sec": 2308.0296351005145, "max_ops_per_sec": 3057.5710044426505, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 157261.1030927835, "ser_median_ns": 158071.0, "ser_std_ns": 9078.278344355525, "ser_mad_ns": 7019.0, "ser_cv": 0.05772742379276948, "ser_min_ns": 137798.0, "ser_max_ns": 180422.0, "ser_p5_ns": 144074.2, "ser_p25_ns": 149013.0, "ser_p50_ns": 158071.0, "ser_p75_ns": 162838.0, "ser_p95_ns": 174352.6, "ser_p99_ns": 175707.43999999997, "ser_ci_low_ns": 155505.8719072165, "ser_ci_high_ns": 159031.31443298966, "deser_mean_ns": 220113.90721649484, "deser_median_ns": 221413.0, "deser_std_ns": 17553.977688524566, "deser_mad_ns": 12720.0, "deser_cv": 0.0797495165594385, "deser_min_ns": 188897.0, "deser_max_ns": 257874.0, "deser_p5_ns": 193348.4, "deser_p25_ns": 205617.0, "deser_p50_ns": 221413.0, "deser_p75_ns": 232169.0, "deser_p95_ns": 247798.79999999996, "deser_p99_ns": 256421.52, "deser_ci_low_ns": 216643.98659793814, "deser_ci_high_ns": 223491.23608247424, "total_mean_ns": 377375.0103092783, "total_median_ns": 377269.0, "total_std_ns": 25549.284665660914, "total_mad_ns": 19480.0, "total_cv": 0.06770264052387029, "total_min_ns": 327057.0, "total_max_ns": 433270.0, "total_p5_ns": 340047.8, "total_p25_ns": 355450.0, "total_p50_ns": 377269.0, "total_p75_ns": 393306.0, "total_p95_ns": 423351.8, "total_p99_ns": 430694.32, "total_ci_low_ns": 372237.8201030928, "total_ci_high_ns": 382327.162371134, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.017461404281194}, {"serializer": "protostuff", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "1.8.0", "avg_time_ser_ns": 50440.44086021505, "avg_time_deser_ns": 48647.69892473118, "avg_time_total_ns": 99088.13978494624, "median_size_bytes": 12346.0, "avg_ops_per_sec": 10092.025162348673, "min_ops_per_sec": 8360.22539167656, "max_ops_per_sec": 11701.380762930026, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 50440.44086021505, "ser_median_ns": 49972.0, "ser_std_ns": 5333.806328020735, "ser_mad_ns": 4555.0, "ser_cv": 0.10574464134447684, "ser_min_ns": 41661.0, "ser_max_ns": 68143.0, "ser_p5_ns": 43200.6, "ser_p25_ns": 45948.0, "ser_p50_ns": 49972.0, "ser_p75_ns": 54618.0, "ser_p95_ns": 58065.2, "ser_p99_ns": 63550.35999999999, "ser_ci_low_ns": 49362.85698924732, "ser_ci_high_ns": 51538.86397849462, "deser_mean_ns": 48647.69892473118, "deser_median_ns": 48339.0, "deser_std_ns": 3135.7720420452674, "deser_mad_ns": 1969.0, "deser_cv": 0.06445879479103431, "deser_min_ns": 43144.0, "deser_max_ns": 56714.0, "deser_p5_ns": 44092.0, "deser_p25_ns": 46407.0, "deser_p50_ns": 48339.0, "deser_p75_ns": 50857.0, "deser_p95_ns": 54130.59999999999, "deser_p99_ns": 56599.92, "deser_ci_low_ns": 48020.716397849465, "deser_ci_high_ns": 49317.631451612906, "total_mean_ns": 99088.13978494624, "total_median_ns": 99206.0, "total_std_ns": 7035.336685171937, "total_mad_ns": 5116.0, "total_cv": 0.07100079485234988, "total_min_ns": 85460.0, "total_max_ns": 119614.0, "total_p5_ns": 87978.6, "total_p25_ns": 94090.0, "total_p50_ns": 99206.0, "total_p75_ns": 103989.0, "total_p95_ns": 109788.79999999999, "total_p99_ns": 115836.48, "total_ci_low_ns": 97711.29838709677, "total_ci_high_ns": 100557.57177419355, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.9615648592999314, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.5691318325489156}, {"serializer": "hessian", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "4.0.66", "avg_time_ser_ns": 55712.17525773196, "avg_time_deser_ns": 59248.845360824744, "avg_time_total_ns": 114961.02061855671, "median_size_bytes": 11267.0, "avg_ops_per_sec": 8698.60057452015, "min_ops_per_sec": 7376.426416458283, "max_ops_per_sec": 10354.53943008615, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 55712.17525773196, "ser_median_ns": 55384.0, "ser_std_ns": 4322.910810462642, "ser_mad_ns": 2983.0, "ser_cv": 0.07759364610095154, "ser_min_ns": 47297.0, "ser_max_ns": 65715.0, "ser_p5_ns": 49666.6, "ser_p25_ns": 52472.0, "ser_p50_ns": 55384.0, "ser_p75_ns": 58367.0, "ser_p95_ns": 63644.399999999994, "ser_p99_ns": 65564.28, "ser_ci_low_ns": 54858.60979381443, "ser_ci_high_ns": 56583.09020618557, "deser_mean_ns": 59248.845360824744, "deser_median_ns": 59412.0, "deser_std_ns": 4475.120501962783, "deser_mad_ns": 3438.0, "deser_cv": 0.07553093186389294, "deser_min_ns": 49279.0, "deser_max_ns": 72918.0, "deser_p5_ns": 52609.2, "deser_p25_ns": 55974.0, "deser_p50_ns": 59412.0, "deser_p75_ns": 62634.0, "deser_p95_ns": 66508.0, "deser_p99_ns": 67904.87999999996, "deser_ci_low_ns": 58380.96108247423, "deser_ci_high_ns": 60121.87087628866, "total_mean_ns": 114961.02061855671, "total_median_ns": 114826.0, "total_std_ns": 8226.731376762207, "total_mad_ns": 6601.0, "total_cv": 0.07156105028032667, "total_min_ns": 96576.0, "total_max_ns": 135567.0, "total_p5_ns": 103013.6, "total_p25_ns": 108283.0, "total_p50_ns": 114826.0, "total_p75_ns": 121427.0, "total_p95_ns": 127740.79999999997, "total_p99_ns": 133151.63999999998, "total_ci_low_ns": 113381.0956185567, "total_ci_high_ns": 116602.16675257732, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.97817511422078}, {"serializer": "jackson-cbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 59270.06593406593, "avg_time_deser_ns": 109447.83516483517, "avg_time_total_ns": 168717.9010989011, "median_size_bytes": 20047.0, "avg_ops_per_sec": 5927.053344587353, "min_ops_per_sec": 5110.541001870458, "max_ops_per_sec": 6653.53702027998, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 59270.06593406593, "ser_median_ns": 58507.0, "ser_std_ns": 4925.050169630983, "ser_mad_ns": 3774.0, "ser_cv": 0.0830950681767383, "ser_min_ns": 51665.0, "ser_max_ns": 72005.0, "ser_p5_ns": 52752.0, "ser_p25_ns": 55063.5, "ser_p50_ns": 58507.0, "ser_p75_ns": 62947.5, "ser_p95_ns": 67527.5, "ser_p99_ns": 71643.2, "ser_ci_low_ns": 58288.91758241758, "ser_ci_high_ns": 60260.48379120879, "deser_mean_ns": 109447.83516483517, "deser_median_ns": 108471.0, "deser_std_ns": 6681.5144994126, "deser_mad_ns": 4963.0, "deser_cv": 0.061047479736349546, "deser_min_ns": 98346.0, "deser_max_ns": 124758.0, "deser_p5_ns": 99679.5, "deser_p25_ns": 104000.5, "deser_p50_ns": 108471.0, "deser_p75_ns": 114313.0, "deser_p95_ns": 120974.5, "deser_p99_ns": 123777.9, "deser_ci_low_ns": 108115.00329670329, "deser_ci_high_ns": 110812.71098901099, "total_mean_ns": 168717.9010989011, "total_median_ns": 167087.0, "total_std_ns": 10988.505696666196, "total_mad_ns": 8661.0, "total_cv": 0.06512945944144256, "total_min_ns": 150296.0, "total_max_ns": 195674.0, "total_p5_ns": 152370.5, "total_p25_ns": 160217.0, "total_p50_ns": 167087.0, "total_p75_ns": 177405.0, "total_p95_ns": 187177.0, "total_p99_ns": 193239.49999999997, "total_ci_low_ns": 166418.6989010989, "total_ci_high_ns": 170966.97637362636, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.119054999173986}, {"serializer": "bson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "5.3.1", "avg_time_ser_ns": 154365.03125, "avg_time_deser_ns": 160453.22916666666, "avg_time_total_ns": 314818.2604166667, "median_size_bytes": 29152.0, "avg_ops_per_sec": 3176.435822612338, "min_ops_per_sec": 2743.0101244503694, "max_ops_per_sec": 3740.848948260318, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 154365.03125, "ser_median_ns": 153751.0, "ser_std_ns": 14226.12997450975, "ser_mad_ns": 10201.0, "ser_cv": 0.09215901982016896, "ser_min_ns": 126191.0, "ser_max_ns": 192970.0, "ser_p5_ns": 133260.25, "ser_p25_ns": 143573.5, "ser_p50_ns": 153751.0, "ser_p75_ns": 163913.0, "ser_p95_ns": 177931.25, "ser_p99_ns": 186583.15, "ser_ci_low_ns": 151610.29973958334, "ser_ci_high_ns": 157167.04453125, "deser_mean_ns": 160453.22916666666, "deser_median_ns": 162542.0, "deser_std_ns": 14164.558670353172, "deser_mad_ns": 11028.5, "deser_cv": 0.08827842695294154, "deser_min_ns": 131817.0, "deser_max_ns": 198218.0, "deser_p5_ns": 136983.5, "deser_p25_ns": 149050.5, "deser_p50_ns": 162542.0, "deser_p75_ns": 169770.75, "deser_p95_ns": 182159.0, "deser_p99_ns": 188317.09999999998, "deser_ci_low_ns": 157735.78697916667, "deser_ci_high_ns": 163292.1765625, "total_mean_ns": 314818.2604166667, "total_median_ns": 319122.0, "total_std_ns": 25662.449774040542, "total_mad_ns": 19633.0, "total_cv": 0.08151512475825229, "total_min_ns": 267319.0, "total_max_ns": 364563.0, "total_p5_ns": 272323.25, "total_p25_ns": 292857.75, "total_p50_ns": 319122.0, "total_p75_ns": 333578.5, "total_p95_ns": 354589.5, "total_p99_ns": 363822.0, "total_ci_low_ns": 309763.70703125, "total_ci_high_ns": 319648.5645833333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.906944213287112}, {"serializer": "jackson-smile", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 55021.17204301075, "avg_time_deser_ns": 82343.50537634408, "avg_time_total_ns": 137364.67741935485, "median_size_bytes": 12998.0, "avg_ops_per_sec": 7279.891881863793, "min_ops_per_sec": 6227.8909869961635, "max_ops_per_sec": 8466.540232999187, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 55021.17204301075, "ser_median_ns": 55235.0, "ser_std_ns": 4474.735383538135, "ser_mad_ns": 3545.0, "ser_cv": 0.0813275184330893, "ser_min_ns": 46660.0, "ser_max_ns": 64651.0, "ser_p5_ns": 48692.0, "ser_p25_ns": 51506.0, "ser_p50_ns": 55235.0, "ser_p75_ns": 57899.0, "ser_p95_ns": 62992.2, "ser_p99_ns": 64605.0, "ser_ci_low_ns": 54174.099731182796, "ser_ci_high_ns": 55955.701075268815, "deser_mean_ns": 82343.50537634408, "deser_median_ns": 82382.0, "deser_std_ns": 5913.003955218303, "deser_mad_ns": 4560.0, "deser_cv": 0.07180899001315787, "deser_min_ns": 70998.0, "deser_max_ns": 98989.0, "deser_p5_ns": 73589.4, "deser_p25_ns": 77752.0, "deser_p50_ns": 82382.0, "deser_p75_ns": 86193.0, "deser_p95_ns": 91820.4, "deser_p99_ns": 93321.79999999999, "deser_ci_low_ns": 81153.6943548387, "deser_ci_high_ns": 83521.36908602151, "total_mean_ns": 137364.67741935485, "total_median_ns": 138034.0, "total_std_ns": 9826.6087853795, "total_mad_ns": 7470.0, "total_cv": 0.07153664952293565, "total_min_ns": 118112.0, "total_max_ns": 160568.0, "total_p5_ns": 122800.2, "total_p25_ns": 129211.0, "total_p50_ns": 138034.0, "total_p75_ns": 144092.0, "total_p95_ns": 153995.4, "total_p99_ns": 156829.12, "total_ci_low_ns": 135479.2935483871, "total_ci_high_ns": 139292.7424731183, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.7188060297522565}, {"serializer": "avro", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "1.12.0", "avg_time_ser_ns": 60243.4, "avg_time_deser_ns": 105246.30526315789, "avg_time_total_ns": 165489.7052631579, "median_size_bytes": 10448.0, "avg_ops_per_sec": 6042.671949954973, "min_ops_per_sec": 5405.142452529336, "max_ops_per_sec": 6907.747038303457, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 60243.4, "ser_median_ns": 60007.0, "ser_std_ns": 4599.387196462017, "ser_mad_ns": 3082.0, "ser_cv": 0.07634673999910391, "ser_min_ns": 51906.0, "ser_max_ns": 73551.0, "ser_p5_ns": 53880.5, "ser_p25_ns": 56838.5, "ser_p50_ns": 60007.0, "ser_p75_ns": 63019.0, "ser_p95_ns": 67912.1, "ser_p99_ns": 72925.90000000001, "ser_ci_low_ns": 59345.742894736846, "ser_ci_high_ns": 61197.23552631579, "deser_mean_ns": 105246.30526315789, "deser_median_ns": 104826.0, "deser_std_ns": 6849.369272210372, "deser_mad_ns": 5442.0, "deser_cv": 0.06507942730230964, "deser_min_ns": 91847.0, "deser_max_ns": 121358.0, "deser_p5_ns": 95981.6, "deser_p25_ns": 99938.0, "deser_p50_ns": 104826.0, "deser_p75_ns": 110669.0, "deser_p95_ns": 116749.7, "deser_p99_ns": 119914.16, "deser_ci_low_ns": 103827.95368421053, "deser_ci_high_ns": 106613.65131578948, "total_mean_ns": 165489.7052631579, "total_median_ns": 163332.0, "total_std_ns": 10653.760915076437, "total_mad_ns": 8897.0, "total_cv": 0.06437718224305901, "total_min_ns": 144765.0, "total_max_ns": 185009.0, "total_p5_ns": 150198.0, "total_p25_ns": 156083.5, "total_p50_ns": 163332.0, "total_p75_ns": 173719.5, "total_p95_ns": 183141.0, "total_p99_ns": 184413.98, "total_ci_low_ns": 163406.59368421053, "total_ci_high_ns": 167532.72815789474, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.962497629602644}, {"serializer": "fory", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "1.3.0", "avg_time_ser_ns": 35272.34042553192, "avg_time_deser_ns": 37736.98936170213, "avg_time_total_ns": 73009.32978723405, "median_size_bytes": 12334.0, "avg_ops_per_sec": 13696.879603116884, "min_ops_per_sec": 10526.869835254487, "max_ops_per_sec": 19850.328522937056, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 35272.34042553192, "ser_median_ns": 35476.5, "ser_std_ns": 7021.380827271372, "ser_mad_ns": 4850.0, "ser_cv": 0.1990619488971857, "ser_min_ns": 24363.0, "ser_max_ns": 53835.0, "ser_p5_ns": 26190.85, "ser_p25_ns": 28424.25, "ser_p50_ns": 35476.5, "ser_p75_ns": 38842.0, "ser_p95_ns": 50766.85, "ser_p99_ns": 52930.10999999999, "ser_ci_low_ns": 33891.540425531915, "ser_ci_high_ns": 36614.24441489361, "deser_mean_ns": 37736.98936170213, "deser_median_ns": 39582.0, "deser_std_ns": 6512.612269264775, "deser_mad_ns": 4080.5, "deser_cv": 0.1725790101283009, "deser_min_ns": 26014.0, "deser_max_ns": 51555.0, "deser_p5_ns": 26939.6, "deser_p25_ns": 32219.0, "deser_p50_ns": 39582.0, "deser_p75_ns": 42310.25, "deser_p95_ns": 46959.7, "deser_p99_ns": 48601.31999999998, "deser_ci_low_ns": 36483.79760638298, "deser_ci_high_ns": 38971.16063829787, "total_mean_ns": 73009.32978723405, "total_median_ns": 76208.0, "total_std_ns": 12423.608265352346, "total_mad_ns": 9521.5, "total_cv": 0.1701646666468189, "total_min_ns": 50377.0, "total_max_ns": 94995.0, "total_p5_ns": 53130.45, "total_p25_ns": 60616.75, "total_p50_ns": 76208.0, "total_p75_ns": 82392.75, "total_p95_ns": 90098.35, "total_p99_ns": 94925.25, "total_ci_low_ns": 70418.94521276596, "total_ci_high_ns": 75492.78670212765, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "protobuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "4.28.3", "avg_time_ser_ns": 50770.604166666664, "avg_time_deser_ns": 87270.78125, "avg_time_total_ns": 138041.38541666666, "median_size_bytes": 12477.0, "avg_ops_per_sec": 7244.204315840367, "min_ops_per_sec": 5226.380679115906, "max_ops_per_sec": 10121.150167505035, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 50770.604166666664, "ser_median_ns": 52528.5, "ser_std_ns": 9274.995106231272, "ser_mad_ns": 7799.5, "ser_cv": 0.1826843556122334, "ser_min_ns": 36939.0, "ser_max_ns": 77185.0, "ser_p5_ns": 37762.5, "ser_p25_ns": 41738.0, "ser_p50_ns": 52528.5, "ser_p75_ns": 57418.25, "ser_p95_ns": 66641.0, "ser_p99_ns": 68820.24999999997, "ser_ci_low_ns": 48929.20651041667, "ser_ci_high_ns": 52592.6109375, "deser_mean_ns": 87270.78125, "deser_median_ns": 85543.0, "deser_std_ns": 17895.172841154752, "deser_mad_ns": 15203.5, "deser_cv": 0.20505342778920926, "deser_min_ns": 60289.0, "deser_max_ns": 127827.0, "deser_p5_ns": 63052.75, "deser_p25_ns": 71229.0, "deser_p50_ns": 85543.0, "deser_p75_ns": 101843.5, "deser_p95_ns": 117386.25, "deser_p99_ns": 127282.65, "deser_ci_low_ns": 83984.70625, "deser_ci_high_ns": 90804.7625, "total_mean_ns": 138041.38541666666, "total_median_ns": 139337.0, "total_std_ns": 25318.756680777526, "total_mad_ns": 22267.0, "total_cv": 0.18341424641860066, "total_min_ns": 98803.0, "total_max_ns": 191337.0, "total_p5_ns": 101347.25, "total_p25_ns": 114607.25, "total_p50_ns": 139337.0, "total_p75_ns": 156533.75, "total_p95_ns": 177835.25, "total_p99_ns": 189164.35, "total_ci_low_ns": 132931.265625, "total_ci_high_ns": 143008.42682291666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.237474558452472}, {"serializer": "jackson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 66746.71578947369, "avg_time_deser_ns": 100874.47368421052, "avg_time_total_ns": 167621.1894736842, "median_size_bytes": 25446.0, "avg_ops_per_sec": 5965.832858840294, "min_ops_per_sec": 4880.8582501147, "max_ops_per_sec": 7071.78569660625, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 66746.71578947369, "ser_median_ns": 66286.0, "ser_std_ns": 5691.692762568218, "ser_mad_ns": 4140.0, "ser_cv": 0.08527300100458018, "ser_min_ns": 56527.0, "ser_max_ns": 79139.0, "ser_p5_ns": 58685.0, "ser_p25_ns": 62593.5, "ser_p50_ns": 66286.0, "ser_p75_ns": 70730.5, "ser_p95_ns": 77550.8, "ser_p99_ns": 78849.48, "ser_ci_low_ns": 65576.79131578948, "ser_ci_high_ns": 67881.55552631579, "deser_mean_ns": 100874.47368421052, "deser_median_ns": 100522.0, "deser_std_ns": 9495.4735788165, "deser_mad_ns": 6590.0, "deser_cv": 0.09413157989346504, "deser_min_ns": 84167.0, "deser_max_ns": 126089.0, "deser_p5_ns": 87971.5, "deser_p25_ns": 93320.5, "deser_p50_ns": 100522.0, "deser_p75_ns": 106824.5, "deser_p95_ns": 119825.09999999999, "deser_p99_ns": 124516.38, "deser_ci_low_ns": 99021.25473684211, "deser_ci_high_ns": 102800.72473684211, "total_mean_ns": 167621.1894736842, "total_median_ns": 166384.0, "total_std_ns": 14422.969938125027, "total_mad_ns": 10360.0, "total_cv": 0.08604502797893204, "total_min_ns": 141407.0, "total_max_ns": 204882.0, "total_p5_ns": 147319.5, "total_p25_ns": 156282.0, "total_p50_ns": 166384.0, "total_p75_ns": 176801.5, "total_p95_ns": 193338.8, "total_p99_ns": 201419.04, "total_ci_low_ns": 164828.4, "total_ci_high_ns": 170574.38657894736, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.997871944573938}, {"serializer": "jsoniter", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "0.9.23", "avg_time_ser_ns": 47816.52222222222, "avg_time_deser_ns": 65132.85555555556, "avg_time_total_ns": 112949.37777777777, "median_size_bytes": 25446.0, "avg_ops_per_sec": 8853.523761480561, "min_ops_per_sec": 7272.8330593899545, "max_ops_per_sec": 12147.125989990769, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 47816.52222222222, "ser_median_ns": 47813.0, "ser_std_ns": 5076.026248654425, "ser_mad_ns": 3366.5, "ser_cv": 0.1061563244826575, "ser_min_ns": 37077.0, "ser_max_ns": 62465.0, "ser_p5_ns": 39788.2, "ser_p25_ns": 44330.5, "ser_p50_ns": 47813.0, "ser_p75_ns": 51056.5, "ser_p95_ns": 55530.0, "ser_p99_ns": 61999.53, "ser_ci_low_ns": 46781.41861111111, "ser_ci_high_ns": 48879.47277777777, "deser_mean_ns": 65132.85555555556, "deser_median_ns": 66564.5, "deser_std_ns": 8665.66399040672, "deser_mad_ns": 6530.0, "deser_cv": 0.1330459706778137, "deser_min_ns": 45247.0, "deser_max_ns": 85080.0, "deser_p5_ns": 50536.2, "deser_p25_ns": 58773.0, "deser_p50_ns": 66564.5, "deser_p75_ns": 71821.75, "deser_p95_ns": 76182.9, "deser_p99_ns": 80455.56, "deser_ci_low_ns": 63453.350277777776, "deser_ci_high_ns": 66839.83055555556, "total_mean_ns": 112949.37777777777, "total_median_ns": 115296.5, "total_std_ns": 13070.280593755462, "total_mad_ns": 7865.5, "total_cv": 0.11571803980603225, "total_min_ns": 82324.0, "total_max_ns": 137498.0, "total_p5_ns": 90479.6, "total_p25_ns": 104041.5, "total_p50_ns": 115296.5, "total_p75_ns": 121912.75, "total_p95_ns": 132800.34999999998, "total_p99_ns": 137334.24, "total_ci_low_ns": 110155.00166666666, "total_ci_high_ns": 115745.22111111111, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.9810874704491725, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.1211099382416094}, {"serializer": "moshi", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "1.15.2", "avg_time_ser_ns": 106442.42105263157, "avg_time_deser_ns": 129475.25263157894, "avg_time_total_ns": 235917.67368421052, "median_size_bytes": 25446.0, "avg_ops_per_sec": 4238.766788360917, "min_ops_per_sec": 3636.5355453166876, "max_ops_per_sec": 4937.442602229749, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 106442.42105263157, "ser_median_ns": 106397.0, "ser_std_ns": 7713.789645379832, "ser_mad_ns": 5744.0, "ser_cv": 0.07246912996807606, "ser_min_ns": 90501.0, "ser_max_ns": 124863.0, "ser_p5_ns": 94314.6, "ser_p25_ns": 101528.5, "ser_p50_ns": 106397.0, "ser_p75_ns": 112210.0, "ser_p95_ns": 117953.59999999999, "ser_p99_ns": 123596.82, "ser_ci_low_ns": 104885.32657894737, "ser_ci_high_ns": 107968.4747368421, "deser_mean_ns": 129475.25263157894, "deser_median_ns": 129025.0, "deser_std_ns": 8837.52295608493, "deser_mad_ns": 5801.0, "deser_cv": 0.0682564642776334, "deser_min_ns": 111242.0, "deser_max_ns": 150553.0, "deser_p5_ns": 117521.4, "deser_p25_ns": 123492.0, "deser_p50_ns": 129025.0, "deser_p75_ns": 134959.5, "deser_p95_ns": 146733.8, "deser_p99_ns": 150149.74, "deser_ci_low_ns": 127699.57552631579, "deser_ci_high_ns": 131155.54157894736, "total_mean_ns": 235917.67368421052, "total_median_ns": 233014.0, "total_std_ns": 14941.719980916852, "total_mad_ns": 10923.0, "total_cv": 0.06333446641609908, "total_min_ns": 202534.0, "total_max_ns": 274987.0, "total_p5_ns": 211537.3, "total_p25_ns": 225420.0, "total_p50_ns": 233014.0, "total_p75_ns": 246940.0, "total_p95_ns": 259397.9, "total_p99_ns": 270899.88, "total_ci_low_ns": 232907.42973684208, "total_ci_high_ns": 238813.0557894737, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.802724281752507}, {"serializer": "gson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.12.1", "avg_time_ser_ns": 241257.21739130435, "avg_time_deser_ns": 110341.88043478261, "avg_time_total_ns": 351599.097826087, "median_size_bytes": 25446.0, "avg_ops_per_sec": 2844.1483672254312, "min_ops_per_sec": 2500.4250722622846, "max_ops_per_sec": 3178.85173517622, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 241257.21739130435, "ser_median_ns": 242097.5, "ser_std_ns": 12707.386412034113, "ser_mad_ns": 8780.0, "ser_cv": 0.05267152854301355, "ser_min_ns": 217033.0, "ser_max_ns": 273069.0, "ser_p5_ns": 221472.7, "ser_p25_ns": 231208.75, "ser_p50_ns": 242097.5, "ser_p75_ns": 249345.5, "ser_p95_ns": 261617.7, "ser_p99_ns": 271995.2, "ser_ci_low_ns": 238572.09293478262, "ser_ci_high_ns": 243883.45054347825, "deser_mean_ns": 110341.88043478261, "deser_median_ns": 109830.5, "deser_std_ns": 6863.053276949725, "deser_mad_ns": 4471.5, "deser_cv": 0.06219808154353615, "deser_min_ns": 96083.0, "deser_max_ns": 129242.0, "deser_p5_ns": 100506.05, "deser_p25_ns": 105524.0, "deser_p50_ns": 109830.5, "deser_p75_ns": 114514.0, "deser_p95_ns": 122435.2, "deser_p99_ns": 127077.11000000002, "deser_ci_low_ns": 108873.40027173914, "deser_ci_high_ns": 111722.19429347826, "total_mean_ns": 351599.097826087, "total_median_ns": 352382.0, "total_std_ns": 18968.82443313081, "total_mad_ns": 13173.0, "total_cv": 0.05395015103967486, "total_min_ns": 314579.0, "total_max_ns": 399932.0, "total_p5_ns": 323165.7, "total_p25_ns": 335983.5, "total_p50_ns": 352382.0, "total_p75_ns": 364135.0, "total_p95_ns": 382753.05, "total_p99_ns": 395579.47000000003, "total_ci_low_ns": 347622.16114130436, "total_ci_high_ns": 355335.4570652174, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.341994651610474}, {"serializer": "ion", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 131621.5157894737, "avg_time_deser_ns": 355343.2947368421, "avg_time_total_ns": 486964.81052631576, "median_size_bytes": 22846.0, "avg_ops_per_sec": 2053.5364740610135, "min_ops_per_sec": 1820.0283196406535, "max_ops_per_sec": 2303.43626622195, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 131621.5157894737, "ser_median_ns": 132548.0, "ser_std_ns": 10003.828410635046, "ser_mad_ns": 7509.0, "ser_cv": 0.07600450694274023, "ser_min_ns": 112911.0, "ser_max_ns": 162161.0, "ser_p5_ns": 116140.2, "ser_p25_ns": 123449.0, "ser_p50_ns": 132548.0, "ser_p75_ns": 138700.5, "ser_p95_ns": 145811.0, "ser_p99_ns": 159932.26, "ser_ci_low_ns": 129620.78815789474, "ser_ci_high_ns": 133611.13342105265, "deser_mean_ns": 355343.2947368421, "deser_median_ns": 357563.0, "deser_std_ns": 17713.69305768826, "deser_mad_ns": 13925.0, "deser_cv": 0.049849521068932943, "deser_min_ns": 321223.0, "deser_max_ns": 395302.0, "deser_p5_ns": 327628.1, "deser_p25_ns": 341665.0, "deser_p50_ns": 357563.0, "deser_p75_ns": 369165.5, "deser_p95_ns": 382151.89999999997, "deser_p99_ns": 391035.34, "deser_ci_low_ns": 351933.7539473684, "deser_ci_high_ns": 358734.0828947368, "total_mean_ns": 486964.81052631576, "total_median_ns": 488161.0, "total_std_ns": 25938.53060123013, "total_mad_ns": 20183.0, "total_cv": 0.05326571867317382, "total_min_ns": 434134.0, "total_max_ns": 549442.0, "total_p5_ns": 446244.8, "total_p25_ns": 466214.0, "total_p50_ns": 488161.0, "total_p75_ns": 507556.5, "total_p95_ns": 526554.7999999999, "total_p99_ns": 547316.66, "total_ci_low_ns": 481745.5536842105, "total_ci_high_ns": 492161.08, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.239570910460255}, {"serializer": "dsl-json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "java", "serializer_version": "2.0.2", "avg_time_ser_ns": 68633.93684210526, "avg_time_deser_ns": 90583.71578947369, "avg_time_total_ns": 159217.65263157894, "median_size_bytes": 25446.0, "avg_ops_per_sec": 6280.71060885407, "min_ops_per_sec": 4571.198705436526, "max_ops_per_sec": 9360.140776517279, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 68633.93684210526, "ser_median_ns": 68055.0, "ser_std_ns": 12543.355198441384, "ser_mad_ns": 7325.0, "ser_cv": 0.18275733224072233, "ser_min_ns": 45220.0, "ser_max_ns": 100493.0, "ser_p5_ns": 46856.3, "ser_p25_ns": 61262.5, "ser_p50_ns": 68055.0, "ser_p75_ns": 76213.5, "ser_p95_ns": 88388.7, "ser_p99_ns": 95166.96, "ser_ci_low_ns": 66232.25447368421, "ser_ci_high_ns": 71123.55894736842, "deser_mean_ns": 90583.71578947369, "deser_median_ns": 91367.0, "deser_std_ns": 16236.238331677874, "deser_mad_ns": 10056.0, "deser_cv": 0.17924014476743966, "deser_min_ns": 61399.0, "deser_max_ns": 124006.0, "deser_p5_ns": 63008.8, "deser_p25_ns": 81095.5, "deser_p50_ns": 91367.0, "deser_p75_ns": 98410.5, "deser_p95_ns": 117600.09999999999, "deser_p99_ns": 123938.32, "deser_ci_low_ns": 87369.54763157894, "deser_ci_high_ns": 93759.225, "total_mean_ns": 159217.65263157894, "total_median_ns": 159422.0, "total_std_ns": 28047.47007962417, "total_mad_ns": 17662.0, "total_cv": 0.17615804288061265, "total_min_ns": 106836.0, "total_max_ns": 218761.0, "total_p5_ns": 111591.0, "total_p25_ns": 140920.0, "total_p50_ns": 159422.0, "total_p75_ns": 172296.5, "total_p95_ns": 206384.3, "total_p99_ns": 212208.26, "total_ci_low_ns": 153748.14131578946, "total_ci_high_ns": 164604.46131578946, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.951311804783543}, {"serializer": "protostuff", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "1.8.0", "avg_time_ser_ns": 43276.9010989011, "avg_time_deser_ns": 45420.97802197802, "avg_time_total_ns": 88697.87912087912, "median_size_bytes": 12346.0, "avg_ops_per_sec": 11274.22673361988, "min_ops_per_sec": 10036.432249064103, "max_ops_per_sec": 12498.7501249875, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 43276.9010989011, "ser_median_ns": 42838.0, "ser_std_ns": 2011.1233624516371, "ser_mad_ns": 1375.0, "ser_cv": 0.046471057570771954, "ser_min_ns": 39248.0, "ser_max_ns": 48678.0, "ser_p5_ns": 40698.0, "ser_p25_ns": 41798.5, "ser_p50_ns": 42838.0, "ser_p75_ns": 44585.0, "ser_p95_ns": 46811.0, "ser_p99_ns": 48478.2, "ser_ci_low_ns": 42875.06153846154, "ser_ci_high_ns": 43703.30686813187, "deser_mean_ns": 45420.97802197802, "deser_median_ns": 45125.0, "deser_std_ns": 2065.9734481354035, "deser_mad_ns": 1506.0, "deser_cv": 0.045485005785999, "deser_min_ns": 40760.0, "deser_max_ns": 51095.0, "deser_p5_ns": 42698.5, "deser_p25_ns": 43751.5, "deser_p50_ns": 45125.0, "deser_p75_ns": 46716.0, "deser_p95_ns": 48727.0, "deser_p99_ns": 50972.6, "deser_ci_low_ns": 44990.961263736266, "deser_ci_high_ns": 45847.60164835165, "total_mean_ns": 88697.87912087912, "total_median_ns": 87916.0, "total_std_ns": 3789.703447310781, "total_mad_ns": 2522.0, "total_cv": 0.04272597591816263, "total_min_ns": 80008.0, "total_max_ns": 99637.0, "total_p5_ns": 83637.0, "total_p25_ns": 86060.5, "total_p50_ns": 87916.0, "total_p75_ns": 90964.0, "total_p95_ns": 95011.0, "total_p99_ns": 96799.29999999999, "total_ci_low_ns": 87917.76565934066, "total_ci_high_ns": 89496.87225274726, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.71253498727777}, {"serializer": "java-serialization", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "21.0.11", "avg_time_ser_ns": 148956.625, "avg_time_deser_ns": 205085.78125, "avg_time_total_ns": 354042.40625, "median_size_bytes": 17611.0, "avg_ops_per_sec": 2824.520403055531, "min_ops_per_sec": 2474.732976311856, "max_ops_per_sec": 3162.5853502721407, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 148956.625, "ser_median_ns": 146783.0, "ser_std_ns": 7176.9254159644015, "ser_mad_ns": 4202.5, "ser_cv": 0.048181310606120416, "ser_min_ns": 135969.0, "ser_max_ns": 169572.0, "ser_p5_ns": 139967.75, "ser_p25_ns": 144094.75, "ser_p50_ns": 146783.0, "ser_p75_ns": 153920.25, "ser_p95_ns": 161368.0, "ser_p99_ns": 164588.3, "ser_ci_low_ns": 147602.66770833335, "ser_ci_high_ns": 150401.54921875, "deser_mean_ns": 205085.78125, "deser_median_ns": 201122.5, "deser_std_ns": 15840.31711352105, "deser_mad_ns": 10035.5, "deser_cv": 0.07723751991471155, "deser_min_ns": 178514.0, "deser_max_ns": 242852.0, "deser_p5_ns": 185832.75, "deser_p25_ns": 193660.75, "deser_p50_ns": 201122.5, "deser_p75_ns": 215688.0, "deser_p95_ns": 236612.25, "deser_p99_ns": 242106.25, "deser_ci_low_ns": 201993.60104166667, "deser_ci_high_ns": 208183.71276041667, "total_mean_ns": 354042.40625, "total_median_ns": 351318.5, "total_std_ns": 20473.103271097254, "total_mad_ns": 14583.0, "total_cv": 0.05782669790307712, "total_min_ns": 316197.0, "total_max_ns": 404084.0, "total_p5_ns": 327773.75, "total_p25_ns": 337344.0, "total_p50_ns": 351318.5, "total_p75_ns": 367352.0, "total_p95_ns": 390671.0, "total_p99_ns": 402310.35, "total_ci_low_ns": 350197.840625, "total_ci_high_ns": 358358.98359375, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.541601687786837}, {"serializer": "moshi", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "1.15.2", "avg_time_ser_ns": 103520.8, "avg_time_deser_ns": 128686.9, "avg_time_total_ns": 232207.7, "median_size_bytes": 25446.0, "avg_ops_per_sec": 4306.489405820737, "min_ops_per_sec": 3856.447594733635, "max_ops_per_sec": 4844.139801874682, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 103520.8, "ser_median_ns": 103763.5, "ser_std_ns": 6200.66189689057, "ser_mad_ns": 3354.0, "ser_cv": 0.05989773936146716, "ser_min_ns": 89498.0, "ser_max_ns": 119622.0, "ser_p5_ns": 93241.85, "ser_p25_ns": 100571.25, "ser_p50_ns": 103763.5, "ser_p75_ns": 107470.5, "ser_p95_ns": 113235.0, "ser_p99_ns": 115201.37, "ser_ci_low_ns": 102254.99888888889, "ser_ci_high_ns": 104757.20722222222, "deser_mean_ns": 128686.9, "deser_median_ns": 128485.0, "deser_std_ns": 6689.011651770991, "deser_mad_ns": 4439.5, "deser_cv": 0.051978963295960905, "deser_min_ns": 113418.0, "deser_max_ns": 144651.0, "deser_p5_ns": 119619.75, "deser_p25_ns": 123438.25, "deser_p50_ns": 128485.0, "deser_p75_ns": 132505.5, "deser_p95_ns": 140986.19999999998, "deser_p99_ns": 143868.69, "deser_ci_low_ns": 127293.73305555555, "deser_ci_high_ns": 130084.20666666667, "total_mean_ns": 232207.7, "total_median_ns": 231248.0, "total_std_ns": 10498.494102232316, "total_mad_ns": 6320.5, "total_cv": 0.04521165362833496, "total_min_ns": 206435.0, "total_max_ns": 259306.0, "total_p5_ns": 213349.8, "total_p25_ns": 226009.75, "total_p50_ns": 231248.0, "total_p75_ns": 238442.5, "total_p95_ns": 248366.75, "total_p99_ns": 255031.33, "total_ci_low_ns": 230033.62805555554, "total_ci_high_ns": 234385.1861111111, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.12882962449967}, {"serializer": "kryo", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "5.6.2", "avg_time_ser_ns": 74334.62637362638, "avg_time_deser_ns": 61948.16483516483, "avg_time_total_ns": 136282.7912087912, "median_size_bytes": 11051.0, "avg_ops_per_sec": 7337.683585214778, "min_ops_per_sec": 6405.288205942827, "max_ops_per_sec": 7950.832054574511, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 74334.62637362638, "ser_median_ns": 73600.0, "ser_std_ns": 4204.8787237058905, "ser_mad_ns": 2781.0, "ser_cv": 0.05656689121663177, "ser_min_ns": 67061.0, "ser_max_ns": 86571.0, "ser_p5_ns": 68850.5, "ser_p25_ns": 71259.5, "ser_p50_ns": 73600.0, "ser_p75_ns": 77195.5, "ser_p95_ns": 81401.5, "ser_p99_ns": 84318.29999999999, "ser_ci_low_ns": 73494.19258241759, "ser_ci_high_ns": 75213.45274725274, "deser_mean_ns": 61948.16483516483, "deser_median_ns": 61482.0, "deser_std_ns": 3004.5446771469246, "deser_mad_ns": 1894.0, "deser_cv": 0.04850094728619623, "deser_min_ns": 57254.0, "deser_max_ns": 69550.0, "deser_p5_ns": 57945.5, "deser_p25_ns": 59727.0, "deser_p50_ns": 61482.0, "deser_p75_ns": 63369.5, "deser_p95_ns": 68054.5, "deser_p99_ns": 69517.6, "deser_ci_low_ns": 61358.91840659341, "deser_ci_high_ns": 62569.6521978022, "total_mean_ns": 136282.7912087912, "total_median_ns": 135447.0, "total_std_ns": 6801.909520317697, "total_mad_ns": 4601.0, "total_cv": 0.04991025983535129, "total_min_ns": 125773.0, "total_max_ns": 156121.0, "total_p5_ns": 127153.5, "total_p25_ns": 131130.5, "total_p50_ns": 135447.0, "total_p75_ns": 141116.0, "total_p95_ns": 148244.5, "total_p99_ns": 151773.09999999998, "total_ci_low_ns": 134853.46675824176, "total_ci_high_ns": 137650.27802197804, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.98395782350626}, {"serializer": "msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "0.9.8", "avg_time_ser_ns": 106504.63829787234, "avg_time_deser_ns": 139232.5, "avg_time_total_ns": 245737.13829787233, "median_size_bytes": 19548.0, "avg_ops_per_sec": 4069.388969557551, "min_ops_per_sec": 3734.0462872377766, "max_ops_per_sec": 4375.697376769423, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 106504.63829787234, "ser_median_ns": 105523.5, "ser_std_ns": 4653.01068415973, "ser_mad_ns": 2881.5, "ser_cv": 0.04368833844725318, "ser_min_ns": 98932.0, "ser_max_ns": 118497.0, "ser_p5_ns": 100268.15, "ser_p25_ns": 102959.25, "ser_p50_ns": 105523.5, "ser_p75_ns": 108953.5, "ser_p95_ns": 115623.75, "ser_p99_ns": 118425.39, "ser_ci_low_ns": 105586.61037234042, "ser_ci_high_ns": 107459.90718085106, "deser_mean_ns": 139232.5, "deser_median_ns": 138874.0, "deser_std_ns": 5495.574445792478, "deser_mad_ns": 3743.5, "deser_cv": 0.03947048602727437, "deser_min_ns": 128312.0, "deser_max_ns": 152490.0, "deser_p5_ns": 130861.55, "deser_p25_ns": 135437.0, "deser_p50_ns": 138874.0, "deser_p75_ns": 142823.5, "deser_p95_ns": 148655.75, "deser_p99_ns": 152277.03, "deser_ci_low_ns": 138168.81090425534, "deser_ci_high_ns": 140307.2061170213, "total_mean_ns": 245737.13829787233, "total_median_ns": 244436.5, "total_std_ns": 9343.138489294184, "total_mad_ns": 6026.5, "total_cv": 0.03802086470938235, "total_min_ns": 228535.0, "total_max_ns": 267806.0, "total_p5_ns": 231386.4, "total_p25_ns": 238981.75, "total_p50_ns": 244436.5, "total_p75_ns": 252245.0, "total_p95_ns": 262989.05, "total_p99_ns": 266017.61, "total_ci_low_ns": 243859.38882978723, "total_ci_high_ns": 247742.51462765958, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.86345303250981}, {"serializer": "ion", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 119216.13265306123, "avg_time_deser_ns": 342621.612244898, "avg_time_total_ns": 461837.7448979592, "median_size_bytes": 22846.0, "avg_ops_per_sec": 2165.2626080203668, "min_ops_per_sec": 1942.5925062551478, "max_ops_per_sec": 2376.4540928480615, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 119216.13265306123, "ser_median_ns": 117541.0, "ser_std_ns": 7782.910997870813, "ser_mad_ns": 5379.5, "ser_cv": 0.06528404188819292, "ser_min_ns": 104889.0, "ser_max_ns": 141072.0, "ser_p5_ns": 109008.6, "ser_p25_ns": 113385.75, "ser_p50_ns": 117541.0, "ser_p75_ns": 124379.25, "ser_p95_ns": 133425.24999999997, "ser_p99_ns": 138900.17, "ser_ci_low_ns": 117708.37040816327, "ser_ci_high_ns": 120743.72704081632, "deser_mean_ns": 342621.612244898, "deser_median_ns": 339701.0, "deser_std_ns": 13367.550627007991, "deser_mad_ns": 8818.5, "deser_cv": 0.03901549157807703, "deser_min_ns": 315906.0, "deser_max_ns": 377053.0, "deser_p5_ns": 324706.7, "deser_p25_ns": 333019.5, "deser_p50_ns": 339701.0, "deser_p75_ns": 352042.25, "deser_p95_ns": 363758.4, "deser_p99_ns": 373553.24, "deser_ci_low_ns": 339900.6260204082, "deser_ci_high_ns": 345263.518877551, "total_mean_ns": 461837.7448979592, "total_median_ns": 458698.5, "total_std_ns": 19571.513202543763, "total_mad_ns": 14231.0, "total_cv": 0.04237746571984495, "total_min_ns": 420795.0, "total_max_ns": 514776.0, "total_p5_ns": 435903.55, "total_p25_ns": 448011.5, "total_p50_ns": 458698.5, "total_p75_ns": 477795.75, "total_p95_ns": 498035.8, "total_p99_ns": 512352.94, "total_ci_low_ns": 458069.20229591837, "total_ci_high_ns": 465755.20612244896, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.728886643155917}, {"serializer": "protobuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "4.28.3", "avg_time_ser_ns": 37254.444444444445, "avg_time_deser_ns": 60891.48148148148, "avg_time_total_ns": 98145.92592592593, "median_size_bytes": 12477.0, "avg_ops_per_sec": 10188.909937583492, "min_ops_per_sec": 8347.315086102555, "max_ops_per_sec": 11761.80002587596, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 37254.444444444445, "ser_median_ns": 36455.0, "ser_std_ns": 2758.8575987172662, "ser_mad_ns": 1213.0, "ser_cv": 0.0740544555115136, "ser_min_ns": 32467.0, "ser_max_ns": 44834.0, "ser_p5_ns": 33794.0, "ser_p25_ns": 35483.0, "ser_p50_ns": 36455.0, "ser_p75_ns": 38232.0, "ser_p95_ns": 43648.0, "ser_p99_ns": 44339.6, "ser_ci_low_ns": 36676.35339506173, "ser_ci_high_ns": 37878.53919753087, "deser_mean_ns": 60891.48148148148, "deser_median_ns": 59898.0, "deser_std_ns": 4391.511545331263, "deser_mad_ns": 2454.0, "deser_cv": 0.07212029398014932, "deser_min_ns": 52554.0, "deser_max_ns": 75786.0, "deser_p5_ns": 56381.0, "deser_p25_ns": 57748.0, "deser_p50_ns": 59898.0, "deser_p75_ns": 62816.0, "deser_p95_ns": 69692.0, "deser_p99_ns": 72405.20000000001, "deser_ci_low_ns": 59978.86049382716, "deser_ci_high_ns": 61892.12160493827, "total_mean_ns": 98145.92592592593, "total_median_ns": 96512.0, "total_std_ns": 6785.098340808661, "total_mad_ns": 3366.0, "total_cv": 0.06913275591214664, "total_min_ns": 85021.0, "total_max_ns": 119799.0, "total_p5_ns": 90471.0, "total_p25_ns": 93570.0, "total_p50_ns": 96512.0, "total_p75_ns": 101168.0, "total_p95_ns": 110172.0, "total_p99_ns": 116226.20000000001, "total_ci_low_ns": 96829.94660493828, "total_ci_high_ns": 99670.09351851851, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.619535703891163}, {"serializer": "dsl-json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.0.2", "avg_time_ser_ns": 49078.61111111111, "avg_time_deser_ns": 70538.36666666667, "avg_time_total_ns": 119616.97777777778, "median_size_bytes": 25446.0, "avg_ops_per_sec": 8360.017269937898, "min_ops_per_sec": 7541.990029489181, "max_ops_per_sec": 9269.129165314918, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 49078.61111111111, "ser_median_ns": 48288.0, "ser_std_ns": 3308.066442597428, "ser_mad_ns": 2278.5, "ser_cv": 0.06740342417408998, "ser_min_ns": 43071.0, "ser_max_ns": 57260.0, "ser_p5_ns": 44767.1, "ser_p25_ns": 46609.25, "ser_p50_ns": 48288.0, "ser_p75_ns": 51358.25, "ser_p95_ns": 55211.85, "ser_p99_ns": 56974.31, "ser_ci_low_ns": 48435.801666666666, "ser_ci_high_ns": 49778.83388888888, "deser_mean_ns": 70538.36666666667, "deser_median_ns": 70843.5, "deser_std_ns": 3362.0183927268613, "deser_mad_ns": 2679.5, "deser_cv": 0.04766226596391554, "deser_min_ns": 63584.0, "deser_max_ns": 78411.0, "deser_p5_ns": 65652.85, "deser_p25_ns": 67561.0, "deser_p50_ns": 70843.5, "deser_p75_ns": 72661.25, "deser_p95_ns": 76660.7, "deser_p99_ns": 77474.72, "deser_ci_low_ns": 69839.69694444445, "deser_ci_high_ns": 71227.32305555555, "total_mean_ns": 119616.97777777778, "total_median_ns": 119466.5, "total_std_ns": 6102.951036000144, "total_mad_ns": 4643.0, "total_cv": 0.05102077605854659, "total_min_ns": 107885.0, "total_max_ns": 132591.0, "total_p5_ns": 110642.45, "total_p25_ns": 114923.5, "total_p50_ns": 119466.5, "total_p75_ns": 124091.0, "total_p95_ns": 130822.95, "total_p99_ns": 132181.6, "total_ci_low_ns": 118395.19888888889, "total_ci_high_ns": 120835.98055555555, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.903834066578675}, {"serializer": "fastjson2", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.0.57", "avg_time_ser_ns": 41299.50561797753, "avg_time_deser_ns": 55619.61797752809, "avg_time_total_ns": 96919.12359550562, "median_size_bytes": 25446.0, "avg_ops_per_sec": 10317.881166296189, "min_ops_per_sec": 9050.101361135245, "max_ops_per_sec": 11949.430012188419, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 41299.50561797753, "ser_median_ns": 40920.0, "ser_std_ns": 2840.282804915718, "ser_mad_ns": 1743.0, "ser_cv": 0.06877280399403506, "ser_min_ns": 33512.0, "ser_max_ns": 49324.0, "ser_p5_ns": 37572.4, "ser_p25_ns": 39421.0, "ser_p50_ns": 40920.0, "ser_p75_ns": 42999.0, "ser_p95_ns": 46295.799999999996, "ser_p99_ns": 48980.8, "ser_ci_low_ns": 40724.08061797753, "ser_ci_high_ns": 41903.4595505618, "deser_mean_ns": 55619.61797752809, "deser_median_ns": 55128.0, "deser_std_ns": 3042.392571142959, "deser_mad_ns": 1979.0, "deser_cv": 0.05469999043093342, "deser_min_ns": 50174.0, "deser_max_ns": 63182.0, "deser_p5_ns": 51757.8, "deser_p25_ns": 53398.0, "deser_p50_ns": 55128.0, "deser_p75_ns": 57305.0, "deser_p95_ns": 61172.2, "deser_p99_ns": 62098.72000000001, "deser_ci_low_ns": 55005.51853932584, "deser_ci_high_ns": 56246.22865168539, "total_mean_ns": 96919.12359550562, "total_median_ns": 95934.0, "total_std_ns": 5609.192033496578, "total_mad_ns": 3037.0, "total_cv": 0.05787497684055296, "total_min_ns": 83686.0, "total_max_ns": 110496.0, "total_p5_ns": 89758.6, "total_p25_ns": 93235.0, "total_p50_ns": 95934.0, "total_p75_ns": 99314.0, "total_p95_ns": 107036.4, "total_p99_ns": 110123.76, "total_ci_low_ns": 95806.16938202248, "total_ci_high_ns": 98127.31882022471, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.1448890504117655}, {"serializer": "hessian", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "4.0.66", "avg_time_ser_ns": 51503.20430107527, "avg_time_deser_ns": 55959.63440860215, "avg_time_total_ns": 107462.83870967742, "median_size_bytes": 11267.0, "avg_ops_per_sec": 9305.542381042149, "min_ops_per_sec": 8098.805426199636, "max_ops_per_sec": 10756.389295241373, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 51503.20430107527, "ser_median_ns": 50591.0, "ser_std_ns": 3223.0507441105756, "ser_mad_ns": 1974.0, "ser_cv": 0.06257961592582476, "ser_min_ns": 45146.0, "ser_max_ns": 61118.0, "ser_p5_ns": 47345.4, "ser_p25_ns": 49103.0, "ser_p50_ns": 50591.0, "ser_p75_ns": 54141.0, "ser_p95_ns": 57034.799999999996, "ser_p99_ns": 60037.0, "ser_ci_low_ns": 50845.83413978494, "ser_ci_high_ns": 52141.96290322581, "deser_mean_ns": 55959.63440860215, "deser_median_ns": 55145.0, "deser_std_ns": 4257.995595972936, "deser_mad_ns": 2646.0, "deser_cv": 0.0760904827376498, "deser_min_ns": 47108.0, "deser_max_ns": 66738.0, "deser_p5_ns": 50201.0, "deser_p25_ns": 52853.0, "deser_p50_ns": 55145.0, "deser_p75_ns": 58533.0, "deser_p95_ns": 63378.799999999996, "deser_p99_ns": 65549.36, "deser_ci_low_ns": 55116.28817204301, "deser_ci_high_ns": 56881.329032258065, "total_mean_ns": 107462.83870967742, "total_median_ns": 105564.0, "total_std_ns": 6917.679168010667, "total_mad_ns": 3958.0, "total_cv": 0.06437275667637565, "total_min_ns": 92968.0, "total_max_ns": 123475.0, "total_p5_ns": 99074.0, "total_p25_ns": 102329.0, "total_p50_ns": 105564.0, "total_p75_ns": 113063.0, "total_p95_ns": 119995.4, "total_p99_ns": 121614.76, "total_ci_low_ns": 106103.29838709677, "total_ci_high_ns": 108915.71666666666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.014185277975828}, {"serializer": "jsoniter", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "0.9.23", "avg_time_ser_ns": 42884.857142857145, "avg_time_deser_ns": 50023.08791208791, "avg_time_total_ns": 92907.94505494506, "median_size_bytes": 25446.0, "avg_ops_per_sec": 10763.34213837802, "min_ops_per_sec": 8887.940841865757, "max_ops_per_sec": 11872.536448686897, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 42884.857142857145, "ser_median_ns": 42641.0, "ser_std_ns": 2842.764896565113, "ser_mad_ns": 1983.0, "ser_cv": 0.06628831447649117, "ser_min_ns": 38635.0, "ser_max_ns": 52696.0, "ser_p5_ns": 39244.5, "ser_p25_ns": 40699.5, "ser_p50_ns": 42641.0, "ser_p75_ns": 44706.5, "ser_p95_ns": 47490.5, "ser_p99_ns": 50328.099999999984, "ser_ci_low_ns": 42320.670054945054, "ser_ci_high_ns": 43469.9, "deser_mean_ns": 50023.08791208791, "deser_median_ns": 48707.0, "deser_std_ns": 3780.51854364613, "deser_mad_ns": 2140.0, "deser_cv": 0.07557547327526297, "deser_min_ns": 44763.0, "deser_max_ns": 59816.0, "deser_p5_ns": 45593.5, "deser_p25_ns": 47236.0, "deser_p50_ns": 48707.0, "deser_p75_ns": 52710.0, "deser_p95_ns": 57781.0, "deser_p99_ns": 59021.299999999996, "deser_ci_low_ns": 49293.001923076925, "deser_ci_high_ns": 50846.08516483517, "total_mean_ns": 92907.94505494506, "total_median_ns": 91368.0, "total_std_ns": 6193.824019605044, "total_mad_ns": 4621.0, "total_cv": 0.0666662470679129, "total_min_ns": 84228.0, "total_max_ns": 112512.0, "total_p5_ns": 85651.5, "total_p25_ns": 88173.5, "total_p50_ns": 91368.0, "total_p75_ns": 97432.5, "total_p95_ns": 104483.5, "total_p99_ns": 107020.19999999997, "total_ci_low_ns": 91708.46868131869, "total_ci_high_ns": 94237.00576923077, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.012238079263227}, {"serializer": "jackson-smile", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 49836.166666666664, "avg_time_deser_ns": 78765.10416666667, "avg_time_total_ns": 128601.27083333333, "median_size_bytes": 12998.0, "avg_ops_per_sec": 7775.972924062279, "min_ops_per_sec": 6929.670771341654, "max_ops_per_sec": 8631.181004496846, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 49836.166666666664, "ser_median_ns": 49208.0, "ser_std_ns": 3208.6807935797724, "ser_mad_ns": 2387.5, "ser_cv": 0.06438458268753494, "ser_min_ns": 45064.0, "ser_max_ns": 58947.0, "ser_p5_ns": 45892.75, "ser_p25_ns": 47284.25, "ser_p50_ns": 49208.0, "ser_p75_ns": 52162.0, "ser_p95_ns": 55626.75, "ser_p99_ns": 58431.15, "ser_ci_low_ns": 49219.08776041667, "ser_ci_high_ns": 50500.363541666666, "deser_mean_ns": 78765.10416666667, "deser_median_ns": 77849.5, "deser_std_ns": 4357.753079836507, "deser_mad_ns": 2859.0, "deser_cv": 0.05532593558964281, "deser_min_ns": 70795.0, "deser_max_ns": 90978.0, "deser_p5_ns": 73072.5, "deser_p25_ns": 75261.5, "deser_p50_ns": 77849.5, "deser_p75_ns": 81593.75, "deser_p95_ns": 86779.0, "deser_p99_ns": 88566.9, "deser_ci_low_ns": 77920.70182291667, "deser_ci_high_ns": 79665.63802083334, "total_mean_ns": 128601.27083333333, "total_median_ns": 127069.5, "total_std_ns": 7152.6272029810525, "total_mad_ns": 5213.0, "total_cv": 0.05561863546629197, "total_min_ns": 115859.0, "total_max_ns": 144307.0, "total_p5_ns": 119189.0, "total_p25_ns": 123216.75, "total_p50_ns": 127069.5, "total_p75_ns": 133808.75, "total_p95_ns": 141404.5, "total_p99_ns": 144126.5, "total_ci_low_ns": 127230.98541666666, "total_ci_high_ns": 130084.09088541666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.244042211099025}, {"serializer": "avro", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "1.12.0", "avg_time_ser_ns": 55756.32258064516, "avg_time_deser_ns": 99142.33333333333, "avg_time_total_ns": 154898.6559139785, "median_size_bytes": 10448.0, "avg_ops_per_sec": 6455.833939290865, "min_ops_per_sec": 5738.090592974282, "max_ops_per_sec": 7166.712055843021, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 55756.32258064516, "ser_median_ns": 55419.0, "ser_std_ns": 2764.186656698771, "ser_mad_ns": 1719.0, "ser_cv": 0.049576201025465595, "ser_min_ns": 49613.0, "ser_max_ns": 63746.0, "ser_p5_ns": 51910.6, "ser_p25_ns": 53932.0, "ser_p50_ns": 55419.0, "ser_p75_ns": 57808.0, "ser_p95_ns": 60277.4, "ser_p99_ns": 62570.24, "ser_ci_low_ns": 55216.17849462366, "ser_ci_high_ns": 56324.24731182795, "deser_mean_ns": 99142.33333333333, "deser_median_ns": 98191.0, "deser_std_ns": 4640.835944968961, "deser_mad_ns": 2970.0, "deser_cv": 0.04680983177353395, "deser_min_ns": 89171.0, "deser_max_ns": 110528.0, "deser_p5_ns": 92750.8, "deser_p25_ns": 96087.0, "deser_p50_ns": 98191.0, "deser_p75_ns": 102377.0, "deser_p95_ns": 107976.59999999999, "deser_p99_ns": 110004.52, "deser_ci_low_ns": 98223.7309139785, "deser_ci_high_ns": 100111.63629032258, "total_mean_ns": 154898.6559139785, "total_median_ns": 153563.0, "total_std_ns": 6854.7733487641, "total_mad_ns": 4195.0, "total_cv": 0.04425327843109777, "total_min_ns": 139534.0, "total_max_ns": 174274.0, "total_p5_ns": 145374.0, "total_p25_ns": 150297.0, "total_p50_ns": 153563.0, "total_p75_ns": 158532.0, "total_p95_ns": 166998.4, "total_p99_ns": 168921.44, "total_ci_low_ns": 153579.7064516129, "total_ci_high_ns": 156232.30376344087, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.01495421046673}, {"serializer": "bson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "5.3.1", "avg_time_ser_ns": 146733.63043478262, "avg_time_deser_ns": 143702.51086956522, "avg_time_total_ns": 290436.14130434784, "median_size_bytes": 29152.0, "avg_ops_per_sec": 3443.0976651493957, "min_ops_per_sec": 3017.7473722964755, "max_ops_per_sec": 3848.403682152643, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 146733.63043478262, "ser_median_ns": 144594.0, "ser_std_ns": 12142.041616185206, "ser_mad_ns": 8121.0, "ser_cv": 0.08274886663818946, "ser_min_ns": 123695.0, "ser_max_ns": 180083.0, "ser_p5_ns": 130183.9, "ser_p25_ns": 137150.25, "ser_p50_ns": 144594.0, "ser_p75_ns": 155109.25, "ser_p95_ns": 168528.65, "ser_p99_ns": 172671.96000000002, "ser_ci_low_ns": 144363.5445652174, "ser_ci_high_ns": 149136.18260869567, "deser_mean_ns": 143702.51086956522, "deser_median_ns": 142576.5, "deser_std_ns": 6055.747290107043, "deser_mad_ns": 3765.0, "deser_cv": 0.04214085928953376, "deser_min_ns": 132845.0, "deser_max_ns": 158838.0, "deser_p5_ns": 135618.95, "deser_p25_ns": 139508.0, "deser_p50_ns": 142576.5, "deser_p75_ns": 147004.75, "deser_p95_ns": 156056.4, "deser_p99_ns": 158486.74, "deser_ci_low_ns": 142489.99701086956, "deser_ci_high_ns": 144891.7538043478, "total_mean_ns": 290436.14130434784, "total_median_ns": 287155.0, "total_std_ns": 16369.923557778331, "total_mad_ns": 11820.5, "total_cv": 0.05636324558046066, "total_min_ns": 259848.0, "total_max_ns": 331373.0, "total_p5_ns": 271036.35, "total_p25_ns": 277442.75, "total_p50_ns": 287155.0, "total_p75_ns": 301790.75, "total_p95_ns": 319064.85, "total_p99_ns": 328323.59, "total_ci_low_ns": 287164.2739130435, "total_ci_high_ns": 293991.9793478261, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.063032211203875}, {"serializer": "jackson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 58151.086956521736, "avg_time_deser_ns": 98682.01086956522, "avg_time_total_ns": 156833.09782608695, "median_size_bytes": 25446.0, "avg_ops_per_sec": 6376.205111429383, "min_ops_per_sec": 5430.827549501993, "max_ops_per_sec": 7450.843062892566, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 58151.086956521736, "ser_median_ns": 57231.5, "ser_std_ns": 3415.886867455737, "ser_mad_ns": 2278.5, "ser_cv": 0.05874158242320937, "ser_min_ns": 51314.0, "ser_max_ns": 66572.0, "ser_p5_ns": 53047.55, "ser_p25_ns": 55948.0, "ser_p50_ns": 57231.5, "ser_p75_ns": 60500.0, "ser_p95_ns": 64296.6, "ser_p99_ns": 65902.24, "ser_ci_low_ns": 57473.47554347826, "ser_ci_high_ns": 58855.72907608696, "deser_mean_ns": 98682.01086956522, "deser_median_ns": 97167.0, "deser_std_ns": 7195.134012749103, "deser_mad_ns": 4599.5, "deser_cv": 0.07291231653415946, "deser_min_ns": 82757.0, "deser_max_ns": 117562.0, "deser_p5_ns": 89118.95, "deser_p25_ns": 93806.75, "deser_p50_ns": 97167.0, "deser_p75_ns": 103591.5, "deser_p95_ns": 111948.55, "deser_p99_ns": 116850.38, "deser_ci_low_ns": 97241.38641304347, "deser_ci_high_ns": 100217.33777173913, "total_mean_ns": 156833.09782608695, "total_median_ns": 154718.0, "total_std_ns": 9852.840996059034, "total_mad_ns": 6424.0, "total_cv": 0.06282373512117259, "total_min_ns": 134213.0, "total_max_ns": 184134.0, "total_p5_ns": 142668.5, "total_p25_ns": 150392.75, "total_p50_ns": 154718.0, "total_p75_ns": 163330.5, "total_p95_ns": 172979.65, "total_p99_ns": 179481.17, "total_ci_low_ns": 154811.1785326087, "total_ci_high_ns": 158878.15135869567, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.5029434303783}, {"serializer": "fory", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "1.3.0", "avg_time_ser_ns": 29027.510869565216, "avg_time_deser_ns": 30331.33695652174, "avg_time_total_ns": 59358.84782608696, "median_size_bytes": 12334.0, "avg_ops_per_sec": 16846.688179155004, "min_ops_per_sec": 13375.779139134855, "max_ops_per_sec": 19135.459920779194, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 29027.510869565216, "ser_median_ns": 28292.0, "ser_std_ns": 2635.1877323059807, "ser_mad_ns": 1479.0, "ser_cv": 0.09078242168772811, "ser_min_ns": 25132.0, "ser_max_ns": 37319.0, "ser_p5_ns": 26172.8, "ser_p25_ns": 27131.5, "ser_p50_ns": 28292.0, "ser_p75_ns": 30412.0, "ser_p95_ns": 33722.3, "ser_p99_ns": 36883.11, "ser_ci_low_ns": 28526.903260869563, "ser_ci_high_ns": 29603.642934782605, "deser_mean_ns": 30331.33695652174, "deser_median_ns": 29753.0, "deser_std_ns": 2394.691433366059, "deser_mad_ns": 1313.0, "deser_cv": 0.07895106756417344, "deser_min_ns": 27022.0, "deser_max_ns": 37443.0, "deser_p5_ns": 27478.65, "deser_p25_ns": 28486.25, "deser_p50_ns": 29753.0, "deser_p75_ns": 31431.75, "deser_p95_ns": 35033.1, "deser_p99_ns": 37386.58, "deser_ci_low_ns": 29855.252445652175, "deser_ci_high_ns": 30823.023097826088, "total_mean_ns": 59358.84782608696, "total_median_ns": 58242.5, "total_std_ns": 4845.497134668757, "total_mad_ns": 2765.5, "total_cv": 0.0816305793007536, "total_min_ns": 52259.0, "total_max_ns": 74762.0, "total_p5_ns": 53596.6, "total_p25_ns": 55732.25, "total_p50_ns": 58242.5, "total_p75_ns": 61449.25, "total_p95_ns": 68473.55, "total_p99_ns": 73629.96, "total_ci_low_ns": 58365.672554347824, "total_ci_high_ns": 60366.67934782609, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "gson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.12.1", "avg_time_ser_ns": 285873.6595744681, "avg_time_deser_ns": 110250.32978723405, "avg_time_total_ns": 396123.9893617021, "median_size_bytes": 25446.0, "avg_ops_per_sec": 2524.462104936787, "min_ops_per_sec": 2278.0963315814774, "max_ops_per_sec": 2770.221229867417, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 285873.6595744681, "ser_median_ns": 282558.5, "ser_std_ns": 12882.540883878453, "ser_mad_ns": 9099.5, "ser_cv": 0.04506375614687453, "ser_min_ns": 262011.0, "ser_max_ns": 317043.0, "ser_p5_ns": 267358.15, "ser_p25_ns": 276596.0, "ser_p50_ns": 282558.5, "ser_p75_ns": 297233.0, "ser_p95_ns": 306796.8, "ser_p99_ns": 316699.83, "ser_ci_low_ns": 283381.87260638294, "ser_ci_high_ns": 288526.18484042556, "deser_mean_ns": 110250.32978723405, "deser_median_ns": 108789.0, "deser_std_ns": 6293.527143091034, "deser_mad_ns": 3844.0, "deser_cv": 0.05708397566915728, "deser_min_ns": 97367.0, "deser_max_ns": 127338.0, "deser_p5_ns": 102414.75, "deser_p25_ns": 105598.75, "deser_p50_ns": 108789.0, "deser_p75_ns": 114671.75, "deser_p95_ns": 121311.59999999999, "deser_p99_ns": 126456.36, "deser_ci_low_ns": 109031.90638297872, "deser_ci_high_ns": 111518.86888297871, "total_mean_ns": 396123.9893617021, "total_median_ns": 392470.5, "total_std_ns": 17498.396585527535, "total_mad_ns": 12598.5, "total_cv": 0.04417403907731953, "total_min_ns": 360982.0, "total_max_ns": 438963.0, "total_p5_ns": 371111.25, "total_p25_ns": 383651.25, "total_p50_ns": 392470.5, "total_p75_ns": 408016.0, "total_p95_ns": 426083.45, "total_p99_ns": 435424.35, "total_ci_low_ns": 392687.9220744681, "total_ci_high_ns": 399869.71436170215, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.00217252100977}, {"serializer": "jackson-cbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "java", "serializer_version": "2.18.3", "avg_time_ser_ns": 52810.83505154639, "avg_time_deser_ns": 105115.80412371134, "avg_time_total_ns": 157926.63917525773, "median_size_bytes": 20047.0, "avg_ops_per_sec": 6332.053953799767, "min_ops_per_sec": 5659.085378621107, "max_ops_per_sec": 6958.506426180685, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 52810.83505154639, "ser_median_ns": 52065.0, "ser_std_ns": 3343.7521142685287, "ser_mad_ns": 2511.0, "ser_cv": 0.06331564556789976, "ser_min_ns": 47561.0, "ser_max_ns": 60398.0, "ser_p5_ns": 48531.6, "ser_p25_ns": 50044.0, "ser_p50_ns": 52065.0, "ser_p75_ns": 55368.0, "ser_p95_ns": 59082.6, "ser_p99_ns": 60264.56, "ser_ci_low_ns": 52184.41469072165, "ser_ci_high_ns": 53485.87603092784, "deser_mean_ns": 105115.80412371134, "deser_median_ns": 104146.0, "deser_std_ns": 5020.755078171292, "deser_mad_ns": 3642.0, "deser_cv": 0.047764036245799335, "deser_min_ns": 94802.0, "deser_max_ns": 116496.0, "deser_p5_ns": 98231.8, "deser_p25_ns": 101555.0, "deser_p50_ns": 104146.0, "deser_p75_ns": 109456.0, "deser_p95_ns": 113155.4, "deser_p99_ns": 116326.08, "deser_ci_low_ns": 104125.95644329897, "deser_ci_high_ns": 106088.84896907218, "total_mean_ns": 157926.63917525773, "total_median_ns": 156306.0, "total_std_ns": 7805.731695077191, "total_mad_ns": 5700.0, "total_cv": 0.04942631424211369, "total_min_ns": 143709.0, "total_max_ns": 176707.0, "total_p5_ns": 147236.8, "total_p25_ns": 151272.0, "total_p50_ns": 156306.0, "total_p75_ns": 163688.0, "total_p95_ns": 171019.6, "total_p99_ns": 176003.32, "total_ci_low_ns": 156358.2930412371, "total_ci_high_ns": 159517.32474226804, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "fory", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.022731454801562}], "pareto_front": [{"serializer": "kryo", "test_data": "message", "mode": "bytes", "time": 41076.41758241758, "size": 46.0}, {"serializer": "protobuf", "test_data": "message", "mode": "bytes", "time": 22478.563218390806, "size": 50.0}, {"serializer": "avro", "test_data": "message", "mode": "bytes", "time": 67761.60227272728, "size": 44.0}, {"serializer": "kryo", "test_data": "message", "mode": "stream", "time": 28595.80487804878, "size": 46.0}, {"serializer": "protobuf", "test_data": "message", "mode": "stream", "time": 24545.627906976744, "size": 50.0}, {"serializer": "protostuff", "test_data": "message", "mode": "stream", "time": 22628.243902439026, "size": 52.0}, {"serializer": "avro", "test_data": "message", "mode": "stream", "time": 49980.574712643676, "size": 44.0}, {"serializer": "kryo", "test_data": "document", "mode": "bytes", "time": 21426.39285714286, "size": 126.0}, {"serializer": "protostuff", "test_data": "document", "mode": "bytes", "time": 16826.79761904762, "size": 155.0}, {"serializer": "avro", "test_data": "document", "mode": "bytes", "time": 31193.717647058824, "size": 114.0}, {"serializer": "protostuff", "test_data": "document", "mode": "stream", "time": 12022.615384615385, "size": 155.0}, {"serializer": "avro", "test_data": "document", "mode": "stream", "time": 26686.170731707316, "size": 114.0}, {"serializer": "kryo", "test_data": "document", "mode": "stream", "time": 15138.70588235294, "size": 126.0}, {"serializer": "protostuff", "test_data": "telemetry", "mode": "bytes", "time": 13736.531645569621, "size": 324.0}, {"serializer": "bson", "test_data": "telemetry", "mode": "bytes", "time": 12367.26923076923, "size": 463.0}, {"serializer": "avro", "test_data": "telemetry", "mode": "bytes", "time": 18310.951807228917, "size": 288.0}, {"serializer": "avro", "test_data": "telemetry", "mode": "stream", "time": 12658.736842105263, "size": 288.0}, {"serializer": "protostuff", "test_data": "telemetry", "mode": "stream", "time": 11300.233333333334, "size": 324.0}, {"serializer": "dsl-json", "test_data": "strings", "mode": "bytes", "time": 5056.056179775281, "size": 411.0}, {"serializer": "jackson-smile", "test_data": "strings", "mode": "bytes", "time": 6417.945054945055, "size": 350.0}, {"serializer": "avro", "test_data": "strings", "mode": "bytes", "time": 6618.903225806452, "size": 338.0}, {"serializer": "kryo", "test_data": "strings", "mode": "stream", "time": 5982.614583333333, "size": 341.0}, {"serializer": "protostuff", "test_data": "strings", "mode": "stream", "time": 5144.728260869565, "size": 368.0}, {"serializer": "jackson-smile", "test_data": "strings", "mode": "stream", "time": 5977.782608695652, "size": 350.0}, {"serializer": "avro", "test_data": "strings", "mode": "stream", "time": 7118.8, "size": 338.0}, {"serializer": "dsl-json", "test_data": "strings", "mode": "stream", "time": 5139.581395348837, "size": 411.0}, {"serializer": "kryo", "test_data": "event", "mode": "bytes", "time": 6125.593406593406, "size": 112.0}, {"serializer": "protostuff", "test_data": "event", "mode": "bytes", "time": 5995.301204819277, "size": 123.0}, {"serializer": "avro", "test_data": "event", "mode": "bytes", "time": 8486.19540229885, "size": 105.0}, {"serializer": "kryo", "test_data": "event", "mode": "stream", "time": 5921.83908045977, "size": 112.0}, {"serializer": "avro", "test_data": "event", "mode": "stream", "time": 8148.730337078651, "size": 105.0}, {"serializer": "protostuff", "test_data": "event", "mode": "stream", "time": 3746.090909090909, "size": 123.0}]} \ No newline at end of file diff --git a/dashboard/public/data/stats_java_latest.json.gz b/dashboard/public/data/stats_java_latest.json.gz new file mode 100644 index 00000000..7c71d37b Binary files /dev/null and b/dashboard/public/data/stats_java_latest.json.gz differ diff --git a/dashboard/public/data/stats_javascript_latest.json b/dashboard/public/data/stats_javascript_latest.json deleted file mode 100644 index 3ce487ee..00000000 --- a/dashboard/public/data/stats_javascript_latest.json +++ /dev/null @@ -1 +0,0 @@ -{"schema_version": "2.0", "generated": "2026-07-24T20:23:58.528827", "language": "javascript", "questions": {"Q1": "How fast?", "Q2": "How compact?", "Q3": "How stable?", "Q4": "Under which workloads does it win?"}, "groups": [{"serializer": "cbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "9.0.2", "avg_time_ser_ns": 55995.0, "avg_time_deser_ns": 41238.916666666664, "avg_time_total_ns": 97233.91666666667, "median_size_bytes": 124.0, "avg_ops_per_sec": 10284.477210027022, "min_ops_per_sec": 6439.398817726377, "max_ops_per_sec": 16626.762436818302, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 55995.0, "ser_median_ns": 54242.0, "ser_std_ns": 11570.059559780471, "ser_mad_ns": 5708.5, "ser_cv": 0.20662665523315424, "ser_min_ns": 34607.0, "ser_max_ns": 93431.0, "ser_p5_ns": 39545.2, "ser_p25_ns": 49068.75, "ser_p50_ns": 54242.0, "ser_p75_ns": 60127.25, "ser_p95_ns": 80577.75, "ser_p99_ns": 87963.79000000001, "ser_ci_low_ns": 53699.415773809524, "ser_ci_high_ns": 58419.80803571429, "deser_mean_ns": 41238.916666666664, "deser_median_ns": 38237.0, "deser_std_ns": 9493.086867298767, "deser_mad_ns": 5599.0, "deser_cv": 0.2301972901963259, "deser_min_ns": 25537.0, "deser_max_ns": 67634.0, "deser_p5_ns": 29635.35, "deser_p25_ns": 35754.25, "deser_p50_ns": 38237.0, "deser_p75_ns": 45096.5, "deser_p95_ns": 61566.749999999985, "deser_p99_ns": 66777.44, "deser_ci_low_ns": 39355.68898809524, "deser_ci_high_ns": 43328.95773809523, "total_mean_ns": 97233.91666666667, "total_median_ns": 94034.5, "total_std_ns": 18472.011333469218, "total_mad_ns": 9918.0, "total_cv": 0.18997497958242504, "total_min_ns": 60144.0, "total_max_ns": 155294.0, "total_p5_ns": 71188.85, "total_p25_ns": 86249.0, "total_p50_ns": 94034.5, "total_p75_ns": 105394.75, "total_p95_ns": 137054.94999999998, "total_p99_ns": 147814.87000000002, "total_ci_low_ns": 93568.0455357143, "total_ci_high_ns": 101191.19285714284, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.179305353861114}, {"serializer": "msgpackr", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "1.12.1", "avg_time_ser_ns": 4640.738636363636, "avg_time_deser_ns": 9024.261363636364, "avg_time_total_ns": 13665.0, "median_size_bytes": 126.0, "avg_ops_per_sec": 73179.65605561654, "min_ops_per_sec": 38651.82436611008, "max_ops_per_sec": 155400.1554001554, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 4640.738636363636, "ser_median_ns": 3599.5, "ser_std_ns": 2258.6005966176926, "ser_mad_ns": 307.5, "ser_cv": 0.4866898943456713, "ser_min_ns": 2013.0, "ser_max_ns": 12312.0, "ser_p5_ns": 2508.8, "ser_p25_ns": 3374.25, "ser_p50_ns": 3599.5, "ser_p75_ns": 4791.5, "ser_p95_ns": 9170.749999999987, "ser_p99_ns": 12071.88, "ser_ci_low_ns": 4193.3460227272735, "ser_ci_high_ns": 5150.106818181817, "deser_mean_ns": 9024.261363636364, "deser_median_ns": 8964.0, "deser_std_ns": 2040.0195936309335, "deser_mad_ns": 1351.0, "deser_cv": 0.22605945366911437, "deser_min_ns": 4393.0, "deser_max_ns": 14823.0, "deser_p5_ns": 6036.75, "deser_p25_ns": 7563.75, "deser_p50_ns": 8964.0, "deser_p75_ns": 10183.25, "deser_p95_ns": 12938.899999999994, "deser_p99_ns": 13869.479999999996, "deser_ci_low_ns": 8609.563636363637, "deser_ci_high_ns": 9452.998295454545, "total_mean_ns": 13665.0, "total_median_ns": 12662.0, "total_std_ns": 3790.1035348124333, "total_mad_ns": 1899.5, "total_cv": 0.27735847309275036, "total_min_ns": 6435.0, "total_max_ns": 25872.0, "total_p5_ns": 9533.050000000001, "total_p25_ns": 11021.25, "total_p50_ns": 12662.0, "total_p75_ns": 15941.75, "total_p95_ns": 21459.099999999988, "total_p99_ns": 23667.419999999987, "total_ci_low_ns": 12917.754545454545, "total_ci_high_ns": 14471.045738636363, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.9928359683794467, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.03192868252622}, {"serializer": "protobufjs", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "7.6.5", "avg_time_ser_ns": 7715.535714285715, "avg_time_deser_ns": 15412.452380952382, "avg_time_total_ns": 23127.988095238095, "median_size_bytes": 52.0, "avg_ops_per_sec": 43237.65629254598, "min_ops_per_sec": 26735.82332967944, "max_ops_per_sec": 72987.37318443909, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 7715.535714285715, "ser_median_ns": 7480.0, "ser_std_ns": 1754.1870285802602, "ser_mad_ns": 1146.5, "ser_cv": 0.22735777443584274, "ser_min_ns": 5089.0, "ser_max_ns": 13316.0, "ser_p5_ns": 5423.15, "ser_p25_ns": 6492.25, "ser_p50_ns": 7480.0, "ser_p75_ns": 8796.5, "ser_p95_ns": 10178.149999999998, "ser_p99_ns": 13100.2, "ser_ci_low_ns": 7361.197916666666, "ser_ci_high_ns": 8084.075595238095, "deser_mean_ns": 15412.452380952382, "deser_median_ns": 13795.0, "deser_std_ns": 4146.785360858506, "deser_mad_ns": 1891.5, "deser_cv": 0.2690542204680773, "deser_min_ns": 8612.0, "deser_max_ns": 28136.0, "deser_p5_ns": 11119.3, "deser_p25_ns": 12634.0, "deser_p50_ns": 13795.0, "deser_p75_ns": 17812.25, "deser_p95_ns": 24281.8, "deser_p99_ns": 26023.650000000005, "deser_ci_low_ns": 14570.68005952381, "deser_ci_high_ns": 16406.29642857143, "total_mean_ns": 23127.988095238095, "total_median_ns": 22040.0, "total_std_ns": 5158.433491302754, "total_mad_ns": 3688.0, "total_cv": 0.22303857430490648, "total_min_ns": 13701.0, "total_max_ns": 37403.0, "total_p5_ns": 17036.55, "total_p25_ns": 19293.75, "total_p50_ns": 22040.0, "total_p75_ns": 26588.25, "total_p95_ns": 32038.249999999996, "total_p99_ns": 35040.82000000001, "total_ci_low_ns": 22100.78392857143, "total_ci_high_ns": 24212.228869047616, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.849459159572365}, {"serializer": "simdjson-parse+JSON.stringify", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "0.9.2", "avg_time_ser_ns": 2517.5833333333335, "avg_time_deser_ns": 11793.202380952382, "avg_time_total_ns": 14310.785714285714, "median_size_bytes": 168.0, "avg_ops_per_sec": 69877.36522403183, "min_ops_per_sec": 39968.02557953637, "max_ops_per_sec": 116808.78402055835, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 2517.5833333333335, "ser_median_ns": 2382.5, "ser_std_ns": 1095.227150432355, "ser_mad_ns": 765.5, "ser_cv": 0.43503114114687563, "ser_min_ns": 913.0, "ser_max_ns": 5597.0, "ser_p5_ns": 1198.45, "ser_p25_ns": 1663.75, "ser_p50_ns": 2382.5, "ser_p75_ns": 3177.0, "ser_p95_ns": 4700.7, "ser_p99_ns": 5372.070000000001, "ser_ci_low_ns": 2291.882142857143, "ser_ci_high_ns": 2752.105952380952, "deser_mean_ns": 11793.202380952382, "deser_median_ns": 10453.0, "deser_std_ns": 3285.397013583249, "deser_mad_ns": 782.5, "deser_cv": 0.2785839594247624, "deser_min_ns": 7320.0, "deser_max_ns": 22539.0, "deser_p5_ns": 9013.05, "deser_p25_ns": 10000.25, "deser_p50_ns": 10453.0, "deser_p75_ns": 11745.5, "deser_p95_ns": 19553.899999999998, "deser_p99_ns": 21542.170000000002, "deser_ci_low_ns": 11110.027083333332, "deser_ci_high_ns": 12511.426785714286, "total_mean_ns": 14310.785714285714, "total_median_ns": 13217.0, "total_std_ns": 3363.7853751263533, "total_mad_ns": 1639.5, "total_cv": 0.23505245919296108, "total_min_ns": 8561.0, "total_max_ns": 25020.0, "total_p5_ns": 10706.3, "total_p25_ns": 12083.5, "total_p50_ns": 13217.0, "total_p75_ns": 15674.25, "total_p95_ns": 21750.899999999994, "total_p99_ns": 23652.99, "total_ci_low_ns": 13610.344047619048, "total_ci_high_ns": 15057.818749999999, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.9994824016563147, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.6156830237101523}, {"serializer": "flatbuffers", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "24.12.23", "avg_time_ser_ns": 15813.325301204819, "avg_time_deser_ns": 6169.9277108433735, "avg_time_total_ns": 21983.253012048193, "median_size_bytes": 104.0, "avg_ops_per_sec": 45489.17302875683, "min_ops_per_sec": 27498.21261617995, "max_ops_per_sec": 79782.99026647519, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 15813.325301204819, "ser_median_ns": 14632.0, "ser_std_ns": 4385.207259635717, "ser_mad_ns": 1768.0, "ser_cv": 0.2773108866167198, "ser_min_ns": 8863.0, "ser_max_ns": 29493.0, "ser_p5_ns": 11711.7, "ser_p25_ns": 13002.0, "ser_p50_ns": 14632.0, "ser_p75_ns": 17032.5, "ser_p95_ns": 25816.799999999996, "ser_p99_ns": 29083.819999999996, "ser_ci_low_ns": 14906.739457831325, "ser_ci_high_ns": 16769.179518072287, "deser_mean_ns": 6169.9277108433735, "deser_median_ns": 5806.0, "deser_std_ns": 1376.210135180658, "deser_mad_ns": 834.0, "deser_cv": 0.22305125759610278, "deser_min_ns": 3671.0, "deser_max_ns": 11468.0, "deser_p5_ns": 4669.5, "deser_p25_ns": 5104.5, "deser_p50_ns": 5806.0, "deser_p75_ns": 6989.0, "deser_p95_ns": 8590.499999999998, "deser_p99_ns": 9794.379999999985, "deser_ci_low_ns": 5896.584939759036, "deser_ci_high_ns": 6465.979819277109, "total_mean_ns": 21983.253012048193, "total_median_ns": 20125.0, "total_std_ns": 5099.690253251336, "total_mad_ns": 2356.0, "total_cv": 0.23198069232321475, "total_min_ns": 12534.0, "total_max_ns": 36366.0, "total_p5_ns": 16988.3, "total_p25_ns": 18225.0, "total_p50_ns": 20125.0, "total_p75_ns": 24226.0, "total_p95_ns": 32327.199999999993, "total_p99_ns": 36192.159999999996, "total_ci_low_ns": 20943.474397590362, "total_ci_high_ns": 23093.778313253013, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.604500919403248}, {"serializer": "v8-serializer", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "v8-13.6.233.17-node.48", "avg_time_ser_ns": 5813.581081081081, "avg_time_deser_ns": 4698.310810810811, "avg_time_total_ns": 10511.891891891892, "median_size_bytes": 135.0, "avg_ops_per_sec": 95130.35429629248, "min_ops_per_sec": 79630.5144131231, "max_ops_per_sec": 125093.82036527396, "runs": 74, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 25, "ser_mean_ns": 5813.581081081081, "ser_median_ns": 5782.5, "ser_std_ns": 670.6254902181411, "ser_mad_ns": 339.0, "ser_cv": 0.11535497327121359, "ser_min_ns": 4190.0, "ser_max_ns": 7543.0, "ser_p5_ns": 4484.65, "ser_p25_ns": 5515.0, "ser_p50_ns": 5782.5, "ser_p75_ns": 6153.25, "ser_p95_ns": 6951.049999999999, "ser_p99_ns": 7343.709999999999, "ser_ci_low_ns": 5648.059797297297, "ser_ci_high_ns": 5961.753716216216, "deser_mean_ns": 4698.310810810811, "deser_median_ns": 4681.5, "deser_std_ns": 347.6296614579385, "deser_mad_ns": 235.5, "deser_cv": 0.07399035003347221, "deser_min_ns": 3804.0, "deser_max_ns": 5639.0, "deser_p5_ns": 4177.1, "deser_p25_ns": 4467.5, "deser_p50_ns": 4681.5, "deser_p75_ns": 4938.0, "deser_p95_ns": 5242.5, "deser_p99_ns": 5519.28, "deser_ci_low_ns": 4622.618243243243, "deser_ci_high_ns": 4777.086148648648, "total_mean_ns": 10511.891891891892, "total_median_ns": 10439.0, "total_std_ns": 929.4218643066055, "total_mad_ns": 519.5, "total_cv": 0.08841623124220806, "total_min_ns": 7994.0, "total_max_ns": 12558.0, "total_p5_ns": 8953.35, "total_p25_ns": 9995.25, "total_p50_ns": 10439.0, "total_p75_ns": 11019.75, "total_p95_ns": 12228.35, "total_p99_ns": 12539.02, "total_ci_low_ns": 10292.38277027027, "total_ci_high_ns": 10715.095608108108, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.9952996474735605, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.136454046244728}, {"serializer": "google-protobuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "3.21.4", "avg_time_ser_ns": 639.925, "avg_time_deser_ns": 9959.85, "avg_time_total_ns": 10599.775, "median_size_bytes": 52.0, "avg_ops_per_sec": 94341.6251760061, "min_ops_per_sec": 57924.00370713624, "max_ops_per_sec": 142612.66400456362, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 639.925, "ser_median_ns": 614.0, "ser_std_ns": 127.97772501988703, "ser_mad_ns": 75.5, "ser_cv": 0.19998863151132873, "ser_min_ns": 411.0, "ser_max_ns": 1077.0, "ser_p5_ns": 464.4, "ser_p25_ns": 550.25, "ser_p50_ns": 614.0, "ser_p75_ns": 719.5, "ser_p95_ns": 886.3, "ser_p99_ns": 969.5599999999991, "ser_ci_low_ns": 611.6734375, "ser_ci_high_ns": 667.1015625, "deser_mean_ns": 9959.85, "deser_median_ns": 9725.0, "deser_std_ns": 1989.937007463022, "deser_mad_ns": 846.0, "deser_cv": 0.19979588120935776, "deser_min_ns": 6420.0, "deser_max_ns": 16496.0, "deser_p5_ns": 7022.1, "deser_p25_ns": 8910.5, "deser_p50_ns": 9725.0, "deser_p75_ns": 10558.25, "deser_p95_ns": 14387.749999999998, "deser_p99_ns": 15877.429999999995, "deser_ci_low_ns": 9529.27125, "deser_ci_high_ns": 10398.2090625, "total_mean_ns": 10599.775, "total_median_ns": 10305.5, "total_std_ns": 2030.3077522846977, "total_mad_ns": 876.5, "total_cv": 0.19154253295798238, "total_min_ns": 7012.0, "total_max_ns": 17264.0, "total_p5_ns": 7695.65, "total_p25_ns": 9541.25, "total_p50_ns": 10305.5, "total_p75_ns": 11213.75, "total_p95_ns": 15015.3, "total_p99_ns": 16583.019999999993, "total_ci_low_ns": 10173.705, "total_ci_high_ns": 11044.704375, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.98125, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.1334511530182803}, {"serializer": "protobuf-es", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "2.12.1", "avg_time_ser_ns": 18391.296703296703, "avg_time_deser_ns": 15724.10989010989, "avg_time_total_ns": 34115.406593406595, "median_size_bytes": 50.0, "avg_ops_per_sec": 29312.269729573374, "min_ops_per_sec": 17713.536684734474, "max_ops_per_sec": 53259.48018747337, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 18391.296703296703, "ser_median_ns": 17765.0, "ser_std_ns": 4662.198328624969, "ser_mad_ns": 3281.0, "ser_cv": 0.2535002508979834, "ser_min_ns": 9139.0, "ser_max_ns": 30059.0, "ser_p5_ns": 11834.5, "ser_p25_ns": 15304.0, "ser_p50_ns": 17765.0, "ser_p75_ns": 21786.5, "ser_p95_ns": 26611.5, "ser_p99_ns": 29747.6, "ser_ci_low_ns": 17448.40576923077, "ser_ci_high_ns": 19346.728296703295, "deser_mean_ns": 15724.10989010989, "deser_median_ns": 14079.0, "deser_std_ns": 3887.270220291839, "deser_mad_ns": 1790.0, "deser_cv": 0.24721718732942996, "deser_min_ns": 8579.0, "deser_max_ns": 26741.0, "deser_p5_ns": 11112.5, "deser_p25_ns": 13151.5, "deser_p50_ns": 14079.0, "deser_p75_ns": 18146.0, "deser_p95_ns": 23044.0, "deser_p99_ns": 26699.6, "deser_ci_low_ns": 14992.29532967033, "deser_ci_high_ns": 16512.57912087912, "total_mean_ns": 34115.406593406595, "total_median_ns": 33449.0, "total_std_ns": 7637.105655908631, "total_mad_ns": 5015.0, "total_cv": 0.22386090093924416, "total_min_ns": 18776.0, "total_max_ns": 56454.0, "total_p5_ns": 22833.5, "total_p25_ns": 29021.0, "total_p50_ns": 33449.0, "total_p75_ns": 38896.5, "total_p95_ns": 47704.0, "total_p99_ns": 53398.49999999998, "total_ci_low_ns": 32565.636813186815, "total_ci_high_ns": 35761.7793956044, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.291001820003038}, {"serializer": "sia", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "2.3.0", "avg_time_ser_ns": 10592.847058823529, "avg_time_deser_ns": 7377.894117647059, "avg_time_total_ns": 17970.741176470587, "median_size_bytes": 162.0, "avg_ops_per_sec": 55646.00759535271, "min_ops_per_sec": 34481.56960104824, "max_ops_per_sec": 81920.20971573687, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 10592.847058823529, "ser_median_ns": 9994.0, "ser_std_ns": 2416.383072880201, "ser_mad_ns": 1296.0, "ser_cv": 0.22811460030166536, "ser_min_ns": 7245.0, "ser_max_ns": 17982.0, "ser_p5_ns": 7915.4, "ser_p25_ns": 8839.0, "ser_p50_ns": 9994.0, "ser_p75_ns": 11503.0, "ser_p95_ns": 15295.8, "ser_p99_ns": 17182.319999999996, "ser_ci_low_ns": 10119.519411764706, "ser_ci_high_ns": 11150.063529411766, "deser_mean_ns": 7377.894117647059, "deser_median_ns": 6696.0, "deser_std_ns": 2051.1485169668877, "deser_mad_ns": 1461.0, "deser_cv": 0.27801273429240203, "deser_min_ns": 4216.0, "deser_max_ns": 13898.0, "deser_p5_ns": 5061.8, "deser_p25_ns": 5517.0, "deser_p50_ns": 6696.0, "deser_p75_ns": 8837.0, "deser_p95_ns": 10979.199999999999, "deser_p99_ns": 12385.159999999994, "deser_ci_low_ns": 6971.708235294118, "deser_ci_high_ns": 7821.309705882352, "total_mean_ns": 17970.741176470587, "total_median_ns": 16345.0, "total_std_ns": 4148.08013868763, "total_mad_ns": 2354.0, "total_cv": 0.2308240989035436, "total_min_ns": 12207.0, "total_max_ns": 29001.0, "total_p5_ns": 13350.6, "total_p25_ns": 14617.0, "total_p50_ns": 16345.0, "total_p75_ns": 20801.0, "total_p95_ns": 25220.8, "total_p99_ns": 27667.919999999995, "total_ci_low_ns": 17107.74529411765, "total_ci_high_ns": 18871.57176470588, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.207430871334195}, {"serializer": "JSON.stringify", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "node-24.15.0", "avg_time_ser_ns": 2537.836956521739, "avg_time_deser_ns": 2315.663043478261, "avg_time_total_ns": 4853.5, "median_size_bytes": 168.0, "avg_ops_per_sec": 206036.8806016277, "min_ops_per_sec": 106826.19378271552, "max_ops_per_sec": 530785.5626326964, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 2537.836956521739, "ser_median_ns": 2475.0, "ser_std_ns": 995.5930286111926, "ser_mad_ns": 685.5, "ser_cv": 0.3922998386687984, "ser_min_ns": 974.0, "ser_max_ns": 5195.0, "ser_p5_ns": 1180.5, "ser_p25_ns": 1671.75, "ser_p50_ns": 2475.0, "ser_p75_ns": 3044.5, "ser_p95_ns": 4321.25, "ser_p99_ns": 4907.440000000001, "ser_ci_low_ns": 2343.3250000000003, "ser_ci_high_ns": 2749.4638586956517, "deser_mean_ns": 2315.663043478261, "deser_median_ns": 2203.5, "deser_std_ns": 889.1460686335288, "deser_mad_ns": 640.5, "deser_cv": 0.38397040153906825, "deser_min_ns": 910.0, "deser_max_ns": 4635.0, "deser_p5_ns": 1131.75, "deser_p25_ns": 1649.5, "deser_p50_ns": 2203.5, "deser_p75_ns": 2878.5, "deser_p95_ns": 4164.600000000001, "deser_p99_ns": 4594.96, "deser_ci_low_ns": 2139.4508152173917, "deser_ci_high_ns": 2518.9798913043473, "total_mean_ns": 4853.5, "total_median_ns": 4544.5, "total_std_ns": 1627.4416280614346, "total_mad_ns": 1132.5, "total_cv": 0.3353129964070124, "total_min_ns": 1884.0, "total_max_ns": 9361.0, "total_p5_ns": 2368.55, "total_p25_ns": 3900.5, "total_p50_ns": 4544.5, "total_p75_ns": 5916.25, "total_p95_ns": 7992.25, "total_p99_ns": 8896.900000000001, "total_ci_low_ns": 4529.232336956522, "total_ci_high_ns": 5190.229347826087, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "@msgpack/msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "3.1.3", "avg_time_ser_ns": 8475.6625, "avg_time_deser_ns": 9553.2375, "avg_time_total_ns": 18028.9, "median_size_bytes": 124.0, "avg_ops_per_sec": 55466.501006716986, "min_ops_per_sec": 31810.66293421555, "max_ops_per_sec": 86065.92649969876, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 8475.6625, "ser_median_ns": 8445.0, "ser_std_ns": 1285.980598547961, "ser_mad_ns": 993.0, "ser_cv": 0.15172626311488466, "ser_min_ns": 6407.0, "ser_max_ns": 12212.0, "ser_p5_ns": 6718.5, "ser_p25_ns": 7492.75, "ser_p50_ns": 8445.0, "ser_p75_ns": 9436.5, "ser_p95_ns": 10420.55, "ser_p99_ns": 11889.679999999997, "ser_ci_low_ns": 8202.751875, "ser_ci_high_ns": 8757.946875, "deser_mean_ns": 9553.2375, "deser_median_ns": 7897.0, "deser_std_ns": 3966.2183380274296, "deser_mad_ns": 1456.0, "deser_cv": 0.41517007590645894, "deser_min_ns": 5033.0, "deser_max_ns": 21850.0, "deser_p5_ns": 5483.35, "deser_p25_ns": 6859.0, "deser_p50_ns": 7897.0, "deser_p75_ns": 11652.0, "deser_p95_ns": 17195.349999999995, "deser_p99_ns": 21090.809999999994, "deser_ci_low_ns": 8764.745625, "deser_ci_high_ns": 10419.797812499999, "total_mean_ns": 18028.9, "total_median_ns": 16000.5, "total_std_ns": 4819.588468171494, "total_mad_ns": 2456.0, "total_cv": 0.2673257086217958, "total_min_ns": 11619.0, "total_max_ns": 31436.0, "total_p5_ns": 12806.8, "total_p25_ns": 14379.0, "total_p50_ns": 16000.5, "total_p75_ns": 21404.0, "total_p95_ns": 27463.1, "total_p99_ns": 31040.209999999995, "total_ci_low_ns": 17018.169375, "total_ci_high_ns": 19034.622499999998, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.753571051297055}, {"serializer": "json-pack-msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "18.28.0", "avg_time_ser_ns": 6783.256756756757, "avg_time_deser_ns": 6443.108108108108, "avg_time_total_ns": 13226.364864864865, "median_size_bytes": 131.0, "avg_ops_per_sec": 75606.56387579681, "min_ops_per_sec": 60339.10577445242, "max_ops_per_sec": 90163.1953836444, "runs": 74, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 25, "ser_mean_ns": 6783.256756756757, "ser_median_ns": 6641.0, "ser_std_ns": 862.8293385249914, "ser_mad_ns": 645.0, "ser_cv": 0.12719986423417232, "ser_min_ns": 5116.0, "ser_max_ns": 8949.0, "ser_p5_ns": 5718.8, "ser_p25_ns": 6012.0, "ser_p50_ns": 6641.0, "ser_p75_ns": 7336.0, "ser_p95_ns": 8087.75, "ser_p99_ns": 8832.199999999999, "ser_ci_low_ns": 6591.022972972973, "ser_ci_high_ns": 6976.035135135135, "deser_mean_ns": 6443.108108108108, "deser_median_ns": 6406.5, "deser_std_ns": 693.7813908498285, "deser_mad_ns": 385.5, "deser_cv": 0.10767806145868686, "deser_min_ns": 5251.0, "deser_max_ns": 8997.0, "deser_p5_ns": 5431.3, "deser_p25_ns": 6003.75, "deser_p50_ns": 6406.5, "deser_p75_ns": 6701.5, "deser_p95_ns": 7682.4999999999945, "deser_p99_ns": 8624.699999999997, "deser_ci_low_ns": 6285.213851351352, "deser_ci_high_ns": 6606.805405405405, "total_mean_ns": 13226.364864864865, "total_median_ns": 13166.5, "total_std_ns": 1381.6752445811344, "total_mad_ns": 1167.5, "total_cv": 0.1044637176350307, "total_min_ns": 11091.0, "total_max_ns": 16573.0, "total_p5_ns": 11472.0, "total_p25_ns": 11965.5, "total_p50_ns": 13166.5, "total_p75_ns": 14029.75, "total_p95_ns": 15922.8, "total_p99_ns": 16378.089999999998, "total_ci_low_ns": 12913.781081081082, "total_ci_high_ns": 13544.45135135135, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.472608019637636}, {"serializer": "flexbuffers", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "24.12.23", "avg_time_ser_ns": 51664.71590909091, "avg_time_deser_ns": 27614.795454545456, "avg_time_total_ns": 79279.51136363637, "median_size_bytes": 199.0, "avg_ops_per_sec": 12613.599438236148, "min_ops_per_sec": 8006.469227135525, "max_ops_per_sec": 20419.414779572417, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 51664.71590909091, "ser_median_ns": 49284.0, "ser_std_ns": 13352.702341283446, "ser_mad_ns": 8506.0, "ser_cv": 0.2584491583149092, "ser_min_ns": 30217.0, "ser_max_ns": 93538.0, "ser_p5_ns": 37249.8, "ser_p25_ns": 40778.0, "ser_p50_ns": 49284.0, "ser_p75_ns": 57580.25, "ser_p95_ns": 77733.04999999996, "ser_p99_ns": 89313.27999999998, "ser_ci_low_ns": 48980.89204545455, "ser_ci_high_ns": 54632.807670454546, "deser_mean_ns": 27614.795454545456, "deser_median_ns": 26884.0, "deser_std_ns": 9287.034650595335, "deser_mad_ns": 7374.5, "deser_cv": 0.336306479831871, "deser_min_ns": 14534.0, "deser_max_ns": 51070.0, "deser_p5_ns": 16265.8, "deser_p25_ns": 19542.75, "deser_p50_ns": 26884.0, "deser_p75_ns": 34001.25, "deser_p95_ns": 46218.69999999997, "deser_p99_ns": 50910.79, "deser_ci_low_ns": 25700.48181818182, "deser_ci_high_ns": 29545.165624999998, "total_mean_ns": 79279.51136363637, "total_median_ns": 76140.0, "total_std_ns": 19983.335555679983, "total_mad_ns": 15733.0, "total_cv": 0.2520617901392095, "total_min_ns": 48973.0, "total_max_ns": 124899.0, "total_p5_ns": 56231.05, "total_p25_ns": 60666.25, "total_p50_ns": 76140.0, "total_p75_ns": 95588.5, "total_p95_ns": 115779.09999999999, "total_p99_ns": 124357.86, "total_ci_low_ns": 75197.48181818183, "total_ci_high_ns": 83452.64346590909, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.286516095417929}, {"serializer": "devalue", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "5.8.1", "avg_time_ser_ns": 13043.024390243903, "avg_time_deser_ns": 6042.378048780488, "avg_time_total_ns": 19085.40243902439, "median_size_bytes": 186.0, "avg_ops_per_sec": 52396.06569444276, "min_ops_per_sec": 31691.703112125244, "max_ops_per_sec": 99970.00899730081, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 13043.024390243903, "ser_median_ns": 12591.0, "ser_std_ns": 2968.075200270286, "ser_mad_ns": 2357.5, "ser_cv": 0.22756035038088152, "ser_min_ns": 6497.0, "ser_max_ns": 21954.0, "ser_p5_ns": 8854.0, "ser_p25_ns": 10853.25, "ser_p50_ns": 12591.0, "ser_p75_ns": 15054.75, "ser_p95_ns": 17224.750000000004, "ser_p99_ns": 20908.289999999997, "ser_ci_low_ns": 12391.903658536585, "ser_ci_high_ns": 13666.552134146343, "deser_mean_ns": 6042.378048780488, "deser_median_ns": 5987.0, "deser_std_ns": 1591.3905608124799, "deser_mad_ns": 983.5, "deser_cv": 0.26337156463317696, "deser_min_ns": 3134.0, "deser_max_ns": 10752.0, "deser_p5_ns": 3709.0, "deser_p25_ns": 4928.5, "deser_p50_ns": 5987.0, "deser_p75_ns": 6930.75, "deser_p95_ns": 8861.1, "deser_p99_ns": 10588.38, "deser_ci_low_ns": 5708.445426829268, "deser_ci_high_ns": 6387.417682926829, "total_mean_ns": 19085.40243902439, "total_median_ns": 19531.0, "total_std_ns": 4161.005709567785, "total_mad_ns": 3103.5, "total_cv": 0.21802032851346506, "total_min_ns": 10003.0, "total_max_ns": 31554.0, "total_p5_ns": 12563.55, "total_p25_ns": 15900.25, "total_p50_ns": 19531.0, "total_p75_ns": 22133.0, "total_p95_ns": 24681.95, "total_p99_ns": 28629.89999999999, "total_ci_low_ns": 18175.901219512194, "total_ci_high_ns": 19979.386280487804, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.584037575412484}, {"serializer": "bebop", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "3.2.3", "avg_time_ser_ns": 5010.166666666667, "avg_time_deser_ns": 4317.961538461538, "avg_time_total_ns": 9328.128205128205, "median_size_bytes": 162.0, "avg_ops_per_sec": 107202.64323235211, "min_ops_per_sec": 88841.50675195451, "max_ops_per_sec": 143041.05278214847, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 5010.166666666667, "ser_median_ns": 4944.0, "ser_std_ns": 644.6292283098417, "ser_mad_ns": 448.5, "ser_cv": 0.12866422839755995, "ser_min_ns": 3633.0, "ser_max_ns": 7304.0, "ser_p5_ns": 4095.4, "ser_p25_ns": 4527.0, "ser_p50_ns": 4944.0, "ser_p75_ns": 5495.25, "ser_p95_ns": 6021.849999999999, "ser_p99_ns": 6537.850000000004, "ser_ci_low_ns": 4874.414102564103, "ser_ci_high_ns": 5148.452884615384, "deser_mean_ns": 4317.961538461538, "deser_median_ns": 4241.5, "deser_std_ns": 592.2117785972267, "deser_mad_ns": 321.5, "deser_cv": 0.13715077666213488, "deser_min_ns": 3191.0, "deser_max_ns": 5926.0, "deser_p5_ns": 3375.0, "deser_p25_ns": 3974.0, "deser_p50_ns": 4241.5, "deser_p75_ns": 4598.75, "deser_p95_ns": 5405.7, "deser_p99_ns": 5871.33, "deser_ci_low_ns": 4191.488141025641, "deser_ci_high_ns": 4450.919551282051, "total_mean_ns": 9328.128205128205, "total_median_ns": 9323.0, "total_std_ns": 958.3093250985104, "total_mad_ns": 694.5, "total_cv": 0.10273329268477174, "total_min_ns": 6991.0, "total_max_ns": 11256.0, "total_p5_ns": 7654.05, "total_p25_ns": 8830.25, "total_p50_ns": 9323.0, "total_p75_ns": 10075.5, "total_p95_ns": 10799.599999999999, "total_p99_ns": 11143.58, "total_ci_low_ns": 9116.19967948718, "total_ci_high_ns": 9533.923397435898, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.967948717948718, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.270198760997954}, {"serializer": "fast-json-stringify", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "6.4.0", "avg_time_ser_ns": 4187.078651685393, "avg_time_deser_ns": 2341.2134831460676, "avg_time_total_ns": 6528.29213483146, "median_size_bytes": 168.0, "avg_ops_per_sec": 153179.41957047803, "min_ops_per_sec": 91793.64787956674, "max_ops_per_sec": 250941.0288582183, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 4187.078651685393, "ser_median_ns": 4022.0, "ser_std_ns": 974.2860932348816, "ser_mad_ns": 597.0, "ser_cv": 0.23268874895452693, "ser_min_ns": 2106.0, "ser_max_ns": 6982.0, "ser_p5_ns": 3109.8, "ser_p25_ns": 3507.0, "ser_p50_ns": 4022.0, "ser_p75_ns": 4667.0, "ser_p95_ns": 6470.5999999999985, "ser_p99_ns": 6768.160000000001, "ser_ci_low_ns": 3990.8370786516853, "ser_ci_high_ns": 4398.737921348315, "deser_mean_ns": 2341.2134831460676, "deser_median_ns": 2186.0, "deser_std_ns": 886.5296676560355, "deser_mad_ns": 702.0, "deser_cv": 0.3786624645885508, "deser_min_ns": 1071.0, "deser_max_ns": 4460.0, "deser_p5_ns": 1168.6, "deser_p25_ns": 1601.0, "deser_p50_ns": 2186.0, "deser_p75_ns": 2920.0, "deser_p95_ns": 3930.399999999999, "deser_p99_ns": 4355.280000000001, "deser_ci_low_ns": 2160.3429775280897, "deser_ci_high_ns": 2535.4525280898874, "total_mean_ns": 6528.29213483146, "total_median_ns": 6151.0, "total_std_ns": 1480.436139685679, "total_mad_ns": 799.0, "total_cv": 0.22677234858821146, "total_min_ns": 3985.0, "total_max_ns": 10894.0, "total_p5_ns": 4559.4, "total_p25_ns": 5589.0, "total_p50_ns": 6151.0, "total_p75_ns": 7323.0, "total_p95_ns": 9230.0, "total_p99_ns": 10810.4, "total_ci_low_ns": 6231.843820224719, "total_ci_high_ns": 6839.887640449438, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.5696140693698095, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.0712044906120213}, {"serializer": "cbor-x", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "1.6.4", "avg_time_ser_ns": 7870.476190476191, "avg_time_deser_ns": 7880.190476190476, "avg_time_total_ns": 15750.666666666666, "median_size_bytes": 131.0, "avg_ops_per_sec": 63489.376111064084, "min_ops_per_sec": 33602.15053763441, "max_ops_per_sec": 125454.77355413373, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 7870.476190476191, "ser_median_ns": 6736.5, "ser_std_ns": 2979.3412608870212, "ser_mad_ns": 907.5, "ser_cv": 0.3785465058000208, "ser_min_ns": 3103.0, "ser_max_ns": 17034.0, "ser_p5_ns": 4714.6, "ser_p25_ns": 6207.0, "ser_p50_ns": 6736.5, "ser_p75_ns": 9159.5, "ser_p95_ns": 14516.849999999988, "ser_p99_ns": 16884.6, "ser_ci_low_ns": 7263.590773809525, "ser_ci_high_ns": 8508.775892857144, "deser_mean_ns": 7880.190476190476, "deser_median_ns": 7979.5, "deser_std_ns": 1976.754492780396, "deser_mad_ns": 1254.0, "deser_cv": 0.25085110553520773, "deser_min_ns": 3300.0, "deser_max_ns": 13392.0, "deser_p5_ns": 4629.150000000001, "deser_p25_ns": 6466.5, "deser_p50_ns": 7979.5, "deser_p75_ns": 9166.0, "deser_p95_ns": 11003.3, "deser_p99_ns": 12988.62, "deser_ci_low_ns": 7488.497916666666, "deser_ci_high_ns": 8316.276785714286, "total_mean_ns": 15750.666666666666, "total_median_ns": 14972.5, "total_std_ns": 4301.5530883493175, "total_mad_ns": 1991.0, "total_cv": 0.27310292188791907, "total_min_ns": 7971.0, "total_max_ns": 29760.0, "total_p5_ns": 10034.15, "total_p25_ns": 13489.0, "total_p50_ns": 14972.5, "total_p75_ns": 17852.25, "total_p95_ns": 23436.549999999996, "total_p99_ns": 28318.290000000005, "total_ci_low_ns": 14867.033928571429, "total_ci_high_ns": 16663.065476190477, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.9968944099378882, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.3953960522090223}, {"serializer": "bser", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "2.1.1", "avg_time_ser_ns": 15829.813953488372, "avg_time_deser_ns": 15225.186046511628, "avg_time_total_ns": 31055.0, "median_size_bytes": 153.0, "avg_ops_per_sec": 32200.933827080986, "min_ops_per_sec": 17042.162309553838, "max_ops_per_sec": 61147.11997064938, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 15829.813953488372, "ser_median_ns": 14599.0, "ser_std_ns": 4993.214802018549, "ser_mad_ns": 2915.0, "ser_cv": 0.3154310478120438, "ser_min_ns": 7883.0, "ser_max_ns": 32565.0, "ser_p5_ns": 9836.5, "ser_p25_ns": 12072.5, "ser_p50_ns": 14599.0, "ser_p75_ns": 18189.25, "ser_p95_ns": 24665.75, "ser_p99_ns": 29662.25000000002, "ser_ci_low_ns": 14803.80784883721, "ser_ci_high_ns": 16882.76889534884, "deser_mean_ns": 15225.186046511628, "deser_median_ns": 13051.0, "deser_std_ns": 5003.730296751268, "deser_mad_ns": 2368.5, "deser_cv": 0.3286482202230767, "deser_min_ns": 8471.0, "deser_max_ns": 31083.0, "deser_p5_ns": 10014.75, "deser_p25_ns": 11725.0, "deser_p50_ns": 13051.0, "deser_p75_ns": 18425.25, "deser_p95_ns": 25580.0, "deser_p99_ns": 30157.350000000006, "deser_ci_low_ns": 14243.328488372093, "deser_ci_high_ns": 16304.884593023256, "total_mean_ns": 31055.0, "total_median_ns": 28750.0, "total_std_ns": 8730.630266312897, "total_mad_ns": 6108.0, "total_cv": 0.28113444747425204, "total_min_ns": 16354.0, "total_max_ns": 58678.0, "total_p5_ns": 19998.0, "total_p25_ns": 24771.0, "total_p50_ns": 28750.0, "total_p75_ns": 36302.0, "total_p95_ns": 46351.75, "total_p99_ns": 54380.40000000003, "total_ci_low_ns": 29266.27819767442, "total_ci_high_ns": 32904.0761627907, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.2222010064489295}, {"serializer": "bson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "6.10.4", "avg_time_ser_ns": 9364.131578947368, "avg_time_deser_ns": 8175.671052631579, "avg_time_total_ns": 17539.802631578947, "median_size_bytes": 140.0, "avg_ops_per_sec": 57013.18429886911, "min_ops_per_sec": 36783.63863753402, "max_ops_per_sec": 82836.3154406892, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 9364.131578947368, "ser_median_ns": 9409.5, "ser_std_ns": 810.1765954342754, "ser_mad_ns": 522.0, "ser_cv": 0.08651913833160257, "ser_min_ns": 7511.0, "ser_max_ns": 11713.0, "ser_p5_ns": 8023.75, "ser_p25_ns": 8863.25, "ser_p50_ns": 9409.5, "ser_p75_ns": 9833.75, "ser_p95_ns": 10745.25, "ser_p99_ns": 11492.5, "ser_ci_low_ns": 9183.523026315788, "ser_ci_high_ns": 9548.481578947367, "deser_mean_ns": 8175.671052631579, "deser_median_ns": 8599.0, "deser_std_ns": 2944.4009617720562, "deser_mad_ns": 2013.0, "deser_cv": 0.3601418088884966, "deser_min_ns": 3671.0, "deser_max_ns": 17335.0, "deser_p5_ns": 4040.0, "deser_p25_ns": 5483.75, "deser_p50_ns": 8599.0, "deser_p75_ns": 9586.25, "deser_p95_ns": 12895.75, "deser_p99_ns": 16551.25, "deser_ci_low_ns": 7530.464473684211, "deser_ci_high_ns": 8836.403289473685, "total_mean_ns": 17539.802631578947, "total_median_ns": 17504.0, "total_std_ns": 3105.3805736484187, "total_mad_ns": 2369.0, "total_cv": 0.1770476349635452, "total_min_ns": 12072.0, "total_max_ns": 27186.0, "total_p5_ns": 13308.5, "total_p25_ns": 14744.0, "total_p50_ns": 17504.0, "total_p75_ns": 19793.25, "total_p95_ns": 22467.0, "total_p99_ns": 25435.5, "total_ci_low_ns": 16869.948684210525, "total_ci_high_ns": 18257.761513157897, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.239856156200345}, {"serializer": "avsc", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "5.7.9", "avg_time_ser_ns": 9106.860759493671, "avg_time_deser_ns": 6036.810126582279, "avg_time_total_ns": 15143.67088607595, "median_size_bytes": 44.0, "avg_ops_per_sec": 66034.18731976429, "min_ops_per_sec": 40988.64614501783, "max_ops_per_sec": 98531.87506158242, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 9106.860759493671, "ser_median_ns": 8881.0, "ser_std_ns": 2008.30972260306, "ser_mad_ns": 1332.0, "ser_cv": 0.2205271141879981, "ser_min_ns": 5834.0, "ser_max_ns": 16335.0, "ser_p5_ns": 6502.9, "ser_p25_ns": 7766.5, "ser_p50_ns": 8881.0, "ser_p75_ns": 10295.5, "ser_p95_ns": 12453.599999999999, "ser_p99_ns": 16092.42, "ser_ci_low_ns": 8672.592721518988, "ser_ci_high_ns": 9548.561392405065, "deser_mean_ns": 6036.810126582279, "deser_median_ns": 5986.0, "deser_std_ns": 753.1826671880785, "deser_mad_ns": 459.0, "deser_cv": 0.12476500857158655, "deser_min_ns": 4315.0, "deser_max_ns": 8495.0, "deser_p5_ns": 4960.3, "deser_p25_ns": 5564.0, "deser_p50_ns": 5986.0, "deser_p75_ns": 6461.5, "deser_p95_ns": 7095.9, "deser_p99_ns": 8399.84, "deser_ci_low_ns": 5876.73164556962, "deser_ci_high_ns": 6202.141772151898, "total_mean_ns": 15143.67088607595, "total_median_ns": 15078.0, "total_std_ns": 2490.081410066124, "total_mad_ns": 1632.0, "total_cv": 0.1644305022737692, "total_min_ns": 10149.0, "total_max_ns": 24397.0, "total_p5_ns": 11558.2, "total_p25_ns": 13346.0, "total_p50_ns": 15078.0, "total_p75_ns": 16518.0, "total_p95_ns": 18899.6, "total_p99_ns": 23053.839999999997, "total_ci_low_ns": 14640.727848101265, "total_ci_high_ns": 15707.07753164557, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.947258560239112}, {"serializer": "@msgpack/msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "3.1.3", "avg_time_ser_ns": 72130.39024390244, "avg_time_deser_ns": 56197.73170731707, "avg_time_total_ns": 128328.12195121951, "median_size_bytes": 12031.0, "avg_ops_per_sec": 7792.524232374593, "min_ops_per_sec": 5912.856323504195, "max_ops_per_sec": 9400.793426965236, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 72130.39024390244, "ser_median_ns": 65571.5, "ser_std_ns": 13459.83228919428, "ser_mad_ns": 5752.0, "ser_cv": 0.18660417950992733, "ser_min_ns": 56881.0, "ser_max_ns": 110376.0, "ser_p5_ns": 59414.85, "ser_p25_ns": 61625.75, "ser_p50_ns": 65571.5, "ser_p75_ns": 80755.75, "ser_p95_ns": 102463.00000000001, "ser_p99_ns": 107176.49999999999, "ser_ci_low_ns": 69346.81554878049, "ser_ci_high_ns": 75213.48567073171, "deser_mean_ns": 56197.73170731707, "deser_median_ns": 55387.0, "deser_std_ns": 3230.7976351404536, "deser_mad_ns": 1701.5, "deser_cv": 0.057489822755956474, "deser_min_ns": 49493.0, "deser_max_ns": 65883.0, "deser_p5_ns": 51998.15, "deser_p25_ns": 54200.0, "deser_p50_ns": 55387.0, "deser_p75_ns": 58135.0, "deser_p95_ns": 62463.05, "deser_p99_ns": 65783.37, "deser_ci_low_ns": 55527.395121951224, "deser_ci_high_ns": 56895.43048780488, "total_mean_ns": 128328.12195121951, "total_median_ns": 123476.0, "total_std_ns": 15095.667364185312, "total_mad_ns": 9088.5, "total_cv": 0.11763335373928036, "total_min_ns": 106374.0, "total_max_ns": 169123.0, "total_p5_ns": 113006.25, "total_p25_ns": 116608.25, "total_p50_ns": 123476.0, "total_p75_ns": 138684.25, "total_p95_ns": 157174.95, "total_p99_ns": 168946.42, "total_ci_low_ns": 125220.79847560976, "total_ci_high_ns": 131529.6737804878, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.671937880812545}, {"serializer": "v8-serializer", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "v8-13.6.233.17-node.48", "avg_time_ser_ns": 34907.97647058823, "avg_time_deser_ns": 52433.15294117647, "avg_time_total_ns": 87341.1294117647, "median_size_bytes": 12955.0, "avg_ops_per_sec": 11449.359617111862, "min_ops_per_sec": 9638.832930108822, "max_ops_per_sec": 13395.847287340925, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 34907.97647058823, "ser_median_ns": 33857.0, "ser_std_ns": 3821.715527203503, "ser_mad_ns": 1714.0, "ser_cv": 0.10947972107244586, "ser_min_ns": 27902.0, "ser_max_ns": 46404.0, "ser_p5_ns": 30172.6, "ser_p25_ns": 32453.0, "ser_p50_ns": 33857.0, "ser_p75_ns": 36489.0, "ser_p95_ns": 41891.8, "ser_p99_ns": 43713.47999999999, "ser_ci_low_ns": 34144.339705882354, "ser_ci_high_ns": 35782.41705882353, "deser_mean_ns": 52433.15294117647, "deser_median_ns": 51990.0, "deser_std_ns": 2389.0140998302363, "deser_mad_ns": 1338.0, "deser_cv": 0.0455630448641991, "deser_min_ns": 46748.0, "deser_max_ns": 59324.0, "deser_p5_ns": 49494.6, "deser_p25_ns": 50834.0, "deser_p50_ns": 51990.0, "deser_p75_ns": 53615.0, "deser_p95_ns": 57242.8, "deser_p99_ns": 58342.03999999999, "deser_ci_low_ns": 51958.70352941177, "deser_ci_high_ns": 52935.20117647059, "total_mean_ns": 87341.1294117647, "total_median_ns": 85761.0, "total_std_ns": 5759.366709953437, "total_mad_ns": 2962.0, "total_cv": 0.06594106062907928, "total_min_ns": 74650.0, "total_max_ns": 103747.0, "total_p5_ns": 80872.8, "total_p25_ns": 83225.0, "total_p50_ns": 85761.0, "total_p75_ns": 91174.0, "total_p95_ns": 98964.8, "total_p99_ns": 101416.84, "total_ci_low_ns": 86079.38205882354, "total_ci_high_ns": 88591.12147058823, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 0.9638850889192886, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.847423801577679}, {"serializer": "bser", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "2.1.1", "avg_time_ser_ns": 149321.72619047618, "avg_time_deser_ns": 151487.86904761905, "avg_time_total_ns": 300809.59523809527, "median_size_bytes": 14248.0, "avg_ops_per_sec": 3324.3620410728095, "min_ops_per_sec": 2608.6230644016864, "max_ops_per_sec": 3682.7800570094355, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 149321.72619047618, "ser_median_ns": 147733.5, "ser_std_ns": 9959.651716888267, "ser_mad_ns": 5176.0, "ser_cv": 0.06669928061361709, "ser_min_ns": 137042.0, "ser_max_ns": 181722.0, "ser_p5_ns": 138192.05, "ser_p25_ns": 142557.0, "ser_p50_ns": 147733.5, "ser_p75_ns": 152751.25, "ser_p95_ns": 171231.49999999997, "ser_p99_ns": 180607.31, "ser_ci_low_ns": 147233.2949404762, "ser_ci_high_ns": 151417.97767857145, "deser_mean_ns": 151487.86904761905, "deser_median_ns": 146688.5, "deser_std_ns": 15332.923114908817, "deser_mad_ns": 9971.5, "deser_cv": 0.10121551785832456, "deser_min_ns": 133433.0, "deser_max_ns": 206156.0, "deser_p5_ns": 135362.05, "deser_p25_ns": 139228.0, "deser_p50_ns": 146688.5, "deser_p75_ns": 159464.0, "deser_p95_ns": 178451.85, "deser_p99_ns": 193818.05000000002, "deser_ci_low_ns": 148378.32976190475, "deser_ci_high_ns": 154928.79732142857, "total_mean_ns": 300809.59523809527, "total_median_ns": 295931.5, "total_std_ns": 22598.743879751983, "total_mad_ns": 14629.5, "total_cv": 0.07512640632977396, "total_min_ns": 271534.0, "total_max_ns": 383344.0, "total_p5_ns": 274433.5, "total_p25_ns": 283063.25, "total_p50_ns": 295931.5, "total_p75_ns": 312663.25, "total_p95_ns": 338667.79999999993, "total_p99_ns": 370453.27, "total_ci_low_ns": 296066.58601190476, "total_ci_high_ns": 305563.1104166666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.929122158455156}, {"serializer": "msgpackr", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "1.12.1", "avg_time_ser_ns": 39101.9375, "avg_time_deser_ns": 71005.7875, "avg_time_total_ns": 110107.725, "median_size_bytes": 12231.0, "avg_ops_per_sec": 9082.014908581572, "min_ops_per_sec": 7933.611538644622, "max_ops_per_sec": 10408.968367145133, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 39101.9375, "ser_median_ns": 38557.5, "ser_std_ns": 2553.4123326145545, "ser_mad_ns": 1469.5, "ser_cv": 0.06530142739383578, "ser_min_ns": 34153.0, "ser_max_ns": 47047.0, "ser_p5_ns": 36046.2, "ser_p25_ns": 37238.25, "ser_p50_ns": 38557.5, "ser_p75_ns": 40357.0, "ser_p95_ns": 44338.1, "ser_p99_ns": 46878.729999999996, "ser_ci_low_ns": 38564.272187500006, "ser_ci_high_ns": 39715.6021875, "deser_mean_ns": 71005.7875, "deser_median_ns": 69952.5, "deser_std_ns": 5279.806897825221, "deser_mad_ns": 2764.5, "deser_cv": 0.0743574162574455, "deser_min_ns": 61918.0, "deser_max_ns": 88093.0, "deser_p5_ns": 64821.65, "deser_p25_ns": 67267.5, "deser_p50_ns": 69952.5, "deser_p75_ns": 73664.25, "deser_p95_ns": 82107.25, "deser_p99_ns": 87617.42, "deser_ci_low_ns": 69871.9503125, "deser_ci_high_ns": 72193.044375, "total_mean_ns": 110107.725, "total_median_ns": 108626.5, "total_std_ns": 6277.938180392942, "total_mad_ns": 2948.5, "total_cv": 0.05701632814948217, "total_min_ns": 96071.0, "total_max_ns": 126046.0, "total_p5_ns": 102344.85, "total_p25_ns": 106010.5, "total_p50_ns": 108626.5, "total_p75_ns": 112712.75, "total_p95_ns": 122885.3, "total_p99_ns": 125180.95, "total_ci_low_ns": 108748.734375, "total_ci_high_ns": 111498.1871875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.275755473653759}, {"serializer": "JSON.stringify", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "node-24.15.0", "avg_time_ser_ns": 41209.07058823529, "avg_time_deser_ns": 43004.18823529412, "avg_time_total_ns": 84213.25882352941, "median_size_bytes": 16546.0, "avg_ops_per_sec": 11874.6146862161, "min_ops_per_sec": 9284.447621788742, "max_ops_per_sec": 13752.698967172308, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 41209.07058823529, "ser_median_ns": 40918.0, "ser_std_ns": 3721.5550282497925, "ser_mad_ns": 2808.0, "ser_cv": 0.09030912309175575, "ser_min_ns": 33592.0, "ser_max_ns": 52591.0, "ser_p5_ns": 35368.4, "ser_p25_ns": 38438.0, "ser_p50_ns": 40918.0, "ser_p75_ns": 43869.0, "ser_p95_ns": 46974.4, "ser_p99_ns": 51432.63999999999, "ser_ci_low_ns": 40420.56823529412, "ser_ci_high_ns": 41965.63470588235, "deser_mean_ns": 43004.18823529412, "deser_median_ns": 42427.0, "deser_std_ns": 4128.316007694149, "deser_mad_ns": 2596.0, "deser_cv": 0.09599799873227197, "deser_min_ns": 35217.0, "deser_max_ns": 55116.0, "deser_p5_ns": 38028.0, "deser_p25_ns": 39901.0, "deser_p50_ns": 42427.0, "deser_p75_ns": 45221.0, "deser_p95_ns": 50856.0, "deser_p99_ns": 54459.119999999995, "deser_ci_low_ns": 42147.81117647059, "deser_ci_high_ns": 43894.849705882356, "total_mean_ns": 84213.25882352941, "total_median_ns": 83410.0, "total_std_ns": 6814.684683606042, "total_mad_ns": 4141.0, "total_cv": 0.08092175482588024, "total_min_ns": 72713.0, "total_max_ns": 107707.0, "total_p5_ns": 74670.2, "total_p25_ns": 79523.0, "total_p50_ns": 83410.0, "total_p75_ns": 87594.0, "total_p95_ns": 96745.99999999999, "total_p99_ns": 105391.95999999999, "total_ci_low_ns": 82861.35382352941, "total_ci_high_ns": 85681.90823529412, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 0.9439124487004104, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.3467451016636764}, {"serializer": "sia", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "2.3.0", "avg_time_ser_ns": 292089.13095238095, "avg_time_deser_ns": 152197.15476190476, "avg_time_total_ns": 444286.28571428574, "median_size_bytes": 15859.0, "avg_ops_per_sec": 2250.8009636000465, "min_ops_per_sec": 1801.2954917176432, "max_ops_per_sec": 2495.4956303871513, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 292089.13095238095, "ser_median_ns": 289352.0, "ser_std_ns": 23577.064437982208, "ser_mad_ns": 17196.5, "ser_cv": 0.08071873253587775, "ser_min_ns": 262170.0, "ser_max_ns": 356405.0, "ser_p5_ns": 265991.1, "ser_p25_ns": 271826.25, "ser_p50_ns": 289352.0, "ser_p75_ns": 303900.5, "ser_p95_ns": 339926.6, "ser_p99_ns": 352747.19, "ser_ci_low_ns": 287211.78601190477, "ser_ci_high_ns": 297064.9035714286, "deser_mean_ns": 152197.15476190476, "deser_median_ns": 146757.5, "deser_std_ns": 15446.23321609905, "deser_mad_ns": 5966.0, "deser_cv": 0.10148831783526398, "deser_min_ns": 136540.0, "deser_max_ns": 208017.0, "deser_p5_ns": 137659.85, "deser_p25_ns": 141495.5, "deser_p50_ns": 146757.5, "deser_p75_ns": 162250.25, "deser_p95_ns": 177879.0, "deser_p99_ns": 207733.97, "deser_ci_low_ns": 149001.7586309524, "deser_ci_high_ns": 155688.06726190474, "total_mean_ns": 444286.28571428574, "total_median_ns": 438890.0, "total_std_ns": 31166.06380849167, "total_mad_ns": 21850.5, "total_cv": 0.07014860645177359, "total_min_ns": 400722.0, "total_max_ns": 555156.0, "total_p5_ns": 405469.05, "total_p25_ns": 420382.25, "total_p50_ns": 438890.0, "total_p75_ns": 462788.5, "total_p95_ns": 496785.39999999997, "total_p99_ns": 544995.14, "total_ci_low_ns": 437542.5348214286, "total_ci_high_ns": 450998.2255952381, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.740915456104407}, {"serializer": "cbor-x", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "1.6.4", "avg_time_ser_ns": 30566.670588235294, "avg_time_deser_ns": 34336.541176470586, "avg_time_total_ns": 64903.211764705884, "median_size_bytes": 5206.0, "avg_ops_per_sec": 15407.55800537742, "min_ops_per_sec": 11096.562285004105, "max_ops_per_sec": 22620.851901282604, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 30566.670588235294, "ser_median_ns": 29812.0, "ser_std_ns": 3246.5332660145245, "ser_mad_ns": 1687.0, "ser_cv": 0.10621154360410034, "ser_min_ns": 25290.0, "ser_max_ns": 41358.0, "ser_p5_ns": 27123.8, "ser_p25_ns": 28209.0, "ser_p50_ns": 29812.0, "ser_p75_ns": 31912.0, "ser_p95_ns": 37629.799999999996, "ser_p99_ns": 40289.52, "ser_ci_low_ns": 29904.484705882354, "ser_ci_high_ns": 31290.16117647059, "deser_mean_ns": 34336.541176470586, "deser_median_ns": 32123.0, "deser_std_ns": 6537.723978778018, "deser_mad_ns": 2817.0, "deser_cv": 0.19040135537175334, "deser_min_ns": 18917.0, "deser_max_ns": 55082.0, "deser_p5_ns": 27684.0, "deser_p25_ns": 30300.0, "deser_p50_ns": 32123.0, "deser_p75_ns": 36752.0, "deser_p95_ns": 48077.799999999996, "deser_p99_ns": 52244.47999999999, "deser_ci_low_ns": 32952.76323529412, "deser_ci_high_ns": 35748.409411764704, "total_mean_ns": 64903.211764705884, "total_median_ns": 61802.0, "total_std_ns": 9232.931073961649, "total_mad_ns": 3935.0, "total_cv": 0.14225692108171573, "total_min_ns": 44207.0, "total_max_ns": 90118.0, "total_p5_ns": 54853.8, "total_p25_ns": 59102.0, "total_p50_ns": 61802.0, "total_p75_ns": 69181.0, "total_p95_ns": 84283.2, "total_p99_ns": 89153.68, "total_ci_low_ns": 63034.10117647058, "total_ci_high_ns": 66831.56058823528, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 0.6320109439124487, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.1048536565137808}, {"serializer": "simdjson-parse+JSON.stringify", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "0.9.2", "avg_time_ser_ns": 40623.64705882353, "avg_time_deser_ns": 164729.15294117646, "avg_time_total_ns": 205352.8, "median_size_bytes": 16546.0, "avg_ops_per_sec": 4869.668200287506, "min_ops_per_sec": 4116.327412682404, "max_ops_per_sec": 5433.04049245079, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 40623.64705882353, "ser_median_ns": 40613.0, "ser_std_ns": 3357.927715216075, "ser_mad_ns": 2238.0, "ser_cv": 0.08265943504170747, "ser_min_ns": 34133.0, "ser_max_ns": 49878.0, "ser_p5_ns": 35798.0, "ser_p25_ns": 37895.0, "ser_p50_ns": 40613.0, "ser_p75_ns": 42414.0, "ser_p95_ns": 46671.4, "ser_p99_ns": 49733.52, "ser_ci_low_ns": 39936.8505882353, "ser_ci_high_ns": 41326.90176470588, "deser_mean_ns": 164729.15294117646, "deser_median_ns": 162044.0, "deser_std_ns": 11620.916436390404, "deser_mad_ns": 7918.0, "deser_cv": 0.07054559699302372, "deser_min_ns": 147123.0, "deser_max_ns": 193057.0, "deser_p5_ns": 150947.4, "deser_p25_ns": 154856.0, "deser_p50_ns": 162044.0, "deser_p75_ns": 173416.0, "deser_p95_ns": 186718.6, "deser_p99_ns": 191408.91999999998, "deser_ci_low_ns": 162372.87911764707, "deser_ci_high_ns": 167173.7455882353, "total_mean_ns": 205352.8, "total_median_ns": 201888.0, "total_std_ns": 13546.896825999884, "total_mad_ns": 9036.0, "total_cv": 0.06596889268614738, "total_min_ns": 184059.0, "total_max_ns": 242935.0, "total_p5_ns": 188231.0, "total_p25_ns": 194919.0, "total_p50_ns": 201888.0, "total_p75_ns": 213550.0, "total_p95_ns": 229953.2, "total_p99_ns": 238285.59999999998, "total_ci_low_ns": 202638.9094117647, "total_ci_high_ns": 208212.2755882353, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.308518008649967}, {"serializer": "cbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "9.0.2", "avg_time_ser_ns": 459914.475, "avg_time_deser_ns": 605335.1875, "avg_time_total_ns": 1065249.6625, "median_size_bytes": 12030.0, "avg_ops_per_sec": 938.7470704784193, "min_ops_per_sec": 802.6390772861167, "max_ops_per_sec": 1037.2195876844696, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 459914.475, "ser_median_ns": 454099.5, "ser_std_ns": 43273.798197990196, "ser_mad_ns": 29074.0, "ser_cv": 0.09409096810442898, "ser_min_ns": 406606.0, "ser_max_ns": 589383.0, "ser_p5_ns": 411932.85, "ser_p25_ns": 424686.75, "ser_p50_ns": 454099.5, "ser_p75_ns": 482347.5, "ser_p95_ns": 557247.7999999999, "ser_p99_ns": 586824.98, "ser_ci_low_ns": 451258.50687499996, "ser_ci_high_ns": 469683.5859375, "deser_mean_ns": 605335.1875, "deser_median_ns": 600533.0, "deser_std_ns": 30650.147559515844, "deser_mad_ns": 18206.0, "deser_cv": 0.05063334858510244, "deser_min_ns": 557510.0, "deser_max_ns": 695785.0, "deser_p5_ns": 567888.7, "deser_p25_ns": 582587.0, "deser_p50_ns": 600533.0, "deser_p75_ns": 618288.25, "deser_p95_ns": 670114.7999999999, "deser_p99_ns": 690631.83, "deser_ci_low_ns": 598940.21, "deser_ci_high_ns": 612296.9974999999, "total_mean_ns": 1065249.6625, "total_median_ns": 1061726.5, "total_std_ns": 61996.183894593436, "total_mad_ns": 50491.5, "total_cv": 0.05819873601189095, "total_min_ns": 964116.0, "total_max_ns": 1245890.0, "total_p5_ns": 986010.9, "total_p25_ns": 1010922.75, "total_p50_ns": 1061726.5, "total_p75_ns": 1109387.25, "total_p95_ns": 1172920.15, "total_p99_ns": 1204625.9299999997, "total_ci_low_ns": 1051829.3975, "total_ci_high_ns": 1078950.5184374999, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.02441927184554}, {"serializer": "bebop", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "3.2.3", "avg_time_ser_ns": 48071.444444444445, "avg_time_deser_ns": 92589.67901234567, "avg_time_total_ns": 140661.1234567901, "median_size_bytes": 15859.0, "avg_ops_per_sec": 7109.284892831041, "min_ops_per_sec": 5977.822279343635, "max_ops_per_sec": 7934.8076205892385, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 48071.444444444445, "ser_median_ns": 46005.0, "ser_std_ns": 5404.005327069914, "ser_mad_ns": 1801.0, "ser_cv": 0.11241612124460403, "ser_min_ns": 41281.0, "ser_max_ns": 68335.0, "ser_p5_ns": 43055.0, "ser_p25_ns": 44638.0, "ser_p50_ns": 46005.0, "ser_p75_ns": 50761.0, "ser_p95_ns": 57046.0, "ser_p99_ns": 67259.0, "ser_ci_low_ns": 46932.82098765432, "ser_ci_high_ns": 49243.174382716046, "deser_mean_ns": 92589.67901234567, "deser_median_ns": 92592.0, "deser_std_ns": 3799.798109199884, "deser_mad_ns": 2669.0, "deser_cv": 0.041039110943383104, "deser_min_ns": 84746.0, "deser_max_ns": 102145.0, "deser_p5_ns": 86659.0, "deser_p25_ns": 89976.0, "deser_p50_ns": 92592.0, "deser_p75_ns": 95307.0, "deser_p95_ns": 98950.0, "deser_p99_ns": 101113.0, "deser_ci_low_ns": 91749.71296296296, "deser_ci_high_ns": 93444.59660493828, "total_mean_ns": 140661.1234567901, "total_median_ns": 138801.0, "total_std_ns": 7873.400301621143, "total_mad_ns": 4426.0, "total_cv": 0.05597424581952656, "total_min_ns": 126027.0, "total_max_ns": 167285.0, "total_p5_ns": 131488.0, "total_p25_ns": 136248.0, "total_p50_ns": 138801.0, "total_p75_ns": 143964.0, "total_p95_ns": 156392.0, "total_p99_ns": 166150.6, "total_ci_low_ns": 138967.1651234568, "total_ci_high_ns": 142493.92469135803, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.087662464966796}, {"serializer": "devalue", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "5.8.1", "avg_time_ser_ns": 253710.14444444445, "avg_time_deser_ns": 84366.04444444444, "avg_time_total_ns": 338076.18888888886, "median_size_bytes": 18552.0, "avg_ops_per_sec": 2957.9131357537194, "min_ops_per_sec": 2247.958853361148, "max_ops_per_sec": 3378.9034782432404, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 253710.14444444445, "ser_median_ns": 241954.5, "ser_std_ns": 29238.078258664682, "ser_mad_ns": 11988.5, "ser_cv": 0.11524205436360475, "ser_min_ns": 218830.0, "ser_max_ns": 346521.0, "ser_p5_ns": 225206.5, "ser_p25_ns": 232766.75, "ser_p50_ns": 241954.5, "ser_p75_ns": 269376.75, "ser_p95_ns": 321112.89999999997, "ser_p99_ns": 333120.27, "ser_ci_low_ns": 248023.90083333332, "ser_ci_high_ns": 260103.58277777777, "deser_mean_ns": 84366.04444444444, "deser_median_ns": 81706.0, "deser_std_ns": 7571.150753243498, "deser_mad_ns": 3269.0, "deser_cv": 0.0897416822502464, "deser_min_ns": 73934.0, "deser_max_ns": 106729.0, "deser_p5_ns": 76665.6, "deser_p25_ns": 79270.25, "deser_p50_ns": 81706.0, "deser_p75_ns": 86621.25, "deser_p95_ns": 100458.79999999999, "deser_p99_ns": 106146.05, "deser_ci_low_ns": 82919.66083333333, "deser_ci_high_ns": 86006.70222222221, "total_mean_ns": 338076.18888888886, "total_median_ns": 327670.5, "total_std_ns": 34271.111645427525, "total_mad_ns": 16178.0, "total_cv": 0.10137097131289234, "total_min_ns": 295954.0, "total_max_ns": 444848.0, "total_p5_ns": 302281.6, "total_p25_ns": 313417.75, "total_p50_ns": 327670.5, "total_p75_ns": 349403.0, "total_p95_ns": 414875.64999999997, "total_p99_ns": 428781.72, "total_ci_low_ns": 331412.8594444445, "total_ci_high_ns": 345322.7336111111, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.035394779136837}, {"serializer": "protobufjs", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "7.6.5", "avg_time_ser_ns": 56069.08974358974, "avg_time_deser_ns": 69229.76923076923, "avg_time_total_ns": 125298.85897435897, "median_size_bytes": 5047.0, "avg_ops_per_sec": 7980.918646710414, "min_ops_per_sec": 5910.16548463357, "max_ops_per_sec": 9675.20342115193, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 56069.08974358974, "ser_median_ns": 52536.0, "ser_std_ns": 9181.515881103642, "ser_mad_ns": 2654.5, "ser_cv": 0.1637536104668677, "ser_min_ns": 47333.0, "ser_max_ns": 90435.0, "ser_p5_ns": 48858.9, "ser_p25_ns": 50290.75, "ser_p50_ns": 52536.0, "ser_p75_ns": 56930.25, "ser_p95_ns": 77153.69999999998, "ser_p99_ns": 86983.86000000002, "ser_ci_low_ns": 54202.00673076924, "ser_ci_high_ns": 58170.69038461538, "deser_mean_ns": 69229.76923076923, "deser_median_ns": 64562.0, "deser_std_ns": 11430.097700918723, "deser_mad_ns": 4359.0, "deser_cv": 0.16510379606810252, "deser_min_ns": 55022.0, "deser_max_ns": 106954.0, "deser_p5_ns": 57515.95, "deser_p25_ns": 61291.5, "deser_p50_ns": 64562.0, "deser_p75_ns": 74578.75, "deser_p95_ns": 89247.64999999994, "deser_p99_ns": 104684.81000000001, "deser_ci_low_ns": 66834.3705128205, "deser_ci_high_ns": 71728.0846153846, "total_mean_ns": 125298.85897435897, "total_median_ns": 119687.0, "total_std_ns": 16289.470931850234, "total_mad_ns": 9485.5, "total_cv": 0.1300049423050508, "total_min_ns": 103357.0, "total_max_ns": 169200.0, "total_p5_ns": 107197.8, "total_p25_ns": 112057.5, "total_p50_ns": 119687.0, "total_p75_ns": 136031.5, "total_p95_ns": 159815.15, "total_p99_ns": 164933.43000000002, "total_ci_low_ns": 121934.03076923077, "total_ci_high_ns": 129218.55064102563, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.197911750378907}, {"serializer": "fast-json-stringify", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "6.4.0", "avg_time_ser_ns": 58684.66279069767, "avg_time_deser_ns": 44203.232558139534, "avg_time_total_ns": 102887.8953488372, "median_size_bytes": 16546.0, "avg_ops_per_sec": 9719.316316166647, "min_ops_per_sec": 7273.256236817223, "max_ops_per_sec": 11676.513860021952, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 58684.66279069767, "ser_median_ns": 56237.5, "ser_std_ns": 9313.11463110011, "ser_mad_ns": 4708.5, "ser_cv": 0.15869759129938066, "ser_min_ns": 45239.0, "ser_max_ns": 90295.0, "ser_p5_ns": 49215.0, "ser_p25_ns": 51862.25, "ser_p50_ns": 56237.5, "ser_p75_ns": 61753.25, "ser_p95_ns": 76777.0, "ser_p99_ns": 87854.65000000002, "ser_ci_low_ns": 56758.45901162791, "ser_ci_high_ns": 60645.72325581395, "deser_mean_ns": 44203.232558139534, "deser_median_ns": 44192.5, "deser_std_ns": 4054.0960105709746, "deser_mad_ns": 2876.5, "deser_cv": 0.09171492164602921, "deser_min_ns": 36978.0, "deser_max_ns": 57418.0, "deser_p5_ns": 38727.0, "deser_p25_ns": 40927.25, "deser_p50_ns": 44192.5, "deser_p75_ns": 46613.75, "deser_p95_ns": 50525.5, "deser_p99_ns": 54972.55000000002, "deser_ci_low_ns": 43371.29011627907, "deser_ci_high_ns": 45076.426162790696, "total_mean_ns": 102887.8953488372, "total_median_ns": 99679.0, "total_std_ns": 11491.677946419026, "total_mad_ns": 5643.0, "total_cv": 0.11169125296476287, "total_min_ns": 85642.0, "total_max_ns": 137490.0, "total_p5_ns": 88731.5, "total_p25_ns": 95478.25, "total_p50_ns": 99679.0, "total_p75_ns": 108364.5, "total_p95_ns": 124941.75, "total_p99_ns": 134430.00000000003, "total_ci_low_ns": 100515.64970930232, "total_ci_high_ns": 105304.33837209301, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 0.9991887506760411, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.380401945179797}, {"serializer": "google-protobuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "3.21.4", "avg_time_ser_ns": 794.7674418604652, "avg_time_deser_ns": 52923.313953488374, "avg_time_total_ns": 53718.08139534884, "median_size_bytes": 5047.0, "avg_ops_per_sec": 18615.705811238906, "min_ops_per_sec": 11419.696692855838, "max_ops_per_sec": 23518.89743408829, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 794.7674418604652, "ser_median_ns": 720.5, "ser_std_ns": 265.9722088276763, "ser_mad_ns": 139.0, "ser_cv": 0.3346541325410411, "ser_min_ns": 431.0, "ser_max_ns": 1601.0, "ser_p5_ns": 484.0, "ser_p25_ns": 619.0, "ser_p50_ns": 720.5, "ser_p75_ns": 890.75, "ser_p95_ns": 1316.25, "ser_p99_ns": 1542.3500000000004, "ser_ci_low_ns": 737.4473837209302, "ser_ci_high_ns": 850.4540697674419, "deser_mean_ns": 52923.313953488374, "deser_median_ns": 49217.0, "deser_std_ns": 10759.289382025003, "deser_mad_ns": 5927.0, "deser_cv": 0.20329961558115575, "deser_min_ns": 41826.0, "deser_max_ns": 86839.0, "deser_p5_ns": 42534.0, "deser_p25_ns": 44360.0, "deser_p50_ns": 49217.0, "deser_p75_ns": 57718.5, "deser_p95_ns": 76334.0, "deser_p99_ns": 84853.40000000001, "deser_ci_low_ns": 50722.58284883721, "deser_ci_high_ns": 55314.518604651166, "total_mean_ns": 53718.08139534884, "total_median_ns": 49994.5, "total_std_ns": 10849.824040010013, "total_mad_ns": 5969.0, "total_cv": 0.20197713243253398, "total_min_ns": 42519.0, "total_max_ns": 87568.0, "total_p5_ns": 43312.5, "total_p25_ns": 44950.25, "total_p50_ns": 49994.5, "total_p75_ns": 58406.0, "total_p95_ns": 77171.5, "total_p99_ns": 86086.45000000001, "total_ci_low_ns": 51569.41162790698, "total_ci_high_ns": 56023.31976744186, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "avsc", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "5.7.9", "avg_time_ser_ns": 142518.62790697673, "avg_time_deser_ns": 94217.67441860466, "avg_time_total_ns": 236736.3023255814, "median_size_bytes": 4051.0, "avg_ops_per_sec": 4224.109231142373, "min_ops_per_sec": 3662.7755780775556, "max_ops_per_sec": 4791.4520495436145, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 142518.62790697673, "ser_median_ns": 138325.0, "ser_std_ns": 12382.589978102329, "ser_mad_ns": 5990.0, "ser_cv": 0.08688401060235132, "ser_min_ns": 124696.0, "ser_max_ns": 172275.0, "ser_p5_ns": 127911.25, "ser_p25_ns": 133570.75, "ser_p50_ns": 138325.0, "ser_p75_ns": 146603.5, "ser_p95_ns": 168535.5, "ser_p99_ns": 171470.05000000002, "ser_ci_low_ns": 139899.53459302327, "ser_ci_high_ns": 145204.76191860466, "deser_mean_ns": 94217.67441860466, "deser_median_ns": 94027.5, "deser_std_ns": 5574.771466572811, "deser_mad_ns": 4059.5, "deser_cv": 0.05916906250311768, "deser_min_ns": 84009.0, "deser_max_ns": 109872.0, "deser_p5_ns": 86719.0, "deser_p25_ns": 89959.5, "deser_p50_ns": 94027.5, "deser_p75_ns": 97625.75, "deser_p95_ns": 104144.5, "deser_p99_ns": 108707.50000000001, "deser_ci_low_ns": 93136.67848837208, "deser_ci_high_ns": 95384.04854651162, "total_mean_ns": 236736.3023255814, "total_median_ns": 231905.0, "total_std_ns": 15824.541924097644, "total_mad_ns": 9761.0, "total_cv": 0.06684459362018035, "total_min_ns": 208705.0, "total_max_ns": 273017.0, "total_p5_ns": 216101.75, "total_p25_ns": 225498.25, "total_p50_ns": 231905.0, "total_p75_ns": 245694.75, "total_p95_ns": 266966.25, "total_p99_ns": 272207.8, "total_ci_low_ns": 233316.19738372092, "total_ci_high_ns": 239850.3398255814, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.430210105339583}, {"serializer": "bson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "6.10.4", "avg_time_ser_ns": 82960.57142857143, "avg_time_deser_ns": 92640.74025974025, "avg_time_total_ns": 175601.3116883117, "median_size_bytes": 14057.0, "avg_ops_per_sec": 5694.7182819168065, "min_ops_per_sec": 4425.464120549643, "max_ops_per_sec": 6476.474207441469, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 82960.57142857143, "ser_median_ns": 77822.0, "ser_std_ns": 12005.137264859586, "ser_mad_ns": 3664.0, "ser_cv": 0.1447089509887952, "ser_min_ns": 70153.0, "ser_max_ns": 125800.0, "ser_p5_ns": 73135.8, "ser_p25_ns": 74982.0, "ser_p50_ns": 77822.0, "ser_p75_ns": 89742.0, "ser_p95_ns": 103717.00000000001, "ser_p99_ns": 125238.36, "ser_ci_low_ns": 80406.53311688312, "ser_ci_high_ns": 85668.74545454545, "deser_mean_ns": 92640.74025974025, "deser_median_ns": 92345.0, "deser_std_ns": 3716.0943787325023, "deser_mad_ns": 2208.0, "deser_cv": 0.04011296075909532, "deser_min_ns": 84252.0, "deser_max_ns": 109445.0, "deser_p5_ns": 88189.6, "deser_p25_ns": 90141.0, "deser_p50_ns": 92345.0, "deser_p75_ns": 94553.0, "deser_p95_ns": 97630.6, "deser_p99_ns": 103399.19999999995, "deser_ci_low_ns": 91858.06883116883, "deser_ci_high_ns": 93501.16590909091, "total_mean_ns": 175601.3116883117, "total_median_ns": 170556.0, "total_std_ns": 14274.561474746219, "total_mad_ns": 5999.0, "total_cv": 0.08128960619658263, "total_min_ns": 154405.0, "total_max_ns": 225965.0, "total_p5_ns": 161563.4, "total_p25_ns": 166314.0, "total_p50_ns": 170556.0, "total_p75_ns": 184917.0, "total_p95_ns": 201439.0, "total_p99_ns": 221857.95999999996, "total_ci_low_ns": 172608.72435064937, "total_ci_high_ns": 178928.27175324675, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.641025354160462}, {"serializer": "flatbuffers", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "24.12.23", "avg_time_ser_ns": 195847.31325301205, "avg_time_deser_ns": 84970.75903614458, "avg_time_total_ns": 280818.0722891566, "median_size_bytes": 10404.0, "avg_ops_per_sec": 3561.0243737102014, "min_ops_per_sec": 2799.7245071085003, "max_ops_per_sec": 4289.599437204553, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 195847.31325301205, "ser_median_ns": 191086.0, "ser_std_ns": 20271.671085127706, "ser_mad_ns": 11890.0, "ser_cv": 0.10350752710576659, "ser_min_ns": 160291.0, "ser_max_ns": 254919.0, "ser_p5_ns": 172021.6, "ser_p25_ns": 181700.5, "ser_p50_ns": 191086.0, "ser_p75_ns": 206309.5, "ser_p95_ns": 235978.3, "ser_p99_ns": 249670.99999999994, "ser_ci_low_ns": 191653.9605421687, "ser_ci_high_ns": 199973.14126506023, "deser_mean_ns": 84970.75903614458, "deser_median_ns": 81984.0, "deser_std_ns": 6964.361980460727, "deser_mad_ns": 2339.0, "deser_cv": 0.08196186616972846, "deser_min_ns": 72831.0, "deser_max_ns": 107387.0, "deser_p5_ns": 78329.6, "deser_p25_ns": 80434.5, "deser_p50_ns": 81984.0, "deser_p75_ns": 89271.0, "deser_p95_ns": 100851.89999999997, "deser_p99_ns": 105646.13999999998, "deser_ci_low_ns": 83572.72861445784, "deser_ci_high_ns": 86543.96506024095, "total_mean_ns": 280818.0722891566, "total_median_ns": 275612.0, "total_std_ns": 23630.875849907363, "total_mad_ns": 16400.0, "total_cv": 0.08415012487363989, "total_min_ns": 233122.0, "total_max_ns": 357178.0, "total_p5_ns": 250990.2, "total_p25_ns": 262726.0, "total_p50_ns": 275612.0, "total_p75_ns": 295349.0, "total_p95_ns": 324765.79999999993, "total_p99_ns": 334825.6199999998, "total_ci_low_ns": 275788.6376506024, "total_ci_high_ns": 285800.686746988, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.368429416232447}, {"serializer": "flexbuffers", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "24.12.23", "avg_time_ser_ns": 792403.4155844155, "avg_time_deser_ns": 529337.5844155845, "avg_time_total_ns": 1321741.0, "median_size_bytes": 14566.0, "avg_ops_per_sec": 756.5778772089237, "min_ops_per_sec": 647.5312547148369, "max_ops_per_sec": 815.5502599158679, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 792403.4155844155, "ser_median_ns": 776341.0, "ser_std_ns": 56027.25068246294, "ser_mad_ns": 26382.0, "ser_cv": 0.07070546337958622, "ser_min_ns": 718640.0, "ser_max_ns": 994251.0, "ser_p5_ns": 734456.0, "ser_p25_ns": 753982.0, "ser_p50_ns": 776341.0, "ser_p75_ns": 819702.0, "ser_p95_ns": 895086.4000000001, "ser_p99_ns": 986779.44, "ser_ci_low_ns": 780253.387012987, "ser_ci_high_ns": 805714.3064935065, "deser_mean_ns": 529337.5844155845, "deser_median_ns": 520492.0, "deser_std_ns": 26469.25187256788, "deser_mad_ns": 13585.0, "deser_cv": 0.05000448230365368, "deser_min_ns": 482481.0, "deser_max_ns": 619251.0, "deser_p5_ns": 496092.2, "deser_p25_ns": 511539.0, "deser_p50_ns": 520492.0, "deser_p75_ns": 542563.0, "deser_p95_ns": 577764.6, "deser_p99_ns": 596559.6799999998, "deser_ci_low_ns": 523763.24675324676, "deser_ci_high_ns": 535396.3737012987, "total_mean_ns": 1321741.0, "total_median_ns": 1294958.0, "total_std_ns": 71137.65515626431, "total_mad_ns": 40955.0, "total_cv": 0.0538211761277469, "total_min_ns": 1226166.0, "total_max_ns": 1544327.0, "total_p5_ns": 1245437.4, "total_p25_ns": 1269212.0, "total_p50_ns": 1294958.0, "total_p75_ns": 1361068.0, "total_p95_ns": 1447285.6, "total_p99_ns": 1530752.64, "total_ci_low_ns": 1306408.9935064935, "total_ci_high_ns": 1337752.497077922, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.49326689726359}, {"serializer": "protobuf-es", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "2.12.1", "avg_time_ser_ns": 232641.13095238095, "avg_time_deser_ns": 160206.02380952382, "avg_time_total_ns": 392847.15476190473, "median_size_bytes": 4841.0, "avg_ops_per_sec": 2545.5192633533925, "min_ops_per_sec": 1900.6745493975811, "max_ops_per_sec": 2892.6564131639007, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 232641.13095238095, "ser_median_ns": 223736.5, "ser_std_ns": 25159.40605050068, "ser_mad_ns": 11206.5, "ser_cv": 0.10814685239666638, "ser_min_ns": 204839.0, "ser_max_ns": 314042.0, "ser_p5_ns": 208969.5, "ser_p25_ns": 214964.25, "ser_p50_ns": 223736.5, "ser_p75_ns": 240251.25, "ser_p95_ns": 289858.1, "ser_p99_ns": 305615.01, "ser_ci_low_ns": 227567.47529761906, "ser_ci_high_ns": 237833.99375, "deser_mean_ns": 160206.02380952382, "deser_median_ns": 155607.0, "deser_std_ns": 22761.22277506843, "deser_mad_ns": 12422.0, "deser_cv": 0.14207470002582598, "deser_min_ns": 135402.0, "deser_max_ns": 236429.0, "deser_p5_ns": 136608.7, "deser_p25_ns": 142995.75, "deser_p50_ns": 155607.0, "deser_p75_ns": 167722.0, "deser_p95_ns": 212451.9, "deser_p99_ns": 229659.52000000002, "deser_ci_low_ns": 155505.0964285714, "deser_ci_high_ns": 165027.71130952382, "total_mean_ns": 392847.15476190473, "total_median_ns": 382225.0, "total_std_ns": 43250.59478677138, "total_mad_ns": 23997.0, "total_cv": 0.11009522218121837, "total_min_ns": 345703.0, "total_max_ns": 526129.0, "total_p5_ns": 348774.9, "total_p25_ns": 359965.25, "total_p50_ns": 382225.0, "total_p75_ns": 409709.25, "total_p95_ns": 493432.29999999993, "total_p99_ns": 523883.02, "total_ci_low_ns": 383904.7238095238, "total_ci_high_ns": 402598.5586309524, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.764168176803881}, {"serializer": "json-pack-msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "18.28.0", "avg_time_ser_ns": 43842.49382716049, "avg_time_deser_ns": 41205.81481481482, "avg_time_total_ns": 85048.30864197531, "median_size_bytes": 12660.0, "avg_ops_per_sec": 11758.023363047261, "min_ops_per_sec": 9293.162091333197, "max_ops_per_sec": 13972.725240330874, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 43842.49382716049, "ser_median_ns": 40757.0, "ser_std_ns": 6382.382159357619, "ser_mad_ns": 1549.0, "ser_cv": 0.1455752536458983, "ser_min_ns": 36797.0, "ser_max_ns": 64189.0, "ser_p5_ns": 38254.0, "ser_p25_ns": 39682.0, "ser_p50_ns": 40757.0, "ser_p75_ns": 46562.0, "ser_p95_ns": 56913.0, "ser_p99_ns": 62265.00000000001, "ser_ci_low_ns": 42559.35895061728, "ser_ci_high_ns": 45240.21728395062, "deser_mean_ns": 41205.81481481482, "deser_median_ns": 40172.0, "deser_std_ns": 4001.3256931644264, "deser_mad_ns": 1840.0, "deser_cv": 0.09710585050063908, "deser_min_ns": 34771.0, "deser_max_ns": 53580.0, "deser_p5_ns": 37096.0, "deser_p25_ns": 38522.0, "deser_p50_ns": 40172.0, "deser_p75_ns": 43147.0, "deser_p95_ns": 50050.0, "deser_p99_ns": 53448.0, "deser_ci_low_ns": 40379.85401234568, "deser_ci_high_ns": 42085.82808641975, "total_mean_ns": 85048.30864197531, "total_median_ns": 82596.0, "total_std_ns": 8460.858739870875, "total_mad_ns": 4632.0, "total_cv": 0.09948297473484437, "total_min_ns": 71568.0, "total_max_ns": 107606.0, "total_p5_ns": 75514.0, "total_p25_ns": 78544.0, "total_p50_ns": 82596.0, "total_p75_ns": 89474.0, "total_p95_ns": 101896.0, "total_p99_ns": 106265.20000000001, "total_ci_low_ns": 83274.6950617284, "total_ci_high_ns": 86844.85370370369, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 0.9434395635946023, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.193879072324921}, {"serializer": "protobuf-es", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "2.12.1", "avg_time_ser_ns": 21014.87951807229, "avg_time_deser_ns": 13282.602409638554, "avg_time_total_ns": 34297.48192771084, "median_size_bytes": 155.0, "avg_ops_per_sec": 29156.65943370742, "min_ops_per_sec": 20875.519278542055, "max_ops_per_sec": 40252.78750553476, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 21014.87951807229, "ser_median_ns": 19701.0, "ser_std_ns": 4484.6501791343235, "ser_mad_ns": 1702.0, "ser_cv": 0.21340356366438518, "ser_min_ns": 14112.0, "ser_max_ns": 34267.0, "ser_p5_ns": 15902.5, "ser_p25_ns": 18330.5, "ser_p50_ns": 19701.0, "ser_p75_ns": 22306.0, "ser_p95_ns": 29514.199999999997, "ser_p99_ns": 33465.85999999999, "ser_ci_low_ns": 20076.550903614458, "ser_ci_high_ns": 22063.60903614458, "deser_mean_ns": 13282.602409638554, "deser_median_ns": 13143.0, "deser_std_ns": 1271.4516855840848, "deser_mad_ns": 723.0, "deser_cv": 0.09572308545962745, "deser_min_ns": 10446.0, "deser_max_ns": 16764.0, "deser_p5_ns": 11041.3, "deser_p25_ns": 12569.0, "deser_p50_ns": 13143.0, "deser_p75_ns": 14022.0, "deser_p95_ns": 15718.199999999993, "deser_p99_ns": 16511.44, "deser_ci_low_ns": 13017.205120481929, "deser_ci_high_ns": 13569.249397590362, "total_mean_ns": 34297.48192771084, "total_median_ns": 32910.0, "total_std_ns": 5271.311507472856, "total_mad_ns": 2241.0, "total_cv": 0.15369383439236892, "total_min_ns": 24843.0, "total_max_ns": 47903.0, "total_p5_ns": 27560.4, "total_p25_ns": 31123.5, "total_p50_ns": 32910.0, "total_p75_ns": 36311.5, "total_p95_ns": 44960.59999999999, "total_p99_ns": 46703.33999999999, "total_ci_low_ns": 33205.59126506024, "total_ci_high_ns": 35465.04487951807, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.497352855775504}, {"serializer": "avsc", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "5.7.9", "avg_time_ser_ns": 9888.023529411765, "avg_time_deser_ns": 7879.541176470589, "avg_time_total_ns": 17767.564705882352, "median_size_bytes": 114.0, "avg_ops_per_sec": 56282.33337284133, "min_ops_per_sec": 39732.99427844882, "max_ops_per_sec": 88487.74444739404, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 9888.023529411765, "ser_median_ns": 10026.0, "ser_std_ns": 1701.495308590083, "ser_mad_ns": 1158.0, "ser_cv": 0.17207638144559556, "ser_min_ns": 6016.0, "ser_max_ns": 14797.0, "ser_p5_ns": 7416.6, "ser_p25_ns": 8662.0, "ser_p50_ns": 10026.0, "ser_p75_ns": 10861.0, "ser_p95_ns": 12840.0, "ser_p99_ns": 14098.119999999997, "ser_ci_low_ns": 9537.311176470588, "ser_ci_high_ns": 10258.78794117647, "deser_mean_ns": 7879.541176470589, "deser_median_ns": 7911.0, "deser_std_ns": 956.1325315703731, "deser_mad_ns": 624.0, "deser_cv": 0.1213436810794921, "deser_min_ns": 5285.0, "deser_max_ns": 10566.0, "deser_p5_ns": 6305.4, "deser_p25_ns": 7211.0, "deser_p50_ns": 7911.0, "deser_p75_ns": 8464.0, "deser_p95_ns": 9359.2, "deser_p99_ns": 10402.199999999999, "deser_ci_low_ns": 7685.291470588235, "deser_ci_high_ns": 8080.134117647059, "total_mean_ns": 17767.564705882352, "total_median_ns": 17759.0, "total_std_ns": 2433.8227204243494, "total_mad_ns": 1762.0, "total_cv": 0.13698122172131882, "total_min_ns": 11301.0, "total_max_ns": 25168.0, "total_p5_ns": 14120.2, "total_p25_ns": 15997.0, "total_p50_ns": 17759.0, "total_p75_ns": 19477.0, "total_p95_ns": 21485.6, "total_p99_ns": 23283.039999999994, "total_ci_low_ns": 17250.490588235294, "total_ci_high_ns": 18294.566176470587, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.912463400576304}, {"serializer": "sia", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "2.3.0", "avg_time_ser_ns": 13028.168539325843, "avg_time_deser_ns": 6877.786516853933, "avg_time_total_ns": 19905.955056179777, "median_size_bytes": 547.0, "avg_ops_per_sec": 50236.22313914305, "min_ops_per_sec": 44929.68504290785, "max_ops_per_sec": 55029.7160466652, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 13028.168539325843, "ser_median_ns": 12892.0, "ser_std_ns": 862.5950176377812, "ser_mad_ns": 565.0, "ser_cv": 0.06620999836116774, "ser_min_ns": 11502.0, "ser_max_ns": 15352.0, "ser_p5_ns": 11897.8, "ser_p25_ns": 12381.0, "ser_p50_ns": 12892.0, "ser_p75_ns": 13465.0, "ser_p95_ns": 14619.999999999998, "ser_p99_ns": 15276.32, "ser_ci_low_ns": 12854.556741573035, "ser_ci_high_ns": 13215.238483146068, "deser_mean_ns": 6877.786516853933, "deser_median_ns": 6882.0, "deser_std_ns": 282.18282564476914, "deser_mad_ns": 191.0, "deser_cv": 0.04102814545832202, "deser_min_ns": 6241.0, "deser_max_ns": 7613.0, "deser_p5_ns": 6381.8, "deser_p25_ns": 6687.0, "deser_p50_ns": 6882.0, "deser_p75_ns": 7066.0, "deser_p95_ns": 7374.2, "deser_p99_ns": 7481.880000000001, "deser_ci_low_ns": 6818.951685393259, "deser_ci_high_ns": 6937.363202247191, "total_mean_ns": 19905.955056179777, "total_median_ns": 19751.0, "total_std_ns": 956.7148681118059, "total_mad_ns": 624.0, "total_cv": 0.04806174159500049, "total_min_ns": 18172.0, "total_max_ns": 22257.0, "total_p5_ns": 18574.4, "total_p25_ns": 19193.0, "total_p50_ns": 19751.0, "total_p75_ns": 20537.0, "total_p95_ns": 21604.8, "total_p99_ns": 22150.52, "total_ci_low_ns": 19718.09915730337, "total_ci_high_ns": 20097.118258426966, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.827150974429365}, {"serializer": "bebop", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "3.2.3", "avg_time_ser_ns": 5111.790697674419, "avg_time_deser_ns": 4814.732558139535, "avg_time_total_ns": 9926.523255813954, "median_size_bytes": 547.0, "avg_ops_per_sec": 100740.20623628731, "min_ops_per_sec": 85755.93859874796, "max_ops_per_sec": 121212.12121212122, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 5111.790697674419, "ser_median_ns": 5008.5, "ser_std_ns": 487.48751094178135, "ser_mad_ns": 314.0, "ser_cv": 0.09536531125258339, "ser_min_ns": 4051.0, "ser_max_ns": 6435.0, "ser_p5_ns": 4416.75, "ser_p25_ns": 4833.0, "ser_p50_ns": 5008.5, "ser_p75_ns": 5410.25, "ser_p95_ns": 6026.0, "ser_p99_ns": 6187.6500000000015, "ser_ci_low_ns": 5011.021220930233, "ser_ci_high_ns": 5214.875872093023, "deser_mean_ns": 4814.732558139535, "deser_median_ns": 4806.5, "deser_std_ns": 291.18962588254107, "deser_mad_ns": 162.0, "deser_cv": 0.06047887860152712, "deser_min_ns": 4091.0, "deser_max_ns": 5542.0, "deser_p5_ns": 4383.0, "deser_p25_ns": 4644.25, "deser_p50_ns": 4806.5, "deser_p75_ns": 4944.75, "deser_p95_ns": 5372.25, "deser_p99_ns": 5520.75, "deser_ci_low_ns": 4755.147093023255, "deser_ci_high_ns": 4875.352906976744, "total_mean_ns": 9926.523255813954, "total_median_ns": 9841.0, "total_std_ns": 710.6230361118364, "total_mad_ns": 486.5, "total_cv": 0.07158831121416305, "total_min_ns": 8250.0, "total_max_ns": 11661.0, "total_p5_ns": 8895.5, "total_p25_ns": 9440.5, "total_p50_ns": 9841.0, "total_p75_ns": 10490.0, "total_p95_ns": 11151.5, "total_p99_ns": 11518.2, "total_ci_low_ns": 9779.550290697674, "total_ci_high_ns": 10076.04476744186, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.9664916229057264, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.3914346529047203}, {"serializer": "JSON.stringify", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "node-24.15.0", "avg_time_ser_ns": 2537.7741935483873, "avg_time_deser_ns": 3196.2473118279568, "avg_time_total_ns": 5734.021505376344, "median_size_bytes": 448.0, "avg_ops_per_sec": 174397.67169732065, "min_ops_per_sec": 98270.44025157233, "max_ops_per_sec": 318268.6187141948, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 2537.7741935483873, "ser_median_ns": 2314.0, "ser_std_ns": 830.3435398131288, "ser_mad_ns": 570.0, "ser_cv": 0.32719362578595657, "ser_min_ns": 1297.0, "ser_max_ns": 5087.0, "ser_p5_ns": 1506.6, "ser_p25_ns": 1857.0, "ser_p50_ns": 2314.0, "ser_p75_ns": 3151.0, "ser_p95_ns": 3987.7999999999997, "ser_p99_ns": 4910.36, "ser_ci_low_ns": 2378.0102150537637, "ser_ci_high_ns": 2712.2384408602147, "deser_mean_ns": 3196.2473118279568, "deser_median_ns": 2917.0, "deser_std_ns": 940.4880746754983, "deser_mad_ns": 472.0, "deser_cv": 0.29424759191666755, "deser_min_ns": 1845.0, "deser_max_ns": 5731.0, "deser_p5_ns": 2197.4, "deser_p25_ns": 2525.0, "deser_p50_ns": 2917.0, "deser_p75_ns": 3575.0, "deser_p95_ns": 5211.999999999999, "deser_p99_ns": 5406.24, "deser_ci_low_ns": 3013.8322580645163, "deser_ci_high_ns": 3380.517473118279, "total_mean_ns": 5734.021505376344, "total_median_ns": 5265.0, "total_std_ns": 1564.8191517850748, "total_mad_ns": 849.0, "total_cv": 0.27290081669869326, "total_min_ns": 3142.0, "total_max_ns": 10176.0, "total_p5_ns": 3910.4, "total_p25_ns": 4498.0, "total_p50_ns": 5265.0, "total_p75_ns": 6568.0, "total_p95_ns": 8623.6, "total_p99_ns": 9793.279999999999, "total_ci_low_ns": 5429.001075268818, "total_ci_high_ns": 6047.722043010753, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "@msgpack/msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "3.1.3", "avg_time_ser_ns": 7723.44, "avg_time_deser_ns": 8481.013333333334, "avg_time_total_ns": 16204.453333333333, "median_size_bytes": 325.0, "avg_ops_per_sec": 61711.43076718005, "min_ops_per_sec": 44929.68504290785, "max_ops_per_sec": 84509.42280064228, "runs": 75, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 24, "ser_mean_ns": 7723.44, "ser_median_ns": 7587.0, "ser_std_ns": 986.5291634159988, "ser_mad_ns": 500.0, "ser_cv": 0.12773183496162316, "ser_min_ns": 5836.0, "ser_max_ns": 10604.0, "ser_p5_ns": 6361.8, "ser_p25_ns": 7077.5, "ser_p50_ns": 7587.0, "ser_p75_ns": 8013.5, "ser_p95_ns": 9824.1, "ser_p99_ns": 10265.080000000002, "ser_ci_low_ns": 7499.9473333333335, "ser_ci_high_ns": 7951.917666666666, "deser_mean_ns": 8481.013333333334, "deser_median_ns": 8125.0, "deser_std_ns": 1477.1352706938956, "deser_mad_ns": 716.0, "deser_cv": 0.17416966730711764, "deser_min_ns": 5997.0, "deser_max_ns": 15257.0, "deser_p5_ns": 6711.5, "deser_p25_ns": 7706.0, "deser_p50_ns": 8125.0, "deser_p75_ns": 9125.0, "deser_p95_ns": 11084.099999999999, "deser_p99_ns": 12928.960000000015, "deser_ci_low_ns": 8161.412666666666, "deser_ci_high_ns": 8823.844333333333, "total_mean_ns": 16204.453333333333, "total_median_ns": 15750.0, "total_std_ns": 2238.3472262419937, "total_mad_ns": 975.0, "total_cv": 0.1381316098851423, "total_min_ns": 11833.0, "total_max_ns": 22257.0, "total_p5_ns": 13067.0, "total_p25_ns": 15022.0, "total_p50_ns": 15750.0, "total_p75_ns": 17108.0, "total_p95_ns": 20810.0, "total_p99_ns": 22057.2, "total_ci_low_ns": 15717.199, "total_ci_high_ns": 16739.16866666667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.500656318025927}, {"serializer": "fast-json-stringify", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "6.4.0", "avg_time_ser_ns": 5990.736263736264, "avg_time_deser_ns": 3355.010989010989, "avg_time_total_ns": 9345.747252747253, "median_size_bytes": 448.0, "avg_ops_per_sec": 107000.53970601896, "min_ops_per_sec": 80392.31449473431, "max_ops_per_sec": 161056.53084232565, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 5990.736263736264, "ser_median_ns": 5967.0, "ser_std_ns": 952.2442827944803, "ser_mad_ns": 629.0, "ser_cv": 0.15895279659675599, "ser_min_ns": 3788.0, "ser_max_ns": 8068.0, "ser_p5_ns": 4348.0, "ser_p25_ns": 5396.5, "ser_p50_ns": 5967.0, "ser_p75_ns": 6620.0, "ser_p95_ns": 7587.5, "ser_p99_ns": 7872.699999999999, "ser_ci_low_ns": 5796.2120879120885, "ser_ci_high_ns": 6178.9700549450545, "deser_mean_ns": 3355.010989010989, "deser_median_ns": 3064.0, "deser_std_ns": 918.7512841352234, "deser_mad_ns": 632.0, "deser_cv": 0.2738444932503958, "deser_min_ns": 2055.0, "deser_max_ns": 5720.0, "deser_p5_ns": 2213.0, "deser_p25_ns": 2610.5, "deser_p50_ns": 3064.0, "deser_p75_ns": 4083.0, "deser_p95_ns": 5109.5, "deser_p99_ns": 5461.699999999998, "deser_ci_low_ns": 3182.9293956043957, "deser_ci_high_ns": 3539.0461538461536, "total_mean_ns": 9345.747252747253, "total_median_ns": 9040.0, "total_std_ns": 1427.8862279094508, "total_mad_ns": 925.0, "total_cv": 0.15278459702510283, "total_min_ns": 6209.0, "total_max_ns": 12439.0, "total_p5_ns": 7238.5, "total_p25_ns": 8380.0, "total_p50_ns": 9040.0, "total_p75_ns": 10336.5, "total_p95_ns": 12076.0, "total_p99_ns": 12262.599999999999, "total_ci_low_ns": 9036.180494505494, "total_ci_high_ns": 9642.749725274725, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.892118634054118, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.4000097848669717}, {"serializer": "json-pack-msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "18.28.0", "avg_time_ser_ns": 4995.438356164384, "avg_time_deser_ns": 7330.342465753424, "avg_time_total_ns": 12325.780821917808, "median_size_bytes": 337.0, "avg_ops_per_sec": 81130.76278476343, "min_ops_per_sec": 49610.55712655653, "max_ops_per_sec": 129015.61088891755, "runs": 73, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 26, "ser_mean_ns": 4995.438356164384, "ser_median_ns": 4771.0, "ser_std_ns": 1056.0281060325021, "ser_mad_ns": 429.0, "ser_cv": 0.21139848612672016, "ser_min_ns": 3246.0, "ser_max_ns": 8563.0, "ser_p5_ns": 3635.0, "ser_p25_ns": 4411.0, "ser_p50_ns": 4771.0, "ser_p75_ns": 5247.0, "ser_p95_ns": 7132.799999999994, "ser_p99_ns": 8537.08, "ser_ci_low_ns": 4760.4619863013695, "ser_ci_high_ns": 5236.2626712328765, "deser_mean_ns": 7330.342465753424, "deser_median_ns": 6844.0, "deser_std_ns": 1686.4435476533488, "deser_mad_ns": 982.0, "deser_cv": 0.23006340502264835, "deser_min_ns": 4315.0, "deser_max_ns": 14103.0, "deser_p5_ns": 4985.8, "deser_p25_ns": 6303.0, "deser_p50_ns": 6844.0, "deser_p75_ns": 8534.0, "deser_p95_ns": 10012.199999999995, "deser_p99_ns": 12024.360000000004, "deser_ci_low_ns": 6967.746575342466, "deser_ci_high_ns": 7717.598630136986, "total_mean_ns": 12325.780821917808, "total_median_ns": 12164.0, "total_std_ns": 2376.5554160882098, "total_mad_ns": 1558.0, "total_cv": 0.19281175370749729, "total_min_ns": 7751.0, "total_max_ns": 20157.0, "total_p5_ns": 8630.8, "total_p25_ns": 10681.0, "total_p50_ns": 12164.0, "total_p75_ns": 13722.0, "total_p95_ns": 17023.2, "total_p99_ns": 18170.520000000004, "total_ci_low_ns": 11803.992808219178, "total_ci_high_ns": 12867.399315068493, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.9846811017822948, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.342672167962297}, {"serializer": "google-protobuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "3.21.4", "avg_time_ser_ns": 431.0769230769231, "avg_time_deser_ns": 5648.472527472528, "avg_time_total_ns": 6079.549450549451, "median_size_bytes": 155.0, "avg_ops_per_sec": 164485.8731940445, "min_ops_per_sec": 102785.48668927947, "max_ops_per_sec": 256278.83136852895, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 431.0769230769231, "ser_median_ns": 420.0, "ser_std_ns": 73.10604637849059, "ser_mad_ns": 44.0, "ser_cv": 0.16958932957180187, "ser_min_ns": 282.0, "ser_max_ns": 622.0, "ser_p5_ns": 331.5, "ser_p25_ns": 380.0, "ser_p50_ns": 420.0, "ser_p75_ns": 472.5, "ser_p95_ns": 568.0, "ser_p99_ns": 602.1999999999998, "ser_ci_low_ns": 416.8013736263736, "ser_ci_high_ns": 445.9351648351648, "deser_mean_ns": 5648.472527472528, "deser_median_ns": 5042.0, "deser_std_ns": 1455.044629637481, "deser_mad_ns": 668.0, "deser_cv": 0.25759966478735036, "deser_min_ns": 3549.0, "deser_max_ns": 9107.0, "deser_p5_ns": 3725.5, "deser_p25_ns": 4593.0, "deser_p50_ns": 5042.0, "deser_p75_ns": 7059.5, "deser_p95_ns": 8144.0, "deser_p99_ns": 8361.799999999996, "deser_ci_low_ns": 5370.242857142857, "deser_ci_high_ns": 5965.869505494506, "total_mean_ns": 6079.549450549451, "total_median_ns": 5533.0, "total_std_ns": 1481.8800690994324, "total_mad_ns": 710.0, "total_cv": 0.24374833713467117, "total_min_ns": 3902.0, "total_max_ns": 9729.0, "total_p5_ns": 4069.0, "total_p25_ns": 5000.5, "total_p50_ns": 5533.0, "total_p75_ns": 7481.5, "total_p95_ns": 8592.0, "total_p99_ns": 8946.899999999994, "total_ci_low_ns": 5787.949175824176, "total_ci_high_ns": 6391.610714285714, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.15928157863641734, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.22573406440580396}, {"serializer": "devalue", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "5.8.1", "avg_time_ser_ns": 24462.20879120879, "avg_time_deser_ns": 7485.934065934066, "avg_time_total_ns": 31948.14285714286, "median_size_bytes": 555.0, "avg_ops_per_sec": 31300.723941029435, "min_ops_per_sec": 20535.567603088548, "max_ops_per_sec": 52358.762238860676, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 24462.20879120879, "ser_median_ns": 25466.0, "ser_std_ns": 5775.87262578177, "ser_mad_ns": 5188.0, "ser_cv": 0.23611410870867466, "ser_min_ns": 13979.0, "ser_max_ns": 40623.0, "ser_p5_ns": 17096.5, "ser_p25_ns": 19034.0, "ser_p50_ns": 25466.0, "ser_p75_ns": 29032.0, "ser_p95_ns": 31991.5, "ser_p99_ns": 38368.499999999985, "ser_ci_low_ns": 23271.40521978022, "ser_ci_high_ns": 25683.81730769231, "deser_mean_ns": 7485.934065934066, "deser_median_ns": 7131.0, "deser_std_ns": 1026.4075084400804, "deser_mad_ns": 629.0, "deser_cv": 0.13711148126603345, "deser_min_ns": 5120.0, "deser_max_ns": 10401.0, "deser_p5_ns": 6242.5, "deser_p25_ns": 6725.0, "deser_p50_ns": 7131.0, "deser_p75_ns": 8172.0, "deser_p95_ns": 9332.0, "deser_p99_ns": 10353.3, "deser_ci_low_ns": 7273.795054945055, "deser_ci_high_ns": 7682.79478021978, "total_mean_ns": 31948.14285714286, "total_median_ns": 32775.0, "total_std_ns": 6031.747310083406, "total_mad_ns": 4892.0, "total_cv": 0.18879805743496755, "total_min_ns": 19099.0, "total_max_ns": 48696.0, "total_p5_ns": 23386.5, "total_p25_ns": 26179.0, "total_p50_ns": 32775.0, "total_p75_ns": 36556.5, "total_p95_ns": 40099.5, "total_p99_ns": 46028.39999999998, "total_ci_low_ns": 30765.44010989011, "total_ci_high_ns": 33240.86291208791, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.9533658728800605}, {"serializer": "cbor-x", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "1.6.4", "avg_time_ser_ns": 8660.820512820514, "avg_time_deser_ns": 12530.064102564103, "avg_time_total_ns": 21190.884615384617, "median_size_bytes": 234.0, "avg_ops_per_sec": 47190.101694669145, "min_ops_per_sec": 31509.95714645828, "max_ops_per_sec": 71952.7989638797, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 8660.820512820514, "ser_median_ns": 7131.0, "ser_std_ns": 3550.5507300764602, "ser_mad_ns": 1130.5, "ser_cv": 0.40995546840170866, "ser_min_ns": 4827.0, "ser_max_ns": 18696.0, "ser_p5_ns": 5656.3, "ser_p25_ns": 6427.75, "ser_p50_ns": 7131.0, "ser_p75_ns": 10442.25, "ser_p95_ns": 17271.549999999996, "ser_p99_ns": 18665.97, "ser_ci_low_ns": 7904.727243589744, "ser_ci_high_ns": 9483.36185897436, "deser_mean_ns": 12530.064102564103, "deser_median_ns": 12711.0, "deser_std_ns": 1430.4867606730488, "deser_mad_ns": 695.5, "deser_cv": 0.11416436092935228, "deser_min_ns": 9071.0, "deser_max_ns": 16145.0, "deser_p5_ns": 10085.25, "deser_p25_ns": 11622.75, "deser_p50_ns": 12711.0, "deser_p75_ns": 13288.75, "deser_p95_ns": 15284.6, "deser_p99_ns": 16000.240000000002, "deser_ci_low_ns": 12207.109294871796, "deser_ci_high_ns": 12847.347435897434, "total_mean_ns": 21190.884615384617, "total_median_ns": 20264.5, "total_std_ns": 3970.712353835657, "total_mad_ns": 2460.0, "total_cv": 0.18737831977778374, "total_min_ns": 13898.0, "total_max_ns": 31736.0, "total_p5_ns": 16468.25, "total_p25_ns": 18440.25, "total_p50_ns": 20264.5, "total_p75_ns": 23590.0, "total_p95_ns": 29921.499999999993, "total_p99_ns": 31675.94, "total_ci_low_ns": 20328.495833333334, "total_ci_high_ns": 22103.50128205128, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.272958176731141}, {"serializer": "protobufjs", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "7.6.5", "avg_time_ser_ns": 7325.875, "avg_time_deser_ns": 17024.863636363636, "avg_time_total_ns": 24350.738636363636, "median_size_bytes": 155.0, "avg_ops_per_sec": 41066.51608944101, "min_ops_per_sec": 25257.627803596686, "max_ops_per_sec": 83556.14973262032, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 7325.875, "ser_median_ns": 7562.0, "ser_std_ns": 1237.7872713123966, "ser_mad_ns": 808.0, "ser_cv": 0.1689610143924646, "ser_min_ns": 4364.0, "ser_max_ns": 11019.0, "ser_p5_ns": 5714.95, "ser_p25_ns": 6324.0, "ser_p50_ns": 7562.0, "ser_p75_ns": 8051.0, "ser_p95_ns": 9364.899999999998, "ser_p99_ns": 10942.439999999999, "ser_ci_low_ns": 7063.623011363637, "ser_ci_high_ns": 7579.697443181818, "deser_mean_ns": 17024.863636363636, "deser_median_ns": 17389.5, "deser_std_ns": 4708.2356462619255, "deser_mad_ns": 3518.5, "deser_cv": 0.2765505643290758, "deser_min_ns": 7604.0, "deser_max_ns": 30066.0, "deser_p5_ns": 10697.25, "deser_p25_ns": 12907.5, "deser_p50_ns": 17389.5, "deser_p75_ns": 19671.25, "deser_p95_ns": 25933.05, "deser_p99_ns": 29135.099999999995, "deser_ci_low_ns": 16028.586079545456, "deser_ci_high_ns": 18001.95340909091, "total_mean_ns": 24350.738636363636, "total_median_ns": 25004.5, "total_std_ns": 5712.078284932964, "total_mad_ns": 4305.0, "total_cv": 0.23457515479234617, "total_min_ns": 11968.0, "total_max_ns": 39592.0, "total_p5_ns": 16911.55, "total_p25_ns": 19207.0, "total_p50_ns": 25004.5, "total_p75_ns": 27643.75, "total_p95_ns": 33954.8, "total_p99_ns": 38608.02999999999, "total_ci_low_ns": 23203.043465909093, "total_ci_high_ns": 25509.582670454547, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.480911597905371}, {"serializer": "flexbuffers", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "24.12.23", "avg_time_ser_ns": 216328.3829787234, "avg_time_deser_ns": 32787.265957446805, "avg_time_total_ns": 249115.6489361702, "median_size_bytes": 579.0, "avg_ops_per_sec": 4014.199847622682, "min_ops_per_sec": 1689.1007396572138, "max_ops_per_sec": 10023.15348454931, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 216328.3829787234, "ser_median_ns": 138764.5, "ser_std_ns": 118959.39799392714, "ser_mad_ns": 25419.0, "ser_cv": 0.5499019423892573, "ser_min_ns": 68601.0, "ser_max_ns": 550524.0, "ser_p5_ns": 111599.8, "ser_p25_ns": 119805.5, "ser_p50_ns": 138764.5, "ser_p75_ns": 348105.5, "ser_p95_ns": 375733.69999999995, "ser_p99_ns": 466417.5899999994, "ser_ci_low_ns": 191989.37260638297, "ser_ci_high_ns": 239847.98829787233, "deser_mean_ns": 32787.265957446805, "deser_median_ns": 31796.0, "deser_std_ns": 3250.129278406556, "deser_mad_ns": 1873.5, "deser_cv": 0.09912779194900728, "deser_min_ns": 26704.0, "deser_max_ns": 42270.0, "deser_p5_ns": 28506.0, "deser_p25_ns": 30471.5, "deser_p50_ns": 31796.0, "deser_p75_ns": 35057.75, "deser_p95_ns": 38489.49999999999, "deser_p99_ns": 41560.409999999996, "deser_ci_low_ns": 32163.74335106383, "deser_ci_high_ns": 33464.30265957447, "total_mean_ns": 249115.6489361702, "total_median_ns": 169191.0, "total_std_ns": 121225.6921176904, "total_mad_ns": 25825.5, "total_cv": 0.48662415482678695, "total_min_ns": 99769.0, "total_max_ns": 592031.0, "total_p5_ns": 140756.25, "total_p25_ns": 151432.5, "total_p50_ns": 169191.0, "total_p75_ns": 384077.0, "total_p95_ns": 413866.7499999999, "total_p99_ns": 504584.9599999994, "total_ci_low_ns": 224844.40079787237, "total_ci_high_ns": 272415.08031914895, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.8199090042486974}, {"serializer": "msgpackr", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "1.12.1", "avg_time_ser_ns": 4899.640449438202, "avg_time_deser_ns": 7870.0, "avg_time_total_ns": 12769.640449438202, "median_size_bytes": 345.0, "avg_ops_per_sec": 78310.74053803878, "min_ops_per_sec": 53157.55900489049, "max_ops_per_sec": 159362.5498007968, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 4899.640449438202, "ser_median_ns": 4594.0, "ser_std_ns": 1061.374272595237, "ser_mad_ns": 609.0, "ser_cv": 0.21662288968916796, "ser_min_ns": 2576.0, "ser_max_ns": 7660.0, "ser_p5_ns": 3612.2, "ser_p25_ns": 4119.0, "ser_p50_ns": 4594.0, "ser_p75_ns": 5866.0, "ser_p95_ns": 6734.2, "ser_p99_ns": 7150.480000000002, "ser_ci_low_ns": 4684.56713483146, "ser_ci_high_ns": 5125.215730337079, "deser_mean_ns": 7870.0, "deser_median_ns": 7452.0, "deser_std_ns": 1460.3430169904354, "deser_mad_ns": 936.0, "deser_cv": 0.18555819783868302, "deser_min_ns": 3699.0, "deser_max_ns": 12035.0, "deser_p5_ns": 6308.4, "deser_p25_ns": 6855.0, "deser_p50_ns": 7452.0, "deser_p75_ns": 8900.0, "deser_p95_ns": 10104.6, "deser_p99_ns": 11816.760000000002, "deser_ci_low_ns": 7567.576123595505, "deser_ci_high_ns": 8158.384831460674, "total_mean_ns": 12769.640449438202, "total_median_ns": 12108.0, "total_std_ns": 2399.7707477968834, "total_mad_ns": 1422.0, "total_cv": 0.18792782438149705, "total_min_ns": 6275.0, "total_max_ns": 18812.0, "total_p5_ns": 10000.4, "total_p25_ns": 10972.0, "total_p50_ns": 12108.0, "total_p75_ns": 14694.0, "total_p95_ns": 16622.2, "total_p99_ns": 17708.480000000007, "total_ci_low_ns": 12265.156460674158, "total_ci_high_ns": 13244.553370786516, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.9859852603600339, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.474156805036552}, {"serializer": "simdjson-parse+JSON.stringify", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "0.9.2", "avg_time_ser_ns": 2541.929411764706, "avg_time_deser_ns": 15087.117647058823, "avg_time_total_ns": 17629.04705882353, "median_size_bytes": 448.0, "avg_ops_per_sec": 56724.56353785097, "min_ops_per_sec": 38303.903167732795, "max_ops_per_sec": 82223.318533136, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 2541.929411764706, "ser_median_ns": 2287.0, "ser_std_ns": 845.3282792619019, "ser_mad_ns": 540.0, "ser_cv": 0.33255379765838666, "ser_min_ns": 1316.0, "ser_max_ns": 5083.0, "ser_p5_ns": 1546.6, "ser_p25_ns": 1882.0, "ser_p50_ns": 2287.0, "ser_p75_ns": 3126.0, "ser_p95_ns": 4117.599999999999, "ser_p99_ns": 4956.16, "ser_ci_low_ns": 2372.383529411765, "ser_ci_high_ns": 2729.914411764706, "deser_mean_ns": 15087.117647058823, "deser_median_ns": 15071.0, "deser_std_ns": 2339.8343928565537, "deser_mad_ns": 845.0, "deser_cv": 0.15508823140334532, "deser_min_ns": 10261.0, "deser_max_ns": 22194.0, "deser_p5_ns": 11195.8, "deser_p25_ns": 14058.0, "deser_p50_ns": 15071.0, "deser_p75_ns": 15570.0, "deser_p95_ns": 19649.6, "deser_p99_ns": 21842.039999999997, "deser_ci_low_ns": 14593.346176470588, "deser_ci_high_ns": 15608.515588235294, "total_mean_ns": 17629.04705882353, "total_median_ns": 17419.0, "total_std_ns": 2718.444420838446, "total_mad_ns": 1465.0, "total_cv": 0.15420257327396691, "total_min_ns": 12162.0, "total_max_ns": 26107.0, "total_p5_ns": 13308.8, "total_p25_ns": 15983.0, "total_p50_ns": 17419.0, "total_p75_ns": 18967.0, "total_p95_ns": 21553.6, "total_p99_ns": 24821.799999999996, "total_ci_low_ns": 17105.24411764706, "total_ci_high_ns": 18189.211176470588, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.402205964211193}, {"serializer": "bson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "6.10.4", "avg_time_ser_ns": 11360.946808510638, "avg_time_deser_ns": 11287.074468085106, "avg_time_total_ns": 22648.021276595744, "median_size_bytes": 493.0, "avg_ops_per_sec": 44153.96770372124, "min_ops_per_sec": 23171.749003614794, "max_ops_per_sec": 91024.94083378845, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 11360.946808510638, "ser_median_ns": 10323.0, "ser_std_ns": 3038.7221258993995, "ser_mad_ns": 1172.5, "ser_cv": 0.2674708523081062, "ser_min_ns": 5486.0, "ser_max_ns": 18000.0, "ser_p5_ns": 7813.05, "ser_p25_ns": 9453.75, "ser_p50_ns": 10323.0, "ser_p75_ns": 12906.5, "ser_p95_ns": 16848.35, "ser_p99_ns": 17670.78, "ser_ci_low_ns": 10746.171010638298, "ser_ci_high_ns": 12001.427127659574, "deser_mean_ns": 11287.074468085106, "deser_median_ns": 8254.0, "deser_std_ns": 5779.003093772812, "deser_mad_ns": 827.0, "deser_cv": 0.5120018575329947, "deser_min_ns": 5500.0, "deser_max_ns": 30033.0, "deser_p5_ns": 7074.9, "deser_p25_ns": 7737.75, "deser_p50_ns": 8254.0, "deser_p75_ns": 16597.5, "deser_p95_ns": 24354.05, "deser_p99_ns": 28811.909999999993, "deser_ci_low_ns": 10195.04920212766, "deser_ci_high_ns": 12489.048138297872, "total_mean_ns": 22648.021276595744, "total_median_ns": 18596.5, "total_std_ns": 8209.669445729503, "total_mad_ns": 2001.0, "total_cv": 0.3624894795649676, "total_min_ns": 10986.0, "total_max_ns": 43156.0, "total_p5_ns": 14846.6, "total_p25_ns": 17307.0, "total_p50_ns": 18596.5, "total_p75_ns": 26911.5, "total_p95_ns": 40390.299999999996, "total_p99_ns": 42532.899999999994, "total_ci_low_ns": 21045.22420212766, "total_ci_high_ns": 24217.113031914894, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.8433547561364088}, {"serializer": "flatbuffers", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "24.12.23", "avg_time_ser_ns": 14135.506172839507, "avg_time_deser_ns": 7742.123456790124, "avg_time_total_ns": 21877.62962962963, "median_size_bytes": 416.0, "avg_ops_per_sec": 45708.79098554925, "min_ops_per_sec": 32177.102773666258, "max_ops_per_sec": 70726.3597142655, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 14135.506172839507, "ser_median_ns": 13453.0, "ser_std_ns": 2726.5967941898593, "ser_mad_ns": 1187.0, "ser_cv": 0.19288992985824907, "ser_min_ns": 9225.0, "ser_max_ns": 22092.0, "ser_p5_ns": 11236.0, "ser_p25_ns": 12375.0, "ser_p50_ns": 13453.0, "ser_p75_ns": 15032.0, "ser_p95_ns": 19602.0, "ser_p99_ns": 21891.2, "ser_ci_low_ns": 13542.72438271605, "ser_ci_high_ns": 14755.36512345679, "deser_mean_ns": 7742.123456790124, "deser_median_ns": 8066.0, "deser_std_ns": 1376.6324344457023, "deser_mad_ns": 929.0, "deser_cv": 0.17781070556790793, "deser_min_ns": 4914.0, "deser_max_ns": 11618.0, "deser_p5_ns": 5742.0, "deser_p25_ns": 6492.0, "deser_p50_ns": 8066.0, "deser_p75_ns": 8626.0, "deser_p95_ns": 9742.0, "deser_p99_ns": 11280.400000000001, "deser_ci_low_ns": 7463.318518518518, "deser_ci_high_ns": 8041.225925925926, "total_mean_ns": 21877.62962962963, "total_median_ns": 21506.0, "total_std_ns": 3761.4800160456934, "total_mad_ns": 2504.0, "total_cv": 0.17193270384975304, "total_min_ns": 14139.0, "total_max_ns": 31078.0, "total_p5_ns": 17057.0, "total_p25_ns": 18998.0, "total_p50_ns": 21506.0, "total_p75_ns": 23871.0, "total_p95_ns": 29004.0, "total_p99_ns": 30718.800000000003, "total_ci_low_ns": 21089.112037037037, "total_ci_high_ns": 22733.988580246914, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.72197875199155}, {"serializer": "v8-serializer", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "v8-13.6.233.17-node.48", "avg_time_ser_ns": 7431.8375, "avg_time_deser_ns": 7117.6625, "avg_time_total_ns": 14549.5, "median_size_bytes": 403.0, "avg_ops_per_sec": 68730.88422282552, "min_ops_per_sec": 54677.67510525452, "max_ops_per_sec": 89565.60680698612, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 7431.8375, "ser_median_ns": 7542.5, "ser_std_ns": 1021.1915284688057, "ser_mad_ns": 697.0, "ser_cv": 0.13740767723578534, "ser_min_ns": 5170.0, "ser_max_ns": 9915.0, "ser_p5_ns": 5657.95, "ser_p25_ns": 6779.5, "ser_p50_ns": 7542.5, "ser_p75_ns": 8155.0, "ser_p95_ns": 8785.149999999998, "ser_p99_ns": 9580.039999999997, "ser_ci_low_ns": 7202.899687499999, "ser_ci_high_ns": 7661.15125, "deser_mean_ns": 7117.6625, "deser_median_ns": 7137.0, "deser_std_ns": 585.529079016079, "deser_mad_ns": 313.5, "deser_cv": 0.08226423759430557, "deser_min_ns": 5653.0, "deser_max_ns": 8798.0, "deser_p5_ns": 6108.1, "deser_p25_ns": 6821.0, "deser_p50_ns": 7137.0, "deser_p75_ns": 7419.0, "deser_p95_ns": 8029.849999999999, "deser_p99_ns": 8632.099999999999, "deser_ci_low_ns": 6992.3125, "deser_ci_high_ns": 7239.64375, "total_mean_ns": 14549.5, "total_median_ns": 14720.0, "total_std_ns": 1482.7829292212239, "total_mad_ns": 784.0, "total_cv": 0.10191298183588604, "total_min_ns": 11165.0, "total_max_ns": 18289.0, "total_p5_ns": 11646.3, "total_p25_ns": 13969.5, "total_p50_ns": 14720.0, "total_p75_ns": 15533.75, "total_p95_ns": 16726.399999999998, "total_p99_ns": 17782.609999999997, "total_ci_low_ns": 14238.953437499998, "total_ci_high_ns": 14870.594687499999, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.745955430394228}, {"serializer": "bser", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "2.1.1", "avg_time_ser_ns": 10442.734939759037, "avg_time_deser_ns": 10707.44578313253, "avg_time_total_ns": 21150.180722891568, "median_size_bytes": 448.0, "avg_ops_per_sec": 47280.91987023381, "min_ops_per_sec": 41684.03501458941, "max_ops_per_sec": 53708.57725978839, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 10442.734939759037, "ser_median_ns": 10443.0, "ser_std_ns": 619.5483422610959, "ser_mad_ns": 457.0, "ser_cv": 0.05932816889781096, "ser_min_ns": 9140.0, "ser_max_ns": 12058.0, "ser_p5_ns": 9563.6, "ser_p25_ns": 9883.5, "ser_p50_ns": 10443.0, "ser_p75_ns": 10875.5, "ser_p95_ns": 11393.0, "ser_p99_ns": 11808.719999999998, "ser_ci_low_ns": 10306.397289156626, "ser_ci_high_ns": 10575.989759036143, "deser_mean_ns": 10707.44578313253, "deser_median_ns": 10701.0, "deser_std_ns": 505.40945132446694, "deser_mad_ns": 274.0, "deser_cv": 0.04720168204079444, "deser_min_ns": 9432.0, "deser_max_ns": 12043.0, "deser_p5_ns": 10001.1, "deser_p25_ns": 10363.5, "deser_p50_ns": 10701.0, "deser_p75_ns": 10952.5, "deser_p95_ns": 11651.599999999997, "deser_p99_ns": 11951.98, "deser_ci_low_ns": 10595.411746987951, "deser_ci_high_ns": 10814.712048192772, "total_mean_ns": 21150.180722891568, "total_median_ns": 21283.0, "total_std_ns": 1026.3943774984577, "total_mad_ns": 721.0, "total_cv": 0.048528870317763095, "total_min_ns": 18619.0, "total_max_ns": 23990.0, "total_p5_ns": 19691.6, "total_p25_ns": 20324.0, "total_p50_ns": 21283.0, "total_p75_ns": 21913.5, "total_p95_ns": 22601.0, "total_p99_ns": 23700.539999999997, "total_ci_low_ns": 20924.84156626506, "total_ci_high_ns": 21367.455120481925, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.46911413475925}, {"serializer": "cbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "9.0.2", "avg_time_ser_ns": 44305.14942528736, "avg_time_deser_ns": 39177.11494252874, "avg_time_total_ns": 83482.2643678161, "median_size_bytes": 332.0, "avg_ops_per_sec": 11978.592190481095, "min_ops_per_sec": 10361.942657009336, "max_ops_per_sec": 15428.765390193477, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 44305.14942528736, "ser_median_ns": 44449.0, "ser_std_ns": 5172.513858555367, "ser_mad_ns": 3921.0, "ser_cv": 0.11674746447425662, "ser_min_ns": 31723.0, "ser_max_ns": 55780.0, "ser_p5_ns": 35961.0, "ser_p25_ns": 40567.0, "ser_p50_ns": 44449.0, "ser_p75_ns": 48495.0, "ser_p95_ns": 52134.700000000004, "ser_p99_ns": 55278.62, "ser_ci_low_ns": 43210.60718390805, "ser_ci_high_ns": 45407.9316091954, "deser_mean_ns": 39177.11494252874, "deser_median_ns": 39308.0, "deser_std_ns": 2603.701432465959, "deser_mad_ns": 1997.0, "deser_cv": 0.06645975427964732, "deser_min_ns": 33091.0, "deser_max_ns": 45720.0, "deser_p5_ns": 35158.0, "deser_p25_ns": 37191.5, "deser_p50_ns": 39308.0, "deser_p75_ns": 40869.0, "deser_p95_ns": 43640.3, "deser_p99_ns": 45118.86, "deser_ci_low_ns": 38635.831034482755, "deser_ci_high_ns": 39738.77385057471, "total_mean_ns": 83482.2643678161, "total_median_ns": 84659.0, "total_std_ns": 7181.151770773152, "total_mad_ns": 5308.0, "total_cv": 0.08602008852004275, "total_min_ns": 64814.0, "total_max_ns": 96507.0, "total_p5_ns": 71424.8, "total_p25_ns": 77938.5, "total_p50_ns": 84659.0, "total_p75_ns": 88877.5, "total_p95_ns": 94382.5, "total_p99_ns": 95432.86, "total_ci_low_ns": 82019.57701149426, "total_ci_high_ns": 85001.55574712645, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.13079353571119}, {"serializer": "sia", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "2.3.0", "avg_time_ser_ns": 1107299.1046511629, "avg_time_deser_ns": 538930.7674418605, "avg_time_total_ns": 1646229.8720930233, "median_size_bytes": 55244.0, "avg_ops_per_sec": 607.4485811198384, "min_ops_per_sec": 561.5573557836477, "max_ops_per_sec": 652.4025375849102, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 1107299.1046511629, "ser_median_ns": 1098504.5, "ser_std_ns": 50971.53563752757, "ser_mad_ns": 35645.0, "ser_cv": 0.04603230999052, "ser_min_ns": 1016585.0, "ser_max_ns": 1236947.0, "ser_p5_ns": 1038323.75, "ser_p25_ns": 1066424.0, "ser_p50_ns": 1098504.5, "ser_p75_ns": 1145573.0, "ser_p95_ns": 1204251.75, "ser_p99_ns": 1229433.85, "ser_ci_low_ns": 1096943.9290697675, "ser_ci_high_ns": 1118173.7430232558, "deser_mean_ns": 538930.7674418605, "deser_median_ns": 537063.0, "deser_std_ns": 18122.55035855113, "deser_mad_ns": 12256.0, "deser_cv": 0.0336268616552982, "deser_min_ns": 507265.0, "deser_max_ns": 584935.0, "deser_p5_ns": 512273.0, "deser_p25_ns": 525484.5, "deser_p50_ns": 537063.0, "deser_p75_ns": 549974.25, "deser_p95_ns": 573760.5, "deser_p99_ns": 584883.15, "deser_ci_low_ns": 535332.0087209302, "deser_ci_high_ns": 542908.2523255814, "total_mean_ns": 1646229.8720930233, "total_median_ns": 1643678.0, "total_std_ns": 55597.23623321291, "total_mad_ns": 41160.0, "total_cv": 0.03377246226404965, "total_min_ns": 1532796.0, "total_max_ns": 1780762.0, "total_p5_ns": 1562604.5, "total_p25_ns": 1604388.75, "total_p50_ns": 1643678.0, "total_p75_ns": 1685349.0, "total_p95_ns": 1746943.5, "total_p99_ns": 1762130.85, "total_ci_low_ns": 1634633.0715116279, "total_ci_high_ns": 1657949.8270348837, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 34.33063279138849}, {"serializer": "json-pack-msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "18.28.0", "avg_time_ser_ns": 154043.175, "avg_time_deser_ns": 125801.7, "avg_time_total_ns": 279844.875, "median_size_bytes": 34046.0, "avg_ops_per_sec": 3573.4083034395394, "min_ops_per_sec": 3243.499216694939, "max_ops_per_sec": 3866.527471677686, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 154043.175, "ser_median_ns": 152292.0, "ser_std_ns": 8893.182908692947, "ser_mad_ns": 5603.5, "ser_cv": 0.05773175545552698, "ser_min_ns": 140239.0, "ser_max_ns": 179470.0, "ser_p5_ns": 143259.0, "ser_p25_ns": 147504.75, "ser_p50_ns": 152292.0, "ser_p75_ns": 159536.5, "ser_p95_ns": 172690.59999999998, "ser_p99_ns": 178644.44999999998, "ser_ci_low_ns": 152205.5665625, "ser_ci_high_ns": 156067.765625, "deser_mean_ns": 125801.7, "deser_median_ns": 124719.0, "deser_std_ns": 5234.3989472756575, "deser_mad_ns": 2510.5, "deser_cv": 0.04160833237766785, "deser_min_ns": 117260.0, "deser_max_ns": 144688.0, "deser_p5_ns": 118717.9, "deser_p25_ns": 122861.75, "deser_p50_ns": 124719.0, "deser_p75_ns": 127489.0, "deser_p95_ns": 135982.4, "deser_p99_ns": 142657.69999999998, "deser_ci_low_ns": 124701.8540625, "deser_ci_high_ns": 126988.0459375, "total_mean_ns": 279844.875, "total_median_ns": 277862.5, "total_std_ns": 12041.149946529615, "total_mad_ns": 7586.5, "total_cv": 0.04302794520188949, "total_min_ns": 258630.0, "total_max_ns": 308309.0, "total_p5_ns": 264257.95, "total_p25_ns": 270966.25, "total_p50_ns": 277862.5, "total_p75_ns": 286901.25, "total_p95_ns": 301591.3, "total_p99_ns": 305106.33999999997, "total_ci_low_ns": 277327.3703125, "total_ci_high_ns": 282506.6846875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.384130248282424}, {"serializer": "protobufjs", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "7.6.5", "avg_time_ser_ns": 227097.3033707865, "avg_time_deser_ns": 332789.55056179775, "avg_time_total_ns": 559886.8539325843, "median_size_bytes": 16307.0, "avg_ops_per_sec": 1786.0751560357398, "min_ops_per_sec": 1174.7292249136574, "max_ops_per_sec": 2366.6230419152607, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 227097.3033707865, "ser_median_ns": 209034.0, "ser_std_ns": 40191.21221604988, "ser_mad_ns": 14454.0, "ser_cv": 0.1769779368556783, "ser_min_ns": 182145.0, "ser_max_ns": 349752.0, "ser_p5_ns": 190961.2, "ser_p25_ns": 197743.0, "ser_p50_ns": 209034.0, "ser_p75_ns": 248139.0, "ser_p95_ns": 313774.9999999999, "ser_p99_ns": 344033.76, "ser_ci_low_ns": 219219.07584269662, "ser_ci_high_ns": 236014.6143258427, "deser_mean_ns": 332789.55056179775, "deser_median_ns": 316960.0, "deser_std_ns": 63476.33570813673, "deser_mad_ns": 39862.0, "deser_cv": 0.1907401707805408, "deser_min_ns": 239421.0, "deser_max_ns": 515392.0, "deser_p5_ns": 257795.8, "deser_p25_ns": 285915.0, "deser_p50_ns": 316960.0, "deser_p75_ns": 372420.0, "deser_p95_ns": 470906.99999999994, "deser_p99_ns": 501038.32000000007, "deser_ci_low_ns": 319385.57191011234, "deser_ci_high_ns": 346592.8896067416, "total_mean_ns": 559886.8539325843, "total_median_ns": 527769.0, "total_std_ns": 94738.71717021488, "total_mad_ns": 55455.0, "total_cv": 0.16921046905241738, "total_min_ns": 422543.0, "total_max_ns": 851260.0, "total_p5_ns": 453031.4, "total_p25_ns": 490545.0, "total_p50_ns": 527769.0, "total_p75_ns": 622857.0, "total_p95_ns": 733546.9999999999, "total_p99_ns": 829912.0800000001, "total_ci_low_ns": 541288.7109550561, "total_ci_high_ns": 580249.0415730337, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.449603948939297}, {"serializer": "protobuf-es", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "2.12.1", "avg_time_ser_ns": 1076457.8625, "avg_time_deser_ns": 624970.15, "avg_time_total_ns": 1701428.0125, "median_size_bytes": 16265.0, "avg_ops_per_sec": 587.7415868630528, "min_ops_per_sec": 479.2593334557042, "max_ops_per_sec": 643.9871563201543, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 1076457.8625, "ser_median_ns": 1032322.0, "ser_std_ns": 116034.19970403354, "ser_mad_ns": 43740.0, "ser_cv": 0.10779260735255537, "ser_min_ns": 951720.0, "ser_max_ns": 1487431.0, "ser_p5_ns": 975311.5, "ser_p25_ns": 1005378.25, "ser_p50_ns": 1032322.0, "ser_p75_ns": 1127491.5, "ser_p95_ns": 1292792.05, "ser_p99_ns": 1469065.0799999998, "ser_ci_low_ns": 1052287.7596874998, "ser_ci_high_ns": 1102862.8612499998, "deser_mean_ns": 624970.15, "deser_median_ns": 616557.0, "deser_std_ns": 35130.38301329434, "deser_mad_ns": 21495.0, "deser_cv": 0.05621129747283825, "deser_min_ns": 568542.0, "deser_max_ns": 714744.0, "deser_p5_ns": 581652.9, "deser_p25_ns": 598252.0, "deser_p50_ns": 616557.0, "deser_p75_ns": 642367.5, "deser_p95_ns": 693321.95, "deser_p99_ns": 713149.78, "deser_ci_low_ns": 617666.2015625001, "deser_ci_high_ns": 632737.755625, "total_mean_ns": 1701428.0125, "total_median_ns": 1654701.5, "total_std_ns": 130301.37135861829, "total_mad_ns": 68159.5, "total_cv": 0.07658353477274625, "total_min_ns": 1552826.0, "total_max_ns": 2086553.0, "total_p5_ns": 1562729.05, "total_p25_ns": 1602778.25, "total_p50_ns": 1654701.5, "total_p75_ns": 1767800.0, "total_p95_ns": 1921298.55, "total_p99_ns": 2068327.7, "total_ci_low_ns": 1673434.4549999998, "total_ci_high_ns": 1730753.76125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.47671290906743}, {"serializer": "@msgpack/msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "3.1.3", "avg_time_ser_ns": 199998.47619047618, "avg_time_deser_ns": 201701.94047619047, "avg_time_total_ns": 401700.4166666667, "median_size_bytes": 32759.0, "avg_ops_per_sec": 2489.4173829792308, "min_ops_per_sec": 2171.1236216078905, "max_ops_per_sec": 2744.6136956223413, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 199998.47619047618, "ser_median_ns": 199867.5, "ser_std_ns": 8756.065296773088, "ser_mad_ns": 6192.5, "ser_cv": 0.04378066005079916, "ser_min_ns": 182094.0, "ser_max_ns": 229127.0, "ser_p5_ns": 188532.0, "ser_p25_ns": 193109.25, "ser_p50_ns": 199867.5, "ser_p75_ns": 204606.0, "ser_p95_ns": 215577.94999999998, "ser_p99_ns": 221749.96000000002, "ser_ci_low_ns": 198171.80476190476, "ser_ci_high_ns": 201971.31666666665, "deser_mean_ns": 201701.94047619047, "deser_median_ns": 196058.0, "deser_std_ns": 16521.87571351388, "deser_mad_ns": 8081.0, "deser_cv": 0.08191232902622557, "deser_min_ns": 182256.0, "deser_max_ns": 258050.0, "deser_p5_ns": 184854.55, "deser_p25_ns": 189573.0, "deser_p50_ns": 196058.0, "deser_p75_ns": 211108.5, "deser_p95_ns": 231323.69999999998, "deser_p99_ns": 249698.54, "deser_ci_low_ns": 198267.76666666666, "deser_ci_high_ns": 205234.1806547619, "total_mean_ns": 401700.4166666667, "total_median_ns": 396654.5, "total_std_ns": 21455.829080862586, "total_mad_ns": 13449.0, "total_cv": 0.053412513880130616, "total_min_ns": 364350.0, "total_max_ns": 460591.0, "total_p5_ns": 375578.85, "total_p25_ns": 384692.0, "total_p50_ns": 396654.5, "total_p75_ns": 415560.25, "total_p95_ns": 446127.74999999994, "total_p99_ns": 457035.28, "total_ci_low_ns": 397338.4193452381, "total_ci_high_ns": 406426.62083333335, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.945371931395245}, {"serializer": "avsc", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "5.7.9", "avg_time_ser_ns": 475084.89130434784, "avg_time_deser_ns": 369473.902173913, "avg_time_total_ns": 844558.7934782609, "median_size_bytes": 11967.0, "avg_ops_per_sec": 1184.050190137225, "min_ops_per_sec": 938.1259058778279, "max_ops_per_sec": 1387.6554174067496, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 475084.89130434784, "ser_median_ns": 467434.0, "ser_std_ns": 64905.01099780678, "ser_mad_ns": 41520.5, "ser_cv": 0.1366177122989741, "ser_min_ns": 376794.0, "ser_max_ns": 653764.0, "ser_p5_ns": 395357.5, "ser_p25_ns": 423501.75, "ser_p50_ns": 467434.0, "ser_p75_ns": 505343.5, "ser_p95_ns": 593476.25, "ser_p99_ns": 639891.9600000001, "ser_ci_low_ns": 461746.3111413043, "ser_ci_high_ns": 488474.6801630435, "deser_mean_ns": 369473.902173913, "deser_median_ns": 362941.0, "deser_std_ns": 29537.76576515086, "deser_mad_ns": 17328.5, "deser_cv": 0.07994547271500464, "deser_min_ns": 329854.0, "deser_max_ns": 445550.0, "deser_p5_ns": 332131.45, "deser_p25_ns": 347394.25, "deser_p50_ns": 362941.0, "deser_p75_ns": 383258.75, "deser_p95_ns": 430340.65, "deser_p99_ns": 441742.56, "deser_ci_low_ns": 363714.7980978261, "deser_ci_high_ns": 375392.35190217395, "total_mean_ns": 844558.7934782609, "total_median_ns": 832425.0, "total_std_ns": 86227.79418118316, "total_mad_ns": 52944.5, "total_cv": 0.1020980360953434, "total_min_ns": 720640.0, "total_max_ns": 1065955.0, "total_p5_ns": 740662.45, "total_p25_ns": 780050.0, "total_p50_ns": 832425.0, "total_p75_ns": 883073.0, "total_p95_ns": 1014392.6, "total_p99_ns": 1064906.68, "total_ci_low_ns": 826899.8038043479, "total_ci_high_ns": 861735.0921195652, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.340452764452662}, {"serializer": "google-protobuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "3.21.4", "avg_time_ser_ns": 1471.5116279069769, "avg_time_deser_ns": 178258.88372093023, "avg_time_total_ns": 179730.39534883722, "median_size_bytes": 16307.0, "avg_ops_per_sec": 5563.889168880469, "min_ops_per_sec": 4133.068265888548, "max_ops_per_sec": 6360.878055606796, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 1471.5116279069769, "ser_median_ns": 1292.0, "ser_std_ns": 511.484799249402, "ser_mad_ns": 253.5, "ser_cv": 0.34759140841919056, "ser_min_ns": 834.0, "ser_max_ns": 2835.0, "ser_p5_ns": 901.5, "ser_p25_ns": 1117.25, "ser_p50_ns": 1292.0, "ser_p75_ns": 1717.0, "ser_p95_ns": 2589.5, "ser_p99_ns": 2830.75, "ser_ci_low_ns": 1362.0779069767443, "ser_ci_high_ns": 1588.1223837209302, "deser_mean_ns": 178258.88372093023, "deser_median_ns": 167828.5, "deser_std_ns": 22697.99192694657, "deser_mad_ns": 7859.5, "deser_cv": 0.12733161710179325, "deser_min_ns": 156096.0, "deser_max_ns": 240872.0, "deser_p5_ns": 158244.0, "deser_p25_ns": 162218.75, "deser_p50_ns": 167828.5, "deser_p75_ns": 186325.5, "deser_p95_ns": 234475.0, "deser_p99_ns": 239383.65000000002, "deser_ci_low_ns": 173691.1752906977, "deser_ci_high_ns": 183179.55610465116, "total_mean_ns": 179730.39534883722, "total_median_ns": 169327.5, "total_std_ns": 22939.993696229234, "total_mad_ns": 8354.0, "total_cv": 0.12763558246063605, "total_min_ns": 157211.0, "total_max_ns": 241951.0, "total_p5_ns": 159620.25, "total_p25_ns": 163675.0, "total_p50_ns": 169327.5, "total_p75_ns": 188334.0, "total_p95_ns": 237106.25, "total_p99_ns": 240804.35, "total_ci_low_ns": 174932.16860465117, "total_ci_high_ns": 184455.05494186046, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "msgpackr", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "1.12.1", "avg_time_ser_ns": 150639.5, "avg_time_deser_ns": 227816.7906976744, "avg_time_total_ns": 378456.29069767444, "median_size_bytes": 34759.0, "avg_ops_per_sec": 2642.3130611900406, "min_ops_per_sec": 2267.6765386185316, "max_ops_per_sec": 2881.1967338753825, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 150639.5, "ser_median_ns": 147692.5, "ser_std_ns": 10674.777174971576, "ser_mad_ns": 5009.0, "ser_cv": 0.07086306828535395, "ser_min_ns": 134683.0, "ser_max_ns": 181074.0, "ser_p5_ns": 137814.25, "ser_p25_ns": 143602.25, "ser_p50_ns": 147692.5, "ser_p75_ns": 155954.5, "ser_p95_ns": 170701.0, "ser_p99_ns": 178665.95, "ser_ci_low_ns": 148435.75029069767, "ser_ci_high_ns": 152982.31598837208, "deser_mean_ns": 227816.7906976744, "deser_median_ns": 223238.0, "deser_std_ns": 14343.884266056739, "deser_mad_ns": 7308.5, "deser_cv": 0.0629623664793517, "deser_min_ns": 209825.0, "deser_max_ns": 272726.0, "deser_p5_ns": 212317.75, "deser_p25_ns": 217922.75, "deser_p50_ns": 223238.0, "deser_p75_ns": 233113.75, "deser_p95_ns": 258988.25, "deser_p99_ns": 268067.15, "deser_ci_low_ns": 224909.69941860466, "deser_ci_high_ns": 230897.95610465115, "total_mean_ns": 378456.29069767444, "total_median_ns": 374513.0, "total_std_ns": 19452.726417631195, "total_mad_ns": 13914.5, "total_cv": 0.051400193089063455, "total_min_ns": 347078.0, "total_max_ns": 440980.0, "total_p5_ns": 353059.75, "total_p25_ns": 364671.0, "total_p50_ns": 374513.0, "total_p75_ns": 392514.75, "total_p95_ns": 414296.25, "total_p99_ns": 431138.70000000007, "total_ci_low_ns": 374420.5398255814, "total_ci_high_ns": 382494.64563953487, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.302627643926998}, {"serializer": "v8-serializer", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "v8-13.6.233.17-node.48", "avg_time_ser_ns": 150882.8275862069, "avg_time_deser_ns": 279741.8045977011, "avg_time_total_ns": 430624.632183908, "median_size_bytes": 40671.0, "avg_ops_per_sec": 2322.2080792928896, "min_ops_per_sec": 2071.7445124667224, "max_ops_per_sec": 2501.6260569370093, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 150882.8275862069, "ser_median_ns": 147437.0, "ser_std_ns": 10813.627800794417, "ser_mad_ns": 6062.0, "ser_cv": 0.07166904261928715, "ser_min_ns": 135251.0, "ser_max_ns": 187701.0, "ser_p5_ns": 138924.7, "ser_p25_ns": 142268.5, "ser_p50_ns": 147437.0, "ser_p75_ns": 158224.0, "ser_p95_ns": 167784.4, "ser_p99_ns": 182479.08000000002, "ser_ci_low_ns": 148646.48965517242, "ser_ci_high_ns": 153205.69942528737, "deser_mean_ns": 279741.8045977011, "deser_median_ns": 275657.0, "deser_std_ns": 11918.242834078841, "deser_mad_ns": 5827.0, "deser_cv": 0.042604439658986824, "deser_min_ns": 263113.0, "deser_max_ns": 314831.0, "deser_p5_ns": 266235.6, "deser_p25_ns": 270912.5, "deser_p50_ns": 275657.0, "deser_p75_ns": 287190.5, "deser_p95_ns": 303643.9, "deser_p99_ns": 310094.12, "deser_ci_low_ns": 277339.63045977015, "deser_ci_high_ns": 282161.5896551724, "total_mean_ns": 430624.632183908, "total_median_ns": 427040.0, "total_std_ns": 18486.811172515787, "total_mad_ns": 13540.0, "total_cv": 0.04293022226517822, "total_min_ns": 399740.0, "total_max_ns": 482685.0, "total_p5_ns": 407937.9, "total_p25_ns": 414724.5, "total_p50_ns": 427040.0, "total_p75_ns": 442715.0, "total_p95_ns": 464773.4, "total_p99_ns": 478299.86, "total_ci_low_ns": 426902.2522988506, "total_ci_high_ns": 434492.12586206896, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.997830239171845}, {"serializer": "simdjson-parse+JSON.stringify", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "0.9.2", "avg_time_ser_ns": 107057.80645161291, "avg_time_deser_ns": 586347.3655913979, "avg_time_total_ns": 693405.1720430107, "median_size_bytes": 45404.0, "avg_ops_per_sec": 1442.1582652082839, "min_ops_per_sec": 1295.3619565146992, "max_ops_per_sec": 1559.7095820758175, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 107057.80645161291, "ser_median_ns": 105316.0, "ser_std_ns": 8316.952369888948, "ser_mad_ns": 4755.0, "ser_cv": 0.07768655687568168, "ser_min_ns": 91792.0, "ser_max_ns": 129362.0, "ser_p5_ns": 95707.0, "ser_p25_ns": 100956.0, "ser_p50_ns": 105316.0, "ser_p75_ns": 112400.0, "ser_p95_ns": 122953.59999999999, "ser_p99_ns": 127844.0, "ser_ci_low_ns": 105412.78897849463, "ser_ci_high_ns": 108711.25967741937, "deser_mean_ns": 586347.3655913979, "deser_median_ns": 579862.0, "deser_std_ns": 26370.855526337727, "deser_mad_ns": 18616.0, "deser_cv": 0.044974800048329246, "deser_min_ns": 540722.0, "deser_max_ns": 667539.0, "deser_p5_ns": 550649.2, "deser_p25_ns": 569441.0, "deser_p50_ns": 579862.0, "deser_p75_ns": 604987.0, "deser_p95_ns": 634835.6, "deser_p99_ns": 651144.6, "deser_ci_low_ns": 581213.7021505376, "deser_ci_high_ns": 591618.2669354838, "total_mean_ns": 693405.1720430107, "total_median_ns": 686136.0, "total_std_ns": 29598.86133078053, "total_mad_ns": 19330.0, "total_cv": 0.04268624250893901, "total_min_ns": 641145.0, "total_max_ns": 771985.0, "total_p5_ns": 652018.0, "total_p25_ns": 671086.0, "total_p50_ns": 686136.0, "total_p75_ns": 713772.0, "total_p95_ns": 741708.6, "total_p99_ns": 764855.0, "total_ci_low_ns": 687407.172311828, "total_ci_high_ns": 699156.1663978494, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.221997683434484}, {"serializer": "JSON.stringify", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "node-24.15.0", "avg_time_ser_ns": 107042.22471910113, "avg_time_deser_ns": 228559.8651685393, "avg_time_total_ns": 335602.08988764044, "median_size_bytes": 45404.0, "avg_ops_per_sec": 2979.719227418399, "min_ops_per_sec": 2279.5919530404058, "max_ops_per_sec": 3707.8372556071768, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 107042.22471910113, "ser_median_ns": 105668.0, "ser_std_ns": 6990.726681814744, "ser_mad_ns": 4366.0, "ser_cv": 0.06530812210003782, "ser_min_ns": 95911.0, "ser_max_ns": 127233.0, "ser_p5_ns": 97256.6, "ser_p25_ns": 101878.0, "ser_p50_ns": 105668.0, "ser_p75_ns": 111102.0, "ser_p95_ns": 119637.4, "ser_p99_ns": 125406.12000000001, "ser_ci_low_ns": 105573.2036516854, "ser_ci_high_ns": 108496.85449438202, "deser_mean_ns": 228559.8651685393, "deser_median_ns": 230624.0, "deser_std_ns": 33569.87297149816, "deser_mad_ns": 28535.0, "deser_cv": 0.14687562467165372, "deser_min_ns": 173466.0, "deser_max_ns": 322183.0, "deser_p5_ns": 183804.0, "deser_p25_ns": 197848.0, "deser_p50_ns": 230624.0, "deser_p75_ns": 251999.0, "deser_p95_ns": 286946.99999999994, "deser_p99_ns": 303753.1600000001, "deser_ci_low_ns": 221711.877247191, "deser_ci_high_ns": 235751.58174157303, "total_mean_ns": 335602.08988764044, "total_median_ns": 341876.0, "total_std_ns": 37540.86105276139, "total_mad_ns": 28694.0, "total_cv": 0.11186122549275564, "total_min_ns": 269699.0, "total_max_ns": 438675.0, "total_p5_ns": 283078.4, "total_p25_ns": 304165.0, "total_p50_ns": 341876.0, "total_p75_ns": 359974.0, "total_p95_ns": 393951.8, "total_p99_ns": 427170.76000000007, "total_ci_low_ns": 327777.26264044945, "total_ci_high_ns": 343428.3536516854, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.969104734804584}, {"serializer": "bser", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "2.1.1", "avg_time_ser_ns": 543474.7934782609, "avg_time_deser_ns": 537530.3695652174, "avg_time_total_ns": 1081005.1630434783, "median_size_bytes": 44519.0, "avg_ops_per_sec": 925.0649619328227, "min_ops_per_sec": 862.8626503861742, "max_ops_per_sec": 984.6493171456985, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 543474.7934782609, "ser_median_ns": 539196.5, "ser_std_ns": 16523.04285465181, "ser_mad_ns": 11184.0, "ser_cv": 0.030402592821101526, "ser_min_ns": 515111.0, "ser_max_ns": 587115.0, "ser_p5_ns": 520330.1, "ser_p25_ns": 530398.5, "ser_p50_ns": 539196.5, "ser_p75_ns": 554525.75, "ser_p95_ns": 574554.6, "ser_p99_ns": 586944.83, "ser_ci_low_ns": 540140.0747282609, "ser_ci_high_ns": 546928.9448369566, "deser_mean_ns": 537530.3695652174, "deser_median_ns": 535204.0, "deser_std_ns": 21723.9972111247, "deser_mad_ns": 14444.5, "deser_cv": 0.04041445551940852, "deser_min_ns": 496659.0, "deser_max_ns": 600743.0, "deser_p5_ns": 507341.15, "deser_p25_ns": 521182.5, "deser_p50_ns": 535204.0, "deser_p75_ns": 549635.75, "deser_p95_ns": 574264.45, "deser_p99_ns": 588284.1900000001, "deser_ci_low_ns": 532945.3008152173, "deser_ci_high_ns": 541950.270923913, "total_mean_ns": 1081005.1630434783, "total_median_ns": 1081264.0, "total_std_ns": 31826.828307168842, "total_mad_ns": 23703.0, "total_cv": 0.02944188371641363, "total_min_ns": 1015590.0, "total_max_ns": 1158933.0, "total_p5_ns": 1030894.25, "total_p25_ns": 1056850.25, "total_p50_ns": 1081264.0, "total_p75_ns": 1101719.5, "total_p95_ns": 1141716.05, "total_p99_ns": 1155958.21, "total_ci_low_ns": 1074494.0432065218, "total_ci_high_ns": 1087154.1532608697, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 32.17662483853681}, {"serializer": "bson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "6.10.4", "avg_time_ser_ns": 365357.85714285716, "avg_time_deser_ns": 323054.5833333333, "avg_time_total_ns": 688412.4404761905, "median_size_bytes": 50242.0, "avg_ops_per_sec": 1452.6175606418112, "min_ops_per_sec": 1296.0721238215465, "max_ops_per_sec": 1549.042691616581, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 365357.85714285716, "ser_median_ns": 360564.0, "ser_std_ns": 18373.926116734045, "ser_mad_ns": 10899.5, "ser_cv": 0.05029021754293278, "ser_min_ns": 336877.0, "ser_max_ns": 421262.0, "ser_p5_ns": 344392.05, "ser_p25_ns": 351957.0, "ser_p50_ns": 360564.0, "ser_p75_ns": 375317.75, "ser_p95_ns": 404351.9, "ser_p99_ns": 420069.29, "ser_ci_low_ns": 361551.82946428575, "ser_ci_high_ns": 369341.16964285716, "deser_mean_ns": 323054.5833333333, "deser_median_ns": 318296.5, "deser_std_ns": 17499.06913338937, "deser_mad_ns": 9404.0, "deser_cv": 0.05416753092567496, "deser_min_ns": 296376.0, "deser_max_ns": 377704.0, "deser_p5_ns": 303548.1, "deser_p25_ns": 310996.25, "deser_p50_ns": 318296.5, "deser_p75_ns": 332779.0, "deser_p95_ns": 357998.55, "deser_p99_ns": 372867.59, "deser_ci_low_ns": 319497.7842261905, "deser_ci_high_ns": 326776.56845238095, "total_mean_ns": 688412.4404761905, "total_median_ns": 685816.0, "total_std_ns": 29818.558169126336, "total_mad_ns": 22448.5, "total_cv": 0.04331496122949225, "total_min_ns": 645560.0, "total_max_ns": 771562.0, "total_p5_ns": 648038.1, "total_p25_ns": 663877.25, "total_p50_ns": 685816.0, "total_p75_ns": 709986.75, "total_p95_ns": 737187.1499999999, "total_p99_ns": 763682.81, "total_ci_low_ns": 682298.5321428572, "total_ci_high_ns": 694736.4666666667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.065190739681558}, {"serializer": "flatbuffers", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "24.12.23", "avg_time_ser_ns": 616651.4, "avg_time_deser_ns": 250517.4, "avg_time_total_ns": 867168.8, "median_size_bytes": 42996.0, "avg_ops_per_sec": 1153.1780202424256, "min_ops_per_sec": 882.6561595277436, "max_ops_per_sec": 1293.5271899415325, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 616651.4, "ser_median_ns": 605663.0, "ser_std_ns": 45369.85038814716, "ser_mad_ns": 28133.0, "ser_cv": 0.07357455182644061, "ser_min_ns": 560041.0, "ser_max_ns": 758288.0, "ser_p5_ns": 562369.2, "ser_p25_ns": 581887.0, "ser_p50_ns": 605663.0, "ser_p75_ns": 640382.0, "ser_p95_ns": 704823.6, "ser_p99_ns": 747882.08, "ser_ci_low_ns": 606999.3547058824, "ser_ci_high_ns": 626729.6132352941, "deser_mean_ns": 250517.4, "deser_median_ns": 223740.0, "deser_std_ns": 50282.58817002353, "deser_mad_ns": 7767.0, "deser_cv": 0.20071495301333772, "deser_min_ns": 209799.0, "deser_max_ns": 394999.0, "deser_p5_ns": 212909.2, "deser_p25_ns": 217030.0, "deser_p50_ns": 223740.0, "deser_p75_ns": 277055.0, "deser_p95_ns": 372119.0, "deser_p99_ns": 390566.32, "deser_ci_low_ns": 240103.48588235295, "deser_ci_high_ns": 261714.52970588233, "total_mean_ns": 867168.8, "total_median_ns": 851291.0, "total_std_ns": 78175.69694647222, "total_mad_ns": 49448.0, "total_cv": 0.09015049543580468, "total_min_ns": 773080.0, "total_max_ns": 1132944.0, "total_p5_ns": 780915.6, "total_p25_ns": 804883.0, "total_p50_ns": 851291.0, "total_p75_ns": 910068.0, "total_p95_ns": 1019221.2, "total_p99_ns": 1075348.5599999998, "total_ci_low_ns": 851377.6814705883, "total_ci_high_ns": 884104.1826470589, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.909400427074912}, {"serializer": "flexbuffers", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "24.12.23", "avg_time_ser_ns": 3002438.012048193, "avg_time_deser_ns": 2446939.120481928, "avg_time_total_ns": 5449377.13253012, "median_size_bytes": 52368.0, "avg_ops_per_sec": 183.50721113253263, "min_ops_per_sec": 153.6204971527977, "max_ops_per_sec": 203.8726839553421, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 3002438.012048193, "ser_median_ns": 2972598.0, "ser_std_ns": 192589.4137189202, "ser_mad_ns": 135057.0, "ser_cv": 0.06414434301261068, "ser_min_ns": 2676020.0, "ser_max_ns": 3596415.0, "ser_p5_ns": 2752131.5, "ser_p25_ns": 2854291.5, "ser_p50_ns": 2972598.0, "ser_p75_ns": 3128377.0, "ser_p95_ns": 3356205.8, "ser_p99_ns": 3539342.9999999995, "ser_ci_low_ns": 2963965.851506024, "ser_ci_high_ns": 3043692.2490963857, "deser_mean_ns": 2446939.120481928, "deser_median_ns": 2367637.0, "deser_std_ns": 205781.78025901775, "deser_mad_ns": 109263.0, "deser_cv": 0.08409762978430324, "deser_min_ns": 2211523.0, "deser_max_ns": 2982733.0, "deser_p5_ns": 2229150.1, "deser_p25_ns": 2287855.0, "deser_p50_ns": 2367637.0, "deser_p75_ns": 2554136.0, "deser_p95_ns": 2852889.5999999996, "deser_p99_ns": 2968045.1599999997, "deser_ci_low_ns": 2406393.835542169, "deser_ci_high_ns": 2492271.8322289158, "total_mean_ns": 5449377.13253012, "total_median_ns": 5432244.0, "total_std_ns": 315765.65428833576, "total_mad_ns": 235811.0, "total_cv": 0.05794527458989194, "total_min_ns": 4905022.0, "total_max_ns": 6509548.0, "total_p5_ns": 5021181.4, "total_p25_ns": 5192053.0, "total_p50_ns": 5432244.0, "total_p75_ns": 5659082.5, "total_p95_ns": 5941791.2, "total_p99_ns": 6153857.419999997, "total_ci_low_ns": 5383565.422590362, "total_ci_high_ns": 5518480.826807229, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.644242532313807}, {"serializer": "bebop", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "3.2.3", "avg_time_ser_ns": 146487.92134831462, "avg_time_deser_ns": 288343.28089887643, "avg_time_total_ns": 434831.202247191, "median_size_bytes": 55244.0, "avg_ops_per_sec": 2299.7429688394905, "min_ops_per_sec": 2009.2788497280442, "max_ops_per_sec": 2523.8121678032235, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 146487.92134831462, "ser_median_ns": 142252.0, "ser_std_ns": 13600.551747017069, "ser_mad_ns": 5169.0, "ser_cv": 0.0928441855262461, "ser_min_ns": 131474.0, "ser_max_ns": 190420.0, "ser_p5_ns": 133161.8, "ser_p25_ns": 137410.0, "ser_p50_ns": 142252.0, "ser_p75_ns": 148948.0, "ser_p95_ns": 174525.19999999998, "ser_p99_ns": 188473.44, "ser_ci_low_ns": 143818.88820224718, "ser_ci_high_ns": 149392.92106741574, "deser_mean_ns": 288343.28089887643, "deser_median_ns": 285145.0, "deser_std_ns": 14700.084993561311, "deser_mad_ns": 11102.0, "deser_cv": 0.05098119487208274, "deser_min_ns": 264234.0, "deser_max_ns": 325261.0, "deser_p5_ns": 268331.4, "deser_p25_ns": 277342.0, "deser_p50_ns": 285145.0, "deser_p75_ns": 297635.0, "deser_p95_ns": 314886.8, "deser_p99_ns": 323340.84, "deser_ci_low_ns": 285357.975, "deser_ci_high_ns": 291363.16938202246, "total_mean_ns": 434831.202247191, "total_median_ns": 430089.0, "total_std_ns": 22168.98363048318, "total_mad_ns": 13667.0, "total_cv": 0.05098296423052146, "total_min_ns": 396226.0, "total_max_ns": 497691.0, "total_p5_ns": 405171.0, "total_p25_ns": 419953.0, "total_p50_ns": 430089.0, "total_p75_ns": 446677.0, "total_p95_ns": 473247.8, "total_p99_ns": 492751.56, "total_ci_low_ns": 430440.29775280895, "total_ci_high_ns": 439658.83202247194, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.26301163284816}, {"serializer": "cbor-x", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "1.6.4", "avg_time_ser_ns": 130193.97727272728, "avg_time_deser_ns": 117372.80681818182, "avg_time_total_ns": 247566.7840909091, "median_size_bytes": 16840.0, "avg_ops_per_sec": 4039.3140932540837, "min_ops_per_sec": 3055.833127064597, "max_ops_per_sec": 4751.51929829563, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 130193.97727272728, "ser_median_ns": 126040.0, "ser_std_ns": 12714.005474981846, "ser_mad_ns": 5576.0, "ser_cv": 0.09765432888150308, "ser_min_ns": 113997.0, "ser_max_ns": 174860.0, "ser_p5_ns": 116818.15, "ser_p25_ns": 121743.5, "ser_p50_ns": 126040.0, "ser_p75_ns": 134793.25, "ser_p95_ns": 154061.1, "ser_p99_ns": 169066.66999999998, "ser_ci_low_ns": 127684.3284090909, "ser_ci_high_ns": 133069.02357954544, "deser_mean_ns": 117372.80681818182, "deser_median_ns": 113878.5, "deser_std_ns": 13137.129013196842, "deser_mad_ns": 8529.5, "deser_cv": 0.11192651321312538, "deser_min_ns": 95189.0, "deser_max_ns": 152383.0, "deser_p5_ns": 101681.05, "deser_p25_ns": 107788.0, "deser_p50_ns": 113878.5, "deser_p75_ns": 127933.25, "deser_p95_ns": 137209.45, "deser_p99_ns": 149556.37, "deser_ci_low_ns": 114691.42784090909, "deser_ci_high_ns": 120062.7034090909, "total_mean_ns": 247566.7840909091, "total_median_ns": 241666.5, "total_std_ns": 22706.092946759254, "total_mad_ns": 15337.0, "total_cv": 0.0917170412425818, "total_min_ns": 210459.0, "total_max_ns": 327243.0, "total_p5_ns": 219724.7, "total_p25_ns": 230695.25, "total_p50_ns": 241666.5, "total_p75_ns": 261869.0, "total_p95_ns": 287089.6, "total_p99_ns": 311754.3899999999, "total_ci_low_ns": 242767.50625, "total_ci_high_ns": 252577.93068181816, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 0.9312896405919662, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.959434323743864}, {"serializer": "devalue", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "5.8.1", "avg_time_ser_ns": 1055746.6785714286, "avg_time_deser_ns": 412441.4404761905, "avg_time_total_ns": 1468188.119047619, "median_size_bytes": 60037.0, "avg_ops_per_sec": 681.1116280171766, "min_ops_per_sec": 527.8682778614155, "max_ops_per_sec": 787.7998169153226, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 1055746.6785714286, "ser_median_ns": 1023788.5, "ser_std_ns": 95689.44034365015, "ser_mad_ns": 58882.0, "ser_cv": 0.09063674296672304, "ser_min_ns": 933760.0, "ser_max_ns": 1390429.0, "ser_p5_ns": 951243.9, "ser_p25_ns": 986124.75, "ser_p50_ns": 1023788.5, "ser_p75_ns": 1117858.75, "ser_p95_ns": 1240182.9999999998, "ser_p99_ns": 1357149.32, "ser_ci_low_ns": 1035467.6675595238, "ser_ci_high_ns": 1077378.1345238097, "deser_mean_ns": 412441.4404761905, "deser_median_ns": 403197.5, "deser_std_ns": 51235.30480105154, "deser_mad_ns": 31156.0, "deser_cv": 0.12422443472677491, "deser_min_ns": 335598.0, "deser_max_ns": 554581.0, "deser_p5_ns": 347911.9, "deser_p25_ns": 373557.5, "deser_p50_ns": 403197.5, "deser_p75_ns": 436234.75, "deser_p95_ns": 517671.3, "deser_p99_ns": 545864.34, "deser_ci_low_ns": 402788.6386904762, "deser_ci_high_ns": 423399.5282738095, "total_mean_ns": 1468188.119047619, "total_median_ns": 1434063.5, "total_std_ns": 137853.06131813262, "total_mad_ns": 80817.0, "total_cv": 0.09389332302154497, "total_min_ns": 1269358.0, "total_max_ns": 1894412.0, "total_p5_ns": 1307893.75, "total_p25_ns": 1360427.75, "total_p50_ns": 1434063.5, "total_p75_ns": 1553375.0, "total_p95_ns": 1742514.2999999998, "total_p99_ns": 1846995.76, "total_ci_low_ns": 1438696.7764880953, "total_ci_high_ns": 1498204.3345238096, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.054218208079627}, {"serializer": "cbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "9.0.2", "avg_time_ser_ns": 1834395.3648648649, "avg_time_deser_ns": 2627153.4864864866, "avg_time_total_ns": 4461548.8513513515, "median_size_bytes": 33372.0, "avg_ops_per_sec": 224.13740907423025, "min_ops_per_sec": 189.99158527268827, "max_ops_per_sec": 240.24422266699435, "runs": 74, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 25, "ser_mean_ns": 1834395.3648648649, "ser_median_ns": 1765963.5, "ser_std_ns": 179375.0821900112, "ser_mad_ns": 90250.5, "ser_cv": 0.09778430845698592, "ser_min_ns": 1628797.0, "ser_max_ns": 2464919.0, "ser_p5_ns": 1660662.1, "ser_p25_ns": 1706876.0, "ser_p50_ns": 1765963.5, "ser_p75_ns": 1921469.25, "ser_p95_ns": 2189128.9, "ser_p99_ns": 2321768.919999999, "ser_ci_low_ns": 1792938.5314189189, "ser_ci_high_ns": 1880685.5506756757, "deser_mean_ns": 2627153.4864864866, "deser_median_ns": 2620309.0, "deser_std_ns": 91515.61965689107, "deser_mad_ns": 47479.5, "deser_cv": 0.03483451580869856, "deser_min_ns": 2473013.0, "deser_max_ns": 2940808.0, "deser_p5_ns": 2502005.2, "deser_p25_ns": 2574663.25, "deser_p50_ns": 2620309.0, "deser_p75_ns": 2668127.5, "deser_p95_ns": 2805105.55, "deser_p99_ns": 2908518.6399999997, "deser_ci_low_ns": 2607292.3635135135, "deser_ci_high_ns": 2647643.506756757, "total_mean_ns": 4461548.8513513515, "total_median_ns": 4382253.0, "total_std_ns": 231647.83443879435, "total_mad_ns": 141268.5, "total_cv": 0.051920945428767615, "total_min_ns": 4162431.0, "total_max_ns": 5263391.0, "total_p5_ns": 4188579.25, "total_p25_ns": 4291710.5, "total_p50_ns": 4382253.0, "total_p75_ns": 4609796.75, "total_p95_ns": 4856629.3, "total_p99_ns": 5016944.459999999, "total_ci_low_ns": 4409418.789527027, "total_ci_high_ns": 4513720.800675676, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.91112540254029}, {"serializer": "fast-json-stringify", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "6.4.0", "avg_time_ser_ns": 215308.1235955056, "avg_time_deser_ns": 236473.70786516854, "avg_time_total_ns": 451781.8314606742, "median_size_bytes": 45404.0, "avg_ops_per_sec": 2213.4577585089232, "min_ops_per_sec": 1476.928166644759, "max_ops_per_sec": 2927.7347238121447, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 215308.1235955056, "ser_median_ns": 205717.0, "ser_std_ns": 45382.503328981365, "ser_mad_ns": 30766.0, "ser_cv": 0.21077933600982202, "ser_min_ns": 154414.0, "ser_max_ns": 353199.0, "ser_p5_ns": 164252.6, "ser_p25_ns": 177450.0, "ser_p50_ns": 205717.0, "ser_p75_ns": 240200.0, "ser_p95_ns": 302414.39999999997, "ser_p99_ns": 335854.20000000007, "ser_ci_low_ns": 206740.47921348314, "ser_ci_high_ns": 224797.8702247191, "deser_mean_ns": 236473.70786516854, "deser_median_ns": 223521.0, "deser_std_ns": 38407.42786386811, "deser_mad_ns": 22852.0, "deser_cv": 0.16241732838124684, "deser_min_ns": 177108.0, "deser_max_ns": 343592.0, "deser_p5_ns": 185392.0, "deser_p25_ns": 212335.0, "deser_p50_ns": 223521.0, "deser_p75_ns": 257750.0, "deser_p95_ns": 315043.39999999997, "deser_p99_ns": 336467.52, "deser_ci_low_ns": 228731.39803370787, "deser_ci_high_ns": 244835.88286516853, "total_mean_ns": 451781.8314606742, "total_median_ns": 429923.0, "total_std_ns": 74955.8310758949, "total_mad_ns": 50348.0, "total_cv": 0.1659115658404238, "total_min_ns": 341561.0, "total_max_ns": 677081.0, "total_p5_ns": 360848.2, "total_p25_ns": 396291.0, "total_p50_ns": 429923.0, "total_p75_ns": 502341.0, "total_p95_ns": 605358.5999999999, "total_p99_ns": 643209.8000000002, "total_ci_low_ns": 436120.6991573034, "total_ci_high_ns": 467619.8165730337, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.852108873286775}, {"serializer": "v8-serializer", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "v8-13.6.233.17-node.48", "avg_time_ser_ns": 6117.294871794872, "avg_time_deser_ns": 4872.833333333333, "avg_time_total_ns": 10990.128205128205, "median_size_bytes": 363.0, "avg_ops_per_sec": 90990.74927382382, "min_ops_per_sec": 71403.07033202428, "max_ops_per_sec": 119246.36298592894, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 6117.294871794872, "ser_median_ns": 6271.5, "ser_std_ns": 737.307159185605, "ser_mad_ns": 484.5, "ser_cv": 0.12052830125700187, "ser_min_ns": 4393.0, "ser_max_ns": 8153.0, "ser_p5_ns": 4654.9, "ser_p25_ns": 5670.5, "ser_p50_ns": 6271.5, "ser_p75_ns": 6634.5, "ser_p95_ns": 6941.15, "ser_p99_ns": 7295.990000000004, "ser_ci_low_ns": 5949.0375, "ser_ci_high_ns": 6285.511217948718, "deser_mean_ns": 4872.833333333333, "deser_median_ns": 4923.0, "deser_std_ns": 399.0790182038674, "deser_mad_ns": 211.5, "deser_cv": 0.08189876215833378, "deser_min_ns": 3978.0, "deser_max_ns": 5875.0, "deser_p5_ns": 4175.05, "deser_p25_ns": 4635.25, "deser_p50_ns": 4923.0, "deser_p75_ns": 5111.0, "deser_p95_ns": 5449.149999999999, "deser_p99_ns": 5857.29, "deser_ci_low_ns": 4786.139743589743, "deser_ci_high_ns": 4962.54358974359, "total_mean_ns": 10990.128205128205, "total_median_ns": 11240.5, "total_std_ns": 1035.369516307118, "total_mad_ns": 535.5, "total_cv": 0.09420904806406122, "total_min_ns": 8386.0, "total_max_ns": 14005.0, "total_p5_ns": 8776.35, "total_p25_ns": 10461.75, "total_p50_ns": 11240.5, "total_p75_ns": 11705.25, "total_p95_ns": 12023.5, "total_p99_ns": 12726.030000000006, "total_ci_low_ns": 10760.276923076923, "total_ci_high_ns": 11211.732692307693, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 0.9996754300551769, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.0781449106464525}, {"serializer": "cbor-x", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "1.6.4", "avg_time_ser_ns": 8367.119047619048, "avg_time_deser_ns": 5288.630952380952, "avg_time_total_ns": 13655.75, "median_size_bytes": 352.0, "avg_ops_per_sec": 73229.2257840104, "min_ops_per_sec": 45635.01118057774, "max_ops_per_sec": 106100.79575596817, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 8367.119047619048, "ser_median_ns": 7052.0, "ser_std_ns": 2954.3669593053646, "ser_mad_ns": 804.0, "ser_cv": 0.35309249724922476, "ser_min_ns": 5146.0, "ser_max_ns": 16760.0, "ser_p5_ns": 5942.65, "ser_p25_ns": 6484.75, "ser_p50_ns": 7052.0, "ser_p75_ns": 8504.25, "ser_p95_ns": 13987.85, "ser_p99_ns": 15747.400000000001, "ser_ci_low_ns": 7756.664285714285, "ser_ci_high_ns": 9024.490773809523, "deser_mean_ns": 5288.630952380952, "deser_median_ns": 5290.5, "deser_std_ns": 419.12926895010366, "deser_mad_ns": 256.5, "deser_cv": 0.0792509957158971, "deser_min_ns": 4229.0, "deser_max_ns": 6308.0, "deser_p5_ns": 4538.1, "deser_p25_ns": 5049.75, "deser_p50_ns": 5290.5, "deser_p75_ns": 5596.0, "deser_p95_ns": 5928.15, "deser_p99_ns": 6246.58, "deser_ci_low_ns": 5201.513095238095, "deser_ci_high_ns": 5383.008630952381, "total_mean_ns": 13655.75, "total_median_ns": 12503.5, "total_std_ns": 3072.7828597237467, "total_mad_ns": 1092.5, "total_cv": 0.2250175098199474, "total_min_ns": 9425.0, "total_max_ns": 21913.0, "total_p5_ns": 10636.8, "total_p25_ns": 11601.25, "total_p50_ns": 12503.5, "total_p75_ns": 14047.75, "total_p95_ns": 19587.75, "total_p99_ns": 21010.79, "total_ci_low_ns": 13016.14880952381, "total_ci_high_ns": 14323.906547619048, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.1186662792099784}, {"serializer": "bser", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "2.1.1", "avg_time_ser_ns": 24843.31395348837, "avg_time_deser_ns": 14129.941860465116, "avg_time_total_ns": 38973.25581395349, "median_size_bytes": 371.0, "avg_ops_per_sec": 25658.62099829937, "min_ops_per_sec": 18100.857980668283, "max_ops_per_sec": 41133.64320677883, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 24843.31395348837, "ser_median_ns": 24348.5, "ser_std_ns": 4180.571464627992, "ser_mad_ns": 2331.0, "ser_cv": 0.16827752820959613, "ser_min_ns": 15351.0, "ser_max_ns": 35810.0, "ser_p5_ns": 19403.0, "ser_p25_ns": 22361.75, "ser_p50_ns": 24348.5, "ser_p75_ns": 26761.25, "ser_p95_ns": 33327.0, "ser_p99_ns": 35600.05, "ser_ci_low_ns": 23982.212790697675, "ser_ci_high_ns": 25730.919476744184, "deser_mean_ns": 14129.941860465116, "deser_median_ns": 14105.0, "deser_std_ns": 4054.5786010230636, "deser_mad_ns": 2608.0, "deser_cv": 0.28694941855122386, "deser_min_ns": 8446.0, "deser_max_ns": 24723.0, "deser_p5_ns": 8901.5, "deser_p25_ns": 11290.75, "deser_p50_ns": 14105.0, "deser_p75_ns": 16544.0, "deser_p95_ns": 22695.0, "deser_p99_ns": 24600.600000000002, "deser_ci_low_ns": 13285.959011627907, "deser_ci_high_ns": 14918.874418604652, "total_mean_ns": 38973.25581395349, "total_median_ns": 39658.0, "total_std_ns": 6333.520771978526, "total_mad_ns": 3443.0, "total_cv": 0.16250940907305345, "total_min_ns": 24311.0, "total_max_ns": 55246.0, "total_p5_ns": 29101.5, "total_p25_ns": 35102.0, "total_p50_ns": 39658.0, "total_p75_ns": 42333.25, "total_p95_ns": 49304.25, "total_p99_ns": 52453.75000000002, "total_ci_low_ns": 37607.45029069768, "total_ci_high_ns": 40342.3, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.012106795799179}, {"serializer": "sia", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "2.3.0", "avg_time_ser_ns": 6107.119047619048, "avg_time_deser_ns": 2984.4523809523807, "avg_time_total_ns": 9091.57142857143, "median_size_bytes": 380.0, "avg_ops_per_sec": 109991.98629814113, "min_ops_per_sec": 70616.4818868724, "max_ops_per_sec": 140350.87719298244, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 6107.119047619048, "ser_median_ns": 5205.5, "ser_std_ns": 1763.1909969373737, "ser_mad_ns": 438.5, "ser_cv": 0.28871076250343936, "ser_min_ns": 4299.0, "ser_max_ns": 11469.0, "ser_p5_ns": 4585.4, "ser_p25_ns": 4910.5, "ser_p50_ns": 5205.5, "ser_p75_ns": 7845.0, "ser_p95_ns": 9341.199999999999, "ser_p99_ns": 10746.900000000001, "ser_ci_low_ns": 5740.5767857142855, "ser_ci_high_ns": 6502.363690476191, "deser_mean_ns": 2984.4523809523807, "deser_median_ns": 2971.5, "deser_std_ns": 179.07502666476321, "deser_mad_ns": 86.5, "deser_cv": 0.060002641626206096, "deser_min_ns": 2507.0, "deser_max_ns": 3520.0, "deser_p5_ns": 2706.3, "deser_p25_ns": 2897.0, "deser_p50_ns": 2971.5, "deser_p75_ns": 3091.5, "deser_p95_ns": 3280.5499999999997, "deser_p99_ns": 3385.5400000000004, "deser_ci_low_ns": 2946.4026785714286, "deser_ci_high_ns": 3022.965773809524, "total_mean_ns": 9091.57142857143, "total_median_ns": 8219.5, "total_std_ns": 1756.9574693353725, "total_mad_ns": 574.0, "total_cv": 0.193251241893553, "total_min_ns": 7125.0, "total_max_ns": 14161.0, "total_p5_ns": 7389.35, "total_p25_ns": 7860.0, "total_p50_ns": 8219.5, "total_p75_ns": 10752.5, "total_p95_ns": 12515.949999999997, "total_p99_ns": 13623.990000000002, "total_ci_low_ns": 8738.425595238095, "total_ci_high_ns": 9503.66369047619, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 0.9531344183242917, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.8511721203645415}, {"serializer": "avsc", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "5.7.9", "avg_time_ser_ns": 12620.56976744186, "avg_time_deser_ns": 9140.383720930233, "avg_time_total_ns": 21760.95348837209, "median_size_bytes": 288.0, "avg_ops_per_sec": 45953.86872796486, "min_ops_per_sec": 33940.87499575739, "max_ops_per_sec": 67736.909842173, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 12620.56976744186, "ser_median_ns": 12533.5, "ser_std_ns": 2167.129614412455, "ser_mad_ns": 1593.0, "ser_cv": 0.1717140869505865, "ser_min_ns": 7929.0, "ser_max_ns": 18810.0, "ser_p5_ns": 9570.0, "ser_p25_ns": 11002.5, "ser_p50_ns": 12533.5, "ser_p75_ns": 14169.75, "ser_p95_ns": 15891.0, "ser_p99_ns": 18584.75, "ser_ci_low_ns": 12136.543023255814, "ser_ci_high_ns": 13091.373837209301, "deser_mean_ns": 9140.383720930233, "deser_median_ns": 8885.5, "deser_std_ns": 1367.9770136407708, "deser_mad_ns": 939.0, "deser_cv": 0.14966297426970052, "deser_min_ns": 6834.0, "deser_max_ns": 13289.0, "deser_p5_ns": 7449.5, "deser_p25_ns": 8049.25, "deser_p50_ns": 8885.5, "deser_p75_ns": 10041.25, "deser_p95_ns": 11514.25, "deser_p99_ns": 12713.550000000005, "deser_ci_low_ns": 8864.753488372093, "deser_ci_high_ns": 9439.674709302326, "total_mean_ns": 21760.95348837209, "total_median_ns": 21193.0, "total_std_ns": 3203.4768498028793, "total_mad_ns": 2570.0, "total_cv": 0.1472121546289159, "total_min_ns": 14763.0, "total_max_ns": 29463.0, "total_p5_ns": 17089.25, "total_p25_ns": 19445.5, "total_p50_ns": 21193.0, "total_p75_ns": 24019.75, "total_p95_ns": 27568.75, "total_p99_ns": 29251.350000000002, "total_ci_low_ns": 21072.715406976742, "total_ci_high_ns": 22454.381976744186, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.4057035462315834}, {"serializer": "flexbuffers", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "24.12.23", "avg_time_ser_ns": 177733.6219512195, "avg_time_deser_ns": 39204.37804878049, "avg_time_total_ns": 216938.0, "median_size_bytes": 1303.0, "avg_ops_per_sec": 4609.611962864966, "min_ops_per_sec": 1887.9679800630581, "max_ops_per_sec": 9628.06774308464, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 177733.6219512195, "ser_median_ns": 117401.5, "ser_std_ns": 128066.75923904341, "ser_mad_ns": 37610.5, "ser_cv": 0.7205544895393647, "ser_min_ns": 69114.0, "ser_max_ns": 483982.0, "ser_p5_ns": 77279.1, "ser_p25_ns": 81843.5, "ser_p50_ns": 117401.5, "ser_p75_ns": 342407.0, "ser_p95_ns": 406692.3, "ser_p99_ns": 441485.34999999986, "ser_ci_low_ns": 149627.99451219515, "ser_ci_high_ns": 204697.64542682923, "deser_mean_ns": 39204.37804878049, "deser_median_ns": 38714.0, "deser_std_ns": 2475.5350918775384, "deser_mad_ns": 1092.0, "deser_cv": 0.06314435313314563, "deser_min_ns": 33727.0, "deser_max_ns": 47575.0, "deser_p5_ns": 36766.85, "deser_p25_ns": 37752.75, "deser_p50_ns": 38714.0, "deser_p75_ns": 39902.75, "deser_p95_ns": 44383.8, "deser_p99_ns": 47563.66, "deser_ci_low_ns": 38692.15762195122, "deser_ci_high_ns": 39771.61859756098, "total_mean_ns": 216938.0, "total_median_ns": 156539.5, "total_std_ns": 128326.09705495615, "total_mad_ns": 37894.0, "total_cv": 0.5915335121322965, "total_min_ns": 103863.0, "total_max_ns": 529670.0, "total_p5_ns": 115016.2, "total_p25_ns": 120323.5, "total_p50_ns": 156539.5, "total_p75_ns": 378887.0, "total_p95_ns": 446558.3, "total_p99_ns": 483033.4399999999, "total_ci_low_ns": 189936.04756097562, "total_ci_high_ns": 245169.40670731707, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.2855493142992533}, {"serializer": "bebop", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "3.2.3", "avg_time_ser_ns": 4943.048780487805, "avg_time_deser_ns": 2367.682926829268, "avg_time_total_ns": 7310.731707317073, "median_size_bytes": 380.0, "avg_ops_per_sec": 136785.21385200508, "min_ops_per_sec": 80096.11533840609, "max_ops_per_sec": 197160.8832807571, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 4943.048780487805, "ser_median_ns": 4251.5, "ser_std_ns": 1409.565110259268, "ser_mad_ns": 440.5, "ser_cv": 0.28516107626195936, "ser_min_ns": 3188.0, "ser_max_ns": 9966.0, "ser_p5_ns": 3680.25, "ser_p25_ns": 3941.5, "ser_p50_ns": 4251.5, "ser_p75_ns": 6136.5, "ser_p95_ns": 7382.950000000001, "ser_p99_ns": 8593.049999999996, "ser_ci_low_ns": 4657.493597560976, "ser_ci_high_ns": 5246.7155487804885, "deser_mean_ns": 2367.682926829268, "deser_median_ns": 2380.5, "deser_std_ns": 177.41496854249039, "deser_mad_ns": 108.0, "deser_cv": 0.07493189503211029, "deser_min_ns": 1884.0, "deser_max_ns": 2882.0, "deser_p5_ns": 2081.15, "deser_p25_ns": 2252.75, "deser_p50_ns": 2380.5, "deser_p75_ns": 2464.25, "deser_p95_ns": 2657.35, "deser_p99_ns": 2860.94, "deser_ci_low_ns": 2328.4198170731706, "deser_ci_high_ns": 2406.0259146341464, "total_mean_ns": 7310.731707317073, "total_median_ns": 6679.5, "total_std_ns": 1470.2240448126256, "total_mad_ns": 581.0, "total_cv": 0.20110491038005487, "total_min_ns": 5072.0, "total_max_ns": 12485.0, "total_p5_ns": 5917.3, "total_p25_ns": 6330.25, "total_p50_ns": 6679.5, "total_p75_ns": 8481.0, "total_p95_ns": 9863.1, "total_p99_ns": 11385.019999999997, "total_ci_low_ns": 7020.596646341463, "total_ci_high_ns": 7620.470426829268, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 0.20067922198209323, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.6171159846068794}, {"serializer": "flatbuffers", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "24.12.23", "avg_time_ser_ns": 17907.137931034482, "avg_time_deser_ns": 7186.735632183908, "avg_time_total_ns": 25093.873563218393, "median_size_bytes": 352.0, "avg_ops_per_sec": 39850.364172782014, "min_ops_per_sec": 22163.611782176024, "max_ops_per_sec": 94029.14903620123, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 17907.137931034482, "ser_median_ns": 18971.0, "ser_std_ns": 6736.273354139071, "ser_mad_ns": 3860.0, "ser_cv": 0.3761781128889714, "ser_min_ns": 5825.0, "ser_max_ns": 36220.0, "ser_p5_ns": 7355.2, "ser_p25_ns": 12316.0, "ser_p50_ns": 18971.0, "ser_p75_ns": 22478.0, "ser_p95_ns": 26997.7, "ser_p99_ns": 33774.16, "ser_ci_low_ns": 16461.118390804597, "ser_ci_high_ns": 19291.641666666666, "deser_mean_ns": 7186.735632183908, "deser_median_ns": 6066.0, "deser_std_ns": 2404.718121371083, "deser_mad_ns": 932.0, "deser_cv": 0.3346050619424742, "deser_min_ns": 3902.0, "deser_max_ns": 13649.0, "deser_p5_ns": 4709.3, "deser_p25_ns": 5493.0, "deser_p50_ns": 6066.0, "deser_p75_ns": 8490.0, "deser_p95_ns": 12282.7, "deser_p99_ns": 12571.42, "deser_ci_low_ns": 6693.8227011494255, "deser_ci_high_ns": 7691.391666666667, "total_mean_ns": 25093.873563218393, "total_median_ns": 24691.0, "total_std_ns": 7529.097221593033, "total_mad_ns": 5797.0, "total_cv": 0.3000372661727636, "total_min_ns": 10635.0, "total_max_ns": 45119.0, "total_p5_ns": 12823.1, "total_p25_ns": 20723.0, "total_p50_ns": 24691.0, "total_p75_ns": 31082.5, "total_p95_ns": 38835.0, "total_p99_ns": 40260.0, "total_ci_low_ns": 23525.443965517243, "total_ci_high_ns": 26709.450862068963, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.3648843191559608}, {"serializer": "devalue", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "5.8.1", "avg_time_ser_ns": 24006.30487804878, "avg_time_deser_ns": 7297.621951219512, "avg_time_total_ns": 31303.926829268294, "median_size_bytes": 770.0, "avg_ops_per_sec": 31944.87405538618, "min_ops_per_sec": 25673.940949935815, "max_ops_per_sec": 40093.01579664822, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 24006.30487804878, "ser_median_ns": 23825.5, "ser_std_ns": 1949.9404909503048, "ser_mad_ns": 1118.0, "ser_cv": 0.08122618207408165, "ser_min_ns": 18958.0, "ser_max_ns": 29927.0, "ser_p5_ns": 21373.85, "ser_p25_ns": 22766.25, "ser_p50_ns": 23825.5, "ser_p75_ns": 24976.25, "ser_p95_ns": 27653.550000000003, "ser_p99_ns": 29360.0, "ser_ci_low_ns": 23604.08780487805, "ser_ci_high_ns": 24445.884146341465, "deser_mean_ns": 7297.621951219512, "deser_median_ns": 7000.5, "deser_std_ns": 1309.8723963886089, "deser_mad_ns": 777.5, "deser_cv": 0.17949304652178028, "deser_min_ns": 5557.0, "deser_max_ns": 11455.0, "deser_p5_ns": 5753.5, "deser_p25_ns": 6412.25, "deser_p50_ns": 7000.5, "deser_p75_ns": 7970.5, "deser_p95_ns": 9828.25, "deser_p99_ns": 11267.89, "deser_ci_low_ns": 7035.959451219513, "deser_ci_high_ns": 7599.09756097561, "total_mean_ns": 31303.926829268294, "total_median_ns": 31184.0, "total_std_ns": 2536.999193567115, "total_mad_ns": 1658.0, "total_cv": 0.0810441197171178, "total_min_ns": 24942.0, "total_max_ns": 38950.0, "total_p5_ns": 27956.35, "total_p25_ns": 29538.25, "total_p50_ns": 31184.0, "total_p75_ns": 32834.25, "total_p95_ns": 35685.600000000006, "total_p99_ns": 37790.079999999994, "total_ci_low_ns": 30781.205792682926, "total_ci_high_ns": 31860.94268292683, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.177941029269583}, {"serializer": "google-protobuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "3.21.4", "avg_time_ser_ns": 465.1951219512195, "avg_time_deser_ns": 7283.414634146341, "avg_time_total_ns": 7748.609756097561, "median_size_bytes": 291.0, "avg_ops_per_sec": 129055.40883809212, "min_ops_per_sec": 79107.66553279012, "max_ops_per_sec": 196270.85377821393, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 465.1951219512195, "ser_median_ns": 456.5, "ser_std_ns": 78.27120294513666, "ser_mad_ns": 50.5, "ser_cv": 0.16825456513136913, "ser_min_ns": 324.0, "ser_max_ns": 697.0, "ser_p5_ns": 355.05, "ser_p25_ns": 412.5, "ser_p50_ns": 456.5, "ser_p75_ns": 508.0, "ser_p95_ns": 603.0, "ser_p99_ns": 671.0799999999999, "ser_ci_low_ns": 448.37560975609756, "ser_ci_high_ns": 481.6109756097561, "deser_mean_ns": 7283.414634146341, "deser_median_ns": 6838.0, "deser_std_ns": 1546.1700428040506, "deser_mad_ns": 626.0, "deser_cv": 0.2122864233975155, "deser_min_ns": 4398.0, "deser_max_ns": 12131.0, "deser_p5_ns": 5339.85, "deser_p25_ns": 6350.5, "deser_p50_ns": 6838.0, "deser_p75_ns": 8022.0, "deser_p95_ns": 10667.850000000002, "deser_p99_ns": 11577.769999999999, "deser_ci_low_ns": 6972.4225609756095, "deser_ci_high_ns": 7634.684756097561, "total_mean_ns": 7748.609756097561, "total_median_ns": 7298.0, "total_std_ns": 1567.4074116124746, "total_mad_ns": 675.5, "total_cv": 0.20228240432150363, "total_min_ns": 5095.0, "total_max_ns": 12641.0, "total_p5_ns": 5722.75, "total_p25_ns": 6813.75, "total_p50_ns": 7298.0, "total_p75_ns": 8390.5, "total_p95_ns": 11252.250000000002, "total_p99_ns": 12097.489999999998, "total_ci_low_ns": 7409.406707317073, "total_ci_high_ns": 8090.928963414634, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 0.5223834516826181, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 0.9458589489997247}, {"serializer": "json-pack-msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "18.28.0", "avg_time_ser_ns": 3726.974683544304, "avg_time_deser_ns": 2876.1012658227846, "avg_time_total_ns": 6603.0759493670885, "median_size_bytes": 346.0, "avg_ops_per_sec": 151444.57032874975, "min_ops_per_sec": 118399.24224484964, "max_ops_per_sec": 193461.0176049526, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 3726.974683544304, "ser_median_ns": 3776.0, "ser_std_ns": 539.262530011067, "ser_mad_ns": 437.0, "ser_cv": 0.14469176095884706, "ser_min_ns": 2850.0, "ser_max_ns": 5473.0, "ser_p5_ns": 2977.6, "ser_p25_ns": 3243.0, "ser_p50_ns": 3776.0, "ser_p75_ns": 4125.5, "ser_p95_ns": 4464.299999999999, "ser_p99_ns": 4890.339999999999, "ser_ci_low_ns": 3609.97753164557, "ser_ci_high_ns": 3844.159810126582, "deser_mean_ns": 2876.1012658227846, "deser_median_ns": 2860.0, "deser_std_ns": 225.91447184304226, "deser_mad_ns": 127.0, "deser_cv": 0.0785488586676775, "deser_min_ns": 2238.0, "deser_max_ns": 3653.0, "deser_p5_ns": 2618.0, "deser_p25_ns": 2700.5, "deser_p50_ns": 2860.0, "deser_p75_ns": 2980.5, "deser_p95_ns": 3233.5, "deser_p99_ns": 3567.2, "deser_ci_low_ns": 2827.7300632911392, "deser_ci_high_ns": 2923.72753164557, "total_mean_ns": 6603.0759493670885, "total_median_ns": 6701.0, "total_std_ns": 640.7180221449454, "total_mad_ns": 482.0, "total_cv": 0.09703326556562762, "total_min_ns": 5169.0, "total_max_ns": 8446.0, "total_p5_ns": 5654.0, "total_p25_ns": 6125.5, "total_p50_ns": 6701.0, "total_p75_ns": 7035.5, "total_p95_ns": 7416.1, "total_p99_ns": 8307.94, "total_ci_low_ns": 6463.438924050633, "total_ci_high_ns": 6740.347151898734, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "protobuf-es", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "2.12.1", "avg_time_ser_ns": 31061.035714285714, "avg_time_deser_ns": 15481.035714285714, "avg_time_total_ns": 46542.07142857143, "median_size_bytes": 291.0, "avg_ops_per_sec": 21485.936687083424, "min_ops_per_sec": 15117.84359079021, "max_ops_per_sec": 39115.9788773714, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 31061.035714285714, "ser_median_ns": 30583.5, "ser_std_ns": 5674.499758104957, "ser_mad_ns": 3815.0, "ser_cv": 0.1826886846369749, "ser_min_ns": 19017.0, "ser_max_ns": 47243.0, "ser_p5_ns": 24184.4, "ser_p25_ns": 26967.75, "ser_p50_ns": 30583.5, "ser_p75_ns": 34505.5, "ser_p95_ns": 41330.45, "ser_p99_ns": 46446.200000000004, "ser_ci_low_ns": 29896.709523809524, "ser_ci_high_ns": 32238.92619047619, "deser_mean_ns": 15481.035714285714, "deser_median_ns": 16341.5, "deser_std_ns": 3685.7821633047747, "deser_mad_ns": 1841.0, "deser_cv": 0.23808369358024148, "deser_min_ns": 6548.0, "deser_max_ns": 25114.0, "deser_p5_ns": 9589.2, "deser_p25_ns": 13384.25, "deser_p50_ns": 16341.5, "deser_p75_ns": 17832.75, "deser_p95_ns": 20622.049999999996, "deser_p99_ns": 22885.450000000004, "deser_ci_low_ns": 14699.575595238095, "deser_ci_high_ns": 16224.403869047619, "total_mean_ns": 46542.07142857143, "total_median_ns": 46908.0, "total_std_ns": 8468.698571139039, "total_mad_ns": 5300.0, "total_cv": 0.18195792132148725, "total_min_ns": 25565.0, "total_max_ns": 66147.0, "total_p5_ns": 34281.9, "total_p25_ns": 40189.75, "total_p50_ns": 46908.0, "total_p75_ns": 52074.0, "total_p95_ns": 59859.2, "total_p99_ns": 64775.840000000004, "total_ci_low_ns": 44722.23988095238, "total_ci_high_ns": 48384.75029761905, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.520162340509154}, {"serializer": "msgpackr", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "1.12.1", "avg_time_ser_ns": 3969.373493975904, "avg_time_deser_ns": 4381.012048192771, "avg_time_total_ns": 8350.385542168675, "median_size_bytes": 348.0, "avg_ops_per_sec": 119754.94963077962, "min_ops_per_sec": 100090.08107296567, "max_ops_per_sec": 143947.02749388225, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 3969.373493975904, "ser_median_ns": 3883.0, "ser_std_ns": 361.10976342392394, "ser_mad_ns": 224.0, "ser_cv": 0.0909739947555855, "ser_min_ns": 3410.0, "ser_max_ns": 5118.0, "ser_p5_ns": 3473.9, "ser_p25_ns": 3712.5, "ser_p50_ns": 3883.0, "ser_p75_ns": 4198.5, "ser_p95_ns": 4683.0, "ser_p99_ns": 4891.679999999998, "ser_ci_low_ns": 3893.3391566265063, "ser_ci_high_ns": 4045.5243975903613, "deser_mean_ns": 4381.012048192771, "deser_median_ns": 4379.0, "deser_std_ns": 354.23829288454084, "deser_mad_ns": 211.0, "deser_cv": 0.08085763951063982, "deser_min_ns": 3527.0, "deser_max_ns": 5168.0, "deser_p5_ns": 3770.9, "deser_p25_ns": 4197.5, "deser_p50_ns": 4379.0, "deser_p75_ns": 4611.5, "deser_p95_ns": 4954.4, "deser_p99_ns": 5143.4, "deser_ci_low_ns": 4303.354518072289, "deser_ci_high_ns": 4457.316867469879, "total_mean_ns": 8350.385542168675, "total_median_ns": 8259.0, "total_std_ns": 674.2380311991095, "total_mad_ns": 422.0, "total_cv": 0.08074334146540538, "total_min_ns": 6947.0, "total_max_ns": 9991.0, "total_p5_ns": 7308.8, "total_p25_ns": 7959.0, "total_p50_ns": 8259.0, "total_p75_ns": 8724.0, "total_p95_ns": 9556.599999999999, "total_p99_ns": 9945.9, "total_ci_low_ns": 8207.478614457832, "total_ci_high_ns": 8486.712650602409, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 0.9408265975293579, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.6425754996032795}, {"serializer": "fast-json-stringify", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "6.4.0", "avg_time_ser_ns": 5286.875, "avg_time_deser_ns": 3083.284090909091, "avg_time_total_ns": 8370.15909090909, "median_size_bytes": 663.0, "avg_ops_per_sec": 119472.04218449199, "min_ops_per_sec": 77297.67334003246, "max_ops_per_sec": 223463.687150838, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 5286.875, "ser_median_ns": 5236.5, "ser_std_ns": 1094.8376546057086, "ser_mad_ns": 684.5, "ser_cv": 0.20708597320831468, "ser_min_ns": 2488.0, "ser_max_ns": 8584.0, "ser_p5_ns": 3619.9500000000003, "ser_p25_ns": 4534.25, "ser_p50_ns": 5236.5, "ser_p75_ns": 5888.0, "ser_p95_ns": 7133.9, "ser_p99_ns": 7758.369999999995, "ser_ci_low_ns": 5051.610511363636, "ser_ci_high_ns": 5520.086931818182, "deser_mean_ns": 3083.284090909091, "deser_median_ns": 2809.5, "deser_std_ns": 1020.0765798259995, "deser_mad_ns": 729.0, "deser_cv": 0.3308409312115106, "deser_min_ns": 1854.0, "deser_max_ns": 5932.0, "deser_p5_ns": 1942.05, "deser_p25_ns": 2149.25, "deser_p50_ns": 2809.5, "deser_p75_ns": 3821.75, "deser_p95_ns": 5085.899999999999, "deser_p99_ns": 5476.119999999997, "deser_ci_low_ns": 2875.7948863636366, "deser_ci_high_ns": 3293.0522727272723, "total_mean_ns": 8370.15909090909, "total_median_ns": 8179.5, "total_std_ns": 1831.7595766947575, "total_mad_ns": 1333.5, "total_cv": 0.21884405741872326, "total_min_ns": 4475.0, "total_max_ns": 12937.0, "total_p5_ns": 5843.7, "total_p25_ns": 6894.75, "total_p50_ns": 8179.5, "total_p75_ns": 9547.5, "total_p95_ns": 11796.499999999998, "total_p99_ns": 12615.099999999999, "total_ci_low_ns": 8016.392045454545, "total_ci_high_ns": 8750.616477272726, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 0.613204833141542, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.255417527179339}, {"serializer": "simdjson-parse+JSON.stringify", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "0.9.2", "avg_time_ser_ns": 4669.531914893617, "avg_time_deser_ns": 17010.35106382979, "avg_time_total_ns": 21679.882978723403, "median_size_bytes": 663.0, "avg_ops_per_sec": 46125.710225530194, "min_ops_per_sec": 24791.134690234772, "max_ops_per_sec": 79333.59777865926, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 4669.531914893617, "ser_median_ns": 4540.0, "ser_std_ns": 987.9972106326005, "ser_mad_ns": 674.5, "ser_cv": 0.21158377941081263, "ser_min_ns": 2968.0, "ser_max_ns": 7133.0, "ser_p5_ns": 3275.3, "ser_p25_ns": 3902.25, "ser_p50_ns": 4540.0, "ser_p75_ns": 5274.25, "ser_p95_ns": 6628.049999999999, "ser_p99_ns": 6990.709999999999, "ser_ci_low_ns": 4472.477127659575, "ser_ci_high_ns": 4869.618351063829, "deser_mean_ns": 17010.35106382979, "deser_median_ns": 13581.5, "deser_std_ns": 6201.04697838334, "deser_mad_ns": 1068.0, "deser_cv": 0.3645455026245183, "deser_min_ns": 8731.0, "deser_max_ns": 36689.0, "deser_p5_ns": 11670.85, "deser_p25_ns": 12749.75, "deser_p50_ns": 13581.5, "deser_p75_ns": 22339.75, "deser_p95_ns": 28406.899999999987, "deser_p99_ns": 32942.95999999997, "deser_ci_low_ns": 15871.147074468085, "deser_ci_high_ns": 18321.251329787232, "total_mean_ns": 21679.882978723403, "total_median_ns": 18932.5, "total_std_ns": 6150.374732628099, "total_mad_ns": 2239.0, "total_cv": 0.28369040269562645, "total_min_ns": 12605.0, "total_max_ns": 40337.0, "total_p5_ns": 15648.95, "total_p25_ns": 17158.75, "total_p50_ns": 18932.5, "total_p75_ns": 26633.5, "total_p95_ns": 33026.899999999994, "total_p99_ns": 36338.92999999997, "total_ci_low_ns": 20524.364627659575, "total_ci_high_ns": 22957.878191489363, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.2944660031508284}, {"serializer": "protobufjs", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "7.6.5", "avg_time_ser_ns": 8922.716216216217, "avg_time_deser_ns": 15791.472972972973, "avg_time_total_ns": 24714.18918918919, "median_size_bytes": 291.0, "avg_ops_per_sec": 40462.58577794789, "min_ops_per_sec": 32867.70747740345, "max_ops_per_sec": 50231.06288929074, "runs": 74, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 25, "ser_mean_ns": 8922.716216216217, "ser_median_ns": 8920.0, "ser_std_ns": 1467.3075754944139, "ser_mad_ns": 909.0, "ser_cv": 0.16444628966544034, "ser_min_ns": 6133.0, "ser_max_ns": 12417.0, "ser_p5_ns": 6342.3, "ser_p25_ns": 7981.0, "ser_p50_ns": 8920.0, "ser_p75_ns": 9608.0, "ser_p95_ns": 11514.699999999999, "ser_p99_ns": 12222.089999999998, "ser_ci_low_ns": 8592.323986486486, "ser_ci_high_ns": 9254.077702702702, "deser_mean_ns": 15791.472972972973, "deser_median_ns": 15836.0, "deser_std_ns": 1315.9780801665017, "deser_mad_ns": 780.5, "deser_cv": 0.08333472643234685, "deser_min_ns": 12345.0, "deser_max_ns": 19972.0, "deser_p5_ns": 13628.35, "deser_p25_ns": 15140.0, "deser_p50_ns": 15836.0, "deser_p75_ns": 16632.5, "deser_p95_ns": 17327.3, "deser_p99_ns": 19434.719999999998, "deser_ci_low_ns": 15493.184121621622, "deser_ci_high_ns": 16092.94831081081, "total_mean_ns": 24714.18918918919, "total_median_ns": 25092.5, "total_std_ns": 2412.566948042196, "total_mad_ns": 1539.0, "total_cv": 0.09761869708019931, "total_min_ns": 19908.0, "total_max_ns": 30425.0, "total_p5_ns": 20757.8, "total_p25_ns": 22688.25, "total_p50_ns": 25092.5, "total_p75_ns": 26311.25, "total_p95_ns": 28529.299999999996, "total_p99_ns": 29636.599999999995, "total_ci_low_ns": 24149.79087837838, "total_ci_high_ns": 25260.66013513514, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.359757875524696}, {"serializer": "bson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "6.10.4", "avg_time_ser_ns": 9284.475609756097, "avg_time_deser_ns": 4947.865853658536, "avg_time_total_ns": 14232.341463414634, "median_size_bytes": 463.0, "avg_ops_per_sec": 70262.50758320966, "min_ops_per_sec": 44509.725374994436, "max_ops_per_sec": 106997.64605178685, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 9284.475609756097, "ser_median_ns": 8314.0, "ser_std_ns": 2663.1952832418656, "ser_mad_ns": 1516.0, "ser_cv": 0.2868439096811659, "ser_min_ns": 5468.0, "ser_max_ns": 17474.0, "ser_p5_ns": 6578.8, "ser_p25_ns": 7209.75, "ser_p50_ns": 8314.0, "ser_p75_ns": 10790.0, "ser_p95_ns": 13255.0, "ser_p99_ns": 17043.89, "ser_ci_low_ns": 8719.748475609756, "ser_ci_high_ns": 9864.73231707317, "deser_mean_ns": 4947.865853658536, "deser_median_ns": 4846.5, "deser_std_ns": 531.5562700244901, "deser_mad_ns": 283.0, "deser_cv": 0.10743142311173379, "deser_min_ns": 3852.0, "deser_max_ns": 6353.0, "deser_p5_ns": 4204.45, "deser_p25_ns": 4623.0, "deser_p50_ns": 4846.5, "deser_p75_ns": 5171.75, "deser_p95_ns": 6229.45, "deser_p99_ns": 6301.16, "deser_ci_low_ns": 4837.9817073170725, "deser_ci_high_ns": 5056.6560975609755, "total_mean_ns": 14232.341463414634, "total_median_ns": 13417.0, "total_std_ns": 2846.6758878309847, "total_mad_ns": 1859.5, "total_cv": 0.20001458615566467, "total_min_ns": 9346.0, "total_max_ns": 22467.0, "total_p5_ns": 11037.05, "total_p25_ns": 12080.0, "total_p50_ns": 13417.0, "total_p75_ns": 15830.0, "total_p95_ns": 19444.000000000004, "total_p99_ns": 22081.44, "total_ci_low_ns": 13633.019817073171, "total_ci_high_ns": 14871.417378048782, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.649230685840683}, {"serializer": "cbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "9.0.2", "avg_time_ser_ns": 38114.555555555555, "avg_time_deser_ns": 25920.0987654321, "avg_time_total_ns": 64034.654320987655, "median_size_bytes": 345.0, "avg_ops_per_sec": 15616.54405108962, "min_ops_per_sec": 10635.58240449247, "max_ops_per_sec": 20579.095754532547, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 38114.555555555555, "ser_median_ns": 36776.0, "ser_std_ns": 6670.737805895237, "ser_mad_ns": 3355.0, "ser_cv": 0.17501811863375943, "ser_min_ns": 27152.0, "ser_max_ns": 59008.0, "ser_p5_ns": 30009.0, "ser_p25_ns": 33710.0, "ser_p50_ns": 36776.0, "ser_p75_ns": 40804.0, "ser_p95_ns": 51322.0, "ser_p99_ns": 58648.8, "ser_ci_low_ns": 36763.51018518519, "ser_ci_high_ns": 39544.13827160494, "deser_mean_ns": 25920.0987654321, "deser_median_ns": 25584.0, "deser_std_ns": 2550.7349999800954, "deser_mad_ns": 1327.0, "deser_cv": 0.09840761113849766, "deser_min_ns": 21359.0, "deser_max_ns": 35016.0, "deser_p5_ns": 22891.0, "deser_p25_ns": 24404.0, "deser_p50_ns": 25584.0, "deser_p75_ns": 26911.0, "deser_p95_ns": 30590.0, "deser_p99_ns": 34160.0, "deser_ci_low_ns": 25396.282407407405, "deser_ci_high_ns": 26454.453703703704, "total_mean_ns": 64034.654320987655, "total_median_ns": 62623.0, "total_std_ns": 8387.450126767511, "total_mad_ns": 4500.0, "total_cv": 0.13098298438098205, "total_min_ns": 48593.0, "total_max_ns": 94024.0, "total_p5_ns": 51744.0, "total_p25_ns": 58929.0, "total_p50_ns": 62623.0, "total_p75_ns": 67656.0, "total_p95_ns": 81517.0, "total_p99_ns": 89158.40000000002, "total_ci_low_ns": 62296.28117283951, "total_ci_high_ns": 65827.90648148148, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.549984463540055}, {"serializer": "@msgpack/msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "3.1.3", "avg_time_ser_ns": 8307.066666666668, "avg_time_deser_ns": 8230.822222222223, "avg_time_total_ns": 16537.88888888889, "median_size_bytes": 346.0, "avg_ops_per_sec": 60467.20997574592, "min_ops_per_sec": 30727.63028515241, "max_ops_per_sec": 149409.83116689077, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 8307.066666666668, "ser_median_ns": 7869.0, "ser_std_ns": 1928.465611174632, "ser_mad_ns": 1107.0, "ser_cv": 0.23214760258430153, "ser_min_ns": 3765.0, "ser_max_ns": 14201.0, "ser_p5_ns": 6017.45, "ser_p25_ns": 7019.75, "ser_p50_ns": 7869.0, "ser_p75_ns": 9299.75, "ser_p95_ns": 11917.55, "ser_p99_ns": 13007.509999999998, "ser_ci_low_ns": 7917.030555555556, "ser_ci_high_ns": 8702.285, "deser_mean_ns": 8230.822222222223, "deser_median_ns": 6317.0, "deser_std_ns": 3509.2208059153477, "deser_mad_ns": 647.5, "deser_cv": 0.4263511847505194, "deser_min_ns": 2928.0, "deser_max_ns": 18343.0, "deser_p5_ns": 5209.1, "deser_p25_ns": 5901.0, "deser_p50_ns": 6317.0, "deser_p75_ns": 11661.75, "deser_p95_ns": 14510.149999999998, "deser_p99_ns": 18333.21, "deser_ci_low_ns": 7516.263333333333, "deser_ci_high_ns": 8930.156944444445, "total_mean_ns": 16537.88888888889, "total_median_ns": 14163.5, "total_std_ns": 4993.427802969685, "total_mad_ns": 2032.0, "total_cv": 0.3019386474608956, "total_min_ns": 6693.0, "total_max_ns": 32544.0, "total_p5_ns": 11454.65, "total_p25_ns": 13019.5, "total_p50_ns": 14163.5, "total_p75_ns": 21098.75, "total_p95_ns": 25236.35, "total_p99_ns": 27687.269999999997, "total_ci_low_ns": 15565.978611111112, "total_ci_high_ns": 17593.8125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 0.9877637130801687, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.693739133104602}, {"serializer": "JSON.stringify", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "node-24.15.0", "avg_time_ser_ns": 4669.117021276596, "avg_time_deser_ns": 3024.808510638298, "avg_time_total_ns": 7693.925531914893, "median_size_bytes": 663.0, "avg_ops_per_sec": 129972.6642598679, "min_ops_per_sec": 82569.56485839319, "max_ops_per_sec": 203624.51639177356, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 4669.117021276596, "ser_median_ns": 4565.5, "ser_std_ns": 1008.4751808844128, "ser_mad_ns": 682.5, "ser_cv": 0.21598841414531156, "ser_min_ns": 3056.0, "ser_max_ns": 7600.0, "ser_p5_ns": 3222.1, "ser_p25_ns": 3891.25, "ser_p50_ns": 4565.5, "ser_p75_ns": 5308.5, "ser_p95_ns": 6489.049999999999, "ser_p99_ns": 7053.159999999996, "ser_ci_low_ns": 4474.376861702128, "ser_ci_high_ns": 4880.929255319149, "deser_mean_ns": 3024.808510638298, "deser_median_ns": 2765.0, "deser_std_ns": 883.7906904029479, "deser_mad_ns": 655.5, "deser_cv": 0.29218070740499524, "deser_min_ns": 1778.0, "deser_max_ns": 5111.0, "deser_p5_ns": 1918.45, "deser_p25_ns": 2263.75, "deser_p50_ns": 2765.0, "deser_p75_ns": 3729.75, "deser_p95_ns": 4573.75, "deser_p99_ns": 4778.059999999998, "deser_ci_low_ns": 2848.45585106383, "deser_ci_high_ns": 3218.3138297872338, "total_mean_ns": 7693.925531914893, "total_median_ns": 7395.5, "total_std_ns": 1637.4532102934274, "total_mad_ns": 1091.0, "total_cv": 0.2128241563427105, "total_min_ns": 4911.0, "total_max_ns": 12111.0, "total_p5_ns": 5376.0, "total_p25_ns": 6594.75, "total_p50_ns": 7395.5, "total_p75_ns": 8752.25, "total_p95_ns": 10652.849999999999, "total_p99_ns": 11752.949999999997, "total_ci_low_ns": 7375.243882978723, "total_ci_high_ns": 8038.36170212766, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 0.42822515486129814, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.8466556126390418}, {"serializer": "cbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "9.0.2", "avg_time_ser_ns": 999048.3218390804, "avg_time_deser_ns": 1199215.6666666667, "avg_time_total_ns": 2198263.988505747, "median_size_bytes": 34534.0, "avg_ops_per_sec": 454.9044178628165, "min_ops_per_sec": 409.185058853087, "max_ops_per_sec": 480.9012474097457, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 999048.3218390804, "ser_median_ns": 986937.0, "ser_std_ns": 55653.966009138814, "ser_mad_ns": 28679.0, "ser_cv": 0.05570698112648765, "ser_min_ns": 918190.0, "ser_max_ns": 1165513.0, "ser_p5_ns": 931030.7, "ser_p25_ns": 961223.5, "ser_p50_ns": 986937.0, "ser_p75_ns": 1020761.5, "ser_p95_ns": 1116226.9000000001, "ser_p99_ns": 1152181.28, "ser_ci_low_ns": 987675.6158045977, "ser_ci_high_ns": 1010590.2304597702, "deser_mean_ns": 1199215.6666666667, "deser_median_ns": 1190413.0, "deser_std_ns": 41423.26735865565, "deser_mad_ns": 27542.0, "deser_cv": 0.034541966478636436, "deser_min_ns": 1137687.0, "deser_max_ns": 1324467.0, "deser_p5_ns": 1147062.2, "deser_p25_ns": 1168243.5, "deser_p50_ns": 1190413.0, "deser_p75_ns": 1227354.5, "deser_p95_ns": 1273257.9, "deser_p99_ns": 1305339.74, "deser_ci_low_ns": 1190885.449137931, "deser_ci_high_ns": 1208128.5051724138, "total_mean_ns": 2198263.988505747, "total_median_ns": 2181167.0, "total_std_ns": 83034.11239875274, "total_mad_ns": 51577.0, "total_cv": 0.037772584563510285, "total_min_ns": 2079429.0, "total_max_ns": 2443882.0, "total_p5_ns": 2099152.7, "total_p25_ns": 2134731.5, "total_p50_ns": 2181167.0, "total_p75_ns": 2248893.0, "total_p95_ns": 2324503.5, "total_p99_ns": 2418140.48, "total_ci_low_ns": 2181648.634770115, "total_ci_high_ns": 2214665.5617816094, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 34.320548101844665}, {"serializer": "@msgpack/msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "3.1.3", "avg_time_ser_ns": 108502.46341463414, "avg_time_deser_ns": 68895.71951219512, "avg_time_total_ns": 177398.18292682926, "median_size_bytes": 34635.0, "avg_ops_per_sec": 5637.036318531324, "min_ops_per_sec": 4754.569140944448, "max_ops_per_sec": 6175.6223483421545, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 108502.46341463414, "ser_median_ns": 106087.5, "ser_std_ns": 8256.819643307086, "ser_mad_ns": 2375.0, "ser_cv": 0.07609799246450526, "ser_min_ns": 98542.0, "ser_max_ns": 136528.0, "ser_p5_ns": 101248.3, "ser_p25_ns": 103862.0, "ser_p50_ns": 106087.5, "ser_p75_ns": 108846.5, "ser_p95_ns": 130853.35, "ser_p99_ns": 135193.93, "ser_ci_low_ns": 106815.67865853659, "ser_ci_high_ns": 110383.63658536586, "deser_mean_ns": 68895.71951219512, "deser_median_ns": 68689.0, "deser_std_ns": 2966.0991353710924, "deser_mad_ns": 1891.0, "deser_cv": 0.043052008983607, "deser_min_ns": 62845.0, "deser_max_ns": 77534.0, "deser_p5_ns": 64696.35, "deser_p25_ns": 67024.75, "deser_p50_ns": 68689.0, "deser_p75_ns": 70701.5, "deser_p95_ns": 73990.75, "deser_p99_ns": 75048.10999999999, "deser_ci_low_ns": 68206.61951219512, "deser_ci_high_ns": 69553.20609756096, "total_mean_ns": 177398.18292682926, "total_median_ns": 175773.5, "total_std_ns": 9376.3807860569, "total_mad_ns": 4532.5, "total_cv": 0.05285499902738203, "total_min_ns": 161927.0, "total_max_ns": 210324.0, "total_p5_ns": 166867.55, "total_p25_ns": 171429.0, "total_p50_ns": 175773.5, "total_p75_ns": 180419.75, "total_p95_ns": 196914.55, "total_p99_ns": 207524.63999999998, "total_ci_low_ns": 175422.69024390244, "total_ci_high_ns": 179491.58109756096, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.453605136369247}, {"serializer": "msgpackr", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "1.12.1", "avg_time_ser_ns": 61727.06172839506, "avg_time_deser_ns": 80845.87654320987, "avg_time_total_ns": 142572.93827160494, "median_size_bytes": 34835.0, "avg_ops_per_sec": 7013.953784798736, "min_ops_per_sec": 6280.578566897582, "max_ops_per_sec": 7575.757575757576, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 61727.06172839506, "ser_median_ns": 60860.0, "ser_std_ns": 4538.335932215901, "ser_mad_ns": 3369.0, "ser_cv": 0.07352263019070972, "ser_min_ns": 53945.0, "ser_max_ns": 72486.0, "ser_p5_ns": 55840.0, "ser_p25_ns": 58327.0, "ser_p50_ns": 60860.0, "ser_p75_ns": 64750.0, "ser_p95_ns": 68727.0, "ser_p99_ns": 72398.0, "ser_ci_low_ns": 60786.68858024692, "ser_ci_high_ns": 62697.641358024695, "deser_mean_ns": 80845.87654320987, "deser_median_ns": 80522.0, "deser_std_ns": 2805.95137779825, "deser_mad_ns": 1384.0, "deser_cv": 0.03470741487104227, "deser_min_ns": 75331.0, "deser_max_ns": 88733.0, "deser_p5_ns": 76216.0, "deser_p25_ns": 79236.0, "deser_p50_ns": 80522.0, "deser_p75_ns": 82236.0, "deser_p95_ns": 86315.0, "deser_p99_ns": 87356.20000000001, "deser_ci_low_ns": 80247.02407407408, "deser_ci_high_ns": 81442.17253086419, "total_mean_ns": 142572.93827160494, "total_median_ns": 141606.0, "total_std_ns": 6035.29996012145, "total_mad_ns": 4325.0, "total_cv": 0.0423313149976895, "total_min_ns": 132000.0, "total_max_ns": 159221.0, "total_p5_ns": 134525.0, "total_p25_ns": 137983.0, "total_p50_ns": 141606.0, "total_p75_ns": 146141.0, "total_p95_ns": 152038.0, "total_p99_ns": 158305.0, "total_ci_low_ns": 141276.44506172842, "total_ci_high_ns": 143812.21882716048, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 0.9320987654320988, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.63876296094214}, {"serializer": "sia", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "2.3.0", "avg_time_ser_ns": 251683.50632911394, "avg_time_deser_ns": 160184.82278481012, "avg_time_total_ns": 411868.32911392406, "median_size_bytes": 38037.0, "avg_ops_per_sec": 2427.96041674619, "min_ops_per_sec": 2139.2525023906146, "max_ops_per_sec": 2613.0947403629066, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 251683.50632911394, "ser_median_ns": 247000.0, "ser_std_ns": 18049.132352094406, "ser_mad_ns": 9520.0, "ser_cv": 0.07171360815552394, "ser_min_ns": 227524.0, "ser_max_ns": 312550.0, "ser_p5_ns": 230259.2, "ser_p25_ns": 238935.5, "ser_p50_ns": 247000.0, "ser_p75_ns": 263340.5, "ser_p95_ns": 286895.19999999995, "ser_p99_ns": 303951.27999999997, "ser_ci_low_ns": 247871.82341772152, "ser_ci_high_ns": 255765.20822784808, "deser_mean_ns": 160184.82278481012, "deser_median_ns": 159792.0, "deser_std_ns": 4365.7485943083075, "deser_mad_ns": 2589.0, "deser_cv": 0.027254445948185668, "deser_min_ns": 152857.0, "deser_max_ns": 172962.0, "deser_p5_ns": 154047.5, "deser_p25_ns": 157211.5, "deser_p50_ns": 159792.0, "deser_p75_ns": 162678.5, "deser_p95_ns": 168518.6, "deser_p99_ns": 171004.98, "deser_ci_low_ns": 159236.05537974683, "deser_ci_high_ns": 161195.1085443038, "total_mean_ns": 411868.32911392406, "total_median_ns": 407721.0, "total_std_ns": 19139.103619340007, "total_mad_ns": 11709.0, "total_cv": 0.04646898599976128, "total_min_ns": 382688.0, "total_max_ns": 467453.0, "total_p5_ns": 385638.5, "total_p25_ns": 398064.0, "total_p50_ns": 407721.0, "total_p75_ns": 424312.5, "total_p95_ns": 453303.5, "total_p99_ns": 462687.98, "total_ci_low_ns": 407800.2158227848, "total_ci_high_ns": 416224.95, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.14231754567722}, {"serializer": "simdjson-parse+JSON.stringify", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "0.9.2", "avg_time_ser_ns": 333227.35869565216, "avg_time_deser_ns": 448874.79347826086, "avg_time_total_ns": 782102.1521739131, "median_size_bytes": 65958.0, "avg_ops_per_sec": 1278.6053550938623, "min_ops_per_sec": 1149.4887074229382, "max_ops_per_sec": 1380.254629374027, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 333227.35869565216, "ser_median_ns": 329777.0, "ser_std_ns": 19762.578489717154, "ser_mad_ns": 14433.5, "ser_cv": 0.059306590452457376, "ser_min_ns": 298117.0, "ser_max_ns": 384498.0, "ser_p5_ns": 305114.7, "ser_p25_ns": 318348.0, "ser_p50_ns": 329777.0, "ser_p75_ns": 346299.5, "ser_p95_ns": 368954.2, "ser_p99_ns": 383664.44, "ser_ci_low_ns": 329505.42717391305, "ser_ci_high_ns": 337579.1654891304, "deser_mean_ns": 448874.79347826086, "deser_median_ns": 445547.0, "deser_std_ns": 19850.593122889462, "deser_mad_ns": 13326.5, "deser_cv": 0.04422300697499699, "deser_min_ns": 416877.0, "deser_max_ns": 502399.0, "deser_p5_ns": 423495.45, "deser_p25_ns": 434757.0, "deser_p50_ns": 445547.0, "deser_p75_ns": 463383.25, "deser_p95_ns": 486180.05, "deser_p99_ns": 496039.92000000004, "deser_ci_low_ns": 445040.2771739131, "deser_ci_high_ns": 453034.8038043479, "total_mean_ns": 782102.1521739131, "total_median_ns": 778290.0, "total_std_ns": 33979.66178286193, "total_mad_ns": 23753.5, "total_cv": 0.043446577519845514, "total_min_ns": 724504.0, "total_max_ns": 869952.0, "total_p5_ns": 735531.35, "total_p25_ns": 753871.25, "total_p50_ns": 778290.0, "total_p75_ns": 799025.5, "total_p95_ns": 840460.05, "total_p99_ns": 865295.53, "total_ci_low_ns": 775235.3366847826, "total_ci_high_ns": 789063.1932065218, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.922855601578114}, {"serializer": "cbor-x", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "1.6.4", "avg_time_ser_ns": 73388.10344827586, "avg_time_deser_ns": 69153.7816091954, "avg_time_total_ns": 142541.88505747126, "median_size_bytes": 32660.0, "avg_ops_per_sec": 7015.481797485781, "min_ops_per_sec": 5440.370815674796, "max_ops_per_sec": 8339.588024351597, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 73388.10344827586, "ser_median_ns": 69959.0, "ser_std_ns": 8447.922900120675, "ser_mad_ns": 3437.0, "ser_cv": 0.11511297476265749, "ser_min_ns": 64446.0, "ser_max_ns": 98707.0, "ser_p5_ns": 65020.1, "ser_p25_ns": 67369.0, "ser_p50_ns": 69959.0, "ser_p75_ns": 76240.0, "ser_p95_ns": 90337.5, "ser_p99_ns": 96839.08, "ser_ci_low_ns": 71741.92873563219, "ser_ci_high_ns": 75298.04770114942, "deser_mean_ns": 69153.7816091954, "deser_median_ns": 65892.0, "deser_std_ns": 9725.328966069092, "deser_mad_ns": 3725.0, "deser_cv": 0.14063336436218712, "deser_min_ns": 51844.0, "deser_max_ns": 93839.0, "deser_p5_ns": 59029.0, "deser_p25_ns": 63257.0, "deser_p50_ns": 65892.0, "deser_p75_ns": 71109.0, "deser_p95_ns": 92132.40000000001, "deser_p99_ns": 93699.68, "deser_ci_low_ns": 67198.9379310345, "deser_ci_high_ns": 71249.9841954023, "total_mean_ns": 142541.88505747126, "total_median_ns": 135918.0, "total_std_ns": 15390.129414830766, "total_mad_ns": 6855.0, "total_cv": 0.10796917277069573, "total_min_ns": 119910.0, "total_max_ns": 183811.0, "total_p5_ns": 125380.0, "total_p25_ns": 132409.0, "total_p50_ns": 135918.0, "total_p75_ns": 150408.5, "total_p95_ns": 176934.5, "total_p99_ns": 180302.2, "total_ci_low_ns": 139410.69770114945, "total_ci_high_ns": 145836.5143678161, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 0.7306034482758621, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.3066991936057664}, {"serializer": "bson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "6.10.4", "avg_time_ser_ns": 155854.7294117647, "avg_time_deser_ns": 155965.24705882353, "avg_time_total_ns": 311819.97647058824, "median_size_bytes": 46735.0, "avg_ops_per_sec": 3206.9786269588885, "min_ops_per_sec": 2851.1229147599784, "max_ops_per_sec": 3483.3859905182235, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 155854.7294117647, "ser_median_ns": 153876.0, "ser_std_ns": 8496.15766991767, "ser_mad_ns": 5176.0, "ser_cv": 0.05451331314734127, "ser_min_ns": 141497.0, "ser_max_ns": 182975.0, "ser_p5_ns": 144936.4, "ser_p25_ns": 150314.0, "ser_p50_ns": 153876.0, "ser_p75_ns": 160653.0, "ser_p95_ns": 170559.0, "ser_p99_ns": 181013.6, "ser_ci_low_ns": 154143.0605882353, "ser_ci_high_ns": 157726.65911764707, "deser_mean_ns": 155965.24705882353, "deser_median_ns": 151995.0, "deser_std_ns": 9978.350469541405, "deser_mad_ns": 4378.0, "deser_cv": 0.06397803778541761, "deser_min_ns": 143950.0, "deser_max_ns": 179645.0, "deser_p5_ns": 145544.0, "deser_p25_ns": 149453.0, "deser_p50_ns": 151995.0, "deser_p75_ns": 159936.0, "deser_p95_ns": 175994.2, "deser_p99_ns": 177983.47999999998, "deser_ci_low_ns": 153806.27323529412, "deser_ci_high_ns": 158118.2155882353, "total_mean_ns": 311819.97647058824, "total_median_ns": 309459.0, "total_std_ns": 15235.83309799356, "total_mad_ns": 8946.0, "total_cv": 0.04886099110917817, "total_min_ns": 287077.0, "total_max_ns": 350739.0, "total_p5_ns": 291290.4, "total_p25_ns": 301487.0, "total_p50_ns": 309459.0, "total_p75_ns": 319650.0, "total_p95_ns": 342002.6, "total_p99_ns": 346565.88, "total_ci_low_ns": 308523.55794117646, "total_ci_high_ns": 315042.84029411763, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.823800947838503}, {"serializer": "protobufjs", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "7.6.5", "avg_time_ser_ns": 120032.87654320987, "avg_time_deser_ns": 181285.72839506174, "avg_time_total_ns": 301318.60493827163, "median_size_bytes": 29432.0, "avg_ops_per_sec": 3318.7462825432262, "min_ops_per_sec": 2673.8396872677104, "max_ops_per_sec": 3735.4550718141236, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 120032.87654320987, "ser_median_ns": 117290.0, "ser_std_ns": 9852.225327791071, "ser_mad_ns": 3932.0, "ser_cv": 0.08207939034306515, "ser_min_ns": 107213.0, "ser_max_ns": 156743.0, "ser_p5_ns": 109449.0, "ser_p25_ns": 113925.0, "ser_p50_ns": 117290.0, "ser_p75_ns": 122690.0, "ser_p95_ns": 141024.0, "ser_p99_ns": 148608.60000000003, "ser_ci_low_ns": 118085.025, "ser_ci_high_ns": 122227.43487654321, "deser_mean_ns": 181285.72839506174, "deser_median_ns": 174862.0, "deser_std_ns": 18831.105962616974, "deser_mad_ns": 11924.0, "deser_cv": 0.10387528091334264, "deser_min_ns": 155741.0, "deser_max_ns": 240838.0, "deser_p5_ns": 159952.0, "deser_p25_ns": 168638.0, "deser_p50_ns": 174862.0, "deser_p75_ns": 190583.0, "deser_p95_ns": 218284.0, "deser_p99_ns": 236590.00000000003, "deser_ci_low_ns": 177308.525, "deser_ci_high_ns": 185423.662654321, "total_mean_ns": 301318.60493827163, "total_median_ns": 297226.0, "total_std_ns": 23858.762631200625, "total_mad_ns": 16589.0, "total_cv": 0.07918117978837833, "total_min_ns": 267705.0, "total_max_ns": 373994.0, "total_p5_ns": 271915.0, "total_p25_ns": 282176.0, "total_p50_ns": 297226.0, "total_p75_ns": 315648.0, "total_p95_ns": 345384.0, "total_p99_ns": 367291.60000000003, "total_ci_low_ns": 296306.8925925926, "total_ci_high_ns": 306684.749691358, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.975183151606801}, {"serializer": "v8-serializer", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "v8-13.6.233.17-node.48", "avg_time_ser_ns": 69313.98684210527, "avg_time_deser_ns": 103927.97368421052, "avg_time_total_ns": 173241.9605263158, "median_size_bytes": 36139.0, "avg_ops_per_sec": 5772.273627947648, "min_ops_per_sec": 5112.082406768397, "max_ops_per_sec": 6576.567689322942, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 69313.98684210527, "ser_median_ns": 68046.5, "ser_std_ns": 6486.394230990324, "ser_mad_ns": 3170.5, "ser_cv": 0.09357987509456199, "ser_min_ns": 57380.0, "ser_max_ns": 90149.0, "ser_p5_ns": 62357.75, "ser_p25_ns": 65076.75, "ser_p50_ns": 68046.5, "ser_p75_ns": 71333.0, "ser_p95_ns": 82026.5, "ser_p99_ns": 89706.5, "ser_ci_low_ns": 67972.87203947369, "ser_ci_high_ns": 70768.96644736842, "deser_mean_ns": 103927.97368421052, "deser_median_ns": 104113.5, "deser_std_ns": 3703.1620721528757, "deser_mad_ns": 2527.0, "deser_cv": 0.03563200494416535, "deser_min_ns": 94408.0, "deser_max_ns": 114908.0, "deser_p5_ns": 97726.5, "deser_p25_ns": 101589.25, "deser_p50_ns": 104113.5, "deser_p75_ns": 106536.25, "deser_p95_ns": 109337.0, "deser_p99_ns": 111974.75, "deser_ci_low_ns": 103089.99046052633, "deser_ci_high_ns": 104738.51578947368, "total_mean_ns": 173241.9605263158, "total_median_ns": 172706.5, "total_std_ns": 8546.832964228388, "total_mad_ns": 4831.5, "total_cv": 0.049334658521889146, "total_min_ns": 152055.0, "total_max_ns": 195615.0, "total_p5_ns": 161411.25, "total_p25_ns": 167731.0, "total_p50_ns": 172706.5, "total_p75_ns": 176916.0, "total_p95_ns": 188605.0, "total_p99_ns": 193247.25, "total_ci_low_ns": 171368.77335526314, "total_ci_high_ns": 175143.02894736844, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.3763233158958075}, {"serializer": "json-pack-msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "18.28.0", "avg_time_ser_ns": 63519.875, "avg_time_deser_ns": 63563.4625, "avg_time_total_ns": 127083.3375, "median_size_bytes": 34746.0, "avg_ops_per_sec": 7868.85220102124, "min_ops_per_sec": 7046.173575439858, "max_ops_per_sec": 8511.652452207072, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 63519.875, "ser_median_ns": 62607.5, "ser_std_ns": 4271.563115831445, "ser_mad_ns": 2281.5, "ser_cv": 0.06724766249668226, "ser_min_ns": 58033.0, "ser_max_ns": 78675.0, "ser_p5_ns": 58907.25, "ser_p25_ns": 60485.5, "ser_p50_ns": 62607.5, "ser_p75_ns": 65161.75, "ser_p95_ns": 72998.25, "ser_p99_ns": 77762.54999999999, "ser_ci_low_ns": 62646.1721875, "ser_ci_high_ns": 64506.3378125, "deser_mean_ns": 63563.4625, "deser_median_ns": 62929.0, "deser_std_ns": 2751.6923765720635, "deser_mad_ns": 1538.5, "deser_cv": 0.04329047330566776, "deser_min_ns": 58015.0, "deser_max_ns": 72678.0, "deser_p5_ns": 60084.7, "deser_p25_ns": 61677.5, "deser_p50_ns": 62929.0, "deser_p75_ns": 64757.5, "deser_p95_ns": 68232.05, "deser_p99_ns": 70168.95999999998, "deser_ci_low_ns": 62997.0384375, "deser_ci_high_ns": 64188.033437499995, "total_mean_ns": 127083.3375, "total_median_ns": 126645.5, "total_std_ns": 5640.1124078567345, "total_mad_ns": 3881.0, "total_cv": 0.04438121093457067, "total_min_ns": 117486.0, "total_max_ns": 141921.0, "total_p5_ns": 119712.65, "total_p25_ns": 122108.0, "total_p50_ns": 126645.5, "total_p75_ns": 129848.75, "total_p95_ns": 139019.3, "total_p99_ns": 141510.19999999998, "total_ci_low_ns": 125921.670625, "total_ci_high_ns": 128310.419375, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "google-protobuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "3.21.4", "avg_time_ser_ns": 961.7717391304348, "avg_time_deser_ns": 153897.59782608695, "avg_time_total_ns": 154859.36956521738, "median_size_bytes": 29432.0, "avg_ops_per_sec": 6457.471722941896, "min_ops_per_sec": 4816.978887181537, "max_ops_per_sec": 7323.539320082609, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 961.7717391304348, "ser_median_ns": 923.5, "ser_std_ns": 285.1754849465932, "ser_mad_ns": 193.5, "ser_cv": 0.29651056830223405, "ser_min_ns": 308.0, "ser_max_ns": 1597.0, "ser_p5_ns": 568.55, "ser_p25_ns": 744.75, "ser_p50_ns": 923.5, "ser_p75_ns": 1139.0, "ser_p95_ns": 1510.95, "ser_p99_ns": 1574.25, "ser_ci_low_ns": 905.2296195652174, "ser_ci_high_ns": 1021.1127717391304, "deser_mean_ns": 153897.59782608695, "deser_median_ns": 145591.0, "deser_std_ns": 18003.989108680602, "deser_mad_ns": 4167.5, "deser_cv": 0.11698681047007722, "deser_min_ns": 135978.0, "deser_max_ns": 206207.0, "deser_p5_ns": 139449.25, "deser_p25_ns": 142255.0, "deser_p50_ns": 145591.0, "deser_p75_ns": 160339.5, "deser_p95_ns": 192890.80000000002, "deser_p99_ns": 203726.34, "deser_ci_low_ns": 150457.45190217393, "deser_ci_high_ns": 157639.90706521738, "total_mean_ns": 154859.36956521738, "total_median_ns": 146664.5, "total_std_ns": 18112.901070854994, "total_mad_ns": 4215.0, "total_cv": 0.11696354648549011, "total_min_ns": 136546.0, "total_max_ns": 207599.0, "total_p5_ns": 140181.25, "total_p25_ns": 143163.75, "total_p50_ns": 146664.5, "total_p75_ns": 161161.75, "total_p95_ns": 193723.45, "total_p99_ns": 204750.7, "total_ci_low_ns": 151237.85353260871, "total_ci_high_ns": 158791.09864130433, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 0.9899456521739131, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.0040709904749465}, {"serializer": "bser", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "2.1.1", "avg_time_ser_ns": 440987.978021978, "avg_time_deser_ns": 186224.7032967033, "avg_time_total_ns": 627212.6813186813, "median_size_bytes": 36442.0, "avg_ops_per_sec": 1594.3555189247022, "min_ops_per_sec": 983.9004371469642, "max_ops_per_sec": 2677.1898074029655, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 440987.978021978, "ser_median_ns": 260055.0, "ser_std_ns": 239466.1116199014, "ser_mad_ns": 53735.0, "ser_cv": 0.543021858994911, "ser_min_ns": 204244.0, "ser_max_ns": 792608.0, "ser_p5_ns": 207003.0, "ser_p25_ns": 219264.5, "ser_p50_ns": 260055.0, "ser_p75_ns": 695277.0, "ser_p95_ns": 739539.0, "ser_p99_ns": 785552.0, "ser_ci_low_ns": 393310.1041208791, "ser_ci_high_ns": 489202.73598901095, "deser_mean_ns": 186224.7032967033, "deser_median_ns": 178372.0, "deser_std_ns": 17922.21875307885, "deser_mad_ns": 6489.0, "deser_cv": 0.0962397492695918, "deser_min_ns": 167735.0, "deser_max_ns": 241686.0, "deser_p5_ns": 168895.5, "deser_p25_ns": 173418.0, "deser_p50_ns": 178372.0, "deser_p75_ns": 195498.0, "deser_p95_ns": 223347.0, "deser_p99_ns": 230884.19999999992, "deser_ci_low_ns": 182705.14368131867, "deser_ci_high_ns": 190050.435989011, "total_mean_ns": 627212.6813186813, "total_median_ns": 447843.0, "total_std_ns": 248608.2358055599, "total_mad_ns": 69120.0, "total_cv": 0.3963699128067282, "total_min_ns": 373526.0, "total_max_ns": 1016363.0, "total_p5_ns": 379054.0, "total_p25_ns": 396623.0, "total_p50_ns": 447843.0, "total_p75_ns": 886132.5, "total_p95_ns": 958307.0, "total_p99_ns": 1014643.1, "total_ci_low_ns": 579596.2244505495, "total_ci_high_ns": 678714.5728021977, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.743824574414327}, {"serializer": "bebop", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "3.2.3", "avg_time_ser_ns": 88604.03797468354, "avg_time_deser_ns": 70694.70886075949, "avg_time_total_ns": 159298.74683544305, "median_size_bytes": 38037.0, "avg_ops_per_sec": 6277.513287866655, "min_ops_per_sec": 5026.388539834129, "max_ops_per_sec": 6930.4391819309585, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 88604.03797468354, "ser_median_ns": 83906.0, "ser_std_ns": 12025.277070685092, "ser_mad_ns": 3540.0, "ser_cv": 0.13571928938634856, "ser_min_ns": 75639.0, "ser_max_ns": 123961.0, "ser_p5_ns": 78459.5, "ser_p25_ns": 81725.5, "ser_p50_ns": 83906.0, "ser_p75_ns": 88665.0, "ser_p95_ns": 117349.6, "ser_p99_ns": 123371.31999999999, "ser_ci_low_ns": 86065.16107594936, "ser_ci_high_ns": 91363.72499999999, "deser_mean_ns": 70694.70886075949, "deser_median_ns": 69980.0, "deser_std_ns": 3010.290007120869, "deser_mad_ns": 1636.0, "deser_cv": 0.042581546138763304, "deser_min_ns": 66301.0, "deser_max_ns": 80013.0, "deser_p5_ns": 66932.1, "deser_p25_ns": 68637.0, "deser_p50_ns": 69980.0, "deser_p75_ns": 72243.0, "deser_p95_ns": 77027.4, "deser_p99_ns": 79537.98, "deser_ci_low_ns": 70092.51962025317, "deser_ci_high_ns": 71366.26550632912, "total_mean_ns": 159298.74683544305, "total_median_ns": 154752.0, "total_std_ns": 12835.155871386147, "total_mad_ns": 4484.0, "total_cv": 0.08057286153446626, "total_min_ns": 144291.0, "total_max_ns": 198950.0, "total_p5_ns": 146213.9, "total_p25_ns": 151464.5, "total_p50_ns": 154752.0, "total_p75_ns": 163706.0, "total_p95_ns": 186334.5, "total_p99_ns": 195083.54, "total_ci_low_ns": 156517.66518987343, "total_ci_high_ns": 162235.45917721518, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.241113886784154}, {"serializer": "protobuf-es", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "2.12.1", "avg_time_ser_ns": 1113777.7325581396, "avg_time_deser_ns": 230674.31395348837, "avg_time_total_ns": 1344452.046511628, "median_size_bytes": 29432.0, "avg_ops_per_sec": 743.7974471418614, "min_ops_per_sec": 635.9814115353037, "max_ops_per_sec": 826.2229959341566, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 1113777.7325581396, "ser_median_ns": 1103040.0, "ser_std_ns": 59671.41722809996, "ser_mad_ns": 36760.0, "ser_cv": 0.05357569601525957, "ser_min_ns": 1002227.0, "ser_max_ns": 1291155.0, "ser_p5_ns": 1036173.75, "ser_p25_ns": 1071303.75, "ser_p50_ns": 1103040.0, "ser_p75_ns": 1142505.25, "ser_p95_ns": 1238862.0, "ser_p99_ns": 1285789.8, "ser_ci_low_ns": 1101571.0276162792, "ser_ci_high_ns": 1127599.720348837, "deser_mean_ns": 230674.31395348837, "deser_median_ns": 216916.0, "deser_std_ns": 27603.075070067884, "deser_mad_ns": 8919.5, "deser_cv": 0.11966254324975942, "deser_min_ns": 196027.0, "deser_max_ns": 311394.0, "deser_p5_ns": 204401.5, "deser_p25_ns": 212958.75, "deser_p50_ns": 216916.0, "deser_p75_ns": 239018.25, "deser_p95_ns": 288385.25, "deser_p99_ns": 295812.6500000001, "deser_ci_low_ns": 224908.77412790697, "deser_ci_high_ns": 237018.125, "total_mean_ns": 1344452.046511628, "total_median_ns": 1319615.0, "total_std_ns": 79652.35747272341, "total_mad_ns": 38669.0, "total_cv": 0.059245220147042636, "total_min_ns": 1210327.0, "total_max_ns": 1572373.0, "total_p5_ns": 1251361.5, "total_p25_ns": 1286957.75, "total_p50_ns": 1319615.0, "total_p75_ns": 1378463.0, "total_p95_ns": 1511697.5, "total_p99_ns": 1540918.7500000002, "total_ci_low_ns": 1328026.1561046513, "total_ci_high_ns": 1361113.2404069768, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.083014159936276}, {"serializer": "JSON.stringify", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "node-24.15.0", "avg_time_ser_ns": 338201.0333333333, "avg_time_deser_ns": 157925.98888888888, "avg_time_total_ns": 496127.02222222224, "median_size_bytes": 65958.0, "avg_ops_per_sec": 2015.6128475342066, "min_ops_per_sec": 1798.9785399849966, "max_ops_per_sec": 2299.3421582085366, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 338201.0333333333, "ser_median_ns": 335705.0, "ser_std_ns": 20820.74254709374, "ser_mad_ns": 14664.0, "ser_cv": 0.0615632138727757, "ser_min_ns": 296066.0, "ser_max_ns": 389676.0, "ser_p5_ns": 309348.1, "ser_p25_ns": 323969.0, "ser_p50_ns": 335705.0, "ser_p75_ns": 352588.0, "ser_p95_ns": 375439.85, "ser_p99_ns": 387193.79, "ser_ci_low_ns": 334054.18694444443, "ser_ci_high_ns": 342848.43666666665, "deser_mean_ns": 157925.98888888888, "deser_median_ns": 153832.0, "deser_std_ns": 14835.944278687643, "deser_mad_ns": 9398.5, "deser_cv": 0.09394238644993184, "deser_min_ns": 136061.0, "deser_max_ns": 200014.0, "deser_p5_ns": 139081.1, "deser_p25_ns": 146871.0, "deser_p50_ns": 153832.0, "deser_p75_ns": 169855.75, "deser_p95_ns": 184557.15, "deser_p99_ns": 191340.94999999998, "deser_ci_low_ns": 154846.2658333333, "deser_ci_high_ns": 161081.6186111111, "total_mean_ns": 496127.02222222224, "total_median_ns": 495047.5, "total_std_ns": 25653.36124459265, "total_mad_ns": 14701.5, "total_cv": 0.05170724450703705, "total_min_ns": 434907.0, "total_max_ns": 555871.0, "total_p5_ns": 458565.6, "total_p25_ns": 480221.5, "total_p50_ns": 495047.5, "total_p75_ns": 509180.5, "total_p95_ns": 544944.7, "total_p99_ns": 553973.52, "total_ci_low_ns": 490819.36388888885, "total_ci_high_ns": 501348.8872222222, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.267455915212143}, {"serializer": "avsc", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "5.7.9", "avg_time_ser_ns": 615038.6067415731, "avg_time_deser_ns": 514969.9775280899, "avg_time_total_ns": 1130008.5842696629, "median_size_bytes": 28835.0, "avg_ops_per_sec": 884.949029521144, "min_ops_per_sec": 799.2167675677836, "max_ops_per_sec": 949.6721256986026, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 615038.6067415731, "ser_median_ns": 607873.0, "ser_std_ns": 28959.218605503116, "ser_mad_ns": 18122.0, "ser_cv": 0.0470852045515107, "ser_min_ns": 563280.0, "ser_max_ns": 693355.0, "ser_p5_ns": 579757.8, "ser_p25_ns": 593502.0, "ser_p50_ns": 607873.0, "ser_p75_ns": 635035.0, "ser_p95_ns": 670475.4, "ser_p99_ns": 692849.0, "ser_ci_low_ns": 609329.8103932585, "ser_ci_high_ns": 621172.9404494382, "deser_mean_ns": 514969.9775280899, "deser_median_ns": 513368.0, "deser_std_ns": 27618.442862670232, "deser_mad_ns": 18373.0, "deser_cv": 0.05363117087959509, "deser_min_ns": 468255.0, "deser_max_ns": 595593.0, "deser_p5_ns": 479475.8, "deser_p25_ns": 495389.0, "deser_p50_ns": 513368.0, "deser_p75_ns": 532429.0, "deser_p95_ns": 566828.5999999999, "deser_p99_ns": 594672.52, "deser_ci_low_ns": 509715.9247191011, "deser_ci_high_ns": 520860.3398876405, "total_mean_ns": 1130008.5842696629, "total_median_ns": 1124188.0, "total_std_ns": 46106.21969648135, "total_mad_ns": 31788.0, "total_cv": 0.04080165437528983, "total_min_ns": 1052995.0, "total_max_ns": 1251225.0, "total_p5_ns": 1066821.0, "total_p25_ns": 1092931.0, "total_p50_ns": 1124188.0, "total_p75_ns": 1160107.0, "total_p95_ns": 1212927.8, "total_p99_ns": 1235759.0, "total_ci_low_ns": 1120343.9404494383, "total_ci_high_ns": 1139981.143258427, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.63264974672774}, {"serializer": "flexbuffers", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "24.12.23", "avg_time_ser_ns": 4021615.4, "avg_time_deser_ns": 3154281.4625, "avg_time_total_ns": 7175896.8625, "median_size_bytes": 128122.0, "avg_ops_per_sec": 139.3554031170414, "min_ops_per_sec": 131.22551905926, "max_ops_per_sec": 145.23201831550028, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 4021615.4, "ser_median_ns": 4002386.0, "ser_std_ns": 107136.47580298479, "ser_mad_ns": 75435.5, "ser_cv": 0.026640159524698656, "ser_min_ns": 3848455.0, "ser_max_ns": 4303146.0, "ser_p5_ns": 3880953.85, "ser_p25_ns": 3943179.75, "ser_p50_ns": 4002386.0, "ser_p75_ns": 4087358.0, "ser_p95_ns": 4216854.3, "ser_p99_ns": 4263208.34, "ser_ci_low_ns": 3998443.4071875, "ser_ci_high_ns": 4045043.1915625003, "deser_mean_ns": 3154281.4625, "deser_median_ns": 3143251.5, "deser_std_ns": 73459.85129013124, "deser_mad_ns": 41051.5, "deser_cv": 0.02328893352209251, "deser_min_ns": 3020648.0, "deser_max_ns": 3362640.0, "deser_p5_ns": 3048283.6, "deser_p25_ns": 3104134.25, "deser_p50_ns": 3143251.5, "deser_p75_ns": 3184218.5, "deser_p95_ns": 3297064.6, "deser_p99_ns": 3334143.9099999997, "deser_ci_low_ns": 3138938.5365625, "deser_ci_high_ns": 3170410.3728125, "total_mean_ns": 7175896.8625, "total_median_ns": 7165739.0, "total_std_ns": 147023.50148214216, "total_mad_ns": 98159.5, "total_cv": 0.020488519316722853, "total_min_ns": 6885534.0, "total_max_ns": 7620469.0, "total_p5_ns": 6959223.0, "total_p25_ns": 7074203.0, "total_p50_ns": 7165739.0, "total_p75_ns": 7268535.0, "total_p95_ns": 7412694.65, "total_p99_ns": 7520430.509999999, "total_ci_low_ns": 7144980.8475, "total_ci_high_ns": 7208516.3396875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 67.4303190088483}, {"serializer": "fast-json-stringify", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "6.4.0", "avg_time_ser_ns": 304077.47826086957, "avg_time_deser_ns": 159581.4239130435, "avg_time_total_ns": 463658.902173913, "median_size_bytes": 65958.0, "avg_ops_per_sec": 2156.7578996356933, "min_ops_per_sec": 1658.0393353251914, "max_ops_per_sec": 2733.689441944637, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 304077.47826086957, "ser_median_ns": 298505.0, "ser_std_ns": 43259.275653118486, "ser_mad_ns": 31161.5, "ser_cv": 0.14226399107403193, "ser_min_ns": 221218.0, "ser_max_ns": 431705.0, "ser_p5_ns": 246282.6, "ser_p25_ns": 270158.5, "ser_p50_ns": 298505.0, "ser_p75_ns": 336083.5, "ser_p95_ns": 373965.75, "ser_p99_ns": 410531.12000000005, "ser_ci_low_ns": 295617.5864130435, "ser_ci_high_ns": 312847.72092391306, "deser_mean_ns": 159581.4239130435, "deser_median_ns": 158088.5, "deser_std_ns": 15078.86105912184, "deser_mad_ns": 11233.0, "deser_cv": 0.0944900771617276, "deser_min_ns": 140246.0, "deser_max_ns": 199957.0, "deser_p5_ns": 141401.45, "deser_p25_ns": 147380.25, "deser_p50_ns": 158088.5, "deser_p75_ns": 169839.25, "deser_p95_ns": 190858.25, "deser_p99_ns": 192860.82000000004, "deser_ci_low_ns": 156437.77173913043, "deser_ci_high_ns": 162699.39375000002, "total_mean_ns": 463658.902173913, "total_median_ns": 453263.5, "total_std_ns": 52722.79036539513, "total_mad_ns": 35977.5, "total_cv": 0.11371029461140256, "total_min_ns": 365806.0, "total_max_ns": 603122.0, "total_p5_ns": 390591.6, "total_p25_ns": 423390.0, "total_p50_ns": 453263.5, "total_p75_ns": 508229.25, "total_p95_ns": 549553.05, "total_p99_ns": 583810.8900000001, "total_ci_low_ns": 453136.4804347826, "total_ci_high_ns": 474417.5532608695, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.644068249051521}, {"serializer": "devalue", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "5.8.1", "avg_time_ser_ns": 951250.0, "avg_time_deser_ns": 288021.0543478261, "avg_time_total_ns": 1239271.0543478262, "median_size_bytes": 84353.0, "avg_ops_per_sec": 806.9259719184323, "min_ops_per_sec": 662.8157074066341, "max_ops_per_sec": 921.2539740593306, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 951250.0, "ser_median_ns": 928725.5, "ser_std_ns": 87565.48018671325, "ser_mad_ns": 44321.5, "ser_cv": 0.09205306721336479, "ser_min_ns": 825483.0, "ser_max_ns": 1198033.0, "ser_p5_ns": 846505.45, "ser_p25_ns": 888000.25, "ser_p50_ns": 928725.5, "ser_p75_ns": 997853.75, "ser_p95_ns": 1136529.75, "ser_p99_ns": 1171289.9200000002, "ser_ci_low_ns": 934258.9013586957, "ser_ci_high_ns": 969366.5027173912, "deser_mean_ns": 288021.0543478261, "deser_median_ns": 283257.0, "deser_std_ns": 20775.793760038418, "deser_mad_ns": 12988.5, "deser_cv": 0.07213289947528875, "deser_min_ns": 256765.0, "deser_max_ns": 343423.0, "deser_p5_ns": 263250.55, "deser_p25_ns": 273002.0, "deser_p50_ns": 283257.0, "deser_p75_ns": 298255.5, "deser_p95_ns": 329443.95, "deser_p99_ns": 340456.4, "deser_ci_low_ns": 283997.1519021739, "deser_ci_high_ns": 292287.0100543478, "total_mean_ns": 1239271.0543478262, "total_median_ns": 1213962.5, "total_std_ns": 95680.77346157796, "total_mad_ns": 57688.0, "total_cv": 0.07720730111939114, "total_min_ns": 1085477.0, "total_max_ns": 1508715.0, "total_p5_ns": 1130687.35, "total_p25_ns": 1166549.0, "total_p50_ns": 1213962.5, "total_p75_ns": 1284576.0, "total_p95_ns": 1421414.6, "total_p99_ns": 1467018.8, "total_ci_low_ns": 1219404.2065217393, "total_ci_high_ns": 1259421.3366847825, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.79356061787069}, {"serializer": "flatbuffers", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "24.12.23", "avg_time_ser_ns": 279586.93333333335, "avg_time_deser_ns": 162651.9111111111, "avg_time_total_ns": 442238.84444444446, "median_size_bytes": 36092.0, "avg_ops_per_sec": 2261.221538004501, "min_ops_per_sec": 1676.9969679894818, "max_ops_per_sec": 2788.8168444537405, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 279586.93333333335, "ser_median_ns": 278147.5, "ser_std_ns": 37379.8593707865, "ser_mad_ns": 23258.5, "ser_cv": 0.13369673226545578, "ser_min_ns": 219205.0, "ser_max_ns": 393156.0, "ser_p5_ns": 227338.2, "ser_p25_ns": 247073.75, "ser_p50_ns": 278147.5, "ser_p75_ns": 300145.5, "ser_p95_ns": 356616.55, "ser_p99_ns": 376477.39999999997, "ser_ci_low_ns": 272008.2372222222, "ser_ci_high_ns": 287382.58666666667, "deser_mean_ns": 162651.9111111111, "deser_median_ns": 154820.5, "deser_std_ns": 23886.35994752176, "deser_mad_ns": 11400.5, "deser_cv": 0.1468556980631138, "deser_min_ns": 136884.0, "deser_max_ns": 226445.0, "deser_p5_ns": 140630.65, "deser_p25_ns": 144835.0, "deser_p50_ns": 154820.5, "deser_p75_ns": 178071.75, "deser_p95_ns": 216951.8, "deser_p99_ns": 224289.42, "deser_ci_low_ns": 157717.12305555557, "deser_ci_high_ns": 167619.39277777777, "total_mean_ns": 442238.84444444446, "total_median_ns": 441384.5, "total_std_ns": 53243.48279133148, "total_mad_ns": 39939.0, "total_cv": 0.12039531004613076, "total_min_ns": 358575.0, "total_max_ns": 596304.0, "total_p5_ns": 373888.35, "total_p25_ns": 395656.25, "total_p50_ns": 441384.5, "total_p75_ns": 474822.75, "total_p95_ns": 531707.2999999999, "total_p99_ns": 582297.1799999999, "total_ci_low_ns": 431366.3902777778, "total_ci_high_ns": 453489.04888888885, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "json-pack-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.056007036772208}, {"serializer": "sia", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "2.3.0", "avg_time_ser_ns": 10049.42857142857, "avg_time_deser_ns": 4046.6071428571427, "avg_time_total_ns": 14096.035714285714, "median_size_bytes": 483.0, "avg_ops_per_sec": 70941.93149543059, "min_ops_per_sec": 64143.68184733804, "max_ops_per_sec": 78591.63784973278, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 10049.42857142857, "ser_median_ns": 9917.0, "ser_std_ns": 601.986836619369, "ser_mad_ns": 337.0, "ser_cv": 0.059902593698797135, "ser_min_ns": 8931.0, "ser_max_ns": 11516.0, "ser_p5_ns": 9190.1, "ser_p25_ns": 9633.0, "ser_p50_ns": 9917.0, "ser_p75_ns": 10410.25, "ser_p95_ns": 11249.35, "ser_p99_ns": 11436.32, "ser_ci_low_ns": 9925.534226190475, "ser_ci_high_ns": 10179.49255952381, "deser_mean_ns": 4046.6071428571427, "deser_median_ns": 4039.5, "deser_std_ns": 110.47967897508201, "deser_mad_ns": 69.5, "deser_cv": 0.027301804962731532, "deser_min_ns": 3793.0, "deser_max_ns": 4371.0, "deser_p5_ns": 3883.15, "deser_p25_ns": 3979.25, "deser_p50_ns": 4039.5, "deser_p75_ns": 4109.0, "deser_p95_ns": 4246.1, "deser_p99_ns": 4273.89, "deser_ci_low_ns": 4022.9276785714287, "deser_ci_high_ns": 4069.525, "total_mean_ns": 14096.035714285714, "total_median_ns": 13951.0, "total_std_ns": 659.2246348484331, "total_mad_ns": 393.5, "total_cv": 0.04676666888551778, "total_min_ns": 12724.0, "total_max_ns": 15590.0, "total_p5_ns": 13197.65, "total_p25_ns": 13606.0, "total_p50_ns": 13951.0, "total_p75_ns": 14464.75, "total_p95_ns": 15333.55, "total_p99_ns": 15521.94, "total_ci_low_ns": 13948.267559523809, "total_ci_high_ns": 14238.093452380952, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.833705675332718}, {"serializer": "protobuf-es", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "2.12.1", "avg_time_ser_ns": 16136.7125, "avg_time_deser_ns": 8862.9625, "avg_time_total_ns": 24999.675, "median_size_bytes": 368.0, "avg_ops_per_sec": 40000.52000676009, "min_ops_per_sec": 34033.28455229214, "max_ops_per_sec": 47092.064987049685, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 16136.7125, "ser_median_ns": 16106.0, "ser_std_ns": 958.1766993532791, "ser_mad_ns": 569.5, "ser_cv": 0.05937868071661307, "ser_min_ns": 13932.0, "ser_max_ns": 18931.0, "ser_p5_ns": 14460.0, "ser_p25_ns": 15657.25, "ser_p50_ns": 16106.0, "ser_p75_ns": 16795.25, "ser_p95_ns": 17617.15, "ser_p99_ns": 18374.049999999996, "ser_ci_low_ns": 15928.634375, "ser_ci_high_ns": 16350.250625, "deser_mean_ns": 8862.9625, "deser_median_ns": 8846.5, "deser_std_ns": 707.3891637250999, "deser_mad_ns": 466.5, "deser_cv": 0.07981407613144025, "deser_min_ns": 7083.0, "deser_max_ns": 10950.0, "deser_p5_ns": 7788.15, "deser_p25_ns": 8421.0, "deser_p50_ns": 8846.5, "deser_p75_ns": 9332.75, "deser_p95_ns": 9881.45, "deser_p99_ns": 10556.579999999996, "deser_ci_low_ns": 8716.923125, "deser_ci_high_ns": 9023.637499999999, "total_mean_ns": 24999.675, "total_median_ns": 25118.0, "total_std_ns": 1543.8214855072863, "total_mad_ns": 947.5, "total_cv": 0.06175366221790029, "total_min_ns": 21235.0, "total_max_ns": 29383.0, "total_p5_ns": 22074.35, "total_p25_ns": 24190.75, "total_p50_ns": 25118.0, "total_p75_ns": 25950.0, "total_p95_ns": 26978.25, "total_p99_ns": 28415.249999999993, "total_ci_low_ns": 24651.720625, "total_ci_high_ns": 25343.548437499998, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.486277970832774}, {"serializer": "simdjson-parse+JSON.stringify", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "0.9.2", "avg_time_ser_ns": 1617.0337078651685, "avg_time_deser_ns": 9702.033707865168, "avg_time_total_ns": 11319.067415730337, "median_size_bytes": 411.0, "avg_ops_per_sec": 88346.50093260156, "min_ops_per_sec": 70353.17292809905, "max_ops_per_sec": 116795.141322121, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 1617.0337078651685, "ser_median_ns": 1456.0, "ser_std_ns": 480.235582563349, "ser_mad_ns": 241.0, "ser_cv": 0.2969855113270106, "ser_min_ns": 1003.0, "ser_max_ns": 3021.0, "ser_p5_ns": 1052.4, "ser_p25_ns": 1256.0, "ser_p50_ns": 1456.0, "ser_p75_ns": 1885.0, "ser_p95_ns": 2590.7999999999993, "ser_p99_ns": 2957.6400000000003, "ser_ci_low_ns": 1517.7946629213482, "ser_ci_high_ns": 1723.5601123595504, "deser_mean_ns": 9702.033707865168, "deser_median_ns": 9585.0, "deser_std_ns": 1002.0371460343606, "deser_mad_ns": 545.0, "deser_cv": 0.10328114457302257, "deser_min_ns": 7242.0, "deser_max_ns": 12249.0, "deser_p5_ns": 7993.2, "deser_p25_ns": 9215.0, "deser_p50_ns": 9585.0, "deser_p75_ns": 10227.0, "deser_p95_ns": 11431.6, "deser_p99_ns": 12214.68, "deser_ci_low_ns": 9495.614325842696, "deser_ci_high_ns": 9904.93595505618, "total_mean_ns": 11319.067415730337, "total_median_ns": 11186.0, "total_std_ns": 1158.4411429878987, "total_mad_ns": 587.0, "total_cv": 0.1023442215193444, "total_min_ns": 8562.0, "total_max_ns": 14214.0, "total_p5_ns": 9444.0, "total_p25_ns": 10725.0, "total_p50_ns": 11186.0, "total_p75_ns": 11972.0, "total_p95_ns": 13502.599999999999, "total_p99_ns": 13956.160000000002, "total_ci_low_ns": 11084.162921348316, "total_ci_high_ns": 11572.296348314607, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.638220346152659}, {"serializer": "v8-serializer", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "v8-13.6.233.17-node.48", "avg_time_ser_ns": 4520.607594936709, "avg_time_deser_ns": 3601.772151898734, "avg_time_total_ns": 8122.379746835443, "median_size_bytes": 385.0, "avg_ops_per_sec": 123116.6272901251, "min_ops_per_sec": 94849.66328369534, "max_ops_per_sec": 184263.86585590566, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 4520.607594936709, "ser_median_ns": 4613.0, "ser_std_ns": 762.7392170820318, "ser_mad_ns": 444.0, "ser_cv": 0.1687249337757905, "ser_min_ns": 2762.0, "ser_max_ns": 6071.0, "ser_p5_ns": 3034.7, "ser_p25_ns": 4173.5, "ser_p50_ns": 4613.0, "ser_p75_ns": 5026.0, "ser_p95_ns": 5568.799999999999, "ser_p99_ns": 5990.66, "ser_ci_low_ns": 4354.085759493671, "ser_ci_high_ns": 4685.114556962025, "deser_mean_ns": 3601.772151898734, "deser_median_ns": 3613.0, "deser_std_ns": 398.2588048302224, "deser_mad_ns": 227.0, "deser_cv": 0.11057301462566799, "deser_min_ns": 2590.0, "deser_max_ns": 4547.0, "deser_p5_ns": 2807.2, "deser_p25_ns": 3404.0, "deser_p50_ns": 3613.0, "deser_p75_ns": 3864.0, "deser_p95_ns": 4186.2, "deser_p99_ns": 4488.5, "deser_ci_low_ns": 3512.0727848101264, "deser_ci_high_ns": 3690.8132911392404, "total_mean_ns": 8122.379746835443, "total_median_ns": 8262.0, "total_std_ns": 1130.4210958503584, "total_mad_ns": 692.0, "total_cv": 0.13917363273870337, "total_min_ns": 5427.0, "total_max_ns": 10543.0, "total_p5_ns": 5960.6, "total_p25_ns": 7549.0, "total_p50_ns": 8262.0, "total_p75_ns": 8882.0, "total_p95_ns": 9635.599999999999, "total_p99_ns": 10521.16, "total_ci_low_ns": 7873.752215189874, "total_ci_high_ns": 8364.688607594937, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.9983307831409097, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.593353905138095}, {"serializer": "flatbuffers", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "24.12.23", "avg_time_ser_ns": 14521.051282051281, "avg_time_deser_ns": 5614.5, "avg_time_total_ns": 20135.55128205128, "median_size_bytes": 660.0, "avg_ops_per_sec": 49663.40310192522, "min_ops_per_sec": 40612.4355277586, "max_ops_per_sec": 58837.37349964698, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 14521.051282051281, "ser_median_ns": 14579.0, "ser_std_ns": 1120.869964739656, "ser_mad_ns": 695.0, "ser_cv": 0.07718931246562742, "ser_min_ns": 12004.0, "ser_max_ns": 18094.0, "ser_p5_ns": 12636.55, "ser_p25_ns": 13758.25, "ser_p50_ns": 14579.0, "ser_p75_ns": 15167.75, "ser_p95_ns": 15981.099999999997, "ser_p99_ns": 17074.520000000004, "ser_ci_low_ns": 14263.652243589744, "ser_ci_high_ns": 14784.905769230769, "deser_mean_ns": 5614.5, "deser_median_ns": 5574.5, "deser_std_ns": 384.49004006487723, "deser_mad_ns": 213.5, "deser_cv": 0.06848161725262752, "deser_min_ns": 4763.0, "deser_max_ns": 6729.0, "deser_p5_ns": 4980.45, "deser_p25_ns": 5407.75, "deser_p50_ns": 5574.5, "deser_p75_ns": 5822.75, "deser_p95_ns": 6373.449999999998, "deser_p99_ns": 6676.64, "deser_ci_low_ns": 5533.535897435898, "deser_ci_high_ns": 5700.400641025641, "total_mean_ns": 20135.55128205128, "total_median_ns": 20274.0, "total_std_ns": 1375.4212166860098, "total_mad_ns": 900.5, "total_cv": 0.06830809831921775, "total_min_ns": 16996.0, "total_max_ns": 24623.0, "total_p5_ns": 17829.95, "total_p25_ns": 19318.0, "total_p50_ns": 20274.0, "total_p75_ns": 21058.5, "total_p95_ns": 22022.75, "total_p99_ns": 23166.160000000007, "total_ci_low_ns": 19810.597115384615, "total_ci_high_ns": 20448.41314102564, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.74232030333439}, {"serializer": "fast-json-stringify", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "6.4.0", "avg_time_ser_ns": 4245.868131868132, "avg_time_deser_ns": 2003.5494505494505, "avg_time_total_ns": 6249.417582417583, "median_size_bytes": 411.0, "avg_ops_per_sec": 160014.91127964453, "min_ops_per_sec": 110643.94777605665, "max_ops_per_sec": 244200.2442002442, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 4245.868131868132, "ser_median_ns": 4249.0, "ser_std_ns": 817.1128333452991, "ser_mad_ns": 615.0, "ser_cv": 0.19244894282333236, "ser_min_ns": 2617.0, "ser_max_ns": 6415.0, "ser_p5_ns": 3095.0, "ser_p25_ns": 3581.5, "ser_p50_ns": 4249.0, "ser_p75_ns": 4781.0, "ser_p95_ns": 5734.0, "ser_p99_ns": 6088.299999999998, "ser_ci_low_ns": 4084.4395604395604, "ser_ci_high_ns": 4427.407142857143, "deser_mean_ns": 2003.5494505494505, "deser_median_ns": 1853.0, "deser_std_ns": 462.3417990990423, "deser_mad_ns": 275.0, "deser_cv": 0.230761361528786, "deser_min_ns": 1421.0, "deser_max_ns": 3373.0, "deser_p5_ns": 1484.5, "deser_p25_ns": 1625.5, "deser_p50_ns": 1853.0, "deser_p75_ns": 2263.0, "deser_p95_ns": 2937.0, "deser_p99_ns": 3346.8999999999996, "deser_ci_low_ns": 1913.1266483516483, "deser_ci_high_ns": 2099.7563186813186, "total_mean_ns": 6249.417582417583, "total_median_ns": 6191.0, "total_std_ns": 1041.4700941557358, "total_mad_ns": 781.0, "total_cv": 0.16665074471673308, "total_min_ns": 4095.0, "total_max_ns": 9038.0, "total_p5_ns": 4721.5, "total_p25_ns": 5372.5, "total_p50_ns": 6191.0, "total_p75_ns": 6946.5, "total_p95_ns": 7996.5, "total_p99_ns": 8466.499999999996, "total_ci_low_ns": 6035.8843406593405, "total_ci_high_ns": 6456.791208791208, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.9519381717183915, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.8117823374697855}, {"serializer": "json-pack-msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "18.28.0", "avg_time_ser_ns": 2404.9756097560976, "avg_time_deser_ns": 2762.951219512195, "avg_time_total_ns": 5167.926829268293, "median_size_bytes": 368.0, "avg_ops_per_sec": 193501.1916841683, "min_ops_per_sec": 158755.35799333226, "max_ops_per_sec": 247954.37639474336, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 2404.9756097560976, "ser_median_ns": 2407.0, "ser_std_ns": 209.7883692953423, "ser_mad_ns": 144.5, "ser_cv": 0.0872309758337292, "ser_min_ns": 1970.0, "ser_max_ns": 2850.0, "ser_p5_ns": 2057.2, "ser_p25_ns": 2265.0, "ser_p50_ns": 2407.0, "ser_p75_ns": 2551.75, "ser_p95_ns": 2743.9, "ser_p99_ns": 2807.88, "ser_ci_low_ns": 2363.116463414634, "ser_ci_high_ns": 2448.642987804878, "deser_mean_ns": 2762.951219512195, "deser_median_ns": 2791.0, "deser_std_ns": 344.0554040381827, "deser_mad_ns": 239.0, "deser_cv": 0.12452460311584017, "deser_min_ns": 1996.0, "deser_max_ns": 3527.0, "deser_p5_ns": 2156.05, "deser_p25_ns": 2524.0, "deser_p50_ns": 2791.0, "deser_p75_ns": 3008.75, "deser_p95_ns": 3319.15, "deser_p99_ns": 3441.14, "deser_ci_low_ns": 2693.6768292682927, "deser_ci_high_ns": 2839.4048780487806, "total_mean_ns": 5167.926829268293, "total_median_ns": 5212.0, "total_std_ns": 532.3270780607877, "total_mad_ns": 342.5, "total_cv": 0.1030059239705137, "total_min_ns": 4033.0, "total_max_ns": 6299.0, "total_p5_ns": 4187.0, "total_p25_ns": 4847.25, "total_p50_ns": 5212.0, "total_p75_ns": 5504.0, "total_p95_ns": 6004.5, "total_p99_ns": 6220.429999999999, "total_ci_low_ns": 5057.4875, "total_ci_high_ns": 5291.810670731707, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.8554006968641115, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.2268391403622902}, {"serializer": "bebop", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "3.2.3", "avg_time_ser_ns": 3123.574712643678, "avg_time_deser_ns": 3137.0689655172414, "avg_time_total_ns": 6260.64367816092, "median_size_bytes": 483.0, "avg_ops_per_sec": 159727.98507736708, "min_ops_per_sec": 131804.4022670357, "max_ops_per_sec": 193423.59767891682, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 3123.574712643678, "ser_median_ns": 3083.0, "ser_std_ns": 285.9379763687544, "ser_mad_ns": 175.0, "ser_cv": 0.09154190396385527, "ser_min_ns": 2461.0, "ser_max_ns": 3847.0, "ser_p5_ns": 2670.9, "ser_p25_ns": 2961.5, "ser_p50_ns": 3083.0, "ser_p75_ns": 3278.0, "ser_p95_ns": 3647.2000000000003, "ser_p99_ns": 3807.44, "ser_ci_low_ns": 3066.1804597701152, "ser_ci_high_ns": 3184.1201149425287, "deser_mean_ns": 3137.0689655172414, "deser_median_ns": 3169.0, "deser_std_ns": 242.2130905524388, "deser_mad_ns": 157.0, "deser_cv": 0.077209998637216, "deser_min_ns": 2659.0, "deser_max_ns": 3854.0, "deser_p5_ns": 2763.8, "deser_p25_ns": 2941.0, "deser_p50_ns": 3169.0, "deser_p75_ns": 3292.5, "deser_p95_ns": 3477.3, "deser_p99_ns": 3728.44, "deser_ci_low_ns": 3085.0566091954024, "deser_ci_high_ns": 3188.2008620689658, "total_mean_ns": 6260.64367816092, "total_median_ns": 6257.0, "total_std_ns": 484.43851403866336, "total_mad_ns": 308.0, "total_cv": 0.07737838774126951, "total_min_ns": 5170.0, "total_max_ns": 7587.0, "total_p5_ns": 5482.1, "total_p25_ns": 5933.0, "total_p50_ns": 6257.0, "total_p75_ns": 6491.5, "total_p95_ns": 7102.8, "total_p99_ns": 7232.68, "total_ci_low_ns": 6163.466666666666, "total_ci_high_ns": 6361.393965517242, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.988884678539851, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.8795121238563626}, {"serializer": "avsc", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "5.7.9", "avg_time_ser_ns": 5916.176470588235, "avg_time_deser_ns": 5157.635294117647, "avg_time_total_ns": 11073.811764705883, "median_size_bytes": 338.0, "avg_ops_per_sec": 90303.14233687535, "min_ops_per_sec": 70155.74575557739, "max_ops_per_sec": 112625.29564140106, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 5916.176470588235, "ser_median_ns": 5673.0, "ser_std_ns": 906.4679514791593, "ser_mad_ns": 426.0, "ser_cv": 0.15321854511703414, "ser_min_ns": 4502.0, "ser_max_ns": 8392.0, "ser_p5_ns": 4937.8, "ser_p25_ns": 5325.0, "ser_p50_ns": 5673.0, "ser_p75_ns": 6245.0, "ser_p95_ns": 8047.8, "ser_p99_ns": 8298.76, "ser_ci_low_ns": 5719.655000000001, "ser_ci_high_ns": 6114.925882352941, "deser_mean_ns": 5157.635294117647, "deser_median_ns": 5134.0, "deser_std_ns": 342.7766469464873, "deser_mad_ns": 204.0, "deser_cv": 0.0664600398049526, "deser_min_ns": 4377.0, "deser_max_ns": 6017.0, "deser_p5_ns": 4612.6, "deser_p25_ns": 4983.0, "deser_p50_ns": 5134.0, "deser_p75_ns": 5367.0, "deser_p95_ns": 5710.6, "deser_p99_ns": 5989.28, "deser_ci_low_ns": 5079.843529411765, "deser_ci_high_ns": 5228.161764705882, "total_mean_ns": 11073.811764705883, "total_median_ns": 10781.0, "total_std_ns": 1162.3642316429052, "total_mad_ns": 579.0, "total_cv": 0.10496514265734201, "total_min_ns": 8879.0, "total_max_ns": 14254.0, "total_p5_ns": 9616.8, "total_p25_ns": 10377.0, "total_p50_ns": 10781.0, "total_p75_ns": 11570.0, "total_p95_ns": 13568.6, "total_p99_ns": 14243.92, "total_ci_low_ns": 10825.17205882353, "total_ci_high_ns": 11332.759999999998, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.40654383281526}, {"serializer": "cbor-x", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "1.6.4", "avg_time_ser_ns": 3764.4933333333333, "avg_time_deser_ns": 3045.3733333333334, "avg_time_total_ns": 6809.866666666667, "median_size_bytes": 352.0, "avg_ops_per_sec": 146845.75322081684, "min_ops_per_sec": 110509.44855785169, "max_ops_per_sec": 212539.85122210413, "runs": 75, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 24, "ser_mean_ns": 3764.4933333333333, "ser_median_ns": 3779.0, "ser_std_ns": 453.8526482310159, "ser_mad_ns": 322.0, "ser_cv": 0.12056141638299689, "ser_min_ns": 2508.0, "ser_max_ns": 5525.0, "ser_p5_ns": 3187.7, "ser_p25_ns": 3441.5, "ser_p50_ns": 3779.0, "ser_p75_ns": 4070.5, "ser_p95_ns": 4370.5, "ser_p99_ns": 4860.480000000005, "ser_ci_low_ns": 3669.558, "ser_ci_high_ns": 3869.0899999999997, "deser_mean_ns": 3045.3733333333334, "deser_median_ns": 3052.0, "deser_std_ns": 347.86902526488143, "deser_mad_ns": 227.0, "deser_cv": 0.11422869618554093, "deser_min_ns": 2197.0, "deser_max_ns": 3934.0, "deser_p5_ns": 2441.2, "deser_p25_ns": 2821.5, "deser_p50_ns": 3052.0, "deser_p75_ns": 3265.0, "deser_p95_ns": 3600.2999999999997, "deser_p99_ns": 3908.84, "deser_ci_low_ns": 2967.053, "deser_ci_high_ns": 3123.484, "total_mean_ns": 6809.866666666667, "total_median_ns": 6866.0, "total_std_ns": 742.6198389655539, "total_mad_ns": 530.0, "total_cv": 0.10905056960961847, "total_min_ns": 4705.0, "total_max_ns": 9049.0, "total_p5_ns": 5631.0, "total_p25_ns": 6317.0, "total_p50_ns": 6866.0, "total_p75_ns": 7302.0, "total_p95_ns": 7878.9, "total_p99_ns": 8283.100000000006, "total_ci_low_ns": 6632.864666666666, "total_ci_high_ns": 6979.531666666666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.9920879120879121, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.038375753857422}, {"serializer": "JSON.stringify", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "node-24.15.0", "avg_time_ser_ns": 1588.098901098901, "avg_time_deser_ns": 1994.1538461538462, "avg_time_total_ns": 3582.252747252747, "median_size_bytes": 411.0, "avg_ops_per_sec": 279153.9488013252, "min_ops_per_sec": 166500.1665001665, "max_ops_per_sec": 391236.3067292645, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 1588.098901098901, "ser_median_ns": 1400.0, "ser_std_ns": 451.01966093989137, "ser_mad_ns": 260.0, "ser_cv": 0.2839997311425653, "ser_min_ns": 1052.0, "ser_max_ns": 3046.0, "ser_p5_ns": 1096.0, "ser_p25_ns": 1226.5, "ser_p50_ns": 1400.0, "ser_p75_ns": 1930.0, "ser_p95_ns": 2434.5, "ser_p99_ns": 2640.0999999999976, "ser_ci_low_ns": 1502.3054945054946, "ser_ci_high_ns": 1677.3656593406592, "deser_mean_ns": 1994.1538461538462, "deser_median_ns": 1779.0, "deser_std_ns": 493.9506930650945, "deser_mad_ns": 254.0, "deser_cv": 0.24769939090596468, "deser_min_ns": 1355.0, "deser_max_ns": 3260.0, "deser_p5_ns": 1469.5, "deser_p25_ns": 1621.0, "deser_p50_ns": 1779.0, "deser_p75_ns": 2243.0, "deser_p95_ns": 2986.0, "deser_p99_ns": 3210.4999999999995, "deser_ci_low_ns": 1896.7903846153847, "deser_ci_high_ns": 2094.412912087912, "total_mean_ns": 3582.252747252747, "total_median_ns": 3368.0, "total_std_ns": 836.6086911308668, "total_mad_ns": 569.0, "total_cv": 0.23354261973068968, "total_min_ns": 2556.0, "total_max_ns": 6006.0, "total_p5_ns": 2612.0, "total_p25_ns": 2902.5, "total_p50_ns": 3368.0, "total_p75_ns": 4171.5, "total_p95_ns": 5019.5, "total_p99_ns": 5788.199999999999, "total_ci_low_ns": 3422.1942307692307, "total_ci_high_ns": 3759.1991758241757, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "cbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "9.0.2", "avg_time_ser_ns": 24236.67816091954, "avg_time_deser_ns": 19293.94252873563, "avg_time_total_ns": 43530.620689655174, "median_size_bytes": 345.0, "avg_ops_per_sec": 22972.33497149846, "min_ops_per_sec": 19435.212718403203, "max_ops_per_sec": 30164.092664092663, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 24236.67816091954, "ser_median_ns": 23884.0, "ser_std_ns": 2852.488821469864, "ser_mad_ns": 1895.0, "ser_cv": 0.1176930601846817, "ser_min_ns": 16991.0, "ser_max_ns": 30592.0, "ser_p5_ns": 20100.9, "ser_p25_ns": 22185.0, "ser_p50_ns": 23884.0, "ser_p75_ns": 25990.5, "ser_p95_ns": 29547.9, "ser_p99_ns": 30241.98, "ser_ci_low_ns": 23623.194252873564, "ser_ci_high_ns": 24839.761781609195, "deser_mean_ns": 19293.94252873563, "deser_median_ns": 19150.0, "deser_std_ns": 1314.343592084656, "deser_mad_ns": 851.0, "deser_cv": 0.06812208495630817, "deser_min_ns": 16161.0, "deser_max_ns": 23244.0, "deser_p5_ns": 17486.4, "deser_p25_ns": 18407.0, "deser_p50_ns": 19150.0, "deser_p75_ns": 20112.0, "deser_p95_ns": 21770.7, "deser_p99_ns": 22896.56, "deser_ci_low_ns": 19021.03103448276, "deser_ci_high_ns": 19564.56408045977, "total_mean_ns": 43530.620689655174, "total_median_ns": 43046.0, "total_std_ns": 3822.869807324467, "total_mad_ns": 2577.0, "total_cv": 0.08782024576628543, "total_min_ns": 33152.0, "total_max_ns": 51453.0, "total_p5_ns": 37646.8, "total_p25_ns": 40742.0, "total_p50_ns": 43046.0, "total_p75_ns": 46354.5, "total_p95_ns": 49685.5, "total_p99_ns": 50470.020000000004, "total_ci_low_ns": 42767.01752873563, "total_ci_high_ns": 44349.0525862069, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.525795384096783}, {"serializer": "msgpackr", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "1.12.1", "avg_time_ser_ns": 2482.4615384615386, "avg_time_deser_ns": 3010.5824175824177, "avg_time_total_ns": 5493.043956043956, "median_size_bytes": 348.0, "avg_ops_per_sec": 182048.42488101835, "min_ops_per_sec": 136165.57734204794, "max_ops_per_sec": 282246.6836014677, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 2482.4615384615386, "ser_median_ns": 2502.0, "ser_std_ns": 279.98342441780005, "ser_mad_ns": 176.0, "ser_cv": 0.11278459709442862, "ser_min_ns": 1770.0, "ser_max_ns": 3106.0, "ser_p5_ns": 2040.5, "ser_p25_ns": 2294.5, "ser_p50_ns": 2502.0, "ser_p75_ns": 2668.0, "ser_p95_ns": 2902.0, "ser_p99_ns": 3048.3999999999996, "ser_ci_low_ns": 2426.1719780219782, "ser_ci_high_ns": 2541.287087912088, "deser_mean_ns": 3010.5824175824177, "deser_median_ns": 3073.0, "deser_std_ns": 534.0015827262035, "deser_mad_ns": 342.0, "deser_cv": 0.1773748426907448, "deser_min_ns": 1773.0, "deser_max_ns": 4449.0, "deser_p5_ns": 2124.0, "deser_p25_ns": 2651.0, "deser_p50_ns": 3073.0, "deser_p75_ns": 3311.5, "deser_p95_ns": 3848.5, "deser_p99_ns": 4226.699999999999, "deser_ci_low_ns": 2901.9357142857143, "deser_ci_high_ns": 3121.246978021978, "total_mean_ns": 5493.043956043956, "total_median_ns": 5555.0, "total_std_ns": 776.8046073797439, "total_mad_ns": 506.0, "total_cv": 0.14141605521380024, "total_min_ns": 3543.0, "total_max_ns": 7344.0, "total_p5_ns": 4101.5, "total_p25_ns": 4962.5, "total_p50_ns": 5555.0, "total_p75_ns": 6042.5, "total_p95_ns": 6649.5, "total_p99_ns": 6993.899999999998, "total_ci_low_ns": 5336.244230769231, "total_ci_high_ns": 5649.488461538462, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.8808114961961115, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.357130272288509}, {"serializer": "google-protobuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "3.21.4", "avg_time_ser_ns": 265.7816091954023, "avg_time_deser_ns": 4126.402298850575, "avg_time_total_ns": 4392.183908045977, "median_size_bytes": 368.0, "avg_ops_per_sec": 227677.16947555743, "min_ops_per_sec": 149164.67780429593, "max_ops_per_sec": 343524.56200618343, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 265.7816091954023, "ser_median_ns": 260.0, "ser_std_ns": 45.3583728040027, "ser_mad_ns": 27.0, "ser_cv": 0.17066031371137977, "ser_min_ns": 156.0, "ser_max_ns": 397.0, "ser_p5_ns": 205.6, "ser_p25_ns": 235.5, "ser_p50_ns": 260.0, "ser_p75_ns": 293.0, "ser_p95_ns": 349.0, "ser_p99_ns": 373.78000000000003, "ser_ci_low_ns": 256.64224137931035, "ser_ci_high_ns": 274.9887931034483, "deser_mean_ns": 4126.402298850575, "deser_median_ns": 3877.0, "deser_std_ns": 926.5500960335443, "deser_mad_ns": 306.0, "deser_cv": 0.22454187181207183, "deser_min_ns": 2755.0, "deser_max_ns": 6425.0, "deser_p5_ns": 3111.2, "deser_p25_ns": 3552.5, "deser_p50_ns": 3877.0, "deser_p75_ns": 4177.0, "deser_p95_ns": 6111.1, "deser_p99_ns": 6356.2, "deser_ci_low_ns": 3934.2586206896553, "deser_ci_high_ns": 4331.671551724138, "total_mean_ns": 4392.183908045977, "total_median_ns": 4125.0, "total_std_ns": 939.3839461810538, "total_mad_ns": 307.0, "total_cv": 0.21387627791728173, "total_min_ns": 2911.0, "total_max_ns": 6704.0, "total_p5_ns": 3334.2, "total_p25_ns": 3833.0, "total_p50_ns": 4125.0, "total_p75_ns": 4461.0, "total_p95_ns": 6399.2, "total_p99_ns": 6661.0, "total_ci_low_ns": 4199.362068965517, "total_ci_high_ns": 4597.701149425287, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.4942528735632184, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 0.9078700925937628}, {"serializer": "devalue", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "5.8.1", "avg_time_ser_ns": 9554.615384615385, "avg_time_deser_ns": 3803.912087912088, "avg_time_total_ns": 13358.527472527472, "median_size_bytes": 503.0, "avg_ops_per_sec": 74858.5502448944, "min_ops_per_sec": 59605.41217142517, "max_ops_per_sec": 98990.29895070283, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 9554.615384615385, "ser_median_ns": 9612.0, "ser_std_ns": 993.5612352568554, "ser_mad_ns": 617.0, "ser_cv": 0.1039875699085349, "ser_min_ns": 7381.0, "ser_max_ns": 12073.0, "ser_p5_ns": 7929.0, "ser_p25_ns": 8966.0, "ser_p50_ns": 9612.0, "ser_p75_ns": 10173.5, "ser_p95_ns": 11198.5, "ser_p99_ns": 11623.899999999998, "ser_ci_low_ns": 9361.895604395604, "ser_ci_high_ns": 9756.872527472528, "deser_mean_ns": 3803.912087912088, "deser_median_ns": 3744.0, "deser_std_ns": 549.1507716131973, "deser_mad_ns": 336.0, "deser_cv": 0.1443647379123891, "deser_min_ns": 2721.0, "deser_max_ns": 5488.0, "deser_p5_ns": 3075.5, "deser_p25_ns": 3425.0, "deser_p50_ns": 3744.0, "deser_p75_ns": 4079.0, "deser_p95_ns": 4742.5, "deser_p99_ns": 5073.999999999997, "deser_ci_low_ns": 3691.0159340659343, "deser_ci_high_ns": 3912.0392857142856, "total_mean_ns": 13358.527472527472, "total_median_ns": 13452.0, "total_std_ns": 1343.5633660833862, "total_mad_ns": 856.0, "total_cv": 0.10057720574715262, "total_min_ns": 10102.0, "total_max_ns": 16777.0, "total_p5_ns": 11005.5, "total_p25_ns": 12544.0, "total_p50_ns": 13452.0, "total_p75_ns": 14139.0, "total_p95_ns": 15530.5, "total_p99_ns": 16071.399999999996, "total_ci_low_ns": 13083.765934065934, "total_ci_high_ns": 13623.114835164835, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.69885356611412}, {"serializer": "flexbuffers", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "24.12.23", "avg_time_ser_ns": 178302.0989010989, "avg_time_deser_ns": 21568.527472527472, "avg_time_total_ns": 199870.62637362638, "median_size_bytes": 688.0, "avg_ops_per_sec": 5003.236434205489, "min_ops_per_sec": 2214.2215018621605, "max_ops_per_sec": 16825.66924099406, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 178302.0989010989, "ser_median_ns": 105530.0, "ser_std_ns": 128913.77546295173, "ser_mad_ns": 54875.0, "ser_cv": 0.7230076160486365, "ser_min_ns": 40561.0, "ser_max_ns": 429552.0, "ser_p5_ns": 47239.5, "ser_p25_ns": 82646.5, "ser_p50_ns": 105530.0, "ser_p75_ns": 323413.5, "ser_p95_ns": 370426.5, "ser_p99_ns": 415661.3999999999, "ser_ci_low_ns": 152553.3936813187, "ser_ci_high_ns": 205023.60851648348, "deser_mean_ns": 21568.527472527472, "deser_median_ns": 21544.0, "deser_std_ns": 1209.7611641298765, "deser_mad_ns": 823.0, "deser_cv": 0.05608918669439943, "deser_min_ns": 18872.0, "deser_max_ns": 25003.0, "deser_p5_ns": 19730.0, "deser_p25_ns": 20715.5, "deser_p50_ns": 21544.0, "deser_p75_ns": 22275.5, "deser_p95_ns": 23721.0, "deser_p99_ns": 24742.899999999998, "deser_ci_low_ns": 21325.739285714284, "deser_ci_high_ns": 21822.310714285715, "total_mean_ns": 199870.62637362638, "total_median_ns": 127823.0, "total_std_ns": 129118.36609239588, "total_mad_ns": 56153.0, "total_cv": 0.6460097135585576, "total_min_ns": 59433.0, "total_max_ns": 451626.0, "total_p5_ns": 67856.5, "total_p25_ns": 105178.5, "total_p50_ns": 127823.0, "total_p75_ns": 344586.0, "total_p95_ns": 393135.0, "total_p99_ns": 437892.8999999999, "total_ci_low_ns": 175479.22884615386, "total_ci_high_ns": 226768.71593406593, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.1409009184628083}, {"serializer": "@msgpack/msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "3.1.3", "avg_time_ser_ns": 4235.919540229885, "avg_time_deser_ns": 3638.183908045977, "avg_time_total_ns": 7874.103448275862, "median_size_bytes": 346.0, "avg_ops_per_sec": 126998.58549851323, "min_ops_per_sec": 108412.83607979184, "max_ops_per_sec": 149454.49110745778, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 4235.919540229885, "ser_median_ns": 4220.0, "ser_std_ns": 306.54280851285506, "ser_mad_ns": 199.0, "ser_cv": 0.07236747667218885, "ser_min_ns": 3580.0, "ser_max_ns": 4989.0, "ser_p5_ns": 3767.0, "ser_p25_ns": 4046.0, "ser_p50_ns": 4220.0, "ser_p75_ns": 4441.5, "ser_p95_ns": 4818.900000000001, "ser_p99_ns": 4979.54, "ser_ci_low_ns": 4172.078735632184, "ser_ci_high_ns": 4303.122701149426, "deser_mean_ns": 3638.183908045977, "deser_median_ns": 3626.0, "deser_std_ns": 278.7308666386048, "deser_mad_ns": 177.0, "deser_cv": 0.07661263797637642, "deser_min_ns": 3043.0, "deser_max_ns": 4339.0, "deser_p5_ns": 3181.3, "deser_p25_ns": 3462.5, "deser_p50_ns": 3626.0, "deser_p75_ns": 3815.5, "deser_p95_ns": 4168.700000000001, "deser_p99_ns": 4336.42, "deser_ci_low_ns": 3583.61867816092, "deser_ci_high_ns": 3696.8557471264367, "total_mean_ns": 7874.103448275862, "total_median_ns": 7869.0, "total_std_ns": 499.6895090484564, "total_mad_ns": 315.0, "total_cv": 0.0634598608376005, "total_min_ns": 6691.0, "total_max_ns": 9224.0, "total_p5_ns": 7078.8, "total_p25_ns": 7561.5, "total_p50_ns": 7869.0, "total_p75_ns": 8188.5, "total_p95_ns": 8750.2, "total_p99_ns": 9019.32, "total_ci_low_ns": 7773.077873563218, "total_ci_high_ns": 7984.6152298850575, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.1688439281979575}, {"serializer": "bser", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "2.1.1", "avg_time_ser_ns": 7449.310344827586, "avg_time_deser_ns": 6477.172413793103, "avg_time_total_ns": 13926.48275862069, "median_size_bytes": 421.0, "avg_ops_per_sec": 71805.6394663603, "min_ops_per_sec": 63828.429182357824, "max_ops_per_sec": 87244.80893386844, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 7449.310344827586, "ser_median_ns": 7502.0, "ser_std_ns": 567.9185642232648, "ser_mad_ns": 370.0, "ser_cv": 0.07623773717758958, "ser_min_ns": 6131.0, "ser_max_ns": 8666.0, "ser_p5_ns": 6383.5, "ser_p25_ns": 7131.0, "ser_p50_ns": 7502.0, "ser_p75_ns": 7860.0, "ser_p95_ns": 8284.7, "ser_p99_ns": 8438.960000000001, "ser_ci_low_ns": 7326.502298850575, "ser_ci_high_ns": 7561.847413793103, "deser_mean_ns": 6477.172413793103, "deser_median_ns": 6493.0, "deser_std_ns": 477.11122507295664, "deser_mad_ns": 280.0, "deser_cv": 0.07366041763176644, "deser_min_ns": 5331.0, "deser_max_ns": 7581.0, "deser_p5_ns": 5580.1, "deser_p25_ns": 6233.0, "deser_p50_ns": 6493.0, "deser_p75_ns": 6778.5, "deser_p95_ns": 7254.1, "deser_p99_ns": 7434.8, "deser_ci_low_ns": 6376.750862068965, "deser_ci_high_ns": 6578.859195402299, "total_mean_ns": 13926.48275862069, "total_median_ns": 13996.0, "total_std_ns": 981.9427215577334, "total_mad_ns": 607.0, "total_cv": 0.07050902504079122, "total_min_ns": 11462.0, "total_max_ns": 15667.0, "total_p5_ns": 12085.7, "total_p25_ns": 13515.0, "total_p50_ns": 13996.0, "total_p75_ns": 14604.0, "total_p95_ns": 15301.4, "total_p99_ns": 15624.86, "total_ci_low_ns": 13728.52327586207, "total_ci_high_ns": 14124.552011494254, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.312225483942948}, {"serializer": "protobufjs", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "7.6.5", "avg_time_ser_ns": 5836.393617021276, "avg_time_deser_ns": 5256.68085106383, "avg_time_total_ns": 11093.074468085106, "median_size_bytes": 368.0, "avg_ops_per_sec": 90146.33435275411, "min_ops_per_sec": 45653.76186997809, "max_ops_per_sec": 152835.0909368791, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 5836.393617021276, "ser_median_ns": 4547.5, "ser_std_ns": 2351.3429300258344, "ser_mad_ns": 599.0, "ser_cv": 0.4028760026000252, "ser_min_ns": 3364.0, "ser_max_ns": 14581.0, "ser_p5_ns": 3663.5, "ser_p25_ns": 4087.0, "ser_p50_ns": 4547.5, "ser_p75_ns": 8231.0, "ser_p95_ns": 9546.449999999999, "ser_p99_ns": 11512.929999999977, "ser_ci_low_ns": 5356.733510638298, "ser_ci_high_ns": 6367.187765957447, "deser_mean_ns": 5256.68085106383, "deser_median_ns": 4274.5, "deser_std_ns": 1854.5658983283065, "deser_mad_ns": 671.0, "deser_cv": 0.3528016919560535, "deser_min_ns": 3179.0, "deser_max_ns": 10468.0, "deser_p5_ns": 3495.4, "deser_p25_ns": 3876.75, "deser_p50_ns": 4274.5, "deser_p75_ns": 6822.25, "deser_p95_ns": 8595.499999999998, "deser_p99_ns": 10280.14, "deser_ci_low_ns": 4889.81329787234, "deser_ci_high_ns": 5641.315425531914, "total_mean_ns": 11093.074468085106, "total_median_ns": 8942.5, "total_std_ns": 4047.2869612967957, "total_mad_ns": 1222.5, "total_cv": 0.36484808363460314, "total_min_ns": 6543.0, "total_max_ns": 21904.0, "total_p5_ns": 7189.400000000001, "total_p25_ns": 8055.5, "total_p50_ns": 8942.5, "total_p75_ns": 14928.25, "total_p95_ns": 18670.899999999998, "total_p99_ns": 21026.079999999994, "total_ci_low_ns": 10272.650531914893, "total_ci_high_ns": 11963.85239361702, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.5405231234132177}, {"serializer": "bson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "6.10.4", "avg_time_ser_ns": 7363.891566265061, "avg_time_deser_ns": 4326.6024096385545, "avg_time_total_ns": 11690.493975903615, "median_size_bytes": 599.0, "avg_ops_per_sec": 85539.58473108106, "min_ops_per_sec": 70962.2480840193, "max_ops_per_sec": 110950.84877399312, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 7363.891566265061, "ser_median_ns": 7386.0, "ser_std_ns": 730.7881981379835, "ser_mad_ns": 437.0, "ser_cv": 0.09923940236787553, "ser_min_ns": 5499.0, "ser_max_ns": 9088.0, "ser_p5_ns": 6157.6, "ser_p25_ns": 6961.0, "ser_p50_ns": 7386.0, "ser_p75_ns": 7819.5, "ser_p95_ns": 8347.0, "ser_p99_ns": 8898.579999999998, "ser_ci_low_ns": 7206.129518072289, "ser_ci_high_ns": 7526.439759036145, "deser_mean_ns": 4326.6024096385545, "deser_median_ns": 4322.0, "deser_std_ns": 469.86308176305886, "deser_mad_ns": 302.0, "deser_cv": 0.10859862711589238, "deser_min_ns": 2871.0, "deser_max_ns": 5554.0, "deser_p5_ns": 3682.0, "deser_p25_ns": 3980.0, "deser_p50_ns": 4322.0, "deser_p75_ns": 4580.0, "deser_p95_ns": 4975.7, "deser_p99_ns": 5501.5199999999995, "deser_ci_low_ns": 4224.864759036145, "deser_ci_high_ns": 4426.885240963856, "total_mean_ns": 11690.493975903615, "total_median_ns": 11643.0, "total_std_ns": 1139.7507683645833, "total_mad_ns": 696.0, "total_cv": 0.09749380742283702, "total_min_ns": 9013.0, "total_max_ns": 14092.0, "total_p5_ns": 9799.3, "total_p25_ns": 10973.5, "total_p50_ns": 11643.0, "total_p75_ns": 12390.0, "total_p95_ns": 13472.3, "total_p99_ns": 13789.419999999996, "total_ci_low_ns": 11442.212951807229, "total_ci_high_ns": 11928.803313253013, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.131841412467624}, {"serializer": "flatbuffers", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "24.12.23", "avg_time_ser_ns": 1102676.7692307692, "avg_time_deser_ns": 446922.64835164836, "avg_time_total_ns": 1549599.4175824176, "median_size_bytes": 67012.0, "avg_ops_per_sec": 645.3280690826109, "min_ops_per_sec": 575.6270305243502, "max_ops_per_sec": 700.7246894738539, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 1102676.7692307692, "ser_median_ns": 1093158.0, "ser_std_ns": 56308.365057674826, "ser_mad_ns": 34221.0, "ser_cv": 0.05106515946368918, "ser_min_ns": 1004733.0, "ser_max_ns": 1270266.0, "ser_p5_ns": 1031572.0, "ser_p25_ns": 1064739.5, "ser_p50_ns": 1093158.0, "ser_p75_ns": 1138185.0, "ser_p95_ns": 1214930.5, "ser_p99_ns": 1243929.2999999998, "ser_ci_low_ns": 1091253.9195054944, "ser_ci_high_ns": 1113900.6579670329, "deser_mean_ns": 446922.64835164836, "deser_median_ns": 442805.0, "deser_std_ns": 21401.08198062977, "deser_mad_ns": 13725.0, "deser_cv": 0.04788542728716433, "deser_min_ns": 408681.0, "deser_max_ns": 509579.0, "deser_p5_ns": 420715.5, "deser_p25_ns": 430260.0, "deser_p50_ns": 442805.0, "deser_p75_ns": 459455.0, "deser_p95_ns": 486978.5, "deser_p99_ns": 507005.0, "deser_ci_low_ns": 442836.25384615385, "deser_ci_high_ns": 451616.41318681324, "total_mean_ns": 1549599.4175824176, "total_median_ns": 1537255.0, "total_std_ns": 65015.73569786624, "total_mad_ns": 45093.0, "total_cv": 0.041956479177889396, "total_min_ns": 1427094.0, "total_max_ns": 1737236.0, "total_p5_ns": 1468799.0, "total_p25_ns": 1501357.0, "total_p50_ns": 1537255.0, "total_p75_ns": 1591459.5, "total_p95_ns": 1673045.5, "total_p99_ns": 1715212.0999999999, "total_ci_low_ns": 1536403.9046703298, "total_ci_high_ns": 1563548.7332417583, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "v8-serializer", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.985606012910143}, {"serializer": "bson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "6.10.4", "avg_time_ser_ns": 178401.44318181818, "avg_time_deser_ns": 251701.07954545456, "avg_time_total_ns": 430102.5227272727, "median_size_bytes": 60533.0, "avg_ops_per_sec": 2325.0270508971143, "min_ops_per_sec": 2075.68357449317, "max_ops_per_sec": 2602.1337496747333, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 178401.44318181818, "ser_median_ns": 175852.0, "ser_std_ns": 10498.924138486767, "ser_mad_ns": 6615.5, "ser_cv": 0.05884999555629586, "ser_min_ns": 158069.0, "ser_max_ns": 203293.0, "ser_p5_ns": 164903.5, "ser_p25_ns": 170987.25, "ser_p50_ns": 175852.0, "ser_p75_ns": 185971.5, "ser_p95_ns": 199955.8, "ser_p99_ns": 202832.77, "ser_ci_low_ns": 176276.95426136363, "ser_ci_high_ns": 180720.0963068182, "deser_mean_ns": 251701.07954545456, "deser_median_ns": 246946.0, "deser_std_ns": 13891.621554282023, "deser_mad_ns": 7253.5, "deser_cv": 0.05519094943640614, "deser_min_ns": 226231.0, "deser_max_ns": 289452.0, "deser_p5_ns": 237060.9, "deser_p25_ns": 241315.0, "deser_p50_ns": 246946.0, "deser_p75_ns": 263159.5, "deser_p95_ns": 277620.74999999994, "deser_p99_ns": 284892.32999999996, "deser_ci_low_ns": 248881.7676136364, "deser_ci_high_ns": 254505.2809659091, "total_mean_ns": 430102.5227272727, "total_median_ns": 426015.5, "total_std_ns": 20442.171339658056, "total_mad_ns": 13446.5, "total_cv": 0.04752860134377868, "total_min_ns": 384300.0, "total_max_ns": 481769.0, "total_p5_ns": 404372.4, "total_p25_ns": 414433.75, "total_p50_ns": 426015.5, "total_p75_ns": 444586.25, "total_p95_ns": 467793.25, "total_p99_ns": 473862.43999999994, "total_ci_low_ns": 426129.06221590907, "total_ci_high_ns": 434519.71818181814, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "v8-serializer", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.117147120201837}, {"serializer": "protobuf-es", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "2.12.1", "avg_time_ser_ns": 1415660.6329113925, "avg_time_deser_ns": 608125.1265822785, "avg_time_total_ns": 2023785.759493671, "median_size_bytes": 37330.0, "avg_ops_per_sec": 494.1234492381195, "min_ops_per_sec": 449.766278953142, "max_ops_per_sec": 520.1552351283717, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 1415660.6329113925, "ser_median_ns": 1398883.0, "ser_std_ns": 60785.70567105083, "ser_mad_ns": 34854.0, "ser_cv": 0.04293804903371602, "ser_min_ns": 1327349.0, "ser_max_ns": 1599159.0, "ser_p5_ns": 1340376.6, "ser_p25_ns": 1373350.0, "ser_p50_ns": 1398883.0, "ser_p75_ns": 1445624.0, "ser_p95_ns": 1541631.7999999998, "ser_p99_ns": 1593547.68, "ser_ci_low_ns": 1402631.5284810127, "ser_ci_high_ns": 1428927.7689873418, "deser_mean_ns": 608125.1265822785, "deser_median_ns": 606142.0, "deser_std_ns": 21455.34828928537, "deser_mad_ns": 15494.0, "deser_cv": 0.0352811409222087, "deser_min_ns": 574602.0, "deser_max_ns": 666386.0, "deser_p5_ns": 577721.2, "deser_p25_ns": 590574.0, "deser_p50_ns": 606142.0, "deser_p75_ns": 620082.0, "deser_p95_ns": 646805.2, "deser_p99_ns": 655307.66, "deser_ci_low_ns": 603532.118670886, "deser_ci_high_ns": 613104.2674050633, "total_mean_ns": 2023785.759493671, "total_median_ns": 2008213.0, "total_std_ns": 69476.6483470812, "total_mad_ns": 41647.0, "total_cv": 0.03433004112276365, "total_min_ns": 1922503.0, "total_max_ns": 2223377.0, "total_p5_ns": 1939183.1, "total_p25_ns": 1974202.5, "total_p50_ns": 2008213.0, "total_p75_ns": 2060107.0, "total_p95_ns": 2171570.5, "total_p99_ns": 2214051.32, "total_ci_low_ns": 2008574.382278481, "total_ci_high_ns": 2038484.5028481013, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "v8-serializer", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 36.691186490970594}, {"serializer": "flexbuffers", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "24.12.23", "avg_time_ser_ns": 2419642.1951219514, "avg_time_deser_ns": 1826003.475609756, "avg_time_total_ns": 4245645.6707317075, "median_size_bytes": 49760.0, "avg_ops_per_sec": 235.5354350208073, "min_ops_per_sec": 219.4622647803446, "max_ops_per_sec": 247.1404002142213, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 2419642.1951219514, "ser_median_ns": 2418533.0, "ser_std_ns": 70447.02888554608, "ser_mad_ns": 46232.0, "ser_cv": 0.029114647210058058, "ser_min_ns": 2283461.0, "ser_max_ns": 2648451.0, "ser_p5_ns": 2326297.55, "ser_p25_ns": 2370350.0, "ser_p50_ns": 2418533.0, "ser_p75_ns": 2460945.0, "ser_p95_ns": 2539903.1, "ser_p99_ns": 2589942.27, "ser_ci_low_ns": 2405240.693292683, "ser_ci_high_ns": 2435380.879268293, "deser_mean_ns": 1826003.475609756, "deser_median_ns": 1821908.0, "deser_std_ns": 49871.79380188682, "deser_mad_ns": 32196.0, "deser_cv": 0.02731199281273721, "deser_min_ns": 1730540.0, "deser_max_ns": 1991333.0, "deser_p5_ns": 1759295.9, "deser_p25_ns": 1790626.25, "deser_p50_ns": 1821908.0, "deser_p75_ns": 1856808.0, "deser_p95_ns": 1907746.65, "deser_p99_ns": 1969140.6199999999, "deser_ci_low_ns": 1815234.6746951218, "deser_ci_high_ns": 1836878.4036585365, "total_mean_ns": 4245645.6707317075, "total_median_ns": 4234107.0, "total_std_ns": 98898.13169727338, "total_mad_ns": 64289.0, "total_cv": 0.023294014472062377, "total_min_ns": 4046283.0, "total_max_ns": 4556592.0, "total_p5_ns": 4114052.3, "total_p25_ns": 4169328.0, "total_p50_ns": 4234107.0, "total_p75_ns": 4296432.75, "total_p95_ns": 4413246.2, "total_p99_ns": 4526425.17, "total_ci_low_ns": 4224647.215243903, "total_ci_high_ns": 4267912.870121951, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "v8-serializer", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 57.22606302015238}, {"serializer": "simdjson-parse+JSON.stringify", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "0.9.2", "avg_time_ser_ns": 109111.23655913978, "avg_time_deser_ns": 391052.03225806454, "avg_time_total_ns": 500163.2688172043, "median_size_bytes": 41431.0, "avg_ops_per_sec": 1999.3471379152236, "min_ops_per_sec": 1801.4285328265314, "max_ops_per_sec": 2195.008988561808, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 109111.23655913978, "ser_median_ns": 106619.0, "ser_std_ns": 9625.384625175348, "ser_mad_ns": 5293.0, "ser_cv": 0.08821625461057127, "ser_min_ns": 94277.0, "ser_max_ns": 138770.0, "ser_p5_ns": 97261.8, "ser_p25_ns": 102379.0, "ser_p50_ns": 106619.0, "ser_p75_ns": 115049.0, "ser_p95_ns": 128858.6, "ser_p99_ns": 136609.84, "ser_ci_low_ns": 107193.1491935484, "ser_ci_high_ns": 111062.37741935485, "deser_mean_ns": 391052.03225806454, "deser_median_ns": 391185.0, "deser_std_ns": 18307.978559165433, "deser_mad_ns": 13028.0, "deser_cv": 0.04681724437908959, "deser_min_ns": 356890.0, "deser_max_ns": 439000.0, "deser_p5_ns": 363439.0, "deser_p25_ns": 377021.0, "deser_p50_ns": 391185.0, "deser_p75_ns": 403126.0, "deser_p95_ns": 421428.8, "deser_p99_ns": 429915.92, "deser_ci_low_ns": 387258.38010752684, "deser_ci_high_ns": 394693.563172043, "total_mean_ns": 500163.2688172043, "total_median_ns": 499697.0, "total_std_ns": 22808.948755934915, "total_mad_ns": 16116.0, "total_cv": 0.04560300641403347, "total_min_ns": 455579.0, "total_max_ns": 555115.0, "total_p5_ns": 466092.2, "total_p25_ns": 483222.0, "total_p50_ns": 499697.0, "total_p75_ns": 512976.0, "total_p95_ns": 544318.4, "total_p99_ns": 552022.88, "total_ci_low_ns": 495489.15967741935, "total_ci_high_ns": 504990.1190860215, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "v8-serializer", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.721460138107009}, {"serializer": "JSON.stringify", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "node-24.15.0", "avg_time_ser_ns": 105873.16279069768, "avg_time_deser_ns": 189815.62790697673, "avg_time_total_ns": 295688.79069767444, "median_size_bytes": 41431.0, "avg_ops_per_sec": 3381.934085632773, "min_ops_per_sec": 2501.907704624776, "max_ops_per_sec": 4272.992975199549, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 105873.16279069768, "ser_median_ns": 105882.0, "ser_std_ns": 6277.348647619921, "ser_mad_ns": 4178.0, "ser_cv": 0.059291216793340824, "ser_min_ns": 94676.0, "ser_max_ns": 124345.0, "ser_p5_ns": 97095.25, "ser_p25_ns": 101638.5, "ser_p50_ns": 105882.0, "ser_p75_ns": 110008.0, "ser_p95_ns": 116402.0, "ser_p99_ns": 120314.30000000003, "ser_ci_low_ns": 104629.43517441861, "ser_ci_high_ns": 107211.22325581395, "deser_mean_ns": 189815.62790697673, "deser_median_ns": 183065.5, "deser_std_ns": 34152.65655089582, "deser_mad_ns": 22891.5, "deser_cv": 0.17992541987972177, "deser_min_ns": 137580.0, "deser_max_ns": 285535.0, "deser_p5_ns": 148002.5, "deser_p25_ns": 165401.25, "deser_p50_ns": 183065.5, "deser_p75_ns": 212151.25, "deser_p95_ns": 253650.5, "deser_p99_ns": 280772.45, "deser_ci_low_ns": 182839.18488372094, "deser_ci_high_ns": 197252.60290697674, "total_mean_ns": 295688.79069767444, "total_median_ns": 287360.5, "total_std_ns": 37306.815862084, "total_mad_ns": 25177.0, "total_cv": 0.12616919219040726, "total_min_ns": 234028.0, "total_max_ns": 399695.0, "total_p5_ns": 247128.0, "total_p25_ns": 267284.0, "total_p50_ns": 287360.5, "total_p75_ns": 319565.5, "total_p95_ns": 368498.5, "total_p99_ns": 390402.80000000005, "total_ci_low_ns": 288230.3078488372, "total_ci_high_ns": 303432.8520348837, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "v8-serializer", "effect_vs_fastest_cliffs_delta": 0.9988792378817596, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.182821667363691}, {"serializer": "json-pack-msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "18.28.0", "avg_time_ser_ns": 134250.6103896104, "avg_time_deser_ns": 147508.03896103895, "avg_time_total_ns": 281758.6493506493, "median_size_bytes": 36922.0, "avg_ops_per_sec": 3549.1368314855085, "min_ops_per_sec": 3238.289535467366, "max_ops_per_sec": 3777.504957975257, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 134250.6103896104, "ser_median_ns": 133245.0, "ser_std_ns": 5430.602433761364, "ser_mad_ns": 2768.0, "ser_cv": 0.040451230858475386, "ser_min_ns": 125368.0, "ser_max_ns": 152654.0, "ser_p5_ns": 127366.4, "ser_p25_ns": 130647.0, "ser_p50_ns": 133245.0, "ser_p75_ns": 136166.0, "ser_p95_ns": 144866.6, "ser_p99_ns": 151150.72, "ser_ci_low_ns": 133068.79902597403, "ser_ci_high_ns": 135503.8107142857, "deser_mean_ns": 147508.03896103895, "deser_median_ns": 146611.0, "deser_std_ns": 5704.633154960325, "deser_mad_ns": 3519.0, "deser_cv": 0.038673371262613554, "deser_min_ns": 137224.0, "deser_max_ns": 162168.0, "deser_p5_ns": 139397.2, "deser_p25_ns": 143731.0, "deser_p50_ns": 146611.0, "deser_p75_ns": 150479.0, "deser_p95_ns": 160384.4, "deser_p99_ns": 161410.28, "deser_ci_low_ns": 146303.212987013, "deser_ci_high_ns": 148787.38019480518, "total_mean_ns": 281758.6493506493, "total_median_ns": 280132.0, "total_std_ns": 8893.067065751473, "total_mad_ns": 4971.0, "total_cv": 0.03156271186792931, "total_min_ns": 264725.0, "total_max_ns": 308805.0, "total_p5_ns": 270072.6, "total_p25_ns": 275794.0, "total_p50_ns": 280132.0, "total_p75_ns": 286702.0, "total_p95_ns": 297462.8, "total_p99_ns": 304199.39999999997, "total_ci_low_ns": 279805.8561688312, "total_ci_high_ns": 283837.5227272727, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "v8-serializer", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.956952516183976}, {"serializer": "fast-json-stringify", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "6.4.0", "avg_time_ser_ns": 222615.73033707865, "avg_time_deser_ns": 212567.4157303371, "avg_time_total_ns": 435183.1460674157, "median_size_bytes": 41431.0, "avg_ops_per_sec": 2297.883107460891, "min_ops_per_sec": 1634.6840727826736, "max_ops_per_sec": 2838.6510730101054, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 222615.73033707865, "ser_median_ns": 218488.0, "ser_std_ns": 13024.022107562385, "ser_mad_ns": 7521.0, "ser_cv": 0.0585045005033641, "ser_min_ns": 204502.0, "ser_max_ns": 254049.0, "ser_p5_ns": 208516.4, "ser_p25_ns": 211854.0, "ser_p50_ns": 218488.0, "ser_p75_ns": 233143.0, "ser_p95_ns": 248529.59999999998, "ser_p99_ns": 252824.92, "ser_ci_low_ns": 219888.3679775281, "ser_ci_high_ns": 225360.22050561797, "deser_mean_ns": 212567.4157303371, "deser_median_ns": 191209.0, "deser_std_ns": 60979.05111888258, "deser_mad_ns": 34827.0, "deser_cv": 0.2868692311536617, "deser_min_ns": 141452.0, "deser_max_ns": 370140.0, "deser_p5_ns": 150461.6, "deser_p25_ns": 163366.0, "deser_p50_ns": 191209.0, "deser_p75_ns": 250658.0, "deser_p95_ns": 340066.9999999999, "deser_p99_ns": 368191.68, "deser_ci_low_ns": 200412.61994382023, "deser_ci_high_ns": 225938.59803370785, "total_mean_ns": 435183.1460674157, "total_median_ns": 421007.0, "total_std_ns": 66900.02328348396, "total_mad_ns": 40944.0, "total_cv": 0.15372843339185807, "total_min_ns": 352280.0, "total_max_ns": 611739.0, "total_p5_ns": 364176.0, "total_p25_ns": 384513.0, "total_p50_ns": 421007.0, "total_p75_ns": 466772.0, "total_p95_ns": 568070.4, "total_p99_ns": 608360.68, "total_ci_low_ns": 421605.4351123596, "total_ci_high_ns": 449635.2682584269, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "v8-serializer", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.66258012670048}, {"serializer": "sia", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "2.3.0", "avg_time_ser_ns": 893728.0229885058, "avg_time_deser_ns": 344731.8735632184, "avg_time_total_ns": 1238459.896551724, "median_size_bytes": 48535.0, "avg_ops_per_sec": 807.4544866445218, "min_ops_per_sec": 731.6744809501232, "max_ops_per_sec": 866.1818358204301, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 893728.0229885058, "ser_median_ns": 882954.0, "ser_std_ns": 38367.45066595013, "ser_mad_ns": 25159.0, "ser_cv": 0.04292967175590461, "ser_min_ns": 820545.0, "ser_max_ns": 1016836.0, "ser_p5_ns": 845694.7, "ser_p25_ns": 866841.5, "ser_p50_ns": 882954.0, "ser_p75_ns": 918462.5, "ser_p95_ns": 961717.3, "ser_p99_ns": 1005078.08, "ser_ci_low_ns": 885923.827586207, "ser_ci_high_ns": 901864.816091954, "deser_mean_ns": 344731.8735632184, "deser_median_ns": 341239.0, "deser_std_ns": 14820.2306354685, "deser_mad_ns": 10368.0, "deser_cv": 0.04299060160084299, "deser_min_ns": 322819.0, "deser_max_ns": 385213.0, "deser_p5_ns": 324401.9, "deser_p25_ns": 333892.0, "deser_p50_ns": 341239.0, "deser_p75_ns": 355264.5, "deser_p95_ns": 371625.5, "deser_p99_ns": 380017.74, "deser_ci_low_ns": 341676.6304597701, "deser_ci_high_ns": 347789.733045977, "total_mean_ns": 1238459.896551724, "total_median_ns": 1227774.0, "total_std_ns": 43073.16608657567, "total_mad_ns": 25706.0, "total_cv": 0.03477962121059019, "total_min_ns": 1154492.0, "total_max_ns": 1366728.0, "total_p5_ns": 1179274.8, "total_p25_ns": 1207544.5, "total_p50_ns": 1227774.0, "total_p75_ns": 1270813.5, "total_p95_ns": 1313015.7, "total_p99_ns": 1357946.54, "total_ci_low_ns": 1229259.189367816, "total_ci_high_ns": 1247904.3135057471, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "v8-serializer", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 32.11682234323951}, {"serializer": "google-protobuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "3.21.4", "avg_time_ser_ns": 1121.8139534883721, "avg_time_deser_ns": 226822.0, "avg_time_total_ns": 227943.81395348837, "median_size_bytes": 37330.0, "avg_ops_per_sec": 4387.04601215477, "min_ops_per_sec": 3704.7465212430166, "max_ops_per_sec": 4774.933509050887, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 1121.8139534883721, "ser_median_ns": 1100.5, "ser_std_ns": 310.71229406858447, "ser_mad_ns": 192.5, "ser_cv": 0.27697310512353607, "ser_min_ns": 469.0, "ser_max_ns": 1968.0, "ser_p5_ns": 705.0, "ser_p25_ns": 907.25, "ser_p50_ns": 1100.5, "ser_p75_ns": 1287.75, "ser_p95_ns": 1740.25, "ser_p99_ns": 1937.4, "ser_ci_low_ns": 1057.7023255813954, "ser_ci_high_ns": 1190.4229651162789, "deser_mean_ns": 226822.0, "deser_median_ns": 221720.0, "deser_std_ns": 13934.214103506267, "deser_mad_ns": 7161.0, "deser_cv": 0.06143237474101395, "deser_min_ns": 208331.0, "deser_max_ns": 268904.0, "deser_p5_ns": 210228.75, "deser_p25_ns": 216941.0, "deser_p50_ns": 221720.0, "deser_p75_ns": 235174.75, "deser_p95_ns": 255790.75, "deser_p99_ns": 259046.55000000008, "deser_ci_low_ns": 223928.1953488372, "deser_ci_high_ns": 229963.14156976744, "total_mean_ns": 227943.81395348837, "total_median_ns": 222780.5, "total_std_ns": 14011.74025343338, "total_mad_ns": 7467.0, "total_cv": 0.06147014920217338, "total_min_ns": 209427.0, "total_max_ns": 269924.0, "total_p5_ns": 211385.25, "total_p25_ns": 217961.75, "total_p50_ns": 222780.5, "total_p75_ns": 236973.25, "total_p95_ns": 256871.5, "total_p99_ns": 260721.05000000008, "total_ci_low_ns": 225051.7683139535, "total_ci_high_ns": 230998.1851744186, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "v8-serializer", "effect_vs_fastest_cliffs_delta": 0.780610815354441, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.6367264873317058}, {"serializer": "protobufjs", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "7.6.5", "avg_time_ser_ns": 309262.6976744186, "avg_time_deser_ns": 234827.2093023256, "avg_time_total_ns": 544089.9069767442, "median_size_bytes": 37330.0, "avg_ops_per_sec": 1837.931538845367, "min_ops_per_sec": 1626.3759140232637, "max_ops_per_sec": 2019.1292303281286, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 309262.6976744186, "ser_median_ns": 306278.0, "ser_std_ns": 19090.081561511754, "ser_mad_ns": 12946.0, "ser_cv": 0.06172772114149101, "ser_min_ns": 277573.0, "ser_max_ns": 370924.0, "ser_p5_ns": 286711.75, "ser_p25_ns": 293626.75, "ser_p50_ns": 306278.0, "ser_p75_ns": 321668.25, "ser_p95_ns": 341968.75, "ser_p99_ns": 356468.0500000001, "ser_ci_low_ns": 305348.3543604651, "ser_ci_high_ns": 313277.5709302326, "deser_mean_ns": 234827.2093023256, "deser_median_ns": 230048.0, "deser_std_ns": 13844.274117411505, "deser_mad_ns": 5824.0, "deser_cv": 0.05895515327437143, "deser_min_ns": 212133.0, "deser_max_ns": 273601.0, "deser_p5_ns": 219577.0, "deser_p25_ns": 225577.5, "deser_p50_ns": 230048.0, "deser_p75_ns": 240842.25, "deser_p95_ns": 263988.0, "deser_p99_ns": 271054.4, "deser_ci_low_ns": 232040.39651162789, "deser_ci_high_ns": 237895.3136627907, "total_mean_ns": 544089.9069767442, "total_median_ns": 539823.0, "total_std_ns": 26673.627593617814, "total_mad_ns": 17573.5, "total_cv": 0.04902430140972623, "total_min_ns": 495263.0, "total_max_ns": 614864.0, "total_p5_ns": 511078.75, "total_p25_ns": 524259.0, "total_p50_ns": 539823.0, "total_p75_ns": 561738.25, "total_p95_ns": 591300.5, "total_p99_ns": 605816.6000000001, "total_ci_low_ns": 538491.4212209303, "total_ci_high_ns": 550027.8296511628, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "v8-serializer", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.09680438545169}, {"serializer": "cbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "9.0.2", "avg_time_ser_ns": 953491.9625, "avg_time_deser_ns": 1223693.0125, "avg_time_total_ns": 2177184.975, "median_size_bytes": 34732.0, "avg_ops_per_sec": 459.3086997580442, "min_ops_per_sec": 419.00839986139204, "max_ops_per_sec": 487.53685169177726, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 953491.9625, "ser_median_ns": 939888.0, "ser_std_ns": 51333.80391112583, "ser_mad_ns": 33597.0, "ser_cv": 0.05383768917834568, "ser_min_ns": 883095.0, "ser_max_ns": 1109394.0, "ser_p5_ns": 895637.1, "ser_p25_ns": 909722.75, "ser_p50_ns": 939888.0, "ser_p75_ns": 996872.75, "ser_p95_ns": 1042345.8, "ser_p99_ns": 1083605.2399999998, "ser_ci_low_ns": 942666.915625, "ser_ci_high_ns": 964632.541875, "deser_mean_ns": 1223693.0125, "deser_median_ns": 1219062.5, "deser_std_ns": 38431.69103533287, "deser_mad_ns": 25060.5, "deser_cv": 0.031406317305691794, "deser_min_ns": 1152166.0, "deser_max_ns": 1311555.0, "deser_p5_ns": 1170844.35, "deser_p25_ns": 1195589.75, "deser_p50_ns": 1219062.5, "deser_p75_ns": 1245080.0, "deser_p95_ns": 1303999.75, "deser_p99_ns": 1308699.94, "deser_ci_low_ns": 1215310.6409375, "deser_ci_high_ns": 1232542.39875, "total_mean_ns": 2177184.975, "total_median_ns": 2160078.0, "total_std_ns": 77609.87980235554, "total_mad_ns": 52726.5, "total_cv": 0.03564689298039802, "total_min_ns": 2051127.0, "total_max_ns": 2386587.0, "total_p5_ns": 2089451.6, "total_p25_ns": 2115024.75, "total_p50_ns": 2160078.0, "total_p75_ns": 2225504.75, "total_p95_ns": 2318281.95, "total_p99_ns": 2381174.71, "total_ci_low_ns": 2160955.1421875004, "total_ci_high_ns": 2194554.5578125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "v8-serializer", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 35.62264062339135}, {"serializer": "msgpackr", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "1.12.1", "avg_time_ser_ns": 121441.25882352941, "avg_time_deser_ns": 134334.6, "avg_time_total_ns": 255775.85882352942, "median_size_bytes": 35033.0, "avg_ops_per_sec": 3909.673120049779, "min_ops_per_sec": 3377.4199213736642, "max_ops_per_sec": 4315.888511967959, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 121441.25882352941, "ser_median_ns": 121078.0, "ser_std_ns": 6416.161079932568, "ser_mad_ns": 3907.0, "ser_cv": 0.05283345332623832, "ser_min_ns": 111141.0, "ser_max_ns": 141408.0, "ser_p5_ns": 112459.4, "ser_p25_ns": 117171.0, "ser_p50_ns": 121078.0, "ser_p75_ns": 124744.0, "ser_p95_ns": 132586.8, "ser_p99_ns": 139441.56, "ser_ci_low_ns": 120121.09294117647, "ser_ci_high_ns": 122804.08588235294, "deser_mean_ns": 134334.6, "deser_median_ns": 132719.0, "deser_std_ns": 8486.986458550471, "deser_mad_ns": 5421.0, "deser_cv": 0.06317796352205962, "deser_min_ns": 119427.0, "deser_max_ns": 157833.0, "deser_p5_ns": 123701.4, "deser_p25_ns": 128033.0, "deser_p50_ns": 132719.0, "deser_p75_ns": 139302.0, "deser_p95_ns": 153151.6, "deser_p99_ns": 155181.12, "deser_ci_low_ns": 132595.36676470586, "deser_ci_high_ns": 136149.47529411767, "total_mean_ns": 255775.85882352942, "total_median_ns": 254532.0, "total_std_ns": 13106.459736067754, "total_mad_ns": 9608.0, "total_cv": 0.05124197332911882, "total_min_ns": 231702.0, "total_max_ns": 296084.0, "total_p5_ns": 236976.6, "total_p25_ns": 244985.0, "total_p50_ns": 254532.0, "total_p75_ns": 264608.0, "total_p95_ns": 277659.6, "total_p99_ns": 287895.68, "total_ci_low_ns": 253052.69647058824, "total_ci_high_ns": 258584.52264705882, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "v8-serializer", "effect_vs_fastest_cliffs_delta": 0.9948972360028349, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.876925991171297}, {"serializer": "v8-serializer", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "v8-13.6.233.17-node.48", "avg_time_ser_ns": 86971.0843373494, "avg_time_deser_ns": 119261.32530120482, "avg_time_total_ns": 206232.4096385542, "median_size_bytes": 38537.0, "avg_ops_per_sec": 4848.898394547268, "min_ops_per_sec": 4180.7942672949, "max_ops_per_sec": 5445.733267984534, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 86971.0843373494, "ser_median_ns": 85057.0, "ser_std_ns": 9648.252053502874, "ser_mad_ns": 5605.0, "ser_cv": 0.11093632012311785, "ser_min_ns": 70809.0, "ser_max_ns": 115468.0, "ser_p5_ns": 74597.5, "ser_p25_ns": 80230.0, "ser_p50_ns": 85057.0, "ser_p75_ns": 93251.0, "ser_p95_ns": 105312.89999999997, "ser_p99_ns": 114441.35999999999, "ser_ci_low_ns": 84942.17078313253, "ser_ci_high_ns": 88930.53012048193, "deser_mean_ns": 119261.32530120482, "deser_median_ns": 118870.0, "deser_std_ns": 4047.1381430569168, "deser_mad_ns": 2676.0, "deser_cv": 0.03393504250297, "deser_min_ns": 109072.0, "deser_max_ns": 129420.0, "deser_p5_ns": 113180.6, "deser_p25_ns": 116746.5, "deser_p50_ns": 118870.0, "deser_p75_ns": 121990.5, "deser_p95_ns": 126346.9, "deser_p99_ns": 129032.14, "deser_ci_low_ns": 118409.8515060241, "deser_ci_high_ns": 120174.99608433734, "total_mean_ns": 206232.4096385542, "total_median_ns": 203289.0, "total_std_ns": 12314.116756336463, "total_mad_ns": 8239.0, "total_cv": 0.05970990097006749, "total_min_ns": 183630.0, "total_max_ns": 239189.0, "total_p5_ns": 187701.6, "total_p25_ns": 197724.0, "total_p50_ns": 203289.0, "total_p75_ns": 214528.5, "total_p95_ns": 228729.1, "total_p99_ns": 236659.3, "total_ci_low_ns": 203623.6174698795, "total_ci_high_ns": 209001.45873493978, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "v8-serializer", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "cbor-x", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "1.6.4", "avg_time_ser_ns": 145992.95555555556, "avg_time_deser_ns": 144048.1, "avg_time_total_ns": 290041.05555555556, "median_size_bytes": 34442.0, "avg_ops_per_sec": 3447.787755718108, "min_ops_per_sec": 2997.377294866991, "max_ops_per_sec": 3841.5587508787567, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 145992.95555555556, "ser_median_ns": 144552.5, "ser_std_ns": 9094.290787046059, "ser_mad_ns": 5764.5, "ser_cv": 0.06229266852252576, "ser_min_ns": 130999.0, "ser_max_ns": 171755.0, "ser_p5_ns": 134410.5, "ser_p25_ns": 139030.25, "ser_p50_ns": 144552.5, "ser_p75_ns": 150743.25, "ser_p95_ns": 163956.55, "ser_p99_ns": 170469.84, "ser_ci_low_ns": 144140.20583333334, "ser_ci_high_ns": 147870.11916666667, "deser_mean_ns": 144048.1, "deser_median_ns": 140951.5, "deser_std_ns": 9549.408337516477, "deser_mad_ns": 5357.0, "deser_cv": 0.06629319190962239, "deser_min_ns": 127233.0, "deser_max_ns": 172625.0, "deser_p5_ns": 133064.4, "deser_p25_ns": 137018.5, "deser_p50_ns": 140951.5, "deser_p75_ns": 150516.5, "deser_p95_ns": 164413.05, "deser_p99_ns": 168115.37, "deser_ci_low_ns": 142086.2463888889, "deser_ci_high_ns": 145994.47305555554, "total_mean_ns": 290041.05555555556, "total_median_ns": 288696.0, "total_std_ns": 15781.43408442097, "total_mad_ns": 11974.5, "total_cv": 0.05441103520393903, "total_min_ns": 260311.0, "total_max_ns": 333625.0, "total_p5_ns": 269621.55, "total_p25_ns": 277503.75, "total_p50_ns": 288696.0, "total_p75_ns": 301014.75, "total_p95_ns": 316401.9, "total_p99_ns": 329877.21, "total_ci_low_ns": 286784.8791666667, "total_ci_high_ns": 293155.11805555556, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "v8-serializer", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.86592808009146}, {"serializer": "bser", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "2.1.1", "avg_time_ser_ns": 387288.75268817204, "avg_time_deser_ns": 308923.0430107527, "avg_time_total_ns": 696211.7956989247, "median_size_bytes": 41640.0, "avg_ops_per_sec": 1436.3445235743288, "min_ops_per_sec": 1315.5921348639808, "max_ops_per_sec": 1507.5725368526107, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 387288.75268817204, "ser_median_ns": 383335.0, "ser_std_ns": 12979.573306157303, "ser_mad_ns": 7781.0, "ser_cv": 0.033513943320238604, "ser_min_ns": 368116.0, "ser_max_ns": 422764.0, "ser_p5_ns": 370562.0, "ser_p25_ns": 378032.0, "ser_p50_ns": 383335.0, "ser_p75_ns": 395153.0, "ser_p95_ns": 412741.2, "ser_p99_ns": 420452.04, "ser_ci_low_ns": 384799.464516129, "ser_ci_high_ns": 389940.9862903226, "deser_mean_ns": 308923.0430107527, "deser_median_ns": 304096.0, "deser_std_ns": 14035.617485304383, "deser_mad_ns": 8224.0, "deser_cv": 0.04543402573182553, "deser_min_ns": 289405.0, "deser_max_ns": 347875.0, "deser_p5_ns": 292457.0, "deser_p25_ns": 299287.0, "deser_p50_ns": 304096.0, "deser_p75_ns": 317604.0, "deser_p95_ns": 336672.0, "deser_p99_ns": 346288.0, "deser_ci_low_ns": 306144.1809139785, "deser_ci_high_ns": 311708.79731182795, "total_mean_ns": 696211.7956989247, "total_median_ns": 691409.0, "total_std_ns": 22654.44788775731, "total_mad_ns": 15762.0, "total_cv": 0.03253959215818023, "total_min_ns": 663318.0, "total_max_ns": 760114.0, "total_p5_ns": 666622.6, "total_p25_ns": 679327.0, "total_p50_ns": 691409.0, "total_p75_ns": 711413.0, "total_p95_ns": 735226.2, "total_p99_ns": 753125.6799999999, "total_ci_low_ns": 691721.135483871, "total_ci_high_ns": 700428.4223118279, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "v8-serializer", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.34906994022314}, {"serializer": "bebop", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "3.2.3", "avg_time_ser_ns": 154661.55813953487, "avg_time_deser_ns": 242486.05813953487, "avg_time_total_ns": 397147.61627906974, "median_size_bytes": 48535.0, "avg_ops_per_sec": 2517.955437751677, "min_ops_per_sec": 2275.7633479209762, "max_ops_per_sec": 2720.05222500272, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 154661.55813953487, "ser_median_ns": 151323.0, "ser_std_ns": 9627.195959247767, "ser_mad_ns": 3283.5, "ser_cv": 0.06224685742892982, "ser_min_ns": 139877.0, "ser_max_ns": 182967.0, "ser_p5_ns": 144094.0, "ser_p25_ns": 148855.5, "ser_p50_ns": 151323.0, "ser_p75_ns": 158453.5, "ser_p95_ns": 174467.5, "ser_p99_ns": 182134.0, "ser_ci_low_ns": 152781.39127906977, "ser_ci_high_ns": 156709.21511627908, "deser_mean_ns": 242486.05813953487, "deser_median_ns": 239418.5, "deser_std_ns": 14500.857233365976, "deser_mad_ns": 7192.0, "deser_cv": 0.059800787495261604, "deser_min_ns": 219189.0, "deser_max_ns": 285816.0, "deser_p5_ns": 224513.5, "deser_p25_ns": 232719.75, "deser_p50_ns": 239418.5, "deser_p75_ns": 247760.5, "deser_p95_ns": 270441.25, "deser_p99_ns": 281622.95, "deser_ci_low_ns": 239552.1578488372, "deser_ci_high_ns": 245546.5968023256, "total_mean_ns": 397147.61627906974, "total_median_ns": 393954.5, "total_std_ns": 18146.963956196545, "total_mad_ns": 12526.5, "total_cv": 0.04569324657218877, "total_min_ns": 367640.0, "total_max_ns": 439413.0, "total_p5_ns": 372414.0, "total_p25_ns": 383685.25, "total_p50_ns": 393954.5, "total_p75_ns": 409506.75, "total_p95_ns": 431414.5, "total_p99_ns": 438787.4, "total_ci_low_ns": 393395.90726744186, "total_ci_high_ns": 400955.67209302326, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "v8-serializer", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.21550971506199}, {"serializer": "devalue", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "5.8.1", "avg_time_ser_ns": 773204.1022727273, "avg_time_deser_ns": 297885.25, "avg_time_total_ns": 1071089.3522727273, "median_size_bytes": 57307.0, "avg_ops_per_sec": 933.6289244945962, "min_ops_per_sec": 744.1395291382715, "max_ops_per_sec": 1111.0086514243687, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 773204.1022727273, "ser_median_ns": 758455.5, "ser_std_ns": 64181.382726360614, "ser_mad_ns": 38715.5, "ser_cv": 0.08300703855257396, "ser_min_ns": 665370.0, "ser_max_ns": 973164.0, "ser_p5_ns": 691135.1, "ser_p25_ns": 726184.5, "ser_p50_ns": 758455.5, "ser_p75_ns": 807438.5, "ser_p95_ns": 894366.4999999999, "ser_p99_ns": 961745.2499999999, "ser_ci_low_ns": 759844.8150568182, "ser_ci_high_ns": 787237.3477272728, "deser_mean_ns": 297885.25, "deser_median_ns": 280733.5, "deser_std_ns": 58237.67534245425, "deser_mad_ns": 30830.5, "deser_cv": 0.19550372280082431, "deser_min_ns": 223583.0, "deser_max_ns": 463218.0, "deser_p5_ns": 236741.45, "deser_p25_ns": 254139.25, "deser_p50_ns": 280733.5, "deser_p75_ns": 328506.5, "deser_p95_ns": 420335.2999999997, "deser_p99_ns": 462373.23, "deser_ci_low_ns": 285910.0034090909, "deser_ci_high_ns": 310628.375, "total_mean_ns": 1071089.3522727273, "total_median_ns": 1057024.0, "total_std_ns": 106210.12454553439, "total_mad_ns": 69702.5, "total_cv": 0.09916084434988438, "total_min_ns": 900083.0, "total_max_ns": 1343834.0, "total_p5_ns": 938176.6, "total_p25_ns": 991136.25, "total_p50_ns": 1057024.0, "total_p75_ns": 1127905.0, "total_p95_ns": 1281493.6999999997, "total_p99_ns": 1342759.55, "total_ci_low_ns": 1050130.4147727273, "total_ci_high_ns": 1093380.1210227273, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "v8-serializer", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.227773883427796}, {"serializer": "avsc", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "5.7.9", "avg_time_ser_ns": 547567.6304347826, "avg_time_deser_ns": 439531.6847826087, "avg_time_total_ns": 987099.3152173914, "median_size_bytes": 34033.0, "avg_ops_per_sec": 1013.069287541515, "min_ops_per_sec": 791.128600327369, "max_ops_per_sec": 1197.554593520032, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 547567.6304347826, "ser_median_ns": 530065.0, "ser_std_ns": 65056.460975641065, "ser_mad_ns": 41737.0, "ser_cv": 0.11880991015481428, "ser_min_ns": 443941.0, "ser_max_ns": 739404.0, "ser_p5_ns": 474939.35, "ser_p25_ns": 497372.5, "ser_p50_ns": 530065.0, "ser_p75_ns": 581270.0, "ser_p95_ns": 674628.95, "ser_p99_ns": 694773.0500000002, "ser_ci_low_ns": 534367.6769021739, "ser_ci_high_ns": 561758.9904891305, "deser_mean_ns": 439531.6847826087, "deser_median_ns": 432978.5, "deser_std_ns": 32545.102937419608, "deser_mad_ns": 23079.5, "deser_cv": 0.07404495299017257, "deser_min_ns": 391094.0, "deser_max_ns": 527934.0, "deser_p5_ns": 398996.45, "deser_p25_ns": 416921.75, "deser_p50_ns": 432978.5, "deser_p75_ns": 461855.75, "deser_p95_ns": 504300.05, "deser_p99_ns": 525310.47, "deser_ci_low_ns": 433349.05190217396, "deser_ci_high_ns": 446158.46331521735, "total_mean_ns": 987099.3152173914, "total_median_ns": 957642.0, "total_std_ns": 92363.02461399042, "total_mad_ns": 54290.0, "total_cv": 0.09357014354087469, "total_min_ns": 835035.0, "total_max_ns": 1264017.0, "total_p5_ns": 876082.65, "total_p25_ns": 922366.25, "total_p50_ns": 957642.0, "total_p75_ns": 1052049.75, "total_p95_ns": 1158967.3, "total_p99_ns": 1222408.1600000001, "total_ci_low_ns": 969267.9065217391, "total_ci_high_ns": 1006954.65, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "v8-serializer", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.514394838398362}, {"serializer": "@msgpack/msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "3.1.3", "avg_time_ser_ns": 215948.86585365853, "avg_time_deser_ns": 232868.21951219512, "avg_time_total_ns": 448817.0853658537, "median_size_bytes": 34833.0, "avg_ops_per_sec": 2228.0791721305554, "min_ops_per_sec": 2044.6594517450146, "max_ops_per_sec": 2349.359094838928, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 215948.86585365853, "ser_median_ns": 213917.0, "ser_std_ns": 8353.231445038213, "ser_mad_ns": 4959.5, "ser_cv": 0.038681524962020056, "ser_min_ns": 203873.0, "ser_max_ns": 241139.0, "ser_p5_ns": 205616.05, "ser_p25_ns": 210810.25, "ser_p50_ns": 213917.0, "ser_p75_ns": 219740.5, "ser_p95_ns": 233331.80000000002, "ser_p99_ns": 236829.8, "ser_ci_low_ns": 214176.44756097562, "ser_ci_high_ns": 217752.90762195122, "deser_mean_ns": 232868.21951219512, "deser_median_ns": 231304.0, "deser_std_ns": 8565.571858309371, "deser_mad_ns": 5522.0, "deser_cv": 0.03678291471568021, "deser_min_ns": 217811.0, "deser_max_ns": 256329.0, "deser_p5_ns": 221436.0, "deser_p25_ns": 226858.25, "deser_p50_ns": 231304.0, "deser_p75_ns": 236985.0, "deser_p95_ns": 249930.25, "deser_p99_ns": 255793.59, "deser_ci_low_ns": 231032.95914634145, "deser_ci_high_ns": 234690.9118902439, "total_mean_ns": 448817.0853658537, "total_median_ns": 446245.0, "total_std_ns": 14523.928795587279, "total_mad_ns": 9649.5, "total_cv": 0.03236046324695523, "total_min_ns": 425648.0, "total_max_ns": 489079.0, "total_p5_ns": 428635.3, "total_p25_ns": 437398.25, "total_p50_ns": 446245.0, "total_p75_ns": 456614.0, "total_p95_ns": 477179.4, "total_p99_ns": 485344.89999999997, "total_ci_low_ns": 445720.62530487805, "total_ci_high_ns": 451840.7896341463, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "v8-serializer", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.94267886796661}, {"serializer": "protobuf-es", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "2.12.1", "avg_time_ser_ns": 11398.190476190477, "avg_time_deser_ns": 8781.261904761905, "avg_time_total_ns": 20179.45238095238, "median_size_bytes": 123.0, "avg_ops_per_sec": 49555.3586451093, "min_ops_per_sec": 35892.466171350636, "max_ops_per_sec": 68516.6152792052, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 11398.190476190477, "ser_median_ns": 11202.5, "ser_std_ns": 1708.347933553607, "ser_mad_ns": 933.0, "ser_cv": 0.14987887218783993, "ser_min_ns": 8117.0, "ser_max_ns": 16360.0, "ser_p5_ns": 9079.15, "ser_p25_ns": 10297.75, "ser_p50_ns": 11202.5, "ser_p75_ns": 12202.5, "ser_p95_ns": 15249.7, "ser_p99_ns": 16065.35, "ser_ci_low_ns": 11052.833630952382, "ser_ci_high_ns": 11766.547916666666, "deser_mean_ns": 8781.261904761905, "deser_median_ns": 8847.0, "deser_std_ns": 1271.2297728572667, "deser_mad_ns": 719.0, "deser_cv": 0.14476618356729617, "deser_min_ns": 5739.0, "deser_max_ns": 11856.0, "deser_p5_ns": 6535.95, "deser_p25_ns": 8173.5, "deser_p50_ns": 8847.0, "deser_p75_ns": 9565.0, "deser_p95_ns": 10600.55, "deser_p99_ns": 11660.95, "deser_ci_low_ns": 8506.321130952381, "deser_ci_high_ns": 9050.211607142855, "total_mean_ns": 20179.45238095238, "total_median_ns": 20121.5, "total_std_ns": 2815.8958017618133, "total_mad_ns": 1687.0, "total_cv": 0.13954272636356424, "total_min_ns": 14595.0, "total_max_ns": 27861.0, "total_p5_ns": 15843.75, "total_p25_ns": 18391.5, "total_p50_ns": 20121.5, "total_p75_ns": 21665.75, "total_p95_ns": 25771.3, "total_p99_ns": 27476.71, "total_ci_low_ns": 19540.47380952381, "total_ci_high_ns": 20768.987797619047, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.169934587621798}, {"serializer": "msgpackr", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "1.12.1", "avg_time_ser_ns": 2386.1518987341774, "avg_time_deser_ns": 3501.46835443038, "avg_time_total_ns": 5887.620253164557, "median_size_bytes": 209.0, "avg_ops_per_sec": 169847.9108706963, "min_ops_per_sec": 137570.50488375293, "max_ops_per_sec": 228571.42857142858, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 2386.1518987341774, "ser_median_ns": 2379.0, "ser_std_ns": 294.88898774369727, "ser_mad_ns": 190.0, "ser_cv": 0.12358349353204716, "ser_min_ns": 1752.0, "ser_max_ns": 3282.0, "ser_p5_ns": 1883.2, "ser_p25_ns": 2204.5, "ser_p50_ns": 2379.0, "ser_p75_ns": 2569.0, "ser_p95_ns": 2876.8, "ser_p99_ns": 3103.3799999999997, "ser_ci_low_ns": 2323.2772151898735, "ser_ci_high_ns": 2451.814873417721, "deser_mean_ns": 3501.46835443038, "deser_median_ns": 3531.0, "deser_std_ns": 395.86276550583034, "deser_mad_ns": 221.0, "deser_cv": 0.11305621683113268, "deser_min_ns": 2586.0, "deser_max_ns": 4393.0, "deser_p5_ns": 2662.0, "deser_p25_ns": 3313.5, "deser_p50_ns": 3531.0, "deser_p75_ns": 3745.5, "deser_p95_ns": 4132.7, "deser_p99_ns": 4345.42, "deser_ci_low_ns": 3411.6237341772153, "deser_ci_high_ns": 3587.517405063291, "total_mean_ns": 5887.620253164557, "total_median_ns": 5955.0, "total_std_ns": 657.7329421385962, "total_mad_ns": 397.0, "total_cv": 0.11171456613307713, "total_min_ns": 4375.0, "total_max_ns": 7269.0, "total_p5_ns": 4551.0, "total_p25_ns": 5504.0, "total_p50_ns": 5955.0, "total_p75_ns": 6257.0, "total_p95_ns": 6995.899999999999, "total_p99_ns": 7237.0199999999995, "total_ci_low_ns": 5745.220569620253, "total_ci_high_ns": 6036.153797468354, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.9648382559774965, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.2864403715651083}, {"serializer": "bebop", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "3.2.3", "avg_time_ser_ns": 2757.8241758241757, "avg_time_deser_ns": 2898.3296703296705, "avg_time_total_ns": 5656.153846153846, "median_size_bytes": 306.0, "avg_ops_per_sec": 176798.58561131512, "min_ops_per_sec": 139411.68269901018, "max_ops_per_sec": 232018.56148491878, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 2757.8241758241757, "ser_median_ns": 2718.0, "ser_std_ns": 411.55854432757855, "ser_mad_ns": 247.0, "ser_cv": 0.14923306131529734, "ser_min_ns": 1859.0, "ser_max_ns": 3848.0, "ser_p5_ns": 2048.0, "ser_p25_ns": 2542.5, "ser_p50_ns": 2718.0, "ser_p75_ns": 2988.0, "ser_p95_ns": 3373.5, "ser_p99_ns": 3667.999999999999, "ser_ci_low_ns": 2671.17032967033, "ser_ci_high_ns": 2842.5604395604396, "deser_mean_ns": 2898.3296703296705, "deser_median_ns": 2887.0, "deser_std_ns": 251.66821434160119, "deser_mad_ns": 185.0, "deser_cv": 0.08683215609250386, "deser_min_ns": 2363.0, "deser_max_ns": 3525.0, "deser_p5_ns": 2464.5, "deser_p25_ns": 2723.0, "deser_p50_ns": 2887.0, "deser_p75_ns": 3076.5, "deser_p95_ns": 3318.0, "deser_p99_ns": 3412.499999999999, "deser_ci_low_ns": 2846.557967032967, "deser_ci_high_ns": 2950.866483516483, "total_mean_ns": 5656.153846153846, "total_median_ns": 5690.0, "total_std_ns": 625.7722149131143, "total_mad_ns": 386.0, "total_cv": 0.11063564251149853, "total_min_ns": 4310.0, "total_max_ns": 7173.0, "total_p5_ns": 4599.5, "total_p25_ns": 5282.0, "total_p50_ns": 5690.0, "total_p75_ns": 6053.5, "total_p95_ns": 6708.5, "total_p99_ns": 6975.899999999999, "total_ci_low_ns": 5533.918406593407, "total_ci_high_ns": 5786.331593406593, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.9499389499389499, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.062942787743482}, {"serializer": "avsc", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "5.7.9", "avg_time_ser_ns": 6055.555555555556, "avg_time_deser_ns": 4688.577777777778, "avg_time_total_ns": 10744.133333333333, "median_size_bytes": 105.0, "avg_ops_per_sec": 93074.04971395242, "min_ops_per_sec": 67010.65469409636, "max_ops_per_sec": 140213.12394840157, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 6055.555555555556, "ser_median_ns": 6111.5, "ser_std_ns": 1150.7294229070837, "ser_mad_ns": 784.0, "ser_cv": 0.1900287120397019, "ser_min_ns": 3605.0, "ser_max_ns": 9256.0, "ser_p5_ns": 4325.05, "ser_p25_ns": 5238.25, "ser_p50_ns": 6111.5, "ser_p75_ns": 6737.5, "ser_p95_ns": 7916.799999999999, "ser_p99_ns": 8453.22, "ser_ci_low_ns": 5817.027222222222, "ser_ci_high_ns": 6288.228888888889, "deser_mean_ns": 4688.577777777778, "deser_median_ns": 4641.5, "deser_std_ns": 442.70955750877226, "deser_mad_ns": 305.5, "deser_cv": 0.0944229953072467, "deser_min_ns": 3527.0, "deser_max_ns": 5730.0, "deser_p5_ns": 4063.5, "deser_p25_ns": 4360.5, "deser_p50_ns": 4641.5, "deser_p75_ns": 4959.0, "deser_p95_ns": 5547.25, "deser_p99_ns": 5673.93, "deser_ci_low_ns": 4603.587500000001, "deser_ci_high_ns": 4778.948333333333, "total_mean_ns": 10744.133333333333, "total_median_ns": 10868.0, "total_std_ns": 1521.6206189011664, "total_mad_ns": 960.5, "total_cv": 0.1416233931293822, "total_min_ns": 7132.0, "total_max_ns": 14923.0, "total_p5_ns": 8453.0, "total_p25_ns": 9685.25, "total_p50_ns": 10868.0, "total_p75_ns": 11696.25, "total_p95_ns": 13173.15, "total_p99_ns": 14006.3, "total_ci_low_ns": 10432.952777777778, "total_ci_high_ns": 11038.874166666666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.969477479870303}, {"serializer": "cbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "9.0.2", "avg_time_ser_ns": 25241.7311827957, "avg_time_deser_ns": 21319.956989247312, "avg_time_total_ns": 46561.68817204301, "median_size_bytes": 199.0, "avg_ops_per_sec": 21476.884521563137, "min_ops_per_sec": 16282.667100871122, "max_ops_per_sec": 31751.071598666455, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 25241.7311827957, "ser_median_ns": 24735.0, "ser_std_ns": 4710.165050970786, "ser_mad_ns": 2518.0, "ser_cv": 0.1866022982679234, "ser_min_ns": 15220.0, "ser_max_ns": 35987.0, "ser_p5_ns": 17889.6, "ser_p25_ns": 22310.0, "ser_p50_ns": 24735.0, "ser_p75_ns": 27253.0, "ser_p95_ns": 34580.0, "ser_p99_ns": 35887.64, "ser_ci_low_ns": 24279.87311827957, "ser_ci_high_ns": 26204.893548387096, "deser_mean_ns": 21319.956989247312, "deser_median_ns": 21184.0, "deser_std_ns": 2278.851812884394, "deser_mad_ns": 1381.0, "deser_cv": 0.1068881993539541, "deser_min_ns": 16275.0, "deser_max_ns": 28184.0, "deser_p5_ns": 17679.8, "deser_p25_ns": 19930.0, "deser_p50_ns": 21184.0, "deser_p75_ns": 22861.0, "deser_p95_ns": 25015.8, "deser_p99_ns": 26488.439999999995, "deser_ci_low_ns": 20842.170430107526, "deser_ci_high_ns": 21776.615053763442, "total_mean_ns": 46561.68817204301, "total_median_ns": 46569.0, "total_std_ns": 6596.09361170042, "total_mad_ns": 4092.0, "total_cv": 0.14166354079191026, "total_min_ns": 31495.0, "total_max_ns": 61415.0, "total_p5_ns": 35495.8, "total_p25_ns": 42562.0, "total_p50_ns": 46569.0, "total_p75_ns": 50661.0, "total_p95_ns": 59073.799999999996, "total_p99_ns": 61183.159999999996, "total_ci_low_ns": 45211.81827956989, "total_ci_high_ns": 47883.05806451613, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.071370707364302}, {"serializer": "protobufjs", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "7.6.5", "avg_time_ser_ns": 6943.325, "avg_time_deser_ns": 8726.4625, "avg_time_total_ns": 15669.7875, "median_size_bytes": 123.0, "avg_ops_per_sec": 63817.07473697393, "min_ops_per_sec": 41370.18037398643, "max_ops_per_sec": 98386.46202282565, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 6943.325, "ser_median_ns": 6834.0, "ser_std_ns": 821.3626648534677, "ser_mad_ns": 428.5, "ser_cv": 0.1182952929401213, "ser_min_ns": 5131.0, "ser_max_ns": 9392.0, "ser_p5_ns": 5778.1, "ser_p25_ns": 6468.0, "ser_p50_ns": 6834.0, "ser_p75_ns": 7376.5, "ser_p95_ns": 8314.9, "ser_p99_ns": 9219.779999999999, "ser_ci_low_ns": 6772.083750000001, "ser_ci_high_ns": 7124.193125, "deser_mean_ns": 8726.4625, "deser_median_ns": 8813.0, "deser_std_ns": 1859.633487393876, "deser_mad_ns": 1151.0, "deser_cv": 0.21310278791593687, "deser_min_ns": 4829.0, "deser_max_ns": 14998.0, "deser_p5_ns": 6362.55, "deser_p25_ns": 7256.5, "deser_p50_ns": 8813.0, "deser_p75_ns": 9601.25, "deser_p95_ns": 11655.55, "deser_p99_ns": 14343.089999999995, "deser_ci_low_ns": 8333.444375000001, "deser_ci_high_ns": 9156.7484375, "total_mean_ns": 15669.7875, "total_median_ns": 15432.5, "total_std_ns": 2572.988302028095, "total_mad_ns": 1435.0, "total_cv": 0.1642005867678866, "total_min_ns": 10164.0, "total_max_ns": 24172.0, "total_p5_ns": 12304.05, "total_p25_ns": 14097.75, "total_p50_ns": 15432.5, "total_p75_ns": 16872.0, "total_p95_ns": 19744.55, "total_p99_ns": 23439.669999999995, "total_ci_low_ns": 15115.4075, "total_ci_high_ns": 16239.829375, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.551202482843817}, {"serializer": "flexbuffers", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "24.12.23", "avg_time_ser_ns": 162602.46739130435, "avg_time_deser_ns": 12664.478260869566, "avg_time_total_ns": 175266.94565217392, "median_size_bytes": 290.0, "avg_ops_per_sec": 5705.582397633324, "min_ops_per_sec": 1785.822710664576, "max_ops_per_sec": 25123.73439188001, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 162602.46739130435, "ser_median_ns": 87151.5, "ser_std_ns": 132125.52839075946, "ser_mad_ns": 19592.5, "ser_cv": 0.8125677950064444, "ser_min_ns": 28615.0, "ser_max_ns": 548212.0, "ser_p5_ns": 35103.85, "ser_p25_ns": 82965.0, "ser_p50_ns": 87151.5, "ser_p75_ns": 306193.5, "ser_p95_ns": 392262.30000000005, "ser_p99_ns": 503649.30000000016, "ser_ci_low_ns": 137654.0918478261, "ser_ci_high_ns": 190433.27010869564, "deser_mean_ns": 12664.478260869566, "deser_median_ns": 12463.5, "deser_std_ns": 1179.0676748769765, "deser_mad_ns": 640.0, "deser_cv": 0.09310037496925827, "deser_min_ns": 10319.0, "deser_max_ns": 16141.0, "deser_p5_ns": 11140.75, "deser_p25_ns": 11850.5, "deser_p50_ns": 12463.5, "deser_p75_ns": 13211.25, "deser_p95_ns": 15251.750000000002, "deser_p99_ns": 16050.91, "deser_ci_low_ns": 12436.888586956522, "deser_ci_high_ns": 12914.30733695652, "total_mean_ns": 175266.94565217392, "total_median_ns": 100191.0, "total_std_ns": 132322.9893357736, "total_mad_ns": 18998.0, "total_cv": 0.7549797187564119, "total_min_ns": 39803.0, "total_max_ns": 559966.0, "total_p5_ns": 47268.35, "total_p25_ns": 94679.25, "total_p50_ns": 100191.0, "total_p75_ns": 317873.0, "total_p95_ns": 405593.55000000005, "total_p99_ns": 515761.84000000014, "total_ci_low_ns": 149574.4570652174, "total_ci_high_ns": 201255.28913043477, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.8190838815886188}, {"serializer": "JSON.stringify", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "node-24.15.0", "avg_time_ser_ns": 1594.6555555555556, "avg_time_deser_ns": 1803.6333333333334, "avg_time_total_ns": 3398.288888888889, "median_size_bytes": 257.0, "avg_ops_per_sec": 294265.741582365, "min_ops_per_sec": 178126.11328820806, "max_ops_per_sec": 436109.8996947231, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 1594.6555555555556, "ser_median_ns": 1451.5, "ser_std_ns": 468.2593193277933, "ser_mad_ns": 278.0, "ser_cv": 0.29364292351187926, "ser_min_ns": 916.0, "ser_max_ns": 2837.0, "ser_p5_ns": 1081.6, "ser_p25_ns": 1205.75, "ser_p50_ns": 1451.5, "ser_p75_ns": 1885.5, "ser_p95_ns": 2499.85, "ser_p99_ns": 2756.9, "ser_ci_low_ns": 1500.4966666666667, "ser_ci_high_ns": 1692.2027777777778, "deser_mean_ns": 1803.6333333333334, "deser_median_ns": 1618.0, "deser_std_ns": 506.1945810976094, "deser_mad_ns": 183.5, "deser_cv": 0.28065270903044376, "deser_min_ns": 1137.0, "deser_max_ns": 3301.0, "deser_p5_ns": 1310.5, "deser_p25_ns": 1472.5, "deser_p50_ns": 1618.0, "deser_p75_ns": 1982.5, "deser_p95_ns": 2900.399999999999, "deser_p99_ns": 3242.2599999999998, "deser_ci_low_ns": 1706.2463888888888, "deser_ci_high_ns": 1905.515, "total_mean_ns": 3398.288888888889, "total_median_ns": 3181.0, "total_std_ns": 829.3124706842767, "total_mad_ns": 480.0, "total_cv": 0.24403824918941203, "total_min_ns": 2293.0, "total_max_ns": 5614.0, "total_p5_ns": 2501.85, "total_p25_ns": 2738.5, "total_p50_ns": 3181.0, "total_p75_ns": 3806.75, "total_p95_ns": 5125.4, "total_p99_ns": 5348.78, "total_ci_low_ns": 3229.105277777778, "total_ci_high_ns": 3566.4824999999996, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "fast-json-stringify", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "6.4.0", "avg_time_ser_ns": 3899.170731707317, "avg_time_deser_ns": 1831.780487804878, "avg_time_total_ns": 5730.951219512195, "median_size_bytes": 257.0, "avg_ops_per_sec": 174491.1030816831, "min_ops_per_sec": 111284.21989761852, "max_ops_per_sec": 283687.94326241134, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 3899.170731707317, "ser_median_ns": 3744.0, "ser_std_ns": 739.0471811210127, "ser_mad_ns": 370.0, "ser_cv": 0.18953957956014114, "ser_min_ns": 2136.0, "ser_max_ns": 6038.0, "ser_p5_ns": 2913.7, "ser_p25_ns": 3424.25, "ser_p50_ns": 3744.0, "ser_p75_ns": 4195.0, "ser_p95_ns": 5282.150000000001, "ser_p99_ns": 5960.24, "ser_ci_low_ns": 3743.826219512195, "ser_ci_high_ns": 4059.3917682926826, "deser_mean_ns": 1831.780487804878, "deser_median_ns": 1715.0, "deser_std_ns": 444.48616538595684, "deser_mad_ns": 259.0, "deser_cv": 0.24265252760641026, "deser_min_ns": 1168.0, "deser_max_ns": 3068.0, "deser_p5_ns": 1300.75, "deser_p25_ns": 1468.25, "deser_p50_ns": 1715.0, "deser_p75_ns": 1987.25, "deser_p95_ns": 2716.55, "deser_p99_ns": 3055.85, "deser_ci_low_ns": 1740.7911585365853, "deser_ci_high_ns": 1936.0588414634144, "total_mean_ns": 5730.951219512195, "total_median_ns": 5558.0, "total_std_ns": 1016.2046175606471, "total_mad_ns": 556.5, "total_cv": 0.17731866467485724, "total_min_ns": 3525.0, "total_max_ns": 8986.0, "total_p5_ns": 4661.65, "total_p25_ns": 5061.25, "total_p50_ns": 5558.0, "total_p75_ns": 6172.5, "total_p95_ns": 7639.0, "total_p99_ns": 8457.88, "total_ci_low_ns": 5534.696646341463, "total_ci_high_ns": 5955.211585365853, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.9287262872628727, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.515843017500899}, {"serializer": "v8-serializer", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "v8-13.6.233.17-node.48", "avg_time_ser_ns": 5208.320512820513, "avg_time_deser_ns": 4874.0641025641025, "avg_time_total_ns": 10082.384615384615, "median_size_bytes": 239.0, "avg_ops_per_sec": 99182.88561161509, "min_ops_per_sec": 72332.73056057867, "max_ops_per_sec": 148038.49000740194, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 5208.320512820513, "ser_median_ns": 5290.0, "ser_std_ns": 820.6552733977755, "ser_mad_ns": 514.0, "ser_cv": 0.1575662003476353, "ser_min_ns": 3268.0, "ser_max_ns": 7379.0, "ser_p5_ns": 3906.2, "ser_p25_ns": 4705.5, "ser_p50_ns": 5290.0, "ser_p75_ns": 5726.0, "ser_p95_ns": 6297.9, "ser_p99_ns": 7238.860000000001, "ser_ci_low_ns": 5024.233012820512, "ser_ci_high_ns": 5404.30608974359, "deser_mean_ns": 4874.0641025641025, "deser_median_ns": 4882.0, "deser_std_ns": 581.9196476808257, "deser_mad_ns": 271.5, "deser_cv": 0.11939105342802013, "deser_min_ns": 3487.0, "deser_max_ns": 6446.0, "deser_p5_ns": 3896.4, "deser_p25_ns": 4615.0, "deser_p50_ns": 4882.0, "deser_p75_ns": 5149.25, "deser_p95_ns": 5817.949999999999, "deser_p99_ns": 6410.58, "deser_ci_low_ns": 4750.661538461539, "deser_ci_high_ns": 4998.776282051282, "total_mean_ns": 10082.384615384615, "total_median_ns": 10194.0, "total_std_ns": 1341.6046239607876, "total_mad_ns": 818.0, "total_cv": 0.13306421795431667, "total_min_ns": 6755.0, "total_max_ns": 13825.0, "total_p5_ns": 7645.15, "total_p25_ns": 9294.0, "total_p50_ns": 10194.0, "total_p75_ns": 10976.25, "total_p95_ns": 12000.949999999997, "total_p99_ns": 13514.690000000002, "total_ci_low_ns": 9792.339743589744, "total_ci_high_ns": 10391.876923076923, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.0649329870745365}, {"serializer": "json-pack-msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "18.28.0", "avg_time_ser_ns": 2153.964285714286, "avg_time_deser_ns": 2613.2023809523807, "avg_time_total_ns": 4767.166666666667, "median_size_bytes": 208.0, "avg_ops_per_sec": 209768.2061322239, "min_ops_per_sec": 155376.00994406463, "max_ops_per_sec": 284495.0213371266, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 2153.964285714286, "ser_median_ns": 2136.5, "ser_std_ns": 248.81117078845597, "ser_mad_ns": 132.0, "ser_cv": 0.11551313660985171, "ser_min_ns": 1620.0, "ser_max_ns": 2901.0, "ser_p5_ns": 1769.65, "ser_p25_ns": 2012.5, "ser_p50_ns": 2136.5, "ser_p75_ns": 2279.75, "ser_p95_ns": 2589.7999999999997, "ser_p99_ns": 2814.6800000000003, "ser_ci_low_ns": 2099.4464285714284, "ser_ci_high_ns": 2207.541964285714, "deser_mean_ns": 2613.2023809523807, "deser_median_ns": 2578.0, "deser_std_ns": 333.56377182449063, "deser_mad_ns": 226.0, "deser_cv": 0.1276455946373826, "deser_min_ns": 1895.0, "deser_max_ns": 3628.0, "deser_p5_ns": 2083.75, "deser_p25_ns": 2434.75, "deser_p50_ns": 2578.0, "deser_p75_ns": 2828.0, "deser_p95_ns": 3120.3499999999995, "deser_p99_ns": 3550.81, "deser_ci_low_ns": 2542.55119047619, "deser_ci_high_ns": 2686.571726190476, "total_mean_ns": 4767.166666666667, "total_median_ns": 4723.0, "total_std_ns": 551.7349816350594, "total_mad_ns": 380.0, "total_cv": 0.1157364573579819, "total_min_ns": 3515.0, "total_max_ns": 6436.0, "total_p5_ns": 3940.8, "total_p25_ns": 4417.75, "total_p50_ns": 4723.0, "total_p75_ns": 5164.75, "total_p95_ns": 5624.45, "total_p99_ns": 6147.160000000001, "total_ci_low_ns": 4655.221130952381, "total_ci_high_ns": 4883.721428571428, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.782010582010582, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.922111851793796}, {"serializer": "cbor-x", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "1.6.4", "avg_time_ser_ns": 3906.285714285714, "avg_time_deser_ns": 8167.511904761905, "avg_time_total_ns": 12073.797619047618, "median_size_bytes": 192.0, "avg_ops_per_sec": 82823.9822756678, "min_ops_per_sec": 60661.207158022444, "max_ops_per_sec": 139314.572304263, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 3906.285714285714, "ser_median_ns": 3918.0, "ser_std_ns": 537.5595135767137, "ser_mad_ns": 320.5, "ser_cv": 0.1376139772907035, "ser_min_ns": 2557.0, "ser_max_ns": 5288.0, "ser_p5_ns": 3076.45, "ser_p25_ns": 3606.25, "ser_p50_ns": 3918.0, "ser_p75_ns": 4234.25, "ser_p95_ns": 4770.45, "ser_p99_ns": 5141.09, "ser_ci_low_ns": 3790.1642857142856, "ser_ci_high_ns": 4018.673214285714, "deser_mean_ns": 8167.511904761905, "deser_median_ns": 8044.5, "deser_std_ns": 1431.4236025639127, "deser_mad_ns": 776.0, "deser_cv": 0.17525822052727585, "deser_min_ns": 4621.0, "deser_max_ns": 11383.0, "deser_p5_ns": 6187.9, "deser_p25_ns": 7402.0, "deser_p50_ns": 8044.5, "deser_p75_ns": 8850.0, "deser_p95_ns": 10921.199999999999, "deser_p99_ns": 11316.6, "deser_ci_low_ns": 7881.050892857143, "deser_ci_high_ns": 8475.009226190476, "total_mean_ns": 12073.797619047618, "total_median_ns": 11922.0, "total_std_ns": 1871.7064682066987, "total_mad_ns": 1165.5, "total_cv": 0.15502218334800438, "total_min_ns": 7178.0, "total_max_ns": 16485.0, "total_p5_ns": 9283.6, "total_p25_ns": 11078.0, "total_p50_ns": 11922.0, "total_p75_ns": 13135.5, "total_p95_ns": 15403.55, "total_p99_ns": 16016.050000000001, "total_ci_low_ns": 11696.072916666666, "total_ci_high_ns": 12475.541666666666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.038061790817636}, {"serializer": "bser", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "2.1.1", "avg_time_ser_ns": 8568.397435897436, "avg_time_deser_ns": 7778.346153846154, "avg_time_total_ns": 16346.74358974359, "median_size_bytes": 266.0, "avg_ops_per_sec": 61174.263516767234, "min_ops_per_sec": 49190.81115647597, "max_ops_per_sec": 80508.81571532083, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 8568.397435897436, "ser_median_ns": 8577.0, "ser_std_ns": 844.3219417331526, "ser_mad_ns": 447.0, "ser_cv": 0.09853907315221544, "ser_min_ns": 6537.0, "ser_max_ns": 10629.0, "ser_p5_ns": 7146.0, "ser_p25_ns": 8144.75, "ser_p50_ns": 8577.0, "ser_p75_ns": 9033.5, "ser_p95_ns": 10214.049999999997, "ser_p99_ns": 10599.74, "ser_ci_low_ns": 8389.107051282052, "ser_ci_high_ns": 8753.022756410257, "deser_mean_ns": 7778.346153846154, "deser_median_ns": 7681.5, "deser_std_ns": 776.4773071323518, "deser_mad_ns": 407.5, "deser_cv": 0.0998255016907942, "deser_min_ns": 5814.0, "deser_max_ns": 9803.0, "deser_p5_ns": 6665.6, "deser_p25_ns": 7361.75, "deser_p50_ns": 7681.5, "deser_p75_ns": 8169.0, "deser_p95_ns": 9186.1, "deser_p99_ns": 9532.730000000001, "deser_ci_low_ns": 7604.215384615384, "deser_ci_high_ns": 7951.363461538462, "total_mean_ns": 16346.74358974359, "total_median_ns": 16326.5, "total_std_ns": 1543.5054927428039, "total_mad_ns": 791.5, "total_cv": 0.09442281175262594, "total_min_ns": 12421.0, "total_max_ns": 20329.0, "total_p5_ns": 13930.45, "total_p25_ns": 15650.25, "total_p50_ns": 16326.5, "total_p75_ns": 17242.25, "total_p95_ns": 19501.6, "total_p99_ns": 19955.550000000003, "total_ci_low_ns": 16006.028846153848, "total_ci_high_ns": 16689.808974358974, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.61755185140144}, {"serializer": "sia", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "2.3.0", "avg_time_ser_ns": 8328.96511627907, "avg_time_deser_ns": 4057.8488372093025, "avg_time_total_ns": 12386.813953488372, "median_size_bytes": 306.0, "avg_ops_per_sec": 80731.00990738464, "min_ops_per_sec": 64641.241111829346, "max_ops_per_sec": 93967.29937981583, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 8328.96511627907, "ser_median_ns": 8129.5, "ser_std_ns": 1119.3071328247395, "ser_mad_ns": 656.0, "ser_cv": 0.13438729988639755, "ser_min_ns": 6887.0, "ser_max_ns": 11478.0, "ser_p5_ns": 7035.25, "ser_p25_ns": 7472.25, "ser_p50_ns": 8129.5, "ser_p75_ns": 8736.25, "ser_p95_ns": 10859.75, "ser_p99_ns": 11342.0, "ser_ci_low_ns": 8108.071220930233, "ser_ci_high_ns": 8575.051744186047, "deser_mean_ns": 4057.8488372093025, "deser_median_ns": 4030.0, "deser_std_ns": 199.11991760461157, "deser_mad_ns": 123.5, "deser_cv": 0.0490703142459964, "deser_min_ns": 3682.0, "deser_max_ns": 4511.0, "deser_p5_ns": 3754.5, "deser_p25_ns": 3922.0, "deser_p50_ns": 4030.0, "deser_p75_ns": 4160.5, "deser_p95_ns": 4442.0, "deser_p99_ns": 4482.1, "deser_ci_low_ns": 4016.373837209302, "deser_ci_high_ns": 4098.42558139535, "total_mean_ns": 12386.813953488372, "total_median_ns": 12237.0, "total_std_ns": 1169.2380476354265, "total_mad_ns": 686.0, "total_cv": 0.09439376840774669, "total_min_ns": 10642.0, "total_max_ns": 15470.0, "total_p5_ns": 10894.5, "total_p25_ns": 11549.5, "total_p50_ns": 12237.0, "total_p75_ns": 12915.5, "total_p95_ns": 15071.25, "total_p99_ns": 15286.400000000001, "total_ci_low_ns": 12148.604069767442, "total_ci_high_ns": 12644.621511627907, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.863157978329314}, {"serializer": "flatbuffers", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "24.12.23", "avg_time_ser_ns": 12489.707317073171, "avg_time_deser_ns": 5831.012195121952, "avg_time_total_ns": 18320.719512195123, "median_size_bytes": 272.0, "avg_ops_per_sec": 54583.00910804041, "min_ops_per_sec": 38880.24883359254, "max_ops_per_sec": 84026.55239055541, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 12489.707317073171, "ser_median_ns": 12999.0, "ser_std_ns": 2285.627204018247, "ser_mad_ns": 1483.0, "ser_cv": 0.18300086190921722, "ser_min_ns": 7406.0, "ser_max_ns": 19545.0, "ser_p5_ns": 9197.05, "ser_p25_ns": 10642.0, "ser_p50_ns": 12999.0, "ser_p75_ns": 13716.5, "ser_p95_ns": 15964.75, "ser_p99_ns": 18783.6, "ser_ci_low_ns": 11989.651524390245, "ser_ci_high_ns": 12999.825, "deser_mean_ns": 5831.012195121952, "deser_median_ns": 5781.0, "deser_std_ns": 598.1086546877631, "deser_mad_ns": 273.0, "deser_cv": 0.10257372728325327, "deser_min_ns": 4495.0, "deser_max_ns": 7740.0, "deser_p5_ns": 4955.25, "deser_p25_ns": 5541.25, "deser_p50_ns": 5781.0, "deser_p75_ns": 6072.0, "deser_p95_ns": 6864.25, "deser_p99_ns": 7665.48, "deser_ci_low_ns": 5705.010670731708, "deser_ci_high_ns": 5961.1990853658535, "total_mean_ns": 18320.719512195123, "total_median_ns": 18845.0, "total_std_ns": 2556.775265810722, "total_mad_ns": 1391.5, "total_cv": 0.13955648762095907, "total_min_ns": 11901.0, "total_max_ns": 25720.0, "total_p5_ns": 14403.9, "total_p25_ns": 16296.5, "total_p50_ns": 18845.0, "total_p75_ns": 19611.75, "total_p95_ns": 22177.2, "total_p99_ns": 24875.17, "total_ci_low_ns": 17767.894207317073, "total_ci_high_ns": 18845.37134146341, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.969878734622086}, {"serializer": "google-protobuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "3.21.4", "avg_time_ser_ns": 283.3370786516854, "avg_time_deser_ns": 3740.2359550561796, "avg_time_total_ns": 4023.5730337078653, "median_size_bytes": 123.0, "avg_ops_per_sec": 248535.31714781985, "min_ops_per_sec": 153869.8261270965, "max_ops_per_sec": 476190.4761904762, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 283.3370786516854, "ser_median_ns": 265.0, "ser_std_ns": 62.16399568520802, "ser_mad_ns": 38.0, "ser_cv": 0.21939943752165264, "ser_min_ns": 161.0, "ser_max_ns": 450.0, "ser_p5_ns": 210.4, "ser_p25_ns": 236.0, "ser_p50_ns": 265.0, "ser_p75_ns": 321.0, "ser_p95_ns": 423.0, "ser_p99_ns": 448.24, "ser_ci_low_ns": 270.2797752808989, "ser_ci_high_ns": 297.02415730337077, "deser_mean_ns": 3740.2359550561796, "deser_median_ns": 3816.0, "deser_std_ns": 950.2932803574607, "deser_mad_ns": 801.0, "deser_cv": 0.2540730830291125, "deser_min_ns": 1883.0, "deser_max_ns": 6051.0, "deser_p5_ns": 2409.2, "deser_p25_ns": 2935.0, "deser_p50_ns": 3816.0, "deser_p75_ns": 4524.0, "deser_p95_ns": 5018.4, "deser_p99_ns": 5745.640000000001, "deser_ci_low_ns": 3549.7390449438203, "deser_ci_high_ns": 3928.006741573033, "total_mean_ns": 4023.5730337078653, "total_median_ns": 4110.0, "total_std_ns": 964.4900311427001, "total_mad_ns": 786.0, "total_cv": 0.23970983577596164, "total_min_ns": 2100.0, "total_max_ns": 6499.0, "total_p5_ns": 2637.4, "total_p25_ns": 3227.0, "total_p50_ns": 4110.0, "total_p75_ns": 4808.0, "total_p95_ns": 5311.8, "total_p99_ns": 6107.400000000002, "total_ci_low_ns": 3832.1980337078653, "total_ci_high_ns": 4231.42191011236, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.38352059925093634, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.6925327411312209}, {"serializer": "simdjson-parse+JSON.stringify", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "0.9.2", "avg_time_ser_ns": 1566.6708860759493, "avg_time_deser_ns": 10198.45569620253, "avg_time_total_ns": 11765.12658227848, "median_size_bytes": 257.0, "avg_ops_per_sec": 84996.96055172711, "min_ops_per_sec": 66862.79753944905, "max_ops_per_sec": 117647.05882352941, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 1566.6708860759493, "ser_median_ns": 1489.0, "ser_std_ns": 445.8570174831259, "ser_mad_ns": 319.0, "ser_cv": 0.28458881916154505, "ser_min_ns": 954.0, "ser_max_ns": 2730.0, "ser_p5_ns": 1032.9, "ser_p25_ns": 1180.0, "ser_p50_ns": 1489.0, "ser_p75_ns": 1831.5, "ser_p95_ns": 2389.5999999999985, "ser_p99_ns": 2666.8199999999997, "ser_ci_low_ns": 1469.298417721519, "ser_ci_high_ns": 1669.953164556962, "deser_mean_ns": 10198.45569620253, "deser_median_ns": 10098.0, "deser_std_ns": 1163.2791824602305, "deser_mad_ns": 584.0, "deser_cv": 0.11406424826588069, "deser_min_ns": 7497.0, "deser_max_ns": 13564.0, "deser_p5_ns": 8465.5, "deser_p25_ns": 9584.5, "deser_p50_ns": 10098.0, "deser_p75_ns": 10692.5, "deser_p95_ns": 12063.099999999997, "deser_p99_ns": 13381.48, "deser_ci_low_ns": 9950.145569620252, "deser_ci_high_ns": 10454.97088607595, "total_mean_ns": 11765.12658227848, "total_median_ns": 11662.0, "total_std_ns": 1261.9824693720082, "total_mad_ns": 847.0, "total_cv": 0.10726467416618374, "total_min_ns": 8500.0, "total_max_ns": 14956.0, "total_p5_ns": 9929.0, "total_p25_ns": 10880.0, "total_p50_ns": 11662.0, "total_p75_ns": 12573.5, "total_p95_ns": 13837.8, "total_p99_ns": 14943.52, "total_ci_low_ns": 11481.721835443039, "total_ci_high_ns": 12039.352531645569, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.90438174370037}, {"serializer": "devalue", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "5.8.1", "avg_time_ser_ns": 12355.40625, "avg_time_deser_ns": 5704.1875, "avg_time_total_ns": 18059.59375, "median_size_bytes": 301.0, "avg_ops_per_sec": 55372.23117214361, "min_ops_per_sec": 31246.094238220223, "max_ops_per_sec": 111507.58251561107, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 12355.40625, "ser_median_ns": 10434.0, "ser_std_ns": 4377.793168103921, "ser_mad_ns": 3021.0, "ser_cv": 0.3543220740397687, "ser_min_ns": 6104.0, "ser_max_ns": 22739.0, "ser_p5_ns": 7105.75, "ser_p25_ns": 8728.5, "ser_p50_ns": 10434.0, "ser_p75_ns": 15990.5, "ser_p95_ns": 19509.75, "ser_p99_ns": 21809.899999999998, "ser_ci_low_ns": 11481.950260416668, "ser_ci_high_ns": 13219.826302083333, "deser_mean_ns": 5704.1875, "deser_median_ns": 5231.5, "deser_std_ns": 1821.2964746806629, "deser_mad_ns": 1328.0, "deser_cv": 0.31929113036355533, "deser_min_ns": 2659.0, "deser_max_ns": 10968.0, "deser_p5_ns": 3548.5, "deser_p25_ns": 4191.0, "deser_p50_ns": 5231.5, "deser_p75_ns": 7069.0, "deser_p95_ns": 8789.5, "deser_p99_ns": 10279.249999999998, "deser_ci_low_ns": 5360.8609375, "deser_ci_high_ns": 6058.9546875, "total_mean_ns": 18059.59375, "total_median_ns": 15351.0, "total_std_ns": 6118.782719631887, "total_mad_ns": 3923.5, "total_cv": 0.33881065124357446, "total_min_ns": 8968.0, "total_max_ns": 32004.0, "total_p5_ns": 10832.0, "total_p25_ns": 13172.0, "total_p50_ns": 15351.0, "total_p75_ns": 23059.0, "total_p95_ns": 28089.5, "total_p99_ns": 31833.0, "total_ci_low_ns": 16880.6609375, "total_ci_high_ns": 19294.21328125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.2928595112181}, {"serializer": "@msgpack/msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "3.1.3", "avg_time_ser_ns": 3684.240963855422, "avg_time_deser_ns": 3247.1927710843374, "avg_time_total_ns": 6931.433734939759, "median_size_bytes": 199.0, "avg_ops_per_sec": 144270.29648415025, "min_ops_per_sec": 107192.62514738986, "max_ops_per_sec": 212359.31195582927, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 3684.240963855422, "ser_median_ns": 3672.0, "ser_std_ns": 522.2618628843675, "ser_mad_ns": 268.0, "ser_cv": 0.1417556202235588, "ser_min_ns": 2473.0, "ser_max_ns": 5239.0, "ser_p5_ns": 2866.9, "ser_p25_ns": 3379.0, "ser_p50_ns": 3672.0, "ser_p75_ns": 3928.5, "ser_p95_ns": 4543.599999999999, "ser_p99_ns": 5125.019999999999, "ser_ci_low_ns": 3571.29186746988, "ser_ci_high_ns": 3792.734939759036, "deser_mean_ns": 3247.1927710843374, "deser_median_ns": 3245.0, "deser_std_ns": 510.0520408128463, "deser_mad_ns": 288.0, "deser_cv": 0.1570747648106288, "deser_min_ns": 2121.0, "deser_max_ns": 4798.0, "deser_p5_ns": 2309.3, "deser_p25_ns": 2943.0, "deser_p50_ns": 3245.0, "deser_p75_ns": 3497.5, "deser_p95_ns": 4064.599999999999, "deser_p99_ns": 4579.059999999998, "deser_ci_low_ns": 3138.6846385542167, "deser_ci_high_ns": 3353.735240963855, "total_mean_ns": 6931.433734939759, "total_median_ns": 6920.0, "total_std_ns": 967.6155277690528, "total_mad_ns": 568.0, "total_cv": 0.13959817907390878, "total_min_ns": 4709.0, "total_max_ns": 9329.0, "total_p5_ns": 5174.2, "total_p25_ns": 6410.0, "total_p50_ns": 6920.0, "total_p75_ns": 7503.5, "total_p95_ns": 8403.2, "total_p99_ns": 9142.039999999999, "total_ci_low_ns": 6725.949698795181, "total_ci_high_ns": 7135.8587349397585, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 0.9900937081659973, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.9158943272314484}, {"serializer": "bson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "javascript", "serializer_version": "6.10.4", "avg_time_ser_ns": 5605.453488372093, "avg_time_deser_ns": 4382.058139534884, "avg_time_total_ns": 9987.511627906977, "median_size_bytes": 291.0, "avg_ops_per_sec": 100125.03987537925, "min_ops_per_sec": 77190.27402547278, "max_ops_per_sec": 148192.05690574987, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 5605.453488372093, "ser_median_ns": 5671.0, "ser_std_ns": 838.3161927266394, "ser_mad_ns": 525.5, "ser_cv": 0.14955367919217166, "ser_min_ns": 3649.0, "ser_max_ns": 7529.0, "ser_p5_ns": 4071.25, "ser_p25_ns": 5047.0, "ser_p50_ns": 5671.0, "ser_p75_ns": 6154.5, "ser_p95_ns": 6960.0, "ser_p99_ns": 7297.800000000001, "ser_ci_low_ns": 5422.173546511628, "ser_ci_high_ns": 5774.8311046511635, "deser_mean_ns": 4382.058139534884, "deser_median_ns": 4367.0, "deser_std_ns": 500.1768241367814, "deser_mad_ns": 326.5, "deser_cv": 0.11414198721468144, "deser_min_ns": 3056.0, "deser_max_ns": 5698.0, "deser_p5_ns": 3627.75, "deser_p25_ns": 4091.0, "deser_p50_ns": 4367.0, "deser_p75_ns": 4763.0, "deser_p95_ns": 5154.5, "deser_p99_ns": 5526.300000000001, "deser_ci_low_ns": 4281.816569767442, "deser_ci_high_ns": 4488.671511627907, "total_mean_ns": 9987.511627906977, "total_median_ns": 10099.0, "total_std_ns": 1272.291334969971, "total_mad_ns": 707.0, "total_cv": 0.12738822064696786, "total_min_ns": 6748.0, "total_max_ns": 12955.0, "total_p5_ns": 7620.75, "total_p25_ns": 9191.5, "total_p50_ns": 10099.0, "total_p75_ns": 10718.0, "total_p95_ns": 11966.75, "total_p99_ns": 12710.2, "total_ci_low_ns": 9726.128488372093, "total_ci_high_ns": 10241.774127906976, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "JSON.stringify", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.137895587963866}, {"serializer": "JSON.stringify", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "node-24.15.0", "avg_time_ser_ns": 69724.54651162791, "avg_time_deser_ns": 129591.95348837209, "avg_time_total_ns": 199316.5, "median_size_bytes": 25746.0, "avg_ops_per_sec": 5017.146096785766, "min_ops_per_sec": 3646.560746232191, "max_ops_per_sec": 6287.844966894496, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 69724.54651162791, "ser_median_ns": 68650.0, "ser_std_ns": 5705.25298641416, "ser_mad_ns": 3126.0, "ser_cv": 0.0818256019128457, "ser_min_ns": 59490.0, "ser_max_ns": 87726.0, "ser_p5_ns": 62460.75, "ser_p25_ns": 65907.0, "ser_p50_ns": 68650.0, "ser_p75_ns": 72488.0, "ser_p95_ns": 79606.75, "ser_p99_ns": 87103.8, "ser_ci_low_ns": 68528.64476744186, "ser_ci_high_ns": 70914.00290697675, "deser_mean_ns": 129591.95348837209, "deser_median_ns": 121981.5, "deser_std_ns": 23417.80263610772, "deser_mad_ns": 13538.5, "deser_cv": 0.1807041410037, "deser_min_ns": 97036.0, "deser_max_ns": 187237.0, "deser_p5_ns": 102562.25, "deser_p25_ns": 112442.5, "deser_p50_ns": 121981.5, "deser_p75_ns": 142862.0, "deser_p95_ns": 181487.0, "deser_p99_ns": 186873.2, "deser_ci_low_ns": 125012.85610465116, "deser_ci_high_ns": 134555.4895348837, "total_mean_ns": 199316.5, "total_median_ns": 190393.0, "total_std_ns": 27318.736739267646, "total_mad_ns": 14501.0, "total_cv": 0.13706209340053455, "total_min_ns": 159037.0, "total_max_ns": 274231.0, "total_p5_ns": 167242.5, "total_p25_ns": 180381.75, "total_p50_ns": 190393.0, "total_p75_ns": 214225.5, "total_p95_ns": 259330.75, "total_p99_ns": 269068.10000000003, "total_ci_low_ns": 193765.95523255813, "total_ci_high_ns": 205011.8872093023, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.9784279574852928}, {"serializer": "simdjson-parse+JSON.stringify", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "0.9.2", "avg_time_ser_ns": 67354.30681818182, "avg_time_deser_ns": 314522.0568181818, "avg_time_total_ns": 381876.36363636365, "median_size_bytes": 25746.0, "avg_ops_per_sec": 2618.6485868819987, "min_ops_per_sec": 2313.5455780046595, "max_ops_per_sec": 2946.844813258444, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 67354.30681818182, "ser_median_ns": 67410.5, "ser_std_ns": 3618.2310955911043, "ser_mad_ns": 2146.5, "ser_cv": 0.053719372472472514, "ser_min_ns": 58768.0, "ser_max_ns": 77453.0, "ser_p5_ns": 62246.7, "ser_p25_ns": 65001.75, "ser_p50_ns": 67410.5, "ser_p75_ns": 68931.0, "ser_p95_ns": 73872.75, "ser_p99_ns": 75578.15, "ser_ci_low_ns": 66566.253125, "ser_ci_high_ns": 68125.24829545454, "deser_mean_ns": 314522.0568181818, "deser_median_ns": 309080.0, "deser_std_ns": 16788.544902381007, "deser_mad_ns": 9968.0, "deser_cv": 0.05337795724795889, "deser_min_ns": 277107.0, "deser_max_ns": 360400.0, "deser_p5_ns": 295606.45, "deser_p25_ns": 302652.25, "deser_p50_ns": 309080.0, "deser_p75_ns": 324039.75, "deser_p95_ns": 351719.5999999999, "deser_p99_ns": 360237.31, "deser_ci_low_ns": 310942.5821022727, "deser_ci_high_ns": 318123.3928977273, "total_mean_ns": 381876.36363636365, "total_median_ns": 377833.0, "total_std_ns": 18544.566617089597, "total_mad_ns": 11898.5, "total_cv": 0.04856170316618076, "total_min_ns": 339346.0, "total_max_ns": 432237.0, "total_p5_ns": 359730.2, "total_p25_ns": 368874.5, "total_p50_ns": 377833.0, "total_p75_ns": 394256.0, "total_p95_ns": 421500.14999999997, "total_p99_ns": 431454.0, "total_ci_low_ns": 378171.1025568182, "total_ci_high_ns": 385785.9732954546, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.477149331033875}, {"serializer": "avsc", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "5.7.9", "avg_time_ser_ns": 295500.3604651163, "avg_time_deser_ns": 228377.2558139535, "avg_time_total_ns": 523877.61627906974, "median_size_bytes": 10448.0, "avg_ops_per_sec": 1908.8427696198796, "min_ops_per_sec": 1621.7285680461089, "max_ops_per_sec": 2113.990601197787, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 295500.3604651163, "ser_median_ns": 292395.0, "ser_std_ns": 21193.223156534117, "ser_mad_ns": 11787.5, "ser_cv": 0.07171978783097278, "ser_min_ns": 261210.0, "ser_max_ns": 365469.0, "ser_p5_ns": 269305.5, "ser_p25_ns": 281369.75, "ser_p50_ns": 292395.0, "ser_p75_ns": 307061.5, "ser_p95_ns": 335022.5, "ser_p99_ns": 350897.45000000007, "ser_ci_low_ns": 291438.7194767442, "ser_ci_high_ns": 300015.01656976744, "deser_mean_ns": 228377.2558139535, "deser_median_ns": 225639.0, "deser_std_ns": 10185.060453990265, "deser_mad_ns": 4871.0, "deser_cv": 0.044597525343274456, "deser_min_ns": 211829.0, "deser_max_ns": 256665.0, "deser_p5_ns": 216892.0, "deser_p25_ns": 221167.5, "deser_p50_ns": 225639.0, "deser_p75_ns": 231555.5, "deser_p95_ns": 250424.5, "deser_p99_ns": 256392.15, "deser_ci_low_ns": 226242.88546511627, "deser_ci_high_ns": 230598.96656976745, "total_mean_ns": 523877.61627906974, "total_median_ns": 515473.5, "total_std_ns": 26253.304953256324, "total_mad_ns": 14644.5, "total_cv": 0.0501134313386491, "total_min_ns": 473039.0, "total_max_ns": 616626.0, "total_p5_ns": 489209.25, "total_p25_ns": 507743.5, "total_p50_ns": 515473.5, "total_p75_ns": 539890.0, "total_p95_ns": 566714.0, "total_p99_ns": 588438.3000000002, "total_ci_low_ns": 518571.15174418606, "total_ci_high_ns": 529181.15, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.404715880101893}, {"serializer": "protobufjs", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "7.6.5", "avg_time_ser_ns": 144205.1208791209, "avg_time_deser_ns": 165871.3186813187, "avg_time_total_ns": 310076.43956043955, "median_size_bytes": 12477.0, "avg_ops_per_sec": 3225.011230835814, "min_ops_per_sec": 2644.4672456286958, "max_ops_per_sec": 3677.28175332794, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 144205.1208791209, "ser_median_ns": 139761.0, "ser_std_ns": 12408.074555470514, "ser_mad_ns": 4805.0, "ser_cv": 0.0860446181094464, "ser_min_ns": 127787.0, "ser_max_ns": 182521.0, "ser_p5_ns": 130206.0, "ser_p25_ns": 136023.0, "ser_p50_ns": 139761.0, "ser_p75_ns": 148425.0, "ser_p95_ns": 168368.5, "ser_p99_ns": 179115.39999999997, "ser_ci_low_ns": 141552.58983516484, "ser_ci_high_ns": 146917.21373626371, "deser_mean_ns": 165871.3186813187, "deser_median_ns": 160446.0, "deser_std_ns": 16426.20127511675, "deser_mad_ns": 11034.0, "deser_cv": 0.09902978649778321, "deser_min_ns": 142786.0, "deser_max_ns": 209832.0, "deser_p5_ns": 146243.0, "deser_p25_ns": 153076.0, "deser_p50_ns": 160446.0, "deser_p75_ns": 177534.0, "deser_p95_ns": 194375.0, "deser_p99_ns": 207923.09999999998, "deser_ci_low_ns": 162643.96373626374, "deser_ci_high_ns": 169236.96758241756, "total_mean_ns": 310076.43956043955, "total_median_ns": 304710.0, "total_std_ns": 25159.03331927114, "total_mad_ns": 15692.0, "total_cv": 0.08113816501162187, "total_min_ns": 271940.0, "total_max_ns": 378148.0, "total_p5_ns": 280996.0, "total_p25_ns": 291887.5, "total_p50_ns": 304710.0, "total_p75_ns": 322874.0, "total_p95_ns": 355138.0, "total_p99_ns": 373594.0, "total_ci_low_ns": 304756.20027472527, "total_ci_high_ns": 315594.50109890115, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.930460941891553}, {"serializer": "cbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "9.0.2", "avg_time_ser_ns": 827979.4096385542, "avg_time_deser_ns": 1256791.8313253012, "avg_time_total_ns": 2084771.2409638555, "median_size_bytes": 19847.0, "avg_ops_per_sec": 479.66893458184336, "min_ops_per_sec": 447.7263782920761, "max_ops_per_sec": 500.95180843602844, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 827979.4096385542, "ser_median_ns": 829734.0, "ser_std_ns": 24705.646986081574, "ser_mad_ns": 13544.0, "ser_cv": 0.029838479916869633, "ser_min_ns": 771378.0, "ser_max_ns": 892618.0, "ser_p5_ns": 789814.8, "ser_p25_ns": 811836.5, "ser_p50_ns": 829734.0, "ser_p75_ns": 840697.0, "ser_p95_ns": 871776.7999999999, "ser_p99_ns": 889090.36, "ser_ci_low_ns": 822547.2153614458, "ser_ci_high_ns": 833632.3777108433, "deser_mean_ns": 1256791.8313253012, "deser_median_ns": 1250245.0, "deser_std_ns": 33291.28059608551, "deser_mad_ns": 18005.0, "deser_cv": 0.026489096894415268, "deser_min_ns": 1202238.0, "deser_max_ns": 1348429.0, "deser_p5_ns": 1220744.6, "deser_p25_ns": 1232478.0, "deser_p50_ns": 1250245.0, "deser_p75_ns": 1270366.5, "deser_p95_ns": 1328730.3, "deser_p99_ns": 1344759.5, "deser_ci_low_ns": 1250236.5475903614, "deser_ci_high_ns": 1264385.243373494, "total_mean_ns": 2084771.2409638555, "total_median_ns": 2067971.0, "total_std_ns": 50983.07052647066, "total_mad_ns": 25249.0, "total_cv": 0.02445499512114316, "total_min_ns": 1996200.0, "total_max_ns": 2233507.0, "total_p5_ns": 2028411.9, "total_p25_ns": 2049604.0, "total_p50_ns": 2067971.0, "total_p75_ns": 2109804.0, "total_p95_ns": 2192785.8, "total_p99_ns": 2232418.86, "total_ci_low_ns": 2074363.2852409638, "total_ci_high_ns": 2096193.8442771086, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 54.3488795680022}, {"serializer": "google-protobuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "3.21.4", "avg_time_ser_ns": 853.3736263736264, "avg_time_deser_ns": 116446.10989010989, "avg_time_total_ns": 117299.48351648351, "median_size_bytes": 12477.0, "avg_ops_per_sec": 8525.186727352257, "min_ops_per_sec": 6932.8415637717435, "max_ops_per_sec": 9649.34287974989, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 853.3736263736264, "ser_median_ns": 786.0, "ser_std_ns": 251.76513077565187, "ser_mad_ns": 164.0, "ser_cv": 0.29502333209606757, "ser_min_ns": 476.0, "ser_max_ns": 1547.0, "ser_p5_ns": 547.5, "ser_p25_ns": 665.5, "ser_p50_ns": 786.0, "ser_p75_ns": 1012.5, "ser_p95_ns": 1367.0, "ser_p99_ns": 1510.0999999999997, "ser_ci_low_ns": 802.5821428571429, "ser_ci_high_ns": 904.6403846153846, "deser_mean_ns": 116446.10989010989, "deser_median_ns": 112611.0, "deser_std_ns": 10631.258652828721, "deser_mad_ns": 4382.0, "deser_cv": 0.09129767119624205, "deser_min_ns": 102993.0, "deser_max_ns": 143397.0, "deser_p5_ns": 106313.0, "deser_p25_ns": 108740.5, "deser_p50_ns": 112611.0, "deser_p75_ns": 118693.5, "deser_p95_ns": 139568.0, "deser_p99_ns": 143038.8, "deser_ci_low_ns": 114297.31318681317, "deser_ci_high_ns": 118772.98461538462, "total_mean_ns": 117299.48351648351, "total_median_ns": 113484.0, "total_std_ns": 10698.204974420956, "total_mad_ns": 4597.0, "total_cv": 0.09120419505442742, "total_min_ns": 103634.0, "total_max_ns": 144241.0, "total_p5_ns": 107050.0, "total_p25_ns": 109377.5, "total_p50_ns": 113484.0, "total_p75_ns": 120152.0, "total_p95_ns": 140777.0, "total_p99_ns": 143720.8, "total_ci_low_ns": 115122.08324175824, "total_ci_high_ns": 119529.38241758241, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "json-pack-msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "18.28.0", "avg_time_ser_ns": 84474.08139534884, "avg_time_deser_ns": 86398.58139534884, "avg_time_total_ns": 170872.66279069768, "median_size_bytes": 20850.0, "avg_ops_per_sec": 5852.311210394739, "min_ops_per_sec": 5516.967433341241, "max_ops_per_sec": 6260.016025641025, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 84474.08139534884, "ser_median_ns": 83644.5, "ser_std_ns": 4398.930290329594, "ser_mad_ns": 2984.5, "ser_cv": 0.05207431933757376, "ser_min_ns": 77691.0, "ser_max_ns": 94844.0, "ser_p5_ns": 78702.25, "ser_p25_ns": 80932.5, "ser_p50_ns": 83644.5, "ser_p75_ns": 87698.25, "ser_p95_ns": 92808.75, "ser_p99_ns": 94408.8, "ser_ci_low_ns": 83565.07819767442, "ser_ci_high_ns": 85440.52790697674, "deser_mean_ns": 86398.58139534884, "deser_median_ns": 86271.0, "deser_std_ns": 2922.541289257433, "deser_mad_ns": 1978.5, "deser_cv": 0.03382626476104114, "deser_min_ns": 80655.0, "deser_max_ns": 94900.0, "deser_p5_ns": 81967.75, "deser_p25_ns": 84317.5, "deser_p50_ns": 86271.0, "deser_p75_ns": 88347.0, "deser_p95_ns": 90878.5, "deser_p99_ns": 92604.15000000001, "deser_ci_low_ns": 85809.21627906978, "deser_ci_high_ns": 87045.08488372093, "total_mean_ns": 170872.66279069768, "total_median_ns": 171216.0, "total_std_ns": 5784.337463938012, "total_mad_ns": 4953.0, "total_cv": 0.0338517429849107, "total_min_ns": 159744.0, "total_max_ns": 181259.0, "total_p5_ns": 160873.25, "total_p25_ns": 166230.5, "total_p50_ns": 171216.0, "total_p75_ns": 175078.25, "total_p95_ns": 180042.5, "total_p99_ns": 181196.95, "total_ci_low_ns": 169717.91976744187, "total_ci_high_ns": 172077.60145348837, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.15494929658102}, {"serializer": "sia", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "2.3.0", "avg_time_ser_ns": 661882.9195402298, "avg_time_deser_ns": 317114.275862069, "avg_time_total_ns": 978997.1954022988, "median_size_bytes": 30550.0, "avg_ops_per_sec": 1021.4533858690683, "min_ops_per_sec": 935.8940642790761, "max_ops_per_sec": 1081.2517435184363, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 661882.9195402298, "ser_median_ns": 653789.0, "ser_std_ns": 26470.029416004596, "ser_mad_ns": 16799.0, "ser_cv": 0.039992011630080634, "ser_min_ns": 621437.0, "ser_max_ns": 745859.0, "ser_p5_ns": 629981.5, "ser_p25_ns": 641932.0, "ser_p50_ns": 653789.0, "ser_p75_ns": 679850.5, "ser_p95_ns": 708457.5, "ser_p99_ns": 727814.48, "ser_ci_low_ns": 656297.0873563219, "ser_ci_high_ns": 667395.967816092, "deser_mean_ns": 317114.275862069, "deser_median_ns": 313071.0, "deser_std_ns": 10846.313602336259, "deser_mad_ns": 5493.0, "deser_cv": 0.034203170364534255, "deser_min_ns": 303112.0, "deser_max_ns": 342364.0, "deser_p5_ns": 304063.3, "deser_p25_ns": 309421.5, "deser_p50_ns": 313071.0, "deser_p75_ns": 322312.5, "deser_p95_ns": 339481.2, "deser_p99_ns": 342262.52, "deser_ci_low_ns": 314966.76379310346, "deser_ci_high_ns": 319465.3732758621, "total_mean_ns": 978997.1954022988, "total_median_ns": 976393.0, "total_std_ns": 28898.235823211282, "total_mad_ns": 18911.0, "total_cv": 0.029518200827261965, "total_min_ns": 924854.0, "total_max_ns": 1068497.0, "total_p5_ns": 939920.3, "total_p25_ns": 958488.5, "total_p50_ns": 976393.0, "total_p75_ns": 995546.0, "total_p95_ns": 1028413.1, "total_p99_ns": 1050856.68, "total_ci_low_ns": 973201.4270114943, "total_ci_high_ns": 985061.7155172414, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 39.72187065527033}, {"serializer": "bser", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "2.1.1", "avg_time_ser_ns": 347805.4943820225, "avg_time_deser_ns": 298085.08988764044, "avg_time_total_ns": 645890.584269663, "median_size_bytes": 25855.0, "avg_ops_per_sec": 1548.249849671898, "min_ops_per_sec": 1437.653289782023, "max_ops_per_sec": 1679.1314188996316, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 347805.4943820225, "ser_median_ns": 345940.0, "ser_std_ns": 14433.952984293977, "ser_mad_ns": 9648.0, "ser_cv": 0.0415000717856401, "ser_min_ns": 308097.0, "ser_max_ns": 392943.0, "ser_p5_ns": 330698.6, "ser_p25_ns": 336830.0, "ser_p50_ns": 345940.0, "ser_p75_ns": 358480.0, "ser_p95_ns": 372869.6, "ser_p99_ns": 379009.9600000001, "ser_ci_low_ns": 344798.6176966292, "ser_ci_high_ns": 350779.9511235955, "deser_mean_ns": 298085.08988764044, "deser_median_ns": 295652.0, "deser_std_ns": 8966.64785550072, "deser_mad_ns": 4247.0, "deser_cv": 0.030080833157004227, "deser_min_ns": 281514.0, "deser_max_ns": 322023.0, "deser_p5_ns": 286625.6, "deser_p25_ns": 292291.0, "deser_p50_ns": 295652.0, "deser_p75_ns": 303179.0, "deser_p95_ns": 317114.4, "deser_p99_ns": 321135.08, "deser_ci_low_ns": 296256.77584269666, "deser_ci_high_ns": 300012.6550561798, "total_mean_ns": 645890.584269663, "total_median_ns": 644771.0, "total_std_ns": 18453.09936877382, "total_mad_ns": 12037.0, "total_cv": 0.02857000832368466, "total_min_ns": 595546.0, "total_max_ns": 695578.0, "total_p5_ns": 620539.2, "total_p25_ns": 631729.0, "total_p50_ns": 644771.0, "total_p75_ns": 656666.0, "total_p95_ns": 678431.4, "total_p99_ns": 684049.1200000001, "total_ci_low_ns": 642235.325, "total_ci_high_ns": 649692.4438202247, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 34.99641592584729}, {"serializer": "bson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "6.10.4", "avg_time_ser_ns": 185399.0975609756, "avg_time_deser_ns": 193888.4756097561, "avg_time_total_ns": 379287.5731707317, "median_size_bytes": 29448.0, "avg_ops_per_sec": 2636.521918290906, "min_ops_per_sec": 2430.0155520995336, "max_ops_per_sec": 2843.372808825829, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 185399.0975609756, "ser_median_ns": 183875.5, "ser_std_ns": 7432.80244676169, "ser_mad_ns": 4131.0, "ser_cv": 0.04009082322699617, "ser_min_ns": 171972.0, "ser_max_ns": 203186.0, "ser_p5_ns": 175460.35, "ser_p25_ns": 180559.25, "ser_p50_ns": 183875.5, "ser_p75_ns": 188474.0, "ser_p95_ns": 201706.15, "ser_p99_ns": 203001.32, "ser_ci_low_ns": 183830.5350609756, "ser_ci_high_ns": 187068.09664634147, "deser_mean_ns": 193888.4756097561, "deser_median_ns": 191078.5, "deser_std_ns": 9348.045238623334, "deser_mad_ns": 4169.5, "deser_cv": 0.04821351660651747, "deser_min_ns": 179723.0, "deser_max_ns": 221241.0, "deser_p5_ns": 181524.2, "deser_p25_ns": 187979.5, "deser_p50_ns": 191078.5, "deser_p75_ns": 197594.0, "deser_p95_ns": 212855.9, "deser_p99_ns": 216300.81, "deser_ci_low_ns": 191925.3243902439, "deser_ci_high_ns": 195923.8118902439, "total_mean_ns": 379287.5731707317, "total_median_ns": 376382.5, "total_std_ns": 13654.982294296207, "total_mad_ns": 7405.0, "total_cv": 0.036001660112786195, "total_min_ns": 351695.0, "total_max_ns": 411520.0, "total_p5_ns": 358758.35, "total_p25_ns": 370311.5, "total_p50_ns": 376382.5, "total_p75_ns": 389445.25, "total_p95_ns": 403050.95, "total_p99_ns": 408382.06, "total_ci_low_ns": 376421.16920731706, "total_ci_high_ns": 382241.6338414634, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.4002377722467}, {"serializer": "v8-serializer", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "v8-13.6.233.17-node.48", "avg_time_ser_ns": 85847.73076923077, "avg_time_deser_ns": 155689.39743589744, "avg_time_total_ns": 241537.12820512822, "median_size_bytes": 23652.0, "avg_ops_per_sec": 4140.150242867582, "min_ops_per_sec": 3711.4702989589327, "max_ops_per_sec": 4555.435089605408, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 85847.73076923077, "ser_median_ns": 84227.0, "ser_std_ns": 6064.89823401111, "ser_mad_ns": 3023.5, "ser_cv": 0.07064715840089356, "ser_min_ns": 72770.0, "ser_max_ns": 103467.0, "ser_p5_ns": 78050.4, "ser_p25_ns": 82023.75, "ser_p50_ns": 84227.0, "ser_p75_ns": 88189.5, "ser_p95_ns": 98678.7, "ser_p99_ns": 100687.30000000002, "ser_ci_low_ns": 84502.29294871795, "ser_ci_high_ns": 87201.68782051282, "deser_mean_ns": 155689.39743589744, "deser_median_ns": 154486.0, "deser_std_ns": 5141.335352185238, "deser_mad_ns": 3505.0, "deser_cv": 0.03302302813717356, "deser_min_ns": 146748.0, "deser_max_ns": 167132.0, "deser_p5_ns": 148848.2, "deser_p25_ns": 151939.0, "deser_p50_ns": 154486.0, "deser_p75_ns": 159783.5, "deser_p95_ns": 164972.4, "deser_p99_ns": 166957.98, "deser_ci_low_ns": 154582.63814102564, "deser_ci_high_ns": 156786.68173076923, "total_mean_ns": 241537.12820512822, "total_median_ns": 239192.0, "total_std_ns": 10106.30451472688, "total_mad_ns": 5033.0, "total_cv": 0.04184161909114024, "total_min_ns": 219518.0, "total_max_ns": 269435.0, "total_p5_ns": 228555.6, "total_p25_ns": 235944.0, "total_p50_ns": 239192.0, "total_p75_ns": 246572.5, "total_p95_ns": 261630.2, "total_p99_ns": 265580.38, "total_ci_low_ns": 239429.56987179487, "total_ci_high_ns": 243781.27596153846, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.8585976306783}, {"serializer": "devalue", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "5.8.1", "avg_time_ser_ns": 539470.7954545454, "avg_time_deser_ns": 220772.9659090909, "avg_time_total_ns": 760243.7613636364, "median_size_bytes": 33641.0, "avg_ops_per_sec": 1315.367584478848, "min_ops_per_sec": 1086.3082790812873, "max_ops_per_sec": 1472.7475430889112, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 539470.7954545454, "ser_median_ns": 531635.5, "ser_std_ns": 32264.38657143885, "ser_mad_ns": 19679.5, "ser_cv": 0.059807475850946916, "ser_min_ns": 488482.0, "ser_max_ns": 647515.0, "ser_p5_ns": 502651.3, "ser_p25_ns": 514788.0, "ser_p50_ns": 531635.5, "ser_p75_ns": 560954.5, "ser_p95_ns": 595436.2, "ser_p99_ns": 634705.1199999999, "ser_ci_low_ns": 532937.4227272727, "ser_ci_high_ns": 546127.9360795454, "deser_mean_ns": 220772.9659090909, "deser_median_ns": 217315.5, "deser_std_ns": 21063.18364036619, "deser_mad_ns": 15777.5, "deser_cv": 0.09540653473414636, "deser_min_ns": 190521.0, "deser_max_ns": 291796.0, "deser_p5_ns": 194820.0, "deser_p25_ns": 203200.5, "deser_p50_ns": 217315.5, "deser_p75_ns": 235499.5, "deser_p95_ns": 260515.99999999994, "deser_p99_ns": 272232.3099999999, "deser_ci_low_ns": 216521.93409090908, "deser_ci_high_ns": 225152.2943181818, "total_mean_ns": 760243.7613636364, "total_median_ns": 751034.5, "total_std_ns": 48867.9978285379, "total_mad_ns": 33499.0, "total_cv": 0.06427938026204147, "total_min_ns": 679003.0, "total_max_ns": 920549.0, "total_p5_ns": 700871.45, "total_p25_ns": 723881.25, "total_p50_ns": 751034.5, "total_p75_ns": 789788.0, "total_p95_ns": 831622.8, "total_p99_ns": 911748.08, "total_ci_low_ns": 750194.8028409091, "total_ci_high_ns": 770469.5545454544, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.23986069797848}, {"serializer": "msgpackr", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "1.12.1", "avg_time_ser_ns": 90543.37804878049, "avg_time_deser_ns": 121892.31707317074, "avg_time_total_ns": 212435.69512195123, "median_size_bytes": 20848.0, "avg_ops_per_sec": 4707.306836668566, "min_ops_per_sec": 4354.79375696767, "max_ops_per_sec": 5157.989209486574, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 90543.37804878049, "ser_median_ns": 89994.5, "ser_std_ns": 3645.4819852383553, "ser_mad_ns": 2417.5, "ser_cv": 0.04026227056907841, "ser_min_ns": 83021.0, "ser_max_ns": 100913.0, "ser_p5_ns": 85738.3, "ser_p25_ns": 87846.25, "ser_p50_ns": 89994.5, "ser_p75_ns": 92856.5, "ser_p95_ns": 96742.95, "ser_p99_ns": 100339.52, "ser_ci_low_ns": 89774.9481707317, "ser_ci_high_ns": 91317.73780487805, "deser_mean_ns": 121892.31707317074, "deser_median_ns": 121187.0, "deser_std_ns": 3786.289753274872, "deser_mad_ns": 2302.5, "deser_cv": 0.031062579202608808, "deser_min_ns": 110853.0, "deser_max_ns": 130784.0, "deser_p5_ns": 116912.15, "deser_p25_ns": 119069.5, "deser_p50_ns": 121187.0, "deser_p75_ns": 124633.75, "deser_p95_ns": 128706.35, "deser_p99_ns": 130100.36, "deser_ci_low_ns": 121070.60518292684, "deser_ci_high_ns": 122736.99420731707, "total_mean_ns": 212435.69512195123, "total_median_ns": 211133.0, "total_std_ns": 6186.706630396595, "total_mad_ns": 4272.5, "total_cv": 0.029122726417728634, "total_min_ns": 193874.0, "total_max_ns": 229632.0, "total_p5_ns": 204696.15, "total_p25_ns": 207649.5, "total_p50_ns": 211133.0, "total_p75_ns": 216580.75, "total_p95_ns": 222809.4, "total_p99_ns": 228312.51, "total_ci_low_ns": 211170.0033536585, "total_ci_high_ns": 213742.0469512195, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.699522512057209}, {"serializer": "flexbuffers", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "24.12.23", "avg_time_ser_ns": 1275759.7471264368, "avg_time_deser_ns": 857015.4367816092, "avg_time_total_ns": 2132775.1839080458, "median_size_bytes": 23704.0, "avg_ops_per_sec": 468.8726723496586, "min_ops_per_sec": 425.31382844116104, "max_ops_per_sec": 499.8008293694962, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 1275759.7471264368, "ser_median_ns": 1257117.0, "ser_std_ns": 56455.51003104608, "ser_mad_ns": 24758.0, "ser_cv": 0.04425246223531376, "ser_min_ns": 1184371.0, "ser_max_ns": 1448411.0, "ser_p5_ns": 1210349.0, "ser_p25_ns": 1238041.5, "ser_p50_ns": 1257117.0, "ser_p75_ns": 1294546.0, "ser_p95_ns": 1402705.2, "ser_p99_ns": 1429650.1, "ser_ci_low_ns": 1264223.8531609196, "ser_ci_high_ns": 1287660.4626436783, "deser_mean_ns": 857015.4367816092, "deser_median_ns": 856734.0, "deser_std_ns": 27157.825678756046, "deser_mad_ns": 20220.0, "deser_cv": 0.031688840729337524, "deser_min_ns": 794391.0, "deser_max_ns": 924609.0, "deser_p5_ns": 817180.2, "deser_p25_ns": 836605.0, "deser_p50_ns": 856734.0, "deser_p75_ns": 876264.0, "deser_p95_ns": 905436.2000000001, "deser_p99_ns": 917929.38, "deser_ci_low_ns": 851435.5204022989, "deser_ci_high_ns": 862598.9169540231, "total_mean_ns": 2132775.1839080458, "total_median_ns": 2120482.0, "total_std_ns": 71688.80988601194, "total_mad_ns": 39177.0, "total_cv": 0.03361292386882104, "total_min_ns": 2000797.0, "total_max_ns": 2351205.0, "total_p5_ns": 2038704.7, "total_p25_ns": 2087696.5, "total_p50_ns": 2120482.0, "total_p75_ns": 2169312.5, "total_p95_ns": 2279318.0, "total_p99_ns": 2311464.4, "total_ci_low_ns": 2118719.9175287355, "total_ci_high_ns": 2147324.589367816, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 39.588888724642125}, {"serializer": "@msgpack/msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "3.1.3", "avg_time_ser_ns": 124086.32926829268, "avg_time_deser_ns": 134436.15853658537, "avg_time_total_ns": 258522.48780487804, "median_size_bytes": 19848.0, "avg_ops_per_sec": 3868.135451159507, "min_ops_per_sec": 3524.142135700617, "max_ops_per_sec": 4076.541136376607, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 124086.32926829268, "ser_median_ns": 123167.0, "ser_std_ns": 3552.9767976742833, "ser_mad_ns": 2014.5, "ser_cv": 0.028633104215632255, "ser_min_ns": 118997.0, "ser_max_ns": 136013.0, "ser_p5_ns": 119816.4, "ser_p25_ns": 121868.5, "ser_p50_ns": 123167.0, "ser_p75_ns": 125854.25, "ser_p95_ns": 130666.7, "ser_p99_ns": 134943.8, "ser_ci_low_ns": 123353.4381097561, "ser_ci_high_ns": 124885.00091463415, "deser_mean_ns": 134436.15853658537, "deser_median_ns": 133195.5, "deser_std_ns": 4565.009176006659, "deser_mad_ns": 2607.5, "deser_cv": 0.03395670648209083, "deser_min_ns": 125179.0, "deser_max_ns": 147744.0, "deser_p5_ns": 128188.5, "deser_p25_ns": 131441.0, "deser_p50_ns": 133195.5, "deser_p75_ns": 137196.75, "deser_p95_ns": 142548.05, "deser_p99_ns": 144991.62, "deser_ci_low_ns": 133512.98841463414, "deser_ci_high_ns": 135455.86158536584, "total_mean_ns": 258522.48780487804, "total_median_ns": 257078.0, "total_std_ns": 7264.523612368829, "total_mad_ns": 4160.5, "total_cv": 0.028100161320789192, "total_min_ns": 245306.0, "total_max_ns": 283757.0, "total_p5_ns": 248148.3, "total_p25_ns": 253805.5, "total_p50_ns": 257078.0, "total_p75_ns": 261705.5, "total_p95_ns": 272626.2, "total_p99_ns": 278948.02999999997, "total_ci_low_ns": 257009.21067073173, "total_ci_high_ns": 260140.28201219512, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.229415920723293}, {"serializer": "fast-json-stringify", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "6.4.0", "avg_time_ser_ns": 111449.96629213484, "avg_time_deser_ns": 128004.10112359551, "avg_time_total_ns": 239454.06741573033, "median_size_bytes": 25746.0, "avg_ops_per_sec": 4176.166271854723, "min_ops_per_sec": 3255.176544499891, "max_ops_per_sec": 4825.416433438206, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 111449.96629213484, "ser_median_ns": 109966.0, "ser_std_ns": 7116.65944592724, "ser_mad_ns": 4583.0, "ser_cv": 0.06385519603723265, "ser_min_ns": 99870.0, "ser_max_ns": 133025.0, "ser_p5_ns": 102906.4, "ser_p25_ns": 106486.0, "ser_p50_ns": 109966.0, "ser_p75_ns": 115326.0, "ser_p95_ns": 125131.4, "ser_p99_ns": 130780.12000000001, "ser_ci_low_ns": 109968.64550561798, "ser_ci_high_ns": 112869.7676966292, "deser_mean_ns": 128004.10112359551, "deser_median_ns": 120208.0, "deser_std_ns": 19551.25536485907, "deser_mad_ns": 10349.0, "deser_cv": 0.15273928876685897, "deser_min_ns": 99627.0, "deser_max_ns": 179587.0, "deser_p5_ns": 102886.4, "deser_p25_ns": 113840.0, "deser_p50_ns": 120208.0, "deser_p75_ns": 137388.0, "deser_p95_ns": 167134.4, "deser_p99_ns": 174298.20000000004, "deser_ci_low_ns": 124045.41460674157, "deser_ci_high_ns": 132150.2845505618, "total_mean_ns": 239454.06741573033, "total_median_ns": 232331.0, "total_std_ns": 23234.846751943784, "total_mad_ns": 13199.0, "total_cv": 0.09703258333718089, "total_min_ns": 207236.0, "total_max_ns": 307203.0, "total_p5_ns": 212105.0, "total_p25_ns": 222343.0, "total_p50_ns": 232331.0, "total_p75_ns": 252162.0, "total_p95_ns": 287846.6, "total_p99_ns": 294820.5200000001, "total_ci_low_ns": 234917.35449438205, "total_ci_high_ns": 244285.6525280899, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.749768346399768}, {"serializer": "protobuf-es", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "2.12.1", "avg_time_ser_ns": 724975.8409090909, "avg_time_deser_ns": 383223.5909090909, "avg_time_total_ns": 1108199.4318181819, "median_size_bytes": 12477.0, "avg_ops_per_sec": 902.3646568373862, "min_ops_per_sec": 819.0786348252577, "max_ops_per_sec": 966.2872056809957, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 724975.8409090909, "ser_median_ns": 718280.0, "ser_std_ns": 31151.319657250355, "ser_mad_ns": 20045.0, "ser_cv": 0.04296876930159195, "ser_min_ns": 678024.0, "ser_max_ns": 807023.0, "ser_p5_ns": 685010.0, "ser_p25_ns": 702329.0, "ser_p50_ns": 718280.0, "ser_p75_ns": 743088.5, "ser_p95_ns": 787664.5499999999, "ser_p99_ns": 799146.0199999999, "ser_ci_low_ns": 718957.0727272728, "ser_ci_high_ns": 731520.9448863637, "deser_mean_ns": 383223.5909090909, "deser_median_ns": 376922.5, "deser_std_ns": 18403.728533796177, "deser_mad_ns": 9280.0, "deser_cv": 0.04802347499051004, "deser_min_ns": 352636.0, "deser_max_ns": 438203.0, "deser_p5_ns": 360966.5, "deser_p25_ns": 370055.75, "deser_p50_ns": 376922.5, "deser_p75_ns": 396354.25, "deser_p95_ns": 415590.0, "deser_p99_ns": 437878.49, "deser_ci_low_ns": 379540.1039772727, "deser_ci_high_ns": 387214.54375, "total_mean_ns": 1108199.4318181819, "total_median_ns": 1095779.5, "total_std_ns": 43383.7035784084, "total_mad_ns": 28016.0, "total_cv": 0.039147920791865375, "total_min_ns": 1034889.0, "total_max_ns": 1220884.0, "total_p5_ns": 1049972.25, "total_p25_ns": 1077744.0, "total_p50_ns": 1095779.5, "total_p75_ns": 1136086.0, "total_p95_ns": 1190169.25, "total_p99_ns": 1207904.47, "total_ci_low_ns": 1099709.215625, "total_ci_high_ns": 1116958.8230113636, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 31.465599563495605}, {"serializer": "cbor-x", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "1.6.4", "avg_time_ser_ns": 104889.29411764706, "avg_time_deser_ns": 75356.16470588236, "avg_time_total_ns": 180245.45882352942, "median_size_bytes": 12712.0, "avg_ops_per_sec": 5547.989982810369, "min_ops_per_sec": 4983.529435216609, "max_ops_per_sec": 6175.851186689805, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 104889.29411764706, "ser_median_ns": 104383.0, "ser_std_ns": 4699.465123626227, "ser_mad_ns": 3412.0, "ser_cv": 0.04480404948054243, "ser_min_ns": 95268.0, "ser_max_ns": 120394.0, "ser_p5_ns": 98231.6, "ser_p25_ns": 101288.0, "ser_p50_ns": 104383.0, "ser_p75_ns": 108223.0, "ser_p95_ns": 112241.0, "ser_p99_ns": 117385.11999999998, "ser_ci_low_ns": 103962.34264705882, "ser_ci_high_ns": 105937.48441176472, "deser_mean_ns": 75356.16470588236, "deser_median_ns": 74543.0, "deser_std_ns": 5854.1618932644, "deser_mad_ns": 3385.0, "deser_cv": 0.07768656905660459, "deser_min_ns": 63992.0, "deser_max_ns": 90842.0, "deser_p5_ns": 65920.0, "deser_p25_ns": 71450.0, "deser_p50_ns": 74543.0, "deser_p75_ns": 78797.0, "deser_p95_ns": 86981.4, "deser_p99_ns": 90486.68, "deser_ci_low_ns": 74115.5344117647, "deser_ci_high_ns": 76603.50558823529, "total_mean_ns": 180245.45882352942, "total_median_ns": 178712.0, "total_std_ns": 8867.952786986007, "total_mad_ns": 5516.0, "total_cv": 0.04919931323023365, "total_min_ns": 161921.0, "total_max_ns": 200661.0, "total_p5_ns": 167625.0, "total_p25_ns": 174740.0, "total_p50_ns": 178712.0, "total_p75_ns": 185477.0, "total_p95_ns": 196841.4, "total_p99_ns": 200243.52, "total_ci_low_ns": 178373.52411764706, "total_ci_high_ns": 182097.7079411765, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.358250567189322}, {"serializer": "bebop", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "3.2.3", "avg_time_ser_ns": 90946.12195121951, "avg_time_deser_ns": 169615.5, "avg_time_total_ns": 260561.6219512195, "median_size_bytes": 30550.0, "avg_ops_per_sec": 3837.863736460824, "min_ops_per_sec": 3345.2871594497674, "max_ops_per_sec": 4128.188509600102, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 90946.12195121951, "ser_median_ns": 90020.5, "ser_std_ns": 3841.1378631480707, "ser_mad_ns": 1806.5, "ser_cv": 0.042235312300708434, "ser_min_ns": 85092.0, "ser_max_ns": 104105.0, "ser_p5_ns": 86516.25, "ser_p25_ns": 88308.25, "ser_p50_ns": 90020.5, "ser_p75_ns": 92653.25, "ser_p95_ns": 100041.40000000001, "ser_p99_ns": 101336.42, "ser_ci_low_ns": 90192.4756097561, "ser_ci_high_ns": 91788.94298780488, "deser_mean_ns": 169615.5, "deser_median_ns": 167774.5, "deser_std_ns": 9138.620970405806, "deser_mad_ns": 4256.5, "deser_cv": 0.053878454329974595, "deser_min_ns": 154562.0, "deser_max_ns": 194823.0, "deser_p5_ns": 159319.85, "deser_p25_ns": 163507.0, "deser_p50_ns": 167774.5, "deser_p75_ns": 171760.0, "deser_p95_ns": 189434.15, "deser_p99_ns": 194756.58, "deser_ci_low_ns": 167723.55487804877, "deser_ci_high_ns": 171667.63871951218, "total_mean_ns": 260561.6219512195, "total_median_ns": 258372.5, "total_std_ns": 10490.404022677982, "total_mad_ns": 6541.5, "total_cv": 0.040260741179458576, "total_min_ns": 242237.0, "total_max_ns": 298928.0, "total_p5_ns": 246924.3, "total_p25_ns": 253067.75, "total_p50_ns": 258372.5, "total_p75_ns": 266278.25, "total_p95_ns": 277286.1, "total_p99_ns": 288145.27999999997, "total_ci_low_ns": 258347.59024390244, "total_ci_high_ns": 262846.2993902439, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.45557529769975}, {"serializer": "flatbuffers", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "javascript", "serializer_version": "24.12.23", "avg_time_ser_ns": 499008.1034482759, "avg_time_deser_ns": 220169.54022988505, "avg_time_total_ns": 719177.643678161, "median_size_bytes": 28724.0, "avg_ops_per_sec": 1390.4770383094803, "min_ops_per_sec": 1130.9837522874147, "max_ops_per_sec": 1548.841157046298, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 499008.1034482759, "ser_median_ns": 496714.0, "ser_std_ns": 28392.163033925186, "ser_mad_ns": 17154.0, "ser_cv": 0.056897198337517864, "ser_min_ns": 452920.0, "ser_max_ns": 577513.0, "ser_p5_ns": 458823.3, "ser_p25_ns": 478365.5, "ser_p50_ns": 496714.0, "ser_p75_ns": 510965.5, "ser_p95_ns": 561305.4, "ser_p99_ns": 574564.92, "ser_ci_low_ns": 493119.34568965517, "ser_ci_high_ns": 505349.6793103448, "deser_mean_ns": 220169.54022988505, "deser_median_ns": 201462.0, "deser_std_ns": 36903.208607207634, "deser_mad_ns": 6612.0, "deser_cv": 0.16761268869742826, "deser_min_ns": 180884.0, "deser_max_ns": 312829.0, "deser_p5_ns": 191456.7, "deser_p25_ns": 195825.0, "deser_p50_ns": 201462.0, "deser_p75_ns": 224985.0, "deser_p95_ns": 294152.10000000003, "deser_p99_ns": 312343.96, "deser_ci_low_ns": 212555.29166666666, "deser_ci_high_ns": 227705.90890804597, "total_mean_ns": 719177.643678161, "total_median_ns": 696469.0, "total_std_ns": 57903.27063401294, "total_mad_ns": 26189.0, "total_cv": 0.08051316825961462, "total_min_ns": 645644.0, "total_max_ns": 884186.0, "total_p5_ns": 661358.5, "total_p25_ns": 677448.5, "total_p50_ns": 696469.0, "total_p75_ns": 743649.5, "total_p95_ns": 837480.2000000001, "total_p99_ns": 872753.16, "total_ci_low_ns": 707186.297413793, "total_ci_high_ns": 731321.6324712643, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "fastest_in_group": "google-protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.549005209236835}], "pareto_front": [{"serializer": "v8-serializer", "test_data": "message", "mode": "bytes", "time": 10511.891891891892, "size": 135.0}, {"serializer": "google-protobuf", "test_data": "message", "mode": "bytes", "time": 10599.775, "size": 52.0}, {"serializer": "JSON.stringify", "test_data": "message", "mode": "bytes", "time": 4853.5, "size": 168.0}, {"serializer": "bebop", "test_data": "message", "mode": "bytes", "time": 9328.128205128205, "size": 162.0}, {"serializer": "avsc", "test_data": "message", "mode": "bytes", "time": 15143.67088607595, "size": 44.0}, {"serializer": "avsc", "test_data": "document", "mode": "bytes", "time": 17767.564705882352, "size": 114.0}, {"serializer": "JSON.stringify", "test_data": "document", "mode": "bytes", "time": 5734.021505376344, "size": 448.0}, {"serializer": "google-protobuf", "test_data": "document", "mode": "bytes", "time": 6079.549450549451, "size": 155.0}, {"serializer": "avsc", "test_data": "telemetry", "mode": "bytes", "time": 21760.95348837209, "size": 288.0}, {"serializer": "google-protobuf", "test_data": "telemetry", "mode": "bytes", "time": 7748.609756097561, "size": 291.0}, {"serializer": "json-pack-msgpack", "test_data": "telemetry", "mode": "bytes", "time": 6603.0759493670885, "size": 346.0}, {"serializer": "avsc", "test_data": "strings", "mode": "bytes", "time": 11073.811764705883, "size": 338.0}, {"serializer": "JSON.stringify", "test_data": "strings", "mode": "bytes", "time": 3582.252747252747, "size": 411.0}, {"serializer": "msgpackr", "test_data": "strings", "mode": "bytes", "time": 5493.043956043956, "size": 348.0}, {"serializer": "google-protobuf", "test_data": "strings", "mode": "bytes", "time": 4392.183908045977, "size": 368.0}, {"serializer": "@msgpack/msgpack", "test_data": "strings", "mode": "bytes", "time": 7874.103448275862, "size": 346.0}, {"serializer": "avsc", "test_data": "event", "mode": "bytes", "time": 10744.133333333333, "size": 105.0}, {"serializer": "JSON.stringify", "test_data": "event", "mode": "bytes", "time": 3398.288888888889, "size": 257.0}, {"serializer": "google-protobuf", "test_data": "event", "mode": "bytes", "time": 4023.5730337078653, "size": 123.0}]} \ No newline at end of file diff --git a/dashboard/public/data/stats_javascript_latest.json.gz b/dashboard/public/data/stats_javascript_latest.json.gz new file mode 100644 index 00000000..a9ec8c08 Binary files /dev/null and b/dashboard/public/data/stats_javascript_latest.json.gz differ diff --git a/dashboard/public/data/stats_python_latest.json b/dashboard/public/data/stats_python_latest.json deleted file mode 100644 index 20df879a..00000000 --- a/dashboard/public/data/stats_python_latest.json +++ /dev/null @@ -1 +0,0 @@ -{"schema_version": "2.0", "generated": "2026-07-24T20:23:42.100060", "language": "python", "questions": {"Q1": "How fast?", "Q2": "How compact?", "Q3": "How stable?", "Q4": "Under which workloads does it win?"}, "groups": [{"serializer": "orjson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "3.11.9", "avg_time_ser_ns": 784.9368421052632, "avg_time_deser_ns": 1111.3263157894737, "avg_time_total_ns": 1896.2631578947369, "median_size_bytes": 168.0, "avg_ops_per_sec": 527352.9656665464, "min_ops_per_sec": 364298.72495446267, "max_ops_per_sec": 866551.1265164645, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 784.9368421052632, "ser_median_ns": 758.0, "ser_std_ns": 133.26368122861706, "ser_mad_ns": 85.0, "ser_cv": 0.16977631075538924, "ser_min_ns": 458.0, "ser_max_ns": 1094.0, "ser_p5_ns": 599.0, "ser_p25_ns": 701.5, "ser_p50_ns": 758.0, "ser_p75_ns": 879.0, "ser_p95_ns": 1015.6, "ser_p99_ns": 1083.66, "ser_ci_low_ns": 758.4915789473683, "ser_ci_high_ns": 811.6963157894737, "deser_mean_ns": 1111.3263157894737, "deser_median_ns": 1124.0, "deser_std_ns": 262.71627127707376, "deser_mad_ns": 160.0, "deser_cv": 0.23639885742329703, "deser_min_ns": 584.0, "deser_max_ns": 1774.0, "deser_p5_ns": 721.1, "deser_p25_ns": 910.0, "deser_p50_ns": 1124.0, "deser_p75_ns": 1274.0, "deser_p95_ns": 1642.8, "deser_p99_ns": 1726.0600000000002, "deser_ci_low_ns": 1058.2407894736841, "deser_ci_high_ns": 1162.3063157894737, "total_mean_ns": 1896.2631578947369, "total_median_ns": 1925.0, "total_std_ns": 379.4887997821996, "total_mad_ns": 253.0, "total_cv": 0.2001245440023812, "total_min_ns": 1154.0, "total_max_ns": 2745.0, "total_p5_ns": 1371.8, "total_p25_ns": 1622.5, "total_p50_ns": 1925.0, "total_p75_ns": 2075.5, "total_p95_ns": 2622.1, "total_p99_ns": 2735.6, "total_ci_low_ns": 1823.7160526315788, "total_ci_high_ns": 1970.295, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 5466.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 0.15109649122807017, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.32885368454125385}, {"serializer": "flatbuffers", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "25.12.19", "avg_time_ser_ns": 28003.60824742268, "avg_time_deser_ns": 7561.649484536082, "avg_time_total_ns": 35565.257731958765, "median_size_bytes": 104.0, "avg_ops_per_sec": 28117.327520486513, "min_ops_per_sec": 24605.088332267114, "max_ops_per_sec": 32431.731205811768, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 28003.60824742268, "ser_median_ns": 27858.0, "ser_std_ns": 1726.4844612481374, "ser_mad_ns": 1211.0, "ser_cv": 0.061652214457293554, "ser_min_ns": 24142.0, "ser_max_ns": 32187.0, "ser_p5_ns": 25097.6, "ser_p25_ns": 26819.0, "ser_p50_ns": 27858.0, "ser_p75_ns": 29308.0, "ser_p95_ns": 30672.8, "ser_p99_ns": 31407.479999999992, "ser_ci_low_ns": 27676.12139175258, "ser_ci_high_ns": 28347.50824742268, "deser_mean_ns": 7561.649484536082, "deser_median_ns": 7525.0, "deser_std_ns": 426.69890929370774, "deser_mad_ns": 298.0, "deser_cv": 0.056429342588059185, "deser_min_ns": 6579.0, "deser_max_ns": 8455.0, "deser_p5_ns": 6910.0, "deser_p25_ns": 7263.0, "deser_p50_ns": 7525.0, "deser_p75_ns": 7892.0, "deser_p95_ns": 8276.0, "deser_p99_ns": 8441.56, "deser_ci_low_ns": 7475.531185567011, "deser_ci_high_ns": 7645.2698453608255, "total_mean_ns": 35565.257731958765, "total_median_ns": 35365.0, "total_std_ns": 2106.1653161925115, "total_mad_ns": 1465.0, "total_cv": 0.05921974000767388, "total_min_ns": 30834.0, "total_max_ns": 40642.0, "total_p5_ns": 31850.8, "total_p25_ns": 34092.0, "total_p50_ns": 35365.0, "total_p75_ns": 37201.0, "total_p95_ns": 38821.4, "total_p99_ns": 39743.439999999995, "total_ci_low_ns": 35165.61984536082, "total_ci_high_ns": 35987.4087628866, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1162.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.41935508812768}, {"serializer": "cloudpickle", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "3.1.2", "avg_time_ser_ns": 13617.284210526315, "avg_time_deser_ns": 3435.4105263157894, "avg_time_total_ns": 17052.694736842106, "median_size_bytes": 202.0, "avg_ops_per_sec": 58641.758116945246, "min_ops_per_sec": 48267.20725938797, "max_ops_per_sec": 75420.4691153179, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 13617.284210526315, "ser_median_ns": 13786.0, "ser_std_ns": 1202.7145950259628, "ser_mad_ns": 892.0, "ser_cv": 0.08832264763162179, "ser_min_ns": 10328.0, "ser_max_ns": 16110.0, "ser_p5_ns": 11670.0, "ser_p25_ns": 12693.5, "ser_p50_ns": 13786.0, "ser_p75_ns": 14437.5, "ser_p95_ns": 15553.5, "ser_p99_ns": 15917.300000000001, "ser_ci_low_ns": 13374.73105263158, "ser_ci_high_ns": 13870.348684210527, "deser_mean_ns": 3435.4105263157894, "deser_median_ns": 3394.0, "deser_std_ns": 479.5301444773686, "deser_mad_ns": 347.0, "deser_cv": 0.13958452441246588, "deser_min_ns": 2067.0, "deser_max_ns": 4623.0, "deser_p5_ns": 2767.9, "deser_p25_ns": 3095.5, "deser_p50_ns": 3394.0, "deser_p75_ns": 3785.0, "deser_p95_ns": 4208.7, "deser_p99_ns": 4608.9, "deser_ci_low_ns": 3340.5439473684214, "deser_ci_high_ns": 3537.987105263158, "total_mean_ns": 17052.694736842106, "total_median_ns": 16943.0, "total_std_ns": 1542.4291291949287, "total_mad_ns": 1010.0, "total_cv": 0.09045075590677949, "total_min_ns": 13259.0, "total_max_ns": 20718.0, "total_p5_ns": 14689.0, "total_p25_ns": 16061.5, "total_p50_ns": 16943.0, "total_p75_ns": 18024.5, "total_p95_ns": 19398.3, "total_p99_ns": 20522.48, "total_ci_low_ns": 16741.53184210526, "total_ci_high_ns": 17373.669210526317, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 8946.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.84392768929234}, {"serializer": "msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "1.2.1", "avg_time_ser_ns": 1952.391304347826, "avg_time_deser_ns": 2532.9239130434785, "avg_time_total_ns": 4485.315217391304, "median_size_bytes": 124.0, "avg_ops_per_sec": 222949.77087064311, "min_ops_per_sec": 188857.41265344663, "max_ops_per_sec": 300030.0030003, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 1952.391304347826, "ser_median_ns": 1978.0, "ser_std_ns": 211.13153842323345, "ser_mad_ns": 138.5, "ser_cv": 0.10813997068777129, "ser_min_ns": 1378.0, "ser_max_ns": 2316.0, "ser_p5_ns": 1569.8, "ser_p25_ns": 1832.25, "ser_p50_ns": 1978.0, "ser_p75_ns": 2114.25, "ser_p95_ns": 2273.05, "ser_p99_ns": 2311.45, "ser_ci_low_ns": 1909.085597826087, "ser_ci_high_ns": 1993.7307065217392, "deser_mean_ns": 2532.9239130434785, "deser_median_ns": 2562.5, "deser_std_ns": 222.154348565851, "deser_mad_ns": 141.5, "deser_cv": 0.08770668057648744, "deser_min_ns": 1955.0, "deser_max_ns": 2979.0, "deser_p5_ns": 2166.5, "deser_p25_ns": 2391.5, "deser_p50_ns": 2562.5, "deser_p75_ns": 2669.0, "deser_p95_ns": 2886.85, "deser_p99_ns": 2928.04, "deser_ci_low_ns": 2485.8345108695653, "deser_ci_high_ns": 2576.576902173913, "total_mean_ns": 4485.315217391304, "total_median_ns": 4531.0, "total_std_ns": 408.81017194899056, "total_mad_ns": 267.0, "total_cv": 0.09114413416561565, "total_min_ns": 3333.0, "total_max_ns": 5295.0, "total_p5_ns": 3768.8, "total_p25_ns": 4248.75, "total_p50_ns": 4531.0, "total_p75_ns": 4759.75, "total_p95_ns": 5046.45, "total_p99_ns": 5150.31, "total_ci_low_ns": 4400.659239130435, "total_ci_high_ns": 4566.519293478261, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 521.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.313672148270296}, {"serializer": "json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 7714.978947368421, "avg_time_deser_ns": 4846.747368421053, "avg_time_total_ns": 12561.726315789474, "median_size_bytes": 168.0, "avg_ops_per_sec": 79606.89278376086, "min_ops_per_sec": 65837.11896767397, "max_ops_per_sec": 100351.22930255896, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 7714.978947368421, "ser_median_ns": 7719.0, "ser_std_ns": 701.3367779803198, "ser_mad_ns": 548.0, "ser_cv": 0.09090585765234599, "ser_min_ns": 5750.0, "ser_max_ns": 9045.0, "ser_p5_ns": 6618.7, "ser_p25_ns": 7231.5, "ser_p50_ns": 7719.0, "ser_p75_ns": 8337.5, "ser_p95_ns": 8654.8, "ser_p99_ns": 8914.34, "ser_ci_low_ns": 7582.797105263158, "ser_ci_high_ns": 7852.7171052631575, "deser_mean_ns": 4846.747368421053, "deser_median_ns": 4866.0, "deser_std_ns": 649.472535059176, "deser_mad_ns": 402.0, "deser_cv": 0.13400173058138115, "deser_min_ns": 3391.0, "deser_max_ns": 6553.0, "deser_p5_ns": 3735.5, "deser_p25_ns": 4392.0, "deser_p50_ns": 4866.0, "deser_p75_ns": 5260.0, "deser_p95_ns": 5786.4, "deser_p99_ns": 6299.200000000001, "deser_ci_low_ns": 4717.650263157894, "deser_ci_high_ns": 4976.711052631578, "total_mean_ns": 12561.726315789474, "total_median_ns": 12703.0, "total_std_ns": 1116.627296838472, "total_mad_ns": 864.0, "total_cv": 0.08889122949884094, "total_min_ns": 9965.0, "total_max_ns": 15189.0, "total_p5_ns": 10944.1, "total_p25_ns": 11667.0, "total_p50_ns": 12703.0, "total_p75_ns": 13352.0, "total_p95_ns": 14266.7, "total_p99_ns": 15031.08, "total_ci_low_ns": 12336.858947368422, "total_ci_high_ns": 12783.522894736841, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 2329.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.38504055090522}, {"serializer": "avro", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "1.12.2", "avg_time_ser_ns": 8493.20652173913, "avg_time_deser_ns": 5032.945652173913, "avg_time_total_ns": 13526.152173913044, "median_size_bytes": 44.0, "avg_ops_per_sec": 73930.85536392464, "min_ops_per_sec": 62015.50387596899, "max_ops_per_sec": 94858.66059571238, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 8493.20652173913, "ser_median_ns": 8559.0, "ser_std_ns": 735.5195597767216, "ser_mad_ns": 491.5, "ser_cv": 0.08660092721095299, "ser_min_ns": 6513.0, "ser_max_ns": 10186.0, "ser_p5_ns": 7132.4, "ser_p25_ns": 8050.0, "ser_p50_ns": 8559.0, "ser_p75_ns": 9011.75, "ser_p95_ns": 9502.4, "ser_p99_ns": 9787.420000000002, "ser_ci_low_ns": 8343.485597826088, "ser_ci_high_ns": 8641.36277173913, "deser_mean_ns": 5032.945652173913, "deser_median_ns": 5072.5, "deser_std_ns": 410.09270900723004, "deser_mad_ns": 265.0, "deser_cv": 0.08148164859083984, "deser_min_ns": 4015.0, "deser_max_ns": 5939.0, "deser_p5_ns": 4232.05, "deser_p25_ns": 4818.5, "deser_p50_ns": 5072.5, "deser_p75_ns": 5324.75, "deser_p95_ns": 5632.8, "deser_p99_ns": 5761.550000000001, "deser_ci_low_ns": 4948.844565217391, "deser_ci_high_ns": 5119.276358695652, "total_mean_ns": 13526.152173913044, "total_median_ns": 13669.5, "total_std_ns": 1123.4533684555506, "total_mad_ns": 652.5, "total_cv": 0.08305786849140125, "total_min_ns": 10542.0, "total_max_ns": 16125.0, "total_p5_ns": 11386.95, "total_p25_ns": 12805.0, "total_p50_ns": 13669.5, "total_p75_ns": 14227.75, "total_p95_ns": 15080.35, "total_p99_ns": 15479.810000000003, "total_ci_low_ns": 13293.147826086957, "total_ci_high_ns": 13748.497282608696, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1808.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.609040099083838}, {"serializer": "protobuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "7.35.1", "avg_time_ser_ns": 1748.021978021978, "avg_time_deser_ns": 1762.3626373626373, "avg_time_total_ns": 3510.3846153846152, "median_size_bytes": 50.0, "avg_ops_per_sec": 284869.0697929221, "min_ops_per_sec": 235128.1448389372, "max_ops_per_sec": 365898.2802780827, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 1748.021978021978, "ser_median_ns": 1766.0, "ser_std_ns": 175.10346008523572, "ser_mad_ns": 117.0, "ser_cv": 0.10017234467691237, "ser_min_ns": 1295.0, "ser_max_ns": 2171.0, "ser_p5_ns": 1461.0, "ser_p25_ns": 1627.0, "ser_p50_ns": 1766.0, "ser_p75_ns": 1851.0, "ser_p95_ns": 2019.0, "ser_p99_ns": 2141.2999999999997, "ser_ci_low_ns": 1712.4587912087914, "ser_ci_high_ns": 1781.8612637362637, "deser_mean_ns": 1762.3626373626373, "deser_median_ns": 1778.0, "deser_std_ns": 128.74009273498086, "deser_mad_ns": 93.0, "deser_cv": 0.07304971746770543, "deser_min_ns": 1431.0, "deser_max_ns": 2115.0, "deser_p5_ns": 1560.5, "deser_p25_ns": 1681.0, "deser_p50_ns": 1778.0, "deser_p75_ns": 1847.5, "deser_p95_ns": 1952.0, "deser_p99_ns": 2020.4999999999993, "deser_ci_low_ns": 1737.3835164835164, "deser_ci_high_ns": 1788.5093406593405, "total_mean_ns": 3510.3846153846152, "total_median_ns": 3520.0, "total_std_ns": 284.7567292827245, "total_mad_ns": 184.0, "total_cv": 0.08111838458804467, "total_min_ns": 2733.0, "total_max_ns": 4253.0, "total_p5_ns": 3049.5, "total_p25_ns": 3346.0, "total_p50_ns": 3520.0, "total_p75_ns": 3710.0, "total_p95_ns": 3899.5, "total_p99_ns": 4111.699999999999, "total_ci_low_ns": 3451.876098901099, "total_ci_high_ns": 3568.762637362637, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 187.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.879361255467672}, {"serializer": "mashumaro", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "3.22", "avg_time_ser_ns": 1516.0842105263157, "avg_time_deser_ns": 2998.4736842105262, "avg_time_total_ns": 4514.557894736842, "median_size_bytes": 168.0, "avg_ops_per_sec": 221505.6320721502, "min_ops_per_sec": 170241.74327545115, "max_ops_per_sec": 325626.831650928, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1516.0842105263157, "ser_median_ns": 1473.0, "ser_std_ns": 235.46859858217417, "ser_mad_ns": 145.0, "ser_cv": 0.15531366724044315, "ser_min_ns": 1031.0, "ser_max_ns": 2121.0, "ser_p5_ns": 1202.2, "ser_p25_ns": 1348.0, "ser_p50_ns": 1473.0, "ser_p75_ns": 1652.0, "ser_p95_ns": 1952.4, "ser_p99_ns": 2043.92, "ser_ci_low_ns": 1471.1013157894738, "ser_ci_high_ns": 1566.2444736842103, "deser_mean_ns": 2998.4736842105262, "deser_median_ns": 2986.0, "deser_std_ns": 392.29995151629373, "deser_mad_ns": 257.0, "deser_cv": 0.13083321477259624, "deser_min_ns": 2040.0, "deser_max_ns": 3834.0, "deser_p5_ns": 2391.6, "deser_p25_ns": 2758.5, "deser_p50_ns": 2986.0, "deser_p75_ns": 3244.0, "deser_p95_ns": 3722.1, "deser_p99_ns": 3815.2, "deser_ci_low_ns": 2921.4292105263157, "deser_ci_high_ns": 3076.836842105263, "total_mean_ns": 4514.557894736842, "total_median_ns": 4475.0, "total_std_ns": 607.6504754675555, "total_mad_ns": 404.0, "total_cv": 0.13459800264738347, "total_min_ns": 3071.0, "total_max_ns": 5874.0, "total_p5_ns": 3599.7, "total_p25_ns": 4080.5, "total_p50_ns": 4475.0, "total_p75_ns": 4902.0, "total_p95_ns": 5615.1, "total_p99_ns": 5873.06, "total_ci_low_ns": 4392.027105263159, "total_ci_high_ns": 4637.7739473684205, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 5466.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.976384602518899}, {"serializer": "rapidjson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "1.23", "avg_time_ser_ns": 3848.1720430107525, "avg_time_deser_ns": 4007.569892473118, "avg_time_total_ns": 7855.741935483871, "median_size_bytes": 168.0, "avg_ops_per_sec": 127295.42393482474, "min_ops_per_sec": 106044.53870625663, "max_ops_per_sec": 165289.2561983471, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 3848.1720430107525, "ser_median_ns": 3902.0, "ser_std_ns": 384.79126537067253, "ser_mad_ns": 258.0, "ser_cv": 0.09999325941509038, "ser_min_ns": 2952.0, "ser_max_ns": 4623.0, "ser_p5_ns": 3183.8, "ser_p25_ns": 3609.0, "ser_p50_ns": 3902.0, "ser_p75_ns": 4093.0, "ser_p95_ns": 4425.0, "ser_p99_ns": 4511.679999999999, "ser_ci_low_ns": 3772.4188172043014, "ser_ci_high_ns": 3923.1440860215052, "deser_mean_ns": 4007.569892473118, "deser_median_ns": 4007.0, "deser_std_ns": 391.8734378056224, "deser_mad_ns": 238.0, "deser_cv": 0.09778330717116769, "deser_min_ns": 3098.0, "deser_max_ns": 4819.0, "deser_p5_ns": 3225.6, "deser_p25_ns": 3778.0, "deser_p50_ns": 4007.0, "deser_p75_ns": 4261.0, "deser_p95_ns": 4620.199999999999, "deser_p99_ns": 4807.96, "deser_ci_low_ns": 3925.002419354839, "deser_ci_high_ns": 4085.7801075268817, "total_mean_ns": 7855.741935483871, "total_median_ns": 7856.0, "total_std_ns": 755.861269523567, "total_mad_ns": 462.0, "total_cv": 0.09621768073991728, "total_min_ns": 6050.0, "total_max_ns": 9430.0, "total_p5_ns": 6496.8, "total_p25_ns": 7421.0, "total_p50_ns": 7856.0, "total_p75_ns": 8374.0, "total_p95_ns": 9083.4, "total_p99_ns": 9269.92, "total_ci_low_ns": 7706.552956989248, "total_ci_high_ns": 8009.400268817204, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1492.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.9647857752263}, {"serializer": "pydantic", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "2.13.4", "avg_time_ser_ns": 5428.666666666667, "avg_time_deser_ns": 9687.247311827958, "avg_time_total_ns": 15115.913978494624, "median_size_bytes": 168.0, "avg_ops_per_sec": 66155.44395282335, "min_ops_per_sec": 54016.09679684546, "max_ops_per_sec": 84602.36886632825, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 5428.666666666667, "ser_median_ns": 5411.0, "ser_std_ns": 553.0336952808047, "ser_mad_ns": 312.0, "ser_cv": 0.1018728408352213, "ser_min_ns": 3962.0, "ser_max_ns": 6381.0, "ser_p5_ns": 4474.8, "ser_p25_ns": 5173.0, "ser_p50_ns": 5411.0, "ser_p75_ns": 5855.0, "ser_p95_ns": 6276.4, "ser_p99_ns": 6378.24, "ser_ci_low_ns": 5320.152688172043, "ser_ci_high_ns": 5540.518548387097, "deser_mean_ns": 9687.247311827958, "deser_median_ns": 9589.0, "deser_std_ns": 1105.77465130848, "deser_mad_ns": 697.0, "deser_cv": 0.1141474575505416, "deser_min_ns": 7528.0, "deser_max_ns": 12384.0, "deser_p5_ns": 8047.6, "deser_p25_ns": 8892.0, "deser_p50_ns": 9589.0, "deser_p75_ns": 10206.0, "deser_p95_ns": 11776.4, "deser_p99_ns": 12119.039999999999, "deser_ci_low_ns": 9465.268548387097, "deser_ci_high_ns": 9908.123655913978, "total_mean_ns": 15115.913978494624, "total_median_ns": 15066.0, "total_std_ns": 1482.9573761495612, "total_mad_ns": 904.0, "total_cv": 0.09810570358228826, "total_min_ns": 11820.0, "total_max_ns": 18513.0, "total_p5_ns": 12776.0, "total_p25_ns": 14162.0, "total_p50_ns": 15066.0, "total_p75_ns": 15944.0, "total_p95_ns": 17828.4, "total_p99_ns": 18282.079999999998, "total_ci_low_ns": 14818.707795698923, "total_ci_high_ns": 15413.981720430107, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 2329.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.627247521579388}, {"serializer": "pickle", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 4544.670103092783, "avg_time_deser_ns": 3283.618556701031, "avg_time_total_ns": 7828.288659793814, "median_size_bytes": 202.0, "avg_ops_per_sec": 127741.84032533345, "min_ops_per_sec": 93501.63627863488, "max_ops_per_sec": 191975.4271453254, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 4544.670103092783, "ser_median_ns": 4556.0, "ser_std_ns": 706.1181989353465, "ser_mad_ns": 470.0, "ser_cv": 0.15537281759017274, "ser_min_ns": 2895.0, "ser_max_ns": 6104.0, "ser_p5_ns": 3487.4, "ser_p25_ns": 4094.0, "ser_p50_ns": 4556.0, "ser_p75_ns": 5026.0, "ser_p95_ns": 5653.599999999998, "ser_p99_ns": 6013.759999999999, "ser_ci_low_ns": 4408.924999999999, "ser_ci_high_ns": 4683.013144329897, "deser_mean_ns": 3283.618556701031, "deser_median_ns": 3261.0, "deser_std_ns": 600.5804213997727, "deser_mad_ns": 365.0, "deser_cv": 0.18290200613409882, "deser_min_ns": 2078.0, "deser_max_ns": 4731.0, "deser_p5_ns": 2311.4, "deser_p25_ns": 2904.0, "deser_p50_ns": 3261.0, "deser_p75_ns": 3647.0, "deser_p95_ns": 4374.4, "deser_p99_ns": 4696.44, "deser_ci_low_ns": 3168.192525773196, "deser_ci_high_ns": 3397.7755154639176, "total_mean_ns": 7828.288659793814, "total_median_ns": 7728.0, "total_std_ns": 1260.2699938799728, "total_mad_ns": 841.0, "total_cv": 0.16098920832502445, "total_min_ns": 5209.0, "total_max_ns": 10695.0, "total_p5_ns": 5852.4, "total_p25_ns": 7019.0, "total_p50_ns": 7728.0, "total_p75_ns": 8607.0, "total_p95_ns": 9957.599999999999, "total_p99_ns": 10693.08, "total_ci_low_ns": 7582.100257731959, "total_ci_high_ns": 8078.774484536083, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 4969.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.636848314789416}, {"serializer": "dill", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "0.4.1", "avg_time_ser_ns": 52248.74193548387, "avg_time_deser_ns": 8297.505376344086, "avg_time_total_ns": 60546.24731182796, "median_size_bytes": 202.0, "avg_ops_per_sec": 16516.300256393362, "min_ops_per_sec": 14650.297401037242, "max_ops_per_sec": 19138.755980861242, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 52248.74193548387, "ser_median_ns": 52384.0, "ser_std_ns": 2753.334381307058, "ser_mad_ns": 1996.0, "ser_cv": 0.052696663676741584, "ser_min_ns": 44974.0, "ser_max_ns": 58396.0, "ser_p5_ns": 47464.2, "ser_p25_ns": 50456.0, "ser_p50_ns": 52384.0, "ser_p75_ns": 54393.0, "ser_p95_ns": 55991.4, "ser_p99_ns": 58005.0, "ser_ci_low_ns": 51706.72956989248, "ser_ci_high_ns": 52820.73629032258, "deser_mean_ns": 8297.505376344086, "deser_median_ns": 8246.0, "deser_std_ns": 579.5045414470341, "deser_mad_ns": 363.0, "deser_cv": 0.06984081542136536, "deser_min_ns": 7073.0, "deser_max_ns": 9862.0, "deser_p5_ns": 7362.2, "deser_p25_ns": 7936.0, "deser_p50_ns": 8246.0, "deser_p75_ns": 8702.0, "deser_p95_ns": 9299.4, "deser_p99_ns": 9669.72, "deser_ci_low_ns": 8179.042473118279, "deser_ci_high_ns": 8416.227956989247, "total_mean_ns": 60546.24731182796, "total_median_ns": 60506.0, "total_std_ns": 3153.456156608223, "total_mad_ns": 2340.0, "total_cv": 0.05208342872791362, "total_min_ns": 52250.0, "total_max_ns": 68258.0, "total_p5_ns": 55198.6, "total_p25_ns": 58486.0, "total_p50_ns": 60506.0, "total_p75_ns": 62946.0, "total_p95_ns": 65140.0, "total_p99_ns": 66904.68, "total_ci_low_ns": 59918.23951612903, "total_ci_high_ns": 61135.70833333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 10948.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.395758633845112}, {"serializer": "msgspec", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 1163.6404494382023, "avg_time_deser_ns": 1163.5168539325844, "avg_time_total_ns": 2327.1573033707864, "median_size_bytes": 80.0, "avg_ops_per_sec": 429708.81192755786, "min_ops_per_sec": 367107.1953010279, "max_ops_per_sec": 542888.1650380022, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 1163.6404494382023, "ser_median_ns": 1175.0, "ser_std_ns": 121.30045784135766, "ser_mad_ns": 81.0, "ser_cv": 0.1042422149384036, "ser_min_ns": 861.0, "ser_max_ns": 1461.0, "ser_p5_ns": 954.4, "ser_p25_ns": 1093.0, "ser_p50_ns": 1175.0, "ser_p75_ns": 1252.0, "ser_p95_ns": 1327.6, "ser_p99_ns": 1439.0, "ser_ci_low_ns": 1138.1556179775282, "ser_ci_high_ns": 1189.7342696629214, "deser_mean_ns": 1163.5168539325844, "deser_median_ns": 1175.0, "deser_std_ns": 85.1812389127856, "deser_mad_ns": 51.0, "deser_cv": 0.07321014614002412, "deser_min_ns": 941.0, "deser_max_ns": 1383.0, "deser_p5_ns": 1014.4, "deser_p25_ns": 1116.0, "deser_p50_ns": 1175.0, "deser_p75_ns": 1218.0, "deser_p95_ns": 1295.1999999999998, "deser_p99_ns": 1374.2, "deser_ci_low_ns": 1145.4943820224719, "deser_ci_high_ns": 1180.1474719101125, "total_mean_ns": 2327.1573033707864, "total_median_ns": 2342.0, "total_std_ns": 192.1133010205415, "total_mad_ns": 123.0, "total_cv": 0.08255277833701818, "total_min_ns": 1842.0, "total_max_ns": 2724.0, "total_p5_ns": 1962.2, "total_p25_ns": 2212.0, "total_p50_ns": 2342.0, "total_p75_ns": 2459.0, "total_p95_ns": 2652.5999999999995, "total_p99_ns": 2716.08, "total_ci_low_ns": 2287.9101123595506, "total_ci_high_ns": 2367.8221910112356, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 351.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 0.93562734082397, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.6417430457455935}, {"serializer": "serpyco-rs", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "1.21.0", "avg_time_ser_ns": 1920.483870967742, "avg_time_deser_ns": 2306.94623655914, "avg_time_total_ns": 4227.430107526881, "median_size_bytes": 168.0, "avg_ops_per_sec": 236550.3330781303, "min_ops_per_sec": 179662.23499820338, "max_ops_per_sec": 351864.8838845883, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1920.483870967742, "ser_median_ns": 1924.0, "ser_std_ns": 258.6781033448137, "ser_mad_ns": 162.0, "ser_cv": 0.13469423370604222, "ser_min_ns": 1307.0, "ser_max_ns": 2476.0, "ser_p5_ns": 1473.6000000000001, "ser_p25_ns": 1773.0, "ser_p50_ns": 1924.0, "ser_p75_ns": 2086.0, "ser_p95_ns": 2321.599999999999, "ser_p99_ns": 2420.7999999999997, "ser_ci_low_ns": 1867.0077956989248, "ser_ci_high_ns": 1971.9478494623656, "deser_mean_ns": 2306.94623655914, "deser_median_ns": 2251.0, "deser_std_ns": 367.8406840157901, "deser_mad_ns": 236.0, "deser_cv": 0.1594491792597787, "deser_min_ns": 1502.0, "deser_max_ns": 3176.0, "deser_p5_ns": 1809.6, "deser_p25_ns": 2038.0, "deser_p50_ns": 2251.0, "deser_p75_ns": 2572.0, "deser_p95_ns": 2916.1999999999994, "deser_p99_ns": 3152.08, "deser_ci_low_ns": 2232.0534946236558, "deser_ci_high_ns": 2382.656451612903, "total_mean_ns": 4227.430107526881, "total_median_ns": 4154.0, "total_std_ns": 603.67215760402, "total_mad_ns": 427.0, "total_cv": 0.1427988499512245, "total_min_ns": 2842.0, "total_max_ns": 5566.0, "total_p5_ns": 3332.8, "total_p25_ns": 3838.0, "total_p50_ns": 4154.0, "total_p75_ns": 4690.0, "total_p95_ns": 5264.4, "total_p99_ns": 5554.96, "total_ci_low_ns": 4107.475268817205, "total_ci_high_ns": 4346.221505376344, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 5466.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.39956854762501}, {"serializer": "msgspec-msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 826.4375, "avg_time_deser_ns": 968.9479166666666, "avg_time_total_ns": 1795.3854166666667, "median_size_bytes": 52.0, "avg_ops_per_sec": 556983.4703551349, "min_ops_per_sec": 442086.6489832007, "max_ops_per_sec": 757575.7575757576, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 826.4375, "ser_median_ns": 826.5, "ser_std_ns": 122.6896652019575, "ser_mad_ns": 88.5, "ser_cv": 0.14845607224013613, "ser_min_ns": 589.0, "ser_max_ns": 1124.0, "ser_p5_ns": 630.5, "ser_p25_ns": 735.25, "ser_p50_ns": 826.5, "ser_p75_ns": 913.0, "ser_p95_ns": 1025.0, "ser_p99_ns": 1089.8, "ser_ci_low_ns": 803.4265625, "ser_ci_high_ns": 851.6380208333333, "deser_mean_ns": 968.9479166666666, "deser_median_ns": 974.0, "deser_std_ns": 99.24773573359552, "deser_mad_ns": 62.5, "deser_cv": 0.10242834937405444, "deser_min_ns": 716.0, "deser_max_ns": 1167.0, "deser_p5_ns": 798.0, "deser_p25_ns": 898.0, "deser_p50_ns": 974.0, "deser_p75_ns": 1029.5, "deser_p95_ns": 1137.25, "deser_p99_ns": 1157.5, "deser_ci_low_ns": 949.5927083333333, "deser_ci_high_ns": 988.3664062500001, "total_mean_ns": 1795.3854166666667, "total_median_ns": 1807.5, "total_std_ns": 207.9109814467248, "total_mad_ns": 168.0, "total_cv": 0.11580297997113886, "total_min_ns": 1320.0, "total_max_ns": 2262.0, "total_p5_ns": 1445.75, "total_p25_ns": 1628.25, "total_p50_ns": 1807.5, "total_p75_ns": 1954.5, "total_p95_ns": 2103.25, "total_p99_ns": 2194.5499999999997, "total_ci_low_ns": 1754.8510416666668, "total_ci_high_ns": 1838.7205729166667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 312.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "cbor2", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "6.1.3", "avg_time_ser_ns": 6067.164948453608, "avg_time_deser_ns": 3285.8041237113403, "avg_time_total_ns": 9352.969072164948, "median_size_bytes": 124.0, "avg_ops_per_sec": 106917.92010475752, "min_ops_per_sec": 88479.91505928154, "max_ops_per_sec": 138850.3193557345, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 6067.164948453608, "ser_median_ns": 6198.0, "ser_std_ns": 643.1121869538713, "ser_mad_ns": 402.0, "ser_cv": 0.10599879720062448, "ser_min_ns": 4535.0, "ser_max_ns": 7285.0, "ser_p5_ns": 4918.2, "ser_p25_ns": 5629.0, "ser_p50_ns": 6198.0, "ser_p75_ns": 6533.0, "ser_p95_ns": 6977.599999999999, "ser_p99_ns": 7172.679999999999, "ser_ci_low_ns": 5937.453092783506, "ser_ci_high_ns": 6197.438144329897, "deser_mean_ns": 3285.8041237113403, "deser_median_ns": 3289.0, "deser_std_ns": 258.06901689822797, "deser_mad_ns": 195.0, "deser_cv": 0.07854059681644598, "deser_min_ns": 2667.0, "deser_max_ns": 4017.0, "deser_p5_ns": 2822.6, "deser_p25_ns": 3092.0, "deser_p50_ns": 3289.0, "deser_p75_ns": 3472.0, "deser_p95_ns": 3688.2, "deser_p99_ns": 3757.799999999998, "deser_ci_low_ns": 3233.1538659793814, "deser_ci_high_ns": 3338.591237113402, "total_mean_ns": 9352.969072164948, "total_median_ns": 9471.0, "total_std_ns": 877.7264244152836, "total_mad_ns": 596.0, "total_cv": 0.09384468371946779, "total_min_ns": 7202.0, "total_max_ns": 11302.0, "total_p5_ns": 7883.8, "total_p25_ns": 8738.0, "total_p50_ns": 9471.0, "total_p75_ns": 9963.0, "total_p95_ns": 10601.6, "total_p99_ns": 10842.159999999996, "total_ci_low_ns": 9176.32912371134, "total_ci_high_ns": 9519.965206185567, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 908.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.774965437419384}, {"serializer": "orjson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "3.11.9", "avg_time_ser_ns": 1016.2736842105263, "avg_time_deser_ns": 1321.0105263157895, "avg_time_total_ns": 2337.2842105263157, "median_size_bytes": 168.0, "avg_ops_per_sec": 427846.9839039461, "min_ops_per_sec": 285225.32800912723, "max_ops_per_sec": 618046.9715698393, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1016.2736842105263, "ser_median_ns": 985.0, "ser_std_ns": 182.42302031998366, "ser_mad_ns": 132.0, "ser_cv": 0.1795018636753304, "ser_min_ns": 615.0, "ser_max_ns": 1547.0, "ser_p5_ns": 757.1, "ser_p25_ns": 872.5, "ser_p50_ns": 985.0, "ser_p75_ns": 1137.0, "ser_p95_ns": 1325.8, "ser_p99_ns": 1482.14, "ser_ci_low_ns": 980.2618421052632, "ser_ci_high_ns": 1053.0849999999998, "deser_mean_ns": 1321.0105263157895, "deser_median_ns": 1285.0, "deser_std_ns": 251.81251446504683, "deser_mad_ns": 160.0, "deser_cv": 0.19062112636402315, "deser_min_ns": 860.0, "deser_max_ns": 2028.0, "deser_p5_ns": 904.9, "deser_p25_ns": 1159.0, "deser_p50_ns": 1285.0, "deser_p75_ns": 1500.5, "deser_p95_ns": 1736.8, "deser_p99_ns": 1899.2200000000003, "deser_ci_low_ns": 1270.258947368421, "deser_ci_high_ns": 1371.3955263157895, "total_mean_ns": 2337.2842105263157, "total_median_ns": 2268.0, "total_std_ns": 415.7306222543093, "total_mad_ns": 313.0, "total_cv": 0.17786909284801697, "total_min_ns": 1618.0, "total_max_ns": 3506.0, "total_p5_ns": 1679.9, "total_p25_ns": 2059.0, "total_p50_ns": 2268.0, "total_p75_ns": 2647.5, "total_p95_ns": 3016.8999999999996, "total_p99_ns": 3286.9800000000005, "total_ci_low_ns": 2252.301052631579, "total_ci_high_ns": 2421.5226315789473, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 5466.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "flatbuffers", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "25.12.19", "avg_time_ser_ns": 29028.978494623654, "avg_time_deser_ns": 8028.548387096775, "avg_time_total_ns": 37057.52688172043, "median_size_bytes": 104.0, "avg_ops_per_sec": 26985.071162244116, "min_ops_per_sec": 23470.321778111578, "max_ops_per_sec": 32159.511175430132, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 29028.978494623654, "ser_median_ns": 28929.0, "ser_std_ns": 2034.4921382010934, "ser_mad_ns": 1376.0, "ser_cv": 0.0700848684213223, "ser_min_ns": 24324.0, "ser_max_ns": 33926.0, "ser_p5_ns": 25616.6, "ser_p25_ns": 27902.0, "ser_p50_ns": 28929.0, "ser_p75_ns": 30463.0, "ser_p95_ns": 31797.0, "ser_p99_ns": 33692.32, "ser_ci_low_ns": 28631.977688172043, "ser_ci_high_ns": 29429.41962365591, "deser_mean_ns": 8028.548387096775, "deser_median_ns": 8044.0, "deser_std_ns": 497.9223249212461, "deser_mad_ns": 315.0, "deser_cv": 0.06201897290941048, "deser_min_ns": 6771.0, "deser_max_ns": 9216.0, "deser_p5_ns": 7173.6, "deser_p25_ns": 7724.0, "deser_p50_ns": 8044.0, "deser_p75_ns": 8358.0, "deser_p95_ns": 8706.8, "deser_p99_ns": 9115.72, "deser_ci_low_ns": 7927.161559139785, "deser_ci_high_ns": 8130.543010752688, "total_mean_ns": 37057.52688172043, "total_median_ns": 36793.0, "total_std_ns": 2425.3792737533086, "total_mad_ns": 1650.0, "total_cv": 0.06544903229766498, "total_min_ns": 31095.0, "total_max_ns": 42607.0, "total_p5_ns": 32962.6, "total_p25_ns": 35588.0, "total_p50_ns": 36793.0, "total_p75_ns": 38998.0, "total_p95_ns": 40515.2, "total_p99_ns": 41912.4, "total_ci_low_ns": 36587.86559139785, "total_ci_high_ns": 37536.63306451613, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1162.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.97495512912717}, {"serializer": "rapidjson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "1.23", "avg_time_ser_ns": 3964.6105263157897, "avg_time_deser_ns": 4396.1894736842105, "avg_time_total_ns": 8360.8, "median_size_bytes": 168.0, "avg_ops_per_sec": 119605.77935125826, "min_ops_per_sec": 97068.53038245002, "max_ops_per_sec": 163746.52038644179, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 3964.6105263157897, "ser_median_ns": 4004.0, "ser_std_ns": 443.6174625502329, "ser_mad_ns": 293.0, "ser_cv": 0.11189433605284684, "ser_min_ns": 2849.0, "ser_max_ns": 4999.0, "ser_p5_ns": 3226.2, "ser_p25_ns": 3673.0, "ser_p50_ns": 4004.0, "ser_p75_ns": 4254.5, "ser_p95_ns": 4642.4, "ser_p99_ns": 4876.8, "ser_ci_low_ns": 3882.8207894736843, "ser_ci_high_ns": 4060.5444736842105, "deser_mean_ns": 4396.1894736842105, "deser_median_ns": 4418.0, "deser_std_ns": 443.7440870385035, "deser_mad_ns": 304.0, "deser_cv": 0.1009383443763686, "deser_min_ns": 3258.0, "deser_max_ns": 5433.0, "deser_p5_ns": 3636.4, "deser_p25_ns": 4129.0, "deser_p50_ns": 4418.0, "deser_p75_ns": 4730.5, "deser_p95_ns": 4998.8, "deser_p99_ns": 5291.06, "deser_ci_low_ns": 4307.654210526316, "deser_ci_high_ns": 4482.189210526316, "total_mean_ns": 8360.8, "total_median_ns": 8399.0, "total_std_ns": 865.5500477190114, "total_mad_ns": 613.0, "total_cv": 0.10352478802495114, "total_min_ns": 6107.0, "total_max_ns": 10302.0, "total_p5_ns": 6969.7, "total_p25_ns": 7755.5, "total_p50_ns": 8399.0, "total_p75_ns": 8974.0, "total_p95_ns": 9629.5, "total_p99_ns": 10235.26, "total_ci_low_ns": 8189.382105263157, "total_ci_high_ns": 8529.44052631579, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1492.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.83607046099594}, {"serializer": "dill", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "0.4.1", "avg_time_ser_ns": 53380.833333333336, "avg_time_deser_ns": 7997.552083333333, "avg_time_total_ns": 61378.385416666664, "median_size_bytes": 202.0, "avg_ops_per_sec": 16292.380342224844, "min_ops_per_sec": 14126.289023873429, "max_ops_per_sec": 19348.722016910782, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 53380.833333333336, "ser_median_ns": 52857.0, "ser_std_ns": 3044.393323598633, "ser_mad_ns": 2231.5, "ser_cv": 0.057031581065587825, "ser_min_ns": 45017.0, "ser_max_ns": 61525.0, "ser_p5_ns": 49154.25, "ser_p25_ns": 51121.0, "ser_p50_ns": 52857.0, "ser_p75_ns": 55720.0, "ser_p95_ns": 58221.75, "ser_p99_ns": 60205.45, "ser_ci_low_ns": 52762.308333333334, "ser_ci_high_ns": 53982.70416666667, "deser_mean_ns": 7997.552083333333, "deser_median_ns": 7875.0, "deser_std_ns": 722.502127038088, "deser_mad_ns": 503.0, "deser_cv": 0.09034040910390087, "deser_min_ns": 6666.0, "deser_max_ns": 10021.0, "deser_p5_ns": 6968.5, "deser_p25_ns": 7462.75, "deser_p50_ns": 7875.0, "deser_p75_ns": 8489.75, "deser_p95_ns": 9361.5, "deser_p99_ns": 9594.449999999999, "deser_ci_low_ns": 7853.31875, "deser_ci_high_ns": 8136.709114583334, "total_mean_ns": 61378.385416666664, "total_median_ns": 61192.0, "total_std_ns": 3553.7450027579625, "total_mad_ns": 2580.0, "total_cv": 0.0578989652242136, "total_min_ns": 51683.0, "total_max_ns": 70790.0, "total_p5_ns": 56228.5, "total_p25_ns": 58833.75, "total_p50_ns": 61192.0, "total_p75_ns": 64133.0, "total_p95_ns": 67044.25, "total_p99_ns": 68819.7, "total_ci_low_ns": 60704.97473958333, "total_ci_high_ns": 62089.13333333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 10948.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.18395265583672}, {"serializer": "msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "1.2.1", "avg_time_ser_ns": 2126.722222222222, "avg_time_deser_ns": 3334.6222222222223, "avg_time_total_ns": 5461.344444444445, "median_size_bytes": 124.0, "avg_ops_per_sec": 183105.09622172805, "min_ops_per_sec": 158428.39036755386, "max_ops_per_sec": 237304.22401518747, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 2126.722222222222, "ser_median_ns": 2122.0, "ser_std_ns": 191.93918909282954, "ser_mad_ns": 123.5, "ser_cv": 0.09025117953216823, "ser_min_ns": 1631.0, "ser_max_ns": 2586.0, "ser_p5_ns": 1779.35, "ser_p25_ns": 2012.75, "ser_p50_ns": 2122.0, "ser_p75_ns": 2273.25, "ser_p95_ns": 2372.3, "ser_p99_ns": 2565.53, "ser_ci_low_ns": 2086.6175, "ser_ci_high_ns": 2165.226388888889, "deser_mean_ns": 3334.6222222222223, "deser_median_ns": 3311.5, "deser_std_ns": 266.8141455482995, "deser_mad_ns": 167.0, "deser_cv": 0.0800133051864844, "deser_min_ns": 2583.0, "deser_max_ns": 3976.0, "deser_p5_ns": 2890.2, "deser_p25_ns": 3164.5, "deser_p50_ns": 3311.5, "deser_p75_ns": 3530.0, "deser_p95_ns": 3748.85, "deser_p99_ns": 3883.44, "deser_ci_low_ns": 3281.840277777778, "deser_ci_high_ns": 3389.1699999999996, "total_mean_ns": 5461.344444444445, "total_median_ns": 5455.5, "total_std_ns": 422.96370500943203, "total_mad_ns": 282.0, "total_cv": 0.07744680990405065, "total_min_ns": 4214.0, "total_max_ns": 6312.0, "total_p5_ns": 4728.25, "total_p25_ns": 5244.5, "total_p50_ns": 5455.5, "total_p75_ns": 5803.0, "total_p95_ns": 6087.6, "total_p99_ns": 6184.73, "total_ci_low_ns": 5379.347777777778, "total_ci_high_ns": 5549.203611111111, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 521.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.4207173897280505}, {"serializer": "json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 7958.425531914893, "avg_time_deser_ns": 5478.276595744681, "avg_time_total_ns": 13436.702127659575, "median_size_bytes": 168.0, "avg_ops_per_sec": 74423.02363326868, "min_ops_per_sec": 62770.69863787584, "max_ops_per_sec": 94366.33009342267, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 7958.425531914893, "ser_median_ns": 7993.5, "ser_std_ns": 674.04494743976, "ser_mad_ns": 435.0, "ser_cv": 0.08469576610809558, "ser_min_ns": 6482.0, "ser_max_ns": 9162.0, "ser_p5_ns": 6672.2, "ser_p25_ns": 7575.0, "ser_p50_ns": 7993.5, "ser_p75_ns": 8451.25, "ser_p95_ns": 8997.1, "ser_p99_ns": 9144.33, "ser_ci_low_ns": 7816.650531914894, "ser_ci_high_ns": 8086.609574468084, "deser_mean_ns": 5478.276595744681, "deser_median_ns": 5355.5, "deser_std_ns": 733.4801329742043, "deser_mad_ns": 494.0, "deser_cv": 0.1338888462740169, "deser_min_ns": 3911.0, "deser_max_ns": 7317.0, "deser_p5_ns": 4405.3, "deser_p25_ns": 5037.25, "deser_p50_ns": 5355.5, "deser_p75_ns": 6029.25, "deser_p95_ns": 6854.3, "deser_p99_ns": 7133.789999999999, "deser_ci_low_ns": 5332.7638297872345, "deser_ci_high_ns": 5633.872074468085, "total_mean_ns": 13436.702127659575, "total_median_ns": 13328.0, "total_std_ns": 1196.7298617193892, "total_mad_ns": 803.5, "total_cv": 0.08906425478138046, "total_min_ns": 10597.0, "total_max_ns": 15931.0, "total_p5_ns": 11536.75, "total_p25_ns": 12721.5, "total_p50_ns": 13328.0, "total_p75_ns": 14334.25, "total_p95_ns": 15453.5, "total_p99_ns": 15657.579999999998, "total_ci_low_ns": 13207.042819148935, "total_ci_high_ns": 13684.63324468085, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 2329.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.36641538850139}, {"serializer": "pickle", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 4930.936170212766, "avg_time_deser_ns": 3807.372340425532, "avg_time_total_ns": 8738.308510638299, "median_size_bytes": 202.0, "avg_ops_per_sec": 114438.62376598032, "min_ops_per_sec": 84559.4452900389, "max_ops_per_sec": 158906.7217543302, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 4930.936170212766, "ser_median_ns": 4904.0, "ser_std_ns": 698.9122086870723, "ser_mad_ns": 408.5, "ser_cv": 0.14174026687044192, "ser_min_ns": 3397.0, "ser_max_ns": 6415.0, "ser_p5_ns": 3726.75, "ser_p25_ns": 4541.75, "ser_p50_ns": 4904.0, "ser_p75_ns": 5337.75, "ser_p95_ns": 6102.4, "ser_p99_ns": 6406.63, "ser_ci_low_ns": 4789.387500000001, "ser_ci_high_ns": 5077.166489361703, "deser_mean_ns": 3807.372340425532, "deser_median_ns": 3837.0, "deser_std_ns": 633.7477532193644, "deser_mad_ns": 385.0, "deser_cv": 0.1664527912046904, "deser_min_ns": 2429.0, "deser_max_ns": 5411.0, "deser_p5_ns": 2790.3, "deser_p25_ns": 3408.25, "deser_p50_ns": 3837.0, "deser_p75_ns": 4172.75, "deser_p95_ns": 4992.45, "deser_p99_ns": 5271.499999999999, "deser_ci_low_ns": 3685.162765957447, "deser_ci_high_ns": 3934.1188829787234, "total_mean_ns": 8738.308510638299, "total_median_ns": 8676.5, "total_std_ns": 1281.371342234945, "total_mad_ns": 770.5, "total_cv": 0.14663837293853405, "total_min_ns": 6293.0, "total_max_ns": 11826.0, "total_p5_ns": 6462.65, "total_p25_ns": 7954.5, "total_p50_ns": 8676.5, "total_p75_ns": 9459.5, "total_p95_ns": 11030.65, "total_p99_ns": 11398.199999999997, "total_ci_low_ns": 8464.946276595745, "total_ci_high_ns": 8985.884042553193, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 4969.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.707352639964238}, {"serializer": "mashumaro", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "3.22", "avg_time_ser_ns": 1811.4795918367347, "avg_time_deser_ns": 3323.5714285714284, "avg_time_total_ns": 5135.051020408163, "median_size_bytes": 168.0, "avg_ops_per_sec": 194740.03199300528, "min_ops_per_sec": 145900.20426028597, "max_ops_per_sec": 292141.396435875, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 1811.4795918367347, "ser_median_ns": 1779.0, "ser_std_ns": 297.707295174021, "ser_mad_ns": 202.5, "ser_cv": 0.16434482426167615, "ser_min_ns": 1219.0, "ser_max_ns": 2541.0, "ser_p5_ns": 1349.65, "ser_p25_ns": 1624.25, "ser_p50_ns": 1779.0, "ser_p75_ns": 2011.75, "ser_p95_ns": 2305.25, "ser_p99_ns": 2520.63, "ser_ci_low_ns": 1751.1826530612245, "ser_ci_high_ns": 1870.5923469387756, "deser_mean_ns": 3323.5714285714284, "deser_median_ns": 3273.5, "deser_std_ns": 502.1212118007028, "deser_mad_ns": 327.0, "deser_cv": 0.15107880862260561, "deser_min_ns": 2194.0, "deser_max_ns": 4496.0, "deser_p5_ns": 2520.0, "deser_p25_ns": 2982.5, "deser_p50_ns": 3273.5, "deser_p75_ns": 3616.75, "deser_p95_ns": 4228.05, "deser_p99_ns": 4457.2, "deser_ci_low_ns": 3227.044897959184, "deser_ci_high_ns": 3422.209948979592, "total_mean_ns": 5135.051020408163, "total_median_ns": 5069.5, "total_std_ns": 774.3082229798453, "total_mad_ns": 498.5, "total_cv": 0.15078880811554213, "total_min_ns": 3423.0, "total_max_ns": 6854.0, "total_p5_ns": 3910.8, "total_p25_ns": 4604.0, "total_p50_ns": 5069.5, "total_p75_ns": 5570.0, "total_p95_ns": 6515.149999999999, "total_p99_ns": 6776.4, "total_ci_low_ns": 4984.123979591836, "total_ci_high_ns": 5286.358163265307, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 5466.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.9997851772287862, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.465009827325275}, {"serializer": "msgspec-msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 1389.5164835164835, "avg_time_deser_ns": 1619.4285714285713, "avg_time_total_ns": 3008.945054945055, "median_size_bytes": 52.0, "avg_ops_per_sec": 332342.39301131427, "min_ops_per_sec": 267881.0608090008, "max_ops_per_sec": 441891.2947414936, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 1389.5164835164835, "ser_median_ns": 1393.0, "ser_std_ns": 174.8098244529601, "ser_mad_ns": 113.0, "ser_cv": 0.1258062257819098, "ser_min_ns": 1003.0, "ser_max_ns": 1824.0, "ser_p5_ns": 1121.0, "ser_p25_ns": 1284.0, "ser_p50_ns": 1393.0, "ser_p75_ns": 1507.5, "ser_p95_ns": 1676.5, "ser_p99_ns": 1808.6999999999998, "ser_ci_low_ns": 1353.2846153846153, "ser_ci_high_ns": 1424.9343406593407, "deser_mean_ns": 1619.4285714285713, "deser_median_ns": 1620.0, "deser_std_ns": 140.2784645590606, "deser_mad_ns": 87.0, "deser_cv": 0.0866221993572181, "deser_min_ns": 1260.0, "deser_max_ns": 1953.0, "deser_p5_ns": 1380.0, "deser_p25_ns": 1536.0, "deser_p50_ns": 1620.0, "deser_p75_ns": 1709.0, "deser_p95_ns": 1817.0, "deser_p99_ns": 1944.0, "deser_ci_low_ns": 1590.1285714285714, "deser_ci_high_ns": 1646.632967032967, "total_mean_ns": 3008.945054945055, "total_median_ns": 3023.0, "total_std_ns": 282.9811679104131, "total_mad_ns": 192.0, "total_cv": 0.09404663852048321, "total_min_ns": 2263.0, "total_max_ns": 3733.0, "total_p5_ns": 2505.5, "total_p25_ns": 2837.5, "total_p50_ns": 3023.0, "total_p75_ns": 3208.0, "total_p95_ns": 3484.0, "total_p99_ns": 3611.499999999999, "total_ci_low_ns": 2950.9313186813188, "total_ci_high_ns": 3065.27445054945, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 312.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.8050896471949104, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.8736183475607942}, {"serializer": "msgspec", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 1618.0860215053763, "avg_time_deser_ns": 1805.2043010752689, "avg_time_total_ns": 3423.2903225806454, "median_size_bytes": 80.0, "avg_ops_per_sec": 292116.6204933944, "min_ops_per_sec": 239348.97079942556, "max_ops_per_sec": 417014.1784820684, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1618.0860215053763, "ser_median_ns": 1613.0, "ser_std_ns": 202.43037750609565, "ser_mad_ns": 141.0, "ser_cv": 0.12510483053167087, "ser_min_ns": 1061.0, "ser_max_ns": 2057.0, "ser_p5_ns": 1303.8, "ser_p25_ns": 1468.0, "ser_p50_ns": 1613.0, "ser_p75_ns": 1747.0, "ser_p95_ns": 1992.6, "ser_p99_ns": 2034.0, "ser_ci_low_ns": 1577.396505376344, "ser_ci_high_ns": 1660.6244623655912, "deser_mean_ns": 1805.2043010752689, "deser_median_ns": 1826.0, "deser_std_ns": 186.58402694693473, "deser_mad_ns": 119.0, "deser_cv": 0.10335895324191066, "deser_min_ns": 1337.0, "deser_max_ns": 2160.0, "deser_p5_ns": 1453.4, "deser_p25_ns": 1693.0, "deser_p50_ns": 1826.0, "deser_p75_ns": 1936.0, "deser_p95_ns": 2091.9999999999995, "deser_p99_ns": 2147.12, "deser_ci_low_ns": 1768.032258064516, "deser_ci_high_ns": 1841.981182795699, "total_mean_ns": 3423.2903225806454, "total_median_ns": 3454.0, "total_std_ns": 366.64298416867626, "total_mad_ns": 259.0, "total_cv": 0.1071025094629668, "total_min_ns": 2398.0, "total_max_ns": 4178.0, "total_p5_ns": 2848.0, "total_p25_ns": 3164.0, "total_p50_ns": 3454.0, "total_p75_ns": 3643.0, "total_p95_ns": 3996.399999999999, "total_p99_ns": 4167.88, "total_ci_low_ns": 3343.5368279569893, "total_ci_high_ns": 3498.2615591397853, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 351.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.9394453876627051, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.757694782454097}, {"serializer": "serpyco-rs", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "1.21.0", "avg_time_ser_ns": 2204.159574468085, "avg_time_deser_ns": 2479.6382978723404, "avg_time_total_ns": 4683.797872340426, "median_size_bytes": 168.0, "avg_ops_per_sec": 213501.95445140218, "min_ops_per_sec": 174307.1291615827, "max_ops_per_sec": 270635.9945872801, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 2204.159574468085, "ser_median_ns": 2215.5, "ser_std_ns": 240.75617001848056, "ser_mad_ns": 141.5, "ser_cv": 0.10922810344917093, "ser_min_ns": 1604.0, "ser_max_ns": 2773.0, "ser_p5_ns": 1781.05, "ser_p25_ns": 2050.25, "ser_p50_ns": 2215.5, "ser_p75_ns": 2338.5, "ser_p95_ns": 2586.0, "ser_p99_ns": 2771.14, "ser_ci_low_ns": 2155.6675531914893, "ser_ci_high_ns": 2250.8138297872338, "deser_mean_ns": 2479.6382978723404, "deser_median_ns": 2474.0, "deser_std_ns": 319.0274148419341, "deser_mad_ns": 241.5, "deser_cv": 0.12865885121861376, "deser_min_ns": 1867.0, "deser_max_ns": 3171.0, "deser_p5_ns": 1958.6, "deser_p25_ns": 2234.75, "deser_p50_ns": 2474.0, "deser_p75_ns": 2722.0, "deser_p95_ns": 2972.85, "deser_p99_ns": 3116.1299999999997, "deser_ci_low_ns": 2415.0898936170215, "deser_ci_high_ns": 2545.475265957447, "total_mean_ns": 4683.797872340426, "total_median_ns": 4688.5, "total_std_ns": 520.7473863837743, "total_mad_ns": 395.0, "total_cv": 0.1111805847683953, "total_min_ns": 3695.0, "total_max_ns": 5737.0, "total_p5_ns": 3807.2, "total_p25_ns": 4311.5, "total_p50_ns": 4688.5, "total_p75_ns": 5099.75, "total_p95_ns": 5477.8, "total_p99_ns": 5714.68, "total_ci_low_ns": 4574.348936170213, "total_ci_high_ns": 4785.546542553192, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 5466.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.963082574741082}, {"serializer": "cloudpickle", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "3.1.2", "avg_time_ser_ns": 12299.54945054945, "avg_time_deser_ns": 3763.098901098901, "avg_time_total_ns": 16062.648351648351, "median_size_bytes": 202.0, "avg_ops_per_sec": 62256.23434614877, "min_ops_per_sec": 49922.6199390944, "max_ops_per_sec": 76190.47619047618, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 12299.54945054945, "ser_median_ns": 12332.0, "ser_std_ns": 1071.1655983993041, "ser_mad_ns": 731.0, "ser_cv": 0.0870898241196512, "ser_min_ns": 9772.0, "ser_max_ns": 15401.0, "ser_p5_ns": 10629.0, "ser_p25_ns": 11597.0, "ser_p50_ns": 12332.0, "ser_p75_ns": 12952.5, "ser_p95_ns": 13879.0, "ser_p99_ns": 14839.399999999996, "ser_ci_low_ns": 12087.398351648351, "ser_ci_high_ns": 12517.59945054945, "deser_mean_ns": 3763.098901098901, "deser_median_ns": 3653.0, "deser_std_ns": 515.3353612496765, "deser_mad_ns": 374.0, "deser_cv": 0.1369444106555871, "deser_min_ns": 2846.0, "deser_max_ns": 5108.0, "deser_p5_ns": 3059.0, "deser_p25_ns": 3367.5, "deser_p50_ns": 3653.0, "deser_p75_ns": 4147.0, "deser_p95_ns": 4638.0, "deser_p99_ns": 4888.399999999999, "deser_ci_low_ns": 3665.5576923076924, "deser_ci_high_ns": 3868.5524725274727, "total_mean_ns": 16062.648351648351, "total_median_ns": 16024.0, "total_std_ns": 1414.6697013290288, "total_mad_ns": 1044.0, "total_cv": 0.0880720084483363, "total_min_ns": 13125.0, "total_max_ns": 20031.0, "total_p5_ns": 13808.5, "total_p25_ns": 15111.0, "total_p50_ns": 16024.0, "total_p75_ns": 17075.0, "total_p95_ns": 18439.5, "total_p99_ns": 19080.599999999995, "total_ci_low_ns": 15781.297252747254, "total_ci_high_ns": 16361.753296703297, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 8946.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.23205915430954}, {"serializer": "cbor2", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "6.1.3", "avg_time_ser_ns": 7166.688172043011, "avg_time_deser_ns": 3600.569892473118, "avg_time_total_ns": 10767.258064516129, "median_size_bytes": 124.0, "avg_ops_per_sec": 92874.15551927139, "min_ops_per_sec": 76958.59627520393, "max_ops_per_sec": 121802.6796589525, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 7166.688172043011, "ser_median_ns": 7274.0, "ser_std_ns": 704.1822883207627, "ser_mad_ns": 448.0, "ser_cv": 0.09825769887236788, "ser_min_ns": 5262.0, "ser_max_ns": 8915.0, "ser_p5_ns": 5910.8, "ser_p25_ns": 6719.0, "ser_p50_ns": 7274.0, "ser_p75_ns": 7650.0, "ser_p95_ns": 8075.599999999999, "ser_p99_ns": 8828.52, "ser_ci_low_ns": 7023.534677419355, "ser_ci_high_ns": 7304.054301075269, "deser_mean_ns": 3600.569892473118, "deser_median_ns": 3593.0, "deser_std_ns": 304.4081712698558, "deser_mad_ns": 216.0, "deser_cv": 0.08454444167469484, "deser_min_ns": 2735.0, "deser_max_ns": 4266.0, "deser_p5_ns": 3085.6, "deser_p25_ns": 3408.0, "deser_p50_ns": 3593.0, "deser_p75_ns": 3826.0, "deser_p95_ns": 4014.7999999999997, "deser_p99_ns": 4221.84, "deser_ci_low_ns": 3540.5075268817204, "deser_ci_high_ns": 3660.666935483871, "total_mean_ns": 10767.258064516129, "total_median_ns": 10831.0, "total_std_ns": 974.2828120706088, "total_mad_ns": 645.0, "total_cv": 0.09048569340799878, "total_min_ns": 8210.0, "total_max_ns": 12994.0, "total_p5_ns": 8941.8, "total_p25_ns": 10215.0, "total_p50_ns": 10831.0, "total_p75_ns": 11476.0, "total_p95_ns": 12118.599999999999, "total_p99_ns": 12847.72, "total_ci_low_ns": 10563.396774193548, "total_ci_high_ns": 10959.269086021504, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 908.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.251176873925674}, {"serializer": "avro", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "1.12.2", "avg_time_ser_ns": 8780.439560439561, "avg_time_deser_ns": 5391.307692307692, "avg_time_total_ns": 14171.747252747253, "median_size_bytes": 44.0, "avg_ops_per_sec": 70562.92933859273, "min_ops_per_sec": 62154.266890422026, "max_ops_per_sec": 81506.23522699486, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 8780.439560439561, "ser_median_ns": 8840.0, "ser_std_ns": 570.1262473988879, "ser_mad_ns": 414.0, "ser_cv": 0.06493140160859402, "ser_min_ns": 7266.0, "ser_max_ns": 10240.0, "ser_p5_ns": 7912.5, "ser_p25_ns": 8342.0, "ser_p50_ns": 8840.0, "ser_p75_ns": 9222.5, "ser_p95_ns": 9520.0, "ser_p99_ns": 9905.199999999997, "ser_ci_low_ns": 8659.933241758241, "ser_ci_high_ns": 8898.872252747253, "deser_mean_ns": 5391.307692307692, "deser_median_ns": 5424.0, "deser_std_ns": 321.43313430488126, "deser_mad_ns": 231.0, "deser_cv": 0.05962062502266407, "deser_min_ns": 4677.0, "deser_max_ns": 6264.0, "deser_p5_ns": 4928.0, "deser_p25_ns": 5139.5, "deser_p50_ns": 5424.0, "deser_p75_ns": 5581.0, "deser_p95_ns": 5882.0, "deser_p99_ns": 6059.699999999999, "deser_ci_low_ns": 5328.267032967033, "deser_ci_high_ns": 5456.101373626374, "total_mean_ns": 14171.747252747253, "total_median_ns": 14253.0, "total_std_ns": 858.3534572839196, "total_mad_ns": 671.0, "total_cv": 0.06056793435386199, "total_min_ns": 12269.0, "total_max_ns": 16089.0, "total_p5_ns": 12830.5, "total_p25_ns": 13478.5, "total_p50_ns": 14253.0, "total_p75_ns": 14797.5, "total_p95_ns": 15481.5, "total_p99_ns": 15721.799999999997, "total_ci_low_ns": 13987.627197802198, "total_ci_high_ns": 14342.66923076923, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1808.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.595760447049663}, {"serializer": "pydantic", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "2.13.4", "avg_time_ser_ns": 5753.182795698925, "avg_time_deser_ns": 9887.333333333334, "avg_time_total_ns": 15640.516129032258, "median_size_bytes": 168.0, "avg_ops_per_sec": 63936.50898411075, "min_ops_per_sec": 50823.338076844884, "max_ops_per_sec": 79302.14115781126, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 5753.182795698925, "ser_median_ns": 5809.0, "ser_std_ns": 651.9339614835059, "ser_mad_ns": 420.0, "ser_cv": 0.113317095012328, "ser_min_ns": 4190.0, "ser_max_ns": 7182.0, "ser_p5_ns": 4512.6, "ser_p25_ns": 5378.0, "ser_p50_ns": 5809.0, "ser_p75_ns": 6184.0, "ser_p95_ns": 6690.0, "ser_p99_ns": 7148.88, "ser_ci_low_ns": 5621.59623655914, "ser_ci_high_ns": 5885.523118279571, "deser_mean_ns": 9887.333333333334, "deser_median_ns": 9935.0, "deser_std_ns": 1131.347746998102, "deser_mad_ns": 724.0, "deser_cv": 0.11442395121685339, "deser_min_ns": 7374.0, "deser_max_ns": 12971.0, "deser_p5_ns": 8039.8, "deser_p25_ns": 9000.0, "deser_p50_ns": 9935.0, "deser_p75_ns": 10601.0, "deser_p95_ns": 11909.599999999999, "deser_p99_ns": 12435.56, "deser_ci_low_ns": 9657.634139784946, "deser_ci_high_ns": 10127.818010752688, "total_mean_ns": 15640.516129032258, "total_median_ns": 15577.0, "total_std_ns": 1569.4737321575915, "total_mad_ns": 1104.0, "total_cv": 0.10034667137641967, "total_min_ns": 12610.0, "total_max_ns": 19676.0, "total_p5_ns": 13067.0, "total_p25_ns": 14734.0, "total_p50_ns": 15577.0, "total_p75_ns": 16695.0, "total_p95_ns": 18194.8, "total_p99_ns": 19106.52, "total_ci_low_ns": 15315.422043010753, "total_ci_high_ns": 15960.122849462367, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 2329.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.59508866601163}, {"serializer": "protobuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "7.35.1", "avg_time_ser_ns": 1983.3010752688172, "avg_time_deser_ns": 1953.5483870967741, "avg_time_total_ns": 3936.8494623655915, "median_size_bytes": 50.0, "avg_ops_per_sec": 254010.22049725914, "min_ops_per_sec": 210659.3638087213, "max_ops_per_sec": 365764.447695684, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1983.3010752688172, "ser_median_ns": 2025.0, "ser_std_ns": 280.7220420453933, "ser_mad_ns": 191.0, "ser_cv": 0.14154282753431383, "ser_min_ns": 1324.0, "ser_max_ns": 2488.0, "ser_p5_ns": 1451.8, "ser_p25_ns": 1790.0, "ser_p50_ns": 2025.0, "ser_p75_ns": 2205.0, "ser_p95_ns": 2347.6, "ser_p99_ns": 2419.92, "ser_ci_low_ns": 1921.792741935484, "ser_ci_high_ns": 2040.090322580645, "deser_mean_ns": 1953.5483870967741, "deser_median_ns": 1948.0, "deser_std_ns": 205.28715392839962, "deser_mad_ns": 132.0, "deser_cv": 0.10508424325925345, "deser_min_ns": 1408.0, "deser_max_ns": 2453.0, "deser_p5_ns": 1652.4, "deser_p25_ns": 1821.0, "deser_p50_ns": 1948.0, "deser_p75_ns": 2094.0, "deser_p95_ns": 2276.2, "deser_p99_ns": 2377.56, "deser_ci_low_ns": 1911.3317204301075, "deser_ci_high_ns": 1992.983064516129, "total_mean_ns": 3936.8494623655915, "total_median_ns": 3985.0, "total_std_ns": 468.85092991632587, "total_mad_ns": 299.0, "total_cv": 0.11909292808839092, "total_min_ns": 2734.0, "total_max_ns": 4747.0, "total_p5_ns": 3153.2, "total_p25_ns": 3673.0, "total_p50_ns": 3985.0, "total_p75_ns": 4257.0, "total_p95_ns": 4600.4, "total_p99_ns": 4712.96, "total_ci_low_ns": 3845.8674731182796, "total_ci_high_ns": 4026.8155913978494, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 187.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.9831352574985852, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.5977826818892513}, {"serializer": "flatbuffers", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "25.12.19", "avg_time_ser_ns": 1431487.7222222222, "avg_time_deser_ns": 450104.84444444446, "avg_time_total_ns": 1881592.5666666667, "median_size_bytes": 10404.0, "avg_ops_per_sec": 531.4646846057375, "min_ops_per_sec": 497.8435904878021, "max_ops_per_sec": 565.5859074090623, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 1431487.7222222222, "ser_median_ns": 1430564.0, "ser_std_ns": 40947.898207308885, "ser_mad_ns": 27415.0, "ser_cv": 0.02860513406551746, "ser_min_ns": 1346884.0, "ser_max_ns": 1525825.0, "ser_p5_ns": 1368098.5, "ser_p25_ns": 1403682.75, "ser_p50_ns": 1430564.0, "ser_p75_ns": 1457305.25, "ser_p95_ns": 1499537.75, "ser_p99_ns": 1524426.81, "ser_ci_low_ns": 1422949.2994444445, "ser_ci_high_ns": 1440080.1202777778, "deser_mean_ns": 450104.84444444446, "deser_median_ns": 449082.5, "deser_std_ns": 15627.045170538398, "deser_mad_ns": 12456.5, "deser_cv": 0.03471867802228735, "deser_min_ns": 417572.0, "deser_max_ns": 488304.0, "deser_p5_ns": 427228.85, "deser_p25_ns": 437750.75, "deser_p50_ns": 449082.5, "deser_p75_ns": 461807.0, "deser_p95_ns": 475490.2, "deser_p99_ns": 485504.06, "deser_ci_low_ns": 446999.3575, "deser_ci_high_ns": 453330.7680555555, "total_mean_ns": 1881592.5666666667, "total_median_ns": 1878463.5, "total_std_ns": 51166.05563800756, "total_mad_ns": 36520.5, "total_cv": 0.027192951622173302, "total_min_ns": 1768078.0, "total_max_ns": 2008663.0, "total_p5_ns": 1807862.5, "total_p25_ns": 1842616.0, "total_p50_ns": 1878463.5, "total_p75_ns": 1915876.75, "total_p95_ns": 1971155.95, "total_p99_ns": 1997465.02, "total_ci_low_ns": 1872073.9402777778, "total_ci_high_ns": 1892531.1980555556, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 61504.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 51.13686095024371}, {"serializer": "dill", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "0.4.1", "avg_time_ser_ns": 1343696.3483146068, "avg_time_deser_ns": 69178.33707865169, "avg_time_total_ns": 1412874.6853932585, "median_size_bytes": 7853.0, "avg_ops_per_sec": 707.7768540538758, "min_ops_per_sec": 661.0259122157588, "max_ops_per_sec": 754.393019148758, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 1343696.3483146068, "ser_median_ns": 1341682.0, "ser_std_ns": 37885.76700907524, "ser_mad_ns": 24682.0, "ser_cv": 0.02819518491405831, "ser_min_ns": 1263793.0, "ser_max_ns": 1432549.0, "ser_p5_ns": 1277540.2, "ser_p25_ns": 1320673.0, "ser_p50_ns": 1341682.0, "ser_p75_ns": 1368027.0, "ser_p95_ns": 1407394.6, "ser_p99_ns": 1429284.2, "ser_ci_low_ns": 1335284.4412921348, "ser_ci_high_ns": 1351592.354494382, "deser_mean_ns": 69178.33707865169, "deser_median_ns": 68011.0, "deser_std_ns": 5101.691475169201, "deser_mad_ns": 3006.0, "deser_cv": 0.07374695158354094, "deser_min_ns": 61776.0, "deser_max_ns": 81407.0, "deser_p5_ns": 62699.6, "deser_p25_ns": 65466.0, "deser_p50_ns": 68011.0, "deser_p75_ns": 71559.0, "deser_p95_ns": 79423.4, "deser_p99_ns": 81029.48, "deser_ci_low_ns": 68111.45646067415, "deser_ci_high_ns": 70202.95140449438, "total_mean_ns": 1412874.6853932585, "total_median_ns": 1410450.0, "total_std_ns": 41448.96261685609, "total_mad_ns": 30022.0, "total_cv": 0.02933661636475511, "total_min_ns": 1325569.0, "total_max_ns": 1512800.0, "total_p5_ns": 1343179.2, "total_p25_ns": 1386934.0, "total_p50_ns": 1410450.0, "total_p75_ns": 1441874.0, "total_p95_ns": 1482131.2, "total_p99_ns": 1504139.9200000002, "total_ci_low_ns": 1404469.248033708, "total_ci_high_ns": 1421782.358988764, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 100104.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 47.2771710042208}, {"serializer": "pickle", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 71306.9247311828, "avg_time_deser_ns": 59305.06451612903, "avg_time_total_ns": 130611.98924731182, "median_size_bytes": 7853.0, "avg_ops_per_sec": 7656.264985800922, "min_ops_per_sec": 6660.0953725657355, "max_ops_per_sec": 9178.522257916475, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 71306.9247311828, "ser_median_ns": 70485.0, "ser_std_ns": 7537.089374836484, "ser_mad_ns": 4856.0, "ser_cv": 0.10569926277497263, "ser_min_ns": 56800.0, "ser_max_ns": 90321.0, "ser_p5_ns": 59290.6, "ser_p25_ns": 65924.0, "ser_p50_ns": 70485.0, "ser_p75_ns": 75548.0, "ser_p95_ns": 86467.4, "ser_p99_ns": 90283.28, "ser_ci_low_ns": 69897.14032258064, "ser_ci_high_ns": 72864.2379032258, "deser_mean_ns": 59305.06451612903, "deser_median_ns": 59263.0, "deser_std_ns": 3715.0292052408454, "deser_mad_ns": 2503.0, "deser_cv": 0.06264269730674485, "deser_min_ns": 50364.0, "deser_max_ns": 68038.0, "deser_p5_ns": 52520.8, "deser_p25_ns": 56776.0, "deser_p50_ns": 59263.0, "deser_p75_ns": 61766.0, "deser_p95_ns": 65379.799999999996, "deser_p99_ns": 66981.84, "deser_ci_low_ns": 58586.29811827957, "deser_ci_high_ns": 60076.35403225807, "total_mean_ns": 130611.98924731182, "total_median_ns": 129473.0, "total_std_ns": 10026.149357831016, "total_mad_ns": 6638.0, "total_cv": 0.076762856270772, "total_min_ns": 108950.0, "total_max_ns": 150148.0, "total_p5_ns": 113471.2, "total_p25_ns": 123974.0, "total_p50_ns": 129473.0, "total_p75_ns": 138485.0, "total_p95_ns": 146216.2, "total_p99_ns": 148791.91999999998, "total_ci_low_ns": 128576.33279569892, "total_ci_high_ns": 132524.12795698925, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 80654.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.104290418452857}, {"serializer": "avro", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "1.12.2", "avg_time_ser_ns": 217308.92307692306, "avg_time_deser_ns": 144771.9010989011, "avg_time_total_ns": 362080.8241758242, "median_size_bytes": 4048.0, "avg_ops_per_sec": 2761.8143056214603, "min_ops_per_sec": 2478.1980526319703, "max_ops_per_sec": 3038.488534263516, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 217308.92307692306, "ser_median_ns": 216546.0, "ser_std_ns": 11559.345527639116, "ser_mad_ns": 8467.0, "ser_cv": 0.05319314717485087, "ser_min_ns": 195348.0, "ser_max_ns": 247199.0, "ser_p5_ns": 201232.5, "ser_p25_ns": 207641.0, "ser_p50_ns": 216546.0, "ser_p75_ns": 224872.5, "ser_p95_ns": 236547.5, "ser_p99_ns": 245326.09999999998, "ser_ci_low_ns": 215027.33406593406, "ser_ci_high_ns": 219641.09065934067, "deser_mean_ns": 144771.9010989011, "deser_median_ns": 143893.0, "deser_std_ns": 5449.829626399027, "deser_mad_ns": 3774.0, "deser_cv": 0.03764424992026574, "deser_min_ns": 132178.0, "deser_max_ns": 158493.0, "deser_p5_ns": 137050.0, "deser_p25_ns": 141063.5, "deser_p50_ns": 143893.0, "deser_p75_ns": 148274.5, "deser_p95_ns": 153804.0, "deser_p99_ns": 158410.2, "deser_ci_low_ns": 143730.48983516483, "deser_ci_high_ns": 145885.03736263738, "total_mean_ns": 362080.8241758242, "total_median_ns": 360978.0, "total_std_ns": 15179.815075431517, "total_mad_ns": 12513.0, "total_cv": 0.04192383043201508, "total_min_ns": 329111.0, "total_max_ns": 403519.0, "total_p5_ns": 341847.0, "total_p25_ns": 350043.5, "total_p50_ns": 360978.0, "total_p75_ns": 375414.0, "total_p95_ns": 385688.0, "total_p99_ns": 397631.19999999995, "total_ci_low_ns": 358843.2510989011, "total_ci_high_ns": 365273.59505494504, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 54411.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.708847257717824}, {"serializer": "rapidjson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "1.23", "avg_time_ser_ns": 84068.73033707865, "avg_time_deser_ns": 105633.31460674158, "avg_time_total_ns": 189702.04494382022, "median_size_bytes": 16546.0, "avg_ops_per_sec": 5271.424460902082, "min_ops_per_sec": 4644.271987144655, "max_ops_per_sec": 6073.8212231461175, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 84068.73033707865, "ser_median_ns": 82216.0, "ser_std_ns": 7257.297411702934, "ser_mad_ns": 3379.0, "ser_cv": 0.08632576443826809, "ser_min_ns": 71590.0, "ser_max_ns": 102566.0, "ser_p5_ns": 75766.2, "ser_p25_ns": 79313.0, "ser_p50_ns": 82216.0, "ser_p75_ns": 86435.0, "ser_p95_ns": 100542.59999999999, "ser_p99_ns": 101782.8, "ser_ci_low_ns": 82537.54662921348, "ser_ci_high_ns": 85625.12162921348, "deser_mean_ns": 105633.31460674158, "deser_median_ns": 105398.0, "deser_std_ns": 5318.45170052403, "deser_mad_ns": 3451.0, "deser_cv": 0.050348242127248394, "deser_min_ns": 93051.0, "deser_max_ns": 119934.0, "deser_p5_ns": 97896.8, "deser_p25_ns": 102125.0, "deser_p50_ns": 105398.0, "deser_p75_ns": 108881.0, "deser_p95_ns": 113663.4, "deser_p99_ns": 119380.48, "deser_ci_low_ns": 104575.13792134832, "deser_ci_high_ns": 106730.00337078652, "total_mean_ns": 189702.04494382022, "total_median_ns": 188897.0, "total_std_ns": 10235.569524846045, "total_mad_ns": 7219.0, "total_cv": 0.05395603156453734, "total_min_ns": 164641.0, "total_max_ns": 215319.0, "total_p5_ns": 174679.4, "total_p25_ns": 181752.0, "total_p50_ns": 188897.0, "total_p75_ns": 196471.0, "total_p95_ns": 206538.6, "total_p99_ns": 214859.64, "total_ci_low_ns": 187588.14494382023, "total_ci_high_ns": 191795.96516853935, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 99382.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.906436684299617}, {"serializer": "orjson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "3.11.9", "avg_time_ser_ns": 16844.940476190477, "avg_time_deser_ns": 36641.32142857143, "avg_time_total_ns": 53486.26190476191, "median_size_bytes": 16546.0, "avg_ops_per_sec": 18696.389771650305, "min_ops_per_sec": 15270.905870136217, "max_ops_per_sec": 21249.017232952974, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 16844.940476190477, "ser_median_ns": 16642.0, "ser_std_ns": 1487.8468339293213, "ser_mad_ns": 1033.5, "ser_cv": 0.08832603689115566, "ser_min_ns": 14485.0, "ser_max_ns": 21629.0, "ser_p5_ns": 15038.25, "ser_p25_ns": 15759.0, "ser_p50_ns": 16642.0, "ser_p75_ns": 17682.25, "ser_p95_ns": 19909.6, "ser_p99_ns": 20973.300000000003, "ser_ci_low_ns": 16542.366071428572, "ser_ci_high_ns": 17172.04732142857, "deser_mean_ns": 36641.32142857143, "deser_median_ns": 36493.0, "deser_std_ns": 2828.5850784520003, "deser_mad_ns": 2042.5, "deser_cv": 0.07719659030218226, "deser_min_ns": 32466.0, "deser_max_ns": 44815.0, "deser_p5_ns": 32667.5, "deser_p25_ns": 34284.0, "deser_p50_ns": 36493.0, "deser_p75_ns": 38349.5, "deser_p95_ns": 41807.49999999999, "deser_p99_ns": 44775.16, "deser_ci_low_ns": 36070.60744047619, "deser_ci_high_ns": 37257.78869047619, "total_mean_ns": 53486.26190476191, "total_median_ns": 53060.5, "total_std_ns": 4078.6106780507475, "total_mad_ns": 2449.0, "total_cv": 0.07625529496365172, "total_min_ns": 47061.0, "total_max_ns": 65484.0, "total_p5_ns": 48392.45, "total_p25_ns": 50410.25, "total_p50_ns": 53060.5, "total_p75_ns": 55314.25, "total_p95_ns": 61202.0, "total_p99_ns": 64507.090000000004, "total_ci_low_ns": 52636.41934523809, "total_ci_high_ns": 54342.95744047619, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 283659.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.980456308450815}, {"serializer": "serpyco-rs", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "1.21.0", "avg_time_ser_ns": 36053.35294117647, "avg_time_deser_ns": 56672.68235294118, "avg_time_total_ns": 92726.03529411765, "median_size_bytes": 16546.0, "avg_ops_per_sec": 10784.457642646972, "min_ops_per_sec": 9349.027233716331, "max_ops_per_sec": 12675.074466062488, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 36053.35294117647, "ser_median_ns": 35587.0, "ser_std_ns": 2782.541770986181, "ser_mad_ns": 1703.0, "ser_cv": 0.07717844649639355, "ser_min_ns": 29876.0, "ser_max_ns": 43501.0, "ser_p5_ns": 32672.8, "ser_p25_ns": 34005.0, "ser_p50_ns": 35587.0, "ser_p75_ns": 37567.0, "ser_p95_ns": 41560.4, "ser_p99_ns": 42775.24, "ser_ci_low_ns": 35453.215, "ser_ci_high_ns": 36649.324411764705, "deser_mean_ns": 56672.68235294118, "deser_median_ns": 56305.0, "deser_std_ns": 3806.6656488566045, "deser_mad_ns": 2208.0, "deser_cv": 0.06716932198743981, "deser_min_ns": 49019.0, "deser_max_ns": 66074.0, "deser_p5_ns": 51428.0, "deser_p25_ns": 54276.0, "deser_p50_ns": 56305.0, "deser_p75_ns": 58985.0, "deser_p95_ns": 63523.6, "deser_p99_ns": 65675.0, "deser_ci_low_ns": 55887.82970588235, "deser_ci_high_ns": 57491.66411764706, "total_mean_ns": 92726.03529411765, "total_median_ns": 91871.0, "total_std_ns": 6222.400067970746, "total_mad_ns": 3969.0, "total_cv": 0.06710520996863414, "total_min_ns": 78895.0, "total_max_ns": 106963.0, "total_p5_ns": 84330.4, "total_p25_ns": 88340.0, "total_p50_ns": 91871.0, "total_p75_ns": 96202.0, "total_p95_ns": 104189.59999999999, "total_p99_ns": 106426.23999999999, "total_ci_low_ns": 91429.4817647059, "total_ci_high_ns": 94023.66970588235, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 279819.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.057910208925227}, {"serializer": "msgspec", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 17210.646341463416, "avg_time_deser_ns": 22822.939024390245, "avg_time_total_ns": 40033.58536585366, "median_size_bytes": 7746.0, "avg_ops_per_sec": 24979.026756193125, "min_ops_per_sec": 20016.41345903641, "max_ops_per_sec": 32247.662044501772, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 17210.646341463416, "ser_median_ns": 17227.5, "ser_std_ns": 2247.08523066557, "ser_mad_ns": 1768.0, "ser_cv": 0.13056367472103322, "ser_min_ns": 12684.0, "ser_max_ns": 23641.0, "ser_p5_ns": 14028.2, "ser_p25_ns": 15344.0, "ser_p50_ns": 17227.5, "ser_p75_ns": 18799.0, "ser_p95_ns": 20649.0, "ser_p99_ns": 22141.689999999995, "ser_ci_low_ns": 16714.843902439025, "ser_ci_high_ns": 17704.488109756097, "deser_mean_ns": 22822.939024390245, "deser_median_ns": 22803.0, "deser_std_ns": 2011.4712712958194, "deser_mad_ns": 1221.5, "deser_cv": 0.08813375302568244, "deser_min_ns": 18326.0, "deser_max_ns": 28075.0, "deser_p5_ns": 19850.95, "deser_p25_ns": 21570.25, "deser_p50_ns": 22803.0, "deser_p75_ns": 23985.75, "deser_p95_ns": 25926.45, "deser_p99_ns": 27985.9, "deser_ci_low_ns": 22402.20030487805, "deser_ci_high_ns": 23224.55335365854, "total_mean_ns": 40033.58536585366, "total_median_ns": 40305.5, "total_std_ns": 4062.321230106418, "total_mad_ns": 2771.5, "total_cv": 0.10147283069907959, "total_min_ns": 31010.0, "total_max_ns": 49959.0, "total_p5_ns": 34209.2, "total_p25_ns": 36840.5, "total_p50_ns": 40305.5, "total_p75_ns": 42784.25, "total_p95_ns": 46897.25, "total_p99_ns": 49793.76, "total_ci_low_ns": 39173.61158536585, "total_ci_high_ns": 40960.46554878049, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 40682.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 0.9989279013669258, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.0024735872807655}, {"serializer": "json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 114967.85106382979, "avg_time_deser_ns": 102752.71276595745, "avg_time_total_ns": 217720.56382978722, "median_size_bytes": 16546.0, "avg_ops_per_sec": 4593.043405774912, "min_ops_per_sec": 4045.2092586749513, "max_ops_per_sec": 5404.908738115957, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 114967.85106382979, "ser_median_ns": 113689.0, "ser_std_ns": 10020.13107672668, "ser_mad_ns": 6548.5, "ser_cv": 0.08715593954316442, "ser_min_ns": 93040.0, "ser_max_ns": 142222.0, "ser_p5_ns": 101820.95, "ser_p25_ns": 108184.75, "ser_p50_ns": 113689.0, "ser_p75_ns": 121082.0, "ser_p95_ns": 134842.25, "ser_p99_ns": 139753.77999999997, "ser_ci_low_ns": 113042.88457446809, "ser_ci_high_ns": 117130.80079787235, "deser_mean_ns": 102752.71276595745, "deser_median_ns": 102669.0, "deser_std_ns": 6042.06061058525, "deser_mad_ns": 3823.5, "deser_cv": 0.058801957125428024, "deser_min_ns": 88401.0, "deser_max_ns": 117340.0, "deser_p5_ns": 92694.45, "deser_p25_ns": 99653.25, "deser_p50_ns": 102669.0, "deser_p75_ns": 106876.25, "deser_p95_ns": 114847.45, "deser_p99_ns": 116392.32999999999, "deser_ci_low_ns": 101550.48909574468, "deser_ci_high_ns": 103956.79148936171, "total_mean_ns": 217720.56382978722, "total_median_ns": 217013.5, "total_std_ns": 14365.692910061964, "total_mad_ns": 10015.5, "total_cv": 0.06598225108994751, "total_min_ns": 185017.0, "total_max_ns": 247206.0, "total_p5_ns": 196303.35, "total_p25_ns": 208074.0, "total_p50_ns": 217013.5, "total_p75_ns": 229104.5, "total_p95_ns": 243148.3, "total_p99_ns": 246365.28, "total_ci_low_ns": 214844.5119680851, "total_ci_high_ns": 220559.5710106383, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 83794.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.31621038013955}, {"serializer": "cbor2", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "6.1.3", "avg_time_ser_ns": 151449.91397849462, "avg_time_deser_ns": 85985.31182795699, "avg_time_total_ns": 237435.2258064516, "median_size_bytes": 12030.0, "avg_ops_per_sec": 4211.674980422505, "min_ops_per_sec": 3634.7114947751024, "max_ops_per_sec": 4662.808969379334, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 151449.91397849462, "ser_median_ns": 149188.0, "ser_std_ns": 11140.949348409416, "ser_mad_ns": 8439.0, "ser_cv": 0.07356193909751177, "ser_min_ns": 134277.0, "ser_max_ns": 183069.0, "ser_p5_ns": 137042.8, "ser_p25_ns": 142532.0, "ser_p50_ns": 149188.0, "ser_p75_ns": 159574.0, "ser_p95_ns": 171643.99999999997, "ser_p99_ns": 175002.43999999997, "ser_ci_low_ns": 149115.2432795699, "ser_ci_high_ns": 153699.72016129032, "deser_mean_ns": 85985.31182795699, "deser_median_ns": 85392.0, "deser_std_ns": 3454.123361315381, "deser_mad_ns": 2019.0, "deser_cv": 0.04017108605975094, "deser_min_ns": 77843.0, "deser_max_ns": 94009.0, "deser_p5_ns": 81188.2, "deser_p25_ns": 83738.0, "deser_p50_ns": 85392.0, "deser_p75_ns": 88079.0, "deser_p95_ns": 91974.4, "deser_p99_ns": 93650.2, "deser_ci_low_ns": 85306.65779569893, "deser_ci_high_ns": 86681.85537634409, "total_mean_ns": 237435.2258064516, "total_median_ns": 236053.0, "total_std_ns": 12934.032528086036, "total_mad_ns": 9196.0, "total_cv": 0.054473941194510794, "total_min_ns": 214463.0, "total_max_ns": 275125.0, "total_p5_ns": 218731.4, "total_p25_ns": 227789.0, "total_p50_ns": 236053.0, "total_p75_ns": 247333.0, "total_p95_ns": 257431.4, "total_p99_ns": 264050.04, "total_ci_low_ns": 234832.9696236559, "total_ci_high_ns": 240153.62499999997, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 101527.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.423843787700037}, {"serializer": "mashumaro", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "3.22", "avg_time_ser_ns": 34166.875, "avg_time_deser_ns": 82057.23863636363, "avg_time_total_ns": 116224.11363636363, "median_size_bytes": 16546.0, "avg_ops_per_sec": 8604.066477364167, "min_ops_per_sec": 7580.696514395742, "max_ops_per_sec": 9500.646043930987, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 34166.875, "ser_median_ns": 33822.0, "ser_std_ns": 2201.094350662243, "ser_mad_ns": 1387.5, "ser_cv": 0.06442188086157259, "ser_min_ns": 29838.0, "ser_max_ns": 40944.0, "ser_p5_ns": 31339.6, "ser_p25_ns": 32522.75, "ser_p50_ns": 33822.0, "ser_p75_ns": 35312.25, "ser_p95_ns": 37738.65, "ser_p99_ns": 39766.02, "ser_ci_low_ns": 33734.14346590909, "ser_ci_high_ns": 34643.48011363637, "deser_mean_ns": 82057.23863636363, "deser_median_ns": 82207.0, "deser_std_ns": 4143.036728439988, "deser_mad_ns": 2814.5, "deser_cv": 0.05048959479126322, "deser_min_ns": 74162.0, "deser_max_ns": 92324.0, "deser_p5_ns": 75794.05, "deser_p25_ns": 78826.5, "deser_p50_ns": 82207.0, "deser_p75_ns": 84373.0, "deser_p95_ns": 88636.9, "deser_p99_ns": 91812.44, "deser_ci_low_ns": 81204.52642045455, "deser_ci_high_ns": 82953.58977272727, "total_mean_ns": 116224.11363636363, "total_median_ns": 115730.0, "total_std_ns": 5784.818665994, "total_mad_ns": 3464.0, "total_cv": 0.049772964361709485, "total_min_ns": 105256.0, "total_max_ns": 131914.0, "total_p5_ns": 107465.55, "total_p25_ns": 112713.5, "total_p50_ns": 115730.0, "total_p75_ns": 119339.75, "total_p95_ns": 125948.45, "total_p99_ns": 130160.07999999999, "total_ci_low_ns": 114974.68977272727, "total_ci_high_ns": 117394.35227272728, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 279819.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.14435318395318}, {"serializer": "msgspec-msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 9375.758241758242, "avg_time_deser_ns": 17273.43956043956, "avg_time_total_ns": 26649.197802197803, "median_size_bytes": 4831.0, "avg_ops_per_sec": 37524.58169369467, "min_ops_per_sec": 30662.619200932142, "max_ops_per_sec": 48766.21476640983, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 9375.758241758242, "ser_median_ns": 9247.0, "ser_std_ns": 1383.1610683154515, "ser_mad_ns": 1040.0, "ser_cv": 0.1475252489078757, "ser_min_ns": 6194.0, "ser_max_ns": 12988.0, "ser_p5_ns": 7690.5, "ser_p25_ns": 8193.0, "ser_p50_ns": 9247.0, "ser_p75_ns": 10282.5, "ser_p95_ns": 11663.5, "ser_p99_ns": 12321.099999999995, "ser_ci_low_ns": 9092.163186813186, "ser_ci_high_ns": 9660.059615384615, "deser_mean_ns": 17273.43956043956, "deser_median_ns": 17252.0, "deser_std_ns": 1251.7995953274738, "deser_mad_ns": 811.0, "deser_cv": 0.07246961966940295, "deser_min_ns": 14312.0, "deser_max_ns": 20424.0, "deser_p5_ns": 15341.0, "deser_p25_ns": 16416.0, "deser_p50_ns": 17252.0, "deser_p75_ns": 18036.0, "deser_p95_ns": 19344.0, "deser_p99_ns": 19704.899999999994, "deser_ci_low_ns": 17010.120054945055, "deser_ci_high_ns": 17533.901373626373, "total_mean_ns": 26649.197802197803, "total_median_ns": 26178.0, "total_std_ns": 2491.6579764387147, "total_mad_ns": 1786.0, "total_cv": 0.0934984232896205, "total_min_ns": 20506.0, "total_max_ns": 32613.0, "total_p5_ns": 22979.5, "total_p25_ns": 25099.0, "total_p50_ns": 26178.0, "total_p75_ns": 28343.5, "total_p95_ns": 30663.0, "total_p99_ns": 31428.59999999999, "total_ci_low_ns": 26149.53214285714, "total_ci_high_ns": 27143.06456043956, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 38234.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "cloudpickle", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "3.1.2", "avg_time_ser_ns": 148400.09574468085, "avg_time_deser_ns": 59664.64893617021, "avg_time_total_ns": 208064.74468085106, "median_size_bytes": 7853.0, "avg_ops_per_sec": 4806.196270943895, "min_ops_per_sec": 3855.0352542974006, "max_ops_per_sec": 5533.3606312457805, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 148400.09574468085, "ser_median_ns": 146750.0, "ser_std_ns": 14364.469390189885, "ser_mad_ns": 12088.5, "ser_cv": 0.09679555338632424, "ser_min_ns": 124616.0, "ser_max_ns": 190060.0, "ser_p5_ns": 130238.4, "ser_p25_ns": 135678.25, "ser_p50_ns": 146750.0, "ser_p75_ns": 159878.25, "ser_p95_ns": 170033.9, "ser_p99_ns": 184523.70999999996, "ser_ci_low_ns": 145477.0393617021, "ser_ci_high_ns": 151245.16728723404, "deser_mean_ns": 59664.64893617021, "deser_median_ns": 59035.0, "deser_std_ns": 3967.82168159487, "deser_mad_ns": 2458.0, "deser_cv": 0.06650205360027647, "deser_min_ns": 52649.0, "deser_max_ns": 70863.0, "deser_p5_ns": 54597.9, "deser_p25_ns": 56765.0, "deser_p50_ns": 59035.0, "deser_p75_ns": 61826.25, "deser_p95_ns": 67148.2, "deser_p99_ns": 70091.09999999999, "deser_ci_low_ns": 58903.59468085106, "deser_ci_high_ns": 60477.069414893616, "total_mean_ns": 208064.74468085106, "total_median_ns": 204669.5, "total_std_ns": 17207.378588591015, "total_mad_ns": 13819.0, "total_cv": 0.08270203880520596, "total_min_ns": 180722.0, "total_max_ns": 259401.0, "total_p5_ns": 184762.35, "total_p25_ns": 193934.5, "total_p50_ns": 204669.5, "total_p75_ns": 220861.75, "total_p95_ns": 236776.05, "total_p99_ns": 247546.28999999992, "total_ci_low_ns": 204632.26489361704, "total_ci_high_ns": 211726.66968085105, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 80654.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.581284988821526}, {"serializer": "protobuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "7.35.1", "avg_time_ser_ns": 14110.662790697674, "avg_time_deser_ns": 14291.523255813954, "avg_time_total_ns": 28402.18604651163, "median_size_bytes": 4841.0, "avg_ops_per_sec": 35208.5574808359, "min_ops_per_sec": 25270.393207318306, "max_ops_per_sec": 47867.502752381406, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 14110.662790697674, "ser_median_ns": 14232.0, "ser_std_ns": 2770.9972323015245, "ser_mad_ns": 1771.5, "ser_cv": 0.1963761216183466, "ser_min_ns": 9842.0, "ser_max_ns": 22071.0, "ser_p5_ns": 10365.5, "ser_p25_ns": 11627.5, "ser_p50_ns": 14232.0, "ser_p75_ns": 15465.25, "ser_p95_ns": 18780.75, "ser_p99_ns": 21291.550000000007, "ser_ci_low_ns": 13551.091860465118, "ser_ci_high_ns": 14719.125872093024, "deser_mean_ns": 14291.523255813954, "deser_median_ns": 14643.0, "deser_std_ns": 1556.3095543189884, "deser_mad_ns": 970.5, "deser_cv": 0.1088973880853368, "deser_min_ns": 10999.0, "deser_max_ns": 17501.0, "deser_p5_ns": 11730.5, "deser_p25_ns": 12877.0, "deser_p50_ns": 14643.0, "deser_p75_ns": 15415.5, "deser_p95_ns": 16325.5, "deser_p99_ns": 17421.95, "deser_ci_low_ns": 13977.27238372093, "deser_ci_high_ns": 14596.460465116279, "total_mean_ns": 28402.18604651163, "total_median_ns": 28896.5, "total_std_ns": 4183.93320020803, "total_mad_ns": 3109.5, "total_cv": 0.14731025257550212, "total_min_ns": 20891.0, "total_max_ns": 39572.0, "total_p5_ns": 22156.0, "total_p25_ns": 24918.0, "total_p50_ns": 28896.5, "total_p75_ns": 30994.0, "total_p95_ns": 35888.0, "total_p99_ns": 38246.00000000001, "total_ci_low_ns": 27544.823837209304, "total_ci_high_ns": 29256.143313953486, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 4978.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 0.2620751341681574, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.5103906635228425}, {"serializer": "msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "1.2.1", "avg_time_ser_ns": 45531.5, "avg_time_deser_ns": 61307.21428571428, "avg_time_total_ns": 106838.71428571429, "median_size_bytes": 12031.0, "avg_ops_per_sec": 9359.902977919988, "min_ops_per_sec": 7870.793061108838, "max_ops_per_sec": 10875.94892654384, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 45531.5, "ser_median_ns": 45018.5, "ser_std_ns": 3577.0845754945412, "ser_mad_ns": 2250.0, "ser_cv": 0.07856285374948203, "ser_min_ns": 39203.0, "ser_max_ns": 58541.0, "ser_p5_ns": 40975.7, "ser_p25_ns": 42940.75, "ser_p50_ns": 45018.5, "ser_p75_ns": 47566.25, "ser_p95_ns": 50797.049999999996, "ser_p99_ns": 57591.48, "ser_ci_low_ns": 44777.692559523806, "ser_ci_high_ns": 46306.10505952381, "deser_mean_ns": 61307.21428571428, "deser_median_ns": 60931.0, "deser_std_ns": 3629.7309205970128, "deser_mad_ns": 2588.0, "deser_cv": 0.05920560839187905, "deser_min_ns": 52503.0, "deser_max_ns": 69798.0, "deser_p5_ns": 56143.6, "deser_p25_ns": 58713.5, "deser_p50_ns": 60931.0, "deser_p75_ns": 64214.25, "deser_p95_ns": 67278.45, "deser_p99_ns": 68729.79000000001, "deser_ci_low_ns": 60518.32708333334, "deser_ci_high_ns": 62048.96011904762, "total_mean_ns": 106838.71428571429, "total_median_ns": 105172.5, "total_std_ns": 6748.128466241725, "total_mad_ns": 4553.0, "total_cv": 0.06316182772656256, "total_min_ns": 91946.0, "total_max_ns": 127052.0, "total_p5_ns": 97533.6, "total_p25_ns": 101864.0, "total_p50_ns": 105172.5, "total_p75_ns": 112543.25, "total_p95_ns": 116179.45, "total_p99_ns": 123287.12000000001, "total_ci_low_ns": 105359.94107142858, "total_ci_high_ns": 108263.56845238095, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 62269.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.943699121486755}, {"serializer": "pydantic", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "2.13.4", "avg_time_ser_ns": 210656.3440860215, "avg_time_deser_ns": 206799.83870967742, "avg_time_total_ns": 417456.18279569893, "median_size_bytes": 18145.0, "avg_ops_per_sec": 2395.460987792808, "min_ops_per_sec": 2173.87996269622, "max_ops_per_sec": 2682.094071767473, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 210656.3440860215, "ser_median_ns": 211286.0, "ser_std_ns": 11100.44055382549, "ser_mad_ns": 7934.0, "ser_cv": 0.05269454666550477, "ser_min_ns": 185723.0, "ser_max_ns": 238570.0, "ser_p5_ns": 194474.6, "ser_p25_ns": 201769.0, "ser_p50_ns": 211286.0, "ser_p75_ns": 217375.0, "ser_p95_ns": 229132.59999999998, "ser_p99_ns": 238237.88, "ser_ci_low_ns": 208496.25349462367, "ser_ci_high_ns": 212932.34086021507, "deser_mean_ns": 206799.83870967742, "deser_median_ns": 206264.0, "deser_std_ns": 10631.941478077646, "deser_mad_ns": 7087.0, "deser_cv": 0.05141174937280119, "deser_min_ns": 185779.0, "deser_max_ns": 234649.0, "deser_p5_ns": 191367.4, "deser_p25_ns": 199021.0, "deser_p50_ns": 206264.0, "deser_p75_ns": 213177.0, "deser_p95_ns": 224152.4, "deser_p99_ns": 232542.19999999998, "deser_ci_low_ns": 204679.19032258063, "deser_ci_high_ns": 208962.95456989246, "total_mean_ns": 417456.18279569893, "total_median_ns": 418241.0, "total_std_ns": 18901.493388748895, "total_mad_ns": 11208.0, "total_cv": 0.04527779002377166, "total_min_ns": 372843.0, "total_max_ns": 460007.0, "total_p5_ns": 388228.4, "total_p25_ns": 405408.0, "total_p50_ns": 418241.0, "total_p75_ns": 428142.0, "total_p95_ns": 450397.99999999994, "total_p99_ns": 458799.96, "total_ci_low_ns": 413483.13494623656, "total_ci_high_ns": 421255.2067204301, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 174376.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.717837800818753}, {"serializer": "pickle", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 70566.01086956522, "avg_time_deser_ns": 60894.22826086957, "avg_time_total_ns": 131460.23913043478, "median_size_bytes": 7853.0, "avg_ops_per_sec": 7606.862779306224, "min_ops_per_sec": 6647.4776146191325, "max_ops_per_sec": 8851.359126193827, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 70566.01086956522, "ser_median_ns": 69767.5, "ser_std_ns": 5594.198988109189, "ser_mad_ns": 3467.5, "ser_cv": 0.07927611209948585, "ser_min_ns": 56364.0, "ser_max_ns": 86553.0, "ser_p5_ns": 63361.9, "ser_p25_ns": 66618.0, "ser_p50_ns": 69767.5, "ser_p75_ns": 73901.5, "ser_p95_ns": 80736.15, "ser_p99_ns": 84187.00000000001, "ser_ci_low_ns": 69391.66711956522, "ser_ci_high_ns": 71707.87309782609, "deser_mean_ns": 60894.22826086957, "deser_median_ns": 60236.5, "deser_std_ns": 3467.9443894018477, "deser_mad_ns": 1575.0, "deser_cv": 0.05695029707159188, "deser_min_ns": 55341.0, "deser_max_ns": 70424.0, "deser_p5_ns": 56213.65, "deser_p25_ns": 58841.0, "deser_p50_ns": 60236.5, "deser_p75_ns": 62194.75, "deser_p95_ns": 67627.25, "deser_p99_ns": 69302.88, "deser_ci_low_ns": 60202.83260869566, "deser_ci_high_ns": 61617.86141304347, "total_mean_ns": 131460.23913043478, "total_median_ns": 129560.5, "total_std_ns": 8019.145124986506, "total_mad_ns": 4064.0, "total_cv": 0.061000536573114814, "total_min_ns": 112977.0, "total_max_ns": 150433.0, "total_p5_ns": 121491.6, "total_p25_ns": 126001.0, "total_p50_ns": 129560.5, "total_p75_ns": 135073.0, "total_p95_ns": 146596.0, "total_p99_ns": 150037.15, "total_ci_low_ns": 129896.62119565217, "total_ci_high_ns": 133056.49836956523, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 80654.0, "StreamMode": "native", "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.645686602730024}, {"serializer": "orjson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "3.11.9", "avg_time_ser_ns": 17266.712643678162, "avg_time_deser_ns": 37965.83908045977, "avg_time_total_ns": 55232.55172413793, "median_size_bytes": 16546.0, "avg_ops_per_sec": 18105.265260865657, "min_ops_per_sec": 15333.660451422964, "max_ops_per_sec": 20830.729492146816, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 17266.712643678162, "ser_median_ns": 16849.0, "ser_std_ns": 1524.9076518592015, "ser_mad_ns": 889.0, "ser_cv": 0.08831487981109791, "ser_min_ns": 14892.0, "ser_max_ns": 21404.0, "ser_p5_ns": 15183.4, "ser_p25_ns": 16301.0, "ser_p50_ns": 16849.0, "ser_p75_ns": 18037.5, "ser_p95_ns": 20221.8, "ser_p99_ns": 21133.1, "ser_ci_low_ns": 16961.861781609197, "ser_ci_high_ns": 17576.53591954023, "deser_mean_ns": 37965.83908045977, "deser_median_ns": 37676.0, "deser_std_ns": 2903.9219945700993, "deser_mad_ns": 1787.0, "deser_cv": 0.07648776017872044, "deser_min_ns": 32772.0, "deser_max_ns": 44921.0, "deser_p5_ns": 33617.6, "deser_p25_ns": 35853.0, "deser_p50_ns": 37676.0, "deser_p75_ns": 39367.0, "deser_p95_ns": 43272.8, "deser_p99_ns": 44168.5, "deser_ci_low_ns": 37361.4051724138, "deser_ci_high_ns": 38554.520977011496, "total_mean_ns": 55232.55172413793, "total_median_ns": 54494.0, "total_std_ns": 4256.727902538169, "total_mad_ns": 2384.0, "total_cv": 0.07706918781878183, "total_min_ns": 48006.0, "total_max_ns": 65216.0, "total_p5_ns": 48808.4, "total_p25_ns": 52450.5, "total_p50_ns": 54494.0, "total_p75_ns": 57351.0, "total_p95_ns": 63300.700000000004, "total_p99_ns": 64713.76, "total_ci_low_ns": 54338.24885057471, "total_ci_high_ns": 56081.40574712644, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 283659.0, "StreamMode": "adapted", "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.2283615650172415}, {"serializer": "msgspec-msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 9255.369047619048, "avg_time_deser_ns": 18900.511904761905, "avg_time_total_ns": 28155.880952380954, "median_size_bytes": 4831.0, "avg_ops_per_sec": 35516.55874988478, "min_ops_per_sec": 27982.203318689313, "max_ops_per_sec": 42605.768821098376, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 9255.369047619048, "ser_median_ns": 8904.0, "ser_std_ns": 1470.7472060455011, "ser_mad_ns": 1026.5, "ser_cv": 0.15890746208805712, "ser_min_ns": 6985.0, "ser_max_ns": 12793.0, "ser_p5_ns": 7592.65, "ser_p25_ns": 8117.0, "ser_p50_ns": 8904.0, "ser_p75_ns": 10174.5, "ser_p95_ns": 12219.449999999999, "ser_p99_ns": 12411.2, "ser_ci_low_ns": 8962.373809523811, "ser_ci_high_ns": 9567.097321428571, "deser_mean_ns": 18900.511904761905, "deser_median_ns": 18503.5, "deser_std_ns": 1721.943777639254, "deser_mad_ns": 1047.0, "deser_cv": 0.09110566879436834, "deser_min_ns": 16292.0, "deser_max_ns": 23557.0, "deser_p5_ns": 16824.75, "deser_p25_ns": 17614.0, "deser_p50_ns": 18503.5, "deser_p75_ns": 19653.5, "deser_p95_ns": 22682.25, "deser_p99_ns": 23485.62, "deser_ci_low_ns": 18541.006547619047, "deser_ci_high_ns": 19267.761904761905, "total_mean_ns": 28155.880952380954, "total_median_ns": 27309.5, "total_std_ns": 3089.1008104272373, "total_mad_ns": 1901.0, "total_cv": 0.10971423041785566, "total_min_ns": 23471.0, "total_max_ns": 35737.0, "total_p5_ns": 24555.85, "total_p25_ns": 25848.75, "total_p50_ns": 27309.5, "total_p75_ns": 29365.25, "total_p95_ns": 34703.549999999996, "total_p99_ns": 35312.04, "total_ci_low_ns": 27514.73988095238, "total_ci_high_ns": 28793.541964285712, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 38234.0, "StreamMode": "native", "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "msgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "1.2.1", "avg_time_ser_ns": 45695.11494252874, "avg_time_deser_ns": 62563.85057471264, "avg_time_total_ns": 108258.96551724138, "median_size_bytes": 12031.0, "avg_ops_per_sec": 9237.110249688645, "min_ops_per_sec": 8189.002170085575, "max_ops_per_sec": 10303.542357862632, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 45695.11494252874, "ser_median_ns": 45856.0, "ser_std_ns": 2915.9929914472486, "ser_mad_ns": 2205.0, "ser_cv": 0.06381410781250306, "ser_min_ns": 40645.0, "ser_max_ns": 53069.0, "ser_p5_ns": 41834.3, "ser_p25_ns": 43186.0, "ser_p50_ns": 45856.0, "ser_p75_ns": 47677.5, "ser_p95_ns": 51204.2, "ser_p99_ns": 51736.86, "ser_ci_low_ns": 45061.02126436782, "ser_ci_high_ns": 46285.73390804598, "deser_mean_ns": 62563.85057471264, "deser_median_ns": 61956.0, "deser_std_ns": 3356.2383758535375, "deser_mad_ns": 2332.0, "deser_cv": 0.05364500977837956, "deser_min_ns": 56409.0, "deser_max_ns": 70903.0, "deser_p5_ns": 58039.5, "deser_p25_ns": 59961.5, "deser_p50_ns": 61956.0, "deser_p75_ns": 64530.5, "deser_p95_ns": 68877.4, "deser_p99_ns": 70319.06, "deser_ci_low_ns": 61854.44252873563, "deser_ci_high_ns": 63282.65948275862, "total_mean_ns": 108258.96551724138, "total_median_ns": 107587.0, "total_std_ns": 5904.464756177027, "total_mad_ns": 4829.0, "total_cv": 0.05454019191820819, "total_min_ns": 97054.0, "total_max_ns": 122115.0, "total_p5_ns": 100337.2, "total_p25_ns": 103321.5, "total_p50_ns": 107587.0, "total_p75_ns": 112690.5, "total_p95_ns": 118554.6, "total_p99_ns": 120917.02, "total_ci_low_ns": 107033.83045977012, "total_ci_high_ns": 109584.39051724137, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 62269.0, "StreamMode": "native", "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.83936350045188}, {"serializer": "cbor2", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "6.1.3", "avg_time_ser_ns": 153746.8842105263, "avg_time_deser_ns": 86530.57894736843, "avg_time_total_ns": 240277.46315789473, "median_size_bytes": 12030.0, "avg_ops_per_sec": 4161.855160518592, "min_ops_per_sec": 3731.844576137093, "max_ops_per_sec": 4569.2562164730825, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 153746.8842105263, "ser_median_ns": 153621.0, "ser_std_ns": 9492.24488488025, "ser_mad_ns": 7355.0, "ser_cv": 0.06173942928093734, "ser_min_ns": 134725.0, "ser_max_ns": 177106.0, "ser_p5_ns": 140899.6, "ser_p25_ns": 145527.5, "ser_p50_ns": 153621.0, "ser_p75_ns": 159314.0, "ser_p95_ns": 169916.9, "ser_p99_ns": 176652.92, "ser_ci_low_ns": 151949.0194736842, "ser_ci_high_ns": 155625.69894736842, "deser_mean_ns": 86530.57894736843, "deser_median_ns": 86271.0, "deser_std_ns": 3429.62317134469, "deser_mad_ns": 2468.0, "deser_cv": 0.03963481133566357, "deser_min_ns": 80637.0, "deser_max_ns": 96015.0, "deser_p5_ns": 81886.2, "deser_p25_ns": 83710.5, "deser_p50_ns": 86271.0, "deser_p75_ns": 88579.5, "deser_p95_ns": 92926.4, "deser_p99_ns": 95282.74, "deser_ci_low_ns": 85866.49789473685, "deser_ci_high_ns": 87190.12631578947, "total_mean_ns": 240277.46315789473, "total_median_ns": 240248.0, "total_std_ns": 10961.975207177637, "total_mad_ns": 7755.0, "total_cv": 0.04562215308546911, "total_min_ns": 218854.0, "total_max_ns": 267964.0, "total_p5_ns": 224410.9, "total_p25_ns": 231214.0, "total_p50_ns": 240248.0, "total_p75_ns": 247748.0, "total_p95_ns": 259322.9, "total_p99_ns": 265676.04, "total_ci_low_ns": 238102.94184210527, "total_ci_high_ns": 242569.79105263157, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 101527.0, "StreamMode": "adapted", "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.55970999523536}, {"serializer": "pydantic", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "2.13.4", "avg_time_ser_ns": 211416.44897959183, "avg_time_deser_ns": 207735.5, "avg_time_total_ns": 419151.94897959183, "median_size_bytes": 18145.0, "avg_ops_per_sec": 2385.769653307014, "min_ops_per_sec": 2179.30445319072, "max_ops_per_sec": 2624.2999679835402, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 211416.44897959183, "ser_median_ns": 209095.5, "ser_std_ns": 11255.240072753146, "ser_mad_ns": 7275.0, "ser_cv": 0.053237295996016, "ser_min_ns": 190232.0, "ser_max_ns": 240571.0, "ser_p5_ns": 196463.45, "ser_p25_ns": 203261.25, "ser_p50_ns": 209095.5, "ser_p75_ns": 220187.5, "ser_p95_ns": 231083.49999999997, "ser_p99_ns": 238677.56, "ser_ci_low_ns": 209142.83341836734, "ser_ci_high_ns": 213707.0630102041, "deser_mean_ns": 207735.5, "deser_median_ns": 205649.0, "deser_std_ns": 8519.3945736808, "deser_mad_ns": 4717.0, "deser_cv": 0.04101077848360439, "deser_min_ns": 190822.0, "deser_max_ns": 232182.0, "deser_p5_ns": 196461.35, "deser_p25_ns": 201891.25, "deser_p50_ns": 205649.0, "deser_p75_ns": 213488.25, "deser_p95_ns": 223683.6, "deser_p99_ns": 231416.67, "deser_ci_low_ns": 206097.09030612244, "deser_ci_high_ns": 209405.63698979592, "total_mean_ns": 419151.94897959183, "total_median_ns": 415268.5, "total_std_ns": 17516.26415612247, "total_mad_ns": 9865.0, "total_cv": 0.04178977146298638, "total_min_ns": 381054.0, "total_max_ns": 458862.0, "total_p5_ns": 395052.6, "total_p25_ns": 407578.0, "total_p50_ns": 415268.5, "total_p75_ns": 428000.25, "total_p95_ns": 452373.25, "total_p99_ns": 457134.43, "total_ci_low_ns": 415598.49617346935, "total_ci_high_ns": 422485.2329081633, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 174376.0, "StreamMode": "adapted", "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.8856098899551}, {"serializer": "mashumaro", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "3.22", "avg_time_ser_ns": 34352.25301204819, "avg_time_deser_ns": 81817.09638554217, "avg_time_total_ns": 116169.34939759035, "median_size_bytes": 16546.0, "avg_ops_per_sec": 8608.122582984377, "min_ops_per_sec": 7619.744281381917, "max_ops_per_sec": 9463.60298292766, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 34352.25301204819, "ser_median_ns": 34058.0, "ser_std_ns": 1738.9276611791497, "ser_mad_ns": 1017.0, "ser_cv": 0.05062048362793743, "ser_min_ns": 31335.0, "ser_max_ns": 39306.0, "ser_p5_ns": 31879.4, "ser_p25_ns": 33104.0, "ser_p50_ns": 34058.0, "ser_p75_ns": 35167.0, "ser_p95_ns": 37458.5, "ser_p99_ns": 38889.439999999995, "ser_ci_low_ns": 33978.75512048193, "ser_ci_high_ns": 34744.11084337349, "deser_mean_ns": 81817.09638554217, "deser_median_ns": 81801.0, "deser_std_ns": 3934.89822787925, "deser_mad_ns": 2754.0, "deser_cv": 0.04809383859501744, "deser_min_ns": 73900.0, "deser_max_ns": 92440.0, "deser_p5_ns": 76263.4, "deser_p25_ns": 78915.5, "deser_p50_ns": 81801.0, "deser_p75_ns": 84299.0, "deser_p95_ns": 88094.8, "deser_p99_ns": 91987.36, "deser_ci_low_ns": 81019.33463855422, "deser_ci_high_ns": 82629.47801204819, "total_mean_ns": 116169.34939759035, "total_median_ns": 115599.0, "total_std_ns": 5083.120065072706, "total_mad_ns": 3130.0, "total_cv": 0.043756120624173375, "total_min_ns": 105668.0, "total_max_ns": 131238.0, "total_p5_ns": 109444.5, "total_p25_ns": 112637.0, "total_p50_ns": 115599.0, "total_p75_ns": 119267.5, "total_p95_ns": 125924.49999999999, "total_p99_ns": 129712.79999999999, "total_ci_low_ns": 115087.04518072288, "total_ci_high_ns": 117247.09789156626, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 279819.0, "StreamMode": "adapted", "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.859631067787912}, {"serializer": "msgspec", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 16293.409638554216, "avg_time_deser_ns": 24108.385542168675, "avg_time_total_ns": 40401.79518072289, "median_size_bytes": 7746.0, "avg_ops_per_sec": 24751.37541603931, "min_ops_per_sec": 19479.12811422561, "max_ops_per_sec": 28867.52691896885, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 16293.409638554216, "ser_median_ns": 16296.0, "ser_std_ns": 1636.8404427518024, "ser_mad_ns": 1201.0, "ser_cv": 0.10046027682742568, "ser_min_ns": 13515.0, "ser_max_ns": 21862.0, "ser_p5_ns": 14188.8, "ser_p25_ns": 14942.0, "ser_p50_ns": 16296.0, "ser_p75_ns": 17420.0, "ser_p95_ns": 18678.6, "ser_p99_ns": 19909.579999999984, "ser_ci_low_ns": 15953.125, "ser_ci_high_ns": 16652.41204819277, "deser_mean_ns": 24108.385542168675, "deser_median_ns": 23928.0, "deser_std_ns": 1977.5119119084063, "deser_mad_ns": 1465.0, "deser_cv": 0.08202589544826562, "deser_min_ns": 20772.0, "deser_max_ns": 29475.0, "deser_p5_ns": 21390.5, "deser_p25_ns": 22466.0, "deser_p50_ns": 23928.0, "deser_p75_ns": 25281.5, "deser_p95_ns": 27857.8, "deser_p99_ns": 28368.81999999999, "deser_ci_low_ns": 23677.659638554214, "deser_ci_high_ns": 24536.306626506022, "total_mean_ns": 40401.79518072289, "total_median_ns": 39979.0, "total_std_ns": 3405.777071027619, "total_mad_ns": 2494.0, "total_cv": 0.08429766686834338, "total_min_ns": 34641.0, "total_max_ns": 51337.0, "total_p5_ns": 35676.9, "total_p25_ns": 37683.0, "total_p50_ns": 39979.0, "total_p75_ns": 42599.0, "total_p95_ns": 46405.7, "total_p99_ns": 48071.75999999997, "total_ci_low_ns": 39727.079216867474, "total_ci_high_ns": 41150.238253012045, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 40682.0, "StreamMode": "native", "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 0.9951233505450373, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.750430266159134}, {"serializer": "protobuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "7.35.1", "avg_time_ser_ns": 14049.511363636364, "avg_time_deser_ns": 14519.806818181818, "avg_time_total_ns": 28569.31818181818, "median_size_bytes": 4841.0, "avg_ops_per_sec": 35002.58541824112, "min_ops_per_sec": 27039.450558364653, "max_ops_per_sec": 47156.46515137226, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 14049.511363636364, "ser_median_ns": 14059.5, "ser_std_ns": 2444.639648570651, "ser_mad_ns": 2137.0, "ser_cv": 0.17400175602533677, "ser_min_ns": 10363.0, "ser_max_ns": 19681.0, "ser_p5_ns": 11001.15, "ser_p25_ns": 11755.0, "ser_p50_ns": 14059.5, "ser_p75_ns": 15967.0, "ser_p95_ns": 18291.6, "ser_p99_ns": 19594.87, "ser_ci_low_ns": 13551.125852272728, "ser_ci_high_ns": 14579.819602272728, "deser_mean_ns": 14519.806818181818, "deser_median_ns": 14797.5, "deser_std_ns": 1683.7293845546403, "deser_mad_ns": 1605.0, "deser_cv": 0.1159608668103119, "deser_min_ns": 10779.0, "deser_max_ns": 19431.0, "deser_p5_ns": 12292.3, "deser_p25_ns": 13015.0, "deser_p50_ns": 14797.5, "deser_p75_ns": 15712.25, "deser_p95_ns": 16923.6, "deser_p99_ns": 17744.069999999992, "deser_ci_low_ns": 14181.788636363637, "deser_ci_high_ns": 14863.280397727272, "total_mean_ns": 28569.31818181818, "total_median_ns": 28736.0, "total_std_ns": 4053.248609251751, "total_mad_ns": 3530.5, "total_cv": 0.14187418066670146, "total_min_ns": 21206.0, "total_max_ns": 36983.0, "total_p5_ns": 23316.6, "total_p25_ns": 24852.75, "total_p50_ns": 28736.0, "total_p75_ns": 31751.25, "total_p95_ns": 35289.4, "total_p99_ns": 36962.12, "total_ci_low_ns": 27797.673011363637, "total_ci_high_ns": 29423.54602272727, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 4978.0, "StreamMode": "adapted", "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 0.022321428571428572, "effect_vs_fastest_cliffs_label": "negligible", "effect_vs_fastest_hedges_g": 0.11386848904183494}, {"serializer": "json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 115658.6530612245, "avg_time_deser_ns": 103215.6836734694, "avg_time_total_ns": 218874.33673469388, "median_size_bytes": 16546.0, "avg_ops_per_sec": 4568.831663495292, "min_ops_per_sec": 4088.976120379457, "max_ops_per_sec": 5195.1560365115565, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 115658.6530612245, "ser_median_ns": 113298.0, "ser_std_ns": 9627.490697794756, "ser_mad_ns": 6002.5, "ser_cv": 0.08324055695770895, "ser_min_ns": 99351.0, "ser_max_ns": 138499.0, "ser_p5_ns": 104734.5, "ser_p25_ns": 107737.25, "ser_p50_ns": 113298.0, "ser_p75_ns": 121327.75, "ser_p95_ns": 134617.9, "ser_p99_ns": 138413.64, "ser_ci_low_ns": 113776.43545918367, "ser_ci_high_ns": 117609.41709183673, "deser_mean_ns": 103215.6836734694, "deser_median_ns": 102322.5, "deser_std_ns": 4832.040167181609, "deser_mad_ns": 3392.5, "deser_cv": 0.046814980003117866, "deser_min_ns": 93136.0, "deser_max_ns": 114536.0, "deser_p5_ns": 96262.15, "deser_p25_ns": 99882.0, "deser_p50_ns": 102322.5, "deser_p75_ns": 106191.75, "deser_p95_ns": 111906.45, "deser_p99_ns": 113798.8, "deser_ci_low_ns": 102308.6612244898, "deser_ci_high_ns": 104140.44234693877, "total_mean_ns": 218874.33673469388, "total_median_ns": 216763.0, "total_std_ns": 11967.551960044653, "total_mad_ns": 9213.5, "total_cv": 0.05467773032957715, "total_min_ns": 192487.0, "total_max_ns": 244560.0, "total_p5_ns": 203673.05, "total_p25_ns": 208644.25, "total_p50_ns": 216763.0, "total_p75_ns": 227812.5, "total_p95_ns": 238764.5, "total_p99_ns": 243530.83, "total_ci_low_ns": 216536.45102040816, "total_ci_high_ns": 221141.69897959183, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 83794.0, "StreamMode": "adapted", "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.027233186116867}, {"serializer": "rapidjson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "1.23", "avg_time_ser_ns": 82327.23170731707, "avg_time_deser_ns": 109325.73170731707, "avg_time_total_ns": 191652.96341463414, "median_size_bytes": 16546.0, "avg_ops_per_sec": 5217.764349599629, "min_ops_per_sec": 4835.4028857684425, "max_ops_per_sec": 5773.005426625101, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 82327.23170731707, "ser_median_ns": 82147.0, "ser_std_ns": 4653.46965283394, "ser_mad_ns": 3342.0, "ser_cv": 0.0565240632574355, "ser_min_ns": 73952.0, "ser_max_ns": 96912.0, "ser_p5_ns": 75638.2, "ser_p25_ns": 78605.5, "ser_p50_ns": 82147.0, "ser_p75_ns": 85187.5, "ser_p95_ns": 91302.55, "ser_p99_ns": 94682.87999999999, "ser_ci_low_ns": 81333.81280487805, "ser_ci_high_ns": 83353.45274390244, "deser_mean_ns": 109325.73170731707, "deser_median_ns": 108640.0, "deser_std_ns": 4893.237460078003, "deser_mad_ns": 3458.5, "deser_cv": 0.04475833258704367, "deser_min_ns": 97607.0, "deser_max_ns": 120622.0, "deser_p5_ns": 102502.9, "deser_p25_ns": 106307.75, "deser_p50_ns": 108640.0, "deser_p75_ns": 112705.25, "deser_p95_ns": 117848.15000000001, "deser_p99_ns": 120300.43, "deser_ci_low_ns": 108233.3350609756, "deser_ci_high_ns": 110329.04390243902, "total_mean_ns": 191652.96341463414, "total_median_ns": 191850.5, "total_std_ns": 8003.0136629899, "total_mad_ns": 5893.0, "total_cv": 0.04175783938010744, "total_min_ns": 173220.0, "total_max_ns": 206808.0, "total_p5_ns": 179377.45, "total_p25_ns": 186029.75, "total_p50_ns": 191850.5, "total_p75_ns": 197685.75, "total_p95_ns": 204461.15, "total_p99_ns": 206565.0, "total_ci_low_ns": 189914.3368902439, "total_ci_high_ns": 193364.40701219512, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 99382.0, "StreamMode": "adapted", "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.951931963894417}, {"serializer": "avro", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "1.12.2", "avg_time_ser_ns": 214291.0, "avg_time_deser_ns": 145329.04210526316, "avg_time_total_ns": 359620.04210526316, "median_size_bytes": 4048.0, "avg_ops_per_sec": 2780.71264923353, "min_ops_per_sec": 2544.037285410455, "max_ops_per_sec": 2997.530035250953, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 214291.0, "ser_median_ns": 212493.0, "ser_std_ns": 11351.218473352861, "ser_mad_ns": 8330.0, "ser_cv": 0.05297104625650569, "ser_min_ns": 196664.0, "ser_max_ns": 246190.0, "ser_p5_ns": 199375.7, "ser_p25_ns": 204234.5, "ser_p50_ns": 212493.0, "ser_p75_ns": 221379.0, "ser_p95_ns": 235985.8, "ser_p99_ns": 241225.86000000002, "ser_ci_low_ns": 212049.49105263158, "ser_ci_high_ns": 216501.19184210527, "deser_mean_ns": 145329.04210526316, "deser_median_ns": 144452.0, "deser_std_ns": 4365.272446265317, "deser_mad_ns": 2790.0, "deser_cv": 0.03003716520131957, "deser_min_ns": 136932.0, "deser_max_ns": 156650.0, "deser_p5_ns": 139754.6, "deser_p25_ns": 142436.0, "deser_p50_ns": 144452.0, "deser_p75_ns": 148194.5, "deser_p95_ns": 153128.1, "deser_p99_ns": 156415.0, "deser_ci_low_ns": 144503.9810526316, "deser_ci_high_ns": 146199.98342105263, "total_mean_ns": 359620.04210526316, "total_median_ns": 357831.0, "total_std_ns": 14247.076622805136, "total_mad_ns": 11380.0, "total_cv": 0.039617026179633565, "total_min_ns": 333608.0, "total_max_ns": 393076.0, "total_p5_ns": 339752.2, "total_p25_ns": 346883.5, "total_p50_ns": 357831.0, "total_p75_ns": 369955.0, "total_p95_ns": 383992.9, "total_p99_ns": 387026.16000000003, "total_ci_low_ns": 356820.94184210524, "total_ci_high_ns": 362444.0644736842, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 54411.0, "StreamMode": "adapted", "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 31.14977008746844}, {"serializer": "flatbuffers", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "25.12.19", "avg_time_ser_ns": 1420644.5806451612, "avg_time_deser_ns": 445612.51612903224, "avg_time_total_ns": 1866257.0967741935, "median_size_bytes": 10404.0, "avg_ops_per_sec": 535.8318538900616, "min_ops_per_sec": 514.4368999415085, "max_ops_per_sec": 553.152415616599, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1420644.5806451612, "ser_median_ns": 1419774.0, "ser_std_ns": 22615.257409123726, "ser_mad_ns": 13778.0, "ser_cv": 0.015919011494664907, "ser_min_ns": 1370728.0, "ser_max_ns": 1478662.0, "ser_p5_ns": 1384187.6, "ser_p25_ns": 1406856.0, "ser_p50_ns": 1419774.0, "ser_p75_ns": 1435064.0, "ser_p95_ns": 1455945.2, "ser_p99_ns": 1476760.36, "ser_ci_low_ns": 1416053.9411290323, "ser_ci_high_ns": 1425106.8021505375, "deser_mean_ns": 445612.51612903224, "deser_median_ns": 444746.0, "deser_std_ns": 10459.803836398303, "deser_mad_ns": 8395.0, "deser_cv": 0.023472868148455565, "deser_min_ns": 428639.0, "deser_max_ns": 470532.0, "deser_p5_ns": 431344.4, "deser_p25_ns": 436845.0, "deser_p50_ns": 444746.0, "deser_p75_ns": 453396.0, "deser_p95_ns": 464014.0, "deser_p99_ns": 469537.48, "deser_ci_low_ns": 443496.0586021506, "deser_ci_high_ns": 447628.1532258065, "total_mean_ns": 1866257.0967741935, "total_median_ns": 1863500.0, "total_std_ns": 28903.193403401743, "total_mad_ns": 21151.0, "total_cv": 0.015487251704687753, "total_min_ns": 1807820.0, "total_max_ns": 1943873.0, "total_p5_ns": 1819753.4, "total_p25_ns": 1846964.0, "total_p50_ns": 1863500.0, "total_p75_ns": 1886024.0, "total_p95_ns": 1913599.4, "total_p99_ns": 1927819.92, "total_ci_low_ns": 1860510.185483871, "total_ci_high_ns": 1872480.5887096773, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 61504.0, "StreamMode": "adapted", "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 86.88692779035627}, {"serializer": "cloudpickle", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "3.1.2", "avg_time_ser_ns": 141200.36956521738, "avg_time_deser_ns": 60131.69565217391, "avg_time_total_ns": 201332.0652173913, "median_size_bytes": 7853.0, "avg_ops_per_sec": 4966.918701798619, "min_ops_per_sec": 4309.880400818877, "max_ops_per_sec": 5598.696623426066, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 141200.36956521738, "ser_median_ns": 138306.5, "ser_std_ns": 11468.431504813638, "ser_mad_ns": 6213.0, "ser_cv": 0.08122097371364612, "ser_min_ns": 120046.0, "ser_max_ns": 168634.0, "ser_p5_ns": 124768.05, "ser_p25_ns": 132789.0, "ser_p50_ns": 138306.5, "ser_p75_ns": 147620.25, "ser_p95_ns": 163374.05000000002, "ser_p99_ns": 166323.51, "ser_ci_low_ns": 138853.36032608696, "ser_ci_high_ns": 143585.39076086957, "deser_mean_ns": 60131.69565217391, "deser_median_ns": 60168.5, "deser_std_ns": 2887.7074969035893, "deser_mad_ns": 1786.0, "deser_cv": 0.04802305116435198, "deser_min_ns": 54862.0, "deser_max_ns": 68539.0, "deser_p5_ns": 55425.85, "deser_p25_ns": 58116.0, "deser_p50_ns": 60168.5, "deser_p75_ns": 61497.0, "deser_p95_ns": 65458.700000000004, "deser_p99_ns": 66959.24, "deser_ci_low_ns": 59567.575815217395, "deser_ci_high_ns": 60735.58614130435, "total_mean_ns": 201332.0652173913, "total_median_ns": 197930.0, "total_std_ns": 13161.589130316308, "total_mad_ns": 7826.0, "total_cv": 0.06537254319675749, "total_min_ns": 178613.0, "total_max_ns": 232025.0, "total_p5_ns": 181038.95, "total_p25_ns": 192001.75, "total_p50_ns": 197930.0, "total_p75_ns": 209938.5, "total_p95_ns": 224768.35, "total_p99_ns": 230457.98, "total_ci_low_ns": 198717.10923913043, "total_ci_high_ns": 203943.1815217391, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 80654.0, "StreamMode": "native", "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.677056516248435}, {"serializer": "serpyco-rs", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "1.21.0", "avg_time_ser_ns": 36424.45121951219, "avg_time_deser_ns": 57261.90243902439, "avg_time_total_ns": 93686.35365853658, "median_size_bytes": 16546.0, "avg_ops_per_sec": 10673.91312554175, "min_ops_per_sec": 9319.05653871602, "max_ops_per_sec": 11656.50607886792, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 36424.45121951219, "ser_median_ns": 35921.0, "ser_std_ns": 2378.480551141629, "ser_mad_ns": 1319.5, "ser_cv": 0.06529900853708681, "ser_min_ns": 32182.0, "ser_max_ns": 42835.0, "ser_p5_ns": 33506.85, "ser_p25_ns": 34758.25, "ser_p50_ns": 35921.0, "ser_p75_ns": 37680.25, "ser_p95_ns": 41446.25, "ser_p99_ns": 42835.0, "ser_ci_low_ns": 35927.75487804878, "ser_ci_high_ns": 36951.09268292683, "deser_mean_ns": 57261.90243902439, "deser_median_ns": 56978.0, "deser_std_ns": 3242.8123810224506, "deser_mad_ns": 2403.5, "deser_cv": 0.05663123722575538, "deser_min_ns": 52019.0, "deser_max_ns": 64858.0, "deser_p5_ns": 52917.85, "deser_p25_ns": 54505.25, "deser_p50_ns": 56978.0, "deser_p75_ns": 59257.25, "deser_p95_ns": 63763.8, "deser_p99_ns": 64545.34, "deser_ci_low_ns": 56595.37591463415, "deser_ci_high_ns": 57963.476219512195, "total_mean_ns": 93686.35365853658, "total_median_ns": 92897.5, "total_std_ns": 5102.236767720147, "total_mad_ns": 3395.0, "total_cv": 0.054460832004589795, "total_min_ns": 85789.0, "total_max_ns": 107307.0, "total_p5_ns": 87103.15, "total_p25_ns": 89502.0, "total_p50_ns": 92897.5, "total_p75_ns": 96188.5, "total_p95_ns": 105120.35, "total_p99_ns": 106505.91, "total_ci_low_ns": 92619.42012195122, "total_ci_high_ns": 94861.86493902438, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 279819.0, "StreamMode": "adapted", "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.510324878831295}, {"serializer": "dill", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "0.4.1", "avg_time_ser_ns": 1334764.1363636365, "avg_time_deser_ns": 66887.10227272728, "avg_time_total_ns": 1401651.2386363635, "median_size_bytes": 7853.0, "avg_ops_per_sec": 713.4442380779961, "min_ops_per_sec": 678.6885023380819, "max_ops_per_sec": 737.9240572835687, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 1334764.1363636365, "ser_median_ns": 1334442.0, "ser_std_ns": 24490.915690527, "ser_mad_ns": 17502.5, "ser_cv": 0.01834849695411266, "ser_min_ns": 1290953.0, "ser_max_ns": 1401172.0, "ser_p5_ns": 1297110.3, "ser_p25_ns": 1317137.5, "ser_p50_ns": 1334442.0, "ser_p75_ns": 1351821.75, "ser_p95_ns": 1381262.5, "ser_p99_ns": 1393395.94, "ser_ci_low_ns": 1329823.5789772728, "ser_ci_high_ns": 1339840.2150568182, "deser_mean_ns": 66887.10227272728, "deser_median_ns": 66143.0, "deser_std_ns": 3854.0183658271153, "deser_mad_ns": 2421.0, "deser_cv": 0.05761975380713365, "deser_min_ns": 60811.0, "deser_max_ns": 78872.0, "deser_p5_ns": 61530.25, "deser_p25_ns": 64057.5, "deser_p50_ns": 66143.0, "deser_p75_ns": 69254.0, "deser_p95_ns": 73384.15, "deser_p99_ns": 78327.37999999999, "deser_ci_low_ns": 66109.23210227273, "deser_ci_high_ns": 67718.79431818181, "total_mean_ns": 1401651.2386363635, "total_median_ns": 1400510.0, "total_std_ns": 26980.224773479105, "total_mad_ns": 19501.5, "total_cv": 0.019248885906687878, "total_min_ns": 1355153.0, "total_max_ns": 1473430.0, "total_p5_ns": 1361387.8, "total_p25_ns": 1381049.75, "total_p50_ns": 1400510.0, "total_p75_ns": 1421164.75, "total_p95_ns": 1453761.45, "total_p99_ns": 1463122.24, "total_ci_low_ns": 1396168.9894886364, "total_ci_high_ns": 1407397.8321022727, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 100104.0, "StreamMode": "native", "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 70.40840443366625}, {"serializer": "flatbuffers", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "25.12.19", "avg_time_ser_ns": 84900.37234042553, "avg_time_deser_ns": 27829.882978723403, "avg_time_total_ns": 112730.25531914894, "median_size_bytes": 416.0, "avg_ops_per_sec": 8870.733035855503, "min_ops_per_sec": 8055.94045048819, "max_ops_per_sec": 10045.102510271117, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 84900.37234042553, "ser_median_ns": 85200.5, "ser_std_ns": 4724.120745372744, "ser_mad_ns": 3247.0, "ser_cv": 0.055643109860936874, "ser_min_ns": 73970.0, "ser_max_ns": 95047.0, "ser_p5_ns": 76541.25, "ser_p25_ns": 81898.5, "ser_p50_ns": 85200.5, "ser_p75_ns": 88176.0, "ser_p95_ns": 92779.95, "ser_p99_ns": 94244.40999999999, "ser_ci_low_ns": 83945.1664893617, "ser_ci_high_ns": 85880.8039893617, "deser_mean_ns": 27829.882978723403, "deser_median_ns": 27948.0, "deser_std_ns": 1161.891448822542, "deser_mad_ns": 794.5, "deser_cv": 0.04174977845615935, "deser_min_ns": 25222.0, "deser_max_ns": 30147.0, "deser_p5_ns": 25655.85, "deser_p25_ns": 27130.25, "deser_p50_ns": 27948.0, "deser_p75_ns": 28423.5, "deser_p95_ns": 29626.85, "deser_p99_ns": 29961.93, "deser_ci_low_ns": 27593.233510638296, "deser_ci_high_ns": 28062.05239361702, "total_mean_ns": 112730.25531914894, "total_median_ns": 113264.5, "total_std_ns": 5628.419807149165, "total_mad_ns": 3482.5, "total_cv": 0.04992820952294155, "total_min_ns": 99551.0, "total_max_ns": 124132.0, "total_p5_ns": 102154.15, "total_p25_ns": 109511.5, "total_p50_ns": 113264.5, "total_p75_ns": 116495.5, "total_p95_ns": 121410.7, "total_p99_ns": 123335.92, "total_ci_low_ns": 111565.73882978724, "total_ci_high_ns": 113854.2789893617, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 2478.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.003694595489524}, {"serializer": "json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 12445.46511627907, "avg_time_deser_ns": 8529.337209302326, "avg_time_total_ns": 20974.802325581397, "median_size_bytes": 448.0, "avg_ops_per_sec": 47676.25384389796, "min_ops_per_sec": 40995.367523469846, "max_ops_per_sec": 60291.812371879896, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 12445.46511627907, "ser_median_ns": 12488.0, "ser_std_ns": 800.5563462209841, "ser_mad_ns": 478.0, "ser_cv": 0.06432514484121855, "ser_min_ns": 10474.0, "ser_max_ns": 14440.0, "ser_p5_ns": 11199.0, "ser_p25_ns": 11976.5, "ser_p50_ns": 12488.0, "ser_p75_ns": 12903.0, "ser_p95_ns": 14009.0, "ser_p99_ns": 14360.1, "ser_ci_low_ns": 12277.595348837209, "ser_ci_high_ns": 12611.735174418603, "deser_mean_ns": 8529.337209302326, "deser_median_ns": 8783.5, "deser_std_ns": 1033.2477250992179, "deser_mad_ns": 701.0, "deser_cv": 0.12114044734593561, "deser_min_ns": 5866.0, "deser_max_ns": 10141.0, "deser_p5_ns": 6826.5, "deser_p25_ns": 7566.0, "deser_p50_ns": 8783.5, "deser_p75_ns": 9352.5, "deser_p95_ns": 9831.0, "deser_p99_ns": 10061.1, "deser_ci_low_ns": 8309.503779069768, "deser_ci_high_ns": 8742.903779069768, "total_mean_ns": 20974.802325581397, "total_median_ns": 21262.0, "total_std_ns": 1461.064920406204, "total_mad_ns": 999.0, "total_cv": 0.06965810202770076, "total_min_ns": 16586.0, "total_max_ns": 24393.0, "total_p5_ns": 18562.75, "total_p25_ns": 19982.25, "total_p50_ns": 21262.0, "total_p75_ns": 22111.5, "total_p95_ns": 22933.75, "total_p99_ns": 23635.650000000005, "total_ci_low_ns": 20674.426453488373, "total_ci_high_ns": 21267.518604651163, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 3140.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.291218214571433}, {"serializer": "msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "1.2.1", "avg_time_ser_ns": 4168.197674418605, "avg_time_deser_ns": 4714.593023255814, "avg_time_total_ns": 8882.790697674418, "median_size_bytes": 325.0, "avg_ops_per_sec": 112577.23321813803, "min_ops_per_sec": 99940.03597841295, "max_ops_per_sec": 141843.97163120567, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 4168.197674418605, "ser_median_ns": 4236.5, "ser_std_ns": 329.63712026006954, "ser_mad_ns": 128.5, "ser_cv": 0.07908385014538652, "ser_min_ns": 3335.0, "ser_max_ns": 4815.0, "ser_p5_ns": 3472.0, "ser_p25_ns": 4027.25, "ser_p50_ns": 4236.5, "ser_p75_ns": 4351.0, "ser_p95_ns": 4669.75, "ser_p99_ns": 4760.6, "ser_ci_low_ns": 4096.896802325581, "ser_ci_high_ns": 4236.250872093023, "deser_mean_ns": 4714.593023255814, "deser_median_ns": 4779.0, "deser_std_ns": 368.0603332225966, "deser_mad_ns": 190.0, "deser_cv": 0.07806831499708553, "deser_min_ns": 3709.0, "deser_max_ns": 5348.0, "deser_p5_ns": 4027.25, "deser_p25_ns": 4495.25, "deser_p50_ns": 4779.0, "deser_p75_ns": 4958.0, "deser_p95_ns": 5240.25, "deser_p99_ns": 5323.35, "deser_ci_low_ns": 4639.2340116279065, "deser_ci_high_ns": 4789.744476744186, "total_mean_ns": 8882.790697674418, "total_median_ns": 9071.0, "total_std_ns": 663.7566016736781, "total_mad_ns": 280.0, "total_cv": 0.0747238817466964, "total_min_ns": 7050.0, "total_max_ns": 10006.0, "total_p5_ns": 7517.0, "total_p25_ns": 8451.5, "total_p50_ns": 9071.0, "total_p75_ns": 9287.25, "total_p95_ns": 9856.75, "total_p99_ns": 9982.2, "total_ci_low_ns": 8736.206686046511, "total_ci_high_ns": 9012.634011627906, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 996.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.544129292430686}, {"serializer": "orjson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "3.11.9", "avg_time_ser_ns": 1621.3232323232323, "avg_time_deser_ns": 2502.6161616161617, "avg_time_total_ns": 4123.939393939394, "median_size_bytes": 448.0, "avg_ops_per_sec": 242486.5897567786, "min_ops_per_sec": 162364.0201331385, "max_ops_per_sec": 428816.4665523156, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 1621.3232323232323, "ser_median_ns": 1549.0, "ser_std_ns": 326.72364994646995, "ser_mad_ns": 209.0, "ser_cv": 0.20151666455694953, "ser_min_ns": 935.0, "ser_max_ns": 2557.0, "ser_p5_ns": 1181.1, "ser_p25_ns": 1408.0, "ser_p50_ns": 1549.0, "ser_p75_ns": 1883.5, "ser_p95_ns": 2127.8999999999996, "ser_p99_ns": 2407.0599999999995, "ser_ci_low_ns": 1558.564393939394, "ser_ci_high_ns": 1689.1479797979798, "deser_mean_ns": 2502.6161616161617, "deser_median_ns": 2471.0, "deser_std_ns": 534.1632538624808, "deser_mad_ns": 393.0, "deser_cv": 0.21344194209851347, "deser_min_ns": 1397.0, "deser_max_ns": 3859.0, "deser_p5_ns": 1663.7, "deser_p25_ns": 2112.0, "deser_p50_ns": 2471.0, "deser_p75_ns": 2875.5, "deser_p95_ns": 3291.0999999999995, "deser_p99_ns": 3575.779999999999, "deser_ci_low_ns": 2394.056565656566, "deser_ci_high_ns": 2611.1318181818183, "total_mean_ns": 4123.939393939394, "total_median_ns": 4050.0, "total_std_ns": 827.4991684832349, "total_mad_ns": 650.0, "total_cv": 0.2006574513920696, "total_min_ns": 2332.0, "total_max_ns": 6159.0, "total_p5_ns": 2952.7000000000003, "total_p25_ns": 3526.5, "total_p50_ns": 4050.0, "total_p75_ns": 4813.5, "total_p95_ns": 5429.4, "total_p99_ns": 5681.739999999998, "total_ci_low_ns": 3964.6964646464644, "total_ci_high_ns": 4282.151767676767, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 9789.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 0.34232434232434233, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.6854306684450348}, {"serializer": "avro", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "1.12.2", "avg_time_ser_ns": 16809.819277108432, "avg_time_deser_ns": 9841.012048192772, "avg_time_total_ns": 26650.831325301206, "median_size_bytes": 114.0, "avg_ops_per_sec": 37522.28168022065, "min_ops_per_sec": 33750.71720274056, "max_ops_per_sec": 42094.62872537464, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 16809.819277108432, "ser_median_ns": 16968.0, "ser_std_ns": 818.497465535035, "ser_mad_ns": 586.0, "ser_cv": 0.04869162791355304, "ser_min_ns": 14731.0, "ser_max_ns": 19025.0, "ser_p5_ns": 15504.9, "ser_p25_ns": 16194.5, "ser_p50_ns": 16968.0, "ser_p75_ns": 17417.5, "ser_p95_ns": 17943.699999999997, "ser_p99_ns": 18797.859999999997, "ser_ci_low_ns": 16636.40090361446, "ser_ci_high_ns": 16978.213855421687, "deser_mean_ns": 9841.012048192772, "deser_median_ns": 9889.0, "deser_std_ns": 440.77768009247586, "deser_mad_ns": 301.0, "deser_cv": 0.04478987302666918, "deser_min_ns": 8663.0, "deser_max_ns": 10895.0, "deser_p5_ns": 9094.0, "deser_p25_ns": 9534.0, "deser_p50_ns": 9889.0, "deser_p75_ns": 10099.5, "deser_p95_ns": 10544.4, "deser_p99_ns": 10677.699999999999, "deser_ci_low_ns": 9747.07048192771, "deser_ci_high_ns": 9928.723795180724, "total_mean_ns": 26650.831325301206, "total_median_ns": 26848.0, "total_std_ns": 1220.6290243576545, "total_mad_ns": 835.0, "total_cv": 0.04580078607900082, "total_min_ns": 23756.0, "total_max_ns": 29629.0, "total_p5_ns": 24547.1, "total_p25_ns": 25725.5, "total_p50_ns": 26848.0, "total_p75_ns": 27421.0, "total_p95_ns": 28510.499999999996, "total_p99_ns": 29423.179999999997, "total_ci_low_ns": 26399.485240963855, "total_ci_high_ns": 26904.27439759036, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1121.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.686457944654165}, {"serializer": "cbor2", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "6.1.3", "avg_time_ser_ns": 16433.0875, "avg_time_deser_ns": 7414.5125, "avg_time_total_ns": 23847.6, "median_size_bytes": 332.0, "avg_ops_per_sec": 41932.94084100706, "min_ops_per_sec": 39254.17075564279, "max_ops_per_sec": 46687.520425790186, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 16433.0875, "ser_median_ns": 16513.5, "ser_std_ns": 686.5312404731263, "ser_mad_ns": 425.0, "ser_cv": 0.0417773738789577, "ser_min_ns": 14623.0, "ser_max_ns": 17724.0, "ser_p5_ns": 15257.2, "ser_p25_ns": 16081.25, "ser_p50_ns": 16513.5, "ser_p75_ns": 16862.5, "ser_p95_ns": 17482.4, "ser_p99_ns": 17689.239999999998, "ser_ci_low_ns": 16277.151875, "ser_ci_high_ns": 16592.607812500002, "deser_mean_ns": 7414.5125, "deser_median_ns": 7433.5, "deser_std_ns": 269.54546802987255, "deser_mad_ns": 165.5, "deser_cv": 0.036353768104089454, "deser_min_ns": 6769.0, "deser_max_ns": 8163.0, "deser_p5_ns": 6986.1, "deser_p25_ns": 7271.5, "deser_p50_ns": 7433.5, "deser_p75_ns": 7597.0, "deser_p95_ns": 7753.9, "deser_p99_ns": 8109.28, "deser_ci_low_ns": 7354.436874999999, "deser_ci_high_ns": 7476.42875, "total_mean_ns": 23847.6, "total_median_ns": 23958.5, "total_std_ns": 888.0626275098772, "total_mad_ns": 551.0, "total_cv": 0.03723907762248097, "total_min_ns": 21419.0, "total_max_ns": 25475.0, "total_p5_ns": 22243.3, "total_p25_ns": 23371.25, "total_p50_ns": 23958.5, "total_p75_ns": 24480.5, "total_p95_ns": 25127.95, "total_p99_ns": 25403.899999999998, "total_ci_low_ns": 23649.544687499998, "total_ci_high_ns": 24038.800625, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 2761.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.83793426440678}, {"serializer": "pickle", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 11565.908163265307, "avg_time_deser_ns": 8086.163265306122, "avg_time_total_ns": 19652.071428571428, "median_size_bytes": 452.0, "avg_ops_per_sec": 50885.22111445904, "min_ops_per_sec": 39039.62521959789, "max_ops_per_sec": 67399.06989283548, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 11565.908163265307, "ser_median_ns": 11581.5, "ser_std_ns": 1429.700856078228, "ser_mad_ns": 1037.0, "ser_cv": 0.12361336748454628, "ser_min_ns": 8322.0, "ser_max_ns": 15168.0, "ser_p5_ns": 9516.45, "ser_p25_ns": 10520.0, "ser_p50_ns": 11581.5, "ser_p75_ns": 12587.5, "ser_p95_ns": 13805.55, "ser_p99_ns": 14611.220000000001, "ser_ci_low_ns": 11291.535459183675, "ser_ci_high_ns": 11840.969387755102, "deser_mean_ns": 8086.163265306122, "deser_median_ns": 7941.5, "deser_std_ns": 1092.9416250422769, "deser_mad_ns": 778.0, "deser_cv": 0.1351619537205697, "deser_min_ns": 5799.0, "deser_max_ns": 10519.0, "deser_p5_ns": 6548.6, "deser_p25_ns": 7275.0, "deser_p50_ns": 7941.5, "deser_p75_ns": 8801.0, "deser_p95_ns": 9952.55, "deser_p99_ns": 10449.16, "deser_ci_low_ns": 7865.663010204082, "deser_ci_high_ns": 8311.270153061223, "total_mean_ns": 19652.071428571428, "total_median_ns": 19580.5, "total_std_ns": 2415.072090234767, "total_mad_ns": 1613.0, "total_cv": 0.12289147731895489, "total_min_ns": 14837.0, "total_max_ns": 25615.0, "total_p5_ns": 15833.35, "total_p25_ns": 18050.75, "total_p50_ns": 19580.5, "total_p75_ns": 21330.0, "total_p95_ns": 23769.85, "total_p99_ns": 24653.73, "total_ci_low_ns": 19151.44413265306, "total_ci_high_ns": 20144.352040816328, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 6889.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.037418483185435}, {"serializer": "msgspec", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 1656.375, "avg_time_deser_ns": 2390.7045454545455, "avg_time_total_ns": 4047.0795454545455, "median_size_bytes": 192.0, "avg_ops_per_sec": 247091.75808593738, "min_ops_per_sec": 204666.39377814162, "max_ops_per_sec": 344589.9379738112, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 1656.375, "ser_median_ns": 1664.5, "ser_std_ns": 203.3799068105128, "ser_mad_ns": 142.0, "ser_cv": 0.12278614855362632, "ser_min_ns": 1069.0, "ser_max_ns": 2194.0, "ser_p5_ns": 1353.35, "ser_p25_ns": 1499.25, "ser_p50_ns": 1664.5, "ser_p75_ns": 1796.25, "ser_p95_ns": 1962.85, "ser_p99_ns": 2060.8899999999994, "ser_ci_low_ns": 1613.6556818181818, "ser_ci_high_ns": 1695.6036931818182, "deser_mean_ns": 2390.7045454545455, "deser_median_ns": 2420.5, "deser_std_ns": 232.93865598128133, "deser_mad_ns": 166.0, "deser_cv": 0.0974351499954975, "deser_min_ns": 1790.0, "deser_max_ns": 2845.0, "deser_p5_ns": 1957.85, "deser_p25_ns": 2241.75, "deser_p50_ns": 2420.5, "deser_p75_ns": 2570.25, "deser_p95_ns": 2701.6, "deser_p99_ns": 2791.93, "deser_ci_low_ns": 2341.090625, "deser_ci_high_ns": 2435.5360795454544, "total_mean_ns": 4047.0795454545455, "total_median_ns": 4115.5, "total_std_ns": 412.7763643101726, "total_mad_ns": 315.5, "total_cv": 0.10199363755372193, "total_min_ns": 2902.0, "total_max_ns": 4886.0, "total_p5_ns": 3307.9, "total_p25_ns": 3739.75, "total_p50_ns": 4115.5, "total_p75_ns": 4367.75, "total_p95_ns": 4573.2, "total_p99_ns": 4779.86, "total_ci_low_ns": 3958.971306818182, "total_ci_high_ns": 4131.747443181818, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1406.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 0.49600399600399603, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 0.9231041340583092}, {"serializer": "protobuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "7.35.1", "avg_time_ser_ns": 2387.176470588235, "avg_time_deser_ns": 2801.9411764705883, "avg_time_total_ns": 5189.117647058823, "median_size_bytes": 155.0, "avg_ops_per_sec": 192710.9901944114, "min_ops_per_sec": 176025.3476500616, "max_ops_per_sec": 227324.39190725164, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 2387.176470588235, "ser_median_ns": 2401.0, "ser_std_ns": 162.7555263102848, "ser_mad_ns": 103.0, "ser_cv": 0.06817909288046035, "ser_min_ns": 1939.0, "ser_max_ns": 2697.0, "ser_p5_ns": 2081.0, "ser_p25_ns": 2288.0, "ser_p50_ns": 2401.0, "ser_p75_ns": 2498.0, "ser_p95_ns": 2645.6, "ser_p99_ns": 2689.44, "ser_ci_low_ns": 2352.0538235294116, "ser_ci_high_ns": 2420.095, "deser_mean_ns": 2801.9411764705883, "deser_median_ns": 2822.0, "deser_std_ns": 142.39702653238973, "deser_mad_ns": 98.0, "deser_cv": 0.0508208479636098, "deser_min_ns": 2460.0, "deser_max_ns": 3149.0, "deser_p5_ns": 2539.4, "deser_p25_ns": 2699.0, "deser_p50_ns": 2822.0, "deser_p75_ns": 2905.0, "deser_p95_ns": 2979.6, "deser_p99_ns": 3090.2, "deser_ci_low_ns": 2770.96, "deser_ci_high_ns": 2832.1185294117645, "total_mean_ns": 5189.117647058823, "total_median_ns": 5247.0, "total_std_ns": 273.69906187378183, "total_mad_ns": 190.0, "total_cv": 0.05274481722897797, "total_min_ns": 4399.0, "total_max_ns": 5681.0, "total_p5_ns": 4678.0, "total_p25_ns": 5009.0, "total_p50_ns": 5247.0, "total_p75_ns": 5406.0, "total_p95_ns": 5534.8, "total_p99_ns": 5659.16, "total_ci_low_ns": 5132.652352941177, "total_ci_high_ns": 5242.061176470588, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 292.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 0.999224305106658, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.394978840164862}, {"serializer": "mashumaro", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "3.22", "avg_time_ser_ns": 3621.1195652173915, "avg_time_deser_ns": 7888.75, "avg_time_total_ns": 11509.869565217392, "median_size_bytes": 448.0, "avg_ops_per_sec": 86881.95763937943, "min_ops_per_sec": 73356.80751173709, "max_ops_per_sec": 110582.77120424638, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 3621.1195652173915, "ser_median_ns": 3649.0, "ser_std_ns": 329.6434251503643, "ser_mad_ns": 239.0, "ser_cv": 0.09103356550740527, "ser_min_ns": 2887.0, "ser_max_ns": 4237.0, "ser_p5_ns": 3029.8, "ser_p25_ns": 3413.0, "ser_p50_ns": 3649.0, "ser_p75_ns": 3848.5, "ser_p95_ns": 4128.25, "ser_p99_ns": 4200.6, "ser_ci_low_ns": 3553.8135869565217, "ser_ci_high_ns": 3686.0828804347825, "deser_mean_ns": 7888.75, "deser_median_ns": 7958.0, "deser_std_ns": 648.135459742656, "deser_mad_ns": 409.0, "deser_cv": 0.08215946249312706, "deser_min_ns": 6094.0, "deser_max_ns": 9506.0, "deser_p5_ns": 6802.25, "deser_p25_ns": 7422.5, "deser_p50_ns": 7958.0, "deser_p75_ns": 8231.0, "deser_p95_ns": 8928.55, "deser_p99_ns": 9254.84, "deser_ci_low_ns": 7759.054076086956, "deser_ci_high_ns": 8020.11195652174, "total_mean_ns": 11509.869565217392, "total_median_ns": 11575.5, "total_std_ns": 920.1881701663494, "total_mad_ns": 586.0, "total_cv": 0.07994774962065085, "total_min_ns": 9043.0, "total_max_ns": 13632.0, "total_p5_ns": 9815.2, "total_p25_ns": 10907.75, "total_p50_ns": 11575.5, "total_p75_ns": 12095.0, "total_p95_ns": 12904.0, "total_p99_ns": 13445.45, "total_ci_low_ns": 11323.333423913044, "total_ci_high_ns": 11701.405434782608, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 9789.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.988778688438693}, {"serializer": "dill", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "0.4.1", "avg_time_ser_ns": 155114.35164835164, "avg_time_deser_ns": 14524.516483516483, "avg_time_total_ns": 169638.86813186813, "median_size_bytes": 452.0, "avg_ops_per_sec": 5894.875455209084, "min_ops_per_sec": 5397.2366148531955, "max_ops_per_sec": 6475.216110337683, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 155114.35164835164, "ser_median_ns": 155884.0, "ser_std_ns": 6281.990242614422, "ser_mad_ns": 3952.0, "ser_cv": 0.04049909099872242, "ser_min_ns": 141384.0, "ser_max_ns": 168591.0, "ser_p5_ns": 144331.0, "ser_p25_ns": 151950.5, "ser_p50_ns": 155884.0, "ser_p75_ns": 159627.0, "ser_p95_ns": 164526.5, "ser_p99_ns": 168196.8, "ser_ci_low_ns": 153839.48241758242, "ser_ci_high_ns": 156338.84038461538, "deser_mean_ns": 14524.516483516483, "deser_median_ns": 14339.0, "deser_std_ns": 1014.6073609764011, "deser_mad_ns": 616.0, "deser_cv": 0.06985481149254462, "deser_min_ns": 12142.0, "deser_max_ns": 17127.0, "deser_p5_ns": 12977.0, "deser_p25_ns": 13935.0, "deser_p50_ns": 14339.0, "deser_p75_ns": 15213.0, "deser_p95_ns": 16196.0, "deser_p99_ns": 17111.7, "deser_ci_low_ns": 14329.688736263737, "deser_ci_high_ns": 14728.243406593407, "total_mean_ns": 169638.86813186813, "total_median_ns": 170449.0, "total_std_ns": 6886.6628351212175, "total_mad_ns": 3859.0, "total_cv": 0.04059601971505667, "total_min_ns": 154435.0, "total_max_ns": 185280.0, "total_p5_ns": 157499.0, "total_p25_ns": 165415.5, "total_p50_ns": 170449.0, "total_p75_ns": 174089.0, "total_p95_ns": 179977.5, "total_p99_ns": 184764.3, "total_ci_low_ns": 168232.4967032967, "total_ci_high_ns": 171067.8478021978, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 14536.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 33.88351150364937}, {"serializer": "rapidjson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "1.23", "avg_time_ser_ns": 6061.516853932584, "avg_time_deser_ns": 7230.876404494382, "avg_time_total_ns": 13292.393258426966, "median_size_bytes": 448.0, "avg_ops_per_sec": 75230.99719954726, "min_ops_per_sec": 67078.07888382077, "max_ops_per_sec": 91449.47416552354, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 6061.516853932584, "ser_median_ns": 6081.0, "ser_std_ns": 427.6447684798349, "ser_mad_ns": 261.0, "ser_cv": 0.07055078436388212, "ser_min_ns": 4935.0, "ser_max_ns": 7232.0, "ser_p5_ns": 5194.0, "ser_p25_ns": 5901.0, "ser_p50_ns": 6081.0, "ser_p75_ns": 6342.0, "ser_p95_ns": 6602.4, "ser_p99_ns": 6902.000000000002, "ser_ci_low_ns": 5969.5985955056185, "ser_ci_high_ns": 6149.958426966292, "deser_mean_ns": 7230.876404494382, "deser_median_ns": 7317.0, "deser_std_ns": 492.22767783139653, "deser_mad_ns": 322.0, "deser_cv": 0.06807303157960913, "deser_min_ns": 5853.0, "deser_max_ns": 8191.0, "deser_p5_ns": 6389.6, "deser_p25_ns": 6933.0, "deser_p50_ns": 7317.0, "deser_p75_ns": 7611.0, "deser_p95_ns": 7946.4, "deser_p99_ns": 8095.080000000001, "deser_ci_low_ns": 7124.088764044944, "deser_ci_high_ns": 7332.742696629213, "total_mean_ns": 13292.393258426966, "total_median_ns": 13377.0, "total_std_ns": 871.5682523993164, "total_mad_ns": 546.0, "total_cv": 0.06556894875546727, "total_min_ns": 10935.0, "total_max_ns": 14908.0, "total_p5_ns": 11752.0, "total_p25_ns": 12783.0, "total_p50_ns": 13377.0, "total_p75_ns": 13881.0, "total_p95_ns": 14447.6, "total_p99_ns": 14655.44, "total_ci_low_ns": 13111.013764044943, "total_ci_high_ns": 13469.89915730337, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 2635.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.190756598338146}, {"serializer": "pydantic", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "2.13.4", "avg_time_ser_ns": 9371.22891566265, "avg_time_deser_ns": 16749.831325301206, "avg_time_total_ns": 26121.060240963856, "median_size_bytes": 448.0, "avg_ops_per_sec": 38283.285240917176, "min_ops_per_sec": 32500.24375182814, "max_ops_per_sec": 44903.4575662326, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 9371.22891566265, "ser_median_ns": 9519.0, "ser_std_ns": 618.9742365358604, "ser_mad_ns": 299.0, "ser_cv": 0.06605048730602821, "ser_min_ns": 7570.0, "ser_max_ns": 10507.0, "ser_p5_ns": 8315.6, "ser_p25_ns": 9027.5, "ser_p50_ns": 9519.0, "ser_p75_ns": 9728.0, "ser_p95_ns": 10215.4, "ser_p99_ns": 10422.539999999999, "ser_ci_low_ns": 9234.075903614457, "ser_ci_high_ns": 9497.585843373494, "deser_mean_ns": 16749.831325301206, "deser_median_ns": 16708.0, "deser_std_ns": 1506.1503003682737, "deser_mad_ns": 1266.0, "deser_cv": 0.08992032642699996, "deser_min_ns": 13633.0, "deser_max_ns": 21887.0, "deser_p5_ns": 14548.1, "deser_p25_ns": 15615.0, "deser_p50_ns": 16708.0, "deser_p75_ns": 18023.5, "deser_p95_ns": 18627.7, "deser_p99_ns": 19448.319999999978, "deser_ci_low_ns": 16412.6828313253, "deser_ci_high_ns": 17081.006024096387, "total_mean_ns": 26121.060240963856, "total_median_ns": 26170.0, "total_std_ns": 1805.5961676734403, "total_mad_ns": 1489.0, "total_cv": 0.06912415311694922, "total_min_ns": 22270.0, "total_max_ns": 30769.0, "total_p5_ns": 23470.1, "total_p25_ns": 24738.0, "total_p50_ns": 26170.0, "total_p75_ns": 27682.0, "total_p95_ns": 28570.5, "total_p99_ns": 29312.679999999986, "total_ci_low_ns": 25749.038253012048, "total_ci_high_ns": 26507.47680722892, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 5757.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.468129526469014}, {"serializer": "msgspec-msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 1726.2857142857142, "avg_time_deser_ns": 1944.8461538461538, "avg_time_total_ns": 3671.131868131868, "median_size_bytes": 129.0, "avg_ops_per_sec": 272395.5542650858, "min_ops_per_sec": 224014.33691756273, "max_ops_per_sec": 360620.26685899746, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 1726.2857142857142, "ser_median_ns": 1720.0, "ser_std_ns": 236.52969208557144, "ser_mad_ns": 141.0, "ser_cv": 0.13701653795092686, "ser_min_ns": 1168.0, "ser_max_ns": 2222.0, "ser_p5_ns": 1331.5, "ser_p25_ns": 1581.5, "ser_p50_ns": 1720.0, "ser_p75_ns": 1868.5, "ser_p95_ns": 2140.5, "ser_p99_ns": 2204.9, "ser_ci_low_ns": 1679.4587912087914, "ser_ci_high_ns": 1771.846978021978, "deser_mean_ns": 1944.8461538461538, "deser_median_ns": 1951.0, "deser_std_ns": 190.9463521560687, "deser_mad_ns": 119.0, "deser_cv": 0.09818069762405147, "deser_min_ns": 1583.0, "deser_max_ns": 2439.0, "deser_p5_ns": 1641.5, "deser_p25_ns": 1816.5, "deser_p50_ns": 1951.0, "deser_p75_ns": 2035.5, "deser_p95_ns": 2298.5, "deser_p99_ns": 2391.2999999999997, "deser_ci_low_ns": 1908.7445054945056, "deser_ci_high_ns": 1983.912912087912, "total_mean_ns": 3671.131868131868, "total_median_ns": 3641.0, "total_std_ns": 398.4129406865084, "total_mad_ns": 250.0, "total_cv": 0.10852591380468421, "total_min_ns": 2773.0, "total_max_ns": 4464.0, "total_p5_ns": 3000.5, "total_p25_ns": 3413.5, "total_p50_ns": 3641.0, "total_p75_ns": 3936.5, "total_p95_ns": 4312.5, "total_p99_ns": 4457.7, "total_ci_low_ns": 3591.6085164835167, "total_ci_high_ns": 3757.017857142857, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1278.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "cloudpickle", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "3.1.2", "avg_time_ser_ns": 30749.725274725275, "avg_time_deser_ns": 8438.835164835165, "avg_time_total_ns": 39188.56043956044, "median_size_bytes": 452.0, "avg_ops_per_sec": 25517.65078337786, "min_ops_per_sec": 22202.486678507994, "max_ops_per_sec": 30893.75637183725, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 30749.725274725275, "ser_median_ns": 30642.0, "ser_std_ns": 2248.022657388459, "ser_mad_ns": 1671.0, "ser_cv": 0.07310708103256519, "ser_min_ns": 24677.0, "ser_max_ns": 35790.0, "ser_p5_ns": 27107.5, "ser_p25_ns": 29089.0, "ser_p50_ns": 30642.0, "ser_p75_ns": 32486.5, "ser_p95_ns": 34258.5, "ser_p99_ns": 34690.19999999999, "ser_ci_low_ns": 30296.404395604397, "ser_ci_high_ns": 31216.595054945054, "deser_mean_ns": 8438.835164835165, "deser_median_ns": 8337.0, "deser_std_ns": 1139.3633823201083, "deser_mad_ns": 843.0, "deser_cv": 0.13501429522736308, "deser_min_ns": 6528.0, "deser_max_ns": 10810.0, "deser_p5_ns": 6711.0, "deser_p25_ns": 7534.0, "deser_p50_ns": 8337.0, "deser_p75_ns": 9256.0, "deser_p95_ns": 10283.5, "deser_p99_ns": 10720.9, "deser_ci_low_ns": 8205.203571428572, "deser_ci_high_ns": 8675.99010989011, "total_mean_ns": 39188.56043956044, "total_median_ns": 38864.0, "total_std_ns": 3141.1560653463284, "total_mad_ns": 2426.0, "total_cv": 0.08015492353159685, "total_min_ns": 32369.0, "total_max_ns": 45040.0, "total_p5_ns": 34374.5, "total_p25_ns": 36788.0, "total_p50_ns": 38864.0, "total_p75_ns": 41625.5, "total_p95_ns": 44381.0, "total_p99_ns": 44912.2, "total_ci_low_ns": 38568.06675824176, "total_ci_high_ns": 39825.18186813187, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 8722.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.797398817509231}, {"serializer": "serpyco-rs", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "1.21.0", "avg_time_ser_ns": 3251.8842105263157, "avg_time_deser_ns": 4647.484210526316, "avg_time_total_ns": 7899.368421052632, "median_size_bytes": 448.0, "avg_ops_per_sec": 126592.39912584618, "min_ops_per_sec": 103659.1686534674, "max_ops_per_sec": 180962.72167933406, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 3251.8842105263157, "ser_median_ns": 3253.0, "ser_std_ns": 402.5618985880914, "ser_mad_ns": 284.0, "ser_cv": 0.12379342944776531, "ser_min_ns": 2254.0, "ser_max_ns": 4364.0, "ser_p5_ns": 2642.4, "ser_p25_ns": 2981.0, "ser_p50_ns": 3253.0, "ser_p75_ns": 3552.5, "ser_p95_ns": 3872.3999999999996, "ser_p99_ns": 4099.860000000001, "ser_ci_low_ns": 3171.212894736842, "ser_ci_high_ns": 3331.2973684210524, "deser_mean_ns": 4647.484210526316, "deser_median_ns": 4580.0, "deser_std_ns": 595.6120375010274, "deser_mad_ns": 402.0, "deser_cv": 0.12815794750889015, "deser_min_ns": 3260.0, "deser_max_ns": 5785.0, "deser_p5_ns": 3673.3, "deser_p25_ns": 4242.0, "deser_p50_ns": 4580.0, "deser_p75_ns": 5058.0, "deser_p95_ns": 5602.9, "deser_p99_ns": 5773.72, "deser_ci_low_ns": 4532.03052631579, "deser_ci_high_ns": 4766.875789473685, "total_mean_ns": 7899.368421052632, "total_median_ns": 7843.0, "total_std_ns": 959.0496742690472, "total_mad_ns": 712.0, "total_cv": 0.12140839914657998, "total_min_ns": 5526.0, "total_max_ns": 9647.0, "total_p5_ns": 6382.3, "total_p25_ns": 7267.0, "total_p50_ns": 7843.0, "total_p75_ns": 8643.0, "total_p95_ns": 9350.1, "total_p99_ns": 9620.68, "total_ci_low_ns": 7702.817105263158, "total_ci_high_ns": 8093.311052631579, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 9789.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.6908918626137375}, {"serializer": "cbor2", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "6.1.3", "avg_time_ser_ns": 17310.31325301205, "avg_time_deser_ns": 7666.096385542169, "avg_time_total_ns": 24976.409638554218, "median_size_bytes": 332.0, "avg_ops_per_sec": 40037.78022828288, "min_ops_per_sec": 35569.4671693818, "max_ops_per_sec": 45257.06010137581, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 17310.31325301205, "ser_median_ns": 17348.0, "ser_std_ns": 934.4919439774753, "ser_mad_ns": 473.0, "ser_cv": 0.05398469284285602, "ser_min_ns": 15176.0, "ser_max_ns": 20109.0, "ser_p5_ns": 15559.1, "ser_p25_ns": 16848.0, "ser_p50_ns": 17348.0, "ser_p75_ns": 17726.5, "ser_p95_ns": 18552.1, "ser_p99_ns": 19671.119999999995, "ser_ci_low_ns": 17109.643072289156, "ser_ci_high_ns": 17501.918072289158, "deser_mean_ns": 7666.096385542169, "deser_median_ns": 7711.0, "deser_std_ns": 304.6658551256758, "deser_mad_ns": 202.0, "deser_cv": 0.039741980768759795, "deser_min_ns": 6912.0, "deser_max_ns": 8359.0, "deser_p5_ns": 7164.6, "deser_p25_ns": 7466.0, "deser_p50_ns": 7711.0, "deser_p75_ns": 7884.5, "deser_p95_ns": 8050.9, "deser_p99_ns": 8277.0, "deser_ci_low_ns": 7597.221987951807, "deser_ci_high_ns": 7731.049397590362, "total_mean_ns": 24976.409638554218, "total_median_ns": 25089.0, "total_std_ns": 1173.321583142039, "total_mad_ns": 657.0, "total_cv": 0.04697719168294189, "total_min_ns": 22096.0, "total_max_ns": 28114.0, "total_p5_ns": 22729.5, "total_p25_ns": 24394.5, "total_p50_ns": 25089.0, "total_p75_ns": 25648.0, "total_p95_ns": 26498.7, "total_p99_ns": 27543.279999999995, "total_ci_low_ns": 24717.84337349398, "total_ci_high_ns": 25222.830421686747, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 2761.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.67344400783051}, {"serializer": "mashumaro", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "3.22", "avg_time_ser_ns": 4021.9574468085107, "avg_time_deser_ns": 8407.734042553191, "avg_time_total_ns": 12429.691489361701, "median_size_bytes": 448.0, "avg_ops_per_sec": 80452.51974724216, "min_ops_per_sec": 64729.10868017347, "max_ops_per_sec": 102417.04219582138, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 4021.9574468085107, "ser_median_ns": 4029.5, "ser_std_ns": 342.60287411601047, "ser_mad_ns": 223.5, "ser_cv": 0.08518311758566005, "ser_min_ns": 3311.0, "ser_max_ns": 4913.0, "ser_p5_ns": 3478.9, "ser_p25_ns": 3791.75, "ser_p50_ns": 4029.5, "ser_p75_ns": 4249.75, "ser_p95_ns": 4620.15, "ser_p99_ns": 4844.179999999999, "ser_ci_low_ns": 3947.911170212766, "ser_ci_high_ns": 4090.6226063829786, "deser_mean_ns": 8407.734042553191, "deser_median_ns": 8485.0, "deser_std_ns": 776.032467665918, "deser_mad_ns": 550.0, "deser_cv": 0.0922998353347365, "deser_min_ns": 6453.0, "deser_max_ns": 10610.0, "deser_p5_ns": 7307.35, "deser_p25_ns": 7869.0, "deser_p50_ns": 8485.0, "deser_p75_ns": 8996.5, "deser_p95_ns": 9509.55, "deser_p99_ns": 10203.589999999997, "deser_ci_low_ns": 8257.442021276594, "deser_ci_high_ns": 8564.97154255319, "total_mean_ns": 12429.691489361701, "total_median_ns": 12481.0, "total_std_ns": 1081.9132299454939, "total_mad_ns": 813.5, "total_cv": 0.08704264549699238, "total_min_ns": 9764.0, "total_max_ns": 15449.0, "total_p5_ns": 10841.4, "total_p25_ns": 11667.25, "total_p50_ns": 12481.0, "total_p75_ns": 13132.25, "total_p95_ns": 14122.1, "total_p99_ns": 14836.129999999996, "total_ci_low_ns": 12205.053723404255, "total_ci_high_ns": 12640.73510638298, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 9789.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.253869126364025}, {"serializer": "json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 12894.641975308641, "avg_time_deser_ns": 9246.604938271605, "avg_time_total_ns": 22141.246913580246, "median_size_bytes": 448.0, "avg_ops_per_sec": 45164.574691891175, "min_ops_per_sec": 40316.07805192711, "max_ops_per_sec": 51918.384299880585, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 12894.641975308641, "ser_median_ns": 13003.0, "ser_std_ns": 607.3904079881813, "ser_mad_ns": 367.0, "ser_cv": 0.04710409247121753, "ser_min_ns": 11314.0, "ser_max_ns": 14071.0, "ser_p5_ns": 11710.0, "ser_p25_ns": 12594.0, "ser_p50_ns": 13003.0, "ser_p75_ns": 13333.0, "ser_p95_ns": 13657.0, "ser_p99_ns": 13974.2, "ser_ci_low_ns": 12762.733333333334, "ser_ci_high_ns": 13021.746913580246, "deser_mean_ns": 9246.604938271605, "deser_median_ns": 9492.0, "deser_std_ns": 991.5829602082262, "deser_mad_ns": 692.0, "deser_cv": 0.10723751764326755, "deser_min_ns": 6932.0, "deser_max_ns": 11219.0, "deser_p5_ns": 7335.0, "deser_p25_ns": 8572.0, "deser_p50_ns": 9492.0, "deser_p75_ns": 10030.0, "deser_p95_ns": 10438.0, "deser_p99_ns": 10957.400000000001, "deser_ci_low_ns": 9020.6987654321, "deser_ci_high_ns": 9447.037654320988, "total_mean_ns": 22141.246913580246, "total_median_ns": 22395.0, "total_std_ns": 1328.3755731236572, "total_mad_ns": 877.0, "total_cv": 0.059995517791227165, "total_min_ns": 19261.0, "total_max_ns": 24804.0, "total_p5_ns": 19740.0, "total_p25_ns": 21178.0, "total_p50_ns": 22395.0, "total_p75_ns": 23202.0, "total_p95_ns": 23623.0, "total_p99_ns": 24355.2, "total_ci_low_ns": 21849.218209876544, "total_ci_high_ns": 22429.6, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 3140.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.351239343334615}, {"serializer": "rapidjson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "1.23", "avg_time_ser_ns": 6201.44578313253, "avg_time_deser_ns": 7740.325301204819, "avg_time_total_ns": 13941.77108433735, "median_size_bytes": 448.0, "avg_ops_per_sec": 71726.89853754903, "min_ops_per_sec": 62715.584822828474, "max_ops_per_sec": 86318.51532153647, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 6201.44578313253, "ser_median_ns": 6284.0, "ser_std_ns": 418.8123234440297, "ser_mad_ns": 227.0, "ser_cv": 0.06753462629362462, "ser_min_ns": 5132.0, "ser_max_ns": 7208.0, "ser_p5_ns": 5421.2, "ser_p25_ns": 5955.0, "ser_p50_ns": 6284.0, "ser_p75_ns": 6478.0, "ser_p95_ns": 6758.8, "ser_p99_ns": 7120.259999999999, "ser_ci_low_ns": 6114.129518072289, "ser_ci_high_ns": 6292.895481927711, "deser_mean_ns": 7740.325301204819, "deser_median_ns": 7865.0, "deser_std_ns": 531.2776158316381, "deser_mad_ns": 297.0, "deser_cv": 0.06863763409904002, "deser_min_ns": 6319.0, "deser_max_ns": 8967.0, "deser_p5_ns": 6850.8, "deser_p25_ns": 7411.0, "deser_p50_ns": 7865.0, "deser_p75_ns": 8101.0, "deser_p95_ns": 8393.4, "deser_p99_ns": 8866.14, "deser_ci_low_ns": 7630.958734939759, "deser_ci_high_ns": 7848.156927710844, "total_mean_ns": 13941.77108433735, "total_median_ns": 14175.0, "total_std_ns": 911.473028182901, "total_mad_ns": 473.0, "total_cv": 0.06537713341218751, "total_min_ns": 11585.0, "total_max_ns": 15945.0, "total_p5_ns": 12210.6, "total_p25_ns": 13540.0, "total_p50_ns": 14175.0, "total_p75_ns": 14558.0, "total_p95_ns": 15050.699999999999, "total_p99_ns": 15725.239999999998, "total_ci_low_ns": 13752.188855421688, "total_ci_high_ns": 14134.06295180723, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 2635.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.043908459252597}, {"serializer": "cloudpickle", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "3.1.2", "avg_time_ser_ns": 29787.305263157894, "avg_time_deser_ns": 9388.052631578947, "avg_time_total_ns": 39175.357894736844, "median_size_bytes": 452.0, "avg_ops_per_sec": 25526.25052429575, "min_ops_per_sec": 22155.26409074796, "max_ops_per_sec": 30344.409042633895, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 29787.305263157894, "ser_median_ns": 29974.0, "ser_std_ns": 2195.2266352910246, "ser_mad_ns": 1324.0, "ser_cv": 0.07369671797757976, "ser_min_ns": 24617.0, "ser_max_ns": 34150.0, "ser_p5_ns": 25712.6, "ser_p25_ns": 28626.5, "ser_p50_ns": 29974.0, "ser_p75_ns": 31185.5, "ser_p95_ns": 33358.8, "ser_p99_ns": 33999.6, "ser_ci_low_ns": 29350.091842105267, "ser_ci_high_ns": 30221.25157894737, "deser_mean_ns": 9388.052631578947, "deser_median_ns": 9556.0, "deser_std_ns": 1099.5958093813192, "deser_mad_ns": 840.0, "deser_cv": 0.1171271458025882, "deser_min_ns": 6894.0, "deser_max_ns": 11380.0, "deser_p5_ns": 7554.7, "deser_p25_ns": 8522.0, "deser_p50_ns": 9556.0, "deser_p75_ns": 10248.5, "deser_p95_ns": 11095.6, "deser_p99_ns": 11333.0, "deser_ci_low_ns": 9181.957105263158, "deser_ci_high_ns": 9615.342368421052, "total_mean_ns": 39175.357894736844, "total_median_ns": 39800.0, "total_std_ns": 3005.0827330126604, "total_mad_ns": 2220.0, "total_cv": 0.07670849468911653, "total_min_ns": 32955.0, "total_max_ns": 45136.0, "total_p5_ns": 33306.4, "total_p25_ns": 37162.5, "total_p50_ns": 39800.0, "total_p75_ns": 41291.0, "total_p95_ns": 43150.6, "total_p99_ns": 44129.26, "total_ci_low_ns": 38560.9602631579, "total_ci_high_ns": 39774.64447368421, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 8722.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.604764374930003}, {"serializer": "msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "1.2.1", "avg_time_ser_ns": 4431.144578313253, "avg_time_deser_ns": 5678.012048192771, "avg_time_total_ns": 10109.156626506025, "median_size_bytes": 325.0, "avg_ops_per_sec": 98920.22024646628, "min_ops_per_sec": 85609.1088091773, "max_ops_per_sec": 117536.43629525152, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 4431.144578313253, "ser_median_ns": 4451.0, "ser_std_ns": 342.8698868813109, "ser_mad_ns": 187.0, "ser_cv": 0.07737727370922905, "ser_min_ns": 3700.0, "ser_max_ns": 5285.0, "ser_p5_ns": 3859.5, "ser_p25_ns": 4228.5, "ser_p50_ns": 4451.0, "ser_p75_ns": 4618.5, "ser_p95_ns": 5032.499999999999, "ser_p99_ns": 5212.839999999999, "ser_ci_low_ns": 4360.475, "ser_ci_high_ns": 4507.702710843374, "deser_mean_ns": 5678.012048192771, "deser_median_ns": 5718.0, "deser_std_ns": 329.1529963026648, "deser_mad_ns": 177.0, "deser_cv": 0.0579697601042304, "deser_min_ns": 4808.0, "deser_max_ns": 6643.0, "deser_p5_ns": 4984.1, "deser_p25_ns": 5535.0, "deser_p50_ns": 5718.0, "deser_p75_ns": 5878.0, "deser_p95_ns": 6099.8, "deser_p99_ns": 6327.299999999997, "deser_ci_low_ns": 5605.599999999999, "deser_ci_high_ns": 5747.27891566265, "total_mean_ns": 10109.156626506025, "total_median_ns": 10170.0, "total_std_ns": 608.1139672135381, "total_mad_ns": 313.0, "total_cv": 0.06015476757171556, "total_min_ns": 8508.0, "total_max_ns": 11681.0, "total_p5_ns": 8880.4, "total_p25_ns": 9807.0, "total_p50_ns": 10170.0, "total_p75_ns": 10463.0, "total_p95_ns": 11117.0, "total_p99_ns": 11436.639999999998, "total_ci_low_ns": 9976.590060240964, "total_ci_high_ns": 10239.9921686747, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 996.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.80643102377958}, {"serializer": "pickle", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 12146.621052631579, "avg_time_deser_ns": 9105.231578947369, "avg_time_total_ns": 21251.852631578946, "median_size_bytes": 452.0, "avg_ops_per_sec": 47054.72117353485, "min_ops_per_sec": 37024.69547187974, "max_ops_per_sec": 62305.29595015576, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 12146.621052631579, "ser_median_ns": 12319.0, "ser_std_ns": 1553.5841483276824, "ser_mad_ns": 1026.0, "ser_cv": 0.12790257814053535, "ser_min_ns": 8962.0, "ser_max_ns": 16090.0, "ser_p5_ns": 9481.7, "ser_p25_ns": 11191.5, "ser_p50_ns": 12319.0, "ser_p75_ns": 13210.5, "ser_p95_ns": 14400.8, "ser_p99_ns": 15510.960000000001, "ser_ci_low_ns": 11825.679210526316, "ser_ci_high_ns": 12459.375789473683, "deser_mean_ns": 9105.231578947369, "deser_median_ns": 9022.0, "deser_std_ns": 1165.1896426107985, "deser_mad_ns": 976.0, "deser_cv": 0.1279692485037819, "deser_min_ns": 6789.0, "deser_max_ns": 11759.0, "deser_p5_ns": 7181.8, "deser_p25_ns": 8110.0, "deser_p50_ns": 9022.0, "deser_p75_ns": 10037.0, "deser_p95_ns": 10803.6, "deser_p99_ns": 11467.6, "deser_ci_low_ns": 8870.424210526317, "deser_ci_high_ns": 9329.407894736842, "total_mean_ns": 21251.852631578946, "total_median_ns": 21317.0, "total_std_ns": 2568.9717289236482, "total_mad_ns": 1547.0, "total_cv": 0.12088224840719601, "total_min_ns": 16050.0, "total_max_ns": 27009.0, "total_p5_ns": 16825.3, "total_p25_ns": 19780.0, "total_p50_ns": 21317.0, "total_p75_ns": 22854.0, "total_p95_ns": 25015.399999999998, "total_p99_ns": 26928.16, "total_ci_low_ns": 20733.131315789477, "total_ci_high_ns": 21754.100789473683, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 6889.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.679820059963712}, {"serializer": "orjson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "3.11.9", "avg_time_ser_ns": 1892.021505376344, "avg_time_deser_ns": 2769.462365591398, "avg_time_total_ns": 4661.4838709677415, "median_size_bytes": 448.0, "avg_ops_per_sec": 214523.96440286218, "min_ops_per_sec": 157554.7502757208, "max_ops_per_sec": 336700.3367003367, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1892.021505376344, "ser_median_ns": 1883.0, "ser_std_ns": 317.8818477008544, "ser_mad_ns": 219.0, "ser_cv": 0.16801175187362585, "ser_min_ns": 1215.0, "ser_max_ns": 2715.0, "ser_p5_ns": 1422.2, "ser_p25_ns": 1664.0, "ser_p50_ns": 1883.0, "ser_p75_ns": 2091.0, "ser_p95_ns": 2469.1999999999994, "ser_p99_ns": 2699.36, "ser_ci_low_ns": 1830.190053763441, "ser_ci_high_ns": 1958.2615591397848, "deser_mean_ns": 2769.462365591398, "deser_median_ns": 2744.0, "deser_std_ns": 479.79541743330077, "deser_mad_ns": 321.0, "deser_cv": 0.1732449674689275, "deser_min_ns": 1692.0, "deser_max_ns": 3841.0, "deser_p5_ns": 1961.4, "deser_p25_ns": 2461.0, "deser_p50_ns": 2744.0, "deser_p75_ns": 3107.0, "deser_p95_ns": 3543.9999999999995, "deser_p99_ns": 3689.2, "deser_ci_low_ns": 2670.919623655914, "deser_ci_high_ns": 2867.3736559139784, "total_mean_ns": 4661.4838709677415, "total_median_ns": 4671.0, "total_std_ns": 763.8709715325423, "total_mad_ns": 476.0, "total_cv": 0.16386862910542685, "total_min_ns": 2970.0, "total_max_ns": 6347.0, "total_p5_ns": 3456.8, "total_p25_ns": 4173.0, "total_p50_ns": 4671.0, "total_p75_ns": 5119.0, "total_p95_ns": 5863.4, "total_p99_ns": 6258.68, "total_ci_low_ns": 4510.884677419355, "total_ci_high_ns": 4813.04811827957, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 9789.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "msgspec-msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 2195.85393258427, "avg_time_deser_ns": 2724.5842696629215, "avg_time_total_ns": 4920.438202247191, "median_size_bytes": 129.0, "avg_ops_per_sec": 203233.9313891382, "min_ops_per_sec": 168491.99663016008, "max_ops_per_sec": 280504.9088359046, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 2195.85393258427, "ser_median_ns": 2173.0, "ser_std_ns": 272.96343205645854, "ser_mad_ns": 173.0, "ser_cv": 0.12430855623224979, "ser_min_ns": 1560.0, "ser_max_ns": 2813.0, "ser_p5_ns": 1741.4, "ser_p25_ns": 2051.0, "ser_p50_ns": 2173.0, "ser_p75_ns": 2378.0, "ser_p95_ns": 2633.4, "ser_p99_ns": 2781.32, "ser_ci_low_ns": 2136.6825842696626, "ser_ci_high_ns": 2251.4314606741573, "deser_mean_ns": 2724.5842696629215, "deser_median_ns": 2720.0, "deser_std_ns": 288.4498069220727, "deser_mad_ns": 205.0, "deser_cv": 0.10586929174253765, "deser_min_ns": 1989.0, "deser_max_ns": 3348.0, "deser_p5_ns": 2268.0, "deser_p25_ns": 2548.0, "deser_p50_ns": 2720.0, "deser_p75_ns": 2931.0, "deser_p95_ns": 3169.6, "deser_p99_ns": 3297.84, "deser_ci_low_ns": 2666.7283707865167, "deser_ci_high_ns": 2784.0921348314605, "total_mean_ns": 4920.438202247191, "total_median_ns": 4988.0, "total_std_ns": 521.5575222145201, "total_mad_ns": 320.0, "total_cv": 0.10599818568523468, "total_min_ns": 3565.0, "total_max_ns": 5935.0, "total_p5_ns": 4064.0, "total_p25_ns": 4598.0, "total_p50_ns": 4988.0, "total_p75_ns": 5277.0, "total_p95_ns": 5748.8, "total_p99_ns": 5841.72, "total_ci_low_ns": 4811.678651685394, "total_ci_high_ns": 5026.075842696629, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1278.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.2224235834239459, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.39269661306441284}, {"serializer": "protobuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "7.35.1", "avg_time_ser_ns": 2754.939024390244, "avg_time_deser_ns": 3129.1951219512193, "avg_time_total_ns": 5884.134146341464, "median_size_bytes": 155.0, "avg_ops_per_sec": 169948.53875344817, "min_ops_per_sec": 144446.0494005489, "max_ops_per_sec": 199004.9751243781, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 2754.939024390244, "ser_median_ns": 2781.0, "ser_std_ns": 216.39837221045065, "ser_mad_ns": 125.0, "ser_cv": 0.07854924203207965, "ser_min_ns": 2247.0, "ser_max_ns": 3345.0, "ser_p5_ns": 2351.15, "ser_p25_ns": 2652.75, "ser_p50_ns": 2781.0, "ser_p75_ns": 2891.0, "ser_p95_ns": 3051.9500000000003, "ser_p99_ns": 3227.5499999999997, "ser_ci_low_ns": 2706.094207317073, "ser_ci_high_ns": 2800.9192073170734, "deser_mean_ns": 3129.1951219512193, "deser_median_ns": 3136.5, "deser_std_ns": 178.62516371360823, "deser_mad_ns": 128.0, "deser_cv": 0.057083421375853975, "deser_min_ns": 2687.0, "deser_max_ns": 3578.0, "deser_p5_ns": 2788.15, "deser_p25_ns": 3012.5, "deser_p50_ns": 3136.5, "deser_p75_ns": 3263.25, "deser_p95_ns": 3364.55, "deser_p99_ns": 3507.5299999999997, "deser_ci_low_ns": 3087.730182926829, "deser_ci_high_ns": 3167.9926829268293, "total_mean_ns": 5884.134146341464, "total_median_ns": 5910.0, "total_std_ns": 373.6330398255249, "total_mad_ns": 239.0, "total_cv": 0.06349838914835687, "total_min_ns": 5025.0, "total_max_ns": 6923.0, "total_p5_ns": 5189.3, "total_p25_ns": 5689.0, "total_p50_ns": 5910.0, "total_p75_ns": 6156.75, "total_p95_ns": 6312.45, "total_p99_ns": 6735.08, "total_ci_low_ns": 5802.662195121951, "total_ci_high_ns": 5963.884146341464, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 292.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.8448728035667453, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.9861574076747364}, {"serializer": "msgspec", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 2318.597701149425, "avg_time_deser_ns": 3228.2528735632186, "avg_time_total_ns": 5546.850574712644, "median_size_bytes": 192.0, "avg_ops_per_sec": 180282.4840025198, "min_ops_per_sec": 152207.00152207003, "max_ops_per_sec": 225073.14877335133, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 2318.597701149425, "ser_median_ns": 2337.0, "ser_std_ns": 234.49631621890188, "ser_mad_ns": 161.0, "ser_cv": 0.10113712961185647, "ser_min_ns": 1840.0, "ser_max_ns": 3012.0, "ser_p5_ns": 1954.7, "ser_p25_ns": 2142.5, "ser_p50_ns": 2337.0, "ser_p75_ns": 2495.5, "ser_p95_ns": 2671.9, "ser_p99_ns": 2782.38, "ser_ci_low_ns": 2267.4919540229885, "ser_ci_high_ns": 2369.1155172413796, "deser_mean_ns": 3228.2528735632186, "deser_median_ns": 3268.0, "deser_std_ns": 305.7080313431316, "deser_mad_ns": 222.0, "deser_cv": 0.09469767187280564, "deser_min_ns": 2523.0, "deser_max_ns": 3846.0, "deser_p5_ns": 2678.9, "deser_p25_ns": 3009.5, "deser_p50_ns": 3268.0, "deser_p75_ns": 3455.5, "deser_p95_ns": 3669.3, "deser_p99_ns": 3843.42, "deser_ci_low_ns": 3163.330172413793, "deser_ci_high_ns": 3293.9557471264366, "total_mean_ns": 5546.850574712644, "total_median_ns": 5612.0, "total_std_ns": 506.881219257246, "total_mad_ns": 338.0, "total_cv": 0.09138180530192219, "total_min_ns": 4443.0, "total_max_ns": 6570.0, "total_p5_ns": 4675.0, "total_p25_ns": 5207.0, "total_p50_ns": 5612.0, "total_p75_ns": 5914.0, "total_p95_ns": 6208.4, "total_p99_ns": 6496.9, "total_ci_low_ns": 5440.752873563218, "total_ci_high_ns": 5650.121551724138, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1406.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.6510938079347423, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.35121974821471}, {"serializer": "flatbuffers", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "25.12.19", "avg_time_ser_ns": 85608.71578947369, "avg_time_deser_ns": 28346.852631578946, "avg_time_total_ns": 113955.56842105264, "median_size_bytes": 416.0, "avg_ops_per_sec": 8775.3500233101, "min_ops_per_sec": 8021.368926821051, "max_ops_per_sec": 9833.615230303269, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 85608.71578947369, "ser_median_ns": 85665.0, "ser_std_ns": 4464.105017789615, "ser_mad_ns": 3381.0, "ser_cv": 0.05214545010542623, "ser_min_ns": 75930.0, "ser_max_ns": 96375.0, "ser_p5_ns": 77532.7, "ser_p25_ns": 82632.5, "ser_p50_ns": 85665.0, "ser_p75_ns": 89126.0, "ser_p95_ns": 92510.7, "ser_p99_ns": 94887.92, "ser_ci_low_ns": 84648.77, "ser_ci_high_ns": 86566.29368421053, "deser_mean_ns": 28346.852631578946, "deser_median_ns": 28395.0, "deser_std_ns": 1143.19941084009, "deser_mad_ns": 716.0, "deser_cv": 0.04032897146283336, "deser_min_ns": 25758.0, "deser_max_ns": 31056.0, "deser_p5_ns": 26144.4, "deser_p25_ns": 27740.5, "deser_p50_ns": 28395.0, "deser_p75_ns": 29135.0, "deser_p95_ns": 29835.5, "deser_p99_ns": 30966.7, "deser_ci_low_ns": 28120.857631578947, "deser_ci_high_ns": 28573.85, "total_mean_ns": 113955.56842105264, "total_median_ns": 113973.0, "total_std_ns": 5404.127621948922, "total_mad_ns": 4002.0, "total_cv": 0.04742311145324023, "total_min_ns": 101692.0, "total_max_ns": 124667.0, "total_p5_ns": 104025.5, "total_p25_ns": 110470.5, "total_p50_ns": 113973.0, "total_p75_ns": 118155.5, "total_p95_ns": 122256.0, "total_p99_ns": 124358.68000000001, "total_ci_low_ns": 112872.66131578948, "total_ci_high_ns": 115049.72736842105, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 2478.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.060878839923788}, {"serializer": "dill", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "0.4.1", "avg_time_ser_ns": 156493.68604651163, "avg_time_deser_ns": 14204.732558139534, "avg_time_total_ns": 170698.41860465117, "median_size_bytes": 452.0, "avg_ops_per_sec": 5858.285086495535, "min_ops_per_sec": 5452.7410929474245, "max_ops_per_sec": 6397.870788601554, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 156493.68604651163, "ser_median_ns": 156591.5, "ser_std_ns": 5406.267228627569, "ser_mad_ns": 3443.0, "ser_cv": 0.03454623228071174, "ser_min_ns": 142800.0, "ser_max_ns": 168113.0, "ser_p5_ns": 146290.0, "ser_p25_ns": 153142.0, "ser_p50_ns": 156591.5, "ser_p75_ns": 159946.5, "ser_p95_ns": 164253.25, "ser_p99_ns": 167876.7, "ser_ci_low_ns": 155375.59912790696, "ser_ci_high_ns": 157568.93691860465, "deser_mean_ns": 14204.732558139534, "deser_median_ns": 13987.5, "deser_std_ns": 988.7350138603261, "deser_mad_ns": 668.5, "deser_cv": 0.0696060281186896, "deser_min_ns": 12157.0, "deser_max_ns": 16958.0, "deser_p5_ns": 12814.75, "deser_p25_ns": 13440.75, "deser_p50_ns": 13987.5, "deser_p75_ns": 14977.0, "deser_p95_ns": 15944.25, "deser_p99_ns": 16244.000000000005, "deser_ci_low_ns": 13999.50203488372, "deser_ci_high_ns": 14417.45, "total_mean_ns": 170698.41860465117, "total_median_ns": 171525.5, "total_std_ns": 5759.740861133814, "total_mad_ns": 3148.5, "total_cv": 0.033742203988859173, "total_min_ns": 156302.0, "total_max_ns": 183394.0, "total_p5_ns": 159195.5, "total_p25_ns": 167996.0, "total_p50_ns": 171525.5, "total_p75_ns": 174022.75, "total_p95_ns": 179143.0, "total_p99_ns": 182454.75, "total_ci_low_ns": 169474.05058139534, "total_ci_high_ns": 171906.28895348834, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 14536.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 41.033367493817984}, {"serializer": "pydantic", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "2.13.4", "avg_time_ser_ns": 9647.160493827161, "avg_time_deser_ns": 17267.320987654322, "avg_time_total_ns": 26914.48148148148, "median_size_bytes": 448.0, "avg_ops_per_sec": 37154.71913096488, "min_ops_per_sec": 32008.194097689007, "max_ops_per_sec": 45653.76186997809, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 9647.160493827161, "ser_median_ns": 9685.0, "ser_std_ns": 738.7036018727356, "ser_mad_ns": 427.0, "ser_cv": 0.07657212734725445, "ser_min_ns": 7650.0, "ser_max_ns": 11418.0, "ser_p5_ns": 8100.0, "ser_p25_ns": 9330.0, "ser_p50_ns": 9685.0, "ser_p75_ns": 10135.0, "ser_p95_ns": 10545.0, "ser_p99_ns": 11392.4, "ser_ci_low_ns": 9498.064506172841, "ser_ci_high_ns": 9808.961728395061, "deser_mean_ns": 17267.320987654322, "deser_median_ns": 17716.0, "deser_std_ns": 1363.8681097081976, "deser_mad_ns": 790.0, "deser_cv": 0.07898550740345461, "deser_min_ns": 14080.0, "deser_max_ns": 19824.0, "deser_p5_ns": 14658.0, "deser_p25_ns": 16479.0, "deser_p50_ns": 17716.0, "deser_p75_ns": 18238.0, "deser_p95_ns": 19148.0, "deser_p99_ns": 19610.4, "deser_ci_low_ns": 16979.616049382716, "deser_ci_high_ns": 17556.49413580247, "total_mean_ns": 26914.48148148148, "total_median_ns": 27436.0, "total_std_ns": 1861.8553321291583, "total_mad_ns": 1102.0, "total_cv": 0.06917671192774821, "total_min_ns": 21904.0, "total_max_ns": 31242.0, "total_p5_ns": 23810.0, "total_p25_ns": 25692.0, "total_p50_ns": 27436.0, "total_p75_ns": 28186.0, "total_p95_ns": 29065.0, "total_p99_ns": 30698.000000000004, "total_ci_low_ns": 26504.93549382716, "total_ci_high_ns": 27312.287962962964, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 5757.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.97116484369866}, {"serializer": "serpyco-rs", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "1.21.0", "avg_time_ser_ns": 3615.0, "avg_time_deser_ns": 5038.569892473119, "avg_time_total_ns": 8653.569892473119, "median_size_bytes": 448.0, "avg_ops_per_sec": 115559.24461531197, "min_ops_per_sec": 91575.09157509157, "max_ops_per_sec": 166168.1621801263, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 3615.0, "ser_median_ns": 3590.0, "ser_std_ns": 430.34796335665095, "ser_mad_ns": 301.0, "ser_cv": 0.11904507976670842, "ser_min_ns": 2433.0, "ser_max_ns": 4631.0, "ser_p5_ns": 3020.0, "ser_p25_ns": 3298.0, "ser_p50_ns": 3590.0, "ser_p75_ns": 3919.0, "ser_p95_ns": 4301.2, "ser_p99_ns": 4550.96, "ser_ci_low_ns": 3532.0725806451615, "ser_ci_high_ns": 3705.3704301075268, "deser_mean_ns": 5038.569892473119, "deser_median_ns": 4927.0, "deser_std_ns": 621.2070367936481, "deser_mad_ns": 437.0, "deser_cv": 0.1232903482636293, "deser_min_ns": 3585.0, "deser_max_ns": 6992.0, "deser_p5_ns": 4205.2, "deser_p25_ns": 4576.0, "deser_p50_ns": 4927.0, "deser_p75_ns": 5509.0, "deser_p95_ns": 6012.999999999998, "deser_p99_ns": 6440.919999999999, "deser_ci_low_ns": 4917.104032258065, "deser_ci_high_ns": 5165.798387096775, "total_mean_ns": 8653.569892473119, "total_median_ns": 8652.0, "total_std_ns": 998.3736165454887, "total_mad_ns": 830.0, "total_cv": 0.1153713009718538, "total_min_ns": 6018.0, "total_max_ns": 10920.0, "total_p5_ns": 7356.0, "total_p25_ns": 7793.0, "total_p50_ns": 8652.0, "total_p75_ns": 9473.0, "total_p95_ns": 10309.8, "total_p99_ns": 10538.199999999999, "total_ci_low_ns": 8456.299193548386, "total_ci_high_ns": 8861.300268817204, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 9789.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.9993062781824489, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.472763183084584}, {"serializer": "avro", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "1.12.2", "avg_time_ser_ns": 17239.8625, "avg_time_deser_ns": 10226.3, "avg_time_total_ns": 27466.1625, "median_size_bytes": 114.0, "avg_ops_per_sec": 36408.435288329776, "min_ops_per_sec": 32490.740139060366, "max_ops_per_sec": 40500.58725851525, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 17239.8625, "ser_median_ns": 17298.5, "ser_std_ns": 833.1769113847054, "ser_mad_ns": 466.0, "ser_cv": 0.04832851256120548, "ser_min_ns": 15159.0, "ser_max_ns": 19296.0, "ser_p5_ns": 15872.8, "ser_p25_ns": 16811.75, "ser_p50_ns": 17298.5, "ser_p75_ns": 17712.75, "ser_p95_ns": 18811.55, "ser_p99_ns": 19183.03, "ser_ci_low_ns": 17050.1609375, "ser_ci_high_ns": 17429.30875, "deser_mean_ns": 10226.3, "deser_median_ns": 10221.0, "deser_std_ns": 417.6120299930747, "deser_mad_ns": 285.0, "deser_cv": 0.040837060324171476, "deser_min_ns": 9176.0, "deser_max_ns": 11482.0, "deser_p5_ns": 9465.1, "deser_p25_ns": 9987.0, "deser_p50_ns": 10221.0, "deser_p75_ns": 10512.25, "deser_p95_ns": 10894.1, "deser_p99_ns": 11127.289999999997, "deser_ci_low_ns": 10136.5440625, "deser_ci_high_ns": 10316.414375, "total_mean_ns": 27466.1625, "total_median_ns": 27502.5, "total_std_ns": 1176.1060987589406, "total_mad_ns": 683.5, "total_cv": 0.04282018278887488, "total_min_ns": 24691.0, "total_max_ns": 30778.0, "total_p5_ns": 25350.25, "total_p25_ns": 26918.5, "total_p50_ns": 27502.5, "total_p75_ns": 28229.5, "total_p95_ns": 29143.35, "total_p99_ns": 30310.319999999996, "total_ci_low_ns": 27196.655, "total_ci_high_ns": 27720.0678125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1121.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.25809237956845}, {"serializer": "protobuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "7.35.1", "avg_time_ser_ns": 41104.2875, "avg_time_deser_ns": 46972.0375, "avg_time_total_ns": 88076.325, "median_size_bytes": 16265.0, "avg_ops_per_sec": 11353.788887081744, "min_ops_per_sec": 10214.608933696973, "max_ops_per_sec": 12822.3210965649, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 41104.2875, "ser_median_ns": 40386.5, "ser_std_ns": 3015.065023098616, "ser_mad_ns": 1638.5, "ser_cv": 0.07335159435858403, "ser_min_ns": 32946.0, "ser_max_ns": 49045.0, "ser_p5_ns": 37861.2, "ser_p25_ns": 39207.75, "ser_p50_ns": 40386.5, "ser_p75_ns": 42295.5, "ser_p95_ns": 46974.8, "ser_p99_ns": 48081.98999999999, "ser_ci_low_ns": 40444.833125, "ser_ci_high_ns": 41741.273125, "deser_mean_ns": 46972.0375, "deser_median_ns": 46875.5, "deser_std_ns": 1391.5106029310807, "deser_mad_ns": 917.5, "deser_cv": 0.029624233416127216, "deser_min_ns": 43932.0, "deser_max_ns": 50123.0, "deser_p5_ns": 44830.95, "deser_p25_ns": 45937.25, "deser_p50_ns": 46875.5, "deser_p75_ns": 47634.75, "deser_p95_ns": 49355.95, "deser_p99_ns": 50083.5, "deser_ci_low_ns": 46671.8375, "deser_ci_high_ns": 47267.0475, "total_mean_ns": 88076.325, "total_median_ns": 87290.5, "total_std_ns": 4009.1750872691687, "total_mad_ns": 2373.0, "total_cv": 0.04551932755220167, "total_min_ns": 77989.0, "total_max_ns": 97899.0, "total_p5_ns": 83553.7, "total_p25_ns": 85257.75, "total_p50_ns": 87290.5, "total_p75_ns": 90180.5, "total_p95_ns": 95630.5, "total_p99_ns": 97772.6, "total_ci_low_ns": 87174.37656250001, "total_ci_high_ns": 88930.1846875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 16402.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "cbor2", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "6.1.3", "avg_time_ser_ns": 783513.2021276596, "avg_time_deser_ns": 344814.1808510638, "avg_time_total_ns": 1128327.3829787234, "median_size_bytes": 33372.0, "avg_ops_per_sec": 886.2675984695629, "min_ops_per_sec": 844.9564129234393, "max_ops_per_sec": 933.329475571501, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 783513.2021276596, "ser_median_ns": 782855.5, "ser_std_ns": 19844.832529943425, "ser_mad_ns": 12966.5, "ser_cv": 0.025328012949946518, "ser_min_ns": 740919.0, "ser_max_ns": 834499.0, "ser_p5_ns": 751715.05, "ser_p25_ns": 769118.0, "ser_p50_ns": 782855.5, "ser_p75_ns": 793412.5, "ser_p95_ns": 818536.85, "ser_p99_ns": 832642.72, "ser_ci_low_ns": 779493.3390957447, "ser_ci_high_ns": 787461.0039893617, "deser_mean_ns": 344814.1808510638, "deser_median_ns": 342743.0, "deser_std_ns": 9800.68206751176, "deser_mad_ns": 6908.0, "deser_cv": 0.028423082958252768, "deser_min_ns": 329103.0, "deser_max_ns": 369006.0, "deser_p5_ns": 333124.35, "deser_p25_ns": 336921.5, "deser_p50_ns": 342743.0, "deser_p75_ns": 352401.5, "deser_p95_ns": 363514.39999999997, "deser_p99_ns": 367585.89, "deser_ci_low_ns": 342866.3973404255, "deser_ci_high_ns": 346670.3257978723, "total_mean_ns": 1128327.3829787234, "total_median_ns": 1126526.0, "total_std_ns": 22038.195362619816, "total_mad_ns": 14830.5, "total_cv": 0.019531738478632123, "total_min_ns": 1071433.0, "total_max_ns": 1183493.0, "total_p5_ns": 1096108.8, "total_p25_ns": 1115371.5, "total_p50_ns": 1126526.0, "total_p75_ns": 1143490.0, "total_p95_ns": 1170676.25, "total_p99_ns": 1176360.8299999998, "total_ci_low_ns": 1123775.5656914895, "total_ci_high_ns": 1132804.3114361702, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 443660.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 63.032407509679885}, {"serializer": "orjson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "3.11.9", "avg_time_ser_ns": 58547.57142857143, "avg_time_deser_ns": 130504.49350649351, "avg_time_total_ns": 189052.06493506493, "median_size_bytes": 45404.0, "avg_ops_per_sec": 5289.548148249411, "min_ops_per_sec": 4667.923894168829, "max_ops_per_sec": 5959.688665864095, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 58547.57142857143, "ser_median_ns": 57226.0, "ser_std_ns": 4681.928458469391, "ser_mad_ns": 1906.0, "ser_cv": 0.07996793623082021, "ser_min_ns": 51081.0, "ser_max_ns": 77377.0, "ser_p5_ns": 52867.0, "ser_p25_ns": 55826.0, "ser_p50_ns": 57226.0, "ser_p75_ns": 61550.0, "ser_p95_ns": 66472.2, "ser_p99_ns": 71734.75999999997, "ser_ci_low_ns": 57541.78051948052, "ser_ci_high_ns": 59585.79318181818, "deser_mean_ns": 130504.49350649351, "deser_median_ns": 129160.0, "deser_std_ns": 8098.580802610087, "deser_mad_ns": 5764.0, "deser_cv": 0.06205595366880701, "deser_min_ns": 114663.0, "deser_max_ns": 150366.0, "deser_p5_ns": 119312.4, "deser_p25_ns": 124737.0, "deser_p50_ns": 129160.0, "deser_p75_ns": 135450.0, "deser_p95_ns": 146205.0, "deser_p99_ns": 149013.19999999998, "deser_ci_low_ns": 128710.05811688311, "deser_ci_high_ns": 132255.61493506492, "total_mean_ns": 189052.06493506493, "total_median_ns": 187113.0, "total_std_ns": 10441.100624250681, "total_mad_ns": 7291.0, "total_cv": 0.05522870447269095, "total_min_ns": 167794.0, "total_max_ns": 214228.0, "total_p5_ns": 173646.0, "total_p25_ns": 181593.0, "total_p50_ns": 187113.0, "total_p75_ns": 196865.0, "total_p95_ns": 205789.2, "total_p99_ns": 213982.52, "total_ci_low_ns": 186771.43279220778, "total_ci_high_ns": 191444.0198051948, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 884932.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.798413012522246}, {"serializer": "avro", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "1.12.2", "avg_time_ser_ns": 852173.3870967742, "avg_time_deser_ns": 515292.4193548387, "avg_time_total_ns": 1367465.8064516129, "median_size_bytes": 11964.0, "avg_ops_per_sec": 731.2797111869755, "min_ops_per_sec": 695.4480145654633, "max_ops_per_sec": 762.3078412509167, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 852173.3870967742, "ser_median_ns": 852107.0, "ser_std_ns": 20495.40947384807, "ser_mad_ns": 15277.0, "ser_cv": 0.02405075045076546, "ser_min_ns": 807277.0, "ser_max_ns": 909167.0, "ser_p5_ns": 823009.2, "ser_p25_ns": 834564.0, "ser_p50_ns": 852107.0, "ser_p75_ns": 865141.0, "ser_p95_ns": 886405.6, "ser_p99_ns": 903502.5599999999, "ser_ci_low_ns": 848002.7091397849, "ser_ci_high_ns": 856320.1389784947, "deser_mean_ns": 515292.4193548387, "deser_median_ns": 512190.0, "deser_std_ns": 12692.874243930333, "deser_mad_ns": 8320.0, "deser_cv": 0.024632371382102197, "deser_min_ns": 494761.0, "deser_max_ns": 550032.0, "deser_p5_ns": 501236.0, "deser_p25_ns": 504815.0, "deser_p50_ns": 512190.0, "deser_p75_ns": 523613.0, "deser_p95_ns": 536608.6, "deser_p99_ns": 548381.52, "deser_ci_low_ns": 512814.8317204301, "deser_ci_high_ns": 517764.760483871, "total_mean_ns": 1367465.8064516129, "total_median_ns": 1372228.0, "total_std_ns": 26435.77703122684, "total_mad_ns": 16938.0, "total_cv": 0.019331947392398845, "total_min_ns": 1311806.0, "total_max_ns": 1437922.0, "total_p5_ns": 1325129.6, "total_p25_ns": 1346631.0, "total_p50_ns": 1372228.0, "total_p75_ns": 1383395.0, "total_p95_ns": 1410784.2, "total_p99_ns": 1434273.28, "total_ci_low_ns": 1362059.0311827958, "total_ci_high_ns": 1373106.1290322582, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 282672.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 65.05133415502787}, {"serializer": "pydantic", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "2.13.4", "avg_time_ser_ns": 585907.2688172043, "avg_time_deser_ns": 806960.4408602151, "avg_time_total_ns": 1392867.7096774194, "median_size_bytes": 51203.0, "avg_ops_per_sec": 717.9432713187059, "min_ops_per_sec": 679.5001596825375, "max_ops_per_sec": 760.1539463772203, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 585907.2688172043, "ser_median_ns": 586952.0, "ser_std_ns": 19873.460354441562, "ser_mad_ns": 11743.0, "ser_cv": 0.0339191223801694, "ser_min_ns": 541141.0, "ser_max_ns": 629545.0, "ser_p5_ns": 552436.4, "ser_p25_ns": 571003.0, "ser_p50_ns": 586952.0, "ser_p75_ns": 596760.0, "ser_p95_ns": 619491.6, "ser_p99_ns": 626584.44, "ser_ci_low_ns": 581629.1252688173, "ser_ci_high_ns": 589923.2330645162, "deser_mean_ns": 806960.4408602151, "deser_median_ns": 807374.0, "deser_std_ns": 21842.0769345408, "deser_mad_ns": 16486.0, "deser_cv": 0.027067097503884172, "deser_min_ns": 766228.0, "deser_max_ns": 855326.0, "deser_p5_ns": 775351.8, "deser_p25_ns": 790220.0, "deser_p50_ns": 807374.0, "deser_p75_ns": 823000.0, "deser_p95_ns": 845609.2, "deser_p99_ns": 854348.96, "deser_ci_low_ns": 802647.5096774193, "deser_ci_high_ns": 811227.5185483871, "total_mean_ns": 1392867.7096774194, "total_median_ns": 1391681.0, "total_std_ns": 35386.40826785871, "total_mad_ns": 24387.0, "total_cv": 0.02540543371204578, "total_min_ns": 1315523.0, "total_max_ns": 1471670.0, "total_p5_ns": 1335238.0, "total_p25_ns": 1367163.0, "total_p50_ns": 1391681.0, "total_p75_ns": 1413799.0, "total_p95_ns": 1464608.8, "total_p99_ns": 1469953.28, "total_ci_low_ns": 1385752.7639784948, "total_ci_high_ns": 1399886.5615591398, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 824725.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 49.775606136745196}, {"serializer": "dill", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "0.4.1", "avg_time_ser_ns": 8197370.13253012, "avg_time_deser_ns": 357295.313253012, "avg_time_total_ns": 8554665.445783133, "median_size_bytes": 31602.0, "avg_ops_per_sec": 116.8952785281547, "min_ops_per_sec": 113.31589854918255, "max_ops_per_sec": 120.72685777808738, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 8197370.13253012, "ser_median_ns": 8195068.0, "ser_std_ns": 115126.37252758497, "ser_mad_ns": 79944.0, "ser_cv": 0.014044305754930111, "ser_min_ns": 7936453.0, "ser_max_ns": 8456201.0, "ser_p5_ns": 7993846.2, "ser_p25_ns": 8123920.0, "ser_p50_ns": 8195068.0, "ser_p75_ns": 8280709.0, "ser_p95_ns": 8388559.899999999, "ser_p99_ns": 8425098.4, "ser_ci_low_ns": 8172014.302108433, "ser_ci_high_ns": 8220303.74246988, "deser_mean_ns": 357295.313253012, "deser_median_ns": 350908.0, "deser_std_ns": 19075.88677728247, "deser_mad_ns": 10236.0, "deser_cv": 0.05338969213899046, "deser_min_ns": 322563.0, "deser_max_ns": 416179.0, "deser_p5_ns": 335582.0, "deser_p25_ns": 343348.0, "deser_p50_ns": 350908.0, "deser_p75_ns": 368204.5, "deser_p95_ns": 393457.39999999997, "deser_p99_ns": 407079.4599999999, "deser_ci_low_ns": 353524.4337349398, "deser_ci_high_ns": 361546.1111445783, "total_mean_ns": 8554665.445783133, "total_median_ns": 8561249.0, "total_std_ns": 126034.07911395925, "total_mad_ns": 86730.0, "total_cv": 0.01473278878206575, "total_min_ns": 8283161.0, "total_max_ns": 8824887.0, "total_p5_ns": 8327359.5, "total_p25_ns": 8472042.5, "total_p50_ns": 8561249.0, "total_p75_ns": 8642811.5, "total_p95_ns": 8750522.9, "total_p99_ns": 8821158.46, "total_ci_low_ns": 8527676.259337349, "total_ci_high_ns": 8581670.010843374, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 527758.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 93.64485404137778}, {"serializer": "rapidjson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "1.23", "avg_time_ser_ns": 183779.18279569893, "avg_time_deser_ns": 301844.0430107527, "avg_time_total_ns": 485623.22580645164, "median_size_bytes": 45404.0, "avg_ops_per_sec": 2059.209582365726, "min_ops_per_sec": 1944.0011041926273, "max_ops_per_sec": 2223.3635488439622, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 183779.18279569893, "ser_median_ns": 180911.0, "ser_std_ns": 11622.700510251701, "ser_mad_ns": 7911.0, "ser_cv": 0.06324274780986627, "ser_min_ns": 168074.0, "ser_max_ns": 213050.0, "ser_p5_ns": 169405.0, "ser_p25_ns": 174853.0, "ser_p50_ns": 180911.0, "ser_p75_ns": 193394.0, "ser_p95_ns": 204887.99999999997, "ser_p99_ns": 211599.16, "ser_ci_low_ns": 181545.72553763443, "ser_ci_high_ns": 186098.70698924732, "deser_mean_ns": 301844.0430107527, "deser_median_ns": 302240.0, "deser_std_ns": 8318.47530306457, "deser_mad_ns": 5266.0, "deser_cv": 0.027558851982274295, "deser_min_ns": 279784.0, "deser_max_ns": 321664.0, "deser_p5_ns": 289020.4, "deser_p25_ns": 295995.0, "deser_p50_ns": 302240.0, "deser_p75_ns": 307033.0, "deser_p95_ns": 316231.2, "deser_p99_ns": 321550.84, "deser_ci_low_ns": 300116.15430107526, "deser_ci_high_ns": 303473.4018817204, "total_mean_ns": 485623.22580645164, "total_median_ns": 487453.0, "total_std_ns": 15412.6007942182, "total_mad_ns": 12374.0, "total_cv": 0.03173777524463172, "total_min_ns": 449769.0, "total_max_ns": 514403.0, "total_p5_ns": 460789.0, "total_p25_ns": 473614.0, "total_p50_ns": 487453.0, "total_p75_ns": 497056.0, "total_p95_ns": 509970.6, "total_p99_ns": 512975.16, "total_ci_low_ns": 482469.22069892474, "total_ci_high_ns": 488778.82849462365, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 404338.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 34.03618302984127}, {"serializer": "json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 303378.1458333333, "avg_time_deser_ns": 296622.625, "avg_time_total_ns": 600000.7708333334, "median_size_bytes": 45404.0, "avg_ops_per_sec": 1666.6645254657137, "min_ops_per_sec": 1529.9222187543985, "max_ops_per_sec": 1791.3634783979478, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 303378.1458333333, "ser_median_ns": 301084.5, "ser_std_ns": 16022.852918305985, "ser_mad_ns": 11374.0, "ser_cv": 0.0528147895237927, "ser_min_ns": 276767.0, "ser_max_ns": 338168.0, "ser_p5_ns": 280775.0, "ser_p25_ns": 290795.5, "ser_p50_ns": 301084.5, "ser_p75_ns": 314768.25, "ser_p95_ns": 334508.0, "ser_p99_ns": 337741.45, "ser_ci_low_ns": 300374.28177083336, "ser_ci_high_ns": 306703.80937499995, "deser_mean_ns": 296622.625, "deser_median_ns": 295452.5, "deser_std_ns": 9773.954464746977, "deser_mad_ns": 6414.0, "deser_cv": 0.03295080563981583, "deser_min_ns": 278071.0, "deser_max_ns": 321579.0, "deser_p5_ns": 282024.5, "deser_p25_ns": 290206.25, "deser_p50_ns": 295452.5, "deser_p75_ns": 302758.0, "deser_p95_ns": 315140.25, "deser_p99_ns": 321003.3, "deser_ci_low_ns": 294776.90234375, "deser_ci_high_ns": 298687.03958333336, "total_mean_ns": 600000.7708333334, "total_median_ns": 598643.5, "total_std_ns": 22095.29355195196, "total_mad_ns": 15767.5, "total_cv": 0.03682544194278966, "total_min_ns": 558234.0, "total_max_ns": 653628.0, "total_p5_ns": 569069.0, "total_p25_ns": 581927.5, "total_p50_ns": 598643.5, "total_p75_ns": 614005.5, "total_p95_ns": 637112.0, "total_p99_ns": 649070.85, "total_ci_low_ns": 595792.1940104167, "total_ci_high_ns": 604463.18828125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 359891.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.801715852731952}, {"serializer": "msgspec", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 48844.57831325301, "avg_time_deser_ns": 80676.02409638555, "avg_time_total_ns": 129520.60240963855, "median_size_bytes": 19804.0, "avg_ops_per_sec": 7720.779408030169, "min_ops_per_sec": 6892.701318573762, "max_ops_per_sec": 8328.128253175099, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 48844.57831325301, "ser_median_ns": 48061.0, "ser_std_ns": 3334.500105586757, "ser_mad_ns": 1829.0, "ser_cv": 0.06826755846271695, "ser_min_ns": 44603.0, "ser_max_ns": 58587.0, "ser_p5_ns": 44976.8, "ser_p25_ns": 46400.0, "ser_p50_ns": 48061.0, "ser_p75_ns": 49992.0, "ser_p95_ns": 55772.6, "ser_p99_ns": 57284.83999999999, "ser_ci_low_ns": 48149.92710843374, "ser_ci_high_ns": 49612.91837349398, "deser_mean_ns": 80676.02409638555, "deser_median_ns": 80524.0, "deser_std_ns": 2628.684099882156, "deser_mad_ns": 2153.0, "deser_cv": 0.032583213282072566, "deser_min_ns": 75082.0, "deser_max_ns": 87387.0, "deser_p5_ns": 76808.1, "deser_p25_ns": 78531.0, "deser_p50_ns": 80524.0, "deser_p75_ns": 82569.5, "deser_p95_ns": 84349.6, "deser_p99_ns": 86654.73999999999, "deser_ci_low_ns": 80118.55361445784, "deser_ci_high_ns": 81246.2171686747, "total_mean_ns": 129520.60240963855, "total_median_ns": 128815.0, "total_std_ns": 5563.11319654338, "total_mad_ns": 3663.0, "total_cv": 0.042951569812413014, "total_min_ns": 120075.0, "total_max_ns": 145081.0, "total_p5_ns": 122443.2, "total_p25_ns": 125437.0, "total_p50_ns": 128815.0, "total_p75_ns": 132507.5, "total_p95_ns": 140392.5, "total_p99_ns": 143338.49999999997, "total_ci_low_ns": 128352.88403614458, "total_ci_high_ns": 130707.31626506023, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 167549.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.482485600778176}, {"serializer": "mashumaro", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "3.22", "avg_time_ser_ns": 155714.7634408602, "avg_time_deser_ns": 398365.3010752688, "avg_time_total_ns": 554080.0645161291, "median_size_bytes": 45404.0, "avg_ops_per_sec": 1804.79332147293, "min_ops_per_sec": 1667.8146791041167, "max_ops_per_sec": 1937.5001210937576, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 155714.7634408602, "ser_median_ns": 153434.0, "ser_std_ns": 9023.623725482114, "ser_mad_ns": 5629.0, "ser_cv": 0.05794969934825253, "ser_min_ns": 141702.0, "ser_max_ns": 176512.0, "ser_p5_ns": 144178.4, "ser_p25_ns": 148747.0, "ser_p50_ns": 153434.0, "ser_p75_ns": 160775.0, "ser_p95_ns": 172734.4, "ser_p99_ns": 175889.16, "ser_ci_low_ns": 153885.00537634408, "ser_ci_high_ns": 157529.24543010752, "deser_mean_ns": 398365.3010752688, "deser_median_ns": 397141.0, "deser_std_ns": 13290.360790883244, "deser_mad_ns": 9014.0, "deser_cv": 0.033362245042451895, "deser_min_ns": 372070.0, "deser_max_ns": 431222.0, "deser_p5_ns": 379752.6, "deser_p25_ns": 389182.0, "deser_p50_ns": 397141.0, "deser_p75_ns": 407812.0, "deser_p95_ns": 424308.8, "deser_p99_ns": 428816.2, "deser_ci_low_ns": 395583.3983870968, "deser_ci_high_ns": 401150.548655914, "total_mean_ns": 554080.0645161291, "total_median_ns": 553438.0, "total_std_ns": 18448.800776865908, "total_mad_ns": 13492.0, "total_cv": 0.03329627243127219, "total_min_ns": 516129.0, "total_max_ns": 599587.0, "total_p5_ns": 526574.2, "total_p25_ns": 540247.0, "total_p50_ns": 553438.0, "total_p75_ns": 566930.0, "total_p95_ns": 584598.6, "total_p99_ns": 598145.36, "total_ci_low_ns": 550527.1900537635, "total_ci_high_ns": 557970.0669354838, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 881628.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 33.61102078961651}, {"serializer": "flatbuffers", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "25.12.19", "avg_time_ser_ns": 5749370.563829787, "avg_time_deser_ns": 1924319.914893617, "avg_time_total_ns": 7673690.478723404, "median_size_bytes": 42996.0, "avg_ops_per_sec": 130.31539423862196, "min_ops_per_sec": 125.71125858717893, "max_ops_per_sec": 135.670244245784, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 5749370.563829787, "ser_median_ns": 5754488.5, "ser_std_ns": 89181.34181549418, "ser_mad_ns": 64459.0, "ser_cv": 0.015511496576085792, "ser_min_ns": 5521066.0, "ser_max_ns": 5984502.0, "ser_p5_ns": 5623500.9, "ser_p25_ns": 5679606.5, "ser_p50_ns": 5754488.5, "ser_p75_ns": 5808352.25, "ser_p95_ns": 5894787.05, "ser_p99_ns": 5972490.12, "ser_ci_low_ns": 5731242.259042554, "ser_ci_high_ns": 5767639.543617021, "deser_mean_ns": 1924319.914893617, "deser_median_ns": 1918181.0, "deser_std_ns": 45474.00976279371, "deser_mad_ns": 28631.5, "deser_cv": 0.023631210907728753, "deser_min_ns": 1824504.0, "deser_max_ns": 2035841.0, "deser_p5_ns": 1849425.25, "deser_p25_ns": 1896213.5, "deser_p50_ns": 1918181.0, "deser_p75_ns": 1961937.25, "deser_p95_ns": 1995091.25, "deser_p99_ns": 2012398.4899999998, "deser_ci_low_ns": 1915026.0529255318, "deser_ci_high_ns": 1933405.9364361702, "total_mean_ns": 7673690.478723404, "total_median_ns": 7670121.0, "total_std_ns": 116130.4795487848, "total_mad_ns": 81230.5, "total_cv": 0.015133589225520116, "total_min_ns": 7370813.0, "total_max_ns": 7954737.0, "total_p5_ns": 7489712.45, "total_p25_ns": 7594046.5, "total_p50_ns": 7670121.0, "total_p75_ns": 7752135.75, "total_p95_ns": 7878528.0, "total_p99_ns": 7927754.91, "total_ci_low_ns": 7651006.435904255, "total_ci_high_ns": 7695531.410904256, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 315209.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 88.39890984106121}, {"serializer": "serpyco-rs", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "1.21.0", "avg_time_ser_ns": 143765.39130434784, "avg_time_deser_ns": 266433.3804347826, "avg_time_total_ns": 410198.77173913043, "median_size_bytes": 45404.0, "avg_ops_per_sec": 2437.842501966239, "min_ops_per_sec": 2163.972881091854, "max_ops_per_sec": 2634.116017005853, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 143765.39130434784, "ser_median_ns": 139311.5, "ser_std_ns": 9674.478072592156, "ser_mad_ns": 4213.5, "ser_cv": 0.06729351191422364, "ser_min_ns": 132489.0, "ser_max_ns": 166565.0, "ser_p5_ns": 133803.55, "ser_p25_ns": 136357.5, "ser_p50_ns": 139311.5, "ser_p75_ns": 149598.0, "ser_p95_ns": 163333.6, "ser_p99_ns": 165187.26, "ser_ci_low_ns": 141900.71711956523, "ser_ci_high_ns": 145787.38532608695, "deser_mean_ns": 266433.3804347826, "deser_median_ns": 263307.5, "deser_std_ns": 12354.752575641784, "deser_mad_ns": 6999.0, "deser_cv": 0.046370888495580125, "deser_min_ns": 245352.0, "deser_max_ns": 304888.0, "deser_p5_ns": 252099.0, "deser_p25_ns": 256824.75, "deser_p50_ns": 263307.5, "deser_p75_ns": 274077.25, "deser_p95_ns": 286073.7, "deser_p99_ns": 304880.72, "deser_ci_low_ns": 264006.7347826087, "deser_ci_high_ns": 268984.829076087, "total_mean_ns": 410198.77173913043, "total_median_ns": 406213.5, "total_std_ns": 17447.237751149223, "total_mad_ns": 11720.0, "total_cv": 0.04253361773166144, "total_min_ns": 379634.0, "total_max_ns": 462113.0, "total_p5_ns": 390077.55, "total_p25_ns": 395844.25, "total_p50_ns": 406213.5, "total_p75_ns": 421389.0, "total_p95_ns": 441450.9, "total_p99_ns": 458101.72000000003, "total_ci_low_ns": 406653.24293478264, "total_ci_high_ns": 413680.0486413043, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 881628.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.56645101678263}, {"serializer": "msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "1.2.1", "avg_time_ser_ns": 193154.95789473684, "avg_time_deser_ns": 185648.0, "avg_time_total_ns": 378802.95789473684, "median_size_bytes": 32759.0, "avg_ops_per_sec": 2639.8949088403997, "min_ops_per_sec": 2429.8679366776414, "max_ops_per_sec": 2841.393419332841, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 193154.95789473684, "ser_median_ns": 189857.0, "ser_std_ns": 11540.609125960738, "ser_mad_ns": 8053.0, "ser_cv": 0.05974793115199246, "ser_min_ns": 175861.0, "ser_max_ns": 220647.0, "ser_p5_ns": 180176.9, "ser_p25_ns": 182768.5, "ser_p50_ns": 189857.0, "ser_p75_ns": 204268.5, "ser_p95_ns": 211068.0, "ser_p99_ns": 218381.6, "ser_ci_low_ns": 190899.1213157895, "ser_ci_high_ns": 195529.9692105263, "deser_mean_ns": 185648.0, "deser_median_ns": 184192.0, "deser_std_ns": 6003.189134721148, "deser_mad_ns": 3511.0, "deser_cv": 0.032336406181166226, "deser_min_ns": 174775.0, "deser_max_ns": 202252.0, "deser_p5_ns": 177259.5, "deser_p25_ns": 181739.5, "deser_p50_ns": 184192.0, "deser_p75_ns": 189148.0, "deser_p95_ns": 196931.3, "deser_p99_ns": 200949.16, "deser_ci_low_ns": 184466.91289473686, "deser_ci_high_ns": 186856.88947368422, "total_mean_ns": 378802.95789473684, "total_median_ns": 379232.0, "total_std_ns": 14230.501848117377, "total_mad_ns": 11603.0, "total_cv": 0.03756702937908896, "total_min_ns": 351940.0, "total_max_ns": 411545.0, "total_p5_ns": 359136.8, "total_p25_ns": 366340.5, "total_p50_ns": 379232.0, "total_p75_ns": 389626.5, "total_p95_ns": 403596.9, "total_p99_ns": 408602.8, "total_ci_low_ns": 376123.4455263158, "total_ci_high_ns": 381657.1526315789, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 303389.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.718472480531332}, {"serializer": "cloudpickle", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "3.1.2", "avg_time_ser_ns": 991811.0113636364, "avg_time_deser_ns": 320057.57954545453, "avg_time_total_ns": 1311868.5909090908, "median_size_bytes": 31602.0, "avg_ops_per_sec": 762.2714705800114, "min_ops_per_sec": 706.9510966578887, "max_ops_per_sec": 813.7106998074761, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 991811.0113636364, "ser_median_ns": 986025.0, "ser_std_ns": 28918.459079031454, "ser_mad_ns": 19456.0, "ser_cv": 0.029157227281910895, "ser_min_ns": 934103.0, "ser_max_ns": 1076024.0, "ser_p5_ns": 954705.35, "ser_p25_ns": 970856.75, "ser_p50_ns": 986025.0, "ser_p75_ns": 1011041.25, "ser_p95_ns": 1047562.7, "ser_p99_ns": 1062720.8299999998, "ser_ci_low_ns": 985841.9241477273, "ser_ci_high_ns": 997690.9602272727, "deser_mean_ns": 320057.57954545453, "deser_median_ns": 315638.0, "deser_std_ns": 13379.302992619325, "deser_mad_ns": 9477.0, "deser_cv": 0.04180280001998577, "deser_min_ns": 293578.0, "deser_max_ns": 353792.0, "deser_p5_ns": 304428.3, "deser_p25_ns": 310458.75, "deser_p50_ns": 315638.0, "deser_p75_ns": 328354.25, "deser_p95_ns": 344730.6, "deser_p99_ns": 350817.47, "deser_ci_low_ns": 317220.88238636364, "deser_ci_high_ns": 322878.2903409091, "total_mean_ns": 1311868.5909090908, "total_median_ns": 1305371.5, "total_std_ns": 37247.36335762693, "total_mad_ns": 24143.0, "total_cv": 0.02839260244184631, "total_min_ns": 1228938.0, "total_max_ns": 1414525.0, "total_p5_ns": 1263234.95, "total_p25_ns": 1285130.25, "total_p50_ns": 1305371.5, "total_p75_ns": 1332662.75, "total_p95_ns": 1381465.4, "total_p99_ns": 1405124.65, "total_ci_low_ns": 1304400.0062499999, "total_ci_high_ns": 1319886.137215909, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 483151.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 44.94325047399144}, {"serializer": "msgspec-msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 48202.395604395606, "avg_time_deser_ns": 70718.52747252748, "avg_time_total_ns": 118920.92307692308, "median_size_bytes": 13159.0, "avg_ops_per_sec": 8408.949191835298, "min_ops_per_sec": 7192.174913693901, "max_ops_per_sec": 9416.639201468995, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 48202.395604395606, "ser_median_ns": 45709.0, "ser_std_ns": 7240.960365831042, "ser_mad_ns": 2945.0, "ser_cv": 0.15021992735088738, "ser_min_ns": 38273.0, "ser_max_ns": 68639.0, "ser_p5_ns": 40779.5, "ser_p25_ns": 43591.0, "ser_p50_ns": 45709.0, "ser_p75_ns": 51029.5, "ser_p95_ns": 65989.0, "ser_p99_ns": 68603.0, "ser_ci_low_ns": 46737.104395604394, "ser_ci_high_ns": 49776.07307692308, "deser_mean_ns": 70718.52747252748, "deser_median_ns": 70538.0, "deser_std_ns": 2451.627814514989, "deser_mad_ns": 1902.0, "deser_cv": 0.03466740474011411, "deser_min_ns": 65332.0, "deser_max_ns": 75964.0, "deser_p5_ns": 67389.0, "deser_p25_ns": 68688.5, "deser_p50_ns": 70538.0, "deser_p75_ns": 72525.5, "deser_p95_ns": 74857.5, "deser_p99_ns": 75882.1, "deser_ci_low_ns": 70222.81043956045, "deser_ci_high_ns": 71212.20384615385, "total_mean_ns": 118920.92307692308, "total_median_ns": 116577.0, "total_std_ns": 8072.6272705713745, "total_mad_ns": 4476.0, "total_cv": 0.06788231256285875, "total_min_ns": 106195.0, "total_max_ns": 139040.0, "total_p5_ns": 109706.5, "total_p25_ns": 112882.0, "total_p50_ns": 116577.0, "total_p75_ns": 123478.0, "total_p95_ns": 135187.5, "total_p99_ns": 137895.19999999998, "total_ci_low_ns": 117315.60576923078, "total_ci_high_ns": 120565.82774725274, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 156211.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.72601547854739}, {"serializer": "pickle", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 426356.5888888889, "avg_time_deser_ns": 321550.5444444445, "avg_time_total_ns": 747907.1333333333, "median_size_bytes": 31602.0, "avg_ops_per_sec": 1337.0643966759867, "min_ops_per_sec": 1230.348262379149, "max_ops_per_sec": 1445.1681525403887, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 426356.5888888889, "ser_median_ns": 422266.5, "ser_std_ns": 19234.993984159748, "ser_mad_ns": 13713.5, "ser_cv": 0.04511480409928063, "ser_min_ns": 389905.0, "ser_max_ns": 473036.0, "ser_p5_ns": 398958.45, "ser_p25_ns": 412318.0, "ser_p50_ns": 422266.5, "ser_p75_ns": 440606.0, "ser_p95_ns": 460250.4, "ser_p99_ns": 468723.06, "ser_ci_low_ns": 422390.0730555556, "ser_ci_high_ns": 430334.5675, "deser_mean_ns": 321550.5444444445, "deser_median_ns": 319275.5, "deser_std_ns": 14543.587042784055, "deser_mad_ns": 9840.5, "deser_cv": 0.045229551913561775, "deser_min_ns": 293856.0, "deser_max_ns": 359607.0, "deser_p5_ns": 301599.6, "deser_p25_ns": 311730.75, "deser_p50_ns": 319275.5, "deser_p75_ns": 330610.25, "deser_p95_ns": 346916.35, "deser_p99_ns": 352768.24, "deser_ci_low_ns": 318578.9191666667, "deser_ci_high_ns": 324635.8875, "total_mean_ns": 747907.1333333333, "total_median_ns": 743320.0, "total_std_ns": 29660.434283606413, "total_mad_ns": 20948.5, "total_cv": 0.03965791067055796, "total_min_ns": 691961.0, "total_max_ns": 812778.0, "total_p5_ns": 703120.3, "total_p25_ns": 724684.75, "total_p50_ns": 743320.0, "total_p75_ns": 769286.0, "total_p95_ns": 799843.55, "total_p99_ns": 811497.29, "total_ci_low_ns": 741750.7397222222, "total_ci_high_ns": 754104.6158333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 483151.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.183893746398724}, {"serializer": "serpyco-rs", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "1.21.0", "avg_time_ser_ns": 145025.6923076923, "avg_time_deser_ns": 265992.7032967033, "avg_time_total_ns": 411018.3956043956, "median_size_bytes": 45404.0, "avg_ops_per_sec": 2432.981128568508, "min_ops_per_sec": 2264.7799539796715, "max_ops_per_sec": 2626.2504234828807, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 145025.6923076923, "ser_median_ns": 142125.0, "ser_std_ns": 9629.127792152663, "ser_mad_ns": 4843.0, "ser_cv": 0.06639601327827568, "ser_min_ns": 128107.0, "ser_max_ns": 170023.0, "ser_p5_ns": 134639.0, "ser_p25_ns": 138206.0, "ser_p50_ns": 142125.0, "ser_p75_ns": 148449.0, "ser_p95_ns": 163821.0, "ser_p99_ns": 166457.19999999998, "ser_ci_low_ns": 143047.2535714286, "ser_ci_high_ns": 146962.24615384618, "deser_mean_ns": 265992.7032967033, "deser_median_ns": 264074.0, "deser_std_ns": 11019.680967850714, "deser_mad_ns": 6022.0, "deser_cv": 0.0414285084939294, "deser_min_ns": 247007.0, "deser_max_ns": 295829.0, "deser_p5_ns": 250301.5, "deser_p25_ns": 258314.5, "deser_p50_ns": 264074.0, "deser_p75_ns": 272330.5, "deser_p95_ns": 287020.5, "deser_p99_ns": 293421.5, "deser_ci_low_ns": 264004.51456043957, "deser_ci_high_ns": 268284.9008241758, "total_mean_ns": 411018.3956043956, "total_median_ns": 409554.0, "total_std_ns": 15100.978586302957, "total_mad_ns": 11346.0, "total_cv": 0.03674039592339225, "total_min_ns": 380771.0, "total_max_ns": 441544.0, "total_p5_ns": 388886.0, "total_p25_ns": 399259.0, "total_p50_ns": 409554.0, "total_p75_ns": 423105.0, "total_p95_ns": 433598.5, "total_p99_ns": 440935.6, "total_ci_low_ns": 408122.4684065934, "total_ci_high_ns": 414179.5071428571, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 881628.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.906777052764696}, {"serializer": "protobuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "7.35.1", "avg_time_ser_ns": 42583.14666666667, "avg_time_deser_ns": 47014.62666666666, "avg_time_total_ns": 89597.77333333333, "median_size_bytes": 16265.0, "avg_ops_per_sec": 11160.991649643674, "min_ops_per_sec": 9837.097662705595, "max_ops_per_sec": 12230.470995438034, "runs": 75, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 24, "ser_mean_ns": 42583.14666666667, "ser_median_ns": 41806.0, "ser_std_ns": 3165.420516418911, "ser_mad_ns": 1763.0, "ser_cv": 0.0743350542222082, "ser_min_ns": 36572.0, "ser_max_ns": 55106.0, "ser_p5_ns": 38948.8, "ser_p25_ns": 40314.0, "ser_p50_ns": 41806.0, "ser_p75_ns": 44341.0, "ser_p95_ns": 48813.2, "ser_p99_ns": 51978.760000000024, "ser_ci_low_ns": 41899.344333333334, "ser_ci_high_ns": 43305.66566666667, "deser_mean_ns": 47014.62666666666, "deser_median_ns": 46948.0, "deser_std_ns": 975.0349373273806, "deser_mad_ns": 552.0, "deser_cv": 0.020738970113287736, "deser_min_ns": 44767.0, "deser_max_ns": 49671.0, "deser_p5_ns": 45379.2, "deser_p25_ns": 46432.0, "deser_p50_ns": 46948.0, "deser_p75_ns": 47624.5, "deser_p95_ns": 48527.6, "deser_p99_ns": 49412.740000000005, "deser_ci_low_ns": 46804.882, "deser_ci_high_ns": 47228.530999999995, "total_mean_ns": 89597.77333333333, "total_median_ns": 88967.0, "total_std_ns": 3736.6932395965882, "total_mad_ns": 2132.0, "total_cv": 0.041705202044417494, "total_min_ns": 81763.0, "total_max_ns": 101656.0, "total_p5_ns": 84828.5, "total_p25_ns": 87138.5, "total_p50_ns": 88967.0, "total_p75_ns": 91323.5, "total_p95_ns": 96914.09999999999, "total_p99_ns": 100580.04000000001, "total_ci_low_ns": 88793.991, "total_ci_high_ns": 90431.71033333332, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 16402.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "cbor2", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "6.1.3", "avg_time_ser_ns": 803408.724489796, "avg_time_deser_ns": 343735.89795918367, "avg_time_total_ns": 1147144.6224489796, "median_size_bytes": 33372.0, "avg_ops_per_sec": 871.7296672368578, "min_ops_per_sec": 809.8654570516201, "max_ops_per_sec": 916.1326376832837, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 803408.724489796, "ser_median_ns": 803831.0, "ser_std_ns": 24704.73182263807, "ser_mad_ns": 19226.0, "ser_cv": 0.030749892389240346, "ser_min_ns": 759499.0, "ser_max_ns": 869453.0, "ser_p5_ns": 765772.7, "ser_p25_ns": 782594.75, "ser_p50_ns": 803831.0, "ser_p75_ns": 820932.0, "ser_p95_ns": 843237.1, "ser_p99_ns": 869092.16, "ser_ci_low_ns": 798636.6663265306, "ser_ci_high_ns": 808382.9806122449, "deser_mean_ns": 343735.89795918367, "deser_median_ns": 341563.5, "deser_std_ns": 10761.21235599984, "deser_mad_ns": 7077.5, "deser_cv": 0.031306629362516165, "deser_min_ns": 323509.0, "deser_max_ns": 370620.0, "deser_p5_ns": 328927.45, "deser_p25_ns": 336980.0, "deser_p50_ns": 341563.5, "deser_p75_ns": 351256.75, "deser_p95_ns": 364875.6, "deser_p99_ns": 369979.8, "deser_ci_low_ns": 341735.92270408163, "deser_ci_high_ns": 345814.7326530612, "total_mean_ns": 1147144.6224489796, "total_median_ns": 1142969.5, "total_std_ns": 30560.918882767226, "total_mad_ns": 21738.0, "total_cv": 0.02664085964812728, "total_min_ns": 1091545.0, "total_max_ns": 1234773.0, "total_p5_ns": 1100272.1, "total_p25_ns": 1124072.25, "total_p50_ns": 1142969.5, "total_p75_ns": 1168786.0, "total_p95_ns": 1198705.15, "total_p99_ns": 1215134.3800000001, "total_ci_low_ns": 1140978.7374999998, "total_ci_high_ns": 1153191.4642857143, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 443660.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 45.48529526508961}, {"serializer": "flatbuffers", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "25.12.19", "avg_time_ser_ns": 5679727.821052631, "avg_time_deser_ns": 1905871.8736842105, "avg_time_total_ns": 7585599.694736842, "median_size_bytes": 42996.0, "avg_ops_per_sec": 131.82873342154286, "min_ops_per_sec": 126.75693027671672, "max_ops_per_sec": 135.49926193552022, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 5679727.821052631, "ser_median_ns": 5664277.0, "ser_std_ns": 90821.82545160197, "ser_mad_ns": 61275.0, "ser_cv": 0.015990524249235916, "ser_min_ns": 5526604.0, "ser_max_ns": 5898267.0, "ser_p5_ns": 5563012.4, "ser_p25_ns": 5607305.5, "ser_p50_ns": 5664277.0, "ser_p75_ns": 5737608.0, "ser_p95_ns": 5862567.7, "ser_p99_ns": 5888589.7, "ser_ci_low_ns": 5661245.701578948, "ser_ci_high_ns": 5698406.018421053, "deser_mean_ns": 1905871.8736842105, "deser_median_ns": 1904277.0, "deser_std_ns": 41040.44402761591, "deser_mad_ns": 30694.0, "deser_cv": 0.021533684711072042, "deser_min_ns": 1822024.0, "deser_max_ns": 2003455.0, "deser_p5_ns": 1847725.3, "deser_p25_ns": 1873511.5, "deser_p50_ns": 1904277.0, "deser_p75_ns": 1934538.0, "deser_p95_ns": 1976479.1, "deser_p99_ns": 2001281.72, "deser_ci_low_ns": 1896981.5221052633, "deser_ci_high_ns": 1913898.2165789474, "total_mean_ns": 7585599.694736842, "total_median_ns": 7575314.0, "total_std_ns": 116654.45871380177, "total_mad_ns": 90075.0, "total_cv": 0.01537840954021615, "total_min_ns": 7380114.0, "total_max_ns": 7889115.0, "total_p5_ns": 7430922.2, "total_p25_ns": 7484772.5, "total_p50_ns": 7575314.0, "total_p75_ns": 7659580.5, "total_p95_ns": 7809850.9, "total_p99_ns": 7868941.66, "total_ci_low_ns": 7561907.920789474, "total_ci_high_ns": 7610419.417105263, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 315209.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 85.48652690669458}, {"serializer": "pydantic", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "2.13.4", "avg_time_ser_ns": 586848.4888888889, "avg_time_deser_ns": 805960.4444444445, "avg_time_total_ns": 1392808.9333333333, "median_size_bytes": 51203.0, "avg_ops_per_sec": 717.9735684253221, "min_ops_per_sec": 682.4364071633985, "max_ops_per_sec": 772.9546267904527, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 586848.4888888889, "ser_median_ns": 587952.0, "ser_std_ns": 21253.87020209004, "ser_mad_ns": 13341.5, "ser_cv": 0.036216963329548844, "ser_min_ns": 541713.0, "ser_max_ns": 639464.0, "ser_p5_ns": 552075.85, "ser_p25_ns": 571729.0, "ser_p50_ns": 587952.0, "ser_p75_ns": 598278.75, "ser_p95_ns": 622415.35, "ser_p99_ns": 638829.43, "ser_ci_low_ns": 582668.1502777777, "ser_ci_high_ns": 590985.8858333332, "deser_mean_ns": 805960.4444444445, "deser_median_ns": 803426.0, "deser_std_ns": 23795.9908572621, "deser_mad_ns": 16376.0, "deser_cv": 0.02952501083805035, "deser_min_ns": 752024.0, "deser_max_ns": 868605.0, "deser_p5_ns": 773889.3, "deser_p25_ns": 789059.75, "deser_p50_ns": 803426.0, "deser_p75_ns": 820780.75, "deser_p95_ns": 846988.25, "deser_p99_ns": 864590.21, "deser_ci_low_ns": 801105.3766666667, "deser_ci_high_ns": 810855.1233333333, "total_mean_ns": 1392808.9333333333, "total_median_ns": 1394502.0, "total_std_ns": 37315.1404135827, "total_mad_ns": 22044.0, "total_cv": 0.026791284519031927, "total_min_ns": 1293737.0, "total_max_ns": 1465338.0, "total_p5_ns": 1327858.9, "total_p25_ns": 1369999.0, "total_p50_ns": 1394502.0, "total_p75_ns": 1413819.25, "total_p95_ns": 1451992.3, "total_p99_ns": 1464638.46, "total_ci_low_ns": 1384829.8155555555, "total_ci_high_ns": 1400456.945, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 824725.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 46.85107099711872}, {"serializer": "pickle", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 426517.6989247312, "avg_time_deser_ns": 322731.4193548387, "avg_time_total_ns": 749249.1182795699, "median_size_bytes": 31602.0, "avg_ops_per_sec": 1334.669571979218, "min_ops_per_sec": 1202.3190329507554, "max_ops_per_sec": 1447.062824232514, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 426517.6989247312, "ser_median_ns": 426841.0, "ser_std_ns": 19068.55652455391, "ser_mad_ns": 14990.0, "ser_cv": 0.04470753868509216, "ser_min_ns": 387957.0, "ser_max_ns": 467823.0, "ser_p5_ns": 394767.2, "ser_p25_ns": 411851.0, "ser_p50_ns": 426841.0, "ser_p75_ns": 440849.0, "ser_p95_ns": 460165.0, "ser_p99_ns": 466152.27999999997, "ser_ci_low_ns": 422704.74677419354, "ser_ci_high_ns": 430155.91639784945, "deser_mean_ns": 322731.4193548387, "deser_median_ns": 318728.0, "deser_std_ns": 15946.311138318355, "deser_mad_ns": 10653.0, "deser_cv": 0.049410470075073806, "deser_min_ns": 299462.0, "deser_max_ns": 370997.0, "deser_p5_ns": 301311.0, "deser_p25_ns": 311422.0, "deser_p50_ns": 318728.0, "deser_p75_ns": 333446.0, "deser_p95_ns": 349741.3999999999, "deser_p99_ns": 370675.92, "deser_ci_low_ns": 319653.59059139783, "deser_ci_high_ns": 325963.26612903224, "total_mean_ns": 749249.1182795699, "total_median_ns": 748694.0, "total_std_ns": 29866.724033558276, "total_mad_ns": 21999.0, "total_cv": 0.039862207782290646, "total_min_ns": 691055.0, "total_max_ns": 831726.0, "total_p5_ns": 703142.4, "total_p25_ns": 728125.0, "total_p50_ns": 748694.0, "total_p75_ns": 773089.0, "total_p95_ns": 794524.8, "total_p99_ns": 803988.0, "total_ci_low_ns": 743533.9674731182, "total_ci_high_ns": 755301.7478494623, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 483151.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.34948414814509}, {"serializer": "cloudpickle", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "3.1.2", "avg_time_ser_ns": 978563.2105263158, "avg_time_deser_ns": 319966.9052631579, "avg_time_total_ns": 1298530.1157894738, "median_size_bytes": 31602.0, "avg_ops_per_sec": 770.1015077282401, "min_ops_per_sec": 721.6470294482504, "max_ops_per_sec": 824.2365097210454, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 978563.2105263158, "ser_median_ns": 975553.0, "ser_std_ns": 28742.50414174425, "ser_mad_ns": 19645.0, "ser_cv": 0.029372148710030927, "ser_min_ns": 911588.0, "ser_max_ns": 1052036.0, "ser_p5_ns": 929214.7, "ser_p25_ns": 961013.5, "ser_p50_ns": 975553.0, "ser_p75_ns": 1001458.5, "ser_p95_ns": 1020439.8, "ser_p99_ns": 1033532.1000000001, "ser_ci_low_ns": 972958.4818421053, "ser_ci_high_ns": 984141.815, "deser_mean_ns": 319966.9052631579, "deser_median_ns": 317306.0, "deser_std_ns": 14680.334515634495, "deser_mad_ns": 8967.0, "deser_cv": 0.045880790400996636, "deser_min_ns": 294096.0, "deser_max_ns": 353054.0, "deser_p5_ns": 301735.5, "deser_p25_ns": 308988.5, "deser_p50_ns": 317306.0, "deser_p75_ns": 327893.5, "deser_p95_ns": 348181.5, "deser_p99_ns": 352474.96, "deser_ci_low_ns": 317103.30631578946, "deser_ci_high_ns": 322977.05842105264, "total_mean_ns": 1298530.1157894738, "total_median_ns": 1299568.0, "total_std_ns": 37928.91822614506, "total_mad_ns": 26236.0, "total_cv": 0.02920911711245544, "total_min_ns": 1213244.0, "total_max_ns": 1385719.0, "total_p5_ns": 1228902.4, "total_p25_ns": 1274242.0, "total_p50_ns": 1299568.0, "total_p75_ns": 1329679.5, "total_p95_ns": 1356740.9, "total_p99_ns": 1375896.0, "total_ci_low_ns": 1290635.7249999999, "total_ci_high_ns": 1306311.229736842, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 483151.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 42.25940014612614}, {"serializer": "dill", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "0.4.1", "avg_time_ser_ns": 8100693.098901099, "avg_time_deser_ns": 355104.3846153846, "avg_time_total_ns": 8455797.483516483, "median_size_bytes": 31602.0, "avg_ops_per_sec": 118.26205652978027, "min_ops_per_sec": 114.42131989569353, "max_ops_per_sec": 121.73617700927082, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 8100693.098901099, "ser_median_ns": 8091555.0, "ser_std_ns": 111010.82553827853, "ser_mad_ns": 72513.0, "ser_cv": 0.013703867580582422, "ser_min_ns": 7880090.0, "ser_max_ns": 8360070.0, "ser_p5_ns": 7916945.0, "ser_p25_ns": 8022536.0, "ser_p50_ns": 8091555.0, "ser_p75_ns": 8171400.0, "ser_p95_ns": 8300298.0, "ser_p99_ns": 8339334.0, "ser_ci_low_ns": 8078762.816208791, "ser_ci_high_ns": 8123508.935714286, "deser_mean_ns": 355104.3846153846, "deser_median_ns": 350840.0, "deser_std_ns": 18635.459025303368, "deser_mad_ns": 10982.0, "deser_cv": 0.052478819841910794, "deser_min_ns": 326548.0, "deser_max_ns": 416356.0, "deser_p5_ns": 333086.0, "deser_p25_ns": 341995.0, "deser_p50_ns": 350840.0, "deser_p75_ns": 366807.0, "deser_p95_ns": 389154.0, "deser_p99_ns": 408543.1, "deser_ci_low_ns": 351363.08653846156, "deser_ci_high_ns": 359064.4434065934, "total_mean_ns": 8455797.483516483, "total_median_ns": 8442648.0, "total_std_ns": 119039.35129848286, "total_mad_ns": 79844.0, "total_cv": 0.014077838492529552, "total_min_ns": 8214485.0, "total_max_ns": 8739630.0, "total_p5_ns": 8264168.0, "total_p25_ns": 8376599.0, "total_p50_ns": 8442648.0, "total_p75_ns": 8542640.0, "total_p95_ns": 8662951.0, "total_p99_ns": 8733015.9, "total_ci_low_ns": 8431506.493406594, "total_ci_high_ns": 8481377.237087913, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 527758.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 94.39930203249833}, {"serializer": "msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "1.2.1", "avg_time_ser_ns": 192343.64516129033, "avg_time_deser_ns": 186857.7741935484, "avg_time_total_ns": 379201.4193548387, "median_size_bytes": 32759.0, "avg_ops_per_sec": 2637.1209308798693, "min_ops_per_sec": 2423.0558611298225, "max_ops_per_sec": 2813.5964233562268, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 192343.64516129033, "ser_median_ns": 187707.0, "ser_std_ns": 11061.978620133295, "ser_mad_ns": 5932.0, "ser_cv": 0.05751153676461336, "ser_min_ns": 175847.0, "ser_max_ns": 224076.0, "ser_p5_ns": 179047.2, "ser_p25_ns": 184092.0, "ser_p50_ns": 187707.0, "ser_p75_ns": 201217.0, "ser_p95_ns": 210277.0, "ser_p99_ns": 220700.52, "ser_ci_low_ns": 190037.32876344086, "ser_ci_high_ns": 194636.45241935484, "deser_mean_ns": 186857.7741935484, "deser_median_ns": 185562.0, "deser_std_ns": 7056.4351514262, "deser_mad_ns": 4253.0, "deser_cv": 0.03776366908939578, "deser_min_ns": 173943.0, "deser_max_ns": 203340.0, "deser_p5_ns": 177700.2, "deser_p25_ns": 181902.0, "deser_p50_ns": 185562.0, "deser_p75_ns": 190311.0, "deser_p95_ns": 200507.4, "deser_p99_ns": 202549.72, "deser_ci_low_ns": 185346.26021505377, "deser_ci_high_ns": 188409.1623655914, "total_mean_ns": 379201.4193548387, "total_median_ns": 378217.0, "total_std_ns": 13738.289259142939, "total_mad_ns": 10222.0, "total_cv": 0.03622953015976794, "total_min_ns": 355417.0, "total_max_ns": 412702.0, "total_p5_ns": 357962.0, "total_p25_ns": 368486.0, "total_p50_ns": 378217.0, "total_p75_ns": 388517.0, "total_p95_ns": 401712.0, "total_p99_ns": 411742.44, "total_ci_low_ns": 376602.2793010753, "total_ci_high_ns": 382107.57688172045, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 303389.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.384852169505027}, {"serializer": "msgspec-msgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 42923.194444444445, "avg_time_deser_ns": 71648.13888888889, "avg_time_total_ns": 114571.33333333333, "median_size_bytes": 13159.0, "avg_ops_per_sec": 8728.186806472824, "min_ops_per_sec": 7924.746606227266, "max_ops_per_sec": 9779.377249256768, "runs": 72, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 27, "ser_mean_ns": 42923.194444444445, "ser_median_ns": 43277.5, "ser_std_ns": 3043.605740781945, "ser_mad_ns": 1601.5, "ser_cv": 0.07090818333014073, "ser_min_ns": 34322.0, "ser_max_ns": 49484.0, "ser_p5_ns": 37396.75, "ser_p25_ns": 41182.75, "ser_p50_ns": 43277.5, "ser_p75_ns": 44723.25, "ser_p95_ns": 47679.3, "ser_p99_ns": 48723.590000000004, "ser_ci_low_ns": 42250.854166666664, "ser_ci_high_ns": 43559.663888888885, "deser_mean_ns": 71648.13888888889, "deser_median_ns": 71275.5, "deser_std_ns": 2467.2970973017573, "deser_mad_ns": 2042.5, "deser_cv": 0.03443630407662107, "deser_min_ns": 67619.0, "deser_max_ns": 77778.0, "deser_p5_ns": 68476.1, "deser_p25_ns": 69425.5, "deser_p50_ns": 71275.5, "deser_p75_ns": 73476.25, "deser_p95_ns": 75863.4, "deser_p99_ns": 77637.42, "deser_ci_low_ns": 71115.6923611111, "deser_ci_high_ns": 72240.76493055555, "total_mean_ns": 114571.33333333333, "total_median_ns": 114569.5, "total_std_ns": 5019.665568793922, "total_mad_ns": 3394.5, "total_cv": 0.04381257879045301, "total_min_ns": 102256.0, "total_max_ns": 126187.0, "total_p5_ns": 106982.2, "total_p25_ns": 111149.5, "total_p50_ns": 114569.5, "total_p75_ns": 117920.5, "total_p95_ns": 123361.35, "total_p99_ns": 126049.26, "total_ci_low_ns": 113307.3375, "total_ci_high_ns": 115730.26736111111, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 156211.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.631332681406053}, {"serializer": "msgspec", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 47950.41095890411, "avg_time_deser_ns": 83109.98630136986, "avg_time_total_ns": 131060.39726027397, "median_size_bytes": 19804.0, "avg_ops_per_sec": 7630.069959379807, "min_ops_per_sec": 6655.352567302253, "max_ops_per_sec": 8159.668391076587, "runs": 73, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 26, "ser_mean_ns": 47950.41095890411, "ser_median_ns": 47068.0, "ser_std_ns": 3130.0285889518664, "ser_mad_ns": 1479.0, "ser_cv": 0.06527636627837156, "ser_min_ns": 42783.0, "ser_max_ns": 58817.0, "ser_p5_ns": 44375.0, "ser_p25_ns": 46172.0, "ser_p50_ns": 47068.0, "ser_p75_ns": 48907.0, "ser_p95_ns": 54421.4, "ser_p99_ns": 58481.48, "ser_ci_low_ns": 47295.13904109589, "ser_ci_high_ns": 48673.66678082191, "deser_mean_ns": 83109.98630136986, "deser_median_ns": 82992.0, "deser_std_ns": 3420.9908712939305, "deser_mad_ns": 2417.0, "deser_cv": 0.04116221194994402, "deser_min_ns": 77309.0, "deser_max_ns": 91904.0, "deser_p5_ns": 78318.8, "deser_p25_ns": 80575.0, "deser_p50_ns": 82992.0, "deser_p75_ns": 85279.0, "deser_p95_ns": 89385.8, "deser_p99_ns": 91466.24, "deser_ci_low_ns": 82312.41198630136, "deser_ci_high_ns": 83857.84349315069, "total_mean_ns": 131060.39726027397, "total_median_ns": 129543.0, "total_std_ns": 6180.576833336041, "total_mad_ns": 3479.0, "total_cv": 0.047158233627676106, "total_min_ns": 122554.0, "total_max_ns": 150255.0, "total_p5_ns": 123008.4, "total_p25_ns": 126592.0, "total_p50_ns": 129543.0, "total_p75_ns": 133198.0, "total_p95_ns": 143598.0, "total_p99_ns": 150152.76, "total_ci_low_ns": 129724.01267123288, "total_ci_high_ns": 132463.09006849313, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 167549.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.102871465745553}, {"serializer": "json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 303477.7368421053, "avg_time_deser_ns": 300026.7684210526, "avg_time_total_ns": 603504.5052631579, "median_size_bytes": 45404.0, "avg_ops_per_sec": 1656.9884587091035, "min_ops_per_sec": 1530.8637439416068, "max_ops_per_sec": 1766.4598730975226, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 303477.7368421053, "ser_median_ns": 304530.0, "ser_std_ns": 15437.665253976747, "ser_mad_ns": 11898.0, "ser_cv": 0.05086918537951508, "ser_min_ns": 277580.0, "ser_max_ns": 351087.0, "ser_p5_ns": 281809.4, "ser_p25_ns": 290450.0, "ser_p50_ns": 304530.0, "ser_p75_ns": 314887.0, "ser_p95_ns": 326029.3, "ser_p99_ns": 349462.68, "ser_ci_low_ns": 300393.4797368421, "ser_ci_high_ns": 306586.00078947365, "deser_mean_ns": 300026.7684210526, "deser_median_ns": 298938.0, "deser_std_ns": 11259.064710648332, "deser_mad_ns": 8361.0, "deser_cv": 0.03752686725221646, "deser_min_ns": 279092.0, "deser_max_ns": 327873.0, "deser_p5_ns": 284854.5, "deser_p25_ns": 290453.0, "deser_p50_ns": 298938.0, "deser_p75_ns": 306705.5, "deser_p95_ns": 321775.4, "deser_p99_ns": 324369.62, "deser_ci_low_ns": 297812.07657894737, "deser_ci_high_ns": 302358.6005263158, "total_mean_ns": 603504.5052631579, "total_median_ns": 602052.0, "total_std_ns": 20681.744319657744, "total_mad_ns": 13065.0, "total_cv": 0.03426941164364544, "total_min_ns": 566104.0, "total_max_ns": 653226.0, "total_p5_ns": 573243.4, "total_p25_ns": 590771.0, "total_p50_ns": 602052.0, "total_p75_ns": 615469.5, "total_p95_ns": 639141.4, "total_p99_ns": 652575.52, "total_ci_low_ns": 599508.2128947368, "total_ci_high_ns": 607853.0310526316, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 359891.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 32.653668542184626}, {"serializer": "mashumaro", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "3.22", "avg_time_ser_ns": 160386.3033707865, "avg_time_deser_ns": 401818.6179775281, "avg_time_total_ns": 562204.9213483146, "median_size_bytes": 45404.0, "avg_ops_per_sec": 1778.7108615160075, "min_ops_per_sec": 1597.7427091005827, "max_ops_per_sec": 1909.067306076943, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 160386.3033707865, "ser_median_ns": 157953.0, "ser_std_ns": 11199.690165564742, "ser_mad_ns": 7723.0, "ser_cv": 0.0698294675429542, "ser_min_ns": 144092.0, "ser_max_ns": 186543.0, "ser_p5_ns": 146651.4, "ser_p25_ns": 150921.0, "ser_p50_ns": 157953.0, "ser_p75_ns": 170031.0, "ser_p95_ns": 179866.4, "ser_p99_ns": 182547.80000000002, "ser_ci_low_ns": 158022.6769662921, "ser_ci_high_ns": 162668.33174157303, "deser_mean_ns": 401818.6179775281, "deser_median_ns": 399307.0, "deser_std_ns": 15241.712862692435, "deser_mad_ns": 10190.0, "deser_cv": 0.03793182341676571, "deser_min_ns": 376165.0, "deser_max_ns": 445881.0, "deser_p5_ns": 381189.8, "deser_p25_ns": 391389.0, "deser_p50_ns": 399307.0, "deser_p75_ns": 409845.0, "deser_p95_ns": 426403.8, "deser_p99_ns": 445315.16, "deser_ci_low_ns": 398708.8901685393, "deser_ci_high_ns": 405045.2033707865, "total_mean_ns": 562204.9213483146, "total_median_ns": 558510.0, "total_std_ns": 20762.847135308737, "total_mad_ns": 13249.0, "total_cv": 0.03693110171557017, "total_min_ns": 523816.0, "total_max_ns": 625883.0, "total_p5_ns": 532103.6, "total_p25_ns": 548126.0, "total_p50_ns": 558510.0, "total_p75_ns": 574269.0, "total_p95_ns": 597311.7999999999, "total_p99_ns": 624302.52, "total_ci_low_ns": 557897.5550561798, "total_ci_high_ns": 566619.9289325842, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 881628.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.330245916439452}, {"serializer": "orjson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "3.11.9", "avg_time_ser_ns": 61627.1724137931, "avg_time_deser_ns": 133096.0804597701, "avg_time_total_ns": 194723.2528735632, "median_size_bytes": 45404.0, "avg_ops_per_sec": 5135.49350292189, "min_ops_per_sec": 4489.01537936669, "max_ops_per_sec": 5756.157649645708, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 61627.1724137931, "ser_median_ns": 59701.0, "ser_std_ns": 6389.063097248728, "ser_mad_ns": 3138.0, "ser_cv": 0.10367282558981658, "ser_min_ns": 53454.0, "ser_max_ns": 80273.0, "ser_p5_ns": 55025.3, "ser_p25_ns": 57480.0, "ser_p50_ns": 59701.0, "ser_p75_ns": 63687.5, "ser_p95_ns": 78209.8, "ser_p99_ns": 80180.98, "ser_ci_low_ns": 60324.505172413796, "ser_ci_high_ns": 63021.825, "deser_mean_ns": 133096.0804597701, "deser_median_ns": 130521.0, "deser_std_ns": 8299.31221753638, "deser_mad_ns": 4412.0, "deser_cv": 0.06235579732225809, "deser_min_ns": 119969.0, "deser_max_ns": 153979.0, "deser_p5_ns": 123422.3, "deser_p25_ns": 127354.5, "deser_p50_ns": 130521.0, "deser_p75_ns": 137765.5, "deser_p95_ns": 149961.9, "deser_p99_ns": 153402.8, "deser_ci_low_ns": 131362.75114942528, "deser_ci_high_ns": 134876.92672413794, "total_mean_ns": 194723.2528735632, "total_median_ns": 194063.0, "total_std_ns": 10848.066643971892, "total_mad_ns": 7749.0, "total_cv": 0.055710175769381316, "total_min_ns": 173727.0, "total_max_ns": 222766.0, "total_p5_ns": 179255.4, "total_p25_ns": 186538.5, "total_p50_ns": 194063.0, "total_p75_ns": 201638.5, "total_p95_ns": 212001.3, "total_p99_ns": 222187.22, "total_ci_low_ns": 192603.32672413794, "total_ci_high_ns": 197032.95287356322, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 884932.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.531792603513535}, {"serializer": "avro", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "1.12.2", "avg_time_ser_ns": 853646.15625, "avg_time_deser_ns": 512949.59375, "avg_time_total_ns": 1366595.75, "median_size_bytes": 11964.0, "avg_ops_per_sec": 731.7452875146143, "min_ops_per_sec": 693.3783751925858, "max_ops_per_sec": 773.9111457135383, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 853646.15625, "ser_median_ns": 852047.5, "ser_std_ns": 22303.80542528591, "ser_mad_ns": 16271.0, "ser_cv": 0.02612769384830919, "ser_min_ns": 803206.0, "ser_max_ns": 913611.0, "ser_p5_ns": 822395.0, "ser_p25_ns": 836641.25, "ser_p50_ns": 852047.5, "ser_p75_ns": 868445.0, "ser_p95_ns": 891110.0, "ser_p99_ns": 903825.0499999999, "ser_ci_low_ns": 849258.3791666667, "ser_ci_high_ns": 857991.5984375001, "deser_mean_ns": 512949.59375, "deser_median_ns": 509736.0, "deser_std_ns": 15123.081577911662, "deser_mad_ns": 8524.5, "deser_cv": 0.029482588079175493, "deser_min_ns": 485791.0, "deser_max_ns": 550567.0, "deser_p5_ns": 490099.0, "deser_p25_ns": 503726.0, "deser_p50_ns": 509736.0, "deser_p75_ns": 522838.5, "deser_p95_ns": 539392.0, "deser_p99_ns": 546314.7999999999, "deser_ci_low_ns": 510048.3401041667, "deser_ci_high_ns": 515984.7932291667, "total_mean_ns": 1366595.75, "total_median_ns": 1365272.0, "total_std_ns": 30321.306346319718, "total_mad_ns": 22219.5, "total_cv": 0.022187473030206423, "total_min_ns": 1292138.0, "total_max_ns": 1442214.0, "total_p5_ns": 1321353.0, "total_p25_ns": 1343605.0, "total_p50_ns": 1365272.0, "total_p75_ns": 1387614.75, "total_p95_ns": 1419639.0, "total_p99_ns": 1441759.9, "total_ci_low_ns": 1360651.9799479167, "total_ci_high_ns": 1372795.4078125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 282672.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 55.594977728254726}, {"serializer": "rapidjson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "1.23", "avg_time_ser_ns": 185714.65979381444, "avg_time_deser_ns": 305314.6391752577, "avg_time_total_ns": 491029.2989690722, "median_size_bytes": 45404.0, "avg_ops_per_sec": 2036.5383534129717, "min_ops_per_sec": 1845.0524917433902, "max_ops_per_sec": 2215.6098576913787, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 185714.65979381444, "ser_median_ns": 182065.0, "ser_std_ns": 13302.454926070504, "ser_mad_ns": 10098.0, "ser_cv": 0.07162845916870138, "ser_min_ns": 166155.0, "ser_max_ns": 217881.0, "ser_p5_ns": 169477.2, "ser_p25_ns": 174550.0, "ser_p50_ns": 182065.0, "ser_p75_ns": 196777.0, "ser_p95_ns": 208074.4, "ser_p99_ns": 216451.56, "ser_ci_low_ns": 183170.89716494846, "ser_ci_high_ns": 188360.5706185567, "deser_mean_ns": 305314.6391752577, "deser_median_ns": 302547.0, "deser_std_ns": 10852.86253635568, "deser_mad_ns": 6132.0, "deser_cv": 0.03554648596501095, "deser_min_ns": 284469.0, "deser_max_ns": 332515.0, "deser_p5_ns": 290152.6, "deser_p25_ns": 297983.0, "deser_p50_ns": 302547.0, "deser_p75_ns": 311842.0, "deser_p95_ns": 327522.0, "deser_p99_ns": 331306.36, "deser_ci_low_ns": 303244.0458762886, "deser_ci_high_ns": 307553.4489690722, "total_mean_ns": 491029.2989690722, "total_median_ns": 490175.0, "total_std_ns": 19375.74694483036, "total_mad_ns": 14199.0, "total_cv": 0.039459451779171234, "total_min_ns": 451343.0, "total_max_ns": 541990.0, "total_p5_ns": 461367.6, "total_p25_ns": 474670.0, "total_p50_ns": 490175.0, "total_p75_ns": 504309.0, "total_p95_ns": 525057.7999999999, "total_p99_ns": 536686.96, "total_ci_low_ns": 487164.0342783505, "total_ci_high_ns": 495211.62139175256, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 404338.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.06330795039264}, {"serializer": "cloudpickle", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "3.1.2", "avg_time_ser_ns": 14609.348314606741, "avg_time_deser_ns": 3713.5393258426966, "avg_time_total_ns": 18322.887640449437, "median_size_bytes": 423.0, "avg_ops_per_sec": 54576.55035729244, "min_ops_per_sec": 44545.41404962359, "max_ops_per_sec": 70576.61091114405, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 14609.348314606741, "ser_median_ns": 14547.0, "ser_std_ns": 1276.277444733169, "ser_mad_ns": 789.0, "ser_cv": 0.08736032691185269, "ser_min_ns": 11358.0, "ser_max_ns": 17932.0, "ser_p5_ns": 12768.6, "ser_p25_ns": 13763.0, "ser_p50_ns": 14547.0, "ser_p75_ns": 15372.0, "ser_p95_ns": 16656.8, "ser_p99_ns": 17114.480000000003, "ser_ci_low_ns": 14336.750842696629, "ser_ci_high_ns": 14886.568820224718, "deser_mean_ns": 3713.5393258426966, "deser_median_ns": 3651.0, "deser_std_ns": 621.0949835166441, "deser_mad_ns": 365.0, "deser_cv": 0.16725148948724325, "deser_min_ns": 2378.0, "deser_max_ns": 5431.0, "deser_p5_ns": 2796.6, "deser_p25_ns": 3292.0, "deser_p50_ns": 3651.0, "deser_p75_ns": 4016.0, "deser_p95_ns": 4861.4, "deser_p99_ns": 5067.560000000002, "deser_ci_low_ns": 3580.478370786517, "deser_ci_high_ns": 3841.3345505617976, "total_mean_ns": 18322.887640449437, "total_median_ns": 18194.0, "total_std_ns": 1731.256213892375, "total_mad_ns": 1048.0, "total_cv": 0.09448599193887265, "total_min_ns": 14169.0, "total_max_ns": 22449.0, "total_p5_ns": 15366.2, "total_p25_ns": 17157.0, "total_p50_ns": 18194.0, "total_p75_ns": 19316.0, "total_p95_ns": 21147.6, "total_p99_ns": 22026.600000000002, "total_ci_low_ns": 17982.566011235955, "total_ci_high_ns": 18689.11348314607, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 8722.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.442581930938934}, {"serializer": "orjson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "3.11.9", "avg_time_ser_ns": 1451.032258064516, "avg_time_deser_ns": 1681.3763440860216, "avg_time_total_ns": 3132.4086021505377, "median_size_bytes": 663.0, "avg_ops_per_sec": 319243.1534358115, "min_ops_per_sec": 221483.94241417496, "max_ops_per_sec": 452898.5507246377, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1451.032258064516, "ser_median_ns": 1441.0, "ser_std_ns": 196.23518784383853, "ser_mad_ns": 129.0, "ser_cv": 0.13523833584898393, "ser_min_ns": 1042.0, "ser_max_ns": 1995.0, "ser_p5_ns": 1154.2, "ser_p25_ns": 1312.0, "ser_p50_ns": 1441.0, "ser_p75_ns": 1562.0, "ser_p95_ns": 1785.1999999999998, "ser_p99_ns": 1878.1599999999999, "ser_ci_low_ns": 1413.2032258064517, "ser_ci_high_ns": 1491.2645161290322, "deser_mean_ns": 1681.3763440860216, "deser_median_ns": 1667.0, "deser_std_ns": 312.37511988196445, "deser_mad_ns": 210.0, "deser_cv": 0.18578536624515687, "deser_min_ns": 1107.0, "deser_max_ns": 2535.0, "deser_p5_ns": 1211.2, "deser_p25_ns": 1482.0, "deser_p50_ns": 1667.0, "deser_p75_ns": 1901.0, "deser_p95_ns": 2214.399999999999, "deser_p99_ns": 2521.2, "deser_ci_low_ns": 1619.9701612903227, "deser_ci_high_ns": 1743.153494623656, "total_mean_ns": 3132.4086021505377, "total_median_ns": 3108.0, "total_std_ns": 486.83592978938435, "total_mad_ns": 326.0, "total_cv": 0.1554190374318184, "total_min_ns": 2208.0, "total_max_ns": 4515.0, "total_p5_ns": 2378.6, "total_p25_ns": 2802.0, "total_p50_ns": 3108.0, "total_p75_ns": 3455.0, "total_p95_ns": 3966.599999999998, "total_p99_ns": 4398.16, "total_ci_low_ns": 3031.9099462365593, "total_ci_high_ns": 3231.972311827957, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 13791.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 0.38661350730941163, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.734171618037761}, {"serializer": "flatbuffers", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "25.12.19", "avg_time_ser_ns": 39082.06451612903, "avg_time_deser_ns": 10402.559139784946, "avg_time_total_ns": 49484.62365591398, "median_size_bytes": 352.0, "avg_ops_per_sec": 20208.297570441126, "min_ops_per_sec": 18117.583114412537, "max_ops_per_sec": 23259.059403637715, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 39082.06451612903, "ser_median_ns": 38998.0, "ser_std_ns": 2254.31164566757, "ser_mad_ns": 1508.0, "ser_cv": 0.05768148826265878, "ser_min_ns": 33576.0, "ser_max_ns": 45023.0, "ser_p5_ns": 35154.8, "ser_p25_ns": 37651.0, "ser_p50_ns": 38998.0, "ser_p75_ns": 40556.0, "ser_p95_ns": 42948.799999999996, "ser_p99_ns": 43462.68, "ser_ci_low_ns": 38621.214784946234, "ser_ci_high_ns": 39558.45403225806, "deser_mean_ns": 10402.559139784946, "deser_median_ns": 10366.0, "deser_std_ns": 541.373263147919, "deser_mad_ns": 314.0, "deser_cv": 0.052042315345021045, "deser_min_ns": 9098.0, "deser_max_ns": 11697.0, "deser_p5_ns": 9500.4, "deser_p25_ns": 10110.0, "deser_p50_ns": 10366.0, "deser_p75_ns": 10788.0, "deser_p95_ns": 11287.2, "deser_p99_ns": 11536.0, "deser_ci_low_ns": 10294.452688172043, "deser_ci_high_ns": 10516.745161290322, "total_mean_ns": 49484.62365591398, "total_median_ns": 49539.0, "total_std_ns": 2678.9089518016494, "total_mad_ns": 1728.0, "total_cv": 0.05413618926212626, "total_min_ns": 42994.0, "total_max_ns": 55195.0, "total_p5_ns": 44734.2, "total_p25_ns": 47901.0, "total_p50_ns": 49539.0, "total_p75_ns": 51275.0, "total_p95_ns": 53702.0, "total_p99_ns": 55037.68, "total_ci_low_ns": 48952.257258064514, "total_ci_high_ns": 50026.57930107527, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1487.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.13589570145152}, {"serializer": "msgspec-msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 1398.5842696629213, "avg_time_deser_ns": 1441.8651685393259, "avg_time_total_ns": 2840.449438202247, "median_size_bytes": 324.0, "avg_ops_per_sec": 352056.96202531643, "min_ops_per_sec": 277777.77777777775, "max_ops_per_sec": 463606.86138154846, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 1398.5842696629213, "ser_median_ns": 1383.0, "ser_std_ns": 185.0480164338658, "ser_mad_ns": 110.0, "ser_cv": 0.13231095218771838, "ser_min_ns": 1035.0, "ser_max_ns": 1882.0, "ser_p5_ns": 1146.8, "ser_p25_ns": 1274.0, "ser_p50_ns": 1383.0, "ser_p75_ns": 1509.0, "ser_p95_ns": 1775.1999999999996, "ser_p99_ns": 1853.8400000000001, "ser_ci_low_ns": 1361.4365168539325, "ser_ci_high_ns": 1440.691011235955, "deser_mean_ns": 1441.8651685393259, "deser_median_ns": 1432.0, "deser_std_ns": 120.17791649838054, "deser_mad_ns": 77.0, "deser_cv": 0.08334892826360885, "deser_min_ns": 1122.0, "deser_max_ns": 1727.0, "deser_p5_ns": 1263.8, "deser_p25_ns": 1359.0, "deser_p50_ns": 1432.0, "deser_p75_ns": 1509.0, "deser_p95_ns": 1640.6, "deser_p99_ns": 1719.08, "deser_ci_low_ns": 1417.7297752808988, "deser_ci_high_ns": 1466.0587078651686, "total_mean_ns": 2840.449438202247, "total_median_ns": 2808.0, "total_std_ns": 270.1805377569512, "total_mad_ns": 168.0, "total_cv": 0.09511893932107855, "total_min_ns": 2157.0, "total_max_ns": 3600.0, "total_p5_ns": 2430.4, "total_p25_ns": 2656.0, "total_p50_ns": 2808.0, "total_p75_ns": 3021.0, "total_p95_ns": 3281.3999999999996, "total_p99_ns": 3512.0000000000005, "total_ci_low_ns": 2783.356179775281, "total_ci_high_ns": 2895.33202247191, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 880.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "cbor2", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "6.1.3", "avg_time_ser_ns": 10320.238095238095, "avg_time_deser_ns": 4451.9047619047615, "avg_time_total_ns": 14772.142857142857, "median_size_bytes": 345.0, "avg_ops_per_sec": 67694.98573569943, "min_ops_per_sec": 57573.838447809314, "max_ops_per_sec": 81280.98837681866, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 10320.238095238095, "ser_median_ns": 10453.0, "ser_std_ns": 818.8431395609093, "ser_mad_ns": 459.5, "ser_cv": 0.0793434349095817, "ser_min_ns": 8402.0, "ser_max_ns": 12360.0, "ser_p5_ns": 8810.3, "ser_p25_ns": 9895.0, "ser_p50_ns": 10453.0, "ser_p75_ns": 10819.5, "ser_p95_ns": 11402.65, "ser_p99_ns": 12040.45, "ser_ci_low_ns": 10140.383035714285, "ser_ci_high_ns": 10493.293452380953, "deser_mean_ns": 4451.9047619047615, "deser_median_ns": 4501.5, "deser_std_ns": 321.78353193231345, "deser_mad_ns": 207.0, "deser_cv": 0.07227996759630531, "deser_min_ns": 3716.0, "deser_max_ns": 5013.0, "deser_p5_ns": 3939.45, "deser_p25_ns": 4209.25, "deser_p50_ns": 4501.5, "deser_p75_ns": 4661.5, "deser_p95_ns": 4948.5, "deser_p99_ns": 5009.68, "deser_ci_low_ns": 4384.198511904761, "deser_ci_high_ns": 4518.933333333333, "total_mean_ns": 14772.142857142857, "total_median_ns": 14960.5, "total_std_ns": 1114.56170155576, "total_mad_ns": 614.0, "total_cv": 0.07545023848837407, "total_min_ns": 12303.0, "total_max_ns": 17369.0, "total_p5_ns": 12834.45, "total_p25_ns": 14146.0, "total_p50_ns": 14960.5, "total_p75_ns": 15436.75, "total_p95_ns": 16250.5, "total_p99_ns": 16954.83, "total_ci_low_ns": 14532.177083333332, "total_ci_high_ns": 15000.862202380953, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1068.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.842980456700575}, {"serializer": "protobuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "7.35.1", "avg_time_ser_ns": 2097.2289156626507, "avg_time_deser_ns": 2182.3253012048194, "avg_time_total_ns": 4279.55421686747, "median_size_bytes": 291.0, "avg_ops_per_sec": 233669.19761375888, "min_ops_per_sec": 197823.93669634024, "max_ops_per_sec": 289687.1378910776, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 2097.2289156626507, "ser_median_ns": 2123.0, "ser_std_ns": 202.76198501771003, "ser_mad_ns": 119.0, "ser_cv": 0.09668090283489361, "ser_min_ns": 1642.0, "ser_max_ns": 2615.0, "ser_p5_ns": 1709.8, "ser_p25_ns": 1986.0, "ser_p50_ns": 2123.0, "ser_p75_ns": 2229.5, "ser_p95_ns": 2407.9, "ser_p99_ns": 2497.739999999999, "ser_ci_low_ns": 2054.4210843373494, "ser_ci_high_ns": 2139.4831325301207, "deser_mean_ns": 2182.3253012048194, "deser_median_ns": 2198.0, "deser_std_ns": 171.2249346750681, "deser_mad_ns": 117.0, "deser_cv": 0.07845985865651567, "deser_min_ns": 1787.0, "deser_max_ns": 2535.0, "deser_p5_ns": 1887.8, "deser_p25_ns": 2068.5, "deser_p50_ns": 2198.0, "deser_p75_ns": 2284.0, "deser_p95_ns": 2439.6, "deser_p99_ns": 2516.14, "deser_ci_low_ns": 2144.3328313253014, "deser_ci_high_ns": 2218.8084337349396, "total_mean_ns": 4279.55421686747, "total_median_ns": 4331.0, "total_std_ns": 352.33514577957357, "total_mad_ns": 244.0, "total_cv": 0.08232987080543971, "total_min_ns": 3452.0, "total_max_ns": 5055.0, "total_p5_ns": 3663.5, "total_p25_ns": 4094.5, "total_p50_ns": 4331.0, "total_p75_ns": 4580.0, "total_p95_ns": 4829.0, "total_p99_ns": 4918.879999999999, "total_ci_low_ns": 4202.4406626506025, "total_ci_high_ns": 4354.338253012048, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 428.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 0.9981047786652227, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.58455331744159}, {"serializer": "pickle", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 5416.311827956989, "avg_time_deser_ns": 3767.52688172043, "avg_time_total_ns": 9183.838709677419, "median_size_bytes": 423.0, "avg_ops_per_sec": 108886.92970470568, "min_ops_per_sec": 81786.21084485156, "max_ops_per_sec": 178030.97739006588, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 5416.311827956989, "ser_median_ns": 5335.0, "ser_std_ns": 787.6086809546352, "ser_mad_ns": 474.0, "ser_cv": 0.14541420545421552, "ser_min_ns": 3469.0, "ser_max_ns": 7086.0, "ser_p5_ns": 4195.6, "ser_p25_ns": 4943.0, "ser_p50_ns": 5335.0, "ser_p75_ns": 5977.0, "ser_p95_ns": 6775.0, "ser_p99_ns": 6953.5199999999995, "ser_ci_low_ns": 5253.477956989248, "ser_ci_high_ns": 5566.4693548387095, "deser_mean_ns": 3767.52688172043, "deser_median_ns": 3701.0, "deser_std_ns": 674.1534400138903, "deser_mad_ns": 445.0, "deser_cv": 0.17893792431443517, "deser_min_ns": 2148.0, "deser_max_ns": 5244.0, "deser_p5_ns": 2706.4, "deser_p25_ns": 3381.0, "deser_p50_ns": 3701.0, "deser_p75_ns": 4223.0, "deser_p95_ns": 4919.999999999998, "deser_p99_ns": 5149.24, "deser_ci_low_ns": 3632.058064516129, "deser_ci_high_ns": 3901.0793010752686, "total_mean_ns": 9183.838709677419, "total_median_ns": 9121.0, "total_std_ns": 1402.5678956697727, "total_mad_ns": 877.0, "total_cv": 0.15272131186187152, "total_min_ns": 5617.0, "total_max_ns": 12227.0, "total_p5_ns": 6965.6, "total_p25_ns": 8344.0, "total_p50_ns": 9121.0, "total_p75_ns": 10147.0, "total_p95_ns": 11596.199999999999, "total_p99_ns": 12063.24, "total_ci_low_ns": 8901.656451612904, "total_ci_high_ns": 9473.114247311827, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 4969.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.190848024372539}, {"serializer": "msgspec", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 2892.4157303370785, "avg_time_deser_ns": 2520.438202247191, "avg_time_total_ns": 5412.853932584269, "median_size_bytes": 633.0, "avg_ops_per_sec": 184745.42495599322, "min_ops_per_sec": 159184.9729385546, "max_ops_per_sec": 239348.97079942556, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 2892.4157303370785, "ser_median_ns": 2889.0, "ser_std_ns": 280.33558659824297, "ser_mad_ns": 191.0, "ser_cv": 0.09692091757693941, "ser_min_ns": 2173.0, "ser_max_ns": 3557.0, "ser_p5_ns": 2449.4, "ser_p25_ns": 2738.0, "ser_p50_ns": 2889.0, "ser_p75_ns": 3103.0, "ser_p95_ns": 3339.6, "ser_p99_ns": 3552.6, "ser_ci_low_ns": 2833.334269662921, "ser_ci_high_ns": 2949.487359550562, "deser_mean_ns": 2520.438202247191, "deser_median_ns": 2551.0, "deser_std_ns": 223.70993572522858, "deser_mad_ns": 162.0, "deser_cv": 0.08875834984796359, "deser_min_ns": 1966.0, "deser_max_ns": 3002.0, "deser_p5_ns": 2112.6, "deser_p25_ns": 2363.0, "deser_p50_ns": 2551.0, "deser_p75_ns": 2702.0, "deser_p95_ns": 2833.7999999999997, "deser_p99_ns": 2909.6000000000004, "deser_ci_low_ns": 2473.683426966292, "deser_ci_high_ns": 2566.003370786517, "total_mean_ns": 5412.853932584269, "total_median_ns": 5461.0, "total_std_ns": 473.7746047954996, "total_mad_ns": 331.0, "total_cv": 0.08752769069630233, "total_min_ns": 4178.0, "total_max_ns": 6282.0, "total_p5_ns": 4678.0, "total_p25_ns": 5108.0, "total_p50_ns": 5461.0, "total_p75_ns": 5760.0, "total_p95_ns": 6093.4, "total_p99_ns": 6245.04, "total_ci_low_ns": 5313.802808988764, "total_ci_high_ns": 5509.157584269663, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1433.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.641753592670747}, {"serializer": "avro", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "1.12.2", "avg_time_ser_ns": 11464.639534883721, "avg_time_deser_ns": 7528.1511627906975, "avg_time_total_ns": 18992.79069767442, "median_size_bytes": 288.0, "avg_ops_per_sec": 52651.556894292815, "min_ops_per_sec": 45199.7830410414, "max_ops_per_sec": 62845.6510809452, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 11464.639534883721, "ser_median_ns": 11529.5, "ser_std_ns": 905.89155191467, "ser_mad_ns": 567.0, "ser_cv": 0.0790161390733911, "ser_min_ns": 9365.0, "ser_max_ns": 14243.0, "ser_p5_ns": 9950.5, "ser_p25_ns": 10904.0, "ser_p50_ns": 11529.5, "ser_p75_ns": 11991.25, "ser_p95_ns": 12836.25, "ser_p99_ns": 13476.300000000005, "ser_ci_low_ns": 11273.597383720931, "ser_ci_high_ns": 11670.625, "deser_mean_ns": 7528.1511627906975, "deser_median_ns": 7547.5, "deser_std_ns": 484.84397775298595, "deser_mad_ns": 336.5, "deser_cv": 0.06440412357145782, "deser_min_ns": 6547.0, "deser_max_ns": 8627.0, "deser_p5_ns": 6754.75, "deser_p25_ns": 7209.75, "deser_p50_ns": 7547.5, "deser_p75_ns": 7879.25, "deser_p95_ns": 8374.25, "deser_p99_ns": 8552.2, "deser_ci_low_ns": 7425.65784883721, "deser_ci_high_ns": 7626.070348837209, "total_mean_ns": 18992.79069767442, "total_median_ns": 19064.5, "total_std_ns": 1312.0948146898447, "total_mad_ns": 814.5, "total_cv": 0.06908383478634894, "total_min_ns": 15912.0, "total_max_ns": 22124.0, "total_p5_ns": 16743.25, "total_p25_ns": 18173.0, "total_p50_ns": 19064.5, "total_p75_ns": 19775.75, "total_p95_ns": 20925.0, "total_p99_ns": 21575.750000000004, "total_ci_low_ns": 18710.42906976744, "total_ci_high_ns": 19269.262499999997, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 904.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.114541887120495}, {"serializer": "mashumaro", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "3.22", "avg_time_ser_ns": 2065.221052631579, "avg_time_deser_ns": 4313.4, "avg_time_total_ns": 6378.621052631579, "median_size_bytes": 663.0, "avg_ops_per_sec": 156773.6963442024, "min_ops_per_sec": 125533.51744915893, "max_ops_per_sec": 186497.5755315181, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 2065.221052631579, "ser_median_ns": 2069.0, "ser_std_ns": 237.06355997277456, "ser_mad_ns": 182.0, "ser_cv": 0.11478846764161137, "ser_min_ns": 1637.0, "ser_max_ns": 2656.0, "ser_p5_ns": 1707.1, "ser_p25_ns": 1867.5, "ser_p50_ns": 2069.0, "ser_p75_ns": 2222.0, "ser_p95_ns": 2467.8999999999996, "ser_p99_ns": 2571.4, "ser_ci_low_ns": 2018.452105263158, "ser_ci_high_ns": 2108.6918421052633, "deser_mean_ns": 4313.4, "deser_median_ns": 4242.0, "deser_std_ns": 414.10016261872084, "deser_mad_ns": 280.0, "deser_cv": 0.09600319066599919, "deser_min_ns": 3571.0, "deser_max_ns": 5454.0, "deser_p5_ns": 3714.7, "deser_p25_ns": 4028.0, "deser_p50_ns": 4242.0, "deser_p75_ns": 4607.0, "deser_p95_ns": 4983.0, "deser_p99_ns": 5384.4400000000005, "deser_ci_low_ns": 4226.251842105263, "deser_ci_high_ns": 4394.505526315789, "total_mean_ns": 6378.621052631579, "total_median_ns": 6361.0, "total_std_ns": 619.8496245049117, "total_mad_ns": 443.0, "total_cv": 0.09717611681120093, "total_min_ns": 5362.0, "total_max_ns": 7966.0, "total_p5_ns": 5452.6, "total_p25_ns": 5888.0, "total_p50_ns": 6361.0, "total_p75_ns": 6746.5, "total_p95_ns": 7456.4, "total_p99_ns": 7918.06, "total_ci_low_ns": 6259.378947368421, "total_ci_high_ns": 6501.718684210526, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 13791.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.288207581389009}, {"serializer": "rapidjson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "1.23", "avg_time_ser_ns": 14625.522727272728, "avg_time_deser_ns": 9691.818181818182, "avg_time_total_ns": 24317.340909090908, "median_size_bytes": 663.0, "avg_ops_per_sec": 41122.91733452465, "min_ops_per_sec": 36447.133432955496, "max_ops_per_sec": 46004.508441827296, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 14625.522727272728, "ser_median_ns": 14595.5, "ser_std_ns": 624.7557863525412, "ser_mad_ns": 358.5, "ser_cv": 0.042716817579965, "ser_min_ns": 13071.0, "ser_max_ns": 16169.0, "ser_p5_ns": 13563.7, "ser_p25_ns": 14264.0, "ser_p50_ns": 14595.5, "ser_p75_ns": 14991.25, "ser_p95_ns": 15715.75, "ser_p99_ns": 16153.34, "ser_ci_low_ns": 14493.416477272727, "ser_ci_high_ns": 14757.353977272727, "deser_mean_ns": 9691.818181818182, "deser_median_ns": 9676.5, "deser_std_ns": 587.6220645109444, "deser_mad_ns": 384.0, "deser_cv": 0.060630735480915375, "deser_min_ns": 8666.0, "deser_max_ns": 11286.0, "deser_p5_ns": 8817.6, "deser_p25_ns": 9293.0, "deser_p50_ns": 9676.5, "deser_p75_ns": 10054.5, "deser_p95_ns": 10680.65, "deser_p99_ns": 11245.98, "deser_ci_low_ns": 9577.657670454544, "deser_ci_high_ns": 9819.817897727273, "total_mean_ns": 24317.340909090908, "total_median_ns": 24195.0, "total_std_ns": 1121.8787084476332, "total_mad_ns": 604.0, "total_cv": 0.046134925386855305, "total_min_ns": 21737.0, "total_max_ns": 27437.0, "total_p5_ns": 22441.95, "total_p25_ns": 23638.75, "total_p50_ns": 24195.0, "total_p75_ns": 24892.25, "total_p95_ns": 26266.0, "total_p99_ns": 26813.209999999995, "total_ci_low_ns": 24085.548011363637, "total_ci_high_ns": 24560.290625, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 2708.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.27469496018134}, {"serializer": "serpyco-rs", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "1.21.0", "avg_time_ser_ns": 2456.8645833333335, "avg_time_deser_ns": 3130.4479166666665, "avg_time_total_ns": 5587.3125, "median_size_bytes": 663.0, "avg_ops_per_sec": 178976.92316296967, "min_ops_per_sec": 137988.13302056023, "max_ops_per_sec": 228675.96615595702, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 2456.8645833333335, "ser_median_ns": 2435.5, "ser_std_ns": 286.7981362264798, "ser_mad_ns": 167.0, "ser_cv": 0.11673339188982426, "ser_min_ns": 1738.0, "ser_max_ns": 3187.0, "ser_p5_ns": 2064.25, "ser_p25_ns": 2272.25, "ser_p50_ns": 2435.5, "ser_p75_ns": 2608.5, "ser_p95_ns": 2972.75, "ser_p99_ns": 3129.0499999999997, "ser_ci_low_ns": 2399.4432291666667, "ser_ci_high_ns": 2515.6369791666666, "deser_mean_ns": 3130.4479166666665, "deser_median_ns": 3062.5, "deser_std_ns": 383.1861130818442, "deser_mad_ns": 258.0, "deser_cv": 0.12240616144473816, "deser_min_ns": 2504.0, "deser_max_ns": 4236.0, "deser_p5_ns": 2601.75, "deser_p25_ns": 2852.25, "deser_p50_ns": 3062.5, "deser_p75_ns": 3403.5, "deser_p95_ns": 3796.0, "deser_p99_ns": 4076.3999999999996, "deser_ci_low_ns": 3057.5390625, "deser_ci_high_ns": 3208.5932291666663, "total_mean_ns": 5587.3125, "total_median_ns": 5534.5, "total_std_ns": 642.9523075134283, "total_mad_ns": 437.5, "total_cv": 0.11507362573928491, "total_min_ns": 4373.0, "total_max_ns": 7247.0, "total_p5_ns": 4679.5, "total_p25_ns": 5145.75, "total_p50_ns": 5534.5, "total_p75_ns": 5998.75, "total_p95_ns": 6739.5, "total_p99_ns": 7152.0, "total_ci_low_ns": 5460.993750000001, "total_ci_high_ns": 5715.786979166666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 13791.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.474435128774661}, {"serializer": "json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 18130.15053763441, "avg_time_deser_ns": 11001.150537634408, "avg_time_total_ns": 29131.301075268817, "median_size_bytes": 663.0, "avg_ops_per_sec": 34327.33736870255, "min_ops_per_sec": 29783.17846080534, "max_ops_per_sec": 41232.01253453181, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 18130.15053763441, "ser_median_ns": 18100.0, "ser_std_ns": 1007.8265890587717, "ser_mad_ns": 651.0, "ser_cv": 0.055588429173091196, "ser_min_ns": 15340.0, "ser_max_ns": 20901.0, "ser_p5_ns": 16734.4, "ser_p25_ns": 17484.0, "ser_p50_ns": 18100.0, "ser_p75_ns": 18759.0, "ser_p95_ns": 19847.6, "ser_p99_ns": 20172.359999999997, "ser_ci_low_ns": 17913.842204301076, "ser_ci_high_ns": 18340.6, "deser_mean_ns": 11001.150537634408, "deser_median_ns": 10921.0, "deser_std_ns": 1084.3666248516224, "deser_mad_ns": 662.0, "deser_cv": 0.09856847437384446, "deser_min_ns": 8816.0, "deser_max_ns": 13544.0, "deser_p5_ns": 9195.6, "deser_p25_ns": 10273.0, "deser_p50_ns": 10921.0, "deser_p75_ns": 11583.0, "deser_p95_ns": 12917.0, "deser_p99_ns": 13473.16, "deser_ci_low_ns": 10773.687903225808, "deser_ci_high_ns": 11209.305107526881, "total_mean_ns": 29131.301075268817, "total_median_ns": 29035.0, "total_std_ns": 1826.62533214137, "total_mad_ns": 1261.0, "total_cv": 0.06270318402263515, "total_min_ns": 24253.0, "total_max_ns": 33576.0, "total_p5_ns": 26646.2, "total_p25_ns": 27904.0, "total_p50_ns": 29035.0, "total_p75_ns": 30463.0, "total_p95_ns": 32057.399999999998, "total_p99_ns": 33236.52, "total_ci_low_ns": 28756.512634408602, "total_ci_high_ns": 29503.174731182797, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 3258.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.841949248782466}, {"serializer": "dill", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "0.4.1", "avg_time_ser_ns": 70789.67415730337, "avg_time_deser_ns": 8877.707865168539, "avg_time_total_ns": 79667.38202247191, "median_size_bytes": 423.0, "avg_ops_per_sec": 12552.188544590663, "min_ops_per_sec": 11177.180667948316, "max_ops_per_sec": 14724.070911125507, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 70789.67415730337, "ser_median_ns": 71246.0, "ser_std_ns": 3667.051759728667, "ser_mad_ns": 2330.0, "ser_cv": 0.0518020714656777, "ser_min_ns": 60875.0, "ser_max_ns": 79471.0, "ser_p5_ns": 65110.0, "ser_p25_ns": 67933.0, "ser_p50_ns": 71246.0, "ser_p75_ns": 73056.0, "ser_p95_ns": 77337.2, "ser_p99_ns": 78636.76000000001, "ser_ci_low_ns": 70002.26741573034, "ser_ci_high_ns": 71551.50421348315, "deser_mean_ns": 8877.707865168539, "deser_median_ns": 8834.0, "deser_std_ns": 727.3871234245213, "deser_mad_ns": 547.0, "deser_cv": 0.08193411345268593, "deser_min_ns": 7041.0, "deser_max_ns": 10570.0, "deser_p5_ns": 7859.0, "deser_p25_ns": 8339.0, "deser_p50_ns": 8834.0, "deser_p75_ns": 9389.0, "deser_p95_ns": 10172.0, "deser_p99_ns": 10397.52, "deser_ci_low_ns": 8735.115449438203, "deser_ci_high_ns": 9029.490449438203, "total_mean_ns": 79667.38202247191, "total_median_ns": 80074.0, "total_std_ns": 4140.938300855413, "total_mad_ns": 3095.0, "total_cv": 0.05197783830385404, "total_min_ns": 67916.0, "total_max_ns": 89468.0, "total_p5_ns": 73566.6, "total_p25_ns": 76671.0, "total_p50_ns": 80074.0, "total_p75_ns": 82357.0, "total_p95_ns": 86129.0, "total_p99_ns": 88406.72, "total_ci_low_ns": 78844.36207865168, "total_ci_high_ns": 80537.60393258427, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 11066.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.07053829416822}, {"serializer": "pydantic", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "2.13.4", "avg_time_ser_ns": 6935.544444444445, "avg_time_deser_ns": 15809.91111111111, "avg_time_total_ns": 22745.455555555556, "median_size_bytes": 663.0, "avg_ops_per_sec": 43964.826185059675, "min_ops_per_sec": 36170.28972402069, "max_ops_per_sec": 54451.40212360468, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 6935.544444444445, "ser_median_ns": 7042.5, "ser_std_ns": 623.6738408817943, "ser_mad_ns": 428.5, "ser_cv": 0.08992428004428313, "ser_min_ns": 5076.0, "ser_max_ns": 7925.0, "ser_p5_ns": 5936.75, "ser_p25_ns": 6527.0, "ser_p50_ns": 7042.5, "ser_p75_ns": 7416.25, "ser_p95_ns": 7755.0, "ser_p99_ns": 7856.47, "ser_ci_low_ns": 6803.858888888889, "ser_ci_high_ns": 7057.879166666667, "deser_mean_ns": 15809.91111111111, "deser_median_ns": 15766.5, "deser_std_ns": 1705.9886365286975, "deser_mad_ns": 1170.0, "deser_cv": 0.10790627629333975, "deser_min_ns": 12155.0, "deser_max_ns": 20366.0, "deser_p5_ns": 13416.0, "deser_p25_ns": 14554.75, "deser_p50_ns": 15766.5, "deser_p75_ns": 16919.5, "deser_p95_ns": 18853.25, "deser_p99_ns": 20319.72, "deser_ci_low_ns": 15463.687777777777, "deser_ci_high_ns": 16152.375277777777, "total_mean_ns": 22745.455555555556, "total_median_ns": 22639.5, "total_std_ns": 2051.433508993826, "total_mad_ns": 1518.5, "total_cv": 0.09019091765312061, "total_min_ns": 18365.0, "total_max_ns": 27647.0, "total_p5_ns": 19451.6, "total_p25_ns": 21219.5, "total_p50_ns": 22639.5, "total_p75_ns": 24224.0, "total_p95_ns": 25922.0, "total_p99_ns": 27384.45, "total_ci_low_ns": 22327.565, "total_ci_high_ns": 23153.809444444443, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 3258.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.510053228724201}, {"serializer": "msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "1.2.1", "avg_time_ser_ns": 2521.609195402299, "avg_time_deser_ns": 2492.712643678161, "avg_time_total_ns": 5014.3218390804595, "median_size_bytes": 346.0, "avg_ops_per_sec": 199428.7626706033, "min_ops_per_sec": 166444.74034620507, "max_ops_per_sec": 252589.0376357666, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 2521.609195402299, "ser_median_ns": 2541.0, "ser_std_ns": 236.57598004249294, "ser_mad_ns": 152.0, "ser_cv": 0.09381944691264876, "ser_min_ns": 1913.0, "ser_max_ns": 3127.0, "ser_p5_ns": 2145.4, "ser_p25_ns": 2373.0, "ser_p50_ns": 2541.0, "ser_p75_ns": 2667.5, "ser_p95_ns": 2870.9, "ser_p99_ns": 3085.7200000000003, "ser_ci_low_ns": 2470.2077586206897, "ser_ci_high_ns": 2570.9836206896553, "deser_mean_ns": 2492.712643678161, "deser_median_ns": 2527.0, "deser_std_ns": 222.14791364303414, "deser_mad_ns": 135.0, "deser_cv": 0.08911894205151555, "deser_min_ns": 1971.0, "deser_max_ns": 3055.0, "deser_p5_ns": 2090.0, "deser_p25_ns": 2349.0, "deser_p50_ns": 2527.0, "deser_p75_ns": 2643.5, "deser_p95_ns": 2796.3, "deser_p99_ns": 2946.64, "deser_ci_low_ns": 2445.5727011494255, "deser_ci_high_ns": 2537.414655172414, "total_mean_ns": 5014.3218390804595, "total_median_ns": 5073.0, "total_std_ns": 438.3182313791763, "total_mad_ns": 280.0, "total_cv": 0.08741326253991634, "total_min_ns": 3959.0, "total_max_ns": 6008.0, "total_p5_ns": 4267.8, "total_p25_ns": 4763.0, "total_p50_ns": 5073.0, "total_p75_ns": 5314.5, "total_p95_ns": 5691.0, "total_p99_ns": 5952.1, "total_ci_low_ns": 4921.134482758621, "total_ci_high_ns": 5112.3787356321845, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 872.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.960369249112366}, {"serializer": "cloudpickle", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "3.1.2", "avg_time_ser_ns": 13884.0, "avg_time_deser_ns": 4494.966292134832, "avg_time_total_ns": 18378.96629213483, "median_size_bytes": 423.0, "avg_ops_per_sec": 54410.02416049612, "min_ops_per_sec": 43756.016452262185, "max_ops_per_sec": 74716.07890017932, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 13884.0, "ser_median_ns": 13894.0, "ser_std_ns": 1451.1702096145466, "ser_mad_ns": 876.0, "ser_cv": 0.10452104650061557, "ser_min_ns": 10229.0, "ser_max_ns": 17198.0, "ser_p5_ns": 11310.8, "ser_p25_ns": 13048.0, "ser_p50_ns": 13894.0, "ser_p75_ns": 14845.0, "ser_p95_ns": 15982.6, "ser_p99_ns": 16692.88, "ser_ci_low_ns": 13577.401404494381, "ser_ci_high_ns": 14182.577247191011, "deser_mean_ns": 4494.966292134832, "deser_median_ns": 4545.0, "deser_std_ns": 825.2215880025277, "deser_mad_ns": 676.0, "deser_cv": 0.18358793689876557, "deser_min_ns": 3064.0, "deser_max_ns": 6287.0, "deser_p5_ns": 3201.8, "deser_p25_ns": 3869.0, "deser_p50_ns": 4545.0, "deser_p75_ns": 5221.0, "deser_p95_ns": 5746.999999999999, "deser_p99_ns": 6260.6, "deser_ci_low_ns": 4325.30308988764, "deser_ci_high_ns": 4666.701404494382, "total_mean_ns": 18378.96629213483, "total_median_ns": 18474.0, "total_std_ns": 2082.1937701804177, "total_mad_ns": 1455.0, "total_cv": 0.11329221334235104, "total_min_ns": 13384.0, "total_max_ns": 22854.0, "total_p5_ns": 14941.0, "total_p25_ns": 16791.0, "total_p50_ns": 18474.0, "total_p75_ns": 19878.0, "total_p95_ns": 21556.6, "total_p99_ns": 22491.440000000002, "total_ci_low_ns": 17946.944101123598, "total_ci_high_ns": 18806.59691011236, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 8722.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.475770926132848}, {"serializer": "pickle", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 5969.214285714285, "avg_time_deser_ns": 4454.84693877551, "avg_time_total_ns": 10424.061224489797, "median_size_bytes": 423.0, "avg_ops_per_sec": 95931.90009769391, "min_ops_per_sec": 68913.23823306458, "max_ops_per_sec": 142897.97084881394, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 5969.214285714285, "ser_median_ns": 6053.0, "ser_std_ns": 1019.0734952199442, "ser_mad_ns": 687.0, "ser_cv": 0.17072154666298772, "ser_min_ns": 3856.0, "ser_max_ns": 8547.0, "ser_p5_ns": 4232.0, "ser_p25_ns": 5314.75, "ser_p50_ns": 6053.0, "ser_p75_ns": 6699.5, "ser_p95_ns": 7499.549999999997, "ser_p99_ns": 8339.42, "ser_ci_low_ns": 5774.822704081633, "ser_ci_high_ns": 6171.856887755102, "deser_mean_ns": 4454.84693877551, "deser_median_ns": 4502.5, "deser_std_ns": 812.5194538770604, "deser_mad_ns": 601.5, "deser_cv": 0.1823899822022606, "deser_min_ns": 2965.0, "deser_max_ns": 6683.0, "deser_p5_ns": 3156.5, "deser_p25_ns": 3844.75, "deser_p50_ns": 4502.5, "deser_p75_ns": 5009.25, "deser_p95_ns": 5849.099999999999, "deser_p99_ns": 6116.52, "deser_ci_low_ns": 4301.956632653061, "deser_ci_high_ns": 4610.824234693878, "total_mean_ns": 10424.061224489797, "total_median_ns": 10644.5, "total_std_ns": 1737.9401827126112, "total_mad_ns": 1312.0, "total_cv": 0.1667239039837541, "total_min_ns": 6998.0, "total_max_ns": 14511.0, "total_p5_ns": 7390.65, "total_p25_ns": 9171.75, "total_p50_ns": 10644.5, "total_p75_ns": 11642.0, "total_p95_ns": 13051.0, "total_p99_ns": 14352.89, "total_ci_low_ns": 10089.807397959183, "total_ci_high_ns": 10772.780357142856, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 4969.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.928635415461943}, {"serializer": "msgspec", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 2979.277777777778, "avg_time_deser_ns": 3335.5555555555557, "avg_time_total_ns": 6314.833333333333, "median_size_bytes": 633.0, "avg_ops_per_sec": 158357.30687006784, "min_ops_per_sec": 135098.62199405566, "max_ops_per_sec": 198728.1399046105, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 2979.277777777778, "ser_median_ns": 3005.0, "ser_std_ns": 272.3751555177543, "ser_mad_ns": 182.5, "ser_cv": 0.09142321590466701, "ser_min_ns": 2287.0, "ser_max_ns": 3539.0, "ser_p5_ns": 2538.8, "ser_p25_ns": 2823.0, "ser_p50_ns": 3005.0, "ser_p75_ns": 3185.75, "ser_p95_ns": 3385.5, "ser_p99_ns": 3490.05, "ser_ci_low_ns": 2919.173888888889, "ser_ci_high_ns": 3032.8380555555555, "deser_mean_ns": 3335.5555555555557, "deser_median_ns": 3345.0, "deser_std_ns": 289.25468390295816, "deser_mad_ns": 184.0, "deser_cv": 0.08671859277570364, "deser_min_ns": 2662.0, "deser_max_ns": 4082.0, "deser_p5_ns": 2833.45, "deser_p25_ns": 3176.75, "deser_p50_ns": 3345.0, "deser_p75_ns": 3537.5, "deser_p95_ns": 3769.9, "deser_p99_ns": 3984.1, "deser_ci_low_ns": 3276.0030555555554, "deser_ci_high_ns": 3396.967222222222, "total_mean_ns": 6314.833333333333, "total_median_ns": 6373.5, "total_std_ns": 530.9321302824798, "total_mad_ns": 344.0, "total_cv": 0.08407698228232148, "total_min_ns": 5032.0, "total_max_ns": 7402.0, "total_p5_ns": 5375.9, "total_p25_ns": 6033.25, "total_p50_ns": 6373.5, "total_p75_ns": 6712.75, "total_p95_ns": 7058.3, "total_p99_ns": 7364.62, "total_ci_low_ns": 6209.374722222222, "total_ci_high_ns": 6428.463333333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1433.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.9950877192982456, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.033025973785729}, {"serializer": "cbor2", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "6.1.3", "avg_time_ser_ns": 11514.795180722891, "avg_time_deser_ns": 4884.939759036145, "avg_time_total_ns": 16399.734939759037, "median_size_bytes": 345.0, "avg_ops_per_sec": 60976.59527262415, "min_ops_per_sec": 50836.25641807737, "max_ops_per_sec": 75694.49701006737, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 11514.795180722891, "ser_median_ns": 11503.0, "ser_std_ns": 941.56786420487, "ser_mad_ns": 554.0, "ser_cv": 0.08177026594282497, "ser_min_ns": 9088.0, "ser_max_ns": 14136.0, "ser_p5_ns": 9655.2, "ser_p25_ns": 11084.5, "ser_p50_ns": 11503.0, "ser_p75_ns": 12119.5, "ser_p95_ns": 12960.999999999998, "ser_p99_ns": 13598.079999999994, "ser_ci_low_ns": 11300.34608433735, "ser_ci_high_ns": 11718.800903614458, "deser_mean_ns": 4884.939759036145, "deser_median_ns": 4928.0, "deser_std_ns": 357.2518872741148, "deser_mad_ns": 230.0, "deser_cv": 0.07313332505549766, "deser_min_ns": 3975.0, "deser_max_ns": 5796.0, "deser_p5_ns": 4238.1, "deser_p25_ns": 4643.5, "deser_p50_ns": 4928.0, "deser_p75_ns": 5098.0, "deser_p95_ns": 5410.2, "deser_p99_ns": 5581.979999999998, "deser_ci_low_ns": 4809.974397590361, "deser_ci_high_ns": 4961.112048192771, "total_mean_ns": 16399.734939759037, "total_median_ns": 16405.0, "total_std_ns": 1265.470211311015, "total_mad_ns": 676.0, "total_cv": 0.07716406490467392, "total_min_ns": 13211.0, "total_max_ns": 19671.0, "total_p5_ns": 13975.4, "total_p25_ns": 15871.0, "total_p50_ns": 16405.0, "total_p75_ns": 17203.0, "total_p95_ns": 18225.7, "total_p99_ns": 19347.1, "total_ci_low_ns": 16116.768674698795, "total_ci_high_ns": 16672.005722891565, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1068.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.597148999185265}, {"serializer": "orjson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "3.11.9", "avg_time_ser_ns": 1814.8947368421052, "avg_time_deser_ns": 2065.8105263157895, "avg_time_total_ns": 3880.705263157895, "median_size_bytes": 663.0, "avg_ops_per_sec": 257685.11963370736, "min_ops_per_sec": 180505.41516245488, "max_ops_per_sec": 378071.8336483932, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1814.8947368421052, "ser_median_ns": 1806.0, "ser_std_ns": 291.2099656964724, "ser_mad_ns": 199.0, "ser_cv": 0.16045556790978094, "ser_min_ns": 1296.0, "ser_max_ns": 2564.0, "ser_p5_ns": 1364.2, "ser_p25_ns": 1607.0, "ser_p50_ns": 1806.0, "ser_p75_ns": 1993.0, "ser_p95_ns": 2318.2, "ser_p99_ns": 2476.5800000000004, "ser_ci_low_ns": 1755.776052631579, "ser_ci_high_ns": 1873.2631578947367, "deser_mean_ns": 2065.8105263157895, "deser_median_ns": 2053.0, "deser_std_ns": 403.8403754259697, "deser_mad_ns": 282.0, "deser_cv": 0.19548761625597252, "deser_min_ns": 1322.0, "deser_max_ns": 3069.0, "deser_p5_ns": 1471.9, "deser_p25_ns": 1746.0, "deser_p50_ns": 2053.0, "deser_p75_ns": 2285.5, "deser_p95_ns": 2789.0, "deser_p99_ns": 2954.32, "deser_ci_low_ns": 1989.7744736842105, "deser_ci_high_ns": 2145.6136842105266, "total_mean_ns": 3880.705263157895, "total_median_ns": 3879.0, "total_std_ns": 660.6531241914469, "total_mad_ns": 476.0, "total_cv": 0.17024047934365552, "total_min_ns": 2645.0, "total_max_ns": 5540.0, "total_p5_ns": 2866.1, "total_p25_ns": 3393.0, "total_p50_ns": 3879.0, "total_p75_ns": 4340.0, "total_p95_ns": 4981.9, "total_p99_ns": 5399.0, "total_ci_low_ns": 3754.8207894736843, "total_ci_high_ns": 4014.3381578947365, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 13791.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "flatbuffers", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "25.12.19", "avg_time_ser_ns": 39977.3085106383, "avg_time_deser_ns": 11008.489361702128, "avg_time_total_ns": 50985.79787234042, "median_size_bytes": 352.0, "avg_ops_per_sec": 19613.304914906425, "min_ops_per_sec": 17519.885069553944, "max_ops_per_sec": 21976.0900140647, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 39977.3085106383, "ser_median_ns": 39909.0, "ser_std_ns": 1827.0244922265294, "ser_mad_ns": 1109.5, "ser_cv": 0.04570153820486296, "ser_min_ns": 35789.0, "ser_max_ns": 44781.0, "ser_p5_ns": 37288.75, "ser_p25_ns": 38736.25, "ser_p50_ns": 39909.0, "ser_p75_ns": 40954.25, "ser_p95_ns": 43305.1, "ser_p99_ns": 44609.88, "ser_ci_low_ns": 39601.77180851064, "ser_ci_high_ns": 40334.92473404256, "deser_mean_ns": 11008.489361702128, "deser_median_ns": 11005.5, "deser_std_ns": 547.0204679522769, "deser_mad_ns": 356.5, "deser_cv": 0.049690784082994, "deser_min_ns": 9635.0, "deser_max_ns": 12417.0, "deser_p5_ns": 10205.55, "deser_p25_ns": 10648.5, "deser_p50_ns": 11005.5, "deser_p75_ns": 11353.5, "deser_p95_ns": 12018.749999999998, "deser_p99_ns": 12322.14, "deser_ci_low_ns": 10903.738297872342, "deser_ci_high_ns": 11119.099734042553, "total_mean_ns": 50985.79787234042, "total_median_ns": 50967.5, "total_std_ns": 2277.555634530696, "total_mad_ns": 1407.5, "total_cv": 0.04467039312071372, "total_min_ns": 45504.0, "total_max_ns": 57078.0, "total_p5_ns": 47801.4, "total_p25_ns": 49472.0, "total_p50_ns": 50967.5, "total_p75_ns": 52222.75, "total_p95_ns": 54605.74999999999, "total_p99_ns": 56853.869999999995, "total_ci_low_ns": 50530.155851063835, "total_ci_high_ns": 51447.423404255314, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1487.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.04183662459186}, {"serializer": "avro", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "1.12.2", "avg_time_ser_ns": 11672.166666666666, "avg_time_deser_ns": 7888.6, "avg_time_total_ns": 19560.766666666666, "median_size_bytes": 288.0, "avg_ops_per_sec": 51122.74058787744, "min_ops_per_sec": 43218.94718644654, "max_ops_per_sec": 63516.260162601626, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 11672.166666666666, "ser_median_ns": 11647.0, "ser_std_ns": 1017.3710143791577, "ser_mad_ns": 668.5, "ser_cv": 0.08716213908121809, "ser_min_ns": 8954.0, "ser_max_ns": 14180.0, "ser_p5_ns": 9823.1, "ser_p25_ns": 11000.0, "ser_p50_ns": 11647.0, "ser_p75_ns": 12337.25, "ser_p95_ns": 13341.6, "ser_p99_ns": 14061.63, "ser_ci_low_ns": 11462.050555555556, "ser_ci_high_ns": 11883.0175, "deser_mean_ns": 7888.6, "deser_median_ns": 7933.0, "deser_std_ns": 532.1066210636504, "deser_mad_ns": 379.5, "deser_cv": 0.06745260515980661, "deser_min_ns": 6543.0, "deser_max_ns": 9136.0, "deser_p5_ns": 6978.75, "deser_p25_ns": 7490.25, "deser_p50_ns": 7933.0, "deser_p75_ns": 8261.0, "deser_p95_ns": 8713.449999999999, "deser_p99_ns": 9095.95, "deser_ci_low_ns": 7778.476388888889, "deser_ci_high_ns": 7995.536944444445, "total_mean_ns": 19560.766666666666, "total_median_ns": 19638.0, "total_std_ns": 1494.9647325891647, "total_mad_ns": 992.5, "total_cv": 0.07642669421218143, "total_min_ns": 15744.0, "total_max_ns": 23138.0, "total_p5_ns": 16870.8, "total_p25_ns": 18773.25, "total_p50_ns": 19638.0, "total_p75_ns": 20669.5, "total_p95_ns": 21770.45, "total_p99_ns": 22827.39, "total_ci_low_ns": 19246.25, "total_ci_high_ns": 19861.812222222223, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 904.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.637671171760276}, {"serializer": "dill", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "0.4.1", "avg_time_ser_ns": 71734.05434782608, "avg_time_deser_ns": 8582.967391304348, "avg_time_total_ns": 80317.02173913043, "median_size_bytes": 423.0, "avg_ops_per_sec": 12450.66087295914, "min_ops_per_sec": 11394.842694196606, "max_ops_per_sec": 13899.120185692245, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 71734.05434782608, "ser_median_ns": 71443.0, "ser_std_ns": 2952.350690790215, "ser_mad_ns": 2082.0, "ser_cv": 0.04115689148803405, "ser_min_ns": 64623.0, "ser_max_ns": 78448.0, "ser_p5_ns": 67409.6, "ser_p25_ns": 69541.5, "ser_p50_ns": 71443.0, "ser_p75_ns": 73770.25, "ser_p95_ns": 76181.55, "ser_p99_ns": 77851.95, "ser_ci_low_ns": 71162.22092391305, "ser_ci_high_ns": 72335.39266304349, "deser_mean_ns": 8582.967391304348, "deser_median_ns": 8512.0, "deser_std_ns": 760.9604176083973, "deser_mad_ns": 477.5, "deser_cv": 0.08865936253927147, "deser_min_ns": 6647.0, "deser_max_ns": 10482.0, "deser_p5_ns": 7428.7, "deser_p25_ns": 8093.25, "deser_p50_ns": 8512.0, "deser_p75_ns": 9036.0, "deser_p95_ns": 9763.9, "deser_p99_ns": 10460.16, "deser_ci_low_ns": 8432.470380434783, "deser_ci_high_ns": 8741.24402173913, "total_mean_ns": 80317.02173913043, "total_median_ns": 80112.0, "total_std_ns": 3475.8605827522783, "total_mad_ns": 2306.0, "total_cv": 0.04327676135753475, "total_min_ns": 71947.0, "total_max_ns": 87759.0, "total_p5_ns": 74771.05, "total_p25_ns": 78078.25, "total_p50_ns": 80112.0, "total_p75_ns": 82934.0, "total_p95_ns": 85794.2, "total_p99_ns": 87616.13, "total_ci_low_ns": 79627.86385869565, "total_ci_high_ns": 81034.00190217391, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 11066.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.6605655388109}, {"serializer": "serpyco-rs", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "1.21.0", "avg_time_ser_ns": 2902.2083333333335, "avg_time_deser_ns": 3635.6145833333335, "avg_time_total_ns": 6537.822916666667, "median_size_bytes": 663.0, "avg_ops_per_sec": 152956.1159343627, "min_ops_per_sec": 120394.89525644113, "max_ops_per_sec": 201979.39810139366, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 2902.2083333333335, "ser_median_ns": 2872.5, "ser_std_ns": 320.1546967085777, "ser_mad_ns": 200.5, "ser_cv": 0.11031416767412552, "ser_min_ns": 2240.0, "ser_max_ns": 3722.0, "ser_p5_ns": 2413.75, "ser_p25_ns": 2700.25, "ser_p50_ns": 2872.5, "ser_p75_ns": 3134.5, "ser_p95_ns": 3406.25, "ser_p99_ns": 3700.15, "ser_ci_low_ns": 2837.6861979166665, "ser_ci_high_ns": 2963.9690104166666, "deser_mean_ns": 3635.6145833333335, "deser_median_ns": 3604.5, "deser_std_ns": 429.126514771372, "deser_mad_ns": 362.5, "deser_cv": 0.11803410535830917, "deser_min_ns": 2711.0, "deser_max_ns": 4611.0, "deser_p5_ns": 2962.75, "deser_p25_ns": 3341.0, "deser_p50_ns": 3604.5, "deser_p75_ns": 4001.0, "deser_p95_ns": 4188.5, "deser_p99_ns": 4585.35, "deser_ci_low_ns": 3550.31796875, "deser_ci_high_ns": 3716.85546875, "total_mean_ns": 6537.822916666667, "total_median_ns": 6481.5, "total_std_ns": 708.692094001956, "total_mad_ns": 495.5, "total_cv": 0.10839879009192945, "total_min_ns": 4951.0, "total_max_ns": 8306.0, "total_p5_ns": 5393.5, "total_p25_ns": 6087.5, "total_p50_ns": 6481.5, "total_p75_ns": 7044.5, "total_p95_ns": 7734.5, "total_p99_ns": 8023.849999999999, "total_ci_low_ns": 6396.706770833333, "total_ci_high_ns": 6673.79375, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 13791.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.9958333333333333, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.8623456459834205}, {"serializer": "rapidjson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "1.23", "avg_time_ser_ns": 15118.33695652174, "avg_time_deser_ns": 10236.304347826086, "avg_time_total_ns": 25354.641304347828, "median_size_bytes": 663.0, "avg_ops_per_sec": 39440.51063457638, "min_ops_per_sec": 36128.47284945266, "max_ops_per_sec": 44607.01222232135, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 15118.33695652174, "ser_median_ns": 15056.5, "ser_std_ns": 730.9889925235778, "ser_mad_ns": 507.5, "ser_cv": 0.0483511509649376, "ser_min_ns": 13375.0, "ser_max_ns": 16800.0, "ser_p5_ns": 13980.35, "ser_p25_ns": 14585.25, "ser_p50_ns": 15056.5, "ser_p75_ns": 15592.25, "ser_p95_ns": 16418.65, "ser_p99_ns": 16670.78, "ser_ci_low_ns": 14974.678532608696, "ser_ci_high_ns": 15261.416847826085, "deser_mean_ns": 10236.304347826086, "deser_median_ns": 10199.0, "deser_std_ns": 546.4055922020563, "deser_mad_ns": 337.0, "deser_cv": 0.05337918585022318, "deser_min_ns": 8883.0, "deser_max_ns": 11668.0, "deser_p5_ns": 9373.15, "deser_p25_ns": 9953.75, "deser_p50_ns": 10199.0, "deser_p75_ns": 10580.25, "deser_p95_ns": 11126.7, "deser_p99_ns": 11465.070000000002, "deser_ci_low_ns": 10123.847282608695, "deser_ci_high_ns": 10346.200271739131, "total_mean_ns": 25354.641304347828, "total_median_ns": 25247.5, "total_std_ns": 1179.3017917723184, "total_mad_ns": 783.0, "total_cv": 0.046512264859771106, "total_min_ns": 22418.0, "total_max_ns": 27679.0, "total_p5_ns": 23500.65, "total_p25_ns": 24541.25, "total_p50_ns": 25247.5, "total_p75_ns": 26254.75, "total_p95_ns": 27275.4, "total_p99_ns": 27670.81, "total_ci_low_ns": 25111.409510869566, "total_ci_high_ns": 25574.93152173913, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 2708.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.47046489605384}, {"serializer": "msgspec-msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 1777.4468085106382, "avg_time_deser_ns": 2190.468085106383, "avg_time_total_ns": 3967.9148936170213, "median_size_bytes": 324.0, "avg_ops_per_sec": 252021.5344357935, "min_ops_per_sec": 190512.47856734617, "max_ops_per_sec": 345781.4661134163, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 1777.4468085106382, "ser_median_ns": 1766.0, "ser_std_ns": 273.8100988979809, "ser_mad_ns": 174.5, "ser_cv": 0.15404685956673572, "ser_min_ns": 1155.0, "ser_max_ns": 2494.0, "ser_p5_ns": 1324.9, "ser_p25_ns": 1590.25, "ser_p50_ns": 1766.0, "ser_p75_ns": 1921.25, "ser_p95_ns": 2261.5, "ser_p99_ns": 2393.5599999999995, "ser_ci_low_ns": 1724.701329787234, "ser_ci_high_ns": 1833.0648936170212, "deser_mean_ns": 2190.468085106383, "deser_median_ns": 2189.5, "deser_std_ns": 229.78076049839004, "deser_mad_ns": 152.0, "deser_cv": 0.10490030056166302, "deser_min_ns": 1675.0, "deser_max_ns": 2794.0, "deser_p5_ns": 1850.95, "deser_p25_ns": 2024.0, "deser_p50_ns": 2189.5, "deser_p75_ns": 2330.75, "deser_p95_ns": 2570.449999999999, "deser_p99_ns": 2788.42, "deser_ci_low_ns": 2145.369414893617, "deser_ci_high_ns": 2237.7675531914892, "total_mean_ns": 3967.9148936170213, "total_median_ns": 3996.0, "total_std_ns": 471.1859815806924, "total_mad_ns": 297.5, "total_cv": 0.11874901408260162, "total_min_ns": 2892.0, "total_max_ns": 5249.0, "total_p5_ns": 3204.75, "total_p25_ns": 3676.5, "total_p50_ns": 3996.0, "total_p75_ns": 4223.25, "total_p95_ns": 4783.599999999999, "total_p99_ns": 5083.459999999999, "total_ci_low_ns": 3872.3396276595745, "total_ci_high_ns": 4065.3002659574468, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 880.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.09440089585666293, "effect_vs_fastest_cliffs_label": "negligible", "effect_vs_fastest_hedges_g": 0.15124570221798694}, {"serializer": "protobuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "7.35.1", "avg_time_ser_ns": 2335.595238095238, "avg_time_deser_ns": 2454.809523809524, "avg_time_total_ns": 4790.4047619047615, "median_size_bytes": 291.0, "avg_ops_per_sec": 208750.62749444577, "min_ops_per_sec": 167168.17118020728, "max_ops_per_sec": 278318.95352073474, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 2335.595238095238, "ser_median_ns": 2391.5, "ser_std_ns": 271.30701584094896, "ser_mad_ns": 147.0, "ser_cv": 0.11616182950527404, "ser_min_ns": 1648.0, "ser_max_ns": 3042.0, "ser_p5_ns": 1862.0, "ser_p25_ns": 2174.5, "ser_p50_ns": 2391.5, "ser_p75_ns": 2513.25, "ser_p95_ns": 2725.9, "ser_p99_ns": 2827.8600000000006, "ser_ci_low_ns": 2277.2702380952383, "ser_ci_high_ns": 2392.669345238095, "deser_mean_ns": 2454.809523809524, "deser_median_ns": 2453.0, "deser_std_ns": 227.51716345638715, "deser_mad_ns": 108.0, "deser_cv": 0.09268220660286183, "deser_min_ns": 1945.0, "deser_max_ns": 3057.0, "deser_p5_ns": 2070.7, "deser_p25_ns": 2343.25, "deser_p50_ns": 2453.0, "deser_p75_ns": 2559.5, "deser_p95_ns": 2810.65, "deser_p99_ns": 3024.63, "deser_ci_low_ns": 2406.675, "deser_ci_high_ns": 2502.5797619047617, "total_mean_ns": 4790.4047619047615, "total_median_ns": 4851.5, "total_std_ns": 479.00061923766145, "total_mad_ns": 241.5, "total_cv": 0.09999167983608992, "total_min_ns": 3593.0, "total_max_ns": 5982.0, "total_p5_ns": 3881.55, "total_p25_ns": 4521.0, "total_p50_ns": 4851.5, "total_p75_ns": 5078.25, "total_p95_ns": 5587.299999999999, "total_p99_ns": 5826.79, "total_ci_low_ns": 4687.66875, "total_ci_high_ns": 4886.205952380952, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 428.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.7275689223057644, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.5549088162167861}, {"serializer": "pydantic", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "2.13.4", "avg_time_ser_ns": 7337.6875, "avg_time_deser_ns": 16517.625, "avg_time_total_ns": 23855.3125, "median_size_bytes": 663.0, "avg_ops_per_sec": 41919.38378505836, "min_ops_per_sec": 34302.96377607025, "max_ops_per_sec": 50410.84841457882, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 7337.6875, "ser_median_ns": 7317.0, "ser_std_ns": 626.6574295570007, "ser_mad_ns": 325.5, "ser_cv": 0.08540257806795407, "ser_min_ns": 5632.0, "ser_max_ns": 9206.0, "ser_p5_ns": 6399.8, "ser_p25_ns": 6986.5, "ser_p50_ns": 7317.0, "ser_p75_ns": 7640.75, "ser_p95_ns": 8260.0, "ser_p99_ns": 9006.13, "ser_ci_low_ns": 7193.0371875, "ser_ci_high_ns": 7467.7275, "deser_mean_ns": 16517.625, "deser_median_ns": 16507.5, "deser_std_ns": 1499.2407983772944, "deser_mad_ns": 941.5, "deser_cv": 0.09076612396620545, "deser_min_ns": 13202.0, "deser_max_ns": 20482.0, "deser_p5_ns": 14169.75, "deser_p25_ns": 15567.5, "deser_p50_ns": 16507.5, "deser_p75_ns": 17432.25, "deser_p95_ns": 18990.05, "deser_p99_ns": 19507.929999999993, "deser_ci_low_ns": 16202.1596875, "deser_ci_high_ns": 16846.738749999997, "total_mean_ns": 23855.3125, "total_median_ns": 23743.5, "total_std_ns": 1897.2542024469287, "total_mad_ns": 1105.0, "total_cv": 0.07953172705018761, "total_min_ns": 19837.0, "total_max_ns": 29152.0, "total_p5_ns": 20441.75, "total_p25_ns": 22630.0, "total_p50_ns": 23743.5, "total_p75_ns": 24840.0, "total_p95_ns": 27039.6, "total_p99_ns": 28390.439999999995, "total_ci_low_ns": 23436.874062500003, "total_ci_high_ns": 24282.56625, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 3258.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.501304191856699}, {"serializer": "msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "1.2.1", "avg_time_ser_ns": 2756.2441860465115, "avg_time_deser_ns": 3439.5, "avg_time_total_ns": 6195.7441860465115, "median_size_bytes": 346.0, "avg_ops_per_sec": 161401.11179091423, "min_ops_per_sec": 142247.5106685633, "max_ops_per_sec": 187546.8867216804, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 2756.2441860465115, "ser_median_ns": 2772.5, "ser_std_ns": 181.62695679988835, "ser_mad_ns": 110.5, "ser_cv": 0.06589654056029395, "ser_min_ns": 2258.0, "ser_max_ns": 3284.0, "ser_p5_ns": 2444.75, "ser_p25_ns": 2655.5, "ser_p50_ns": 2772.5, "ser_p75_ns": 2880.0, "ser_p95_ns": 3010.75, "ser_p99_ns": 3233.8500000000004, "ser_ci_low_ns": 2718.5674418604654, "ser_ci_high_ns": 2794.818604651163, "deser_mean_ns": 3439.5, "deser_median_ns": 3448.5, "deser_std_ns": 209.04312811418774, "deser_mad_ns": 133.5, "deser_cv": 0.06077718508916637, "deser_min_ns": 2847.0, "deser_max_ns": 3921.0, "deser_p5_ns": 3068.25, "deser_p25_ns": 3312.5, "deser_p50_ns": 3448.5, "deser_p75_ns": 3565.75, "deser_p95_ns": 3749.75, "deser_p99_ns": 3829.2000000000007, "deser_ci_low_ns": 3396.693023255814, "deser_ci_high_ns": 3484.546802325581, "total_mean_ns": 6195.7441860465115, "total_median_ns": 6214.5, "total_std_ns": 342.29410079110113, "total_mad_ns": 207.0, "total_cv": 0.05524664842715498, "total_min_ns": 5332.0, "total_max_ns": 7030.0, "total_p5_ns": 5577.75, "total_p25_ns": 6002.5, "total_p50_ns": 6214.5, "total_p75_ns": 6402.0, "total_p95_ns": 6666.0, "total_p99_ns": 6945.85, "total_ci_low_ns": 6122.5848837209305, "total_ci_high_ns": 6268.274127906976, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 872.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.9987760097919217, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.319475877904838}, {"serializer": "json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 18757.043010752688, "avg_time_deser_ns": 11660.645161290322, "avg_time_total_ns": 30417.68817204301, "median_size_bytes": 663.0, "avg_ops_per_sec": 32875.60824294014, "min_ops_per_sec": 29195.37545252832, "max_ops_per_sec": 39094.569764259744, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 18757.043010752688, "ser_median_ns": 18642.0, "ser_std_ns": 1191.4310806207372, "ser_mad_ns": 728.0, "ser_cv": 0.06351913145039631, "ser_min_ns": 15995.0, "ser_max_ns": 21551.0, "ser_p5_ns": 17135.2, "ser_p25_ns": 17952.0, "ser_p50_ns": 18642.0, "ser_p75_ns": 19416.0, "ser_p95_ns": 21009.0, "ser_p99_ns": 21490.28, "ser_ci_low_ns": 18517.009139784946, "ser_ci_high_ns": 19011.301075268817, "deser_mean_ns": 11660.645161290322, "deser_median_ns": 11502.0, "deser_std_ns": 1062.625610428381, "deser_mad_ns": 680.0, "deser_cv": 0.09112922962067005, "deser_min_ns": 9178.0, "deser_max_ns": 14196.0, "deser_p5_ns": 10126.6, "deser_p25_ns": 10993.0, "deser_p50_ns": 11502.0, "deser_p75_ns": 12424.0, "deser_p95_ns": 13619.399999999998, "deser_p99_ns": 14126.08, "deser_ci_low_ns": 11455.607258064516, "deser_ci_high_ns": 11877.696236559139, "total_mean_ns": 30417.68817204301, "total_median_ns": 30368.0, "total_std_ns": 1936.9254322165516, "total_mad_ns": 1182.0, "total_cv": 0.06367760170533886, "total_min_ns": 25579.0, "total_max_ns": 34252.0, "total_p5_ns": 27515.6, "total_p25_ns": 29285.0, "total_p50_ns": 30368.0, "total_p75_ns": 31858.0, "total_p95_ns": 33790.4, "total_p99_ns": 34109.4, "total_ci_low_ns": 30018.720967741934, "total_ci_high_ns": 30807.652150537633, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 3258.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.34234593946415}, {"serializer": "mashumaro", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "3.22", "avg_time_ser_ns": 2401.082474226804, "avg_time_deser_ns": 4608.412371134021, "avg_time_total_ns": 7009.494845360825, "median_size_bytes": 663.0, "avg_ops_per_sec": 142663.63298089043, "min_ops_per_sec": 115393.49180706208, "max_ops_per_sec": 181884.32157148054, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 2401.082474226804, "ser_median_ns": 2368.0, "ser_std_ns": 295.49018843352667, "ser_mad_ns": 208.0, "ser_cv": 0.1230654055432562, "ser_min_ns": 1796.0, "ser_max_ns": 3098.0, "ser_p5_ns": 1991.8, "ser_p25_ns": 2190.0, "ser_p50_ns": 2368.0, "ser_p75_ns": 2577.0, "ser_p95_ns": 2877.7999999999993, "ser_p99_ns": 3010.6399999999994, "ser_ci_low_ns": 2344.0569587628866, "ser_ci_high_ns": 2459.1659793814433, "deser_mean_ns": 4608.412371134021, "deser_median_ns": 4569.0, "deser_std_ns": 431.01166729609633, "deser_mad_ns": 303.0, "deser_cv": 0.09352714830726717, "deser_min_ns": 3632.0, "deser_max_ns": 5760.0, "deser_p5_ns": 3958.0, "deser_p25_ns": 4266.0, "deser_p50_ns": 4569.0, "deser_p75_ns": 4862.0, "deser_p95_ns": 5290.199999999999, "deser_p99_ns": 5686.079999999999, "deser_ci_low_ns": 4523.880927835052, "deser_ci_high_ns": 4694.26443298969, "total_mean_ns": 7009.494845360825, "total_median_ns": 6956.0, "total_std_ns": 695.7007277395356, "total_mad_ns": 496.0, "total_cv": 0.09925119328677148, "total_min_ns": 5498.0, "total_max_ns": 8666.0, "total_p5_ns": 6084.0, "total_p25_ns": 6475.0, "total_p50_ns": 6956.0, "total_p75_ns": 7452.0, "total_p95_ns": 8187.599999999999, "total_p99_ns": 8630.48, "total_ci_low_ns": 6877.138917525773, "total_ci_high_ns": 7150.879639175258, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 13791.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.9997829625610418, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.592513214063513}, {"serializer": "cloudpickle", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "3.1.2", "avg_time_ser_ns": 207400.05208333334, "avg_time_deser_ns": 83647.13541666667, "avg_time_total_ns": 291047.1875, "median_size_bytes": 35109.0, "avg_ops_per_sec": 3435.868968842037, "min_ops_per_sec": 2881.8859061369762, "max_ops_per_sec": 3904.999179950172, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 207400.05208333334, "ser_median_ns": 207848.5, "ser_std_ns": 16370.725429298158, "ser_mad_ns": 13262.5, "ser_cv": 0.07893308253712684, "ser_min_ns": 179277.0, "ser_max_ns": 252629.0, "ser_p5_ns": 183162.5, "ser_p25_ns": 192333.5, "ser_p50_ns": 207848.5, "ser_p75_ns": 219036.0, "ser_p95_ns": 233284.75, "ser_p99_ns": 251052.0, "ser_ci_low_ns": 204148.69270833334, "ser_ci_high_ns": 210611.96744791666, "deser_mean_ns": 83647.13541666667, "deser_median_ns": 82959.0, "deser_std_ns": 5118.86182172271, "deser_mad_ns": 4126.5, "deser_cv": 0.06119590104579694, "deser_min_ns": 74522.0, "deser_max_ns": 94366.0, "deser_p5_ns": 75481.75, "deser_p25_ns": 79480.25, "deser_p50_ns": 82959.0, "deser_p75_ns": 87203.75, "deser_p95_ns": 93135.25, "deser_p99_ns": 94033.5, "deser_ci_low_ns": 82631.38307291667, "deser_ci_high_ns": 84671.30416666667, "total_mean_ns": 291047.1875, "total_median_ns": 291130.0, "total_std_ns": 20424.139166714365, "total_mad_ns": 16830.5, "total_cv": 0.07017466597822515, "total_min_ns": 256082.0, "total_max_ns": 346995.0, "total_p5_ns": 260122.0, "total_p25_ns": 273554.0, "total_p50_ns": 291130.0, "total_p75_ns": 305420.75, "total_p95_ns": 320603.5, "total_p99_ns": 344972.45, "total_ci_low_ns": 287089.3606770834, "total_ci_high_ns": 295018.5182291667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 204900.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.84474385372094}, {"serializer": "pickle", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 124434.15555555555, "avg_time_deser_ns": 84147.66666666667, "avg_time_total_ns": 208581.82222222222, "median_size_bytes": 35109.0, "avg_ops_per_sec": 4794.281636558933, "min_ops_per_sec": 4028.619311589532, "max_ops_per_sec": 5706.589970097469, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 124434.15555555555, "ser_median_ns": 123177.5, "ser_std_ns": 13594.26458450431, "ser_mad_ns": 10963.5, "ser_cv": 0.1092486586485086, "ser_min_ns": 99132.0, "ser_max_ns": 157660.0, "ser_p5_ns": 104959.45, "ser_p25_ns": 113223.5, "ser_p50_ns": 123177.5, "ser_p75_ns": 134626.5, "ser_p95_ns": 147391.15, "ser_p99_ns": 155896.02, "ser_ci_low_ns": 121611.43305555556, "ser_ci_high_ns": 127120.40666666666, "deser_mean_ns": 84147.66666666667, "deser_median_ns": 83240.0, "deser_std_ns": 6846.85982317458, "deser_mad_ns": 4917.0, "deser_cv": 0.08136719762292374, "deser_min_ns": 74291.0, "deser_max_ns": 104550.0, "deser_p5_ns": 75211.95, "deser_p25_ns": 78328.0, "deser_p50_ns": 83240.0, "deser_p75_ns": 87942.5, "deser_p95_ns": 97240.6, "deser_p99_ns": 102138.99, "deser_ci_low_ns": 82705.73555555556, "deser_ci_high_ns": 85611.65999999999, "total_mean_ns": 208581.82222222222, "total_median_ns": 208861.5, "total_std_ns": 14880.165580341405, "total_mad_ns": 8875.0, "total_cv": 0.0713397045907871, "total_min_ns": 175236.0, "total_max_ns": 248224.0, "total_p5_ns": 184839.05, "total_p25_ns": 200104.25, "total_p50_ns": 208861.5, "total_p75_ns": 217783.0, "total_p95_ns": 237404.65, "total_p99_ns": 240777.37, "total_ci_low_ns": 205560.42861111113, "total_ci_high_ns": 211482.44972222223, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 204900.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.55999295443148}, {"serializer": "mashumaro", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "3.22", "avg_time_ser_ns": 88954.1313131313, "avg_time_deser_ns": 199546.11111111112, "avg_time_total_ns": 288500.24242424243, "median_size_bytes": 65958.0, "avg_ops_per_sec": 3466.2015934443834, "min_ops_per_sec": 3078.7703391265527, "max_ops_per_sec": 3903.520585215806, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 88954.1313131313, "ser_median_ns": 84444.0, "ser_std_ns": 10958.878644078604, "ser_mad_ns": 5552.0, "ser_cv": 0.12319696097645852, "ser_min_ns": 74731.0, "ser_max_ns": 111578.0, "ser_p5_ns": 77796.2, "ser_p25_ns": 79904.5, "ser_p50_ns": 84444.0, "ser_p75_ns": 99504.5, "ser_p95_ns": 106673.1, "ser_p99_ns": 110635.23999999999, "ser_ci_low_ns": 86890.97752525251, "ser_ci_high_ns": 91189.10353535353, "deser_mean_ns": 199546.11111111112, "deser_median_ns": 196978.0, "deser_std_ns": 12473.909293359358, "deser_mad_ns": 6942.0, "deser_cv": 0.06251141264493822, "deser_min_ns": 175606.0, "deser_max_ns": 227960.0, "deser_p5_ns": 183207.3, "deser_p25_ns": 191522.5, "deser_p50_ns": 196978.0, "deser_p75_ns": 206429.5, "deser_p95_ns": 223487.6, "deser_p99_ns": 227801.24, "deser_ci_low_ns": 197293.1606060606, "deser_ci_high_ns": 201940.02474747476, "total_mean_ns": 288500.24242424243, "total_median_ns": 290086.0, "total_std_ns": 14840.97075672125, "total_mad_ns": 12495.0, "total_cv": 0.05144179648520869, "total_min_ns": 256179.0, "total_max_ns": 324805.0, "total_p5_ns": 266419.1, "total_p25_ns": 275249.5, "total_p50_ns": 290086.0, "total_p75_ns": 301116.0, "total_p95_ns": 308264.2, "total_p99_ns": 317581.42, "total_ci_low_ns": 285528.44520202023, "total_ci_high_ns": 291377.83005050506, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1062097.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.5609960469684}, {"serializer": "orjson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "3.11.9", "avg_time_ser_ns": 83717.48351648351, "avg_time_deser_ns": 106300.92307692308, "avg_time_total_ns": 190018.4065934066, "median_size_bytes": 65958.0, "avg_ops_per_sec": 5262.648066193703, "min_ops_per_sec": 4630.551452372463, "max_ops_per_sec": 6122.349022873096, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 83717.48351648351, "ser_median_ns": 77652.0, "ser_std_ns": 11864.449328760491, "ser_mad_ns": 5025.0, "ser_cv": 0.14172009036110655, "ser_min_ns": 68093.0, "ser_max_ns": 110110.0, "ser_p5_ns": 71691.5, "ser_p25_ns": 74029.0, "ser_p50_ns": 77652.0, "ser_p75_ns": 96798.0, "ser_p95_ns": 102916.5, "ser_p99_ns": 107328.99999999999, "ser_ci_low_ns": 81251.42417582417, "ser_ci_high_ns": 86142.30631868131, "deser_mean_ns": 106300.92307692308, "deser_median_ns": 104614.0, "deser_std_ns": 8194.426668617543, "deser_mad_ns": 5030.0, "deser_cv": 0.07708706972081295, "deser_min_ns": 94893.0, "deser_max_ns": 127613.0, "deser_p5_ns": 95766.5, "deser_p25_ns": 100730.5, "deser_p50_ns": 104614.0, "deser_p75_ns": 110385.5, "deser_p95_ns": 124484.5, "deser_p99_ns": 126772.4, "deser_ci_low_ns": 104582.67774725275, "deser_ci_high_ns": 108084.89835164834, "total_mean_ns": 190018.4065934066, "total_median_ns": 191745.0, "total_std_ns": 12951.72614491385, "total_mad_ns": 9192.0, "total_cv": 0.06816037655040129, "total_min_ns": 163336.0, "total_max_ns": 215957.0, "total_p5_ns": 169683.5, "total_p25_ns": 178953.5, "total_p50_ns": 191745.0, "total_p75_ns": 198911.5, "total_p95_ns": 211945.5, "total_p99_ns": 215011.1, "total_ci_low_ns": 187532.98104395604, "total_ci_high_ns": 192589.86703296704, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1077617.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.155235883593548}, {"serializer": "msgspec-msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 34239.05319148936, "avg_time_deser_ns": 47085.734042553195, "avg_time_total_ns": 81324.78723404255, "median_size_bytes": 32435.0, "avg_ops_per_sec": 12296.374008604846, "min_ops_per_sec": 9080.2604218689, "max_ops_per_sec": 16009.22131147541, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 34239.05319148936, "ser_median_ns": 27995.0, "ser_std_ns": 11178.663891314995, "ser_mad_ns": 3494.5, "ser_cv": 0.32648869782689033, "ser_min_ns": 19313.0, "ser_max_ns": 59249.0, "ser_p5_ns": 23602.05, "ser_p25_ns": 25521.0, "ser_p50_ns": 27995.0, "ser_p75_ns": 48279.25, "ser_p95_ns": 52381.05, "ser_p99_ns": 56692.42999999998, "ser_ci_low_ns": 32000.576595744682, "ser_ci_high_ns": 36457.647074468085, "deser_mean_ns": 47085.734042553195, "deser_median_ns": 46833.0, "deser_std_ns": 1691.758938161743, "deser_mad_ns": 994.0, "deser_cv": 0.035929331305164215, "deser_min_ns": 43151.0, "deser_max_ns": 51601.0, "deser_p5_ns": 44579.3, "deser_p25_ns": 45929.0, "deser_p50_ns": 46833.0, "deser_p75_ns": 48142.5, "deser_p95_ns": 50295.0, "deser_p99_ns": 51565.659999999996, "deser_ci_low_ns": 46767.61489361702, "deser_ci_high_ns": 47414.58989361702, "total_mean_ns": 81324.78723404255, "total_median_ns": 76098.0, "total_std_ns": 11343.18544407875, "total_mad_ns": 5121.0, "total_cv": 0.13948005066935476, "total_min_ns": 62464.0, "total_max_ns": 110129.0, "total_p5_ns": 69747.95, "total_p25_ns": 71944.25, "total_p50_ns": 76098.0, "total_p75_ns": 94258.75, "total_p95_ns": 99305.1, "total_p99_ns": 105157.21999999996, "total_ci_low_ns": 79005.7539893617, "total_ci_high_ns": 83539.78856382979, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 185247.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.9995108828564441, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.3477345253759965}, {"serializer": "msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "1.2.1", "avg_time_ser_ns": 100790.12222222223, "avg_time_deser_ns": 68881.45555555556, "avg_time_total_ns": 169671.57777777777, "median_size_bytes": 34635.0, "avg_ops_per_sec": 5893.739028641084, "min_ops_per_sec": 5043.118664582177, "max_ops_per_sec": 6924.584351824282, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 100790.12222222223, "ser_median_ns": 98010.0, "ser_std_ns": 11979.31800391101, "ser_mad_ns": 9979.0, "ser_cv": 0.11885408748189619, "ser_min_ns": 79837.0, "ser_max_ns": 125170.0, "ser_p5_ns": 86868.35, "ser_p25_ns": 89288.25, "ser_p50_ns": 98010.0, "ser_p75_ns": 113450.0, "ser_p95_ns": 119168.59999999999, "ser_p99_ns": 122750.98, "ser_ci_low_ns": 98329.59749999999, "ser_ci_high_ns": 103229.6613888889, "deser_mean_ns": 68881.45555555556, "deser_median_ns": 68522.0, "deser_std_ns": 3945.2515995048725, "deser_mad_ns": 2327.0, "deser_cv": 0.057275961544147026, "deser_min_ns": 61232.0, "deser_max_ns": 80620.0, "deser_p5_ns": 63927.75, "deser_p25_ns": 66221.25, "deser_p50_ns": 68522.0, "deser_p75_ns": 70854.5, "deser_p95_ns": 75992.3, "deser_p99_ns": 80253.32, "deser_ci_low_ns": 68077.30583333333, "deser_ci_high_ns": 69693.12194444444, "total_mean_ns": 169671.57777777777, "total_median_ns": 168837.5, "total_std_ns": 12458.17625928313, "total_mad_ns": 11544.0, "total_cv": 0.07342523964502676, "total_min_ns": 144413.0, "total_max_ns": 198290.0, "total_p5_ns": 152890.05, "total_p25_ns": 158575.75, "total_p50_ns": 168837.5, "total_p75_ns": 180727.5, "total_p95_ns": 189701.5, "total_p99_ns": 193051.46, "total_ci_low_ns": 167049.5063888889, "total_ci_high_ns": 172123.82666666666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 186603.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.70787048570453}, {"serializer": "rapidjson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "1.23", "avg_time_ser_ns": 1028973.9278350516, "avg_time_deser_ns": 599229.0721649484, "avg_time_total_ns": 1628203.0, "median_size_bytes": 65958.0, "avg_ops_per_sec": 614.1740311251116, "min_ops_per_sec": 580.600398872474, "max_ops_per_sec": 657.7765967033553, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 1028973.9278350516, "ser_median_ns": 1027605.0, "ser_std_ns": 35301.832019931884, "ser_mad_ns": 22829.0, "ser_cv": 0.03430780029014584, "ser_min_ns": 939526.0, "ser_max_ns": 1113339.0, "ser_p5_ns": 972265.8, "ser_p25_ns": 1005698.0, "ser_p50_ns": 1027605.0, "ser_p75_ns": 1050434.0, "ser_p95_ns": 1084891.7999999998, "ser_p99_ns": 1105141.5599999998, "ser_ci_low_ns": 1021900.2079896908, "ser_ci_high_ns": 1036128.3525773195, "deser_mean_ns": 599229.0721649484, "deser_median_ns": 595558.0, "deser_std_ns": 15792.147115106121, "deser_mad_ns": 11355.0, "deser_cv": 0.026354107049664392, "deser_min_ns": 563736.0, "deser_max_ns": 634319.0, "deser_p5_ns": 573837.2, "deser_p25_ns": 588873.0, "deser_p50_ns": 595558.0, "deser_p75_ns": 611938.0, "deser_p95_ns": 625281.6, "deser_p99_ns": 634064.6, "deser_ci_low_ns": 596233.3353092783, "deser_ci_high_ns": 602328.3427835052, "total_mean_ns": 1628203.0, "total_median_ns": 1627730.0, "total_std_ns": 42356.9206141885, "total_mad_ns": 28171.0, "total_cv": 0.02601452067966249, "total_min_ns": 1520273.0, "total_max_ns": 1722355.0, "total_p5_ns": 1568257.8, "total_p25_ns": 1593181.0, "total_p50_ns": 1627730.0, "total_p75_ns": 1652087.0, "total_p95_ns": 1703962.8, "total_p99_ns": 1718338.3599999999, "total_ci_low_ns": 1619002.7510309278, "total_ci_high_ns": 1637085.16314433, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 351683.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 49.84676784376926}, {"serializer": "protobuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "7.35.1", "avg_time_ser_ns": 27468.126436781607, "avg_time_deser_ns": 16548.3908045977, "avg_time_total_ns": 44016.51724137931, "median_size_bytes": 29432.0, "avg_ops_per_sec": 22718.74429583252, "min_ops_per_sec": 15873.26782964809, "max_ops_per_sec": 30421.02701387199, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 27468.126436781607, "ser_median_ns": 21238.0, "ser_std_ns": 10773.25590784517, "ser_mad_ns": 2503.0, "ser_cv": 0.39220934608117575, "ser_min_ns": 17586.0, "ser_max_ns": 45867.0, "ser_p5_ns": 18214.9, "ser_p25_ns": 19481.0, "ser_p50_ns": 21238.0, "ser_p75_ns": 43014.0, "ser_p95_ns": 45043.5, "ser_p99_ns": 45615.02, "ser_ci_low_ns": 25253.75603448276, "ser_ci_high_ns": 29836.689080459768, "deser_mean_ns": 16548.3908045977, "deser_median_ns": 16518.0, "deser_std_ns": 653.9876849050634, "deser_mad_ns": 393.0, "deser_cv": 0.03951971479446591, "deser_min_ns": 15278.0, "deser_max_ns": 18294.0, "deser_p5_ns": 15610.3, "deser_p25_ns": 16101.0, "deser_p50_ns": 16518.0, "deser_p75_ns": 16881.5, "deser_p95_ns": 17854.2, "deser_p99_ns": 18240.68, "deser_ci_low_ns": 16413.62528735632, "deser_ci_high_ns": 16684.818103448277, "total_mean_ns": 44016.51724137931, "total_median_ns": 38157.0, "total_std_ns": 10825.701656041954, "total_mad_ns": 3345.0, "total_cv": 0.2459463477465878, "total_min_ns": 32872.0, "total_max_ns": 62999.0, "total_p5_ns": 33880.8, "total_p25_ns": 35916.0, "total_p50_ns": 38157.0, "total_p75_ns": 59037.5, "total_p95_ns": 61959.5, "total_p99_ns": 62662.74, "total_ci_low_ns": 41852.09396551724, "total_ci_high_ns": 46331.80258620689, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 29569.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "serpyco-rs", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "1.21.0", "avg_time_ser_ns": 101281.31958762887, "avg_time_deser_ns": 153731.07216494845, "avg_time_total_ns": 255012.39175257733, "median_size_bytes": 65958.0, "avg_ops_per_sec": 3921.3780676597, "min_ops_per_sec": 3544.779426100211, "max_ops_per_sec": 4456.884103185781, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 101281.31958762887, "ser_median_ns": 97600.0, "ser_std_ns": 10708.420113344599, "ser_mad_ns": 6470.0, "ser_cv": 0.10572946874057704, "ser_min_ns": 87450.0, "ser_max_ns": 130745.0, "ser_p5_ns": 89636.6, "ser_p25_ns": 93040.0, "ser_p50_ns": 97600.0, "ser_p75_ns": 107956.0, "ser_p95_ns": 121355.4, "ser_p99_ns": 125173.15999999996, "ser_ci_low_ns": 99252.0280927835, "ser_ci_high_ns": 103333.81675257732, "deser_mean_ns": 153731.07216494845, "deser_median_ns": 152058.0, "deser_std_ns": 9215.620895214892, "deser_mad_ns": 6629.0, "deser_cv": 0.059946377563325846, "deser_min_ns": 136814.0, "deser_max_ns": 176648.0, "deser_p5_ns": 141446.8, "deser_p25_ns": 146782.0, "deser_p50_ns": 152058.0, "deser_p75_ns": 159101.0, "deser_p95_ns": 170960.19999999998, "deser_p99_ns": 173022.07999999996, "deser_ci_low_ns": 151939.82963917524, "deser_ci_high_ns": 155627.54458762886, "total_mean_ns": 255012.39175257733, "total_median_ns": 256278.0, "total_std_ns": 12546.049123758627, "total_mad_ns": 8275.0, "total_cv": 0.04919780186968827, "total_min_ns": 224372.0, "total_max_ns": 282105.0, "total_p5_ns": 233468.6, "total_p25_ns": 247502.0, "total_p50_ns": 256278.0, "total_p75_ns": 263535.0, "total_p95_ns": 272531.4, "total_p99_ns": 279351.72, "total_ci_low_ns": 252437.28479381444, "total_ci_high_ns": 257645.16597938145, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1066577.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.860906953290833}, {"serializer": "msgspec", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 113945.16853932584, "avg_time_deser_ns": 114114.49438202247, "avg_time_total_ns": 228059.66292134832, "median_size_bytes": 62958.0, "avg_ops_per_sec": 4384.817495520342, "min_ops_per_sec": 3817.128984605519, "max_ops_per_sec": 4915.357543107686, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 113945.16853932584, "ser_median_ns": 109073.0, "ser_std_ns": 11662.110464347152, "ser_mad_ns": 7846.0, "ser_cv": 0.10234844192031024, "ser_min_ns": 95462.0, "ser_max_ns": 139808.0, "ser_p5_ns": 100212.8, "ser_p25_ns": 103987.0, "ser_p50_ns": 109073.0, "ser_p75_ns": 125811.0, "ser_p95_ns": 131441.19999999998, "ser_p99_ns": 136611.84000000003, "ser_ci_low_ns": 111545.32443820225, "ser_ci_high_ns": 116417.12050561798, "deser_mean_ns": 114114.49438202247, "deser_median_ns": 114022.0, "deser_std_ns": 3526.1177632180293, "deser_mad_ns": 2092.0, "deser_cv": 0.03089982374555858, "deser_min_ns": 106293.0, "deser_max_ns": 123939.0, "deser_p5_ns": 108909.2, "deser_p25_ns": 111601.0, "deser_p50_ns": 114022.0, "deser_p75_ns": 115675.0, "deser_p95_ns": 121420.4, "deser_p99_ns": 122381.40000000001, "deser_ci_low_ns": 113391.10983146068, "deser_ci_high_ns": 114823.73651685394, "total_mean_ns": 228059.66292134832, "total_median_ns": 226439.0, "total_std_ns": 12475.075802232646, "total_mad_ns": 9777.0, "total_cv": 0.05470093063557217, "total_min_ns": 203444.0, "total_max_ns": 261977.0, "total_p5_ns": 210704.4, "total_p25_ns": 219140.0, "total_p50_ns": 226439.0, "total_p75_ns": 237571.0, "total_p95_ns": 246010.2, "total_p99_ns": 260338.44, "total_ci_low_ns": 225575.46151685392, "total_ci_high_ns": 230791.86966292135, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 218985.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.67703289027752}, {"serializer": "json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 974689.6808510638, "avg_time_deser_ns": 576445.6382978724, "avg_time_total_ns": 1551135.319148936, "median_size_bytes": 65958.0, "avg_ops_per_sec": 644.6890788024036, "min_ops_per_sec": 606.3178318074334, "max_ops_per_sec": 678.3275698100819, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 974689.6808510638, "ser_median_ns": 973319.5, "ser_std_ns": 26853.544335141578, "ser_mad_ns": 20053.0, "ser_cv": 0.027550865534653073, "ser_min_ns": 916146.0, "ser_max_ns": 1045105.0, "ser_p5_ns": 935235.65, "ser_p25_ns": 955821.0, "ser_p50_ns": 973319.5, "ser_p75_ns": 995943.25, "ser_p95_ns": 1017145.45, "ser_p99_ns": 1032762.0399999999, "ser_ci_low_ns": 969239.8481382978, "ser_ci_high_ns": 979969.9816489362, "deser_mean_ns": 576445.6382978724, "deser_median_ns": 573744.0, "deser_std_ns": 14630.021174512685, "deser_mad_ns": 9623.0, "deser_cv": 0.025379706606354392, "deser_min_ns": 541702.0, "deser_max_ns": 607854.0, "deser_p5_ns": 557242.8, "deser_p25_ns": 565393.0, "deser_p50_ns": 573744.0, "deser_p75_ns": 587117.0, "deser_p95_ns": 603223.25, "deser_p99_ns": 606987.24, "deser_ci_low_ns": 573396.1835106383, "deser_ci_high_ns": 579414.8718085106, "total_mean_ns": 1551135.319148936, "total_median_ns": 1550661.5, "total_std_ns": 34702.96550657901, "total_mad_ns": 23398.0, "total_cv": 0.02237262286414801, "total_min_ns": 1474214.0, "total_max_ns": 1649300.0, "total_p5_ns": 1499778.6, "total_p25_ns": 1527466.25, "total_p50_ns": 1550661.5, "total_p75_ns": 1574058.0, "total_p95_ns": 1607625.9, "total_p99_ns": 1636179.5599999998, "total_ci_low_ns": 1544136.0385638296, "total_ci_high_ns": 1558684.670212766, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 286938.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 57.46833676128459}, {"serializer": "cbor2", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "6.1.3", "avg_time_ser_ns": 374838.14285714284, "avg_time_deser_ns": 163768.2619047619, "avg_time_total_ns": 538606.4047619047, "median_size_bytes": 34534.0, "avg_ops_per_sec": 1856.643350615294, "min_ops_per_sec": 1736.9313286829893, "max_ops_per_sec": 1991.0323901149225, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 374838.14285714284, "ser_median_ns": 376109.0, "ser_std_ns": 12939.771491197447, "ser_mad_ns": 8578.0, "ser_cv": 0.034520957212534835, "ser_min_ns": 340246.0, "ser_max_ns": 410990.0, "ser_p5_ns": 350550.4, "ser_p25_ns": 366735.25, "ser_p50_ns": 376109.0, "ser_p75_ns": 382700.25, "ser_p95_ns": 393961.25, "ser_p99_ns": 400865.66000000003, "ser_ci_low_ns": 372097.6392857143, "ser_ci_high_ns": 377576.4681547619, "deser_mean_ns": 163768.2619047619, "deser_median_ns": 164030.5, "deser_std_ns": 3758.912964883253, "deser_mad_ns": 2335.5, "deser_cv": 0.022952633930188614, "deser_min_ns": 153603.0, "deser_max_ns": 172962.0, "deser_p5_ns": 157685.4, "deser_p25_ns": 161631.25, "deser_p50_ns": 164030.5, "deser_p75_ns": 166193.5, "deser_p95_ns": 169256.5, "deser_p99_ns": 172889.79, "deser_ci_low_ns": 162946.6863095238, "deser_ci_high_ns": 164508.66636904763, "total_mean_ns": 538606.4047619047, "total_median_ns": 539720.0, "total_std_ns": 13852.179741586882, "total_mad_ns": 8641.0, "total_cv": 0.025718557408745166, "total_min_ns": 502252.0, "total_max_ns": 575728.0, "total_p5_ns": 516081.15, "total_p25_ns": 531164.75, "total_p50_ns": 539720.0, "total_p75_ns": 548469.0, "total_p95_ns": 558038.95, "total_p99_ns": 566867.75, "total_ci_low_ns": 535817.368154762, "total_ci_high_ns": 541496.9208333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 206963.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 39.693981021050725}, {"serializer": "pydantic", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "2.13.4", "avg_time_ser_ns": 1110917.3265306123, "avg_time_deser_ns": 702820.9795918367, "avg_time_total_ns": 1813738.306122449, "median_size_bytes": 69957.0, "avg_ops_per_sec": 551.3474554870476, "min_ops_per_sec": 519.1824952429904, "max_ops_per_sec": 583.2526014524157, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 1110917.3265306123, "ser_median_ns": 1112155.0, "ser_std_ns": 31847.644668700777, "ser_mad_ns": 20746.5, "ser_cv": 0.02866788005563003, "ser_min_ns": 1035306.0, "ser_max_ns": 1187248.0, "ser_p5_ns": 1053168.3, "ser_p25_ns": 1089358.75, "ser_p50_ns": 1112155.0, "ser_p75_ns": 1131795.5, "ser_p95_ns": 1168372.25, "ser_p99_ns": 1176631.35, "ser_ci_low_ns": 1104909.4234693877, "ser_ci_high_ns": 1117099.7494897959, "deser_mean_ns": 702820.9795918367, "deser_median_ns": 701201.0, "deser_std_ns": 18742.548999799586, "deser_mad_ns": 13416.0, "deser_cv": 0.02666760034779315, "deser_min_ns": 671148.0, "deser_max_ns": 751708.0, "deser_p5_ns": 678248.35, "deser_p25_ns": 688312.0, "deser_p50_ns": 701201.0, "deser_p75_ns": 714649.5, "deser_p95_ns": 739822.5, "deser_p99_ns": 744778.3200000001, "deser_ci_low_ns": 699242.7357142856, "deser_ci_high_ns": 706402.0423469387, "total_mean_ns": 1813738.306122449, "total_median_ns": 1811478.0, "total_std_ns": 43351.724817921924, "total_mad_ns": 30264.5, "total_cv": 0.023901863169335943, "total_min_ns": 1714523.0, "total_max_ns": 1926105.0, "total_p5_ns": 1743997.2, "total_p25_ns": 1783788.5, "total_p50_ns": 1811478.0, "total_p75_ns": 1845552.25, "total_p95_ns": 1885283.25, "total_p99_ns": 1918194.65, "total_ci_low_ns": 1805075.4905612245, "total_ci_high_ns": 1822249.4716836733, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 301732.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 54.358432297661665}, {"serializer": "dill", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "0.4.1", "avg_time_ser_ns": 2848019.644444444, "avg_time_deser_ns": 97088.64444444445, "avg_time_total_ns": 2945108.288888889, "median_size_bytes": 35109.0, "avg_ops_per_sec": 339.5460886014733, "min_ops_per_sec": 324.7713853026009, "max_ops_per_sec": 349.77864258603944, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 2848019.644444444, "ser_median_ns": 2840837.5, "ser_std_ns": 47319.828345142305, "ser_mad_ns": 27327.5, "ser_cv": 0.016614993663210093, "ser_min_ns": 2773042.0, "ser_max_ns": 2972190.0, "ser_p5_ns": 2782682.45, "ser_p25_ns": 2815454.5, "ser_p50_ns": 2840837.5, "ser_p75_ns": 2871462.75, "ser_p95_ns": 2939576.8, "ser_p99_ns": 2964634.79, "ser_ci_low_ns": 2838545.122777778, "ser_ci_high_ns": 2857865.723611111, "deser_mean_ns": 97088.64444444445, "deser_median_ns": 94703.5, "deser_std_ns": 8597.609389852183, "deser_mad_ns": 4618.5, "deser_cv": 0.08855422216520761, "deser_min_ns": 85447.0, "deser_max_ns": 118655.0, "deser_p5_ns": 87371.1, "deser_p25_ns": 90643.0, "deser_p50_ns": 94703.5, "deser_p75_ns": 100520.25, "deser_p95_ns": 117105.75, "deser_p99_ns": 118277.64, "deser_ci_low_ns": 95420.74222222222, "deser_ci_high_ns": 98828.46111111112, "total_mean_ns": 2945108.288888889, "total_median_ns": 2937486.0, "total_std_ns": 52360.52594182348, "total_mad_ns": 28099.5, "total_cv": 0.017778811780662134, "total_min_ns": 2858951.0, "total_max_ns": 3079089.0, "total_p5_ns": 2873658.55, "total_p25_ns": 2909664.25, "total_p50_ns": 2937486.0, "total_p75_ns": 2968536.5, "total_p95_ns": 3047515.3, "total_p99_ns": 3078878.07, "total_ci_low_ns": 2934565.0486111115, "total_ci_high_ns": 2955642.2708333335, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 245942.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 75.8096302066876}, {"serializer": "flatbuffers", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "25.12.19", "avg_time_ser_ns": 2334058.389473684, "avg_time_deser_ns": 563177.8421052631, "avg_time_total_ns": 2897236.2315789475, "median_size_bytes": 36092.0, "avg_ops_per_sec": 345.15652852201697, "min_ops_per_sec": 329.81421565232307, "max_ops_per_sec": 356.25184582987623, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 2334058.389473684, "ser_median_ns": 2333249.0, "ser_std_ns": 42122.49279622436, "ser_mad_ns": 33215.0, "ser_cv": 0.018046889052215496, "ser_min_ns": 2268772.0, "ser_max_ns": 2448893.0, "ser_p5_ns": 2274991.4, "ser_p25_ns": 2298238.0, "ser_p50_ns": 2333249.0, "ser_p75_ns": 2361558.5, "ser_p95_ns": 2402817.4, "ser_p99_ns": 2448830.02, "ser_ci_low_ns": 2325514.2281578947, "ser_ci_high_ns": 2342802.830263158, "deser_mean_ns": 563177.8421052631, "deser_median_ns": 563173.0, "deser_std_ns": 15035.496991917262, "deser_mad_ns": 10552.0, "deser_cv": 0.026697600416436464, "deser_min_ns": 530349.0, "deser_max_ns": 605673.0, "deser_p5_ns": 543183.8, "deser_p25_ns": 552648.0, "deser_p50_ns": 563173.0, "deser_p75_ns": 573737.5, "deser_p95_ns": 586013.5, "deser_p99_ns": 600981.46, "deser_ci_low_ns": 560334.0978947368, "deser_ci_high_ns": 566182.2865789473, "total_mean_ns": 2897236.2315789475, "total_median_ns": 2892656.0, "total_std_ns": 49840.06953425972, "total_mad_ns": 33835.0, "total_cv": 0.017202625381741023, "total_min_ns": 2807003.0, "total_max_ns": 3032010.0, "total_p5_ns": 2823037.5, "total_p25_ns": 2861033.0, "total_p50_ns": 2892656.0, "total_p75_ns": 2927121.5, "total_p95_ns": 2985218.3, "total_p99_ns": 3028347.76, "total_ci_low_ns": 2887561.6539473687, "total_ci_high_ns": 2907329.590526316, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 190638.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 77.23900336167927}, {"serializer": "avro", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "1.12.2", "avg_time_ser_ns": 444075.7604166667, "avg_time_deser_ns": 371856.9375, "avg_time_total_ns": 815932.6979166666, "median_size_bytes": 28832.0, "avg_ops_per_sec": 1225.5912804491293, "min_ops_per_sec": 1161.2783351913786, "max_ops_per_sec": 1311.6904410559107, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 444075.7604166667, "ser_median_ns": 443536.0, "ser_std_ns": 13881.226130239278, "ser_mad_ns": 9488.5, "ser_cv": 0.031258689096686616, "ser_min_ns": 413424.0, "ser_max_ns": 472117.0, "ser_p5_ns": 418852.25, "ser_p25_ns": 435431.0, "ser_p50_ns": 443536.0, "ser_p75_ns": 454130.75, "ser_p95_ns": 467320.5, "ser_p99_ns": 470526.7, "ser_ci_low_ns": 441453.1588541667, "ser_ci_high_ns": 446638.43437499995, "deser_mean_ns": 371856.9375, "deser_median_ns": 370571.5, "deser_std_ns": 12204.110908613411, "deser_mad_ns": 7766.0, "deser_cv": 0.03281937131699583, "deser_min_ns": 348558.0, "deser_max_ns": 401202.0, "deser_p5_ns": 357623.75, "deser_p25_ns": 362826.75, "deser_p50_ns": 370571.5, "deser_p75_ns": 378015.5, "deser_p95_ns": 396054.5, "deser_p99_ns": 400676.65, "deser_ci_low_ns": 369561.1015625, "deser_ci_high_ns": 374319.60130208335, "total_mean_ns": 815932.6979166666, "total_median_ns": 816486.5, "total_std_ns": 21530.941129414467, "total_mad_ns": 15533.5, "total_cv": 0.026388133708073896, "total_min_ns": 762375.0, "total_max_ns": 861120.0, "total_p5_ns": 780990.0, "total_p25_ns": 800836.25, "total_p50_ns": 816486.5, "total_p75_ns": 831491.75, "total_p95_ns": 851675.75, "total_p99_ns": 858408.7, "total_ci_low_ns": 811759.68046875, "total_ci_high_ns": 820194.2192708333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 182538.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 44.455801636237176}, {"serializer": "protobuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "7.35.1", "avg_time_ser_ns": 22208.72602739726, "avg_time_deser_ns": 17422.328767123287, "avg_time_total_ns": 39631.05479452055, "median_size_bytes": 29432.0, "avg_ops_per_sec": 25232.737437466883, "min_ops_per_sec": 20249.473513688645, "max_ops_per_sec": 31114.84489249821, "runs": 73, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 26, "ser_mean_ns": 22208.72602739726, "ser_median_ns": 21691.0, "ser_std_ns": 2617.09833626371, "ser_mad_ns": 988.0, "ser_cv": 0.11784099335707908, "ser_min_ns": 16977.0, "ser_max_ns": 31854.0, "ser_p5_ns": 17941.6, "ser_p25_ns": 20758.0, "ser_p50_ns": 21691.0, "ser_p75_ns": 23482.0, "ser_p95_ns": 26878.99999999999, "ser_p99_ns": 29750.880000000005, "ser_ci_low_ns": 21648.129794520548, "ser_ci_high_ns": 22805.168493150682, "deser_mean_ns": 17422.328767123287, "deser_median_ns": 17488.0, "deser_std_ns": 820.8197639283568, "deser_mad_ns": 493.0, "deser_cv": 0.04711309118889321, "deser_min_ns": 15162.0, "deser_max_ns": 19222.0, "deser_p5_ns": 15801.2, "deser_p25_ns": 16907.0, "deser_p50_ns": 17488.0, "deser_p75_ns": 17906.0, "deser_p95_ns": 18627.399999999998, "deser_p99_ns": 19100.32, "deser_ci_low_ns": 17241.245547945207, "deser_ci_high_ns": 17600.05821917808, "total_mean_ns": 39631.05479452055, "total_median_ns": 38914.0, "total_std_ns": 3241.391710234677, "total_mad_ns": 1345.0, "total_cv": 0.08178918595633333, "total_min_ns": 32139.0, "total_max_ns": 49384.0, "total_p5_ns": 34370.2, "total_p25_ns": 38003.0, "total_p50_ns": 38914.0, "total_p75_ns": 41033.0, "total_p95_ns": 45574.19999999999, "total_p99_ns": 48377.44, "total_ci_low_ns": 38935.568493150684, "total_ci_high_ns": 40347.35719178082, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 29569.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "mashumaro", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "3.22", "avg_time_ser_ns": 91836.39175257731, "avg_time_deser_ns": 203198.12371134022, "avg_time_total_ns": 295034.5154639175, "median_size_bytes": 65958.0, "avg_ops_per_sec": 3389.43393937344, "min_ops_per_sec": 3067.578760084665, "max_ops_per_sec": 3805.290876434595, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 91836.39175257731, "ser_median_ns": 87581.0, "ser_std_ns": 10403.648575296294, "ser_mad_ns": 5321.0, "ser_cv": 0.11328459640842024, "ser_min_ns": 79407.0, "ser_max_ns": 115124.0, "ser_p5_ns": 80461.2, "ser_p25_ns": 83396.0, "ser_p50_ns": 87581.0, "ser_p75_ns": 100116.0, "ser_p95_ns": 110792.8, "ser_p99_ns": 113454.55999999998, "ser_ci_low_ns": 89887.03634020618, "ser_ci_high_ns": 93921.81881443299, "deser_mean_ns": 203198.12371134022, "deser_median_ns": 201272.0, "deser_std_ns": 11175.473524883382, "deser_mad_ns": 7551.0, "deser_cv": 0.05499791691363779, "deser_min_ns": 180358.0, "deser_max_ns": 227931.0, "deser_p5_ns": 187342.4, "deser_p25_ns": 195374.0, "deser_p50_ns": 201272.0, "deser_p75_ns": 210660.0, "deser_p95_ns": 224228.6, "deser_p99_ns": 227651.63999999998, "deser_ci_low_ns": 200974.73917525774, "deser_ci_high_ns": 205222.1394329897, "total_mean_ns": 295034.5154639175, "total_median_ns": 296919.0, "total_std_ns": 13275.06188082988, "total_mad_ns": 9311.0, "total_cv": 0.04499494528616741, "total_min_ns": 262792.0, "total_max_ns": 325990.0, "total_p5_ns": 271260.6, "total_p25_ns": 286525.0, "total_p50_ns": 296919.0, "total_p75_ns": 303936.0, "total_p95_ns": 313562.19999999995, "total_p99_ns": 322921.83999999997, "total_ci_low_ns": 292444.6324742268, "total_ci_high_ns": 297668.2010309278, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1062097.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.78930315689532}, {"serializer": "cbor2", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "6.1.3", "avg_time_ser_ns": 373777.1758241758, "avg_time_deser_ns": 167215.7032967033, "avg_time_total_ns": 540992.8791208791, "median_size_bytes": 34534.0, "avg_ops_per_sec": 1848.4531656405788, "min_ops_per_sec": 1709.702733985642, "max_ops_per_sec": 2034.8239775518218, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 373777.1758241758, "ser_median_ns": 373913.0, "ser_std_ns": 15749.414055833178, "ser_mad_ns": 11264.0, "ser_cv": 0.04213583673509716, "ser_min_ns": 338337.0, "ser_max_ns": 412736.0, "ser_p5_ns": 350745.0, "ser_p25_ns": 361760.5, "ser_p50_ns": 373913.0, "ser_p75_ns": 383442.5, "ser_p95_ns": 399795.0, "ser_p99_ns": 406418.89999999997, "ser_ci_low_ns": 370577.9090659341, "ser_ci_high_ns": 377152.52280219784, "deser_mean_ns": 167215.7032967033, "deser_median_ns": 165688.0, "deser_std_ns": 6951.628531014242, "deser_mad_ns": 4084.0, "deser_cv": 0.041572821176247124, "deser_min_ns": 153106.0, "deser_max_ns": 187580.0, "deser_p5_ns": 159857.0, "deser_p25_ns": 162043.5, "deser_p50_ns": 165688.0, "deser_p75_ns": 170729.0, "deser_p95_ns": 179899.5, "deser_p99_ns": 186681.8, "deser_ci_low_ns": 165837.9554945055, "deser_ci_high_ns": 168692.77912087913, "total_mean_ns": 540992.8791208791, "total_median_ns": 538746.0, "total_std_ns": 20095.347163424653, "total_mad_ns": 14881.0, "total_cv": 0.037145308078878725, "total_min_ns": 491443.0, "total_max_ns": 584897.0, "total_p5_ns": 511409.0, "total_p25_ns": 527408.5, "total_p50_ns": 538746.0, "total_p75_ns": 557237.5, "total_p95_ns": 576712.0, "total_p99_ns": 582332.0, "total_ci_low_ns": 536908.6796703297, "total_ci_high_ns": 545139.1434065934, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 206963.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 32.97617000198945}, {"serializer": "serpyco-rs", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "1.21.0", "avg_time_ser_ns": 102164.375, "avg_time_deser_ns": 158546.52083333334, "avg_time_total_ns": 260710.89583333334, "median_size_bytes": 65958.0, "avg_ops_per_sec": 3835.6663107754334, "min_ops_per_sec": 3424.3643523670917, "max_ops_per_sec": 4350.114625520382, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 102164.375, "ser_median_ns": 98571.0, "ser_std_ns": 10250.163971217344, "ser_mad_ns": 5014.0, "ser_cv": 0.1003301196842573, "ser_min_ns": 90253.0, "ser_max_ns": 125207.0, "ser_p5_ns": 91856.0, "ser_p25_ns": 95029.25, "ser_p50_ns": 98571.0, "ser_p75_ns": 105637.75, "ser_p95_ns": 123974.75, "ser_p99_ns": 125039.8, "ser_ci_low_ns": 100240.35598958333, "ser_ci_high_ns": 104314.87473958333, "deser_mean_ns": 158546.52083333334, "deser_median_ns": 154934.0, "deser_std_ns": 11988.988958715117, "deser_mad_ns": 7364.5, "deser_cv": 0.07561811445435712, "deser_min_ns": 136770.0, "deser_max_ns": 187617.0, "deser_p5_ns": 143825.25, "deser_p25_ns": 149550.25, "deser_p50_ns": 154934.0, "deser_p75_ns": 167970.0, "deser_p95_ns": 181546.75, "deser_p99_ns": 185233.44999999998, "deser_ci_low_ns": 156308.33489583334, "deser_ci_high_ns": 160918.07760416667, "total_mean_ns": 260710.89583333334, "total_median_ns": 260544.0, "total_std_ns": 15518.584571565301, "total_mad_ns": 12015.0, "total_cv": 0.05952411203207244, "total_min_ns": 229879.0, "total_max_ns": 292025.0, "total_p5_ns": 236951.25, "total_p25_ns": 249074.5, "total_p50_ns": 260544.0, "total_p75_ns": 272832.75, "total_p95_ns": 284739.0, "total_p99_ns": 291842.6, "total_ci_low_ns": 257566.28619791666, "total_ci_high_ns": 263968.50026041665, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1066577.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.500007469566686}, {"serializer": "cloudpickle", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "3.1.2", "avg_time_ser_ns": 197470.01075268816, "avg_time_deser_ns": 86024.54838709677, "avg_time_total_ns": 283494.55913978495, "median_size_bytes": 35109.0, "avg_ops_per_sec": 3527.4045577252928, "min_ops_per_sec": 2982.9198012182246, "max_ops_per_sec": 4115.260207902946, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 197470.01075268816, "ser_median_ns": 194607.0, "ser_std_ns": 15213.2014885918, "ser_mad_ns": 11713.0, "ser_cv": 0.07704056646679806, "ser_min_ns": 165599.0, "ser_max_ns": 234445.0, "ser_p5_ns": 176859.0, "ser_p25_ns": 185188.0, "ser_p50_ns": 194607.0, "ser_p75_ns": 207870.0, "ser_p95_ns": 221932.19999999998, "ser_p99_ns": 232532.32, "ser_ci_low_ns": 194301.6483870968, "ser_ci_high_ns": 200766.03010752687, "deser_mean_ns": 86024.54838709677, "deser_median_ns": 85220.0, "deser_std_ns": 5507.814163445085, "deser_mad_ns": 3430.0, "deser_cv": 0.06402607472765562, "deser_min_ns": 76382.0, "deser_max_ns": 100797.0, "deser_p5_ns": 78479.6, "deser_p25_ns": 82039.0, "deser_p50_ns": 85220.0, "deser_p75_ns": 88756.0, "deser_p95_ns": 96634.59999999999, "deser_p99_ns": 99924.84, "deser_ci_low_ns": 84912.7252688172, "deser_ci_high_ns": 87127.0755376344, "total_mean_ns": 283494.55913978495, "total_median_ns": 281985.0, "total_std_ns": 18998.5397382, "total_mad_ns": 13775.0, "total_cv": 0.06701553566265178, "total_min_ns": 242998.0, "total_max_ns": 335242.0, "total_p5_ns": 257645.8, "total_p25_ns": 269077.0, "total_p50_ns": 281985.0, "total_p75_ns": 296525.0, "total_p95_ns": 316363.6, "total_p99_ns": 325642.72, "total_ci_low_ns": 279786.76182795694, "total_ci_high_ns": 287305.78682795697, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 204900.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.868234526884343}, {"serializer": "orjson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "3.11.9", "avg_time_ser_ns": 80083.2530120482, "avg_time_deser_ns": 116132.53012048193, "avg_time_total_ns": 196215.7831325301, "median_size_bytes": 65958.0, "avg_ops_per_sec": 5096.429981499346, "min_ops_per_sec": 4338.620665717955, "max_ops_per_sec": 5827.4039498143975, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 80083.2530120482, "ser_median_ns": 78831.0, "ser_std_ns": 5229.23905727507, "ser_mad_ns": 2995.0, "ser_cv": 0.06529753550955719, "ser_min_ns": 71906.0, "ser_max_ns": 97998.0, "ser_p5_ns": 73908.1, "ser_p25_ns": 76732.5, "ser_p50_ns": 78831.0, "ser_p75_ns": 82424.0, "ser_p95_ns": 88932.49999999999, "ser_p99_ns": 97985.7, "ser_ci_low_ns": 78956.44578313253, "ser_ci_high_ns": 81294.89126506024, "deser_mean_ns": 116132.53012048193, "deser_median_ns": 111886.0, "deser_std_ns": 11658.040851533886, "deser_mad_ns": 7730.0, "deser_cv": 0.10038566144592931, "deser_min_ns": 98415.0, "deser_max_ns": 139670.0, "deser_p5_ns": 100155.5, "deser_p25_ns": 107002.5, "deser_p50_ns": 111886.0, "deser_p75_ns": 128780.0, "deser_p95_ns": 134468.5, "deser_p99_ns": 136448.21999999997, "deser_ci_low_ns": 113714.23885542169, "deser_ci_high_ns": 118683.30753012048, "total_mean_ns": 196215.7831325301, "total_median_ns": 195958.0, "total_std_ns": 12824.59669983312, "total_mad_ns": 9797.0, "total_cv": 0.06535965912166708, "total_min_ns": 171603.0, "total_max_ns": 230488.0, "total_p5_ns": 178061.3, "total_p25_ns": 186238.0, "total_p50_ns": 195958.0, "total_p75_ns": 205666.0, "total_p95_ns": 218935.1, "total_p99_ns": 221160.4999999999, "total_ci_low_ns": 193452.13975903616, "total_ci_high_ns": 199003.7153614458, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1077617.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.202600659137495}, {"serializer": "msgspec", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 108407.83870967742, "avg_time_deser_ns": 117870.95698924731, "avg_time_total_ns": 226278.79569892472, "median_size_bytes": 62958.0, "avg_ops_per_sec": 4419.327038184127, "min_ops_per_sec": 3900.7189024937297, "max_ops_per_sec": 4980.600560815623, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 108407.83870967742, "ser_median_ns": 103769.0, "ser_std_ns": 10961.424753960871, "ser_mad_ns": 3651.0, "ser_cv": 0.10111284280204325, "ser_min_ns": 93232.0, "ser_max_ns": 133143.0, "ser_p5_ns": 97928.8, "ser_p25_ns": 100709.0, "ser_p50_ns": 103769.0, "ser_p75_ns": 120510.0, "ser_p95_ns": 126999.0, "ser_p99_ns": 132677.48, "ser_ci_low_ns": 106314.02715053763, "ser_ci_high_ns": 110721.94758064515, "deser_mean_ns": 117870.95698924731, "deser_median_ns": 116386.0, "deser_std_ns": 5791.617754610646, "deser_mad_ns": 3017.0, "deser_cv": 0.04913523994836983, "deser_min_ns": 107547.0, "deser_max_ns": 132969.0, "deser_p5_ns": 111192.4, "deser_p25_ns": 114197.0, "deser_p50_ns": 116386.0, "deser_p75_ns": 120316.0, "deser_p95_ns": 129928.2, "deser_p99_ns": 132653.44, "deser_ci_low_ns": 116769.60403225807, "deser_ci_high_ns": 119014.111827957, "total_mean_ns": 226278.79569892472, "total_median_ns": 223705.0, "total_std_ns": 12070.659538155662, "total_mad_ns": 8692.0, "total_cv": 0.053344192065686434, "total_min_ns": 200779.0, "total_max_ns": 256363.0, "total_p5_ns": 210229.0, "total_p25_ns": 216556.0, "total_p50_ns": 223705.0, "total_p75_ns": 236321.0, "total_p95_ns": 245035.19999999998, "total_p99_ns": 248123.47999999998, "total_ci_low_ns": 223962.96317204303, "total_ci_high_ns": 228749.7629032258, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 218985.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.99423205961704}, {"serializer": "json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 981213.4574468085, "avg_time_deser_ns": 594391.4255319149, "avg_time_total_ns": 1575604.8829787234, "median_size_bytes": 65958.0, "avg_ops_per_sec": 634.6768855586897, "min_ops_per_sec": 602.4883975796836, "max_ops_per_sec": 674.3925072294877, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 981213.4574468085, "ser_median_ns": 977938.5, "ser_std_ns": 29429.01945639434, "ser_mad_ns": 23057.5, "ser_cv": 0.029992474352085297, "ser_min_ns": 919629.0, "ser_max_ns": 1064438.0, "ser_p5_ns": 942090.4, "ser_p25_ns": 959273.5, "ser_p50_ns": 977938.5, "ser_p75_ns": 1001680.25, "ser_p95_ns": 1029746.4, "ser_p99_ns": 1040249.6299999998, "ser_ci_low_ns": 975494.4680851065, "ser_ci_high_ns": 987013.6659574468, "deser_mean_ns": 594391.4255319149, "deser_median_ns": 591554.5, "deser_std_ns": 17676.707375057922, "deser_mad_ns": 11182.5, "deser_cv": 0.029739169536705908, "deser_min_ns": 561107.0, "deser_max_ns": 646085.0, "deser_p5_ns": 569732.15, "deser_p25_ns": 582494.0, "deser_p50_ns": 591554.5, "deser_p75_ns": 605881.0, "deser_p95_ns": 624130.6, "deser_p99_ns": 644631.41, "deser_ci_low_ns": 591011.7180851063, "deser_ci_high_ns": 598081.1295212766, "total_mean_ns": 1575604.8829787234, "total_median_ns": 1577971.5, "total_std_ns": 38933.98091941627, "total_mad_ns": 28463.0, "total_cv": 0.024710497752336573, "total_min_ns": 1482816.0, "total_max_ns": 1659783.0, "total_p5_ns": 1521957.05, "total_p25_ns": 1540582.75, "total_p50_ns": 1577971.5, "total_p75_ns": 1601080.75, "total_p95_ns": 1644940.0, "total_p99_ns": 1655331.0899999999, "total_ci_low_ns": 1567961.5045212766, "total_ci_high_ns": 1583286.9571808511, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 286938.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 52.168916653527845}, {"serializer": "pickle", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 122276.84042553192, "avg_time_deser_ns": 94089.35106382979, "avg_time_total_ns": 216366.1914893617, "median_size_bytes": 35109.0, "avg_ops_per_sec": 4621.794158858539, "min_ops_per_sec": 4101.251702019456, "max_ops_per_sec": 5595.062916482496, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 122276.84042553192, "ser_median_ns": 119524.0, "ser_std_ns": 10439.416402449158, "ser_mad_ns": 6027.0, "ser_cv": 0.08537525475894914, "ser_min_ns": 98249.0, "ser_max_ns": 151198.0, "ser_p5_ns": 110377.2, "ser_p25_ns": 115332.25, "ser_p50_ns": 119524.0, "ser_p75_ns": 127773.5, "ser_p95_ns": 141947.2, "ser_p99_ns": 148639.56999999998, "ser_ci_low_ns": 120268.52792553192, "ser_ci_high_ns": 124309.03457446807, "deser_mean_ns": 94089.35106382979, "deser_median_ns": 91460.0, "deser_std_ns": 10524.922872761563, "deser_mad_ns": 7381.0, "deser_cv": 0.11186093594822971, "deser_min_ns": 78126.0, "deser_max_ns": 116660.0, "deser_p5_ns": 80980.5, "deser_p25_ns": 85848.75, "deser_p50_ns": 91460.0, "deser_p75_ns": 102884.0, "deser_p95_ns": 112366.79999999999, "deser_p99_ns": 115769.98999999999, "deser_ci_low_ns": 92019.51569148937, "deser_ci_high_ns": 96237.18058510638, "total_mean_ns": 216366.1914893617, "total_median_ns": 218233.5, "total_std_ns": 14984.000559217704, "total_mad_ns": 10443.5, "total_cv": 0.06925296626092546, "total_min_ns": 178729.0, "total_max_ns": 243828.0, "total_p5_ns": 192290.35, "total_p25_ns": 206767.75, "total_p50_ns": 218233.5, "total_p75_ns": 226584.0, "total_p95_ns": 239681.69999999998, "total_p99_ns": 243033.78, "total_ci_low_ns": 213380.5119680851, "total_ci_high_ns": 219281.63829787233, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 204900.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.36335830185277}, {"serializer": "msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "1.2.1", "avg_time_ser_ns": 96951.50588235294, "avg_time_deser_ns": 71007.72941176471, "avg_time_total_ns": 167959.23529411765, "median_size_bytes": 34635.0, "avg_ops_per_sec": 5953.82563065898, "min_ops_per_sec": 5117.209687901382, "max_ops_per_sec": 6840.366370022778, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 96951.50588235294, "ser_median_ns": 92054.0, "ser_std_ns": 11205.11990291293, "ser_mad_ns": 3714.0, "ser_cv": 0.11557448026139922, "ser_min_ns": 83442.0, "ser_max_ns": 119659.0, "ser_p5_ns": 84976.2, "ser_p25_ns": 89579.0, "ser_p50_ns": 92054.0, "ser_p75_ns": 103719.0, "ser_p95_ns": 117278.4, "ser_p99_ns": 118533.4, "ser_ci_low_ns": 94683.27794117646, "ser_ci_high_ns": 99386.49823529412, "deser_mean_ns": 71007.72941176471, "deser_median_ns": 70294.0, "deser_std_ns": 4098.518859609778, "deser_mad_ns": 1797.0, "deser_cv": 0.05771933412830303, "deser_min_ns": 62173.0, "deser_max_ns": 83128.0, "deser_p5_ns": 64953.0, "deser_p25_ns": 68779.0, "deser_p50_ns": 70294.0, "deser_p75_ns": 72450.0, "deser_p95_ns": 80000.8, "deser_p99_ns": 82294.72, "deser_ci_low_ns": 70187.03029411765, "deser_ci_high_ns": 71850.53294117647, "total_mean_ns": 167959.23529411765, "total_median_ns": 164919.0, "total_std_ns": 11535.768785295028, "total_mad_ns": 6255.0, "total_cv": 0.06868195586324534, "total_min_ns": 146191.0, "total_max_ns": 195419.0, "total_p5_ns": 153075.6, "total_p25_ns": 159343.0, "total_p50_ns": 164919.0, "total_p75_ns": 177094.0, "total_p95_ns": 187319.0, "total_p99_ns": 194322.8, "total_ci_low_ns": 165788.27529411766, "total_ci_high_ns": 170321.5438235294, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 186603.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.60099384352256}, {"serializer": "msgspec-msgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 24537.175675675677, "avg_time_deser_ns": 49605.05405405405, "avg_time_total_ns": 74142.22972972973, "median_size_bytes": 32435.0, "avg_ops_per_sec": 13487.590050168366, "min_ops_per_sec": 10665.301508073633, "max_ops_per_sec": 15532.050385971452, "runs": 74, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 25, "ser_mean_ns": 24537.175675675677, "ser_median_ns": 24048.5, "ser_std_ns": 3544.650928031137, "ser_mad_ns": 1637.0, "ser_cv": 0.14446042914160814, "ser_min_ns": 19063.0, "ser_max_ns": 38615.0, "ser_p5_ns": 20272.85, "ser_p25_ns": 22536.5, "ser_p50_ns": 24048.5, "ser_p75_ns": 25690.75, "ser_p95_ns": 30703.899999999987, "ser_p99_ns": 37376.91999999999, "ser_ci_low_ns": 23821.974324324325, "ser_ci_high_ns": 25359.36554054054, "deser_mean_ns": 49605.05405405405, "deser_median_ns": 49179.5, "deser_std_ns": 2233.5626305155165, "deser_mad_ns": 1318.5, "deser_cv": 0.04502691657349328, "deser_min_ns": 45320.0, "deser_max_ns": 55147.0, "deser_p5_ns": 46600.1, "deser_p25_ns": 48020.5, "deser_p50_ns": 49179.5, "deser_p75_ns": 51010.75, "deser_p95_ns": 53648.1, "deser_p99_ns": 54929.46, "deser_ci_low_ns": 49099.01824324324, "deser_ci_high_ns": 50131.34222972973, "total_mean_ns": 74142.22972972973, "total_median_ns": 73393.5, "total_std_ns": 5341.690642400029, "total_mad_ns": 3164.5, "total_cv": 0.0720465335595121, "total_min_ns": 64383.0, "total_max_ns": 93762.0, "total_p5_ns": 67565.6, "total_p25_ns": 70361.25, "total_p50_ns": 73393.5, "total_p75_ns": 77038.25, "total_p95_ns": 83960.14999999998, "total_p99_ns": 91693.90999999999, "total_ci_low_ns": 72961.58547297298, "total_ci_high_ns": 75357.40743243243, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 185247.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.758393364802007}, {"serializer": "pydantic", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "2.13.4", "avg_time_ser_ns": 1116042.275510204, "avg_time_deser_ns": 712088.6632653062, "avg_time_total_ns": 1828130.9387755103, "median_size_bytes": 69957.0, "avg_ops_per_sec": 547.0067700237074, "min_ops_per_sec": 517.6103998281534, "max_ops_per_sec": 574.0893937558593, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 1116042.275510204, "ser_median_ns": 1113649.5, "ser_std_ns": 33427.75859763044, "ser_mad_ns": 19186.5, "ser_cv": 0.029952054085360506, "ser_min_ns": 1050836.0, "ser_max_ns": 1190424.0, "ser_p5_ns": 1059438.7, "ser_p25_ns": 1096844.75, "ser_p50_ns": 1113649.5, "ser_p75_ns": 1134690.5, "ser_p95_ns": 1174799.65, "ser_p99_ns": 1183378.89, "ser_ci_low_ns": 1109472.6772959183, "ser_ci_high_ns": 1122528.5471938776, "deser_mean_ns": 712088.6632653062, "deser_median_ns": 711461.5, "deser_std_ns": 19834.543453249506, "deser_mad_ns": 14174.0, "deser_cv": 0.027854036268879143, "deser_min_ns": 677985.0, "deser_max_ns": 762282.0, "deser_p5_ns": 683409.65, "deser_p25_ns": 696298.75, "deser_p50_ns": 711461.5, "deser_p75_ns": 724509.5, "deser_p95_ns": 749216.0, "deser_p99_ns": 761840.65, "deser_ci_low_ns": 708158.693622449, "deser_ci_high_ns": 716042.9836734694, "total_mean_ns": 1828130.9387755103, "total_median_ns": 1831620.5, "total_std_ns": 45216.18305562649, "total_mad_ns": 34183.0, "total_cv": 0.02473355824605894, "total_min_ns": 1741889.0, "total_max_ns": 1931955.0, "total_p5_ns": 1757338.55, "total_p25_ns": 1792211.75, "total_p50_ns": 1831620.5, "total_p75_ns": 1856088.0, "total_p95_ns": 1907631.55, "total_p99_ns": 1926350.34, "total_ci_low_ns": 1818931.7275510204, "total_ci_high_ns": 1836945.0221938775, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 301732.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 51.87896151505964}, {"serializer": "avro", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "1.12.2", "avg_time_ser_ns": 445437.7849462366, "avg_time_deser_ns": 369305.1935483871, "avg_time_total_ns": 814742.9784946237, "median_size_bytes": 28832.0, "avg_ops_per_sec": 1227.3809365594905, "min_ops_per_sec": 1148.4616356390616, "max_ops_per_sec": 1286.8721029291783, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 445437.7849462366, "ser_median_ns": 445678.0, "ser_std_ns": 17681.57246772781, "ser_mad_ns": 12422.0, "ser_cv": 0.039694819490587084, "ser_min_ns": 412690.0, "ser_max_ns": 490725.0, "ser_p5_ns": 418676.6, "ser_p25_ns": 431979.0, "ser_p50_ns": 445678.0, "ser_p75_ns": 454725.0, "ser_p95_ns": 475555.39999999997, "ser_p99_ns": 490346.88, "ser_ci_low_ns": 441779.4548387097, "ser_ci_high_ns": 448963.4432795699, "deser_mean_ns": 369305.1935483871, "deser_median_ns": 367901.0, "deser_std_ns": 8337.847900645931, "deser_mad_ns": 5143.0, "deser_cv": 0.022577120620843612, "deser_min_ns": 353922.0, "deser_max_ns": 393155.0, "deser_p5_ns": 358519.2, "deser_p25_ns": 363518.0, "deser_p50_ns": 367901.0, "deser_p75_ns": 374194.0, "deser_p95_ns": 385827.39999999997, "deser_p99_ns": 391130.08, "deser_ci_low_ns": 367718.111827957, "deser_ci_high_ns": 371040.0862903226, "total_mean_ns": 814742.9784946237, "total_median_ns": 812621.0, "total_std_ns": 21936.09194464411, "total_mad_ns": 15810.0, "total_cv": 0.026923941075472385, "total_min_ns": 777078.0, "total_max_ns": 870730.0, "total_p5_ns": 782132.2, "total_p25_ns": 797688.0, "total_p50_ns": 812621.0, "total_p75_ns": 830500.0, "total_p95_ns": 853254.3999999999, "total_p99_ns": 867090.48, "total_ci_low_ns": 810229.2860215054, "total_ci_high_ns": 819322.8580645161, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 182538.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 46.56506549113958}, {"serializer": "flatbuffers", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "25.12.19", "avg_time_ser_ns": 2327127.5104166665, "avg_time_deser_ns": 568482.625, "avg_time_total_ns": 2895610.1354166665, "median_size_bytes": 36092.0, "avg_ops_per_sec": 345.35035907245987, "min_ops_per_sec": 331.10137893791284, "max_ops_per_sec": 360.4423203978995, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 2327127.5104166665, "ser_median_ns": 2328695.5, "ser_std_ns": 42397.62850021208, "ser_mad_ns": 31995.0, "ser_cv": 0.018218867814690946, "ser_min_ns": 2241487.0, "ser_max_ns": 2435812.0, "ser_p5_ns": 2263340.0, "ser_p25_ns": 2295294.0, "ser_p50_ns": 2328695.5, "ser_p75_ns": 2358725.25, "ser_p95_ns": 2390198.0, "ser_p99_ns": 2423382.2, "ser_ci_low_ns": 2318723.3114583334, "ser_ci_high_ns": 2335992.9278645837, "deser_mean_ns": 568482.625, "deser_median_ns": 566122.0, "deser_std_ns": 17082.938686087695, "deser_mad_ns": 13284.0, "deser_cv": 0.030050062983169794, "deser_min_ns": 532882.0, "deser_max_ns": 620550.0, "deser_p5_ns": 544708.0, "deser_p25_ns": 555394.5, "deser_p50_ns": 566122.0, "deser_p75_ns": 581244.75, "deser_p95_ns": 597390.75, "deser_p99_ns": 609682.0, "deser_ci_low_ns": 565169.4854166667, "deser_ci_high_ns": 571993.1098958333, "total_mean_ns": 2895610.1354166665, "total_median_ns": 2890100.5, "total_std_ns": 50770.28257566672, "total_mad_ns": 34743.5, "total_cv": 0.017533535317716755, "total_min_ns": 2774369.0, "total_max_ns": 3020223.0, "total_p5_ns": 2822088.5, "total_p25_ns": 2861571.0, "total_p50_ns": 2890100.5, "total_p75_ns": 2928879.0, "total_p95_ns": 2980788.75, "total_p99_ns": 3017178.25, "total_ci_low_ns": 2885622.2763020834, "total_ci_high_ns": 2905956.2624999997, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 190638.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 74.13347057159949}, {"serializer": "dill", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "0.4.1", "avg_time_ser_ns": 2851483.75, "avg_time_deser_ns": 97883.73913043478, "avg_time_total_ns": 2949367.4891304346, "median_size_bytes": 35109.0, "avg_ops_per_sec": 339.05574794778494, "min_ops_per_sec": 320.39390508266484, "max_ops_per_sec": 357.05729091349895, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 2851483.75, "ser_median_ns": 2844713.5, "ser_std_ns": 56862.12232699567, "ser_mad_ns": 34467.5, "ser_cv": 0.019941240179606728, "ser_min_ns": 2714334.0, "ser_max_ns": 3010416.0, "ser_p5_ns": 2765122.1, "ser_p25_ns": 2814910.0, "ser_p50_ns": 2844713.5, "ser_p75_ns": 2885890.0, "ser_p95_ns": 2948692.8, "ser_p99_ns": 2995572.99, "ser_ci_low_ns": 2839914.4548913045, "ser_ci_high_ns": 2863013.472826087, "deser_mean_ns": 97883.73913043478, "deser_median_ns": 95743.0, "deser_std_ns": 8558.627111931524, "deser_mad_ns": 5364.0, "deser_cv": 0.08743665891764456, "deser_min_ns": 85606.0, "deser_max_ns": 120912.0, "deser_p5_ns": 87170.15, "deser_p25_ns": 91309.25, "deser_p50_ns": 95743.0, "deser_p75_ns": 102386.25, "deser_p95_ns": 115272.3, "deser_p99_ns": 119056.51000000001, "deser_ci_low_ns": 96171.94836956522, "deser_ci_high_ns": 99674.03233695652, "total_mean_ns": 2949367.4891304346, "total_median_ns": 2940824.0, "total_std_ns": 60806.25686817568, "total_mad_ns": 36592.0, "total_cv": 0.020616710902344442, "total_min_ns": 2800671.0, "total_max_ns": 3121158.0, "total_p5_ns": 2856266.9, "total_p25_ns": 2909347.0, "total_p50_ns": 2940824.0, "total_p75_ns": 2984629.5, "total_p95_ns": 3050748.5500000003, "total_p99_ns": 3100733.96, "total_ci_low_ns": 2937752.1842391305, "total_ci_high_ns": 2961648.864673913, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 245942.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 63.67732893030672}, {"serializer": "rapidjson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "1.23", "avg_time_ser_ns": 1028482.7916666666, "avg_time_deser_ns": 604201.0208333334, "avg_time_total_ns": 1632683.8125, "median_size_bytes": 65958.0, "avg_ops_per_sec": 612.4884636840852, "min_ops_per_sec": 583.5657383886467, "max_ops_per_sec": 651.5986647440162, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 1028482.7916666666, "ser_median_ns": 1027612.0, "ser_std_ns": 32555.661072891497, "ser_mad_ns": 21265.5, "ser_cv": 0.03165406493591859, "ser_min_ns": 950311.0, "ser_max_ns": 1099325.0, "ser_p5_ns": 970675.75, "ser_p25_ns": 1008864.0, "ser_p50_ns": 1027612.0, "ser_p75_ns": 1050895.75, "ser_p95_ns": 1077593.75, "ser_p99_ns": 1091629.05, "ser_ci_low_ns": 1022070.1111979167, "ser_ci_high_ns": 1035036.1197916667, "deser_mean_ns": 604201.0208333334, "deser_median_ns": 601926.5, "deser_std_ns": 17822.644748497354, "deser_mad_ns": 12507.5, "deser_cv": 0.029497872618480175, "deser_min_ns": 572450.0, "deser_max_ns": 652240.0, "deser_p5_ns": 577501.25, "deser_p25_ns": 590604.25, "deser_p50_ns": 601926.5, "deser_p75_ns": 615910.25, "deser_p95_ns": 635903.5, "deser_p99_ns": 642028.45, "deser_ci_low_ns": 600880.3684895834, "deser_ci_high_ns": 607694.5421874999, "total_mean_ns": 1632683.8125, "total_median_ns": 1631416.0, "total_std_ns": 41848.76569727626, "total_mad_ns": 28552.5, "total_cv": 0.025631886208999984, "total_min_ns": 1534687.0, "total_max_ns": 1713603.0, "total_p5_ns": 1564492.75, "total_p25_ns": 1604947.25, "total_p50_ns": 1631416.0, "total_p75_ns": 1663463.0, "total_p95_ns": 1696236.5, "total_p99_ns": 1712409.8, "total_ci_low_ns": 1624479.93515625, "total_ci_high_ns": 1640673.6351562499, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 351683.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 50.13039132849555}, {"serializer": "cloudpickle", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "3.1.2", "avg_time_ser_ns": 14940.91489361702, "avg_time_deser_ns": 3459.8936170212764, "avg_time_total_ns": 18400.808510638297, "median_size_bytes": 448.0, "avg_ops_per_sec": 54345.438105171146, "min_ops_per_sec": 45510.39912620034, "max_ops_per_sec": 70160.6679295587, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 14940.91489361702, "ser_median_ns": 15074.0, "ser_std_ns": 1482.5507491690855, "ser_mad_ns": 992.5, "ser_cv": 0.09922757473188293, "ser_min_ns": 11333.0, "ser_max_ns": 17850.0, "ser_p5_ns": 12124.5, "ser_p25_ns": 14075.75, "ser_p50_ns": 15074.0, "ser_p75_ns": 16056.0, "ser_p95_ns": 16948.399999999998, "ser_p99_ns": 17637.03, "ser_ci_low_ns": 14643.234042553191, "ser_ci_high_ns": 15241.57579787234, "deser_mean_ns": 3459.8936170212764, "deser_median_ns": 3460.5, "deser_std_ns": 445.5431014252569, "deser_mad_ns": 291.5, "deser_cv": 0.1287736418349296, "deser_min_ns": 2399.0, "deser_max_ns": 4424.0, "deser_p5_ns": 2726.35, "deser_p25_ns": 3169.0, "deser_p50_ns": 3460.5, "deser_p75_ns": 3741.25, "deser_p95_ns": 4178.2, "deser_p99_ns": 4343.089999999999, "deser_ci_low_ns": 3366.646010638298, "deser_ci_high_ns": 3552.4132978723405, "total_mean_ns": 18400.808510638297, "total_median_ns": 18612.0, "total_std_ns": 1716.909553398328, "total_mad_ns": 1162.5, "total_cv": 0.09330620186638586, "total_min_ns": 14253.0, "total_max_ns": 21973.0, "total_p5_ns": 15339.65, "total_p25_ns": 17323.5, "total_p50_ns": 18612.0, "total_p75_ns": 19669.0, "total_p95_ns": 20786.699999999997, "total_p99_ns": 21866.98, "total_ci_low_ns": 18044.700265957446, "total_ci_high_ns": 18738.86489361702, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 8722.0, "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.821456394604528}, {"serializer": "mashumaro", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "3.22", "avg_time_ser_ns": 1402.9473684210527, "avg_time_deser_ns": 3085.694736842105, "avg_time_total_ns": 4488.642105263158, "median_size_bytes": 410.0, "avg_ops_per_sec": 222784.5251523729, "min_ops_per_sec": 172532.7812284334, "max_ops_per_sec": 311041.9906687403, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1402.9473684210527, "ser_median_ns": 1400.0, "ser_std_ns": 219.1829299350568, "ser_mad_ns": 139.0, "ser_cv": 0.1562303297106122, "ser_min_ns": 891.0, "ser_max_ns": 1922.0, "ser_p5_ns": 1052.2, "ser_p25_ns": 1263.5, "ser_p50_ns": 1400.0, "ser_p75_ns": 1542.5, "ser_p95_ns": 1775.9999999999998, "ser_p99_ns": 1914.48, "ser_ci_low_ns": 1360.0607894736843, "ser_ci_high_ns": 1445.5015789473684, "deser_mean_ns": 3085.694736842105, "deser_median_ns": 3089.0, "deser_std_ns": 323.6155479026694, "deser_mad_ns": 205.0, "deser_cv": 0.10487607346210047, "deser_min_ns": 2324.0, "deser_max_ns": 3874.0, "deser_p5_ns": 2621.9, "deser_p25_ns": 2857.0, "deser_p50_ns": 3089.0, "deser_p75_ns": 3260.5, "deser_p95_ns": 3668.7999999999997, "deser_p99_ns": 3866.48, "deser_ci_low_ns": 3021.4697368421052, "deser_ci_high_ns": 3149.770526315789, "total_mean_ns": 4488.642105263158, "total_median_ns": 4493.0, "total_std_ns": 504.55680817562234, "total_mad_ns": 331.0, "total_cv": 0.11240744892180292, "total_min_ns": 3215.0, "total_max_ns": 5796.0, "total_p5_ns": 3663.5, "total_p25_ns": 4151.0, "total_p50_ns": 4493.0, "total_p75_ns": 4780.5, "total_p95_ns": 5380.9, "total_p99_ns": 5535.620000000001, "total_ci_low_ns": 4390.6657894736845, "total_ci_high_ns": 4588.790263157895, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 11120.0, "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.1140883482256685}, {"serializer": "msgspec-msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 1339.1170212765958, "avg_time_deser_ns": 1696.872340425532, "avg_time_total_ns": 3035.9893617021276, "median_size_bytes": 339.0, "avg_ops_per_sec": 329381.91833430866, "min_ops_per_sec": 275709.95312930795, "max_ops_per_sec": 416840.3501458941, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 1339.1170212765958, "ser_median_ns": 1339.5, "ser_std_ns": 167.63592503719127, "ser_mad_ns": 108.5, "ser_cv": 0.12518392520870356, "ser_min_ns": 927.0, "ser_max_ns": 1752.0, "ser_p5_ns": 1047.8, "ser_p25_ns": 1235.75, "ser_p50_ns": 1339.5, "ser_p75_ns": 1447.25, "ser_p95_ns": 1601.5, "ser_p99_ns": 1712.9399999999996, "ser_ci_low_ns": 1304.8327127659575, "ser_ci_high_ns": 1372.3742021276596, "deser_mean_ns": 1696.872340425532, "deser_median_ns": 1697.0, "deser_std_ns": 112.54812438237427, "deser_mad_ns": 73.0, "deser_cv": 0.06632680709154001, "deser_min_ns": 1470.0, "deser_max_ns": 1968.0, "deser_p5_ns": 1525.95, "deser_p25_ns": 1626.5, "deser_p50_ns": 1697.0, "deser_p75_ns": 1770.25, "deser_p95_ns": 1904.25, "deser_p99_ns": 1957.77, "deser_ci_low_ns": 1673.7643617021276, "deser_ci_high_ns": 1719.5662234042552, "total_mean_ns": 3035.9893617021276, "total_median_ns": 3073.0, "total_std_ns": 254.40398381783234, "total_mad_ns": 162.5, "total_cv": 0.08379607222180803, "total_min_ns": 2399.0, "total_max_ns": 3627.0, "total_p5_ns": 2605.15, "total_p25_ns": 2872.25, "total_p50_ns": 3073.0, "total_p75_ns": 3198.75, "total_p95_ns": 3401.95, "total_p99_ns": 3610.2599999999998, "total_ci_low_ns": 2983.5518617021276, "total_ci_high_ns": 3086.383244680851, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 2452.0, "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.907243605068133, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.5733281902760123}, {"serializer": "json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 8999.344086021505, "avg_time_deser_ns": 5014.333333333333, "avg_time_total_ns": 14013.677419354839, "median_size_bytes": 410.0, "avg_ops_per_sec": 71358.85678507634, "min_ops_per_sec": 55766.22797233995, "max_ops_per_sec": 88456.43520566121, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 8999.344086021505, "ser_median_ns": 9037.0, "ser_std_ns": 787.8039026392024, "ser_mad_ns": 516.0, "ser_cv": 0.08754014682724288, "ser_min_ns": 6885.0, "ser_max_ns": 10997.0, "ser_p5_ns": 7801.4, "ser_p25_ns": 8445.0, "ser_p50_ns": 9037.0, "ser_p75_ns": 9506.0, "ser_p95_ns": 10481.199999999999, "ser_p99_ns": 10819.44, "ser_ci_low_ns": 8844.91370967742, "ser_ci_high_ns": 9160.252150537635, "deser_mean_ns": 5014.333333333333, "deser_median_ns": 4944.0, "deser_std_ns": 743.8660517180165, "deser_mad_ns": 498.0, "deser_cv": 0.14834794623107422, "deser_min_ns": 3182.0, "deser_max_ns": 7035.0, "deser_p5_ns": 3820.2, "deser_p25_ns": 4541.0, "deser_p50_ns": 4944.0, "deser_p75_ns": 5553.0, "deser_p95_ns": 6159.199999999999, "deser_p99_ns": 7006.48, "deser_ci_low_ns": 4861.233602150537, "deser_ci_high_ns": 5159.914247311828, "total_mean_ns": 14013.677419354839, "total_median_ns": 13876.0, "total_std_ns": 1362.1012951645412, "total_mad_ns": 995.0, "total_cv": 0.09719799124841348, "total_min_ns": 11305.0, "total_max_ns": 17932.0, "total_p5_ns": 11940.8, "total_p25_ns": 13058.0, "total_p50_ns": 13876.0, "total_p75_ns": 14974.0, "total_p95_ns": 16000.399999999998, "total_p99_ns": 17846.44, "total_ci_low_ns": 13742.810752688172, "total_ci_high_ns": 14294.543548387097, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 4025.0, "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.671041439793846}, {"serializer": "dill", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "0.4.1", "avg_time_ser_ns": 69925.18085106384, "avg_time_deser_ns": 8690.13829787234, "avg_time_total_ns": 78615.31914893616, "median_size_bytes": 448.0, "avg_ops_per_sec": 12720.167148409168, "min_ops_per_sec": 10802.752541347536, "max_ops_per_sec": 14719.086239126274, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 69925.18085106384, "ser_median_ns": 69607.0, "ser_std_ns": 4322.121810573578, "ser_mad_ns": 2843.5, "ser_cv": 0.061810663311395946, "ser_min_ns": 60874.0, "ser_max_ns": 82254.0, "ser_p5_ns": 63190.2, "ser_p25_ns": 67010.75, "ser_p50_ns": 69607.0, "ser_p75_ns": 72729.25, "ser_p95_ns": 77090.34999999999, "ser_p99_ns": 81010.59, "ser_ci_low_ns": 69093.66728723404, "ser_ci_high_ns": 70830.92446808511, "deser_mean_ns": 8690.13829787234, "deser_median_ns": 8529.5, "deser_std_ns": 752.6905803185645, "deser_mad_ns": 499.0, "deser_cv": 0.08661433852011888, "deser_min_ns": 7065.0, "deser_max_ns": 10730.0, "deser_p5_ns": 7621.4, "deser_p25_ns": 8192.5, "deser_p50_ns": 8529.5, "deser_p75_ns": 9140.5, "deser_p95_ns": 10054.949999999999, "deser_p99_ns": 10668.619999999999, "deser_ci_low_ns": 8541.53989361702, "deser_ci_high_ns": 8844.816223404256, "total_mean_ns": 78615.31914893616, "total_median_ns": 78251.0, "total_std_ns": 4933.975125819953, "total_mad_ns": 3480.5, "total_cv": 0.06276098830652296, "total_min_ns": 67939.0, "total_max_ns": 92569.0, "total_p5_ns": 70667.35, "total_p25_ns": 75283.5, "total_p50_ns": 78251.0, "total_p75_ns": 82203.0, "total_p95_ns": 86693.2, "total_p99_ns": 90079.38999999998, "total_ci_low_ns": 77634.53218085106, "total_ci_high_ns": 79632.4579787234, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 12287.0, "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.451363850678664}, {"serializer": "protobuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "7.35.1", "avg_time_ser_ns": 1796.741573033708, "avg_time_deser_ns": 2611.752808988764, "avg_time_total_ns": 4408.494382022472, "median_size_bytes": 367.0, "avg_ops_per_sec": 226834.8132818155, "min_ops_per_sec": 191131.49847094802, "max_ops_per_sec": 295857.9881656805, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 1796.741573033708, "ser_median_ns": 1818.0, "ser_std_ns": 240.8978248179981, "ser_mad_ns": 168.0, "ser_cv": 0.13407483214809474, "ser_min_ns": 1255.0, "ser_max_ns": 2344.0, "ser_p5_ns": 1387.8, "ser_p25_ns": 1650.0, "ser_p50_ns": 1818.0, "ser_p75_ns": 1986.0, "ser_p95_ns": 2165.3999999999996, "ser_p99_ns": 2253.3600000000006, "ser_ci_low_ns": 1748.7963483146066, "ser_ci_high_ns": 1845.3834269662923, "deser_mean_ns": 2611.752808988764, "deser_median_ns": 2644.0, "deser_std_ns": 247.08170717483117, "deser_mad_ns": 155.0, "deser_cv": 0.09460378728203528, "deser_min_ns": 2047.0, "deser_max_ns": 3170.0, "deser_p5_ns": 2189.2, "deser_p25_ns": 2481.0, "deser_p50_ns": 2644.0, "deser_p75_ns": 2796.0, "deser_p95_ns": 2948.4, "deser_p99_ns": 3125.1200000000003, "deser_ci_low_ns": 2562.7738764044943, "deser_ci_high_ns": 2662.3761235955058, "total_mean_ns": 4408.494382022472, "total_median_ns": 4456.0, "total_std_ns": 470.1690731582026, "total_mad_ns": 313.0, "total_cv": 0.10665071392072514, "total_min_ns": 3380.0, "total_max_ns": 5232.0, "total_p5_ns": 3546.8, "total_p25_ns": 4126.0, "total_p50_ns": 4456.0, "total_p75_ns": 4723.0, "total_p95_ns": 5134.6, "total_p99_ns": 5218.8, "total_ci_low_ns": 4310.976123595506, "total_ci_high_ns": 4502.733146067416, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 504.0, "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.197892029935734}, {"serializer": "avro", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "1.12.2", "avg_time_ser_ns": 10470.84090909091, "avg_time_deser_ns": 9420.681818181818, "avg_time_total_ns": 19891.522727272728, "median_size_bytes": 337.0, "avg_ops_per_sec": 50272.67211820476, "min_ops_per_sec": 45298.0612429788, "max_ops_per_sec": 58896.28364450203, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 10470.84090909091, "ser_median_ns": 10494.5, "ser_std_ns": 671.4991956819181, "ser_mad_ns": 409.0, "ser_cv": 0.06413039807518367, "ser_min_ns": 8682.0, "ser_max_ns": 11812.0, "ser_p5_ns": 9163.25, "ser_p25_ns": 10097.0, "ser_p50_ns": 10494.5, "ser_p75_ns": 10947.75, "ser_p95_ns": 11513.9, "ser_p99_ns": 11696.289999999999, "ser_ci_low_ns": 10331.908238636363, "ser_ci_high_ns": 10605.27215909091, "deser_mean_ns": 9420.681818181818, "deser_median_ns": 9413.5, "deser_std_ns": 450.61318492055074, "deser_mad_ns": 273.5, "deser_cv": 0.04783233248052938, "deser_min_ns": 8194.0, "deser_max_ns": 10421.0, "deser_p5_ns": 8599.25, "deser_p25_ns": 9163.25, "deser_p50_ns": 9413.5, "deser_p75_ns": 9737.25, "deser_p95_ns": 10058.05, "deser_p99_ns": 10387.94, "deser_ci_low_ns": 9328.985511363637, "deser_ci_high_ns": 9514.705113636364, "total_mean_ns": 19891.522727272728, "total_median_ns": 19891.0, "total_std_ns": 1091.8927253239967, "total_mad_ns": 673.0, "total_cv": 0.0548923649684663, "total_min_ns": 16979.0, "total_max_ns": 22076.0, "total_p5_ns": 17854.1, "total_p25_ns": 19297.25, "total_p50_ns": 19891.0, "total_p75_ns": 20623.25, "total_p95_ns": 21501.15, "total_p99_ns": 22063.82, "total_ci_low_ns": 19658.239772727273, "total_ci_high_ns": 20130.73039772727, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 2367.0, "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.737860852545744}, {"serializer": "cbor2", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "6.1.3", "avg_time_ser_ns": 8157.978021978022, "avg_time_deser_ns": 4367.725274725275, "avg_time_total_ns": 12525.703296703297, "median_size_bytes": 344.0, "avg_ops_per_sec": 79835.83646462351, "min_ops_per_sec": 63035.80433686334, "max_ops_per_sec": 107043.45964461571, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 8157.978021978022, "ser_median_ns": 8192.0, "ser_std_ns": 871.096613828059, "ser_mad_ns": 538.0, "ser_cv": 0.10677849480364851, "ser_min_ns": 5979.0, "ser_max_ns": 10633.0, "ser_p5_ns": 6806.5, "ser_p25_ns": 7548.0, "ser_p50_ns": 8192.0, "ser_p75_ns": 8690.0, "ser_p95_ns": 9539.0, "ser_p99_ns": 10204.599999999997, "ser_ci_low_ns": 7984.174175824176, "ser_ci_high_ns": 8340.056868131867, "deser_mean_ns": 4367.725274725275, "deser_median_ns": 4391.0, "deser_std_ns": 402.17840336331847, "deser_mad_ns": 265.0, "deser_cv": 0.09207960163854743, "deser_min_ns": 3356.0, "deser_max_ns": 5446.0, "deser_p5_ns": 3734.0, "deser_p25_ns": 4115.5, "deser_p50_ns": 4391.0, "deser_p75_ns": 4650.0, "deser_p95_ns": 5015.0, "deser_p99_ns": 5252.499999999999, "deser_ci_low_ns": 4284.964010989011, "deser_ci_high_ns": 4448.710989010989, "total_mean_ns": 12525.703296703297, "total_median_ns": 12615.0, "total_std_ns": 1251.8869357405645, "total_mad_ns": 744.0, "total_cv": 0.09994544067398234, "total_min_ns": 9342.0, "total_max_ns": 15864.0, "total_p5_ns": 10397.0, "total_p25_ns": 11711.0, "total_p50_ns": 12615.0, "total_p75_ns": 13254.0, "total_p95_ns": 14425.5, "total_p99_ns": 15629.099999999999, "total_ci_low_ns": 12257.17967032967, "total_ci_high_ns": 12787.460989010988, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 2340.0, "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.083952454463716}, {"serializer": "serpyco-rs", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "1.21.0", "avg_time_ser_ns": 1766.8842105263159, "avg_time_deser_ns": 2190.842105263158, "avg_time_total_ns": 3957.7263157894736, "median_size_bytes": 410.0, "avg_ops_per_sec": 252670.32639686795, "min_ops_per_sec": 203873.59836901122, "max_ops_per_sec": 357142.85714285716, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1766.8842105263159, "ser_median_ns": 1788.0, "ser_std_ns": 223.43164327401217, "ser_mad_ns": 160.0, "ser_cv": 0.1264551700348586, "ser_min_ns": 1141.0, "ser_max_ns": 2294.0, "ser_p5_ns": 1423.2, "ser_p25_ns": 1618.5, "ser_p50_ns": 1788.0, "ser_p75_ns": 1912.5, "ser_p95_ns": 2092.3999999999996, "ser_p99_ns": 2256.4, "ser_ci_low_ns": 1721.3597368421053, "ser_ci_high_ns": 1812.2165789473684, "deser_mean_ns": 2190.842105263158, "deser_median_ns": 2210.0, "deser_std_ns": 267.46188099008566, "deser_mad_ns": 184.0, "deser_cv": 0.12208176953854868, "deser_min_ns": 1659.0, "deser_max_ns": 2886.0, "deser_p5_ns": 1800.5, "deser_p25_ns": 1989.5, "deser_p50_ns": 2210.0, "deser_p75_ns": 2358.0, "deser_p95_ns": 2658.2, "deser_p99_ns": 2879.42, "deser_ci_low_ns": 2138.286052631579, "deser_ci_high_ns": 2244.696842105263, "total_mean_ns": 3957.7263157894736, "total_median_ns": 3985.0, "total_std_ns": 460.42696286153705, "total_mad_ns": 317.0, "total_cv": 0.11633623098814316, "total_min_ns": 2800.0, "total_max_ns": 4905.0, "total_p5_ns": 3252.4, "total_p25_ns": 3621.5, "total_p50_ns": 3985.0, "total_p75_ns": 4290.5, "total_p95_ns": 4773.2, "total_p99_ns": 4852.360000000001, "total_ci_low_ns": 3866.077105263158, "total_ci_high_ns": 4052.3584210526315, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 11120.0, "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.9966883500887049, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.146664065030845}, {"serializer": "flatbuffers", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "25.12.19", "avg_time_ser_ns": 61974.81052631579, "avg_time_deser_ns": 12671.357894736842, "avg_time_total_ns": 74646.16842105263, "median_size_bytes": 656.0, "avg_ops_per_sec": 13396.534894589013, "min_ops_per_sec": 12197.501951600312, "max_ops_per_sec": 14961.548819533798, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 61974.81052631579, "ser_median_ns": 61524.0, "ser_std_ns": 2710.4305039807414, "ser_mad_ns": 1570.0, "ser_cv": 0.04373438951991368, "ser_min_ns": 55568.0, "ser_max_ns": 68517.0, "ser_p5_ns": 57814.3, "ser_p25_ns": 60226.0, "ser_p50_ns": 61524.0, "ser_p75_ns": 63624.0, "ser_p95_ns": 67264.4, "ser_p99_ns": 68085.54000000001, "ser_ci_low_ns": 61445.423421052634, "ser_ci_high_ns": 62521.890526315794, "deser_mean_ns": 12671.357894736842, "deser_median_ns": 12644.0, "deser_std_ns": 557.2946986891317, "deser_mad_ns": 381.0, "deser_cv": 0.043980661213949994, "deser_min_ns": 11270.0, "deser_max_ns": 14032.0, "deser_p5_ns": 11857.1, "deser_p25_ns": 12298.5, "deser_p50_ns": 12644.0, "deser_p75_ns": 13056.5, "deser_p95_ns": 13727.1, "deser_p99_ns": 13833.66, "deser_ci_low_ns": 12558.615789473684, "deser_ci_high_ns": 12777.467105263158, "total_mean_ns": 74646.16842105263, "total_median_ns": 74122.0, "total_std_ns": 3161.921980319954, "total_mad_ns": 2076.0, "total_cv": 0.04235879814332426, "total_min_ns": 66838.0, "total_max_ns": 81984.0, "total_p5_ns": 69869.5, "total_p25_ns": 72552.5, "total_p50_ns": 74122.0, "total_p75_ns": 76530.0, "total_p95_ns": 80386.8, "total_p99_ns": 81825.14, "total_ci_low_ns": 74014.5602631579, "total_ci_high_ns": 75297.87947368421, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 2766.0, "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 31.549919121585642}, {"serializer": "orjson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "3.11.9", "avg_time_ser_ns": 961.4494382022472, "avg_time_deser_ns": 1294.6067415730338, "avg_time_total_ns": 2256.0561797752807, "median_size_bytes": 410.0, "avg_ops_per_sec": 443251.3733322045, "min_ops_per_sec": 311235.60535325244, "max_ops_per_sec": 639795.2655150351, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 961.4494382022472, "ser_median_ns": 951.0, "ser_std_ns": 152.25069123861257, "ser_mad_ns": 94.0, "ser_cv": 0.15835538010537134, "ser_min_ns": 675.0, "ser_max_ns": 1353.0, "ser_p5_ns": 738.8, "ser_p25_ns": 865.0, "ser_p50_ns": 951.0, "ser_p75_ns": 1053.0, "ser_p95_ns": 1252.8, "ser_p99_ns": 1321.3200000000002, "ser_ci_low_ns": 929.1794943820224, "ser_ci_high_ns": 992.5797752808988, "deser_mean_ns": 1294.6067415730338, "deser_median_ns": 1256.0, "deser_std_ns": 210.6284221722273, "deser_mad_ns": 126.0, "deser_cv": 0.16269683712314031, "deser_min_ns": 888.0, "deser_max_ns": 1860.0, "deser_p5_ns": 1010.0, "deser_p25_ns": 1162.0, "deser_p50_ns": 1256.0, "deser_p75_ns": 1415.0, "deser_p95_ns": 1712.6, "deser_p99_ns": 1782.5600000000004, "deser_ci_low_ns": 1251.10702247191, "deser_ci_high_ns": 1340.2483146067416, "total_mean_ns": 2256.0561797752807, "total_median_ns": 2184.0, "total_std_ns": 344.92754046553557, "total_mad_ns": 191.0, "total_cv": 0.1528896060114482, "total_min_ns": 1563.0, "total_max_ns": 3213.0, "total_p5_ns": 1787.4, "total_p25_ns": 2048.0, "total_p50_ns": 2184.0, "total_p75_ns": 2423.0, "total_p95_ns": 2915.0, "total_p99_ns": 3029.080000000001, "total_ci_low_ns": 2183.672471910112, "total_ci_high_ns": 2325.1837078651683, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 11120.0, "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "1.2.1", "avg_time_ser_ns": 2102.14606741573, "avg_time_deser_ns": 2118.224719101124, "avg_time_total_ns": 4220.3707865168535, "median_size_bytes": 345.0, "avg_ops_per_sec": 236946.00559618545, "min_ops_per_sec": 198098.25673534072, "max_ops_per_sec": 285959.3937660852, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 2102.14606741573, "ser_median_ns": 2084.0, "ser_std_ns": 184.44551736598126, "ser_mad_ns": 120.0, "ser_cv": 0.08774153243914637, "ser_min_ns": 1714.0, "ser_max_ns": 2612.0, "ser_p5_ns": 1769.0, "ser_p25_ns": 1996.0, "ser_p50_ns": 2084.0, "ser_p75_ns": 2218.0, "ser_p95_ns": 2382.6, "ser_p99_ns": 2497.6000000000004, "ser_ci_low_ns": 2064.2505617977527, "ser_ci_high_ns": 2140.795224719101, "deser_mean_ns": 2118.224719101124, "deser_median_ns": 2110.0, "deser_std_ns": 187.55658254177524, "deser_mad_ns": 149.0, "deser_cv": 0.08854423274852799, "deser_min_ns": 1752.0, "deser_max_ns": 2533.0, "deser_p5_ns": 1829.6, "deser_p25_ns": 1970.0, "deser_p50_ns": 2110.0, "deser_p75_ns": 2272.0, "deser_p95_ns": 2422.8, "deser_p99_ns": 2509.2400000000002, "deser_ci_low_ns": 2079.587359550562, "deser_ci_high_ns": 2156.9008426966293, "total_mean_ns": 4220.3707865168535, "total_median_ns": 4226.0, "total_std_ns": 342.98831751978986, "total_mad_ns": 254.0, "total_cv": 0.08126971180247036, "total_min_ns": 3497.0, "total_max_ns": 5048.0, "total_p5_ns": 3625.8, "total_p25_ns": 3972.0, "total_p50_ns": 4226.0, "total_p75_ns": 4471.0, "total_p95_ns": 4724.4, "total_p99_ns": 4995.200000000001, "total_ci_low_ns": 4153.207303370787, "total_ci_high_ns": 4292.469943820225, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 2295.0, "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.68652182276938}, {"serializer": "pickle", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 5981.4315789473685, "avg_time_deser_ns": 3443.1263157894737, "avg_time_total_ns": 9424.557894736841, "median_size_bytes": 448.0, "avg_ops_per_sec": 106105.77293587974, "min_ops_per_sec": 78143.31483941549, "max_ops_per_sec": 165152.76630883568, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 5981.4315789473685, "ser_median_ns": 5966.0, "ser_std_ns": 1040.0403598207095, "ser_mad_ns": 825.0, "ser_cv": 0.17387816714000415, "ser_min_ns": 3753.0, "ser_max_ns": 8652.0, "ser_p5_ns": 4556.8, "ser_p25_ns": 5169.5, "ser_p50_ns": 5966.0, "ser_p75_ns": 6844.0, "ser_p95_ns": 7750.5, "ser_p99_ns": 8244.980000000001, "ser_ci_low_ns": 5771.922631578947, "ser_ci_high_ns": 6189.226315789473, "deser_mean_ns": 3443.1263157894737, "deser_median_ns": 3455.0, "deser_std_ns": 511.2853898088883, "deser_mad_ns": 288.0, "deser_cv": 0.1484945200715518, "deser_min_ns": 2302.0, "deser_max_ns": 4756.0, "deser_p5_ns": 2598.6, "deser_p25_ns": 3135.0, "deser_p50_ns": 3455.0, "deser_p75_ns": 3711.5, "deser_p95_ns": 4217.2, "deser_p99_ns": 4427.9400000000005, "deser_ci_low_ns": 3342.2294736842105, "deser_ci_high_ns": 3544.5644736842105, "total_mean_ns": 9424.557894736841, "total_median_ns": 9434.0, "total_std_ns": 1462.4108608280576, "total_mad_ns": 1087.0, "total_cv": 0.1551702347379863, "total_min_ns": 6055.0, "total_max_ns": 12797.0, "total_p5_ns": 7071.0, "total_p25_ns": 8349.5, "total_p50_ns": 9434.0, "total_p75_ns": 10497.5, "total_p95_ns": 11493.6, "total_p99_ns": 12636.26, "total_ci_low_ns": 9144.485, "total_ci_high_ns": 9721.968157894737, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 6889.0, "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.622325305504214}, {"serializer": "msgspec", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 1700.0444444444445, "avg_time_deser_ns": 1965.6444444444444, "avg_time_total_ns": 3665.688888888889, "median_size_bytes": 402.0, "avg_ops_per_sec": 272800.0193991125, "min_ops_per_sec": 217202.43266724588, "max_ops_per_sec": 343997.24802201585, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 1700.0444444444445, "ser_median_ns": 1687.0, "ser_std_ns": 195.66762181622175, "ser_mad_ns": 132.5, "ser_cv": 0.1150955920332799, "ser_min_ns": 1285.0, "ser_max_ns": 2227.0, "ser_p5_ns": 1384.9, "ser_p25_ns": 1573.75, "ser_p50_ns": 1687.0, "ser_p75_ns": 1825.0, "ser_p95_ns": 2013.8999999999999, "ser_p99_ns": 2183.39, "ser_ci_low_ns": 1659.2872222222222, "ser_ci_high_ns": 1738.604722222222, "deser_mean_ns": 1965.6444444444444, "deser_median_ns": 1954.0, "deser_std_ns": 196.32112601386234, "deser_mad_ns": 140.0, "deser_cv": 0.0998762144235852, "deser_min_ns": 1601.0, "deser_max_ns": 2442.0, "deser_p5_ns": 1649.65, "deser_p25_ns": 1853.25, "deser_p50_ns": 1954.0, "deser_p75_ns": 2099.0, "deser_p95_ns": 2303.95, "deser_p99_ns": 2440.22, "deser_ci_low_ns": 1926.6338888888888, "deser_ci_high_ns": 2006.833611111111, "total_mean_ns": 3665.688888888889, "total_median_ns": 3643.0, "total_std_ns": 365.5419139939934, "total_mad_ns": 255.0, "total_cv": 0.0997198412287501, "total_min_ns": 2907.0, "total_max_ns": 4604.0, "total_p5_ns": 3081.45, "total_p25_ns": 3427.5, "total_p50_ns": 3643.0, "total_p75_ns": 3905.75, "total_p95_ns": 4296.099999999999, "total_p99_ns": 4477.62, "total_ci_low_ns": 3590.8275000000003, "total_ci_high_ns": 3745.206388888889, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 2520.0, "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.9957553058676654, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.9490255426457264}, {"serializer": "pydantic", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "2.13.4", "avg_time_ser_ns": 5575.077777777778, "avg_time_deser_ns": 8664.866666666667, "avg_time_total_ns": 14239.944444444445, "median_size_bytes": 410.0, "avg_ops_per_sec": 70224.9930750354, "min_ops_per_sec": 57221.332112611584, "max_ops_per_sec": 90456.80687471732, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 5575.077777777778, "ser_median_ns": 5576.0, "ser_std_ns": 685.3149891342556, "ser_mad_ns": 381.0, "ser_cv": 0.12292474050602784, "ser_min_ns": 3909.0, "ser_max_ns": 7517.0, "ser_p5_ns": 4308.85, "ser_p25_ns": 5178.75, "ser_p50_ns": 5576.0, "ser_p75_ns": 5938.25, "ser_p95_ns": 6644.3, "ser_p99_ns": 6977.66, "ser_ci_low_ns": 5431.223333333333, "ser_ci_high_ns": 5710.484444444444, "deser_mean_ns": 8664.866666666667, "deser_median_ns": 8606.0, "deser_std_ns": 911.0037210545745, "deser_mad_ns": 537.5, "deser_cv": 0.10513765024904109, "deser_min_ns": 6574.0, "deser_max_ns": 10970.0, "deser_p5_ns": 7312.35, "deser_p25_ns": 8130.75, "deser_p50_ns": 8606.0, "deser_p75_ns": 9237.25, "deser_p95_ns": 10358.6, "deser_p99_ns": 10884.56, "deser_ci_low_ns": 8477.648888888889, "deser_ci_high_ns": 8858.76638888889, "total_mean_ns": 14239.944444444445, "total_median_ns": 14336.0, "total_std_ns": 1438.5353456551304, "total_mad_ns": 788.0, "total_cv": 0.10102113468682519, "total_min_ns": 11055.0, "total_max_ns": 17476.0, "total_p5_ns": 11526.4, "total_p25_ns": 13494.0, "total_p50_ns": 14336.0, "total_p75_ns": 15037.75, "total_p95_ns": 16862.2, "total_p99_ns": 17217.01, "total_ci_low_ns": 13955.1775, "total_ci_high_ns": 14552.427777777777, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 4025.0, "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.379312793195545}, {"serializer": "rapidjson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "1.23", "avg_time_ser_ns": 4200.35632183908, "avg_time_deser_ns": 3415.4942528735633, "avg_time_total_ns": 7615.850574712644, "median_size_bytes": 410.0, "avg_ops_per_sec": 131305.09720350328, "min_ops_per_sec": 107747.01002047193, "max_ops_per_sec": 165975.10373443982, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 4200.35632183908, "ser_median_ns": 4185.0, "ser_std_ns": 393.68261260231395, "ser_mad_ns": 242.0, "ser_cv": 0.09372600380482586, "ser_min_ns": 3184.0, "ser_max_ns": 5135.0, "ser_p5_ns": 3548.6, "ser_p25_ns": 3950.5, "ser_p50_ns": 4185.0, "ser_p75_ns": 4423.5, "ser_p95_ns": 4821.9, "ser_p99_ns": 5088.56, "ser_ci_low_ns": 4116.884482758621, "ser_ci_high_ns": 4282.213505747126, "deser_mean_ns": 3415.4942528735633, "deser_median_ns": 3395.0, "deser_std_ns": 278.77322089382386, "deser_mad_ns": 178.0, "deser_cv": 0.08162016980683927, "deser_min_ns": 2654.0, "deser_max_ns": 4192.0, "deser_p5_ns": 2997.5, "deser_p25_ns": 3233.0, "deser_p50_ns": 3395.0, "deser_p75_ns": 3578.0, "deser_p95_ns": 3853.3, "deser_p99_ns": 4152.44, "deser_ci_low_ns": 3358.087068965517, "deser_ci_high_ns": 3475.569252873563, "total_mean_ns": 7615.850574712644, "total_median_ns": 7632.0, "total_std_ns": 625.4540030814385, "total_mad_ns": 385.0, "total_cv": 0.08212529867092852, "total_min_ns": 6025.0, "total_max_ns": 9281.0, "total_p5_ns": 6735.2, "total_p25_ns": 7215.5, "total_p50_ns": 7632.0, "total_p75_ns": 8006.0, "total_p95_ns": 8465.5, "total_p99_ns": 9274.12, "total_ci_low_ns": 7489.880172413793, "total_ci_high_ns": 7742.1382183908045, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 3222.0, "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.59897407497282}, {"serializer": "orjson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "3.11.9", "avg_time_ser_ns": 1259.821052631579, "avg_time_deser_ns": 1592.8, "avg_time_total_ns": 2852.621052631579, "median_size_bytes": 410.0, "avg_ops_per_sec": 350554.7990951996, "min_ops_per_sec": 242954.32458697766, "max_ops_per_sec": 534188.0341880342, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1259.821052631579, "ser_median_ns": 1234.0, "ser_std_ns": 225.80183267010491, "ser_mad_ns": 144.0, "ser_cv": 0.1792332587222911, "ser_min_ns": 755.0, "ser_max_ns": 1861.0, "ser_p5_ns": 945.2, "ser_p25_ns": 1093.0, "ser_p50_ns": 1234.0, "ser_p75_ns": 1411.5, "ser_p95_ns": 1609.1, "ser_p99_ns": 1818.7, "ser_ci_low_ns": 1214.0431578947369, "ser_ci_high_ns": 1304.012631578947, "deser_mean_ns": 1592.8, "deser_median_ns": 1571.0, "deser_std_ns": 267.29808844267177, "deser_mad_ns": 175.0, "deser_cv": 0.16781647943412342, "deser_min_ns": 1117.0, "deser_max_ns": 2314.0, "deser_p5_ns": 1188.8, "deser_p25_ns": 1396.5, "deser_p50_ns": 1571.0, "deser_p75_ns": 1743.0, "deser_p95_ns": 2138.6, "deser_p99_ns": 2243.5, "deser_ci_low_ns": 1541.136052631579, "deser_ci_high_ns": 1644.925, "total_mean_ns": 2852.621052631579, "total_median_ns": 2803.0, "total_std_ns": 475.8245291394666, "total_mad_ns": 321.0, "total_cv": 0.16680257221705366, "total_min_ns": 1872.0, "total_max_ns": 4116.0, "total_p5_ns": 2137.9, "total_p25_ns": 2525.0, "total_p50_ns": 2803.0, "total_p75_ns": 3216.5, "total_p95_ns": 3709.4, "total_p99_ns": 4040.8, "total_ci_low_ns": 2757.7050000000004, "total_ci_high_ns": 2943.422894736842, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 11120.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "1.2.1", "avg_time_ser_ns": 2225.641304347826, "avg_time_deser_ns": 2794.9021739130435, "avg_time_total_ns": 5020.54347826087, "median_size_bytes": 345.0, "avg_ops_per_sec": 199181.62333023013, "min_ops_per_sec": 168890.39013680123, "max_ops_per_sec": 254194.20437214032, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 2225.641304347826, "ser_median_ns": 2255.5, "ser_std_ns": 198.73200141168297, "ser_mad_ns": 132.5, "ser_cv": 0.08929201710242204, "ser_min_ns": 1747.0, "ser_max_ns": 2717.0, "ser_p5_ns": 1849.1, "ser_p25_ns": 2113.75, "ser_p50_ns": 2255.5, "ser_p75_ns": 2369.5, "ser_p95_ns": 2499.0, "ser_p99_ns": 2634.1900000000005, "ser_ci_low_ns": 2184.0861413043476, "ser_ci_high_ns": 2263.5024456521737, "deser_mean_ns": 2794.9021739130435, "deser_median_ns": 2821.5, "deser_std_ns": 258.6154198415817, "deser_mad_ns": 174.0, "deser_cv": 0.09253111692260177, "deser_min_ns": 2171.0, "deser_max_ns": 3447.0, "deser_p5_ns": 2342.9, "deser_p25_ns": 2633.75, "deser_p50_ns": 2821.5, "deser_p75_ns": 2954.75, "deser_p95_ns": 3214.6, "deser_p99_ns": 3383.3, "deser_ci_low_ns": 2741.7002717391306, "deser_ci_high_ns": 2845.8081521739127, "total_mean_ns": 5020.54347826087, "total_median_ns": 5029.5, "total_std_ns": 428.9376453324809, "total_mad_ns": 260.5, "total_cv": 0.08543649650477005, "total_min_ns": 3934.0, "total_max_ns": 5921.0, "total_p5_ns": 4178.55, "total_p25_ns": 4776.5, "total_p50_ns": 5029.5, "total_p75_ns": 5283.25, "total_p95_ns": 5616.35, "total_p99_ns": 5906.4400000000005, "total_ci_low_ns": 4931.182336956522, "total_ci_high_ns": 5107.571739130434, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 2295.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.9988558352402745, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.762408146426716}, {"serializer": "pickle", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 6083.691489361702, "avg_time_deser_ns": 3821.574468085106, "avg_time_total_ns": 9905.265957446809, "median_size_bytes": 448.0, "avg_ops_per_sec": 100956.40079691116, "min_ops_per_sec": 75763.31540268203, "max_ops_per_sec": 141542.81670205237, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 6083.691489361702, "ser_median_ns": 6072.0, "ser_std_ns": 849.8563449334038, "ser_mad_ns": 536.0, "ser_cv": 0.1396941883755138, "ser_min_ns": 4356.0, "ser_max_ns": 8158.0, "ser_p5_ns": 4639.15, "ser_p25_ns": 5552.0, "ser_p50_ns": 6072.0, "ser_p75_ns": 6612.25, "ser_p95_ns": 7599.649999999999, "ser_p99_ns": 7995.249999999999, "ser_ci_low_ns": 5906.63164893617, "ser_ci_high_ns": 6260.341755319148, "deser_mean_ns": 3821.574468085106, "deser_median_ns": 3805.0, "deser_std_ns": 555.0629042984305, "deser_mad_ns": 392.5, "deser_cv": 0.14524456056892132, "deser_min_ns": 2579.0, "deser_max_ns": 5303.0, "deser_p5_ns": 2908.25, "deser_p25_ns": 3465.75, "deser_p50_ns": 3805.0, "deser_p75_ns": 4219.5, "deser_p95_ns": 4650.2, "deser_p99_ns": 4984.0099999999975, "deser_ci_low_ns": 3709.839095744681, "deser_ci_high_ns": 3932.998138297872, "total_mean_ns": 9905.265957446809, "total_median_ns": 9716.0, "total_std_ns": 1327.14447419555, "total_mad_ns": 985.0, "total_cv": 0.13398372945229187, "total_min_ns": 7065.0, "total_max_ns": 13199.0, "total_p5_ns": 7603.9, "total_p25_ns": 9046.5, "total_p50_ns": 9716.0, "total_p75_ns": 10854.25, "total_p95_ns": 11947.55, "total_p99_ns": 12954.409999999998, "total_ci_low_ns": 9632.605851063829, "total_ci_high_ns": 10171.609840425532, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 6889.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.060575913328975}, {"serializer": "json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 9323.741573033707, "avg_time_deser_ns": 5325.741573033708, "avg_time_total_ns": 14649.483146067416, "median_size_bytes": 410.0, "avg_ops_per_sec": 68261.79395062447, "min_ops_per_sec": 57002.79313686371, "max_ops_per_sec": 86700.19074041962, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 9323.741573033707, "ser_median_ns": 9342.0, "ser_std_ns": 710.351489950412, "ser_mad_ns": 438.0, "ser_cv": 0.07618738511638969, "ser_min_ns": 7606.0, "ser_max_ns": 11059.0, "ser_p5_ns": 7950.0, "ser_p25_ns": 8963.0, "ser_p50_ns": 9342.0, "ser_p75_ns": 9795.0, "ser_p95_ns": 10335.6, "ser_p99_ns": 10905.880000000001, "ser_ci_low_ns": 9180.441853932585, "ser_ci_high_ns": 9472.083146067416, "deser_mean_ns": 5325.741573033708, "deser_median_ns": 5254.0, "deser_std_ns": 688.3364090341603, "deser_mad_ns": 484.0, "deser_cv": 0.12924705406651238, "deser_min_ns": 3830.0, "deser_max_ns": 7015.0, "deser_p5_ns": 4183.6, "deser_p25_ns": 4886.0, "deser_p50_ns": 5254.0, "deser_p75_ns": 5845.0, "deser_p95_ns": 6375.2, "deser_p99_ns": 6807.3200000000015, "deser_ci_low_ns": 5179.49297752809, "deser_ci_high_ns": 5468.912921348314, "total_mean_ns": 14649.483146067416, "total_median_ns": 14545.0, "total_std_ns": 1263.1804746925657, "total_mad_ns": 802.0, "total_cv": 0.08622696528591593, "total_min_ns": 11534.0, "total_max_ns": 17543.0, "total_p5_ns": 12284.0, "total_p25_ns": 13918.0, "total_p50_ns": 14545.0, "total_p75_ns": 15684.0, "total_p95_ns": 16737.399999999998, "total_p99_ns": 17276.36, "total_ci_low_ns": 14391.04213483146, "total_ci_high_ns": 14913.868258426966, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 4025.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.46392377435489}, {"serializer": "serpyco-rs", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "1.21.0", "avg_time_ser_ns": 2064.6063829787236, "avg_time_deser_ns": 2488.276595744681, "avg_time_total_ns": 4552.882978723404, "median_size_bytes": 410.0, "avg_ops_per_sec": 219641.05044500678, "min_ops_per_sec": 166611.12962345884, "max_ops_per_sec": 296208.5308056872, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 2064.6063829787236, "ser_median_ns": 2072.0, "ser_std_ns": 272.17235281387207, "ser_mad_ns": 191.5, "ser_cv": 0.13182772031402604, "ser_min_ns": 1407.0, "ser_max_ns": 2771.0, "ser_p5_ns": 1585.8, "ser_p25_ns": 1875.25, "ser_p50_ns": 2072.0, "ser_p75_ns": 2240.75, "ser_p95_ns": 2449.6, "ser_p99_ns": 2706.8299999999995, "ser_ci_low_ns": 2014.3574468085105, "ser_ci_high_ns": 2117.24335106383, "deser_mean_ns": 2488.276595744681, "deser_median_ns": 2449.0, "deser_std_ns": 311.9849184477097, "deser_mad_ns": 224.5, "deser_cv": 0.12538192859316757, "deser_min_ns": 1934.0, "deser_max_ns": 3292.0, "deser_p5_ns": 2048.65, "deser_p25_ns": 2268.25, "deser_p50_ns": 2449.0, "deser_p75_ns": 2685.5, "deser_p95_ns": 3040.0499999999997, "deser_p99_ns": 3244.5699999999997, "deser_ci_low_ns": 2424.953989361702, "deser_ci_high_ns": 2548.065691489362, "total_mean_ns": 4552.882978723404, "total_median_ns": 4539.0, "total_std_ns": 564.1356478450252, "total_mad_ns": 376.0, "total_cv": 0.12390734628615577, "total_min_ns": 3376.0, "total_max_ns": 6002.0, "total_p5_ns": 3618.95, "total_p25_ns": 4174.25, "total_p50_ns": 4539.0, "total_p75_ns": 4957.5, "total_p95_ns": 5481.049999999999, "total_p99_ns": 5865.289999999999, "total_ci_low_ns": 4432.322074468085, "total_ci_high_ns": 4665.666755319148, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 11120.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.9802911534154535, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.246512693323761}, {"serializer": "protobuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "7.35.1", "avg_time_ser_ns": 2089.9662921348313, "avg_time_deser_ns": 2772.9438202247193, "avg_time_total_ns": 4862.91011235955, "median_size_bytes": 367.0, "avg_ops_per_sec": 205638.18308267812, "min_ops_per_sec": 167532.24995811694, "max_ops_per_sec": 284819.1398461977, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 2089.9662921348313, "ser_median_ns": 2130.0, "ser_std_ns": 294.1440374373738, "ser_mad_ns": 174.0, "ser_cv": 0.14074104378827823, "ser_min_ns": 1354.0, "ser_max_ns": 2711.0, "ser_p5_ns": 1461.4, "ser_p25_ns": 1921.0, "ser_p50_ns": 2130.0, "ser_p75_ns": 2268.0, "ser_p95_ns": 2528.7999999999997, "ser_p99_ns": 2610.6800000000003, "ser_ci_low_ns": 2030.4, "ser_ci_high_ns": 2147.68202247191, "deser_mean_ns": 2772.9438202247193, "deser_median_ns": 2782.0, "deser_std_ns": 292.5752956525023, "deser_mad_ns": 187.0, "deser_cv": 0.10551071879587953, "deser_min_ns": 2129.0, "deser_max_ns": 3389.0, "deser_p5_ns": 2234.4, "deser_p25_ns": 2607.0, "deser_p50_ns": 2782.0, "deser_p75_ns": 2973.0, "deser_p95_ns": 3230.7999999999997, "deser_p99_ns": 3374.04, "deser_ci_low_ns": 2708.611797752809, "deser_ci_high_ns": 2833.668820224719, "total_mean_ns": 4862.91011235955, "total_median_ns": 4909.0, "total_std_ns": 573.3667642738379, "total_mad_ns": 359.0, "total_cv": 0.11790609964526623, "total_min_ns": 3511.0, "total_max_ns": 5969.0, "total_p5_ns": 3733.8, "total_p25_ns": 4548.0, "total_p50_ns": 4909.0, "total_p75_ns": 5258.0, "total_p95_ns": 5731.2, "total_p99_ns": 5892.4400000000005, "total_ci_low_ns": 4744.233988764045, "total_ci_high_ns": 4977.8075842696635, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 504.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.9886457717327025, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.8114733494730566}, {"serializer": "flatbuffers", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "25.12.19", "avg_time_ser_ns": 62354.44565217391, "avg_time_deser_ns": 13141.673913043478, "avg_time_total_ns": 75496.11956521739, "median_size_bytes": 656.0, "avg_ops_per_sec": 13245.713895747305, "min_ops_per_sec": 12221.35314822057, "max_ops_per_sec": 14359.975875240529, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 62354.44565217391, "ser_median_ns": 61961.0, "ser_std_ns": 2382.1635579435083, "ser_mad_ns": 1522.5, "ser_cv": 0.03820358810070597, "ser_min_ns": 57484.0, "ser_max_ns": 67843.0, "ser_p5_ns": 58735.2, "ser_p25_ns": 60670.75, "ser_p50_ns": 61961.0, "ser_p75_ns": 63937.75, "ser_p95_ns": 66349.5, "ser_p99_ns": 67477.18000000001, "ser_ci_low_ns": 61861.71711956521, "ser_ci_high_ns": 62825.07201086957, "deser_mean_ns": 13141.673913043478, "deser_median_ns": 13178.5, "deser_std_ns": 483.15929411304563, "deser_mad_ns": 319.0, "deser_cv": 0.036765430135463684, "deser_min_ns": 11891.0, "deser_max_ns": 14345.0, "deser_p5_ns": 12400.2, "deser_p25_ns": 12816.0, "deser_p50_ns": 13178.5, "deser_p75_ns": 13438.0, "deser_p95_ns": 13953.5, "deser_p99_ns": 14241.26, "deser_ci_low_ns": 13045.051902173913, "deser_ci_high_ns": 13237.470108695652, "total_mean_ns": 75496.11956521739, "total_median_ns": 75102.5, "total_std_ns": 2778.152789105199, "total_mad_ns": 1925.0, "total_cv": 0.03679861700315987, "total_min_ns": 69638.0, "total_max_ns": 81824.0, "total_p5_ns": 71001.35, "total_p25_ns": 73533.5, "total_p50_ns": 75102.5, "total_p75_ns": 77385.0, "total_p95_ns": 80230.45, "total_p99_ns": 81179.72, "total_ci_low_ns": 74936.80951086957, "total_ci_high_ns": 76063.88070652174, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 2766.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 36.581115771050214}, {"serializer": "cbor2", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "6.1.3", "avg_time_ser_ns": 9183.586206896553, "avg_time_deser_ns": 4674.597701149425, "avg_time_total_ns": 13858.183908045978, "median_size_bytes": 344.0, "avg_ops_per_sec": 72159.52729703681, "min_ops_per_sec": 60916.179337231966, "max_ops_per_sec": 88222.3202470225, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 9183.586206896553, "ser_median_ns": 9250.0, "ser_std_ns": 806.4325913916803, "ser_mad_ns": 493.0, "ser_cv": 0.08781238322629101, "ser_min_ns": 7376.0, "ser_max_ns": 10934.0, "ser_p5_ns": 7609.7, "ser_p25_ns": 8762.0, "ser_p50_ns": 9250.0, "ser_p75_ns": 9727.0, "ser_p95_ns": 10479.2, "ser_p99_ns": 10757.7, "ser_ci_low_ns": 9022.379310344828, "ser_ci_high_ns": 9343.795114942528, "deser_mean_ns": 4674.597701149425, "deser_median_ns": 4705.0, "deser_std_ns": 333.60188847585056, "deser_mad_ns": 238.0, "deser_cv": 0.07136483389657725, "deser_min_ns": 3857.0, "deser_max_ns": 5482.0, "deser_p5_ns": 4096.8, "deser_p25_ns": 4441.0, "deser_p50_ns": 4705.0, "deser_p75_ns": 4905.0, "deser_p95_ns": 5198.4, "deser_p99_ns": 5332.36, "deser_ci_low_ns": 4603.39827586207, "deser_ci_high_ns": 4742.462643678161, "total_mean_ns": 13858.183908045978, "total_median_ns": 13949.0, "total_std_ns": 1114.0575381651925, "total_mad_ns": 698.0, "total_cv": 0.08038986533570083, "total_min_ns": 11335.0, "total_max_ns": 16416.0, "total_p5_ns": 11710.6, "total_p25_ns": 13262.0, "total_p50_ns": 13949.0, "total_p75_ns": 14669.0, "total_p95_ns": 15492.5, "total_p99_ns": 16090.06, "total_ci_low_ns": 13625.479022988506, "total_ci_high_ns": 14081.921551724137, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 2340.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.995566472910085}, {"serializer": "avro", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "1.12.2", "avg_time_ser_ns": 10588.581395348838, "avg_time_deser_ns": 9798.988372093023, "avg_time_total_ns": 20387.56976744186, "median_size_bytes": 337.0, "avg_ops_per_sec": 49049.49493278794, "min_ops_per_sec": 43402.77777777778, "max_ops_per_sec": 57106.96133858717, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 10588.581395348838, "ser_median_ns": 10658.5, "ser_std_ns": 733.3725875163204, "ser_mad_ns": 420.5, "ser_cv": 0.06926070265073121, "ser_min_ns": 8729.0, "ser_max_ns": 12820.0, "ser_p5_ns": 9258.75, "ser_p25_ns": 10212.0, "ser_p50_ns": 10658.5, "ser_p75_ns": 11056.75, "ser_p95_ns": 11651.5, "ser_p99_ns": 12220.750000000004, "ser_ci_low_ns": 10428.741569767442, "ser_ci_high_ns": 10742.533139534884, "deser_mean_ns": 9798.988372093023, "deser_median_ns": 9827.0, "deser_std_ns": 476.24490719366963, "deser_mad_ns": 314.0, "deser_cv": 0.048601436098239366, "deser_min_ns": 8660.0, "deser_max_ns": 10925.0, "deser_p5_ns": 8949.5, "deser_p25_ns": 9430.25, "deser_p50_ns": 9827.0, "deser_p75_ns": 10090.0, "deser_p95_ns": 10593.75, "deser_p99_ns": 10843.400000000001, "deser_ci_low_ns": 9700.429069767442, "deser_ci_high_ns": 9897.401744186047, "total_mean_ns": 20387.56976744186, "total_median_ns": 20476.5, "total_std_ns": 1150.6028551891209, "total_mad_ns": 738.5, "total_cv": 0.05643648891525012, "total_min_ns": 17511.0, "total_max_ns": 23040.0, "total_p5_ns": 18384.0, "total_p25_ns": 19776.0, "total_p50_ns": 20476.5, "total_p75_ns": 21234.75, "total_p95_ns": 22075.5, "total_p99_ns": 22491.750000000004, "total_ci_low_ns": 20145.418895348837, "total_ci_high_ns": 20628.67558139535, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 2367.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.195568545414307}, {"serializer": "msgspec", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 1993.9239130434783, "avg_time_deser_ns": 2673.032608695652, "avg_time_total_ns": 4666.95652173913, "median_size_bytes": 402.0, "avg_ops_per_sec": 214272.4054406559, "min_ops_per_sec": 173310.2253032929, "max_ops_per_sec": 289939.11278631486, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 1993.9239130434783, "ser_median_ns": 1978.0, "ser_std_ns": 211.15950086723035, "ser_mad_ns": 132.5, "ser_cv": 0.10590148374564679, "ser_min_ns": 1515.0, "ser_max_ns": 2509.0, "ser_p5_ns": 1644.85, "ser_p25_ns": 1867.0, "ser_p50_ns": 1978.0, "ser_p75_ns": 2115.5, "ser_p95_ns": 2344.65, "ser_p99_ns": 2499.9, "ser_ci_low_ns": 1951.8692934782607, "ser_ci_high_ns": 2034.6755434782608, "deser_mean_ns": 2673.032608695652, "deser_median_ns": 2659.5, "deser_std_ns": 288.670177629177, "deser_mad_ns": 190.0, "deser_cv": 0.10799351144842116, "deser_min_ns": 1934.0, "deser_max_ns": 3484.0, "deser_p5_ns": 2238.85, "deser_p25_ns": 2489.5, "deser_p50_ns": 2659.5, "deser_p75_ns": 2885.0, "deser_p95_ns": 3209.3, "deser_p99_ns": 3333.8500000000004, "deser_ci_low_ns": 2613.5255434782607, "deser_ci_high_ns": 2733.158152173913, "total_mean_ns": 4666.95652173913, "total_median_ns": 4631.0, "total_std_ns": 469.8479275382031, "total_mad_ns": 337.5, "total_cv": 0.10067544562491776, "total_min_ns": 3449.0, "total_max_ns": 5770.0, "total_p5_ns": 3962.4, "total_p25_ns": 4339.5, "total_p50_ns": 4631.0, "total_p75_ns": 4976.75, "total_p95_ns": 5495.2, "total_p99_ns": 5758.17, "total_ci_low_ns": 4571.555434782608, "total_ci_high_ns": 4763.714130434782, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 2520.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.9919908466819222, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.821088061571342}, {"serializer": "msgspec-msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 1691.2282608695652, "avg_time_deser_ns": 2377.771739130435, "avg_time_total_ns": 4069.0, "median_size_bytes": 339.0, "avg_ops_per_sec": 245760.62914721062, "min_ops_per_sec": 208029.95631370918, "max_ops_per_sec": 309981.401115933, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 1691.2282608695652, "ser_median_ns": 1645.0, "ser_std_ns": 208.0087753464214, "ser_mad_ns": 144.0, "ser_cv": 0.12299272674137506, "ser_min_ns": 1224.0, "ser_max_ns": 2242.0, "ser_p5_ns": 1416.35, "ser_p25_ns": 1542.0, "ser_p50_ns": 1645.0, "ser_p75_ns": 1829.75, "ser_p95_ns": 2046.9, "ser_p99_ns": 2228.35, "ser_ci_low_ns": 1650.4442934782608, "ser_ci_high_ns": 1734.3942934782608, "deser_mean_ns": 2377.771739130435, "deser_median_ns": 2369.0, "deser_std_ns": 169.90321118380479, "deser_mad_ns": 115.5, "deser_cv": 0.07145480299380604, "deser_min_ns": 2002.0, "deser_max_ns": 2795.0, "deser_p5_ns": 2108.7, "deser_p25_ns": 2275.75, "deser_p50_ns": 2369.0, "deser_p75_ns": 2492.25, "deser_p95_ns": 2666.9, "deser_p99_ns": 2787.7200000000003, "deser_ci_low_ns": 2343.9445652173913, "deser_ci_high_ns": 2413.111956521739, "total_mean_ns": 4069.0, "total_median_ns": 4057.5, "total_std_ns": 344.4568586521794, "total_mad_ns": 249.0, "total_cv": 0.08465393429643141, "total_min_ns": 3226.0, "total_max_ns": 4807.0, "total_p5_ns": 3517.5, "total_p25_ns": 3865.0, "total_p50_ns": 4057.5, "total_p75_ns": 4319.75, "total_p95_ns": 4706.15, "total_p99_ns": 4800.63, "total_ci_low_ns": 3999.9728260869565, "total_ci_high_ns": 4140.557880434783, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 2452.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.9487414187643021, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.9091986417557854}, {"serializer": "dill", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "0.4.1", "avg_time_ser_ns": 69471.51086956522, "avg_time_deser_ns": 7893.619565217391, "avg_time_total_ns": 77365.13043478261, "median_size_bytes": 448.0, "avg_ops_per_sec": 12925.719822097137, "min_ops_per_sec": 11516.491615994104, "max_ops_per_sec": 14989.582240342961, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 69471.51086956522, "ser_median_ns": 69528.0, "ser_std_ns": 3773.7802876189303, "ser_mad_ns": 2971.5, "ser_cv": 0.054321264074770344, "ser_min_ns": 60464.0, "ser_max_ns": 78068.0, "ser_p5_ns": 64036.2, "ser_p25_ns": 66541.0, "ser_p50_ns": 69528.0, "ser_p75_ns": 72275.25, "ser_p95_ns": 75513.75, "ser_p99_ns": 77535.65000000001, "ser_ci_low_ns": 68737.78369565218, "ser_ci_high_ns": 70226.37201086957, "deser_mean_ns": 7893.619565217391, "deser_median_ns": 7878.5, "deser_std_ns": 700.7793439048878, "deser_mad_ns": 519.0, "deser_cv": 0.08877794757082244, "deser_min_ns": 6029.0, "deser_max_ns": 9533.0, "deser_p5_ns": 6760.85, "deser_p25_ns": 7396.25, "deser_p50_ns": 7878.5, "deser_p75_ns": 8405.0, "deser_p95_ns": 9018.35, "deser_p99_ns": 9439.27, "deser_ci_low_ns": 7752.500815217391, "deser_ci_high_ns": 8036.206793478261, "total_mean_ns": 77365.13043478261, "total_median_ns": 77352.0, "total_std_ns": 4255.469740002217, "total_mad_ns": 3162.0, "total_cv": 0.055005009570681204, "total_min_ns": 66713.0, "total_max_ns": 86832.0, "total_p5_ns": 71076.4, "total_p25_ns": 74056.0, "total_p50_ns": 77352.0, "total_p75_ns": 80314.5, "total_p95_ns": 83902.15000000001, "total_p99_ns": 86417.95, "total_ci_low_ns": 76504.3320652174, "total_ci_high_ns": 78223.10489130435, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 12287.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.705507803771788}, {"serializer": "cloudpickle", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "3.1.2", "avg_time_ser_ns": 14109.226804123711, "avg_time_deser_ns": 4051.505154639175, "avg_time_total_ns": 18160.731958762888, "median_size_bytes": 448.0, "avg_ops_per_sec": 55063.859885751, "min_ops_per_sec": 43399.010502560544, "max_ops_per_sec": 71275.83749109053, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 14109.226804123711, "ser_median_ns": 14099.0, "ser_std_ns": 1672.8069194293528, "ser_mad_ns": 1102.0, "ser_cv": 0.11856120414340782, "ser_min_ns": 10221.0, "ser_max_ns": 18129.0, "ser_p5_ns": 11576.4, "ser_p25_ns": 12997.0, "ser_p50_ns": 14099.0, "ser_p75_ns": 15112.0, "ser_p95_ns": 16938.4, "ser_p99_ns": 17849.64, "ser_ci_low_ns": 13778.549226804123, "ser_ci_high_ns": 14452.636340206185, "deser_mean_ns": 4051.505154639175, "deser_median_ns": 3972.0, "deser_std_ns": 573.8509374486138, "deser_mad_ns": 407.0, "deser_cv": 0.1416389503519515, "deser_min_ns": 2759.0, "deser_max_ns": 5413.0, "deser_p5_ns": 3216.2, "deser_p25_ns": 3635.0, "deser_p50_ns": 3972.0, "deser_p75_ns": 4399.0, "deser_p95_ns": 5057.799999999998, "deser_p99_ns": 5412.04, "deser_ci_low_ns": 3932.914175257732, "deser_ci_high_ns": 4164.849484536082, "total_mean_ns": 18160.731958762888, "total_median_ns": 17832.0, "total_std_ns": 2057.038944471437, "total_mad_ns": 1528.0, "total_cv": 0.11326850421790834, "total_min_ns": 14030.0, "total_max_ns": 23042.0, "total_p5_ns": 15029.8, "total_p25_ns": 16678.0, "total_p50_ns": 17832.0, "total_p75_ns": 19708.0, "total_p95_ns": 21524.2, "total_p99_ns": 22837.519999999997, "total_ci_low_ns": 17741.029896907217, "total_ci_high_ns": 18561.125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 8722.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.165096687945551}, {"serializer": "rapidjson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "1.23", "avg_time_ser_ns": 4239.809523809524, "avg_time_deser_ns": 3761.2738095238096, "avg_time_total_ns": 8001.083333333333, "median_size_bytes": 410.0, "avg_ops_per_sec": 124983.07520856551, "min_ops_per_sec": 105130.36164844407, "max_ops_per_sec": 150670.48365225253, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 4239.809523809524, "ser_median_ns": 4245.0, "ser_std_ns": 348.865095485294, "ser_mad_ns": 199.5, "ser_cv": 0.08228320011221499, "ser_min_ns": 3418.0, "ser_max_ns": 5122.0, "ser_p5_ns": 3554.85, "ser_p25_ns": 4046.25, "ser_p50_ns": 4245.0, "ser_p75_ns": 4446.0, "ser_p95_ns": 4759.0, "ser_p99_ns": 5024.89, "ser_ci_low_ns": 4170.019642857143, "ser_ci_high_ns": 4311.500595238095, "deser_mean_ns": 3761.2738095238096, "deser_median_ns": 3766.5, "deser_std_ns": 278.6183359671791, "deser_mad_ns": 183.5, "deser_cv": 0.07407552602570382, "deser_min_ns": 3110.0, "deser_max_ns": 4390.0, "deser_p5_ns": 3281.25, "deser_p25_ns": 3591.0, "deser_p50_ns": 3766.5, "deser_p75_ns": 3958.25, "deser_p95_ns": 4214.65, "deser_p99_ns": 4326.09, "deser_ci_low_ns": 3701.8494047619047, "deser_ci_high_ns": 3817.8470238095238, "total_mean_ns": 8001.083333333333, "total_median_ns": 8005.5, "total_std_ns": 575.5688063152944, "total_mad_ns": 362.0, "total_cv": 0.07193635940740872, "total_min_ns": 6637.0, "total_max_ns": 9512.0, "total_p5_ns": 6837.85, "total_p25_ns": 7644.75, "total_p50_ns": 8005.5, "total_p75_ns": 8350.5, "total_p95_ns": 8893.15, "total_p99_ns": 9350.98, "total_ci_low_ns": 7875.436904761905, "total_ci_high_ns": 8119.095535714286, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 3222.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.765681938555698}, {"serializer": "pydantic", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "2.13.4", "avg_time_ser_ns": 5926.644444444444, "avg_time_deser_ns": 9173.177777777777, "avg_time_total_ns": 15099.822222222223, "median_size_bytes": 410.0, "avg_ops_per_sec": 66225.94526499209, "min_ops_per_sec": 53518.86540005352, "max_ops_per_sec": 93127.21177127957, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 5926.644444444444, "ser_median_ns": 5942.5, "ser_std_ns": 661.0341457313092, "ser_mad_ns": 430.0, "ser_cv": 0.11153598835357056, "ser_min_ns": 4194.0, "ser_max_ns": 7336.0, "ser_p5_ns": 4528.45, "ser_p25_ns": 5564.5, "ser_p50_ns": 5942.5, "ser_p75_ns": 6410.0, "ser_p95_ns": 6841.05, "ser_p99_ns": 7268.36, "ser_ci_low_ns": 5785.288333333334, "ser_ci_high_ns": 6054.960555555555, "deser_mean_ns": 9173.177777777777, "deser_median_ns": 9157.5, "deser_std_ns": 1071.7481317583859, "deser_mad_ns": 666.0, "deser_cv": 0.11683498976273185, "deser_min_ns": 6544.0, "deser_max_ns": 11671.0, "deser_p5_ns": 7506.7, "deser_p25_ns": 8490.75, "deser_p50_ns": 9157.5, "deser_p75_ns": 9803.75, "deser_p95_ns": 10973.4, "deser_p99_ns": 11644.3, "deser_ci_low_ns": 8943.20388888889, "deser_ci_high_ns": 9389.283333333333, "total_mean_ns": 15099.822222222223, "total_median_ns": 15237.5, "total_std_ns": 1622.623216545175, "total_mad_ns": 964.5, "total_cv": 0.10745975632462615, "total_min_ns": 10738.0, "total_max_ns": 18685.0, "total_p5_ns": 12222.95, "total_p25_ns": 14043.25, "total_p50_ns": 15237.5, "total_p75_ns": 16174.0, "total_p95_ns": 17533.3, "total_p99_ns": 18598.67, "total_ci_low_ns": 14771.424444444445, "total_ci_high_ns": 15417.396944444443, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 4025.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.320162951797494}, {"serializer": "mashumaro", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "3.22", "avg_time_ser_ns": 1622.7731958762886, "avg_time_deser_ns": 3270.721649484536, "avg_time_total_ns": 4893.494845360825, "median_size_bytes": 410.0, "avg_ops_per_sec": 204352.9280403818, "min_ops_per_sec": 159413.35883947075, "max_ops_per_sec": 279251.60569673276, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 1622.7731958762886, "ser_median_ns": 1618.0, "ser_std_ns": 234.0332733267964, "ser_mad_ns": 180.0, "ser_cv": 0.1442181038739796, "ser_min_ns": 1104.0, "ser_max_ns": 2221.0, "ser_p5_ns": 1255.4, "ser_p25_ns": 1450.0, "ser_p50_ns": 1618.0, "ser_p75_ns": 1809.0, "ser_p95_ns": 1967.3999999999994, "ser_p99_ns": 2201.7999999999997, "ser_ci_low_ns": 1576.2487113402062, "ser_ci_high_ns": 1666.6399484536082, "deser_mean_ns": 3270.721649484536, "deser_median_ns": 3217.0, "deser_std_ns": 374.0114398391902, "deser_mad_ns": 247.0, "deser_cv": 0.11435135114543733, "deser_min_ns": 2451.0, "deser_max_ns": 4053.0, "deser_p5_ns": 2701.8, "deser_p25_ns": 3023.0, "deser_p50_ns": 3217.0, "deser_p75_ns": 3543.0, "deser_p95_ns": 3869.7999999999993, "deser_p99_ns": 4052.04, "deser_ci_low_ns": 3197.0750000000003, "deser_ci_high_ns": 3341.2615979381444, "total_mean_ns": 4893.494845360825, "total_median_ns": 4859.0, "total_std_ns": 589.1558424932967, "total_mad_ns": 415.0, "total_cv": 0.1203957214856032, "total_min_ns": 3581.0, "total_max_ns": 6273.0, "total_p5_ns": 3958.4, "total_p25_ns": 4454.0, "total_p50_ns": 4859.0, "total_p75_ns": 5306.0, "total_p95_ns": 5770.0, "total_p99_ns": 6254.76, "total_ci_low_ns": 4774.573969072165, "total_ci_high_ns": 5010.632474226803, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 11120.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.9934888768312534, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.791916844524565}, {"serializer": "msgspec-msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 49659.905263157896, "avg_time_deser_ns": 86905.7052631579, "avg_time_total_ns": 136565.61052631578, "median_size_bytes": 34366.0, "avg_ops_per_sec": 7322.487675675151, "min_ops_per_sec": 6267.03851095165, "max_ops_per_sec": 8346.897041024999, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 49659.905263157896, "ser_median_ns": 44446.0, "ser_std_ns": 9988.2725691914, "ser_mad_ns": 2655.0, "ser_cv": 0.20113354055472962, "ser_min_ns": 37154.0, "ser_max_ns": 70156.0, "ser_p5_ns": 40998.3, "ser_p25_ns": 43120.5, "ser_p50_ns": 44446.0, "ser_p75_ns": 52414.0, "ser_p95_ns": 68120.4, "ser_p99_ns": 69962.36, "ser_ci_low_ns": 47834.48263157895, "ser_ci_high_ns": 51745.50105263158, "deser_mean_ns": 86905.7052631579, "deser_median_ns": 86395.0, "deser_std_ns": 2389.0829802822113, "deser_mad_ns": 1671.0, "deser_cv": 0.027490519443434284, "deser_min_ns": 82651.0, "deser_max_ns": 93232.0, "deser_p5_ns": 83922.7, "deser_p25_ns": 85086.5, "deser_p50_ns": 86395.0, "deser_p75_ns": 88617.5, "deser_p95_ns": 91139.4, "deser_p99_ns": 92948.12, "deser_ci_low_ns": 86428.15684210527, "deser_ci_high_ns": 87399.26999999999, "total_mean_ns": 136565.61052631578, "total_median_ns": 133498.0, "total_std_ns": 10123.352768864017, "total_mad_ns": 5371.0, "total_cv": 0.07412812588651868, "total_min_ns": 119805.0, "total_max_ns": 159565.0, "total_p5_ns": 125837.4, "total_p25_ns": 129172.0, "total_p50_ns": 133498.0, "total_p75_ns": 142909.5, "total_p95_ns": 154803.6, "total_p99_ns": 159045.18, "total_ci_low_ns": 134629.85105263157, "total_ci_high_ns": 138560.83368421052, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 239762.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.4545029239766082, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.7882763852812905}, {"serializer": "mashumaro", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "3.22", "avg_time_ser_ns": 71286.56989247311, "avg_time_deser_ns": 164735.82795698923, "avg_time_total_ns": 236022.39784946237, "median_size_bytes": 41564.0, "avg_ops_per_sec": 4236.886029086997, "min_ops_per_sec": 3660.2283250429164, "max_ops_per_sec": 4675.256671591271, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 71286.56989247311, "ser_median_ns": 65631.0, "ser_std_ns": 11129.30934846661, "ser_mad_ns": 3007.0, "ser_cv": 0.15612070219192456, "ser_min_ns": 59111.0, "ser_max_ns": 103789.0, "ser_p5_ns": 60737.8, "ser_p25_ns": 63878.0, "ser_p50_ns": 65631.0, "ser_p75_ns": 84133.0, "ser_p95_ns": 91645.59999999999, "ser_p99_ns": 94196.15999999999, "ser_ci_low_ns": 69052.70188172044, "ser_ci_high_ns": 73624.73333333334, "deser_mean_ns": 164735.82795698923, "deser_median_ns": 163849.0, "deser_std_ns": 5629.550985306593, "deser_mad_ns": 3892.0, "deser_cv": 0.03417320357764802, "deser_min_ns": 153462.0, "deser_max_ns": 179134.0, "deser_p5_ns": 157776.8, "deser_p25_ns": 160689.0, "deser_p50_ns": 163849.0, "deser_p75_ns": 169139.0, "deser_p95_ns": 174721.4, "deser_p99_ns": 176696.91999999998, "deser_ci_low_ns": 163666.58440860215, "deser_ci_high_ns": 165933.3239247312, "total_mean_ns": 236022.39784946237, "total_median_ns": 231581.0, "total_std_ns": 13197.345818580821, "total_mad_ns": 8519.0, "total_cv": 0.05591565011977478, "total_min_ns": 213892.0, "total_max_ns": 273207.0, "total_p5_ns": 220479.6, "total_p25_ns": 225992.0, "total_p50_ns": 231581.0, "total_p75_ns": 244759.0, "total_p95_ns": 260323.6, "total_p99_ns": 269918.0, "total_ci_low_ns": 233442.49946236558, "total_ci_high_ns": 238822.22526881722, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 762180.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.394196736871997}, {"serializer": "rapidjson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "1.23", "avg_time_ser_ns": 115308.15625, "avg_time_deser_ns": 156428.88541666666, "avg_time_total_ns": 271737.0416666667, "median_size_bytes": 41564.0, "avg_ops_per_sec": 3680.028287150767, "min_ops_per_sec": 3318.5987548617472, "max_ops_per_sec": 4017.435670811321, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 115308.15625, "ser_median_ns": 111709.5, "ser_std_ns": 11420.765587139138, "ser_mad_ns": 8329.0, "ser_cv": 0.09904560057640448, "ser_min_ns": 97384.0, "ser_max_ns": 139613.0, "ser_p5_ns": 101502.0, "ser_p25_ns": 105747.5, "ser_p50_ns": 111709.5, "ser_p75_ns": 127003.25, "ser_p95_ns": 134089.25, "ser_p99_ns": 139577.85, "ser_ci_low_ns": 112995.91614583333, "ser_ci_high_ns": 117594.24375, "deser_mean_ns": 156428.88541666666, "deser_median_ns": 155084.0, "deser_std_ns": 5881.6051888288775, "deser_mad_ns": 3717.5, "deser_cv": 0.03759922710669793, "deser_min_ns": 145192.0, "deser_max_ns": 172349.0, "deser_p5_ns": 149051.0, "deser_p25_ns": 152187.25, "deser_p50_ns": 155084.0, "deser_p75_ns": 159763.75, "deser_p95_ns": 167627.25, "deser_p99_ns": 170069.0, "deser_ci_low_ns": 155264.48645833333, "deser_ci_high_ns": 157615.29583333334, "total_mean_ns": 271737.0416666667, "total_median_ns": 270335.5, "total_std_ns": 13839.68616005334, "total_mad_ns": 10913.0, "total_cv": 0.050930436554285266, "total_min_ns": 248915.0, "total_max_ns": 301332.0, "total_p5_ns": 251876.5, "total_p25_ns": 260017.5, "total_p50_ns": 270335.5, "total_p75_ns": 283220.0, "total_p95_ns": 295837.5, "total_p99_ns": 300493.15, "total_ci_low_ns": 269036.7604166667, "total_ci_high_ns": 274515.0390625, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 337296.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.864655316777865}, {"serializer": "cbor2", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "6.1.3", "avg_time_ser_ns": 275068.40449438203, "avg_time_deser_ns": 197480.80898876404, "avg_time_total_ns": 472549.21348314604, "median_size_bytes": 34865.0, "avg_ops_per_sec": 2116.181704396522, "min_ops_per_sec": 1949.7662230298588, "max_ops_per_sec": 2299.6012491433985, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 275068.40449438203, "ser_median_ns": 271992.0, "ser_std_ns": 14075.357985693796, "ser_mad_ns": 11350.0, "ser_cv": 0.05117039163973218, "ser_min_ns": 244335.0, "ser_max_ns": 312398.0, "ser_p5_ns": 255125.2, "ser_p25_ns": 264220.0, "ser_p50_ns": 271992.0, "ser_p75_ns": 286989.0, "ser_p95_ns": 297557.2, "ser_p99_ns": 304541.36000000004, "ser_ci_low_ns": 272277.0438202247, "ser_ci_high_ns": 277936.5497191011, "deser_mean_ns": 197480.80898876404, "deser_median_ns": 196370.0, "deser_std_ns": 4575.272209677317, "deser_mad_ns": 3103.0, "deser_cv": 0.023168186484073164, "deser_min_ns": 188223.0, "deser_max_ns": 210966.0, "deser_p5_ns": 191267.0, "deser_p25_ns": 193877.0, "deser_p50_ns": 196370.0, "deser_p75_ns": 200419.0, "deser_p95_ns": 205488.4, "deser_p99_ns": 207230.40000000002, "deser_ci_low_ns": 196562.4176966292, "deser_ci_high_ns": 198440.05898876404, "total_mean_ns": 472549.21348314604, "total_median_ns": 471380.0, "total_std_ns": 15951.555819297997, "total_mad_ns": 12228.0, "total_cv": 0.033756390581458295, "total_min_ns": 434858.0, "total_max_ns": 512882.0, "total_p5_ns": 450394.8, "total_p25_ns": 459679.0, "total_p50_ns": 471380.0, "total_p75_ns": 485474.0, "total_p95_ns": 495984.6, "total_p99_ns": 505194.32000000007, "total_ci_low_ns": 469204.82696629217, "total_ci_high_ns": 475971.5539325843, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 252027.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.978400655101908}, {"serializer": "msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "1.2.1", "avg_time_ser_ns": 93186.43010752689, "avg_time_deser_ns": 85996.9247311828, "avg_time_total_ns": 179183.35483870967, "median_size_bytes": 34966.0, "avg_ops_per_sec": 5580.875527752794, "min_ops_per_sec": 4591.368227731864, "max_ops_per_sec": 6363.428105989258, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 93186.43010752689, "ser_median_ns": 87709.0, "ser_std_ns": 12148.680939668568, "ser_mad_ns": 7136.0, "ser_cv": 0.13036963563954887, "ser_min_ns": 74316.0, "ser_max_ns": 130068.0, "ser_p5_ns": 79502.6, "ser_p25_ns": 83368.0, "ser_p50_ns": 87709.0, "ser_p75_ns": 106061.0, "ser_p95_ns": 110428.59999999999, "ser_p99_ns": 118421.71999999997, "ser_ci_low_ns": 90745.78817204302, "ser_ci_high_ns": 95702.96451612902, "deser_mean_ns": 85996.9247311828, "deser_median_ns": 85754.0, "deser_std_ns": 2504.1420870428083, "deser_mad_ns": 1696.0, "deser_cv": 0.029118972508266883, "deser_min_ns": 79786.0, "deser_max_ns": 92728.0, "deser_p5_ns": 82563.0, "deser_p25_ns": 84394.0, "deser_p50_ns": 85754.0, "deser_p75_ns": 87467.0, "deser_p95_ns": 90453.8, "deser_p99_ns": 92356.31999999999, "deser_ci_low_ns": 85511.91612903227, "deser_ci_high_ns": 86491.24838709677, "total_mean_ns": 179183.35483870967, "total_median_ns": 175777.0, "total_std_ns": 12756.674341424401, "total_mad_ns": 9746.0, "total_cv": 0.07119341164756743, "total_min_ns": 157148.0, "total_max_ns": 217800.0, "total_p5_ns": 162211.8, "total_p25_ns": 168923.0, "total_p50_ns": 175777.0, "total_p75_ns": 191609.0, "total_p95_ns": 197928.19999999998, "total_p99_ns": 208266.96, "total_ci_low_ns": 176622.65403225805, "total_ci_high_ns": 181680.1948924731, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 247418.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.9997610513739545, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.066370880931995}, {"serializer": "cloudpickle", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "3.1.2", "avg_time_ser_ns": 289018.95652173914, "avg_time_deser_ns": 122276.98913043478, "avg_time_total_ns": 411295.9456521739, "median_size_bytes": 39223.0, "avg_ops_per_sec": 2431.33930827921, "min_ops_per_sec": 2103.965343482862, "max_ops_per_sec": 2772.725256199814, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 289018.95652173914, "ser_median_ns": 288627.5, "ser_std_ns": 19340.408504449126, "ser_mad_ns": 14360.0, "ser_cv": 0.06691743938600235, "ser_min_ns": 241926.0, "ser_max_ns": 339739.0, "ser_p5_ns": 261217.2, "ser_p25_ns": 273378.25, "ser_p50_ns": 288627.5, "ser_p75_ns": 302153.0, "ser_p95_ns": 324233.05, "ser_p99_ns": 339645.27, "ser_ci_low_ns": 285224.34402173915, "ser_ci_high_ns": 293100.4567934783, "deser_mean_ns": 122276.98913043478, "deser_median_ns": 121377.0, "deser_std_ns": 5243.195013056018, "deser_mad_ns": 3323.0, "deser_cv": 0.04287965422065651, "deser_min_ns": 111883.0, "deser_max_ns": 135554.0, "deser_p5_ns": 113884.55, "deser_p25_ns": 118725.0, "deser_p50_ns": 121377.0, "deser_p75_ns": 125600.25, "deser_p95_ns": 131364.7, "deser_p99_ns": 134171.71, "deser_ci_low_ns": 121254.72527173912, "deser_ci_high_ns": 123375.34836956522, "total_mean_ns": 411295.9456521739, "total_median_ns": 408915.5, "total_std_ns": 22604.45621648899, "total_mad_ns": 16567.5, "total_cv": 0.05495910294142603, "total_min_ns": 360656.0, "total_max_ns": 475293.0, "total_p5_ns": 376719.8, "total_p25_ns": 394405.75, "total_p50_ns": 408915.5, "total_p75_ns": 426804.0, "total_p95_ns": 452400.85, "total_p99_ns": 463093.54000000004, "total_ci_low_ns": 406811.4258152174, "total_ci_high_ns": 415827.21902173915, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 269441.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.419640202299613}, {"serializer": "dill", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "0.4.1", "avg_time_ser_ns": 3217354.3882352943, "avg_time_deser_ns": 134375.0823529412, "avg_time_total_ns": 3351729.470588235, "median_size_bytes": 39223.0, "avg_ops_per_sec": 298.3534347790002, "min_ops_per_sec": 287.6524881796401, "max_ops_per_sec": 309.8849583080777, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 3217354.3882352943, "ser_median_ns": 3212257.0, "ser_std_ns": 51647.23694082085, "ser_mad_ns": 28281.0, "ser_cv": 0.016052703777263762, "ser_min_ns": 3102072.0, "ser_max_ns": 3335384.0, "ser_p5_ns": 3136583.2, "ser_p25_ns": 3187751.0, "ser_p50_ns": 3212257.0, "ser_p75_ns": 3247584.0, "ser_p95_ns": 3309447.6, "ser_p99_ns": 3329244.44, "ser_ci_low_ns": 3206310.4820588236, "ser_ci_high_ns": 3228680.0114705884, "deser_mean_ns": 134375.0823529412, "deser_median_ns": 134973.0, "deser_std_ns": 6297.465849378593, "deser_mad_ns": 3894.0, "deser_cv": 0.046864833413370964, "deser_min_ns": 122482.0, "deser_max_ns": 152095.0, "deser_p5_ns": 123919.0, "deser_p25_ns": 129705.0, "deser_p50_ns": 134973.0, "deser_p75_ns": 137713.0, "deser_p95_ns": 144650.0, "deser_p99_ns": 148942.47999999998, "deser_ci_low_ns": 133030.89411764708, "deser_ci_high_ns": 135698.22, "total_mean_ns": 3351729.470588235, "total_median_ns": 3342242.0, "total_std_ns": 54783.837317047, "total_mad_ns": 25839.0, "total_cv": 0.016344946033914943, "total_min_ns": 3227004.0, "total_max_ns": 3476417.0, "total_p5_ns": 3269734.4, "total_p25_ns": 3319208.0, "total_p50_ns": 3342242.0, "total_p75_ns": 3389412.0, "total_p95_ns": 3452867.2, "total_p99_ns": 3473932.28, "total_ci_low_ns": 3339205.276176471, "total_ci_high_ns": 3363093.6588235293, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 502348.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 81.86076969101966}, {"serializer": "msgspec", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 69283.54081632652, "avg_time_deser_ns": 95332.05102040817, "avg_time_total_ns": 164615.5918367347, "median_size_bytes": 40764.0, "avg_ops_per_sec": 6074.75870810462, "min_ops_per_sec": 5162.142908764286, "max_ops_per_sec": 6784.8128748609115, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 69283.54081632652, "ser_median_ns": 63147.5, "ser_std_ns": 11346.791867024554, "ser_mad_ns": 3918.5, "ser_cv": 0.16377326755145727, "ser_min_ns": 55636.0, "ser_max_ns": 93763.0, "ser_p5_ns": 58424.65, "ser_p25_ns": 60247.25, "ser_p50_ns": 63147.5, "ser_p75_ns": 81609.5, "ser_p95_ns": 89722.95, "ser_p99_ns": 93449.69, "ser_ci_low_ns": 66970.93214285716, "ser_ci_high_ns": 71580.86096938775, "deser_mean_ns": 95332.05102040817, "deser_median_ns": 95196.5, "deser_std_ns": 2615.418329561677, "deser_mad_ns": 1826.0, "deser_cv": 0.027434827023723456, "deser_min_ns": 90467.0, "deser_max_ns": 101817.0, "deser_p5_ns": 91693.95, "deser_p25_ns": 93296.75, "deser_p50_ns": 95196.5, "deser_p75_ns": 96879.75, "deser_p95_ns": 99910.65, "deser_p99_ns": 101595.84, "deser_ci_low_ns": 94817.18163265307, "deser_ci_high_ns": 95863.17295918368, "total_mean_ns": 164615.5918367347, "total_median_ns": 161373.5, "total_std_ns": 11682.822060427128, "total_mad_ns": 7272.0, "total_cv": 0.07097032504681645, "total_min_ns": 147388.0, "total_max_ns": 193718.0, "total_p5_ns": 150526.15, "total_p25_ns": 155212.75, "total_p50_ns": 161373.5, "total_p75_ns": 175146.0, "total_p95_ns": 184571.1, "total_p99_ns": 189926.27000000002, "total_ci_low_ns": 162298.73852040817, "total_ci_high_ns": 166927.64030612246, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 249617.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.9886621315192744, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.051555452909632}, {"serializer": "avro", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "1.12.2", "avg_time_ser_ns": 482348.8453608247, "avg_time_deser_ns": 588243.2680412371, "avg_time_total_ns": 1070592.1134020619, "median_size_bytes": 34163.0, "avg_ops_per_sec": 934.0625505097935, "min_ops_per_sec": 882.2979273057092, "max_ops_per_sec": 979.3782123605365, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 482348.8453608247, "ser_median_ns": 477574.0, "ser_std_ns": 20065.01151587229, "ser_mad_ns": 12838.0, "ser_cv": 0.04159854783287085, "ser_min_ns": 444783.0, "ser_max_ns": 530040.0, "ser_p5_ns": 457470.6, "ser_p25_ns": 467314.0, "ser_p50_ns": 477574.0, "ser_p75_ns": 493846.0, "ser_p95_ns": 521738.8, "ser_p99_ns": 525321.6, "ser_ci_low_ns": 478355.4543814433, "ser_ci_high_ns": 486093.7195876289, "deser_mean_ns": 588243.2680412371, "deser_median_ns": 585436.0, "deser_std_ns": 14382.715471845788, "deser_mad_ns": 9655.0, "deser_cv": 0.02445028486214232, "deser_min_ns": 563602.0, "deser_max_ns": 624065.0, "deser_p5_ns": 571576.0, "deser_p25_ns": 576486.0, "deser_p50_ns": 585436.0, "deser_p75_ns": 597556.0, "deser_p95_ns": 616786.6, "deser_p99_ns": 623722.28, "deser_ci_low_ns": 585480.3033505154, "deser_ci_high_ns": 591158.0778350515, "total_mean_ns": 1070592.1134020619, "total_median_ns": 1066143.0, "total_std_ns": 26957.70725826703, "total_mad_ns": 19031.0, "total_cv": 0.025180184797553275, "total_min_ns": 1021056.0, "total_max_ns": 1133404.0, "total_p5_ns": 1034556.0, "total_p25_ns": 1048530.0, "total_p50_ns": 1066143.0, "total_p75_ns": 1090892.0, "total_p95_ns": 1118860.2, "total_p99_ns": 1133042.08, "total_ci_low_ns": 1065248.1420103093, "total_ci_high_ns": 1076281.856701031, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 246759.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 44.15502506744989}, {"serializer": "orjson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "3.11.9", "avg_time_ser_ns": 69730.79166666667, "avg_time_deser_ns": 105995.09375, "avg_time_total_ns": 175725.88541666666, "median_size_bytes": 41564.0, "avg_ops_per_sec": 5690.681242714372, "min_ops_per_sec": 4924.919600687519, "max_ops_per_sec": 6330.796794084504, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 69730.79166666667, "ser_median_ns": 64151.5, "ser_std_ns": 11172.700139100021, "ser_mad_ns": 4045.0, "ser_cv": 0.16022620526823725, "ser_min_ns": 57548.0, "ser_max_ns": 99764.0, "ser_p5_ns": 59010.25, "ser_p25_ns": 61245.0, "ser_p50_ns": 64151.5, "ser_p75_ns": 82422.25, "ser_p95_ns": 88391.0, "ser_p99_ns": 93436.99999999999, "ser_ci_low_ns": 67628.88463541666, "ser_ci_high_ns": 72035.69192708333, "deser_mean_ns": 105995.09375, "deser_median_ns": 105414.5, "deser_std_ns": 3911.883985681862, "deser_mad_ns": 2824.5, "deser_cv": 0.03690627412348378, "deser_min_ns": 97143.0, "deser_max_ns": 115798.0, "deser_p5_ns": 100445.25, "deser_p25_ns": 103274.75, "deser_p50_ns": 105414.5, "deser_p75_ns": 108445.25, "deser_p95_ns": 113118.75, "deser_p99_ns": 114677.95, "deser_ci_low_ns": 105216.93411458333, "deser_ci_high_ns": 106723.63619791667, "total_mean_ns": 175725.88541666666, "total_median_ns": 172684.0, "total_std_ns": 11631.5171041712, "total_mad_ns": 7249.0, "total_cv": 0.06619125620901845, "total_min_ns": 157958.0, "total_max_ns": 203049.0, "total_p5_ns": 160586.5, "total_p25_ns": 166564.5, "total_p50_ns": 172684.0, "total_p75_ns": 186340.25, "total_p95_ns": 196020.25, "total_p99_ns": 201604.05, "total_ci_low_ns": 173444.99114583334, "total_ci_high_ns": 178019.22890624998, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 777700.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.9738909280857415}, {"serializer": "protobuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "7.35.1", "avg_time_ser_ns": 53725.0, "avg_time_deser_ns": 73858.55555555556, "avg_time_total_ns": 127583.55555555556, "median_size_bytes": 37463.0, "avg_ops_per_sec": 7838.00071761251, "min_ops_per_sec": 6355.58210776525, "max_ops_per_sec": 9312.80790471135, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 53725.0, "ser_median_ns": 46413.5, "ser_std_ns": 12198.148696338209, "ser_mad_ns": 2888.0, "ser_cv": 0.22704790500396851, "ser_min_ns": 36990.0, "ser_max_ns": 81789.0, "ser_p5_ns": 40800.75, "ser_p25_ns": 44844.0, "ser_p50_ns": 46413.5, "ser_p75_ns": 67969.75, "ser_p95_ns": 72031.6, "ser_p99_ns": 76865.51999999999, "ser_ci_low_ns": 51163.30805555556, "ser_ci_high_ns": 56334.24555555555, "deser_mean_ns": 73858.55555555556, "deser_median_ns": 73609.5, "deser_std_ns": 1462.8023214742182, "deser_mad_ns": 942.5, "deser_cv": 0.019805455312132594, "deser_min_ns": 70389.0, "deser_max_ns": 77346.0, "deser_p5_ns": 71656.6, "deser_p25_ns": 72924.0, "deser_p50_ns": 73609.5, "deser_p75_ns": 74739.5, "deser_p95_ns": 76751.8, "deser_p99_ns": 77310.4, "deser_ci_low_ns": 73540.37611111111, "deser_ci_high_ns": 74179.55333333333, "total_mean_ns": 127583.55555555556, "total_median_ns": 121479.5, "total_std_ns": 12511.564965668256, "total_mad_ns": 4831.5, "total_cv": 0.09806565517936333, "total_min_ns": 107379.0, "total_max_ns": 157342.0, "total_p5_ns": 113057.55, "total_p25_ns": 118386.5, "total_p50_ns": 121479.5, "total_p75_ns": 141105.25, "total_p95_ns": 146147.85, "total_p99_ns": 152302.82, "total_ci_low_ns": 125111.34055555555, "total_ci_high_ns": 130278.29388888889, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 37600.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 203336.25806451612, "avg_time_deser_ns": 146314.70967741936, "avg_time_total_ns": 349650.96774193546, "median_size_bytes": 41564.0, "avg_ops_per_sec": 2859.9949442670018, "min_ops_per_sec": 2541.9614282772873, "max_ops_per_sec": 3164.7672788381506, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 203336.25806451612, "ser_median_ns": 201941.0, "ser_std_ns": 14597.754886121616, "ser_mad_ns": 11835.0, "ser_cv": 0.07179120450564172, "ser_min_ns": 180857.0, "ser_max_ns": 237110.0, "ser_p5_ns": 182894.8, "ser_p25_ns": 191024.0, "ser_p50_ns": 201941.0, "ser_p75_ns": 214303.0, "ser_p95_ns": 227982.59999999998, "ser_p99_ns": 235699.63999999998, "ser_ci_low_ns": 200567.73844086024, "ser_ci_high_ns": 206319.13521505374, "deser_mean_ns": 146314.70967741936, "deser_median_ns": 146210.0, "deser_std_ns": 6716.705385083823, "deser_mad_ns": 4285.0, "deser_cv": 0.045905879182565924, "deser_min_ns": 131814.0, "deser_max_ns": 164352.0, "deser_p5_ns": 135441.8, "deser_p25_ns": 141925.0, "deser_p50_ns": 146210.0, "deser_p75_ns": 149799.0, "deser_p95_ns": 159065.6, "deser_p99_ns": 164050.24, "deser_ci_low_ns": 144964.99811827956, "deser_ci_high_ns": 147649.26801075268, "total_mean_ns": 349650.96774193546, "total_median_ns": 350681.0, "total_std_ns": 18224.771683696374, "total_mad_ns": 11492.0, "total_cv": 0.05212275487579204, "total_min_ns": 315979.0, "total_max_ns": 393397.0, "total_p5_ns": 322551.2, "total_p25_ns": 337311.0, "total_p50_ns": 350681.0, "total_p75_ns": 360660.0, "total_p95_ns": 378091.8, "total_p99_ns": 391661.88, "total_ci_low_ns": 346019.24838709674, "total_ci_high_ns": 353290.02876344085, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 296945.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.105600427252297}, {"serializer": "pydantic", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "2.13.4", "avg_time_ser_ns": 305229.9680851064, "avg_time_deser_ns": 253188.17021276595, "avg_time_total_ns": 558418.1382978724, "median_size_bytes": 44863.0, "avg_ops_per_sec": 1790.772776557946, "min_ops_per_sec": 1624.252031939292, "max_ops_per_sec": 1949.88407939148, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 305229.9680851064, "ser_median_ns": 304477.0, "ser_std_ns": 16535.34796396172, "ser_mad_ns": 14110.0, "ser_cv": 0.05417340920912202, "ser_min_ns": 273628.0, "ser_max_ns": 343970.0, "ser_p5_ns": 281626.1, "ser_p25_ns": 291635.5, "ser_p50_ns": 304477.0, "ser_p75_ns": 318720.25, "ser_p95_ns": 329250.5, "ser_p99_ns": 338575.99999999994, "ser_ci_low_ns": 302018.7829787234, "ser_ci_high_ns": 308477.6164893617, "deser_mean_ns": 253188.17021276595, "deser_median_ns": 250202.0, "deser_std_ns": 10896.640822658508, "deser_mad_ns": 5846.5, "deser_cv": 0.043037717020907994, "deser_min_ns": 234479.0, "deser_max_ns": 278055.0, "deser_p5_ns": 240184.2, "deser_p25_ns": 245482.5, "deser_p50_ns": 250202.0, "deser_p75_ns": 257286.75, "deser_p95_ns": 275362.3, "deser_p99_ns": 277192.89, "deser_ci_low_ns": 250992.72925531914, "deser_ci_high_ns": 255420.88085106382, "total_mean_ns": 558418.1382978724, "total_median_ns": 559166.0, "total_std_ns": 23375.448491632607, "total_mad_ns": 18247.0, "total_cv": 0.04186011679864817, "total_min_ns": 512851.0, "total_max_ns": 615668.0, "total_p5_ns": 524350.0, "total_p25_ns": 539921.5, "total_p50_ns": 559166.0, "total_p75_ns": 574919.5, "total_p95_ns": 596538.75, "total_p99_ns": 604971.1399999999, "total_ci_low_ns": 553500.6138297872, "total_ci_high_ns": 562965.7260638297, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 324929.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.747638320336186}, {"serializer": "pickle", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 210835.25263157894, "avg_time_deser_ns": 124021.5052631579, "avg_time_total_ns": 334856.75789473683, "median_size_bytes": 39223.0, "avg_ops_per_sec": 2986.3515560714854, "min_ops_per_sec": 2654.230711041865, "max_ops_per_sec": 3379.348799486339, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 210835.25263157894, "ser_median_ns": 208652.0, "ser_std_ns": 15153.978415183212, "ser_mad_ns": 10705.0, "ser_cv": 0.0718759231486957, "ser_min_ns": 179306.0, "ser_max_ns": 244745.0, "ser_p5_ns": 189311.8, "ser_p25_ns": 199418.0, "ser_p50_ns": 208652.0, "ser_p75_ns": 220401.0, "ser_p95_ns": 237411.9, "ser_p99_ns": 243240.06, "ser_ci_low_ns": 207821.04842105263, "ser_ci_high_ns": 213625.89947368423, "deser_mean_ns": 124021.5052631579, "deser_median_ns": 123310.0, "deser_std_ns": 6493.4018374688885, "deser_mad_ns": 4691.0, "deser_cv": 0.052357063589017996, "deser_min_ns": 110681.0, "deser_max_ns": 143346.0, "deser_p5_ns": 114807.6, "deser_p25_ns": 118689.5, "deser_p50_ns": 123310.0, "deser_p75_ns": 127823.5, "deser_p95_ns": 134894.1, "deser_p99_ns": 140806.12, "deser_ci_low_ns": 122738.02763157894, "deser_ci_high_ns": 125331.55394736843, "total_mean_ns": 334856.75789473683, "total_median_ns": 334722.0, "total_std_ns": 18558.468191393767, "total_mad_ns": 14804.0, "total_cv": 0.055422110361671946, "total_min_ns": 295915.0, "total_max_ns": 376757.0, "total_p5_ns": 306463.4, "total_p25_ns": 320055.0, "total_p50_ns": 334722.0, "total_p75_ns": 347764.0, "total_p95_ns": 366322.5, "total_p99_ns": 374883.58, "total_ci_low_ns": 331080.49947368423, "total_ci_high_ns": 338671.24736842106, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 269441.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.976530599590811}, {"serializer": "serpyco-rs", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "1.21.0", "avg_time_ser_ns": 80198.9175257732, "avg_time_deser_ns": 131935.45360824742, "avg_time_total_ns": 212134.37113402062, "median_size_bytes": 41564.0, "avg_ops_per_sec": 4713.993280081085, "min_ops_per_sec": 4112.045002220504, "max_ops_per_sec": 5168.973751951287, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 80198.9175257732, "ser_median_ns": 75660.0, "ser_std_ns": 9929.12250305268, "ser_mad_ns": 4316.0, "ser_cv": 0.12380619102323667, "ser_min_ns": 69165.0, "ser_max_ns": 104433.0, "ser_p5_ns": 69930.0, "ser_p25_ns": 72219.0, "ser_p50_ns": 75660.0, "ser_p75_ns": 90436.0, "ser_p95_ns": 96745.6, "ser_p99_ns": 102043.55999999998, "ser_ci_low_ns": 78230.71546391753, "ser_ci_high_ns": 82123.7987113402, "deser_mean_ns": 131935.45360824742, "deser_median_ns": 131730.0, "deser_std_ns": 4446.22275322131, "deser_mad_ns": 3134.0, "deser_cv": 0.03369998458809537, "deser_min_ns": 122118.0, "deser_max_ns": 142497.0, "deser_p5_ns": 125410.2, "deser_p25_ns": 128520.0, "deser_p50_ns": 131730.0, "deser_p75_ns": 134573.0, "deser_p95_ns": 139205.0, "deser_p99_ns": 141513.96, "deser_ci_low_ns": 131057.30412371134, "deser_ci_high_ns": 132837.33453608246, "total_mean_ns": 212134.37113402062, "total_median_ns": 208462.0, "total_std_ns": 11863.459939487499, "total_mad_ns": 8194.0, "total_cv": 0.055924270433255215, "total_min_ns": 193462.0, "total_max_ns": 243188.0, "total_p5_ns": 197556.0, "total_p25_ns": 202987.0, "total_p50_ns": 208462.0, "total_p75_ns": 221056.0, "total_p95_ns": 231803.8, "total_p99_ns": 242690.72, "total_ci_low_ns": 209811.11649484537, "total_ci_high_ns": 214480.89922680412, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 763356.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.913846009642664}, {"serializer": "flatbuffers", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "25.12.19", "avg_time_ser_ns": 4832757.322580645, "avg_time_deser_ns": 927629.0107526882, "avg_time_total_ns": 5760386.333333333, "median_size_bytes": 67220.0, "avg_ops_per_sec": 173.59946748942014, "min_ops_per_sec": 167.89760797956887, "max_ops_per_sec": 179.18311493002093, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 4832757.322580645, "ser_median_ns": 4838826.0, "ser_std_ns": 59298.80292657892, "ser_mad_ns": 37208.0, "ser_cv": 0.012270180141160894, "ser_min_ns": 4691078.0, "ser_max_ns": 4979216.0, "ser_p5_ns": 4745314.6, "ser_p25_ns": 4783953.0, "ser_p50_ns": 4838826.0, "ser_p75_ns": 4867976.0, "ser_p95_ns": 4945299.0, "ser_p99_ns": 4972244.24, "ser_ci_low_ns": 4821488.174193548, "ser_ci_high_ns": 4844792.388978494, "deser_mean_ns": 927629.0107526882, "deser_median_ns": 924075.0, "deser_std_ns": 20281.188062540718, "deser_mad_ns": 13779.0, "deser_cv": 0.02186346893795866, "deser_min_ns": 885498.0, "deser_max_ns": 976795.0, "deser_p5_ns": 894606.2, "deser_p25_ns": 915899.0, "deser_p50_ns": 924075.0, "deser_p75_ns": 941277.0, "deser_p95_ns": 963635.8, "deser_p99_ns": 970186.64, "deser_ci_low_ns": 923700.9271505376, "deser_ci_high_ns": 931869.1763440861, "total_mean_ns": 5760386.333333333, "total_median_ns": 5758866.0, "total_std_ns": 69859.72260698318, "total_mad_ns": 48100.0, "total_cv": 0.012127610643530885, "total_min_ns": 5580883.0, "total_max_ns": 5956011.0, "total_p5_ns": 5661900.0, "total_p25_ns": 5714679.0, "total_p50_ns": 5758866.0, "total_p75_ns": 5807785.0, "total_p95_ns": 5879373.6, "total_p99_ns": 5921179.8, "total_ci_low_ns": 5746044.166935484, "total_ci_high_ns": 5774701.301612903, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 280653.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 110.91793141177686}, {"serializer": "mashumaro", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "3.22", "avg_time_ser_ns": 76508.0505050505, "avg_time_deser_ns": 176497.50505050505, "avg_time_total_ns": 253005.55555555556, "median_size_bytes": 41564.0, "avg_ops_per_sec": 3952.4823785160625, "min_ops_per_sec": 3555.92221064572, "max_ops_per_sec": 4487.544819353883, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 76508.0505050505, "ser_median_ns": 73151.0, "ser_std_ns": 12097.469763595058, "ser_mad_ns": 9035.0, "ser_cv": 0.15812021981655996, "ser_min_ns": 60930.0, "ser_max_ns": 101747.0, "ser_p5_ns": 63001.0, "ser_p25_ns": 65382.5, "ser_p50_ns": 73151.0, "ser_p75_ns": 88529.5, "ser_p95_ns": 94998.9, "ser_p99_ns": 98662.93999999999, "ser_ci_low_ns": 74208.7611111111, "ser_ci_high_ns": 78917.47575757575, "deser_mean_ns": 176497.50505050505, "deser_median_ns": 173829.0, "deser_std_ns": 9493.953191990624, "deser_mad_ns": 5193.0, "deser_cv": 0.05379086344180284, "deser_min_ns": 161114.0, "deser_max_ns": 202100.0, "deser_p5_ns": 165059.8, "deser_p25_ns": 169324.5, "deser_p50_ns": 173829.0, "deser_p75_ns": 182694.5, "deser_p95_ns": 194133.1, "deser_p99_ns": 201834.42, "deser_ci_low_ns": 174726.23888888888, "deser_ci_high_ns": 178452.76010101012, "total_mean_ns": 253005.55555555556, "total_median_ns": 255298.0, "total_std_ns": 13241.974815129923, "total_mad_ns": 8594.0, "total_cv": 0.05233867211355451, "total_min_ns": 222839.0, "total_max_ns": 281221.0, "total_p5_ns": 230892.0, "total_p25_ns": 240970.0, "total_p50_ns": 255298.0, "total_p75_ns": 262383.0, "total_p95_ns": 273067.6, "total_p99_ns": 279753.94, "total_ci_low_ns": 250430.92727272728, "total_ci_high_ns": 255445.08282828282, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 762180.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.062244066070667}, {"serializer": "msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "1.2.1", "avg_time_ser_ns": 97561.13636363637, "avg_time_deser_ns": 88565.15909090909, "avg_time_total_ns": 186126.29545454544, "median_size_bytes": 34966.0, "avg_ops_per_sec": 5372.695983433537, "min_ops_per_sec": 4823.461315840247, "max_ops_per_sec": 6211.373024006957, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 97561.13636363637, "ser_median_ns": 101850.5, "ser_std_ns": 11716.770846169647, "ser_mad_ns": 9136.0, "ser_cv": 0.12009670328662551, "ser_min_ns": 76724.0, "ser_max_ns": 115072.0, "ser_p5_ns": 80904.05, "ser_p25_ns": 86034.5, "ser_p50_ns": 101850.5, "ser_p75_ns": 107782.75, "ser_p95_ns": 111993.79999999999, "ser_p99_ns": 114387.31, "ser_ci_low_ns": 95051.39857954546, "ser_ci_high_ns": 99911.01505681819, "deser_mean_ns": 88565.15909090909, "deser_median_ns": 87826.0, "deser_std_ns": 3487.7479902316168, "deser_mad_ns": 2251.5, "deser_cv": 0.03938058742322772, "deser_min_ns": 81862.0, "deser_max_ns": 100119.0, "deser_p5_ns": 84562.8, "deser_p25_ns": 85886.25, "deser_p50_ns": 87826.0, "deser_p75_ns": 90779.25, "deser_p95_ns": 94371.4, "deser_p99_ns": 98542.56, "deser_ci_low_ns": 87866.59573863637, "deser_ci_high_ns": 89280.05539772728, "total_mean_ns": 186126.29545454544, "total_median_ns": 189421.5, "total_std_ns": 12047.238334901078, "total_mad_ns": 8044.0, "total_cv": 0.06472614901338955, "total_min_ns": 160995.0, "total_max_ns": 207320.0, "total_p5_ns": 166451.75, "total_p25_ns": 175767.0, "total_p50_ns": 189421.5, "total_p75_ns": 195050.75, "total_p95_ns": 203042.0, "total_p99_ns": 205492.13, "total_ci_low_ns": 183597.14943181816, "total_ci_high_ns": 188569.88068181818, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 247418.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.12702760933477}, {"serializer": "cloudpickle", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "3.1.2", "avg_time_ser_ns": 289194.829787234, "avg_time_deser_ns": 125367.53191489361, "avg_time_total_ns": 414562.3617021277, "median_size_bytes": 39223.0, "avg_ops_per_sec": 2412.1823213621174, "min_ops_per_sec": 2110.3635734364316, "max_ops_per_sec": 2742.6339708128894, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 289194.829787234, "ser_median_ns": 290600.5, "ser_std_ns": 17764.484945814525, "ser_mad_ns": 11818.5, "ser_cv": 0.06142739466982928, "ser_min_ns": 251393.0, "ser_max_ns": 331574.0, "ser_p5_ns": 257350.55, "ser_p25_ns": 276932.5, "ser_p50_ns": 290600.5, "ser_p75_ns": 301583.25, "ser_p95_ns": 318998.75, "ser_p99_ns": 328261.33999999997, "ser_ci_low_ns": 285569.11888297874, "ser_ci_high_ns": 292899.0936170213, "deser_mean_ns": 125367.53191489361, "deser_median_ns": 125676.5, "deser_std_ns": 6959.126315052987, "deser_mad_ns": 4720.5, "deser_cv": 0.055509797542933406, "deser_min_ns": 112189.0, "deser_max_ns": 143642.0, "deser_p5_ns": 113776.9, "deser_p25_ns": 120523.5, "deser_p50_ns": 125676.5, "deser_p75_ns": 129779.5, "deser_p95_ns": 137038.7, "deser_p99_ns": 142373.47999999998, "deser_ci_low_ns": 123953.04335106382, "deser_ci_high_ns": 126742.29654255319, "total_mean_ns": 414562.3617021277, "total_median_ns": 415324.5, "total_std_ns": 22921.11744299363, "total_mad_ns": 16244.0, "total_cv": 0.05528991428185409, "total_min_ns": 364613.0, "total_max_ns": 473852.0, "total_p5_ns": 374523.95, "total_p25_ns": 400058.75, "total_p50_ns": 415324.5, "total_p75_ns": 431717.25, "total_p95_ns": 452475.35, "total_p99_ns": 461964.73999999993, "total_ci_low_ns": 409958.12047872343, "total_ci_high_ns": 419417.71063829784, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 269441.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.02922164821068}, {"serializer": "dill", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "0.4.1", "avg_time_ser_ns": 3207399.9655172415, "avg_time_deser_ns": 133577.4827586207, "avg_time_total_ns": 3340977.4482758623, "median_size_bytes": 39223.0, "avg_ops_per_sec": 299.31360372278414, "min_ops_per_sec": 287.5070978314777, "max_ops_per_sec": 309.99543066735197, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 3207399.9655172415, "ser_median_ns": 3204550.0, "ser_std_ns": 48631.52017012153, "ser_mad_ns": 24932.0, "ser_cv": 0.015162287426875046, "ser_min_ns": 3097680.0, "ser_max_ns": 3331341.0, "ser_p5_ns": 3131510.2, "ser_p25_ns": 3183336.5, "ser_p50_ns": 3204550.0, "ser_p75_ns": 3234634.5, "ser_p95_ns": 3292776.3, "ser_p99_ns": 3325181.68, "ser_ci_low_ns": 3197009.205747126, "ser_ci_high_ns": 3217879.0548850573, "deser_mean_ns": 133577.4827586207, "deser_median_ns": 132079.0, "deser_std_ns": 8095.396837109387, "deser_mad_ns": 4663.0, "deser_cv": 0.06060450212060112, "deser_min_ns": 119756.0, "deser_max_ns": 157730.0, "deser_p5_ns": 122689.9, "deser_p25_ns": 127748.5, "deser_p50_ns": 132079.0, "deser_p75_ns": 136823.0, "deser_p95_ns": 150676.2, "deser_p99_ns": 155222.24, "deser_ci_low_ns": 131940.5158045977, "deser_ci_high_ns": 135348.5356321839, "total_mean_ns": 3340977.4482758623, "total_median_ns": 3341889.0, "total_std_ns": 51735.238444873095, "total_mad_ns": 28467.0, "total_cv": 0.015485060658392493, "total_min_ns": 3225854.0, "total_max_ns": 3478175.0, "total_p5_ns": 3253592.6, "total_p25_ns": 3312409.0, "total_p50_ns": 3341889.0, "total_p75_ns": 3369656.0, "total_p95_ns": 3435934.3, "total_p99_ns": 3466485.02, "total_ci_low_ns": 3330524.0735632186, "total_ci_high_ns": 3351541.648275862, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 502348.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 86.2469415610876}, {"serializer": "pydantic", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "2.13.4", "avg_time_ser_ns": 310960.56666666665, "avg_time_deser_ns": 254107.04444444444, "avg_time_total_ns": 565067.6111111111, "median_size_bytes": 44863.0, "avg_ops_per_sec": 1769.6997320969556, "min_ops_per_sec": 1619.1578759886984, "max_ops_per_sec": 1933.873141789645, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 310960.56666666665, "ser_median_ns": 312461.5, "ser_std_ns": 14362.573043437933, "ser_mad_ns": 9983.5, "ser_cv": 0.04618776328264752, "ser_min_ns": 278650.0, "ser_max_ns": 346703.0, "ser_p5_ns": 289026.95, "ser_p25_ns": 300143.0, "ser_p50_ns": 312461.5, "ser_p75_ns": 320929.5, "ser_p95_ns": 331741.15, "ser_p99_ns": 341079.98, "ser_ci_low_ns": 308031.19444444444, "ser_ci_high_ns": 313802.0313888889, "deser_mean_ns": 254107.04444444444, "deser_median_ns": 252358.5, "deser_std_ns": 8296.431521925706, "deser_mad_ns": 5016.5, "deser_cv": 0.03264935665228895, "deser_min_ns": 238447.0, "deser_max_ns": 278565.0, "deser_p5_ns": 244537.85, "deser_p25_ns": 248155.25, "deser_p50_ns": 252358.5, "deser_p75_ns": 258276.25, "deser_p95_ns": 270750.85, "deser_p99_ns": 276721.81, "deser_ci_low_ns": 252450.99, "deser_ci_high_ns": 255928.65527777775, "total_mean_ns": 565067.6111111111, "total_median_ns": 566748.0, "total_std_ns": 18479.656989310482, "total_mad_ns": 12572.0, "total_cv": 0.03270344402322639, "total_min_ns": 517097.0, "total_max_ns": 617605.0, "total_p5_ns": 537163.6, "total_p25_ns": 553152.75, "total_p50_ns": 566748.0, "total_p75_ns": 576101.75, "total_p95_ns": 592705.7, "total_p99_ns": 606037.67, "total_ci_low_ns": 561371.5030555555, "total_ci_high_ns": 568912.7513888889, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 324929.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.100825333342055}, {"serializer": "orjson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "3.11.9", "avg_time_ser_ns": 75684.22471910113, "avg_time_deser_ns": 113187.29213483146, "avg_time_total_ns": 188871.51685393258, "median_size_bytes": 41564.0, "avg_ops_per_sec": 5294.6045897083, "min_ops_per_sec": 4594.2580962313305, "max_ops_per_sec": 6378.974898733773, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 75684.22471910113, "ser_median_ns": 71635.0, "ser_std_ns": 13137.130762697012, "ser_mad_ns": 11133.0, "ser_cv": 0.17357819032242094, "ser_min_ns": 57278.0, "ser_max_ns": 99540.0, "ser_p5_ns": 60748.2, "ser_p25_ns": 63577.0, "ser_p50_ns": 71635.0, "ser_p75_ns": 87128.0, "ser_p95_ns": 96530.2, "ser_p99_ns": 98887.04000000001, "ser_ci_low_ns": 73003.09016853933, "ser_ci_high_ns": 78348.30168539326, "deser_mean_ns": 113187.29213483146, "deser_median_ns": 112492.0, "deser_std_ns": 5746.611610731713, "deser_mad_ns": 3352.0, "deser_cv": 0.050770819783251014, "deser_min_ns": 99487.0, "deser_max_ns": 128693.0, "deser_p5_ns": 106444.2, "deser_p25_ns": 109377.0, "deser_p50_ns": 112492.0, "deser_p75_ns": 115844.0, "deser_p95_ns": 124260.59999999999, "deser_p99_ns": 128430.76, "deser_ci_low_ns": 111996.83398876405, "deser_ci_high_ns": 114360.6904494382, "total_mean_ns": 188871.51685393258, "total_median_ns": 190719.0, "total_std_ns": 14061.085193566514, "total_mad_ns": 10497.0, "total_cv": 0.07444788620213669, "total_min_ns": 156765.0, "total_max_ns": 217663.0, "total_p5_ns": 168621.8, "total_p25_ns": 175967.0, "total_p50_ns": 190719.0, "total_p75_ns": 198019.0, "total_p95_ns": 212168.6, "total_p99_ns": 216647.48, "total_ci_low_ns": 186010.7393258427, "total_ci_high_ns": 191752.03792134832, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 777700.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.9995218742529285, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.026932142356585}, {"serializer": "pickle", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 212071.412371134, "avg_time_deser_ns": 125844.35051546391, "avg_time_total_ns": 337915.76288659795, "median_size_bytes": 39223.0, "avg_ops_per_sec": 2959.317409337879, "min_ops_per_sec": 2636.6718872770034, "max_ops_per_sec": 3258.1249490917976, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 212071.412371134, "ser_median_ns": 211866.0, "ser_std_ns": 13316.015264954905, "ser_mad_ns": 9418.0, "ser_cv": 0.06279024181557914, "ser_min_ns": 181399.0, "ser_max_ns": 249506.0, "ser_p5_ns": 191031.4, "ser_p25_ns": 202691.0, "ser_p50_ns": 211866.0, "ser_p75_ns": 221284.0, "ser_p95_ns": 234024.0, "ser_p99_ns": 238337.3599999999, "ser_ci_low_ns": 209405.22989690723, "ser_ci_high_ns": 214647.64768041237, "deser_mean_ns": 125844.35051546391, "deser_median_ns": 126313.0, "deser_std_ns": 5741.144067970464, "deser_mad_ns": 4052.0, "deser_cv": 0.0456209916810289, "deser_min_ns": 112560.0, "deser_max_ns": 139824.0, "deser_p5_ns": 117156.8, "deser_p25_ns": 120893.0, "deser_p50_ns": 126313.0, "deser_p75_ns": 129964.0, "deser_p95_ns": 134064.8, "deser_p99_ns": 137653.43999999997, "deser_ci_low_ns": 124674.43711340206, "deser_ci_high_ns": 126968.85335051546, "total_mean_ns": 337915.76288659795, "total_median_ns": 337684.0, "total_std_ns": 16252.997380466213, "total_mad_ns": 11150.0, "total_cv": 0.048097778101936606, "total_min_ns": 306925.0, "total_max_ns": 379266.0, "total_p5_ns": 310828.6, "total_p25_ns": 325734.0, "total_p50_ns": 337684.0, "total_p75_ns": 348380.0, "total_p95_ns": 362786.6, "total_p99_ns": 375534.48, "total_ci_low_ns": 334610.90592783503, "total_ci_high_ns": 341114.1605670103, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 269441.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.830985588869357}, {"serializer": "cbor2", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "6.1.3", "avg_time_ser_ns": 289446.8072289157, "avg_time_deser_ns": 199790.85542168675, "avg_time_total_ns": 489237.6626506024, "median_size_bytes": 34865.0, "avg_ops_per_sec": 2043.9963566626868, "min_ops_per_sec": 1950.2985907142383, "max_ops_per_sec": 2146.5169542641634, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 289446.8072289157, "ser_median_ns": 291767.0, "ser_std_ns": 9584.82929534599, "ser_mad_ns": 4145.0, "ser_cv": 0.03311430306351801, "ser_min_ns": 268022.0, "ser_max_ns": 309449.0, "ser_p5_ns": 271936.3, "ser_p25_ns": 285081.5, "ser_p50_ns": 291767.0, "ser_p75_ns": 295096.5, "ser_p95_ns": 303844.2, "ser_p99_ns": 307853.27999999997, "ser_ci_low_ns": 287502.7442771084, "ser_ci_high_ns": 291398.406626506, "deser_mean_ns": 199790.85542168675, "deser_median_ns": 199875.0, "deser_std_ns": 4598.379929805953, "deser_mad_ns": 3646.0, "deser_cv": 0.023015967973611325, "deser_min_ns": 192121.0, "deser_max_ns": 213458.0, "deser_p5_ns": 193567.4, "deser_p25_ns": 196005.0, "deser_p50_ns": 199875.0, "deser_p75_ns": 203249.0, "deser_p95_ns": 206494.9, "deser_p99_ns": 211446.53999999998, "deser_ci_low_ns": 198869.89518072287, "deser_ci_high_ns": 200805.29367469877, "total_mean_ns": 489237.6626506024, "total_median_ns": 490284.0, "total_std_ns": 10826.532359605639, "total_mad_ns": 6634.0, "total_cv": 0.022129392698324608, "total_min_ns": 465871.0, "total_max_ns": 512742.0, "total_p5_ns": 470641.2, "total_p25_ns": 482269.0, "total_p50_ns": 490284.0, "total_p75_ns": 496238.0, "total_p95_ns": 506450.0, "total_p99_ns": 512252.46, "total_ci_low_ns": 486830.3189759036, "total_ci_high_ns": 491422.3445783133, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 252027.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.690016374067877}, {"serializer": "json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 207050.35714285713, "avg_time_deser_ns": 151151.24489795917, "avg_time_total_ns": 358201.60204081633, "median_size_bytes": 41564.0, "avg_ops_per_sec": 2791.7239741603726, "min_ops_per_sec": 2438.941109327974, "max_ops_per_sec": 3082.585549455461, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 207050.35714285713, "ser_median_ns": 208116.0, "ser_std_ns": 14394.01607001018, "ser_mad_ns": 10973.0, "ser_cv": 0.06951939744822, "ser_min_ns": 176472.0, "ser_max_ns": 238458.0, "ser_p5_ns": 186939.4, "ser_p25_ns": 194242.25, "ser_p50_ns": 208116.0, "ser_p75_ns": 217510.5, "ser_p95_ns": 233160.75, "ser_p99_ns": 237054.41, "ser_ci_low_ns": 204268.23265306122, "ser_ci_high_ns": 210018.3025510204, "deser_mean_ns": 151151.24489795917, "deser_median_ns": 150520.0, "deser_std_ns": 7181.000233378205, "deser_mad_ns": 5200.0, "deser_cv": 0.04750870717754282, "deser_min_ns": 135929.0, "deser_max_ns": 171556.0, "deser_p5_ns": 141660.65, "deser_p25_ns": 145531.5, "deser_p50_ns": 150520.0, "deser_p75_ns": 155870.75, "deser_p95_ns": 163841.19999999998, "deser_p99_ns": 170273.66, "deser_ci_low_ns": 149706.7839285714, "deser_ci_high_ns": 152653.15484693876, "total_mean_ns": 358201.60204081633, "total_median_ns": 358226.0, "total_std_ns": 18854.950330722604, "total_mad_ns": 13538.0, "total_cv": 0.05263781686988134, "total_min_ns": 324403.0, "total_max_ns": 410014.0, "total_p5_ns": 332125.55, "total_p25_ns": 342731.0, "total_p50_ns": 358226.0, "total_p75_ns": 370421.5, "total_p95_ns": 389653.3, "total_p99_ns": 400508.0, "total_ci_low_ns": 354496.06836734695, "total_ci_high_ns": 361855.98647959187, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 296945.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.778263843411843}, {"serializer": "serpyco-rs", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "1.21.0", "avg_time_ser_ns": 86903.85393258427, "avg_time_deser_ns": 139278.8764044944, "avg_time_total_ns": 226182.73033707865, "median_size_bytes": 41564.0, "avg_ops_per_sec": 4421.204034939831, "min_ops_per_sec": 3934.7771342231176, "max_ops_per_sec": 5063.316776287475, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 86903.85393258427, "ser_median_ns": 83456.0, "ser_std_ns": 11859.057092625415, "ser_mad_ns": 11020.0, "ser_cv": 0.13646180872283395, "ser_min_ns": 70493.0, "ser_max_ns": 109207.0, "ser_p5_ns": 72009.2, "ser_p25_ns": 75821.0, "ser_p50_ns": 83456.0, "ser_p75_ns": 97525.0, "ser_p95_ns": 103736.2, "ser_p99_ns": 106940.12000000001, "ser_ci_low_ns": 84427.55365168539, "ser_ci_high_ns": 89324.20337078652, "deser_mean_ns": 139278.8764044944, "deser_median_ns": 138786.0, "deser_std_ns": 5225.994176448902, "deser_mad_ns": 3092.0, "deser_cv": 0.03752180022813757, "deser_min_ns": 125464.0, "deser_max_ns": 153973.0, "deser_p5_ns": 131913.2, "deser_p25_ns": 136390.0, "deser_p50_ns": 138786.0, "deser_p75_ns": 142748.0, "deser_p95_ns": 149138.8, "deser_p99_ns": 151166.68000000002, "deser_ci_low_ns": 138254.9609550562, "deser_ci_high_ns": 140395.34915730337, "total_mean_ns": 226182.73033707865, "total_median_ns": 227108.0, "total_std_ns": 12794.539648335114, "total_mad_ns": 9921.0, "total_cv": 0.05656727031841686, "total_min_ns": 197499.0, "total_max_ns": 254144.0, "total_p5_ns": 206863.0, "total_p25_ns": 216064.0, "total_p50_ns": 227108.0, "total_p75_ns": 235599.0, "total_p95_ns": 247879.6, "total_p99_ns": 250767.44000000003, "total_ci_low_ns": 223536.86994382023, "total_ci_high_ns": 228838.06348314608, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 763356.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.134504175973056}, {"serializer": "rapidjson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "1.23", "avg_time_ser_ns": 118011.0, "avg_time_deser_ns": 157813.16129032258, "avg_time_total_ns": 275824.1612903226, "median_size_bytes": 41564.0, "avg_ops_per_sec": 3625.498199004531, "min_ops_per_sec": 3180.4997201160245, "max_ops_per_sec": 4073.153843020651, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 118011.0, "ser_median_ns": 117217.0, "ser_std_ns": 12394.326272971419, "ser_mad_ns": 11332.0, "ser_cv": 0.10502687268959181, "ser_min_ns": 99839.0, "ser_max_ns": 146454.0, "ser_p5_ns": 103492.0, "ser_p25_ns": 105893.0, "ser_p50_ns": 117217.0, "ser_p75_ns": 128810.0, "ser_p95_ns": 136203.39999999997, "ser_p99_ns": 145004.08, "ser_ci_low_ns": 115477.70537634408, "ser_ci_high_ns": 120520.11236559138, "deser_mean_ns": 157813.16129032258, "deser_median_ns": 156145.0, "deser_std_ns": 5884.50279619997, "deser_mad_ns": 2953.0, "deser_cv": 0.03728778226154716, "deser_min_ns": 145671.0, "deser_max_ns": 172139.0, "deser_p5_ns": 149259.4, "deser_p25_ns": 154419.0, "deser_p50_ns": 156145.0, "deser_p75_ns": 161401.0, "deser_p95_ns": 169249.0, "deser_p99_ns": 171549.28, "deser_ci_low_ns": 156642.0688172043, "deser_ci_high_ns": 159020.3672043011, "total_mean_ns": 275824.1612903226, "total_median_ns": 273390.0, "total_std_ns": 14725.917903250305, "total_mad_ns": 11125.0, "total_cv": 0.053388788836922565, "total_min_ns": 245510.0, "total_max_ns": 314416.0, "total_p5_ns": 256847.6, "total_p25_ns": 263754.0, "total_p50_ns": 273390.0, "total_p75_ns": 286082.0, "total_p95_ns": 300377.39999999997, "total_p99_ns": 313794.08, "total_ci_low_ns": 273109.9129032258, "total_ci_high_ns": 278772.54112903227, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 337296.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.209110467630596}, {"serializer": "avro", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "1.12.2", "avg_time_ser_ns": 481972.85714285716, "avg_time_deser_ns": 585585.3626373627, "avg_time_total_ns": 1067558.2197802197, "median_size_bytes": 34163.0, "avg_ops_per_sec": 936.7170627995089, "min_ops_per_sec": 892.3520078812529, "max_ops_per_sec": 986.7479746997819, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 481972.85714285716, "ser_median_ns": 481907.0, "ser_std_ns": 15070.76553210916, "ser_mad_ns": 9854.0, "ser_cv": 0.031268909252377616, "ser_min_ns": 453779.0, "ser_max_ns": 520363.0, "ser_p5_ns": 459514.5, "ser_p25_ns": 471363.5, "ser_p50_ns": 481907.0, "ser_p75_ns": 488475.0, "ser_p95_ns": 508486.0, "ser_p99_ns": 518906.8, "ser_ci_low_ns": 478925.17225274723, "ser_ci_high_ns": 485138.4162087912, "deser_mean_ns": 585585.3626373627, "deser_median_ns": 584126.0, "deser_std_ns": 11525.360074892318, "deser_mad_ns": 6753.0, "deser_cv": 0.01968177623666059, "deser_min_ns": 559651.0, "deser_max_ns": 614122.0, "deser_p5_ns": 570325.5, "deser_p25_ns": 578052.0, "deser_p50_ns": 584126.0, "deser_p75_ns": 592017.0, "deser_p95_ns": 608929.5, "deser_p99_ns": 611430.1, "deser_ci_low_ns": 583201.4494505494, "deser_ci_high_ns": 588103.492032967, "total_mean_ns": 1067558.2197802197, "total_median_ns": 1067701.0, "total_std_ns": 21240.458304221735, "total_mad_ns": 14564.0, "total_cv": 0.01989629971524602, "total_min_ns": 1013430.0, "total_max_ns": 1120634.0, "total_p5_ns": 1035138.0, "total_p25_ns": 1052457.5, "total_p50_ns": 1067701.0, "total_p75_ns": 1081108.0, "total_p95_ns": 1102040.5, "total_p99_ns": 1113952.4, "total_ci_low_ns": 1063250.6178571428, "total_ci_high_ns": 1072065.4445054943, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 246759.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 53.234825603995326}, {"serializer": "msgspec", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 72668.46511627907, "avg_time_deser_ns": 96214.69767441861, "avg_time_total_ns": 168883.16279069768, "median_size_bytes": 40764.0, "avg_ops_per_sec": 5921.253388884788, "min_ops_per_sec": 5154.9580386415655, "max_ops_per_sec": 6739.770713000344, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 72668.46511627907, "ser_median_ns": 79199.5, "ser_std_ns": 11920.835252711875, "ser_mad_ns": 8995.0, "ser_cv": 0.16404413157257383, "ser_min_ns": 56464.0, "ser_max_ns": 94415.0, "ser_p5_ns": 57507.5, "ser_p25_ns": 60411.5, "ser_p50_ns": 79199.5, "ser_p75_ns": 83496.25, "ser_p95_ns": 86491.75, "ser_p99_ns": 94121.75, "ser_ci_low_ns": 70118.39505813953, "ser_ci_high_ns": 75201.34941860464, "deser_mean_ns": 96214.69767441861, "deser_median_ns": 95838.0, "deser_std_ns": 4037.535188904437, "deser_mad_ns": 2491.5, "deser_cv": 0.04196380892415286, "deser_min_ns": 90435.0, "deser_max_ns": 107740.0, "deser_p5_ns": 90781.5, "deser_p25_ns": 93051.0, "deser_p50_ns": 95838.0, "deser_p75_ns": 98048.75, "deser_p95_ns": 104178.0, "deser_p99_ns": 107281.0, "deser_ci_low_ns": 95383.75348837208, "deser_ci_high_ns": 97050.9351744186, "total_mean_ns": 168883.16279069768, "total_median_ns": 172245.0, "total_std_ns": 11936.709462691837, "total_mad_ns": 9102.5, "total_cv": 0.07068028135809716, "total_min_ns": 148373.0, "total_max_ns": 193988.0, "total_p5_ns": 150782.75, "total_p25_ns": 157836.0, "total_p50_ns": 172245.0, "total_p75_ns": 179067.0, "total_p95_ns": 182752.0, "total_p99_ns": 192270.15000000002, "total_ci_low_ns": 166459.75377906978, "total_ci_high_ns": 171412.73895348838, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 249617.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.9725383473527957, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.7546510504471167}, {"serializer": "msgspec-msgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 52627.20652173913, "avg_time_deser_ns": 88418.55434782608, "avg_time_total_ns": 141045.76086956522, "median_size_bytes": 34366.0, "avg_ops_per_sec": 7089.897589511884, "min_ops_per_sec": 5938.136494005451, "max_ops_per_sec": 8040.265650377089, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 52627.20652173913, "ser_median_ns": 45983.0, "ser_std_ns": 11990.460357894633, "ser_mad_ns": 4547.0, "ser_cv": 0.22783767466247026, "ser_min_ns": 38858.0, "ser_max_ns": 76684.0, "ser_p5_ns": 40701.0, "ser_p25_ns": 42761.75, "ser_p50_ns": 45983.0, "ser_p75_ns": 66150.75, "ser_p95_ns": 72225.65000000001, "ser_p99_ns": 75384.52, "ser_ci_low_ns": 50184.176086956526, "ser_ci_high_ns": 54974.90597826087, "deser_mean_ns": 88418.55434782608, "deser_median_ns": 87889.0, "deser_std_ns": 2524.893275360151, "deser_mad_ns": 1582.5, "deser_cv": 0.028556147450992903, "deser_min_ns": 83094.0, "deser_max_ns": 94146.0, "deser_p5_ns": 84380.85, "deser_p25_ns": 86752.25, "deser_p50_ns": 87889.0, "deser_p75_ns": 90097.25, "deser_p95_ns": 92818.1, "deser_p99_ns": 94066.83, "deser_ci_low_ns": 87901.18695652173, "deser_ci_high_ns": 88950.10815217391, "total_mean_ns": 141045.76086956522, "total_median_ns": 136829.5, "total_std_ns": 12364.774979506767, "total_mad_ns": 8098.5, "total_cv": 0.08766498832206188, "total_min_ns": 124374.0, "total_max_ns": 168403.0, "total_p5_ns": 125984.9, "total_p25_ns": 130277.25, "total_p50_ns": 136829.5, "total_p75_ns": 152534.5, "total_p95_ns": 161370.15000000002, "total_p99_ns": 168314.73, "total_ci_low_ns": 138590.0801630435, "total_ci_high_ns": 143560.89592391305, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 239762.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.2814523589269195, "effect_vs_fastest_cliffs_label": "small", "effect_vs_fastest_hedges_g": 0.5063099553714671}, {"serializer": "flatbuffers", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "25.12.19", "avg_time_ser_ns": 4830409.846153846, "avg_time_deser_ns": 932003.8351648352, "avg_time_total_ns": 5762413.681318682, "median_size_bytes": 67220.0, "avg_ops_per_sec": 173.5383912546796, "min_ops_per_sec": 167.4118446893531, "max_ops_per_sec": 179.18494502426702, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 4830409.846153846, "ser_median_ns": 4822566.0, "ser_std_ns": 65755.16224752465, "ser_mad_ns": 42367.0, "ser_cv": 0.013612750127172208, "ser_min_ns": 4689036.0, "ser_max_ns": 5009128.0, "ser_p5_ns": 4721079.0, "ser_p25_ns": 4784560.5, "ser_p50_ns": 4822566.0, "ser_p75_ns": 4869393.0, "ser_p95_ns": 4941823.0, "ser_p99_ns": 4981510.6, "ser_ci_low_ns": 4816781.95989011, "ser_ci_high_ns": 4844150.693406593, "deser_mean_ns": 932003.8351648352, "deser_median_ns": 931048.0, "deser_std_ns": 21065.71852521624, "deser_mad_ns": 13593.0, "deser_cv": 0.02260260927090556, "deser_min_ns": 878900.0, "deser_max_ns": 994851.0, "deser_p5_ns": 899416.0, "deser_p25_ns": 919610.5, "deser_p50_ns": 931048.0, "deser_p75_ns": 947391.5, "deser_p95_ns": 966391.0, "deser_p99_ns": 975688.1999999998, "deser_ci_low_ns": 927889.4917582418, "deser_ci_high_ns": 936479.676923077, "total_mean_ns": 5762413.681318682, "total_median_ns": 5750712.0, "total_std_ns": 76445.82823453468, "total_mad_ns": 37950.0, "total_cv": 0.013266286049952713, "total_min_ns": 5580826.0, "total_max_ns": 5973293.0, "total_p5_ns": 5644178.5, "total_p25_ns": 5718859.5, "total_p50_ns": 5750712.0, "total_p75_ns": 5801265.5, "total_p95_ns": 5899805.0, "total_p99_ns": 5934714.5, "total_ci_low_ns": 5747170.681868132, "total_ci_high_ns": 5778425.357692308, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 280653.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 103.07169510991486}, {"serializer": "protobuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "7.35.1", "avg_time_ser_ns": 58962.17021276596, "avg_time_deser_ns": 75695.98936170213, "avg_time_total_ns": 134658.1595744681, "median_size_bytes": 37463.0, "avg_ops_per_sec": 7426.211699016903, "min_ops_per_sec": 6248.945490448486, "max_ops_per_sec": 9241.119284367722, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 58962.17021276596, "ser_median_ns": 57987.5, "ser_std_ns": 12125.466315509912, "ser_mad_ns": 11934.5, "ser_cv": 0.20564823634806806, "ser_min_ns": 37862.0, "ser_max_ns": 82489.0, "ser_p5_ns": 44369.45, "ser_p25_ns": 46513.25, "ser_p50_ns": 57987.5, "ser_p75_ns": 70303.75, "ser_p95_ns": 74694.59999999999, "ser_p99_ns": 77497.68999999996, "ser_ci_low_ns": 56591.0045212766, "ser_ci_high_ns": 61491.21436170213, "deser_mean_ns": 75695.98936170213, "deser_median_ns": 74865.5, "deser_std_ns": 2374.2529124671464, "deser_mad_ns": 1169.5, "deser_cv": 0.031365636838725085, "deser_min_ns": 70350.0, "deser_max_ns": 82329.0, "deser_p5_ns": 73153.8, "deser_p25_ns": 74098.0, "deser_p50_ns": 74865.5, "deser_p75_ns": 77425.0, "deser_p95_ns": 80216.2, "deser_p99_ns": 82083.48, "deser_ci_low_ns": 75237.16170212766, "deser_ci_high_ns": 76184.64734042552, "total_mean_ns": 134658.1595744681, "total_median_ns": 136568.0, "total_std_ns": 12756.89579770945, "total_mad_ns": 11440.5, "total_cv": 0.0947354088160895, "total_min_ns": 108212.0, "total_max_ns": 160027.0, "total_p5_ns": 117990.7, "total_p25_ns": 122298.75, "total_p50_ns": 136568.0, "total_p75_ns": 145083.5, "total_p95_ns": 151682.8, "total_p99_ns": 157845.21999999997, "total_ci_low_ns": 132140.8704787234, "total_ci_high_ns": 137169.35930851064, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 37600.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "msgspec", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 1443.9247311827958, "avg_time_deser_ns": 1901.763440860215, "avg_time_total_ns": 3345.6881720430106, "median_size_bytes": 144.0, "avg_ops_per_sec": 298892.1706320766, "min_ops_per_sec": 251319.42699170645, "max_ops_per_sec": 367376.9287288758, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1443.9247311827958, "ser_median_ns": 1433.0, "ser_std_ns": 125.54491977662987, "ser_mad_ns": 83.0, "ser_cv": 0.08694699735060936, "ser_min_ns": 1154.0, "ser_max_ns": 1770.0, "ser_p5_ns": 1264.6, "ser_p25_ns": 1354.0, "ser_p50_ns": 1433.0, "ser_p75_ns": 1521.0, "ser_p95_ns": 1677.8, "ser_p99_ns": 1717.56, "ser_ci_low_ns": 1418.6225806451612, "ser_ci_high_ns": 1468.8088709677418, "deser_mean_ns": 1901.763440860215, "deser_median_ns": 1932.0, "deser_std_ns": 172.9196469493136, "deser_mad_ns": 121.0, "deser_cv": 0.0909259496917754, "deser_min_ns": 1540.0, "deser_max_ns": 2266.0, "deser_p5_ns": 1575.4, "deser_p25_ns": 1774.0, "deser_p50_ns": 1932.0, "deser_p75_ns": 2022.0, "deser_p95_ns": 2166.8, "deser_p99_ns": 2242.08, "deser_ci_low_ns": 1865.545430107527, "deser_ci_high_ns": 1936.9470430107526, "total_mean_ns": 3345.6881720430106, "total_median_ns": 3351.0, "total_std_ns": 279.58256844082763, "total_mad_ns": 192.0, "total_cv": 0.08356504075217008, "total_min_ns": 2722.0, "total_max_ns": 3979.0, "total_p5_ns": 2869.8, "total_p25_ns": 3167.0, "total_p50_ns": 3351.0, "total_p75_ns": 3543.0, "total_p95_ns": 3797.2, "total_p99_ns": 3875.96, "total_ci_low_ns": 3286.0271505376345, "total_ci_high_ns": 3400.0137096774192, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1072.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 0.8628460306566004, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.09560261675465}, {"serializer": "cloudpickle", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "3.1.2", "avg_time_ser_ns": 21887.56043956044, "avg_time_deser_ns": 5434.351648351649, "avg_time_total_ns": 27321.91208791209, "median_size_bytes": 325.0, "avg_ops_per_sec": 36600.65945539827, "min_ops_per_sec": 30609.12151821243, "max_ops_per_sec": 43550.21339604564, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 21887.56043956044, "ser_median_ns": 21815.0, "ser_std_ns": 1693.0516774208584, "ser_mad_ns": 1039.0, "ser_cv": 0.07735223311414689, "ser_min_ns": 17884.0, "ser_max_ns": 26318.0, "ser_p5_ns": 19392.0, "ser_p25_ns": 20834.5, "ser_p50_ns": 21815.0, "ser_p75_ns": 22913.0, "ser_p95_ns": 24490.5, "ser_p99_ns": 26302.7, "ser_ci_low_ns": 21548.321978021977, "ser_ci_high_ns": 22241.492582417584, "deser_mean_ns": 5434.351648351649, "deser_median_ns": 5387.0, "deser_std_ns": 724.5868765276816, "deser_mad_ns": 639.0, "deser_cv": 0.13333455827199991, "deser_min_ns": 4114.0, "deser_max_ns": 7203.0, "deser_p5_ns": 4364.0, "deser_p25_ns": 4834.0, "deser_p50_ns": 5387.0, "deser_p75_ns": 6068.5, "deser_p95_ns": 6546.0, "deser_p99_ns": 6909.5999999999985, "deser_ci_low_ns": 5282.416758241758, "deser_ci_high_ns": 5576.96978021978, "total_mean_ns": 27321.91208791209, "total_median_ns": 27286.0, "total_std_ns": 2194.3614036806634, "total_mad_ns": 1585.0, "total_cv": 0.0803150744581857, "total_min_ns": 22962.0, "total_max_ns": 32670.0, "total_p5_ns": 24059.0, "total_p25_ns": 25667.5, "total_p50_ns": 27286.0, "total_p75_ns": 28623.5, "total_p95_ns": 31264.0, "total_p99_ns": 31918.499999999996, "total_ci_low_ns": 26874.08598901099, "total_ci_high_ns": 27782.599725274726, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 8722.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.767828253965833}, {"serializer": "orjson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "3.11.9", "avg_time_ser_ns": 1176.2857142857142, "avg_time_deser_ns": 1626.3469387755101, "avg_time_total_ns": 2802.6326530612246, "median_size_bytes": 257.0, "avg_ops_per_sec": 356807.3749899875, "min_ops_per_sec": 244618.3953033268, "max_ops_per_sec": 659195.7811470006, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 1176.2857142857142, "ser_median_ns": 1137.5, "ser_std_ns": 260.2750329622593, "ser_mad_ns": 178.0, "ser_cv": 0.2212685487898731, "ser_min_ns": 603.0, "ser_max_ns": 1797.0, "ser_p5_ns": 813.6, "ser_p25_ns": 990.5, "ser_p50_ns": 1137.5, "ser_p75_ns": 1369.0, "ser_p95_ns": 1620.1499999999999, "ser_p99_ns": 1755.29, "ser_ci_low_ns": 1126.109693877551, "ser_ci_high_ns": 1224.9630102040817, "deser_mean_ns": 1626.3469387755101, "deser_median_ns": 1592.5, "deser_std_ns": 384.345771678351, "deser_mad_ns": 310.0, "deser_cv": 0.23632458887752947, "deser_min_ns": 846.0, "deser_max_ns": 2471.0, "deser_p5_ns": 976.7, "deser_p25_ns": 1345.25, "deser_p50_ns": 1592.5, "deser_p75_ns": 1949.75, "deser_p95_ns": 2221.2999999999997, "deser_p99_ns": 2423.4700000000003, "deser_ci_low_ns": 1549.080612244898, "deser_ci_high_ns": 1701.5946428571428, "total_mean_ns": 2802.6326530612246, "total_median_ns": 2699.0, "total_std_ns": 623.6085771375236, "total_mad_ns": 444.0, "total_cv": 0.22250813942968098, "total_min_ns": 1517.0, "total_max_ns": 4088.0, "total_p5_ns": 1842.4, "total_p25_ns": 2362.25, "total_p50_ns": 2699.0, "total_p75_ns": 3304.0, "total_p95_ns": 3764.2, "total_p99_ns": 3996.82, "total_ci_low_ns": 2675.203571428571, "total_ci_high_ns": 2922.9295918367347, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 5754.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": -0.004233608336951802, "effect_vs_fastest_cliffs_label": "negligible", "effect_vs_fastest_hedges_g": 0.07168560901749327}, {"serializer": "pydantic", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "2.13.4", "avg_time_ser_ns": 7220.620689655172, "avg_time_deser_ns": 12062.6091954023, "avg_time_total_ns": 19283.22988505747, "median_size_bytes": 257.0, "avg_ops_per_sec": 51858.53230816367, "min_ops_per_sec": 44714.72008585226, "max_ops_per_sec": 61850.56902523503, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 7220.620689655172, "ser_median_ns": 7258.0, "ser_std_ns": 528.4221410026689, "ser_mad_ns": 376.0, "ser_cv": 0.07318237083963265, "ser_min_ns": 6063.0, "ser_max_ns": 8526.0, "ser_p5_ns": 6257.0, "ser_p25_ns": 6856.5, "ser_p50_ns": 7258.0, "ser_p75_ns": 7599.0, "ser_p95_ns": 7948.2, "ser_p99_ns": 8274.02, "ser_ci_low_ns": 7110.447413793103, "ser_ci_high_ns": 7331.188218390805, "deser_mean_ns": 12062.6091954023, "deser_median_ns": 12065.0, "deser_std_ns": 1009.5624697756836, "deser_mad_ns": 870.0, "deser_cv": 0.0836935403793469, "deser_min_ns": 9648.0, "deser_max_ns": 14434.0, "deser_p5_ns": 10528.7, "deser_p25_ns": 11191.5, "deser_p50_ns": 12065.0, "deser_p75_ns": 12905.0, "deser_p95_ns": 13506.8, "deser_p99_ns": 14183.74, "deser_ci_low_ns": 11856.803448275861, "deser_ci_high_ns": 12269.727011494251, "total_mean_ns": 19283.22988505747, "total_median_ns": 19144.0, "total_std_ns": 1309.0926975292489, "total_mad_ns": 876.0, "total_cv": 0.06788762594920168, "total_min_ns": 16168.0, "total_max_ns": 22364.0, "total_p5_ns": 17117.0, "total_p25_ns": 18469.0, "total_p50_ns": 19144.0, "total_p75_ns": 20275.5, "total_p95_ns": 21412.8, "total_p99_ns": 21818.760000000002, "total_ci_low_ns": 19018.491091954023, "total_ci_high_ns": 19556.80517241379, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 4260.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.722642349365408}, {"serializer": "protobuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "7.35.1", "avg_time_ser_ns": 2078.156626506024, "avg_time_deser_ns": 2308.6746987951806, "avg_time_total_ns": 4386.831325301205, "median_size_bytes": 123.0, "avg_ops_per_sec": 227954.96928100806, "min_ops_per_sec": 203128.17387771685, "max_ops_per_sec": 295595.6251847473, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 2078.156626506024, "ser_median_ns": 2121.0, "ser_std_ns": 218.62377093479347, "ser_mad_ns": 133.0, "ser_cv": 0.10520081506193428, "ser_min_ns": 1475.0, "ser_max_ns": 2488.0, "ser_p5_ns": 1639.8, "ser_p25_ns": 1971.0, "ser_p50_ns": 2121.0, "ser_p75_ns": 2233.5, "ser_p95_ns": 2334.6, "ser_p99_ns": 2383.039999999999, "ser_ci_low_ns": 2030.7798192771083, "ser_ci_high_ns": 2123.0201807228914, "deser_mean_ns": 2308.6746987951806, "deser_median_ns": 2330.0, "deser_std_ns": 151.49282430351926, "deser_mad_ns": 90.0, "deser_cv": 0.06561895635733274, "deser_min_ns": 1908.0, "deser_max_ns": 2643.0, "deser_p5_ns": 2038.9, "deser_p25_ns": 2224.5, "deser_p50_ns": 2330.0, "deser_p75_ns": 2409.5, "deser_p95_ns": 2546.6, "deser_p99_ns": 2637.2599999999998, "deser_ci_low_ns": 2275.166265060241, "deser_ci_high_ns": 2341.9189759036144, "total_mean_ns": 4386.831325301205, "total_median_ns": 4465.0, "total_std_ns": 351.6220191805576, "total_mad_ns": 226.0, "total_cv": 0.08015398658083003, "total_min_ns": 3383.0, "total_max_ns": 4923.0, "total_p5_ns": 3694.0, "total_p25_ns": 4206.5, "total_p50_ns": 4465.0, "total_p75_ns": 4670.0, "total_p95_ns": 4820.0, "total_p99_ns": 4899.219999999999, "total_ci_low_ns": 4304.197590361446, "total_ci_high_ns": 4463.250301204819, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 260.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.187392227910712}, {"serializer": "avro", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "1.12.2", "avg_time_ser_ns": 12136.111111111111, "avg_time_deser_ns": 7250.644444444444, "avg_time_total_ns": 19386.755555555555, "median_size_bytes": 105.0, "avg_ops_per_sec": 51581.60668681024, "min_ops_per_sec": 44895.393732603035, "max_ops_per_sec": 60525.36012589275, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 12136.111111111111, "ser_median_ns": 12192.0, "ser_std_ns": 852.4910285790346, "ser_mad_ns": 529.5, "ser_cv": 0.07024416806785362, "ser_min_ns": 10115.0, "ser_max_ns": 14071.0, "ser_p5_ns": 10533.3, "ser_p25_ns": 11733.0, "ser_p50_ns": 12192.0, "ser_p75_ns": 12784.5, "ser_p95_ns": 13241.25, "ser_p99_ns": 13593.96, "ser_ci_low_ns": 11955.667222222222, "ser_ci_high_ns": 12317.238333333333, "deser_mean_ns": 7250.644444444444, "deser_median_ns": 7289.5, "deser_std_ns": 403.8847958757243, "deser_mad_ns": 207.5, "deser_cv": 0.055703296302880644, "deser_min_ns": 6378.0, "deser_max_ns": 8229.0, "deser_p5_ns": 6459.6, "deser_p25_ns": 7065.5, "deser_p50_ns": 7289.5, "deser_p75_ns": 7486.5, "deser_p95_ns": 7870.2, "deser_p99_ns": 8205.86, "deser_ci_low_ns": 7168.668333333333, "deser_ci_high_ns": 7330.429444444445, "total_mean_ns": 19386.755555555555, "total_median_ns": 19514.5, "total_std_ns": 1206.797948245744, "total_mad_ns": 730.0, "total_cv": 0.06224857711686155, "total_min_ns": 16522.0, "total_max_ns": 22274.0, "total_p5_ns": 17092.6, "total_p25_ns": 18815.5, "total_p50_ns": 19514.5, "total_p75_ns": 20251.75, "total_p95_ns": 20971.55, "total_p99_ns": 21354.63, "total_ci_low_ns": 19152.11638888889, "total_ci_high_ns": 19621.622499999998, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1552.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.119213274713196}, {"serializer": "json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 9413.511111111111, "avg_time_deser_ns": 5883.611111111111, "avg_time_total_ns": 15297.122222222222, "median_size_bytes": 257.0, "avg_ops_per_sec": 65371.772904271755, "min_ops_per_sec": 56430.22402798939, "max_ops_per_sec": 82000.82000820008, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 9413.511111111111, "ser_median_ns": 9530.0, "ser_std_ns": 688.8194793674572, "ser_mad_ns": 408.0, "ser_cv": 0.07317349193484442, "ser_min_ns": 7729.0, "ser_max_ns": 11202.0, "ser_p5_ns": 8188.35, "ser_p25_ns": 8999.0, "ser_p50_ns": 9530.0, "ser_p75_ns": 9900.75, "ser_p95_ns": 10182.5, "ser_p99_ns": 10818.41, "ser_ci_low_ns": 9274.559444444445, "ser_ci_high_ns": 9546.977777777778, "deser_mean_ns": 5883.611111111111, "deser_median_ns": 5910.5, "deser_std_ns": 836.4405281779016, "deser_mad_ns": 556.5, "deser_cv": 0.14216448238706603, "deser_min_ns": 3796.0, "deser_max_ns": 7689.0, "deser_p5_ns": 4369.4, "deser_p25_ns": 5397.5, "deser_p50_ns": 5910.5, "deser_p75_ns": 6476.75, "deser_p95_ns": 7126.5, "deser_p99_ns": 7419.33, "deser_ci_low_ns": 5708.509444444445, "deser_ci_high_ns": 6066.2219444444445, "total_mean_ns": 15297.122222222222, "total_median_ns": 15343.0, "total_std_ns": 1224.0253800315163, "total_mad_ns": 929.0, "total_cv": 0.08001670917248521, "total_min_ns": 12195.0, "total_max_ns": 17721.0, "total_p5_ns": 13089.1, "total_p25_ns": 14407.0, "total_p50_ns": 15343.0, "total_p75_ns": 16249.0, "total_p95_ns": 17202.75, "total_p99_ns": 17343.64, "total_ci_low_ns": 15042.166388888889, "total_ci_high_ns": 15545.545833333334, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 2740.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.221293820419366}, {"serializer": "msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "1.2.1", "avg_time_ser_ns": 2611.0588235294117, "avg_time_deser_ns": 3217.541176470588, "avg_time_total_ns": 5828.6, "median_size_bytes": 199.0, "avg_ops_per_sec": 171567.78643241944, "min_ops_per_sec": 142450.14245014245, "max_ops_per_sec": 214776.6323024055, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 2611.0588235294117, "ser_median_ns": 2626.0, "ser_std_ns": 230.65570884417528, "ser_mad_ns": 137.0, "ser_cv": 0.08833799789021762, "ser_min_ns": 2007.0, "ser_max_ns": 3110.0, "ser_p5_ns": 2226.0, "ser_p25_ns": 2489.0, "ser_p50_ns": 2626.0, "ser_p75_ns": 2753.0, "ser_p95_ns": 2927.8, "ser_p99_ns": 3059.6, "ser_ci_low_ns": 2560.670294117647, "ser_ci_high_ns": 2658.2279411764703, "deser_mean_ns": 3217.541176470588, "deser_median_ns": 3248.0, "deser_std_ns": 275.754011883831, "deser_mad_ns": 166.0, "deser_cv": 0.0857033357957872, "deser_min_ns": 2570.0, "deser_max_ns": 3980.0, "deser_p5_ns": 2829.6, "deser_p25_ns": 2978.0, "deser_p50_ns": 3248.0, "deser_p75_ns": 3368.0, "deser_p95_ns": 3602.8, "deser_p99_ns": 3971.6, "deser_ci_low_ns": 3161.5511764705884, "deser_ci_high_ns": 3277.071470588235, "total_mean_ns": 5828.6, "total_median_ns": 5920.0, "total_std_ns": 471.00627333806233, "total_mad_ns": 298.0, "total_cv": 0.08080950371239445, "total_min_ns": 4656.0, "total_max_ns": 7020.0, "total_p5_ns": 5009.4, "total_p25_ns": 5533.0, "total_p50_ns": 5920.0, "total_p75_ns": 6135.0, "total_p95_ns": 6509.4, "total_p99_ns": 6899.879999999999, "total_ci_low_ns": 5731.0888235294115, "total_ci_high_ns": 5928.160294117647, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 925.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.045929369085352}, {"serializer": "mashumaro", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "3.22", "avg_time_ser_ns": 2457.704081632653, "avg_time_deser_ns": 4376.0, "avg_time_total_ns": 6833.7040816326535, "median_size_bytes": 257.0, "avg_ops_per_sec": 146333.52396510093, "min_ops_per_sec": 112752.28323373548, "max_ops_per_sec": 209161.26333403055, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 2457.704081632653, "ser_median_ns": 2481.0, "ser_std_ns": 304.1326422909581, "ser_mad_ns": 218.0, "ser_cv": 0.12374664816804257, "ser_min_ns": 1724.0, "ser_max_ns": 3222.0, "ser_p5_ns": 1994.1, "ser_p25_ns": 2232.25, "ser_p50_ns": 2481.0, "ser_p75_ns": 2655.75, "ser_p95_ns": 2970.249999999999, "ser_p99_ns": 3163.8, "ser_ci_low_ns": 2398.544897959184, "ser_ci_high_ns": 2515.068112244898, "deser_mean_ns": 4376.0, "deser_median_ns": 4369.5, "deser_std_ns": 529.7301783508941, "deser_mad_ns": 381.0, "deser_cv": 0.12105351424837617, "deser_min_ns": 3057.0, "deser_max_ns": 5780.0, "deser_p5_ns": 3672.05, "deser_p25_ns": 3985.75, "deser_p50_ns": 4369.5, "deser_p75_ns": 4740.5, "deser_p95_ns": 5157.8499999999985, "deser_p99_ns": 5731.5, "deser_ci_low_ns": 4272.221173469387, "deser_ci_high_ns": 4476.707653061224, "total_mean_ns": 6833.7040816326535, "total_median_ns": 6786.5, "total_std_ns": 794.2540974545707, "total_mad_ns": 614.5, "total_cv": 0.11622600100424804, "total_min_ns": 4781.0, "total_max_ns": 8869.0, "total_p5_ns": 5690.05, "total_p25_ns": 6230.0, "total_p50_ns": 6786.5, "total_p75_ns": 7404.0, "total_p95_ns": 8097.799999999999, "total_p99_ns": 8658.51, "total_ci_low_ns": 6679.371173469387, "total_ci_high_ns": 6999.698469387756, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 5754.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.771820748436215}, {"serializer": "cbor2", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "6.1.3", "avg_time_ser_ns": 10102.90322580645, "avg_time_deser_ns": 4825.440860215053, "avg_time_total_ns": 14928.344086021505, "median_size_bytes": 199.0, "avg_ops_per_sec": 66986.66605202199, "min_ops_per_sec": 57840.24524263983, "max_ops_per_sec": 84090.14463504877, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 10102.90322580645, "ser_median_ns": 10198.0, "ser_std_ns": 860.0941058789683, "ser_mad_ns": 565.0, "ser_cv": 0.08513336084245353, "ser_min_ns": 7871.0, "ser_max_ns": 12075.0, "ser_p5_ns": 8730.0, "ser_p25_ns": 9491.0, "ser_p50_ns": 10198.0, "ser_p75_ns": 10684.0, "ser_p95_ns": 11511.599999999999, "ser_p99_ns": 11845.92, "ser_ci_low_ns": 9927.66505376344, "ser_ci_high_ns": 10271.234139784947, "deser_mean_ns": 4825.440860215053, "deser_median_ns": 4799.0, "deser_std_ns": 332.67778713257354, "deser_mad_ns": 231.0, "deser_cv": 0.06894246490003553, "deser_min_ns": 4021.0, "deser_max_ns": 5583.0, "deser_p5_ns": 4300.2, "deser_p25_ns": 4586.0, "deser_p50_ns": 4799.0, "deser_p75_ns": 5084.0, "deser_p95_ns": 5332.799999999999, "deser_p99_ns": 5567.36, "deser_ci_low_ns": 4759.523387096775, "deser_ci_high_ns": 4894.761290322581, "total_mean_ns": 14928.344086021505, "total_median_ns": 15054.0, "total_std_ns": 1139.8332400401885, "total_mad_ns": 853.0, "total_cv": 0.07635362860556633, "total_min_ns": 11892.0, "total_max_ns": 17289.0, "total_p5_ns": 13197.0, "total_p25_ns": 14079.0, "total_p50_ns": 15054.0, "total_p75_ns": 15781.0, "total_p95_ns": 16797.0, "total_p99_ns": 17109.6, "total_ci_low_ns": 14703.597043010752, "total_ci_high_ns": 15163.866666666665, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1670.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.65838325921698}, {"serializer": "serpyco-rs", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "1.21.0", "avg_time_ser_ns": 2334.913043478261, "avg_time_deser_ns": 3039.8478260869565, "avg_time_total_ns": 5374.760869565217, "median_size_bytes": 257.0, "avg_ops_per_sec": 186054.7890907179, "min_ops_per_sec": 151377.53557372087, "max_ops_per_sec": 251256.2814070352, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 2334.913043478261, "ser_median_ns": 2354.0, "ser_std_ns": 265.832205697955, "ser_mad_ns": 169.0, "ser_cv": 0.11385100890179253, "ser_min_ns": 1686.0, "ser_max_ns": 2968.0, "ser_p5_ns": 1888.0, "ser_p25_ns": 2186.25, "ser_p50_ns": 2354.0, "ser_p75_ns": 2520.75, "ser_p95_ns": 2734.75, "ser_p99_ns": 2919.77, "ser_ci_low_ns": 2280.8584239130437, "ser_ci_high_ns": 2391.1029891304347, "deser_mean_ns": 3039.8478260869565, "deser_median_ns": 3030.5, "deser_std_ns": 388.0289423549644, "deser_mad_ns": 274.5, "deser_cv": 0.12764748913581458, "deser_min_ns": 2163.0, "deser_max_ns": 3794.0, "deser_p5_ns": 2480.45, "deser_p25_ns": 2758.0, "deser_p50_ns": 3030.5, "deser_p75_ns": 3298.5, "deser_p95_ns": 3691.9, "deser_p99_ns": 3783.08, "deser_ci_low_ns": 2962.1163043478264, "deser_ci_high_ns": 3117.253260869565, "total_mean_ns": 5374.760869565217, "total_median_ns": 5369.5, "total_std_ns": 613.9171002053212, "total_mad_ns": 459.0, "total_cv": 0.11422221659788616, "total_min_ns": 3980.0, "total_max_ns": 6606.0, "total_p5_ns": 4428.4, "total_p25_ns": 4870.25, "total_p50_ns": 5369.5, "total_p75_ns": 5814.75, "total_p95_ns": 6388.45, "total_p99_ns": 6558.68, "total_ci_low_ns": 5255.490760869565, "total_ci_high_ns": 5505.819293478261, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 5754.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.496123735021769}, {"serializer": "rapidjson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "1.23", "avg_time_ser_ns": 4277.824175824176, "avg_time_deser_ns": 4817.516483516483, "avg_time_total_ns": 9095.34065934066, "median_size_bytes": 257.0, "avg_ops_per_sec": 109946.40414848321, "min_ops_per_sec": 90114.4453455889, "max_ops_per_sec": 138064.33798149938, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 4277.824175824176, "ser_median_ns": 4314.0, "ser_std_ns": 394.9415876193056, "ser_mad_ns": 264.0, "ser_cv": 0.09232300613271821, "ser_min_ns": 3302.0, "ser_max_ns": 5303.0, "ser_p5_ns": 3596.0, "ser_p25_ns": 4041.5, "ser_p50_ns": 4314.0, "ser_p75_ns": 4527.5, "ser_p95_ns": 4870.0, "ser_p99_ns": 5218.4, "ser_ci_low_ns": 4197.345604395605, "ser_ci_high_ns": 4356.653846153846, "deser_mean_ns": 4817.516483516483, "deser_median_ns": 4890.0, "deser_std_ns": 348.05473268941046, "deser_mad_ns": 215.0, "deser_cv": 0.07224775128020994, "deser_min_ns": 3941.0, "deser_max_ns": 5794.0, "deser_p5_ns": 4296.0, "deser_p25_ns": 4562.0, "deser_p50_ns": 4890.0, "deser_p75_ns": 5057.0, "deser_p95_ns": 5341.5, "deser_p99_ns": 5766.099999999999, "deser_ci_low_ns": 4749.953571428571, "deser_ci_high_ns": 4888.468406593406, "total_mean_ns": 9095.34065934066, "total_median_ns": 9151.0, "total_std_ns": 699.3864806589053, "total_mad_ns": 457.0, "total_cv": 0.07689502865850933, "total_min_ns": 7243.0, "total_max_ns": 11097.0, "total_p5_ns": 7918.0, "total_p25_ns": 8626.5, "total_p50_ns": 9151.0, "total_p75_ns": 9564.0, "total_p95_ns": 10015.5, "total_p99_ns": 10984.5, "total_ci_low_ns": 8945.034615384617, "total_ci_high_ns": 9231.747252747253, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 2038.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.962028487965956}, {"serializer": "flatbuffers", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "25.12.19", "avg_time_ser_ns": 48597.51546391752, "avg_time_deser_ns": 13121.41237113402, "avg_time_total_ns": 61718.927835051545, "median_size_bytes": 272.0, "avg_ops_per_sec": 16202.484960085096, "min_ops_per_sec": 14303.491482270822, "max_ops_per_sec": 18569.412463789646, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 48597.51546391752, "ser_median_ns": 48792.0, "ser_std_ns": 2832.332078405098, "ser_mad_ns": 1626.0, "ser_cv": 0.05828141729813401, "ser_min_ns": 42287.0, "ser_max_ns": 55469.0, "ser_p5_ns": 43825.4, "ser_p25_ns": 47008.0, "ser_p50_ns": 48792.0, "ser_p75_ns": 50334.0, "ser_p95_ns": 53204.2, "ser_p99_ns": 55015.88, "ser_ci_low_ns": 48051.043298969074, "ser_ci_high_ns": 49132.95463917526, "deser_mean_ns": 13121.41237113402, "deser_median_ns": 13204.0, "deser_std_ns": 677.0191521259652, "deser_mad_ns": 488.0, "deser_cv": 0.05159651514461577, "deser_min_ns": 11565.0, "deser_max_ns": 14498.0, "deser_p5_ns": 11934.0, "deser_p25_ns": 12640.0, "deser_p50_ns": 13204.0, "deser_p75_ns": 13600.0, "deser_p95_ns": 14049.8, "deser_p99_ns": 14457.68, "deser_ci_low_ns": 12980.18582474227, "deser_ci_high_ns": 13259.405412371134, "total_mean_ns": 61718.927835051545, "total_median_ns": 62027.0, "total_std_ns": 3417.5565322300044, "total_mad_ns": 2152.0, "total_cv": 0.05537290831369722, "total_min_ns": 53852.0, "total_max_ns": 69913.0, "total_p5_ns": 55858.4, "total_p25_ns": 59587.0, "total_p50_ns": 62027.0, "total_p75_ns": 64054.0, "total_p95_ns": 67301.0, "total_p99_ns": 68809.95999999999, "total_ci_low_ns": 61034.69381443299, "total_ci_high_ns": 62379.60025773196, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1873.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.034593377712607}, {"serializer": "dill", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "0.4.1", "avg_time_ser_ns": 97597.67741935483, "avg_time_deser_ns": 10826.967741935483, "avg_time_total_ns": 108424.64516129032, "median_size_bytes": 325.0, "avg_ops_per_sec": 9222.995367081166, "min_ops_per_sec": 8015.5822919756, "max_ops_per_sec": 10520.778537611783, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 97597.67741935483, "ser_median_ns": 97627.0, "ser_std_ns": 5539.467475899628, "ser_mad_ns": 3898.0, "ser_cv": 0.056758189563239365, "ser_min_ns": 85390.0, "ser_max_ns": 112831.0, "ser_p5_ns": 89144.4, "ser_p25_ns": 93525.0, "ser_p50_ns": 97627.0, "ser_p75_ns": 101269.0, "ser_p95_ns": 106201.8, "ser_p99_ns": 108953.2, "ser_ci_low_ns": 96476.39784946236, "ser_ci_high_ns": 98729.60215053763, "deser_mean_ns": 10826.967741935483, "deser_median_ns": 10708.0, "deser_std_ns": 749.1746103373989, "deser_mad_ns": 505.0, "deser_cv": 0.06919523805688117, "deser_min_ns": 9337.0, "deser_max_ns": 12722.0, "deser_p5_ns": 9677.4, "deser_p25_ns": 10325.0, "deser_p50_ns": 10708.0, "deser_p75_ns": 11301.0, "deser_p95_ns": 12172.8, "deser_p99_ns": 12481.88, "deser_ci_low_ns": 10674.795161290323, "deser_ci_high_ns": 10976.865860215054, "total_mean_ns": 108424.64516129032, "total_median_ns": 108345.0, "total_std_ns": 5937.755819011014, "total_mad_ns": 4210.0, "total_cv": 0.054763894409597814, "total_min_ns": 95050.0, "total_max_ns": 124757.0, "total_p5_ns": 98981.8, "total_p25_ns": 104046.0, "total_p50_ns": 108345.0, "total_p75_ns": 112329.0, "total_p95_ns": 117702.8, "total_p99_ns": 120896.68, "total_ci_low_ns": 107251.41102150537, "total_ci_high_ns": 109603.72822580645, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 12504.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.104313089343414}, {"serializer": "pickle", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 8124.546391752578, "avg_time_deser_ns": 5315.412371134021, "avg_time_total_ns": 13439.958762886597, "median_size_bytes": 325.0, "avg_ops_per_sec": 74404.99019695078, "min_ops_per_sec": 56182.93162537221, "max_ops_per_sec": 108225.10822510823, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 8124.546391752578, "ser_median_ns": 8021.0, "ser_std_ns": 1192.8995401665445, "ser_mad_ns": 864.0, "ser_cv": 0.14682660208297726, "ser_min_ns": 5542.0, "ser_max_ns": 11121.0, "ser_p5_ns": 6575.6, "ser_p25_ns": 7162.0, "ser_p50_ns": 8021.0, "ser_p75_ns": 8908.0, "ser_p95_ns": 10483.0, "ser_p99_ns": 10846.439999999997, "ser_ci_low_ns": 7885.268041237114, "ser_ci_high_ns": 8355.283505154639, "deser_mean_ns": 5315.412371134021, "deser_median_ns": 5156.0, "deser_std_ns": 779.1608968491003, "deser_mad_ns": 543.0, "deser_cv": 0.14658522094737678, "deser_min_ns": 3698.0, "deser_max_ns": 7121.0, "deser_p5_ns": 4165.4, "deser_p25_ns": 4786.0, "deser_p50_ns": 5156.0, "deser_p75_ns": 5867.0, "deser_p95_ns": 6882.199999999999, "deser_p99_ns": 7067.24, "deser_ci_low_ns": 5154.486082474227, "deser_ci_high_ns": 5485.056185567009, "total_mean_ns": 13439.958762886597, "total_median_ns": 13301.0, "total_std_ns": 1888.9239326351358, "total_mad_ns": 1359.0, "total_cv": 0.140545366690503, "total_min_ns": 9240.0, "total_max_ns": 17799.0, "total_p5_ns": 10863.6, "total_p25_ns": 11951.0, "total_p50_ns": 13301.0, "total_p75_ns": 14660.0, "total_p95_ns": 17256.999999999996, "total_p99_ns": 17757.72, "total_ci_low_ns": 13071.724484536084, "total_ci_high_ns": 13804.4662371134, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 6889.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.819127158325915}, {"serializer": "msgspec-msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 1285.6702127659576, "avg_time_deser_ns": 1482.1382978723404, "avg_time_total_ns": 2767.808510638298, "median_size_bytes": 112.0, "avg_ops_per_sec": 361296.6706896154, "min_ops_per_sec": 306654.40049064707, "max_ops_per_sec": 476417.3415912339, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 1285.6702127659576, "ser_median_ns": 1273.5, "ser_std_ns": 153.3599594669227, "ser_mad_ns": 108.0, "ser_cv": 0.11928405740768316, "ser_min_ns": 924.0, "ser_max_ns": 1718.0, "ser_p5_ns": 1027.4, "ser_p25_ns": 1176.25, "ser_p50_ns": 1273.5, "ser_p75_ns": 1386.75, "ser_p95_ns": 1543.6999999999998, "ser_p99_ns": 1600.8199999999993, "ser_ci_low_ns": 1255.3784574468084, "ser_ci_high_ns": 1316.596010638298, "deser_mean_ns": 1482.1382978723404, "deser_median_ns": 1492.5, "deser_std_ns": 141.37957762390798, "deser_mad_ns": 102.0, "deser_cv": 0.09538892411515384, "deser_min_ns": 1142.0, "deser_max_ns": 1876.0, "deser_p5_ns": 1252.75, "deser_p25_ns": 1386.0, "deser_p50_ns": 1492.5, "deser_p75_ns": 1582.0, "deser_p95_ns": 1685.1, "deser_p99_ns": 1809.0399999999995, "deser_ci_low_ns": 1454.3047872340426, "deser_ci_high_ns": 1510.1617021276595, "total_mean_ns": 2767.808510638298, "total_median_ns": 2797.5, "total_std_ns": 269.6589752586457, "total_mad_ns": 190.0, "total_cv": 0.09742688998252207, "total_min_ns": 2099.0, "total_max_ns": 3261.0, "total_p5_ns": 2333.25, "total_p25_ns": 2581.25, "total_p50_ns": 2797.5, "total_p75_ns": 2947.5, "total_p95_ns": 3216.35, "total_p99_ns": 3260.07, "total_ci_low_ns": 2714.7837765957447, "total_ci_high_ns": 2822.1611702127657, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1013.0, "fastest_in_group": "msgspec-msgpack", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "flatbuffers", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "25.12.19", "avg_time_ser_ns": 49226.92134831461, "avg_time_deser_ns": 13429.438202247191, "avg_time_total_ns": 62656.3595505618, "median_size_bytes": 272.0, "avg_ops_per_sec": 15960.071845429035, "min_ops_per_sec": 14416.284635123837, "max_ops_per_sec": 18066.520930064496, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 49226.92134831461, "ser_median_ns": 49200.0, "ser_std_ns": 2407.619997126166, "ser_mad_ns": 1525.0, "ser_cv": 0.04890860389360091, "ser_min_ns": 43280.0, "ser_max_ns": 55787.0, "ser_p5_ns": 45287.8, "ser_p25_ns": 47612.0, "ser_p50_ns": 49200.0, "ser_p75_ns": 50698.0, "ser_p95_ns": 53014.6, "ser_p99_ns": 54188.04000000001, "ser_ci_low_ns": 48743.558988764045, "ser_ci_high_ns": 49713.90814606741, "deser_mean_ns": 13429.438202247191, "deser_median_ns": 13480.0, "deser_std_ns": 529.7840673986511, "deser_mad_ns": 307.0, "deser_cv": 0.03944945867579187, "deser_min_ns": 12071.0, "deser_max_ns": 14779.0, "deser_p5_ns": 12485.6, "deser_p25_ns": 13105.0, "deser_p50_ns": 13480.0, "deser_p75_ns": 13734.0, "deser_p95_ns": 14220.8, "deser_p99_ns": 14661.08, "deser_ci_low_ns": 13316.694101123596, "deser_ci_high_ns": 13541.159831460674, "total_mean_ns": 62656.3595505618, "total_median_ns": 62806.0, "total_std_ns": 2799.997395482518, "total_mad_ns": 1727.0, "total_cv": 0.044688159598915166, "total_min_ns": 55351.0, "total_max_ns": 69366.0, "total_p5_ns": 57904.4, "total_p25_ns": 60915.0, "total_p50_ns": 62806.0, "total_p75_ns": 64490.0, "total_p95_ns": 67161.0, "total_p99_ns": 68374.24, "total_ci_low_ns": 62063.46882022472, "total_ci_high_ns": 63250.614606741576, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1873.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.585973880027836}, {"serializer": "json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 9770.344444444445, "avg_time_deser_ns": 6301.922222222222, "avg_time_total_ns": 16072.266666666666, "median_size_bytes": 257.0, "avg_ops_per_sec": 62218.97761775979, "min_ops_per_sec": 53174.51877060513, "max_ops_per_sec": 72542.61878853827, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 9770.344444444445, "ser_median_ns": 9883.0, "ser_std_ns": 507.63069742558815, "ser_mad_ns": 362.0, "ser_cv": 0.05195627444989763, "ser_min_ns": 8178.0, "ser_max_ns": 10764.0, "ser_p5_ns": 9017.7, "ser_p25_ns": 9389.5, "ser_p50_ns": 9883.0, "ser_p75_ns": 10171.25, "ser_p95_ns": 10423.75, "ser_p99_ns": 10699.92, "ser_ci_low_ns": 9669.775833333333, "ser_ci_high_ns": 9871.92722222222, "deser_mean_ns": 6301.922222222222, "deser_median_ns": 6403.5, "deser_std_ns": 853.9333477631452, "deser_mad_ns": 527.0, "deser_cv": 0.13550363169382723, "deser_min_ns": 4415.0, "deser_max_ns": 8629.0, "deser_p5_ns": 4718.9, "deser_p25_ns": 5806.25, "deser_p50_ns": 6403.5, "deser_p75_ns": 6900.75, "deser_p95_ns": 7548.2, "deser_p99_ns": 8106.57, "deser_ci_low_ns": 6137.354166666667, "deser_ci_high_ns": 6468.2138888888885, "total_mean_ns": 16072.266666666666, "total_median_ns": 16114.0, "total_std_ns": 1080.6751302212203, "total_mad_ns": 719.0, "total_cv": 0.06723850173930375, "total_min_ns": 13785.0, "total_max_ns": 18806.0, "total_p5_ns": 14282.55, "total_p25_ns": 15304.25, "total_p50_ns": 16114.0, "total_p75_ns": 16750.5, "total_p95_ns": 17678.2, "total_p99_ns": 18445.55, "total_ci_low_ns": 15850.381944444443, "total_ci_high_ns": 16300.908055555556, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 2740.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.902182747359998}, {"serializer": "orjson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "3.11.9", "avg_time_ser_ns": 1470.909090909091, "avg_time_deser_ns": 1931.010101010101, "avg_time_total_ns": 3401.919191919192, "median_size_bytes": 257.0, "avg_ops_per_sec": 293951.7206567891, "min_ops_per_sec": 198649.18553833928, "max_ops_per_sec": 458505.2728106373, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 1470.909090909091, "ser_median_ns": 1435.0, "ser_std_ns": 312.3871907702497, "ser_mad_ns": 234.0, "ser_cv": 0.21237695293403872, "ser_min_ns": 985.0, "ser_max_ns": 2276.0, "ser_p5_ns": 1015.9, "ser_p25_ns": 1212.5, "ser_p50_ns": 1435.0, "ser_p75_ns": 1691.5, "ser_p95_ns": 2026.0, "ser_p99_ns": 2141.7399999999993, "ser_ci_low_ns": 1412.0563131313131, "ser_ci_high_ns": 1531.165404040404, "deser_mean_ns": 1931.010101010101, "deser_median_ns": 1886.0, "deser_std_ns": 420.80269492981364, "deser_mad_ns": 318.0, "deser_cv": 0.21791843279830284, "deser_min_ns": 1185.0, "deser_max_ns": 2935.0, "deser_p5_ns": 1325.9, "deser_p25_ns": 1575.5, "deser_p50_ns": 1886.0, "deser_p75_ns": 2223.0, "deser_p95_ns": 2657.1, "deser_p99_ns": 2807.5999999999995, "deser_ci_low_ns": 1848.414898989899, "deser_ci_high_ns": 2012.040909090909, "total_mean_ns": 3401.919191919192, "total_median_ns": 3444.0, "total_std_ns": 715.3171078843238, "total_mad_ns": 587.0, "total_cv": 0.21026869467783502, "total_min_ns": 2181.0, "total_max_ns": 5034.0, "total_p5_ns": 2342.8, "total_p25_ns": 2796.0, "total_p50_ns": 3444.0, "total_p75_ns": 3938.5, "total_p95_ns": 4728.2, "total_p99_ns": 4930.12, "total_ci_low_ns": 3263.5838383838386, "total_ci_high_ns": 3533.4886363636365, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 5754.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "serpyco-rs", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "1.21.0", "avg_time_ser_ns": 2675.440860215054, "avg_time_deser_ns": 3354.3440860215055, "avg_time_total_ns": 6029.784946236559, "median_size_bytes": 257.0, "avg_ops_per_sec": 165843.39390480946, "min_ops_per_sec": 135135.13513513515, "max_ops_per_sec": 227014.75595913734, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 2675.440860215054, "ser_median_ns": 2678.0, "ser_std_ns": 331.6049726368904, "ser_mad_ns": 240.0, "ser_cv": 0.12394404883621153, "ser_min_ns": 1853.0, "ser_max_ns": 3496.0, "ser_p5_ns": 2154.6, "ser_p25_ns": 2465.0, "ser_p50_ns": 2678.0, "ser_p75_ns": 2921.0, "ser_p95_ns": 3151.2, "ser_p99_ns": 3233.7999999999997, "ser_ci_low_ns": 2606.1588709677417, "ser_ci_high_ns": 2739.9483870967742, "deser_mean_ns": 3354.3440860215055, "deser_median_ns": 3304.0, "deser_std_ns": 425.2978877932311, "deser_mad_ns": 355.0, "deser_cv": 0.12679017920837846, "deser_min_ns": 2541.0, "deser_max_ns": 4126.0, "deser_p5_ns": 2721.8, "deser_p25_ns": 3006.0, "deser_p50_ns": 3304.0, "deser_p75_ns": 3720.0, "deser_p95_ns": 4043.3999999999996, "deser_p99_ns": 4085.52, "deser_ci_low_ns": 3265.4080645161293, "deser_ci_high_ns": 3443.395430107527, "total_mean_ns": 6029.784946236559, "total_median_ns": 5999.0, "total_std_ns": 720.3878008989078, "total_mad_ns": 536.0, "total_cv": 0.11947155782869702, "total_min_ns": 4405.0, "total_max_ns": 7400.0, "total_p5_ns": 4959.6, "total_p25_ns": 5513.0, "total_p50_ns": 5999.0, "total_p75_ns": 6633.0, "total_p95_ns": 7090.0, "total_p99_ns": 7203.12, "total_ci_low_ns": 5884.906720430107, "total_ci_high_ns": 6170.733333333334, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 5754.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.9939176713370261, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.646647118601685}, {"serializer": "cbor2", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "6.1.3", "avg_time_ser_ns": 10937.916666666666, "avg_time_deser_ns": 5128.559523809524, "avg_time_total_ns": 16066.47619047619, "median_size_bytes": 199.0, "avg_ops_per_sec": 62241.40179492347, "min_ops_per_sec": 54341.91935659167, "max_ops_per_sec": 73394.49541284403, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 10937.916666666666, "ser_median_ns": 11040.0, "ser_std_ns": 732.5589611260683, "ser_mad_ns": 460.5, "ser_cv": 0.06697426790227283, "ser_min_ns": 9082.0, "ser_max_ns": 12982.0, "ser_p5_ns": 9576.3, "ser_p25_ns": 10469.75, "ser_p50_ns": 11040.0, "ser_p75_ns": 11382.5, "ser_p95_ns": 12003.599999999999, "ser_p99_ns": 12443.330000000002, "ser_ci_low_ns": 10784.766666666666, "ser_ci_high_ns": 11097.841071428573, "deser_mean_ns": 5128.559523809524, "deser_median_ns": 5182.5, "deser_std_ns": 302.60369530828325, "deser_mad_ns": 189.0, "deser_cv": 0.059003643011928515, "deser_min_ns": 4460.0, "deser_max_ns": 5731.0, "deser_p5_ns": 4550.05, "deser_p25_ns": 4926.5, "deser_p50_ns": 5182.5, "deser_p75_ns": 5353.25, "deser_p95_ns": 5535.349999999999, "deser_p99_ns": 5727.68, "deser_ci_low_ns": 5064.908333333334, "deser_ci_high_ns": 5188.110416666667, "total_mean_ns": 16066.47619047619, "total_median_ns": 16256.0, "total_std_ns": 987.643776035641, "total_mad_ns": 578.5, "total_cv": 0.061472333094489746, "total_min_ns": 13625.0, "total_max_ns": 18402.0, "total_p5_ns": 14292.1, "total_p25_ns": 15486.0, "total_p50_ns": 16256.0, "total_p75_ns": 16701.5, "total_p95_ns": 17476.75, "total_p99_ns": 17972.06, "total_ci_low_ns": 15850.86369047619, "total_ci_high_ns": 16277.86994047619, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1670.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.81876948444695}, {"serializer": "dill", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "0.4.1", "avg_time_ser_ns": 97269.22448979592, "avg_time_deser_ns": 10394.204081632653, "avg_time_total_ns": 107663.42857142857, "median_size_bytes": 325.0, "avg_ops_per_sec": 9288.205041106943, "min_ops_per_sec": 8157.738022401149, "max_ops_per_sec": 10954.222304987457, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 97269.22448979592, "ser_median_ns": 98292.5, "ser_std_ns": 6094.25438303713, "ser_mad_ns": 4545.0, "ser_cv": 0.06265346942985497, "ser_min_ns": 82416.0, "ser_max_ns": 110118.0, "ser_p5_ns": 87512.6, "ser_p25_ns": 92501.5, "ser_p50_ns": 98292.5, "ser_p75_ns": 101387.5, "ser_p95_ns": 105122.55, "ser_p99_ns": 109910.42, "ser_ci_low_ns": 96119.80535714286, "ser_ci_high_ns": 98434.86811224489, "deser_mean_ns": 10394.204081632653, "deser_median_ns": 10292.0, "deser_std_ns": 911.9094045161636, "deser_mad_ns": 603.0, "deser_cv": 0.08773248989093611, "deser_min_ns": 8420.0, "deser_max_ns": 12548.0, "deser_p5_ns": 8968.5, "deser_p25_ns": 9714.75, "deser_p50_ns": 10292.0, "deser_p75_ns": 10941.25, "deser_p95_ns": 12121.099999999999, "deser_p99_ns": 12467.49, "deser_ci_low_ns": 10205.627040816325, "deser_ci_high_ns": 10571.11581632653, "total_mean_ns": 107663.42857142857, "total_median_ns": 108370.5, "total_std_ns": 6675.011505453615, "total_mad_ns": 5548.0, "total_cv": 0.061998875514401114, "total_min_ns": 91289.0, "total_max_ns": 122583.0, "total_p5_ns": 97496.0, "total_p25_ns": 102428.5, "total_p50_ns": 108370.5, "total_p75_ns": 113103.5, "total_p95_ns": 115986.4, "total_p99_ns": 121037.79000000001, "total_ci_low_ns": 106304.54566326531, "total_ci_high_ns": 108975.66173469387, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 12504.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.9342489140695}, {"serializer": "avro", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "1.12.2", "avg_time_ser_ns": 12334.849462365592, "avg_time_deser_ns": 7445.397849462365, "avg_time_total_ns": 19780.247311827956, "median_size_bytes": 105.0, "avg_ops_per_sec": 50555.48518860186, "min_ops_per_sec": 45032.87399801856, "max_ops_per_sec": 63588.960956377974, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 12334.849462365592, "ser_median_ns": 12396.0, "ser_std_ns": 1052.798722930999, "ser_mad_ns": 719.0, "ser_cv": 0.08535156640080244, "ser_min_ns": 9505.0, "ser_max_ns": 14157.0, "ser_p5_ns": 10155.0, "ser_p25_ns": 11796.0, "ser_p50_ns": 12396.0, "ser_p75_ns": 13165.0, "ser_p95_ns": 13580.4, "ser_p99_ns": 13835.0, "ser_ci_low_ns": 12106.293548387097, "ser_ci_high_ns": 12544.057258064517, "deser_mean_ns": 7445.397849462365, "deser_median_ns": 7542.0, "deser_std_ns": 508.6940042848204, "deser_mad_ns": 309.0, "deser_cv": 0.06832328030953422, "deser_min_ns": 6037.0, "deser_max_ns": 8530.0, "deser_p5_ns": 6490.0, "deser_p25_ns": 7131.0, "deser_p50_ns": 7542.0, "deser_p75_ns": 7819.0, "deser_p95_ns": 8102.999999999999, "deser_p99_ns": 8504.24, "deser_ci_low_ns": 7337.161021505376, "deser_ci_high_ns": 7541.7642473118285, "total_mean_ns": 19780.247311827956, "total_median_ns": 20035.0, "total_std_ns": 1532.0306831976309, "total_mad_ns": 1056.0, "total_cv": 0.07745255451288142, "total_min_ns": 15726.0, "total_max_ns": 22206.0, "total_p5_ns": 16553.4, "total_p25_ns": 18921.0, "total_p50_ns": 20035.0, "total_p75_ns": 21054.0, "total_p95_ns": 21776.4, "total_p99_ns": 22104.8, "total_ci_low_ns": 19464.233333333334, "total_ci_high_ns": 20096.590322580643, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1552.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.785445213250036}, {"serializer": "msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "1.2.1", "avg_time_ser_ns": 2764.4418604651164, "avg_time_deser_ns": 3934.5813953488373, "avg_time_total_ns": 6699.023255813953, "median_size_bytes": 199.0, "avg_ops_per_sec": 149275.4931298558, "min_ops_per_sec": 130924.32573972244, "max_ops_per_sec": 177085.17797060387, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 2764.4418604651164, "ser_median_ns": 2785.0, "ser_std_ns": 220.35722893686344, "ser_mad_ns": 138.5, "ser_cv": 0.07971129076297101, "ser_min_ns": 2124.0, "ser_max_ns": 3366.0, "ser_p5_ns": 2413.5, "ser_p25_ns": 2620.0, "ser_p50_ns": 2785.0, "ser_p75_ns": 2913.75, "ser_p95_ns": 3092.0, "ser_p99_ns": 3298.0000000000005, "ser_ci_low_ns": 2717.3869186046513, "ser_ci_high_ns": 2810.0438953488374, "deser_mean_ns": 3934.5813953488373, "deser_median_ns": 3954.0, "deser_std_ns": 213.63363169447658, "deser_mad_ns": 154.5, "deser_cv": 0.05429640671483325, "deser_min_ns": 3394.0, "deser_max_ns": 4354.0, "deser_p5_ns": 3583.75, "deser_p25_ns": 3789.5, "deser_p50_ns": 3954.0, "deser_p75_ns": 4078.5, "deser_p95_ns": 4229.25, "deser_p99_ns": 4293.650000000001, "deser_ci_low_ns": 3888.9997093023258, "deser_ci_high_ns": 3978.7688953488373, "total_mean_ns": 6699.023255813953, "total_median_ns": 6765.5, "total_std_ns": 392.60214786935114, "total_mad_ns": 244.5, "total_cv": 0.05860587922703796, "total_min_ns": 5647.0, "total_max_ns": 7638.0, "total_p5_ns": 6036.75, "total_p25_ns": 6466.0, "total_p50_ns": 6765.5, "total_p75_ns": 6949.75, "total_p95_ns": 7256.25, "total_p99_ns": 7485.000000000001, "total_ci_low_ns": 6616.9369186046515, "total_ci_high_ns": 6782.757267441861, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 925.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.585413571276386}, {"serializer": "protobuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "7.35.1", "avg_time_ser_ns": 2242.088888888889, "avg_time_deser_ns": 2529.4777777777776, "avg_time_total_ns": 4771.566666666667, "median_size_bytes": 123.0, "avg_ops_per_sec": 209574.7727860172, "min_ops_per_sec": 172562.5539257981, "max_ops_per_sec": 268456.3758389262, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 2242.088888888889, "ser_median_ns": 2283.0, "ser_std_ns": 253.02190003560554, "ser_mad_ns": 158.0, "ser_cv": 0.11285096736775477, "ser_min_ns": 1599.0, "ser_max_ns": 2827.0, "ser_p5_ns": 1717.9, "ser_p25_ns": 2095.75, "ser_p50_ns": 2283.0, "ser_p75_ns": 2415.0, "ser_p95_ns": 2561.35, "ser_p99_ns": 2730.88, "ser_ci_low_ns": 2190.7544444444447, "ser_ci_high_ns": 2292.748888888889, "deser_mean_ns": 2529.4777777777776, "deser_median_ns": 2545.5, "deser_std_ns": 178.78819480532772, "deser_mad_ns": 123.0, "deser_cv": 0.07068186025433223, "deser_min_ns": 2075.0, "deser_max_ns": 2968.0, "deser_p5_ns": 2206.25, "deser_p25_ns": 2413.5, "deser_p50_ns": 2545.5, "deser_p75_ns": 2655.5, "deser_p95_ns": 2754.65, "deser_p99_ns": 2952.87, "deser_ci_low_ns": 2492.5522222222226, "deser_ci_high_ns": 2566.345, "total_mean_ns": 4771.566666666667, "total_median_ns": 4806.5, "total_std_ns": 412.30993714639345, "total_mad_ns": 249.5, "total_cv": 0.08640976139487243, "total_min_ns": 3725.0, "total_max_ns": 5795.0, "total_p5_ns": 3915.0, "total_p25_ns": 4563.25, "total_p50_ns": 4806.5, "total_p75_ns": 5054.0, "total_p95_ns": 5266.85, "total_p99_ns": 5487.95, "total_ci_low_ns": 4685.427222222223, "total_ci_high_ns": 4853.181388888889, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 260.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.8838383838383839, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.3089276047425153}, {"serializer": "mashumaro", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "3.22", "avg_time_ser_ns": 2778.787878787879, "avg_time_deser_ns": 4704.666666666667, "avg_time_total_ns": 7483.454545454545, "median_size_bytes": 257.0, "avg_ops_per_sec": 133628.12507592508, "min_ops_per_sec": 100563.15366049879, "max_ops_per_sec": 198176.77368212445, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 2778.787878787879, "ser_median_ns": 2754.0, "ser_std_ns": 394.0655770747433, "ser_mad_ns": 258.0, "ser_cv": 0.14181203973245943, "ser_min_ns": 1967.0, "ser_max_ns": 3775.0, "ser_p5_ns": 2177.6, "ser_p25_ns": 2526.0, "ser_p50_ns": 2754.0, "ser_p75_ns": 3076.0, "ser_p95_ns": 3422.2999999999997, "ser_p99_ns": 3773.04, "ser_ci_low_ns": 2701.5530303030305, "ser_ci_high_ns": 2857.697727272727, "deser_mean_ns": 4704.666666666667, "deser_median_ns": 4682.0, "deser_std_ns": 584.2959831441317, "deser_mad_ns": 430.0, "deser_cv": 0.12419498012132599, "deser_min_ns": 3079.0, "deser_max_ns": 6171.0, "deser_p5_ns": 3858.6, "deser_p25_ns": 4248.0, "deser_p50_ns": 4682.0, "deser_p75_ns": 5099.5, "deser_p95_ns": 5694.4, "deser_p99_ns": 6004.4, "deser_ci_low_ns": 4587.179292929293, "deser_ci_high_ns": 4819.945707070707, "total_mean_ns": 7483.454545454545, "total_median_ns": 7419.0, "total_std_ns": 948.2935401124084, "total_mad_ns": 691.0, "total_cv": 0.12671868778683268, "total_min_ns": 5046.0, "total_max_ns": 9944.0, "total_p5_ns": 6091.9, "total_p25_ns": 6744.5, "total_p50_ns": 7419.0, "total_p75_ns": 8162.5, "total_p95_ns": 9026.8, "total_p99_ns": 9779.359999999999, "total_ci_low_ns": 7298.124747474748, "total_ci_high_ns": 7663.675505050505, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 5754.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.840801236183177}, {"serializer": "pydantic", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "2.13.4", "avg_time_ser_ns": 7471.152173913043, "avg_time_deser_ns": 12485.815217391304, "avg_time_total_ns": 19956.967391304348, "median_size_bytes": 257.0, "avg_ops_per_sec": 50107.813496539566, "min_ops_per_sec": 41088.01051853069, "max_ops_per_sec": 65223.062875032614, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 7471.152173913043, "ser_median_ns": 7562.0, "ser_std_ns": 667.6258894298365, "ser_mad_ns": 428.0, "ser_cv": 0.08936049941011509, "ser_min_ns": 5764.0, "ser_max_ns": 9205.0, "ser_p5_ns": 6315.75, "ser_p25_ns": 7067.5, "ser_p50_ns": 7562.0, "ser_p75_ns": 7882.0, "ser_p95_ns": 8434.65, "ser_p99_ns": 9108.54, "ser_ci_low_ns": 7331.159782608695, "ser_ci_high_ns": 7603.489673913044, "deser_mean_ns": 12485.815217391304, "deser_median_ns": 12663.0, "deser_std_ns": 1419.5870931121913, "deser_mad_ns": 1061.0, "deser_cv": 0.1136959876784713, "deser_min_ns": 9172.0, "deser_max_ns": 15157.0, "deser_p5_ns": 9821.7, "deser_p25_ns": 11497.0, "deser_p50_ns": 12663.0, "deser_p75_ns": 13584.75, "deser_p95_ns": 14375.2, "deser_p99_ns": 15135.16, "deser_ci_low_ns": 12182.502173913044, "deser_ci_high_ns": 12768.76929347826, "total_mean_ns": 19956.967391304348, "total_median_ns": 20246.0, "total_std_ns": 1907.763130936373, "total_mad_ns": 1368.0, "total_cv": 0.09559383916053417, "total_min_ns": 15332.0, "total_max_ns": 24338.0, "total_p5_ns": 16522.45, "total_p25_ns": 18784.0, "total_p50_ns": 20246.0, "total_p75_ns": 21456.75, "total_p95_ns": 22385.100000000002, "total_p99_ns": 22932.050000000007, "total_ci_low_ns": 19563.25, "total_ci_high_ns": 20331.571739130435, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 4260.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.60843066291381}, {"serializer": "cloudpickle", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "3.1.2", "avg_time_ser_ns": 21172.41489361702, "avg_time_deser_ns": 6308.914893617021, "avg_time_total_ns": 27481.32978723404, "median_size_bytes": 325.0, "avg_ops_per_sec": 36388.34102069297, "min_ops_per_sec": 29099.374363451185, "max_ops_per_sec": 45972.78411180581, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 21172.41489361702, "ser_median_ns": 21097.0, "ser_std_ns": 1735.5521783129318, "ser_mad_ns": 1188.0, "ser_cv": 0.08197232989403394, "ser_min_ns": 16444.0, "ser_max_ns": 25730.0, "ser_p5_ns": 18558.15, "ser_p25_ns": 20086.5, "ser_p50_ns": 21097.0, "ser_p75_ns": 22414.25, "ser_p95_ns": 23683.4, "ser_p99_ns": 24888.349999999995, "ser_ci_low_ns": 20822.66835106383, "ser_ci_high_ns": 21551.52739361702, "deser_mean_ns": 6308.914893617021, "deser_median_ns": 6350.5, "deser_std_ns": 876.3975586747512, "deser_mad_ns": 621.5, "deser_cv": 0.1389141513957396, "deser_min_ns": 4623.0, "deser_max_ns": 8635.0, "deser_p5_ns": 4766.45, "deser_p25_ns": 5718.75, "deser_p50_ns": 6350.5, "deser_p75_ns": 6963.75, "deser_p95_ns": 7704.849999999999, "deser_p99_ns": 8173.719999999997, "deser_ci_low_ns": 6127.325531914894, "deser_ci_high_ns": 6495.98670212766, "total_mean_ns": 27481.32978723404, "total_median_ns": 27680.0, "total_std_ns": 2479.0309040841453, "total_mad_ns": 1746.0, "total_cv": 0.09020782193865068, "total_min_ns": 21752.0, "total_max_ns": 34365.0, "total_p5_ns": 23591.8, "total_p25_ns": 25807.75, "total_p50_ns": 27680.0, "total_p75_ns": 29239.25, "total_p95_ns": 31201.6, "total_p99_ns": 32076.269999999982, "total_ci_low_ns": 26972.406914893618, "total_ci_high_ns": 27956.905585106386, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 8722.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.294330733801354}, {"serializer": "pickle", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 8478.216494845361, "avg_time_deser_ns": 5947.432989690722, "avg_time_total_ns": 14425.649484536083, "median_size_bytes": 325.0, "avg_ops_per_sec": 69320.9689499231, "min_ops_per_sec": 53493.099390178664, "max_ops_per_sec": 95739.58831977022, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 8478.216494845361, "ser_median_ns": 8473.0, "ser_std_ns": 1089.9630653796266, "ser_mad_ns": 731.0, "ser_cv": 0.12856041905067053, "ser_min_ns": 6173.0, "ser_max_ns": 10857.0, "ser_p5_ns": 6683.2, "ser_p25_ns": 7788.0, "ser_p50_ns": 8473.0, "ser_p75_ns": 9204.0, "ser_p95_ns": 10274.4, "ser_p99_ns": 10811.88, "ser_ci_low_ns": 8256.909020618557, "ser_ci_high_ns": 8708.269072164947, "deser_mean_ns": 5947.432989690722, "deser_median_ns": 5973.0, "deser_std_ns": 885.487858791418, "deser_mad_ns": 570.0, "deser_cv": 0.1488857226851185, "deser_min_ns": 4107.0, "deser_max_ns": 7972.0, "deser_p5_ns": 4595.8, "deser_p25_ns": 5363.0, "deser_p50_ns": 5973.0, "deser_p75_ns": 6538.0, "deser_p95_ns": 7582.199999999999, "deser_p99_ns": 7842.399999999999, "deser_ci_low_ns": 5773.139175257732, "deser_ci_high_ns": 6122.907474226804, "total_mean_ns": 14425.649484536083, "total_median_ns": 14437.0, "total_std_ns": 1853.7571872261049, "total_mad_ns": 1166.0, "total_cv": 0.1285042444163976, "total_min_ns": 10445.0, "total_max_ns": 18694.0, "total_p5_ns": 11099.2, "total_p25_ns": 13291.0, "total_p50_ns": 14437.0, "total_p75_ns": 15603.0, "total_p95_ns": 17947.399999999998, "total_p99_ns": 18362.799999999996, "total_ci_low_ns": 14076.595618556701, "total_ci_high_ns": 14794.998711340206, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 6889.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.8456721201681905}, {"serializer": "rapidjson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "1.23", "avg_time_ser_ns": 4412.266666666666, "avg_time_deser_ns": 5188.344444444445, "avg_time_total_ns": 9600.611111111111, "median_size_bytes": 257.0, "avg_ops_per_sec": 104160.03610881252, "min_ops_per_sec": 88097.96493700995, "max_ops_per_sec": 127129.41774726672, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 4412.266666666666, "ser_median_ns": 4439.5, "ser_std_ns": 337.3650974667712, "ser_mad_ns": 197.0, "ser_cv": 0.07646072256136782, "ser_min_ns": 3489.0, "ser_max_ns": 5253.0, "ser_p5_ns": 3843.25, "ser_p25_ns": 4202.75, "ser_p50_ns": 4439.5, "ser_p75_ns": 4599.75, "ser_p95_ns": 4895.0, "ser_p99_ns": 5188.03, "ser_ci_low_ns": 4343.518333333333, "ser_ci_high_ns": 4478.740000000001, "deser_mean_ns": 5188.344444444445, "deser_median_ns": 5183.0, "deser_std_ns": 349.2067788674659, "deser_mad_ns": 252.0, "deser_cv": 0.06730601304649081, "deser_min_ns": 4354.0, "deser_max_ns": 6098.0, "deser_p5_ns": 4582.65, "deser_p25_ns": 4956.5, "deser_p50_ns": 5183.0, "deser_p75_ns": 5450.5, "deser_p95_ns": 5717.4, "deser_p99_ns": 5861.26, "deser_ci_low_ns": 5115.251944444444, "deser_ci_high_ns": 5258.095555555555, "total_mean_ns": 9600.611111111111, "total_median_ns": 9651.5, "total_std_ns": 646.1242217929271, "total_mad_ns": 384.5, "total_cv": 0.06730032227272967, "total_min_ns": 7866.0, "total_max_ns": 11351.0, "total_p5_ns": 8427.55, "total_p25_ns": 9238.25, "total_p50_ns": 9651.5, "total_p75_ns": 10018.75, "total_p95_ns": 10489.4, "total_p99_ns": 10919.35, "total_ci_low_ns": 9469.38111111111, "total_ci_high_ns": 9733.48361111111, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 2038.0, "StreamMode": "adapted", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.03579343742946}, {"serializer": "msgspec-msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 1768.6947368421052, "avg_time_deser_ns": 2156.0947368421052, "avg_time_total_ns": 3924.7894736842104, "median_size_bytes": 112.0, "avg_ops_per_sec": 254790.73634522804, "min_ops_per_sec": 207339.82998133943, "max_ops_per_sec": 326690.6239790918, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1768.6947368421052, "ser_median_ns": 1778.0, "ser_std_ns": 203.7297476520978, "ser_mad_ns": 141.0, "ser_cv": 0.1151864951075982, "ser_min_ns": 1296.0, "ser_max_ns": 2330.0, "ser_p5_ns": 1426.5, "ser_p25_ns": 1622.5, "ser_p50_ns": 1778.0, "ser_p75_ns": 1907.0, "ser_p95_ns": 2146.6, "ser_p99_ns": 2230.36, "ser_ci_low_ns": 1732.1784210526314, "ser_ci_high_ns": 1811.032105263158, "deser_mean_ns": 2156.0947368421052, "deser_median_ns": 2140.0, "deser_std_ns": 210.85000586199772, "deser_mad_ns": 149.0, "deser_cv": 0.09779255162545236, "deser_min_ns": 1743.0, "deser_max_ns": 2651.0, "deser_p5_ns": 1796.7, "deser_p25_ns": 2000.0, "deser_p50_ns": 2140.0, "deser_p75_ns": 2290.0, "deser_p95_ns": 2547.2, "deser_p99_ns": 2627.5, "deser_ci_low_ns": 2113.9771052631577, "deser_ci_high_ns": 2196.772105263158, "total_mean_ns": 3924.7894736842104, "total_median_ns": 3964.0, "total_std_ns": 386.82331154689086, "total_mad_ns": 280.0, "total_cv": 0.09855899638453187, "total_min_ns": 3061.0, "total_max_ns": 4823.0, "total_p5_ns": 3282.6, "total_p25_ns": 3650.5, "total_p50_ns": 3964.0, "total_p75_ns": 4174.5, "total_p95_ns": 4632.4, "total_p99_ns": 4771.3, "total_ci_low_ns": 3852.048947368421, "total_ci_high_ns": 4000.597894736842, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1013.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.4626262626262626, "effect_vs_fastest_cliffs_label": "medium", "effect_vs_fastest_hedges_g": 0.9006197339275412}, {"serializer": "msgspec", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 1861.5652173913043, "avg_time_deser_ns": 2534.1847826086955, "avg_time_total_ns": 4395.75, "median_size_bytes": 144.0, "avg_ops_per_sec": 227492.46431211967, "min_ops_per_sec": 183150.18315018315, "max_ops_per_sec": 322684.73701193935, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 1861.5652173913043, "ser_median_ns": 1895.5, "ser_std_ns": 235.09443061107982, "ser_mad_ns": 188.5, "ser_cv": 0.12628858146615368, "ser_min_ns": 1282.0, "ser_max_ns": 2475.0, "ser_p5_ns": 1474.3, "ser_p25_ns": 1680.5, "ser_p50_ns": 1895.5, "ser_p75_ns": 2030.25, "ser_p95_ns": 2213.8, "ser_p99_ns": 2288.4500000000007, "ser_ci_low_ns": 1816.0410326086956, "ser_ci_high_ns": 1909.283152173913, "deser_mean_ns": 2534.1847826086955, "deser_median_ns": 2580.5, "deser_std_ns": 271.836324758473, "deser_mad_ns": 174.0, "deser_cv": 0.10726775988238871, "deser_min_ns": 1817.0, "deser_max_ns": 3024.0, "deser_p5_ns": 2054.5, "deser_p25_ns": 2364.0, "deser_p50_ns": 2580.5, "deser_p75_ns": 2731.5, "deser_p95_ns": 2922.75, "deser_p99_ns": 2988.51, "deser_ci_low_ns": 2478.7323369565215, "deser_ci_high_ns": 2587.8285326086952, "total_mean_ns": 4395.75, "total_median_ns": 4459.5, "total_std_ns": 485.60719043955004, "total_mad_ns": 309.5, "total_cv": 0.11047197644077804, "total_min_ns": 3099.0, "total_max_ns": 5460.0, "total_p5_ns": 3563.15, "total_p25_ns": 4041.0, "total_p50_ns": 4459.5, "total_p75_ns": 4743.5, "total_p95_ns": 5072.9, "total_p99_ns": 5259.800000000001, "total_ci_low_ns": 4293.745108695653, "total_ci_high_ns": 4491.686141304348, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 1072.0, "StreamMode": "native", "fastest_in_group": "orjson", "effect_vs_fastest_cliffs_delta": 0.7237593324549846, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.6082249802436226}, {"serializer": "msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "1.2.1", "avg_time_ser_ns": 94054.65476190476, "avg_time_deser_ns": 99834.04761904762, "avg_time_total_ns": 193888.70238095237, "median_size_bytes": 19848.0, "avg_ops_per_sec": 5157.598084468072, "min_ops_per_sec": 4557.01278697788, "max_ops_per_sec": 5747.192496465476, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 94054.65476190476, "ser_median_ns": 89265.5, "ser_std_ns": 11855.275450697245, "ser_mad_ns": 6968.0, "ser_cv": 0.1260466638329422, "ser_min_ns": 77498.0, "ser_max_ns": 117348.0, "ser_p5_ns": 79940.55, "ser_p25_ns": 84333.0, "ser_p50_ns": 89265.5, "ser_p75_ns": 107009.25, "ser_p95_ns": 112405.3, "ser_p99_ns": 115043.92, "ser_ci_low_ns": 91611.1824404762, "ser_ci_high_ns": 96546.9818452381, "deser_mean_ns": 99834.04761904762, "deser_median_ns": 99742.0, "deser_std_ns": 2928.715824938854, "deser_mad_ns": 2238.0, "deser_cv": 0.029335841777290376, "deser_min_ns": 94349.0, "deser_max_ns": 107571.0, "deser_p5_ns": 95127.7, "deser_p25_ns": 97504.5, "deser_p50_ns": 99742.0, "deser_p75_ns": 101984.5, "deser_p95_ns": 104249.95, "deser_p99_ns": 106877.12, "deser_ci_low_ns": 99261.87172619047, "deser_ci_high_ns": 100493.37232142857, "total_mean_ns": 193888.70238095237, "total_median_ns": 192482.5, "total_std_ns": 11965.9092946464, "total_mad_ns": 9740.5, "total_cv": 0.06171535085698697, "total_min_ns": 173998.0, "total_max_ns": 219442.0, "total_p5_ns": 176959.8, "total_p25_ns": 184353.75, "total_p50_ns": 192482.5, "total_p75_ns": 204600.75, "total_p95_ns": 212600.45, "total_p99_ns": 215280.38, "total_ci_low_ns": 191298.68601190476, "total_ci_high_ns": 196624.62827380953, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 178474.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.742223467071968}, {"serializer": "pydantic", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "2.13.4", "avg_time_ser_ns": 363893.4731182796, "avg_time_deser_ns": 385703.32258064515, "avg_time_total_ns": 749596.7956989247, "median_size_bytes": 28245.0, "avg_ops_per_sec": 1334.050526546874, "min_ops_per_sec": 1218.0980130385212, "max_ops_per_sec": 1451.7644018658077, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 363893.4731182796, "ser_median_ns": 364395.0, "ser_std_ns": 16762.82301870227, "ser_mad_ns": 11488.0, "ser_cv": 0.04606519285728903, "ser_min_ns": 323576.0, "ser_max_ns": 407694.0, "ser_p5_ns": 339618.0, "ser_p25_ns": 349796.0, "ser_p50_ns": 364395.0, "ser_p75_ns": 374783.0, "ser_p95_ns": 393808.79999999993, "ser_p99_ns": 407130.04, "ser_ci_low_ns": 360387.4370967742, "ser_ci_high_ns": 367197.2142473118, "deser_mean_ns": 385703.32258064515, "deser_median_ns": 382500.0, "deser_std_ns": 14524.443225249852, "deser_mad_ns": 9621.0, "deser_cv": 0.03765703424090414, "deser_min_ns": 361852.0, "deser_max_ns": 428771.0, "deser_p5_ns": 366766.2, "deser_p25_ns": 374361.0, "deser_p50_ns": 382500.0, "deser_p75_ns": 394771.0, "deser_p95_ns": 413051.2, "deser_p99_ns": 419957.39999999997, "deser_ci_low_ns": 382755.9688172043, "deser_ci_high_ns": 388567.25833333336, "total_mean_ns": 749596.7956989247, "total_median_ns": 748138.0, "total_std_ns": 26345.741679905866, "total_mad_ns": 16897.0, "total_cv": 0.035146550560346344, "total_min_ns": 688817.0, "total_max_ns": 820952.0, "total_p5_ns": 715554.6, "total_p25_ns": 731241.0, "total_p50_ns": 748138.0, "total_p75_ns": 764769.0, "total_p95_ns": 795843.7999999999, "total_p99_ns": 809754.6799999999, "total_ci_low_ns": 743799.7706989247, "total_ci_high_ns": 754803.8602150537, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 492796.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 33.01233671269921}, {"serializer": "avro", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "1.12.2", "avg_time_ser_ns": 489437.4943820225, "avg_time_deser_ns": 335047.3820224719, "avg_time_total_ns": 824484.8764044944, "median_size_bytes": 10445.0, "avg_ops_per_sec": 1212.8785240560283, "min_ops_per_sec": 1144.6716108849114, "max_ops_per_sec": 1303.46487031828, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 489437.4943820225, "ser_median_ns": 490078.0, "ser_std_ns": 18692.820975592105, "ser_mad_ns": 12528.0, "ser_cv": 0.03819245805676205, "ser_min_ns": 445366.0, "ser_max_ns": 533033.0, "ser_p5_ns": 461094.6, "ser_p25_ns": 477498.0, "ser_p50_ns": 490078.0, "ser_p75_ns": 501368.0, "ser_p95_ns": 521269.6, "ser_p99_ns": 531997.24, "ser_ci_low_ns": 485459.213764045, "ser_ci_high_ns": 493478.86966292135, "deser_mean_ns": 335047.3820224719, "deser_median_ns": 333658.0, "deser_std_ns": 6514.348539789297, "deser_mad_ns": 3566.0, "deser_cv": 0.01944306653126564, "deser_min_ns": 321820.0, "deser_max_ns": 352306.0, "deser_p5_ns": 326513.4, "deser_p25_ns": 331325.0, "deser_p50_ns": 333658.0, "deser_p75_ns": 338609.0, "deser_p95_ns": 348847.6, "deser_p99_ns": 352218.0, "deser_ci_low_ns": 333734.2581460674, "deser_ci_high_ns": 336434.6823033708, "total_mean_ns": 824484.8764044944, "total_median_ns": 824553.0, "total_std_ns": 21713.122964224895, "total_mad_ns": 14172.0, "total_cv": 0.02633538053349614, "total_min_ns": 767186.0, "total_max_ns": 873613.0, "total_p5_ns": 791192.6, "total_p25_ns": 808981.0, "total_p50_ns": 824553.0, "total_p75_ns": 837844.0, "total_p95_ns": 860004.0, "total_p99_ns": 873185.32, "total_ci_low_ns": 819930.3087078651, "total_ci_high_ns": 828660.0626404494, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 169161.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 43.38548739341578}, {"serializer": "msgspec-msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 37889.114583333336, "avg_time_deser_ns": 47853.583333333336, "avg_time_total_ns": 85742.69791666667, "median_size_bytes": 11148.0, "avg_ops_per_sec": 11662.80073169496, "min_ops_per_sec": 8965.393580778196, "max_ops_per_sec": 14109.148371804278, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 37889.114583333336, "ser_median_ns": 33734.5, "ser_std_ns": 10440.333513396157, "ser_mad_ns": 4491.5, "ser_cv": 0.2755496830213248, "ser_min_ns": 25136.0, "ser_max_ns": 62160.0, "ser_p5_ns": 27231.0, "ser_p25_ns": 30520.25, "ser_p50_ns": 33734.5, "ser_p75_ns": 41580.75, "ser_p95_ns": 58757.75, "ser_p99_ns": 61750.549999999996, "ser_ci_low_ns": 35847.459635416664, "ser_ci_high_ns": 39905.22421875, "deser_mean_ns": 47853.583333333336, "deser_median_ns": 47744.0, "deser_std_ns": 1737.6987484460237, "deser_mad_ns": 1077.5, "deser_cv": 0.03631282398105381, "deser_min_ns": 43835.0, "deser_max_ns": 52425.0, "deser_p5_ns": 45162.75, "deser_p25_ns": 46727.25, "deser_p50_ns": 47744.0, "deser_p75_ns": 48911.75, "deser_p95_ns": 51093.75, "deser_p99_ns": 52062.1, "deser_ci_low_ns": 47491.94322916667, "deser_ci_high_ns": 48206.10234375, "total_mean_ns": 85742.69791666667, "total_median_ns": 82124.0, "total_std_ns": 10875.271596482487, "total_mad_ns": 5659.0, "total_cv": 0.12683612553283738, "total_min_ns": 70876.0, "total_max_ns": 111540.0, "total_p5_ns": 72423.75, "total_p25_ns": 77932.0, "total_p50_ns": 82124.0, "total_p75_ns": 91003.5, "total_p95_ns": 106790.25, "total_p99_ns": 110342.05, "total_ci_low_ns": 83694.99791666667, "total_ci_high_ns": 87952.56067708333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 104254.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.6575980392156863, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.4153198220190766}, {"serializer": "msgspec", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 48900.78125, "avg_time_deser_ns": 53166.791666666664, "avg_time_total_ns": 102067.57291666667, "median_size_bytes": 14446.0, "avg_ops_per_sec": 9797.430970720276, "min_ops_per_sec": 7496.08329647759, "max_ops_per_sec": 12210.75767751389, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 48900.78125, "ser_median_ns": 42942.0, "ser_std_ns": 11752.170377113216, "ser_mad_ns": 3738.5, "ser_cv": 0.24032684298092305, "ser_min_ns": 33024.0, "ser_max_ns": 76297.0, "ser_p5_ns": 37424.75, "ser_p25_ns": 40334.75, "ser_p50_ns": 42942.0, "ser_p75_ns": 61385.75, "ser_p95_ns": 69788.25, "ser_p99_ns": 75346.05, "ser_ci_low_ns": 46557.703906250004, "ser_ci_high_ns": 51267.429947916666, "deser_mean_ns": 53166.791666666664, "deser_median_ns": 53088.5, "deser_std_ns": 1911.0809116510982, "deser_mad_ns": 1195.0, "deser_cv": 0.03594501100673459, "deser_min_ns": 48871.0, "deser_max_ns": 57400.0, "deser_p5_ns": 50546.25, "deser_p25_ns": 51898.75, "deser_p50_ns": 53088.5, "deser_p75_ns": 54287.0, "deser_p95_ns": 56979.25, "deser_p99_ns": 57295.5, "deser_ci_low_ns": 52804.453385416666, "deser_ci_high_ns": 53550.93359375, "total_mean_ns": 102067.57291666667, "total_median_ns": 96688.0, "total_std_ns": 12430.34745819558, "total_mad_ns": 5797.5, "total_cv": 0.12178547116373942, "total_min_ns": 81895.0, "total_max_ns": 133403.0, "total_p5_ns": 88373.0, "total_p25_ns": 93098.25, "total_p50_ns": 96688.0, "total_p75_ns": 112991.25, "total_p95_ns": 123596.25, "total_p99_ns": 132017.9, "total_ci_low_ns": 99729.0953125, "total_ci_high_ns": 104625.05182291666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 109600.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.9556372549019608, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.696401695772249}, {"serializer": "orjson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "3.11.9", "avg_time_ser_ns": 61421.652631578945, "avg_time_deser_ns": 73074.6105263158, "avg_time_total_ns": 134496.26315789475, "median_size_bytes": 25746.0, "avg_ops_per_sec": 7435.1508102944745, "min_ops_per_sec": 5427.467326646693, "max_ops_per_sec": 9456.89076345479, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 61421.652631578945, "ser_median_ns": 55438.0, "ser_std_ns": 13339.471375191031, "ser_mad_ns": 6497.0, "ser_cv": 0.21717864635138062, "ser_min_ns": 37777.0, "ser_max_ns": 105685.0, "ser_p5_ns": 46863.5, "ser_p25_ns": 51186.5, "ser_p50_ns": 55438.0, "ser_p75_ns": 75137.5, "ser_p95_ns": 80498.09999999999, "ser_p99_ns": 87903.96000000005, "ser_ci_low_ns": 58851.62342105263, "ser_ci_high_ns": 64070.10447368421, "deser_mean_ns": 73074.6105263158, "deser_median_ns": 72969.0, "deser_std_ns": 4624.046598212567, "deser_mad_ns": 3131.0, "deser_cv": 0.06327842960650942, "deser_min_ns": 64694.0, "deser_max_ns": 86201.0, "deser_p5_ns": 66712.4, "deser_p25_ns": 69472.5, "deser_p50_ns": 72969.0, "deser_p75_ns": 75763.5, "deser_p95_ns": 81603.0, "deser_p99_ns": 82801.02, "deser_ci_low_ns": 72173.75105263157, "deser_ci_high_ns": 73991.45368421052, "total_mean_ns": 134496.26315789475, "total_median_ns": 131375.0, "total_std_ns": 15262.386123234206, "total_mad_ns": 11399.0, "total_cv": 0.11347814255119194, "total_min_ns": 105743.0, "total_max_ns": 184248.0, "total_p5_ns": 114932.0, "total_p25_ns": 122246.5, "total_p50_ns": 131375.0, "total_p75_ns": 146569.0, "total_p95_ns": 158274.6, "total_p99_ns": 165626.60000000003, "total_ci_low_ns": 131596.7594736842, "total_ci_high_ns": 137438.41552631577, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 502598.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.7762992129364354}, {"serializer": "cloudpickle", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "3.1.2", "avg_time_ser_ns": 558402.9368421052, "avg_time_deser_ns": 148552.28421052633, "avg_time_total_ns": 706955.2210526316, "median_size_bytes": 20767.0, "avg_ops_per_sec": 1414.5167476251677, "min_ops_per_sec": 1287.272989408318, "max_ops_per_sec": 1524.8667647664286, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 558402.9368421052, "ser_median_ns": 558871.0, "ser_std_ns": 25167.995748489164, "ser_mad_ns": 18926.0, "ser_cv": 0.04507138857617739, "ser_min_ns": 511741.0, "ser_max_ns": 615064.0, "ser_p5_ns": 522620.8, "ser_p25_ns": 538635.5, "ser_p50_ns": 558871.0, "ser_p75_ns": 573131.5, "ser_p95_ns": 606387.8, "ser_p99_ns": 613722.62, "ser_ci_low_ns": 553730.5378947369, "ser_ci_high_ns": 563633.2884210526, "deser_mean_ns": 148552.28421052633, "deser_median_ns": 147004.0, "deser_std_ns": 7510.030687620614, "deser_mad_ns": 4767.0, "deser_cv": 0.050554797777309826, "deser_min_ns": 136176.0, "deser_max_ns": 168758.0, "deser_p5_ns": 139054.9, "deser_p25_ns": 142919.0, "deser_p50_ns": 147004.0, "deser_p75_ns": 153033.0, "deser_p95_ns": 162004.8, "deser_p99_ns": 167667.6, "deser_ci_low_ns": 147042.35605263157, "deser_ci_high_ns": 150093.67578947367, "total_mean_ns": 706955.2210526316, "total_median_ns": 704347.0, "total_std_ns": 29459.882792583267, "total_mad_ns": 22939.0, "total_cv": 0.041671497593183525, "total_min_ns": 655795.0, "total_max_ns": 776836.0, "total_p5_ns": 665861.0, "total_p25_ns": 681853.5, "total_p50_ns": 704347.0, "total_p75_ns": 728929.5, "total_p95_ns": 759913.2999999999, "total_p99_ns": 771711.12, "total_ci_low_ns": 701060.4555263157, "total_ci_high_ns": 713014.4410526316, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 281780.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.945634197327355}, {"serializer": "mashumaro", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "3.22", "avg_time_ser_ns": 86629.25287356322, "avg_time_deser_ns": 170857.0, "avg_time_total_ns": 257486.2528735632, "median_size_bytes": 25746.0, "avg_ops_per_sec": 3883.7024844625116, "min_ops_per_sec": 3548.0116942465443, "max_ops_per_sec": 4286.400109731843, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 86629.25287356322, "ser_median_ns": 84856.0, "ser_std_ns": 6632.976905808269, "ser_mad_ns": 3121.0, "ser_cv": 0.07656740287820796, "ser_min_ns": 77704.0, "ser_max_ns": 103698.0, "ser_p5_ns": 79266.4, "ser_p25_ns": 82330.0, "ser_p50_ns": 84856.0, "ser_p75_ns": 89007.5, "ser_p95_ns": 102676.8, "ser_p99_ns": 103432.26, "ser_ci_low_ns": 85239.22816091955, "ser_ci_high_ns": 88029.49310344827, "deser_mean_ns": 170857.0, "deser_median_ns": 169497.0, "deser_std_ns": 7679.130239327767, "deser_mad_ns": 4697.0, "deser_cv": 0.044944779782670696, "deser_min_ns": 154858.0, "deser_max_ns": 191891.0, "deser_p5_ns": 160976.6, "deser_p25_ns": 165430.5, "deser_p50_ns": 169497.0, "deser_p75_ns": 175240.0, "deser_p95_ns": 187722.9, "deser_p99_ns": 190408.36000000002, "deser_ci_low_ns": 169309.89051724138, "deser_ci_high_ns": 172421.55201149426, "total_mean_ns": 257486.2528735632, "total_median_ns": 257054.0, "total_std_ns": 10725.401848836822, "total_mad_ns": 7379.0, "total_cv": 0.04165426980718638, "total_min_ns": 233296.0, "total_max_ns": 281848.0, "total_p5_ns": 240345.5, "total_p25_ns": 250690.5, "total_p50_ns": 257054.0, "total_p75_ns": 264810.0, "total_p95_ns": 276439.2, "total_p99_ns": 280771.28, "total_ci_low_ns": 255322.3988505747, "total_ci_high_ns": 259699.71666666667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 499294.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.214814638253678}, {"serializer": "json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 198665.989010989, "avg_time_deser_ns": 135832.78021978022, "avg_time_total_ns": 334498.76923076925, "median_size_bytes": 25746.0, "avg_ops_per_sec": 2989.5476216538914, "min_ops_per_sec": 2686.2800930527424, "max_ops_per_sec": 3321.1337022005832, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 198665.989010989, "ser_median_ns": 201866.0, "ser_std_ns": 12052.755006861853, "ser_mad_ns": 7636.0, "ser_cv": 0.06066843684147249, "ser_min_ns": 171775.0, "ser_max_ns": 226679.0, "ser_p5_ns": 176969.5, "ser_p25_ns": 191530.5, "ser_p50_ns": 201866.0, "ser_p75_ns": 207584.5, "ser_p95_ns": 214151.0, "ser_p99_ns": 225351.5, "ser_ci_low_ns": 196300.45247252745, "ser_ci_high_ns": 201192.9076923077, "deser_mean_ns": 135832.78021978022, "deser_median_ns": 135706.0, "deser_std_ns": 3799.081514150487, "deser_mad_ns": 2309.0, "deser_cv": 0.027968812152732905, "deser_min_ns": 127372.0, "deser_max_ns": 145583.0, "deser_p5_ns": 129463.0, "deser_p25_ns": 133545.5, "deser_p50_ns": 135706.0, "deser_p75_ns": 138078.0, "deser_p95_ns": 142638.5, "deser_p99_ns": 145027.69999999998, "deser_ci_low_ns": 135029.4260989011, "deser_ci_high_ns": 136639.6335164835, "total_mean_ns": 334498.76923076925, "total_median_ns": 336623.0, "total_std_ns": 13990.5631933949, "total_mad_ns": 8820.0, "total_cv": 0.041825454920412196, "total_min_ns": 301102.0, "total_max_ns": 372262.0, "total_p5_ns": 309937.5, "total_p25_ns": 327146.5, "total_p50_ns": 336623.0, "total_p75_ns": 343289.0, "total_p95_ns": 352701.5, "total_p99_ns": 363810.0999999999, "total_ci_low_ns": 331456.00604395603, "total_ci_high_ns": 337412.9387362638, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 211682.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.86940206281829}, {"serializer": "flatbuffers", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "25.12.19", "avg_time_ser_ns": 3154810.5520833335, "avg_time_deser_ns": 814834.7395833334, "avg_time_total_ns": 3969645.2916666665, "median_size_bytes": 28724.0, "avg_ops_per_sec": 251.91167636545865, "min_ops_per_sec": 242.25504562752656, "max_ops_per_sec": 260.1179374728502, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 3154810.5520833335, "ser_median_ns": 3146644.0, "ser_std_ns": 51688.8935379372, "ser_mad_ns": 34703.5, "ser_cv": 0.016384151341133163, "ser_min_ns": 3037937.0, "ser_max_ns": 3279663.0, "ser_p5_ns": 3084591.25, "ser_p25_ns": 3118841.25, "ser_p50_ns": 3146644.0, "ser_p75_ns": 3186208.75, "ser_p95_ns": 3249888.5, "ser_p99_ns": 3268871.95, "ser_ci_low_ns": 3144652.453385417, "ser_ci_high_ns": 3165097.7624999997, "deser_mean_ns": 814834.7395833334, "deser_median_ns": 814415.0, "deser_std_ns": 22148.132872829752, "deser_mad_ns": 13876.0, "deser_cv": 0.027181134771150313, "deser_min_ns": 772107.0, "deser_max_ns": 861979.0, "deser_p5_ns": 782471.5, "deser_p25_ns": 797078.75, "deser_p50_ns": 814415.0, "deser_p75_ns": 826153.75, "deser_p95_ns": 857547.0, "deser_p99_ns": 859697.1, "deser_ci_low_ns": 810415.7041666667, "deser_ci_high_ns": 819293.8880208334, "total_mean_ns": 3969645.2916666665, "total_median_ns": 3962638.5, "total_std_ns": 63156.38668190285, "total_mad_ns": 45264.5, "total_cv": 0.015909831242223272, "total_min_ns": 3844410.0, "total_max_ns": 4127881.0, "total_p5_ns": 3881194.75, "total_p25_ns": 3924827.75, "total_p50_ns": 3962638.5, "total_p75_ns": 4011443.75, "total_p95_ns": 4085406.0, "total_p99_ns": 4107732.4499999997, "total_ci_low_ns": 3956862.56484375, "total_ci_high_ns": 3982006.39453125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 188547.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 83.29902079817893}, {"serializer": "pickle", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 264535.7303370786, "avg_time_deser_ns": 145447.8426966292, "avg_time_total_ns": 409983.57303370786, "median_size_bytes": 20767.0, "avg_ops_per_sec": 2439.122115553109, "min_ops_per_sec": 2141.5752570961095, "max_ops_per_sec": 2692.224854619858, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 264535.7303370786, "ser_median_ns": 262626.0, "ser_std_ns": 18074.988967533438, "ser_mad_ns": 12597.0, "ser_cv": 0.06832721214824854, "ser_min_ns": 234300.0, "ser_max_ns": 309525.0, "ser_p5_ns": 239112.0, "ser_p25_ns": 251036.0, "ser_p50_ns": 262626.0, "ser_p75_ns": 276181.0, "ser_p95_ns": 299337.0, "ser_p99_ns": 305288.68, "ser_ci_low_ns": 260960.28848314608, "ser_ci_high_ns": 268362.804494382, "deser_mean_ns": 145447.8426966292, "deser_median_ns": 144467.0, "deser_std_ns": 6192.70625578422, "deser_mad_ns": 4123.0, "deser_cv": 0.042576817510458255, "deser_min_ns": 130946.0, "deser_max_ns": 161311.0, "deser_p5_ns": 137288.0, "deser_p25_ns": 141011.0, "deser_p50_ns": 144467.0, "deser_p75_ns": 149463.0, "deser_p95_ns": 157297.0, "deser_p99_ns": 161285.48, "deser_ci_low_ns": 144168.71629213484, "deser_ci_high_ns": 146713.79634831462, "total_mean_ns": 409983.57303370786, "total_median_ns": 408058.0, "total_std_ns": 22372.316229544027, "total_mad_ns": 14307.0, "total_cv": 0.05456881129162858, "total_min_ns": 371440.0, "total_max_ns": 466946.0, "total_p5_ns": 380566.4, "total_p25_ns": 391885.0, "total_p50_ns": 408058.0, "total_p75_ns": 422025.0, "total_p95_ns": 456475.8, "total_p99_ns": 466107.36, "total_ci_low_ns": 405577.8674157304, "total_ci_high_ns": 414446.3221910112, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 281780.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.07481789177133}, {"serializer": "cbor2", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "6.1.3", "avg_time_ser_ns": 351365.1208791209, "avg_time_deser_ns": 174367.43956043955, "avg_time_total_ns": 525732.5604395604, "median_size_bytes": 19847.0, "avg_ops_per_sec": 1902.107792532212, "min_ops_per_sec": 1758.3375973020068, "max_ops_per_sec": 2025.7636622565792, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 351365.1208791209, "ser_median_ns": 352361.0, "ser_std_ns": 13215.749879792138, "ser_mad_ns": 10671.0, "ser_cv": 0.03761258330572519, "ser_min_ns": 324495.0, "ser_max_ns": 388697.0, "ser_p5_ns": 331057.5, "ser_p25_ns": 340314.5, "ser_p50_ns": 352361.0, "ser_p75_ns": 361208.5, "ser_p95_ns": 370127.5, "ser_p99_ns": 377693.5999999999, "ser_ci_low_ns": 348648.50219780224, "ser_ci_high_ns": 354265.1043956044, "deser_mean_ns": 174367.43956043955, "deser_median_ns": 174205.0, "deser_std_ns": 4232.9096827616795, "deser_mad_ns": 2652.0, "deser_cv": 0.024275803403619175, "deser_min_ns": 162590.0, "deser_max_ns": 184989.0, "deser_p5_ns": 168914.0, "deser_p25_ns": 171534.5, "deser_p50_ns": 174205.0, "deser_p75_ns": 176572.5, "deser_p95_ns": 182226.0, "deser_p99_ns": 184221.3, "deser_ci_low_ns": 173524.85164835164, "deser_ci_high_ns": 175220.12967032968, "total_mean_ns": 525732.5604395604, "total_median_ns": 526942.0, "total_std_ns": 14982.239318019772, "total_mad_ns": 9853.0, "total_cv": 0.028497834156387902, "total_min_ns": 493641.0, "total_max_ns": 568719.0, "total_p5_ns": 499171.0, "total_p25_ns": 515302.0, "total_p50_ns": 526942.0, "total_p75_ns": 535489.0, "total_p95_ns": 549402.5, "total_p99_ns": 553635.8999999999, "total_ci_low_ns": 522565.73681318684, "total_ci_high_ns": 528696.0953296704, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 239191.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 34.39997436355756}, {"serializer": "serpyco-rs", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "1.21.0", "avg_time_ser_ns": 84269.61956521739, "avg_time_deser_ns": 120091.53260869565, "avg_time_total_ns": 204361.15217391305, "median_size_bytes": 25746.0, "avg_ops_per_sec": 4893.297915784853, "min_ops_per_sec": 4373.075846627484, "max_ops_per_sec": 5465.884680765005, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 84269.61956521739, "ser_median_ns": 81246.0, "ser_std_ns": 8488.686185822353, "ser_mad_ns": 4301.0, "ser_cv": 0.10073246123121328, "ser_min_ns": 73285.0, "ser_max_ns": 107178.0, "ser_p5_ns": 75080.0, "ser_p25_ns": 78304.25, "ser_p50_ns": 81246.0, "ser_p75_ns": 89124.25, "ser_p95_ns": 101206.05, "ser_p99_ns": 104431.62000000001, "ser_ci_low_ns": 82587.96956521738, "ser_ci_high_ns": 86085.33913043478, "deser_mean_ns": 120091.53260869565, "deser_median_ns": 118414.0, "deser_std_ns": 7393.509922692128, "deser_mad_ns": 3962.0, "deser_cv": 0.06156562217240598, "deser_min_ns": 108065.0, "deser_max_ns": 138667.0, "deser_p5_ns": 111354.1, "deser_p25_ns": 114773.0, "deser_p50_ns": 118414.0, "deser_p75_ns": 123681.25, "deser_p95_ns": 136210.35, "deser_p99_ns": 138456.79, "deser_ci_low_ns": 118615.86467391305, "deser_ci_high_ns": 121614.22907608695, "total_mean_ns": 204361.15217391305, "total_median_ns": 203067.0, "total_std_ns": 11265.894089992073, "total_mad_ns": 8542.0, "total_cv": 0.05512737607001111, "total_min_ns": 182953.0, "total_max_ns": 228672.0, "total_p5_ns": 187086.8, "total_p25_ns": 196255.5, "total_p50_ns": 203067.0, "total_p75_ns": 212346.75, "total_p95_ns": 224297.9, "total_p99_ns": 228419.02, "total_ci_low_ns": 202044.54592391304, "total_ci_high_ns": 206649.12527173912, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 499294.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.022429692574676}, {"serializer": "rapidjson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "1.23", "avg_time_ser_ns": 96697.12631578947, "avg_time_deser_ns": 142448.87368421053, "avg_time_total_ns": 239146.0, "median_size_bytes": 25746.0, "avg_ops_per_sec": 4181.546001187559, "min_ops_per_sec": 3552.006706188661, "max_ops_per_sec": 4671.56558177342, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 96697.12631578947, "ser_median_ns": 91779.0, "ser_std_ns": 11896.662958928551, "ser_mad_ns": 6308.0, "ser_cv": 0.12303016038012259, "ser_min_ns": 80415.0, "ser_max_ns": 127531.0, "ser_p5_ns": 82837.3, "ser_p25_ns": 87128.5, "ser_p50_ns": 91779.0, "ser_p75_ns": 109130.5, "ser_p95_ns": 116324.7, "ser_p99_ns": 123084.80000000002, "ser_ci_low_ns": 94309.6555263158, "ser_ci_high_ns": 99030.20552631578, "deser_mean_ns": 142448.87368421053, "deser_median_ns": 140698.0, "deser_std_ns": 6904.374578794239, "deser_mad_ns": 3873.0, "deser_cv": 0.04846914124502159, "deser_min_ns": 131229.0, "deser_max_ns": 161481.0, "deser_p5_ns": 133425.3, "deser_p25_ns": 138153.5, "deser_p50_ns": 140698.0, "deser_p75_ns": 146776.0, "deser_p95_ns": 155690.1, "deser_p99_ns": 161066.46, "deser_ci_low_ns": 141105.88184210527, "deser_ci_high_ns": 143897.09421052632, "total_mean_ns": 239146.0, "total_median_ns": 238626.0, "total_std_ns": 13416.270172459464, "total_mad_ns": 9810.0, "total_cv": 0.0561007508904998, "total_min_ns": 214061.0, "total_max_ns": 281531.0, "total_p5_ns": 219819.0, "total_p25_ns": 228689.0, "total_p50_ns": 238626.0, "total_p75_ns": 248429.5, "total_p95_ns": 260190.3, "total_p99_ns": 270767.06, "total_ci_low_ns": 236486.98684210525, "total_ci_high_ns": 241880.02684210526, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 236469.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.665826410230371}, {"serializer": "protobuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "7.35.1", "avg_time_ser_ns": 34512.97647058823, "avg_time_deser_ns": 35734.2, "avg_time_total_ns": 70247.17647058824, "median_size_bytes": 12477.0, "avg_ops_per_sec": 14235.447604341643, "min_ops_per_sec": 10537.851964255606, "max_ops_per_sec": 17899.974940035085, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 34512.97647058823, "ser_median_ns": 28923.0, "ser_std_ns": 10867.93627623026, "ser_mad_ns": 2766.0, "ser_cv": 0.31489420466217555, "ser_min_ns": 22159.0, "ser_max_ns": 57342.0, "ser_p5_ns": 25627.6, "ser_p25_ns": 27150.0, "ser_p50_ns": 28923.0, "ser_p75_ns": 47583.0, "ser_p95_ns": 55703.8, "ser_p99_ns": 57083.28, "ser_ci_low_ns": 32407.078235294117, "ser_ci_high_ns": 36897.09882352941, "deser_mean_ns": 35734.2, "deser_median_ns": 35786.0, "deser_std_ns": 975.4343452558772, "deser_mad_ns": 572.0, "deser_cv": 0.027296940892922672, "deser_min_ns": 33247.0, "deser_max_ns": 37969.0, "deser_p5_ns": 34138.2, "deser_p25_ns": 35181.0, "deser_p50_ns": 35786.0, "deser_p75_ns": 36271.0, "deser_p95_ns": 37556.4, "deser_p99_ns": 37747.24, "deser_ci_low_ns": 35537.948823529405, "deser_ci_high_ns": 35945.95029411765, "total_mean_ns": 70247.17647058824, "total_median_ns": 65319.0, "total_std_ns": 10933.183658430127, "total_mad_ns": 3517.0, "total_cv": 0.15563876311822636, "total_min_ns": 55866.0, "total_max_ns": 94896.0, "total_p5_ns": 60352.6, "total_p25_ns": 62820.0, "total_p50_ns": 65319.0, "total_p75_ns": 80892.0, "total_p95_ns": 91991.0, "total_p99_ns": 93810.72, "total_ci_low_ns": 67958.31794117647, "total_ci_high_ns": 72495.61911764706, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 12614.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "dill", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "python", "serializer_version": "0.4.1", "avg_time_ser_ns": 4298877.782608695, "avg_time_deser_ns": 162165.52173913043, "avg_time_total_ns": 4461043.304347826, "median_size_bytes": 20767.0, "avg_ops_per_sec": 224.16280940948928, "min_ops_per_sec": 214.32487450206975, "max_ops_per_sec": 233.99985070809524, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 4298877.782608695, "ser_median_ns": 4289556.5, "ser_std_ns": 77902.22140251668, "ser_mad_ns": 49124.0, "ser_cv": 0.0181215250449021, "ser_min_ns": 4123311.0, "ser_max_ns": 4481759.0, "ser_p5_ns": 4189014.25, "ser_p25_ns": 4241981.75, "ser_p50_ns": 4289556.5, "ser_p75_ns": 4339246.0, "ser_p95_ns": 4435817.35, "ser_p99_ns": 4474691.94, "ser_ci_low_ns": 4283619.82826087, "ser_ci_high_ns": 4314278.4861413045, "deser_mean_ns": 162165.52173913043, "deser_median_ns": 160608.0, "deser_std_ns": 10287.29496208235, "deser_mad_ns": 6321.5, "deser_cv": 0.06343700468359195, "deser_min_ns": 145727.0, "deser_max_ns": 191821.0, "deser_p5_ns": 149605.1, "deser_p25_ns": 154287.5, "deser_p50_ns": 160608.0, "deser_p75_ns": 166813.25, "deser_p95_ns": 181821.0, "deser_p99_ns": 190148.42, "deser_ci_low_ns": 160173.14592391305, "deser_ci_high_ns": 164309.89429347825, "total_mean_ns": 4461043.304347826, "total_median_ns": 4452528.0, "total_std_ns": 85106.61804236879, "total_mad_ns": 48471.0, "total_cv": 0.019077738599717717, "total_min_ns": 4273507.0, "total_max_ns": 4665814.0, "total_p5_ns": 4340495.75, "total_p25_ns": 4402176.5, "total_p50_ns": 4452528.0, "total_p75_ns": 4499382.75, "total_p95_ns": 4612655.4, "total_p99_ns": 4648643.21, "total_ci_low_ns": 4443907.067663044, "total_ci_high_ns": 4478909.834782609, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 332815.0, "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 70.70128799419582}, {"serializer": "protobuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "7.35.1", "avg_time_ser_ns": 29086.883116883117, "avg_time_deser_ns": 36108.71428571428, "avg_time_total_ns": 65195.5974025974, "median_size_bytes": 12477.0, "avg_ops_per_sec": 15338.459034661133, "min_ops_per_sec": 12945.486556112211, "max_ops_per_sec": 18058.3646344987, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 29086.883116883117, "ser_median_ns": 28422.0, "ser_std_ns": 3118.7599212964265, "ser_mad_ns": 1407.0, "ser_cv": 0.10722221108270558, "ser_min_ns": 22706.0, "ser_max_ns": 37944.0, "ser_p5_ns": 24830.4, "ser_p25_ns": 27361.0, "ser_p50_ns": 28422.0, "ser_p75_ns": 30406.0, "ser_p95_ns": 34965.4, "ser_p99_ns": 37259.24, "ser_ci_low_ns": 28400.01266233766, "ser_ci_high_ns": 29818.33603896104, "deser_mean_ns": 36108.71428571428, "deser_median_ns": 36107.0, "deser_std_ns": 1441.9651508412405, "deser_mad_ns": 740.0, "deser_cv": 0.039933993202624946, "deser_min_ns": 32670.0, "deser_max_ns": 39303.0, "deser_p5_ns": 33596.8, "deser_p25_ns": 35367.0, "deser_p50_ns": 36107.0, "deser_p75_ns": 36819.0, "deser_p95_ns": 38703.4, "deser_p99_ns": 39057.52, "deser_ci_low_ns": 35783.5948051948, "deser_ci_high_ns": 36424.666233766235, "total_mean_ns": 65195.5974025974, "total_median_ns": 64455.0, "total_std_ns": 4384.467396268392, "total_mad_ns": 2141.0, "total_cv": 0.0672509735464701, "total_min_ns": 55376.0, "total_max_ns": 77247.0, "total_p5_ns": 58145.2, "total_p25_ns": 62957.0, "total_p50_ns": 64455.0, "total_p75_ns": 67162.0, "total_p95_ns": 72850.0, "total_p99_ns": 74728.35999999999, "total_ci_low_ns": 64230.61136363636, "total_ci_high_ns": 66184.9931818182, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 12614.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "rapidjson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "1.23", "avg_time_ser_ns": 95953.64646464646, "avg_time_deser_ns": 147575.52525252526, "avg_time_total_ns": 243529.1717171717, "median_size_bytes": 25746.0, "avg_ops_per_sec": 4106.28424081109, "min_ops_per_sec": 3622.0991513421686, "max_ops_per_sec": 4618.212382351039, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 95953.64646464646, "ser_median_ns": 92656.0, "ser_std_ns": 10459.854115064476, "ser_mad_ns": 5475.0, "ser_cv": 0.10900944883755248, "ser_min_ns": 79590.0, "ser_max_ns": 121186.0, "ser_p5_ns": 83865.8, "ser_p25_ns": 88078.5, "ser_p50_ns": 92656.0, "ser_p75_ns": 101554.5, "ser_p95_ns": 115401.4, "ser_p99_ns": 119839.48, "ser_ci_low_ns": 93920.42045454546, "ser_ci_high_ns": 97996.59747474747, "deser_mean_ns": 147575.52525252526, "deser_median_ns": 146359.0, "deser_std_ns": 8072.159203775066, "deser_mad_ns": 5756.0, "deser_cv": 0.05469849549891362, "deser_min_ns": 133989.0, "deser_max_ns": 170540.0, "deser_p5_ns": 136927.3, "deser_p25_ns": 140916.5, "deser_p50_ns": 146359.0, "deser_p75_ns": 153014.5, "deser_p95_ns": 163661.5, "deser_p99_ns": 166188.8, "deser_ci_low_ns": 146037.9813131313, "deser_ci_high_ns": 149105.08737373736, "total_mean_ns": 243529.1717171717, "total_median_ns": 241258.0, "total_std_ns": 12948.032433492888, "total_mad_ns": 9906.0, "total_cv": 0.05316830153116272, "total_min_ns": 216534.0, "total_max_ns": 276083.0, "total_p5_ns": 223852.7, "total_p25_ns": 234575.5, "total_p50_ns": 241258.0, "total_p75_ns": 253628.0, "total_p95_ns": 263940.8, "total_p99_ns": 274311.16, "total_ci_low_ns": 240971.97196969698, "total_ci_high_ns": 246042.49646464645, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 236469.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.51110873933752}, {"serializer": "msgspec-msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 36058.063829787236, "avg_time_deser_ns": 49881.17021276596, "avg_time_total_ns": 85939.23404255319, "median_size_bytes": 11148.0, "avg_ops_per_sec": 11636.128843141023, "min_ops_per_sec": 9082.734629742323, "max_ops_per_sec": 14300.0143000143, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 36058.063829787236, "ser_median_ns": 31592.5, "ser_std_ns": 10638.697454235818, "ser_mad_ns": 4174.0, "ser_cv": 0.29504350273647495, "ser_min_ns": 23525.0, "ser_max_ns": 59269.0, "ser_p5_ns": 25737.0, "ser_p25_ns": 28100.5, "ser_p50_ns": 31592.5, "ser_p75_ns": 45949.5, "ser_p95_ns": 55788.2, "ser_p99_ns": 57966.99999999999, "ser_ci_low_ns": 33938.21303191489, "ser_ci_high_ns": 38225.39920212766, "deser_mean_ns": 49881.17021276596, "deser_median_ns": 49826.0, "deser_std_ns": 2113.754986453987, "deser_mad_ns": 1445.0, "deser_cv": 0.042375809898562065, "deser_min_ns": 45549.0, "deser_max_ns": 55572.0, "deser_p5_ns": 46454.8, "deser_p25_ns": 48346.0, "deser_p50_ns": 49826.0, "deser_p75_ns": 51000.0, "deser_p95_ns": 53894.8, "deser_p99_ns": 54867.99, "deser_ci_low_ns": 49463.0539893617, "deser_ci_high_ns": 50323.45106382979, "total_mean_ns": 85939.23404255319, "total_median_ns": 81777.5, "total_std_ns": 11339.129737923115, "total_mad_ns": 6135.0, "total_cv": 0.13194357459956527, "total_min_ns": 69930.0, "total_max_ns": 110099.0, "total_p5_ns": 73386.05, "total_p25_ns": 76799.75, "total_p50_ns": 81777.5, "total_p75_ns": 95594.75, "total_p95_ns": 107497.65, "total_p99_ns": 109849.76, "total_ci_low_ns": 83659.56436170213, "total_ci_high_ns": 88221.58617021276, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 104254.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 0.9817629179331308, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.3176135901820922}, {"serializer": "cloudpickle", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "3.1.2", "avg_time_ser_ns": 548005.7872340425, "avg_time_deser_ns": 151564.63829787233, "avg_time_total_ns": 699570.4255319149, "median_size_bytes": 20767.0, "avg_ops_per_sec": 1429.448649490371, "min_ops_per_sec": 1303.3612382974452, "max_ops_per_sec": 1541.214384462093, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 548005.7872340425, "ser_median_ns": 545488.5, "ser_std_ns": 22755.588636910896, "ser_mad_ns": 14424.5, "ser_cv": 0.04152435825863355, "ser_min_ns": 504389.0, "ser_max_ns": 609493.0, "ser_p5_ns": 516289.0, "ser_p25_ns": 532777.25, "ser_p50_ns": 545488.5, "ser_p75_ns": 561864.5, "ser_p95_ns": 587659.5, "ser_p99_ns": 600257.1699999999, "ser_ci_low_ns": 543289.6015957446, "ser_ci_high_ns": 552658.8026595744, "deser_mean_ns": 151564.63829787233, "deser_median_ns": 149829.0, "deser_std_ns": 8083.405934516303, "deser_mad_ns": 5329.5, "deser_cv": 0.05333305990959356, "deser_min_ns": 140416.0, "deser_max_ns": 174817.0, "deser_p5_ns": 142117.1, "deser_p25_ns": 144949.5, "deser_p50_ns": 149829.0, "deser_p75_ns": 156077.25, "deser_p95_ns": 165682.94999999998, "deser_p99_ns": 174405.01, "deser_ci_low_ns": 150022.63031914894, "deser_ci_high_ns": 153162.5736702128, "total_mean_ns": 699570.4255319149, "total_median_ns": 694163.5, "total_std_ns": 27728.100981351556, "total_mad_ns": 17305.5, "total_cv": 0.03963589650072562, "total_min_ns": 648839.0, "total_max_ns": 767247.0, "total_p5_ns": 659402.35, "total_p25_ns": 682859.0, "total_p50_ns": 694163.5, "total_p75_ns": 715276.0, "total_p95_ns": 753285.0, "total_p99_ns": 758797.0199999999, "total_ci_low_ns": 694257.2047872341, "total_ci_high_ns": 705375.1912234043, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 281780.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.394921520401102}, {"serializer": "serpyco-rs", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "1.21.0", "avg_time_ser_ns": 82433.03571428571, "avg_time_deser_ns": 122087.07142857143, "avg_time_total_ns": 204520.10714285713, "median_size_bytes": 25746.0, "avg_ops_per_sec": 4889.494798188722, "min_ops_per_sec": 4462.6719802214375, "max_ops_per_sec": 5370.136669978251, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 82433.03571428571, "ser_median_ns": 81398.0, "ser_std_ns": 4145.828550748704, "ser_mad_ns": 2426.5, "ser_cv": 0.0502932897572548, "ser_min_ns": 75641.0, "ser_max_ns": 96112.0, "ser_p5_ns": 76343.25, "ser_p25_ns": 79718.25, "ser_p50_ns": 81398.0, "ser_p75_ns": 84426.25, "ser_p95_ns": 90085.95, "ser_p99_ns": 93728.24, "ser_ci_low_ns": 81578.8994047619, "ser_ci_high_ns": 83275.67797619048, "deser_mean_ns": 122087.07142857143, "deser_median_ns": 120938.5, "deser_std_ns": 6075.01280436097, "deser_mad_ns": 3312.0, "deser_cv": 0.049759673430410954, "deser_min_ns": 109417.0, "deser_max_ns": 138345.0, "deser_p5_ns": 113651.55, "deser_p25_ns": 117720.25, "deser_p50_ns": 120938.5, "deser_p75_ns": 125329.75, "deser_p95_ns": 133912.95, "deser_p99_ns": 136435.17, "deser_ci_low_ns": 120793.95922619048, "deser_ci_high_ns": 123363.3125, "total_mean_ns": 204520.10714285713, "total_median_ns": 203390.5, "total_std_ns": 8099.487819621025, "total_mad_ns": 5489.0, "total_cv": 0.03960240356202991, "total_min_ns": 186215.0, "total_max_ns": 224081.0, "total_p5_ns": 191396.95, "total_p25_ns": 199385.0, "total_p50_ns": 203390.5, "total_p75_ns": 210010.0, "total_p95_ns": 220362.8, "total_p99_ns": 222511.47, "total_ci_low_ns": 202835.15327380953, "total_ci_high_ns": 206320.67738095237, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 499294.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.040609021514864}, {"serializer": "pickle", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 263648.8695652174, "avg_time_deser_ns": 149860.3152173913, "avg_time_total_ns": 413509.1847826087, "median_size_bytes": 20767.0, "avg_ops_per_sec": 2418.325969048845, "min_ops_per_sec": 2208.0611897916915, "max_ops_per_sec": 2706.396568289151, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 263648.8695652174, "ser_median_ns": 263133.5, "ser_std_ns": 14686.004221121542, "ser_mad_ns": 11330.0, "ser_cv": 0.0557028909144962, "ser_min_ns": 231640.0, "ser_max_ns": 294602.0, "ser_p5_ns": 240302.9, "ser_p25_ns": 253356.5, "ser_p50_ns": 263133.5, "ser_p75_ns": 275050.0, "ser_p95_ns": 287875.8, "ser_p99_ns": 294108.78, "ser_ci_low_ns": 260632.77173913043, "ser_ci_high_ns": 266606.98423913046, "deser_mean_ns": 149860.3152173913, "deser_median_ns": 149074.0, "deser_std_ns": 6832.140418766575, "deser_mad_ns": 4175.5, "deser_cv": 0.04559005770711007, "deser_min_ns": 137495.0, "deser_max_ns": 170010.0, "deser_p5_ns": 140362.85, "deser_p25_ns": 145162.0, "deser_p50_ns": 149074.0, "deser_p75_ns": 154030.75, "deser_p95_ns": 160367.25, "deser_p99_ns": 168535.80000000002, "deser_ci_low_ns": 148460.75407608697, "deser_ci_high_ns": 151372.3823369565, "total_mean_ns": 413509.1847826087, "total_median_ns": 415023.0, "total_std_ns": 19181.295228888685, "total_mad_ns": 12153.0, "total_cv": 0.04638662437201421, "total_min_ns": 369495.0, "total_max_ns": 452886.0, "total_p5_ns": 380507.15, "total_p25_ns": 400924.0, "total_p50_ns": 415023.0, "total_p75_ns": 424680.0, "total_p95_ns": 445803.75, "total_p99_ns": 452591.16, "total_ci_low_ns": 409741.45054347825, "total_ci_high_ns": 417436.87391304347, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 281780.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.971634035289746}, {"serializer": "pydantic", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "2.13.4", "avg_time_ser_ns": 364375.0333333333, "avg_time_deser_ns": 388714.4666666667, "avg_time_total_ns": 753089.5, "median_size_bytes": 28245.0, "avg_ops_per_sec": 1327.863421279941, "min_ops_per_sec": 1200.553695364302, "max_ops_per_sec": 1483.252594950415, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 364375.0333333333, "ser_median_ns": 365032.0, "ser_std_ns": 19812.186725953423, "ser_mad_ns": 13538.0, "ser_cv": 0.05437306322749361, "ser_min_ns": 314388.0, "ser_max_ns": 418178.0, "ser_p5_ns": 334139.2, "ser_p25_ns": 348893.25, "ser_p50_ns": 365032.0, "ser_p75_ns": 377038.0, "ser_p95_ns": 392403.4, "ser_p99_ns": 413795.64, "ser_ci_low_ns": 360117.79333333333, "ser_ci_high_ns": 368432.3472222222, "deser_mean_ns": 388714.4666666667, "deser_median_ns": 385032.5, "deser_std_ns": 17280.25492373343, "deser_mad_ns": 9907.5, "deser_cv": 0.044454879881153805, "deser_min_ns": 359806.0, "deser_max_ns": 441239.0, "deser_p5_ns": 365579.55, "deser_p25_ns": 376355.75, "deser_p50_ns": 385032.5, "deser_p75_ns": 397554.25, "deser_p95_ns": 418767.45, "deser_p99_ns": 438415.92, "deser_ci_low_ns": 384991.4694444444, "deser_ci_high_ns": 392190.04833333334, "total_mean_ns": 753089.5, "total_median_ns": 752491.5, "total_std_ns": 31151.77270994237, "total_mad_ns": 21732.0, "total_cv": 0.041365299489559165, "total_min_ns": 674194.0, "total_max_ns": 832949.0, "total_p5_ns": 704328.4, "total_p25_ns": 731384.75, "total_p50_ns": 752491.5, "total_p75_ns": 775197.25, "total_p95_ns": 804730.85, "total_p99_ns": 818150.08, "total_ci_low_ns": 746963.6366666667, "total_ci_high_ns": 759542.9925, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 492796.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.67984285068539}, {"serializer": "msgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "1.2.1", "avg_time_ser_ns": 94217.16304347826, "avg_time_deser_ns": 103541.83695652174, "avg_time_total_ns": 197759.0, "median_size_bytes": 19848.0, "avg_ops_per_sec": 5056.6598738869025, "min_ops_per_sec": 4462.293618920125, "max_ops_per_sec": 5729.969459262782, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 94217.16304347826, "ser_median_ns": 88962.0, "ser_std_ns": 10893.579379542769, "ser_mad_ns": 4827.5, "ser_cv": 0.11562202710896448, "ser_min_ns": 77898.0, "ser_max_ns": 117804.0, "ser_p5_ns": 81510.3, "ser_p25_ns": 85764.5, "ser_p50_ns": 88962.0, "ser_p75_ns": 104135.0, "ser_p95_ns": 112790.05, "ser_p99_ns": 116287.94, "ser_ci_low_ns": 92037.55407608695, "ser_ci_high_ns": 96462.27391304348, "deser_mean_ns": 103541.83695652174, "deser_median_ns": 102967.5, "deser_std_ns": 3485.6058684004993, "deser_mad_ns": 2079.0, "deser_cv": 0.03366374376633998, "deser_min_ns": 96623.0, "deser_max_ns": 113078.0, "deser_p5_ns": 98613.2, "deser_p25_ns": 101360.25, "deser_p50_ns": 102967.5, "deser_p75_ns": 105490.5, "deser_p95_ns": 110204.55, "deser_p99_ns": 113011.57, "deser_ci_low_ns": 102862.71576086957, "deser_ci_high_ns": 104252.23777173914, "total_mean_ns": 197759.0, "total_median_ns": 194660.5, "total_std_ns": 11520.054120751993, "total_mad_ns": 8042.5, "total_cv": 0.058252995417412065, "total_min_ns": 174521.0, "total_max_ns": 224100.0, "total_p5_ns": 181737.95, "total_p25_ns": 188914.25, "total_p50_ns": 194660.5, "total_p75_ns": 208046.75, "total_p95_ns": 215968.75, "total_p99_ns": 219988.62000000002, "total_ci_low_ns": 195510.27961956523, "total_ci_high_ns": 200131.5122282609, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 178474.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.657195446493306}, {"serializer": "avro", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "1.12.2", "avg_time_ser_ns": 487164.5232558139, "avg_time_deser_ns": 334668.1046511628, "avg_time_total_ns": 821832.6279069767, "median_size_bytes": 10445.0, "avg_ops_per_sec": 1216.7927702588001, "min_ops_per_sec": 1150.838040260918, "max_ops_per_sec": 1276.9989503068628, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 487164.5232558139, "ser_median_ns": 486681.5, "ser_std_ns": 17593.074551035024, "ser_mad_ns": 12280.5, "ser_cv": 0.03611320962671324, "ser_min_ns": 453283.0, "ser_max_ns": 534104.0, "ser_p5_ns": 460940.75, "ser_p25_ns": 474227.5, "ser_p50_ns": 486681.5, "ser_p75_ns": 497613.0, "ser_p95_ns": 520435.25, "ser_p99_ns": 531049.1, "ser_ci_low_ns": 483397.82674418605, "ser_ci_high_ns": 491090.3918604651, "deser_mean_ns": 334668.1046511628, "deser_median_ns": 334624.0, "deser_std_ns": 5141.44373871105, "deser_mad_ns": 3134.5, "deser_cv": 0.015362813686921767, "deser_min_ns": 324877.0, "deser_max_ns": 349416.0, "deser_p5_ns": 327338.25, "deser_p25_ns": 331108.0, "deser_p50_ns": 334624.0, "deser_p75_ns": 337452.5, "deser_p95_ns": 344128.0, "deser_p99_ns": 348992.7, "deser_ci_low_ns": 333571.2220930233, "deser_ci_high_ns": 335748.0252906977, "total_mean_ns": 821832.6279069767, "total_median_ns": 823343.5, "total_std_ns": 18612.06732143329, "total_mad_ns": 12646.5, "total_cv": 0.0226470289562901, "total_min_ns": 783086.0, "total_max_ns": 868932.0, "total_p5_ns": 792622.75, "total_p25_ns": 808782.0, "total_p50_ns": 823343.5, "total_p75_ns": 831590.75, "total_p95_ns": 852177.25, "total_p99_ns": 867300.85, "total_ci_low_ns": 818036.7880813953, "total_ci_high_ns": 825642.7488372093, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 169161.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 54.35629185274163}, {"serializer": "mashumaro", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "3.22", "avg_time_ser_ns": 87195.83146067416, "avg_time_deser_ns": 172972.38202247192, "avg_time_total_ns": 260168.21348314607, "median_size_bytes": 25746.0, "avg_ops_per_sec": 3843.6670898875236, "min_ops_per_sec": 3465.207583260275, "max_ops_per_sec": 4189.25372634119, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 87195.83146067416, "ser_median_ns": 84872.0, "ser_std_ns": 6493.293617676827, "ser_mad_ns": 2967.0, "ser_cv": 0.07446793624079771, "ser_min_ns": 79603.0, "ser_max_ns": 106428.0, "ser_p5_ns": 81149.6, "ser_p25_ns": 82541.0, "ser_p50_ns": 84872.0, "ser_p75_ns": 89981.0, "ser_p95_ns": 102152.79999999999, "ser_p99_ns": 106320.64, "ser_ci_low_ns": 85864.5632022472, "ser_ci_high_ns": 88710.37078651685, "deser_mean_ns": 172972.38202247192, "deser_median_ns": 170366.0, "deser_std_ns": 9209.163749550595, "deser_mad_ns": 5854.0, "deser_cv": 0.05324065982021439, "deser_min_ns": 158570.0, "deser_max_ns": 195767.0, "deser_p5_ns": 161961.4, "deser_p25_ns": 166147.0, "deser_p50_ns": 170366.0, "deser_p75_ns": 178569.0, "deser_p95_ns": 191844.0, "deser_p99_ns": 195407.08000000002, "deser_ci_low_ns": 171058.29887640447, "deser_ci_high_ns": 174901.42275280898, "total_mean_ns": 260168.21348314607, "total_median_ns": 258606.0, "total_std_ns": 11099.029639682174, "total_mad_ns": 8088.0, "total_cv": 0.04266097495573255, "total_min_ns": 238706.0, "total_max_ns": 288583.0, "total_p5_ns": 244869.4, "total_p25_ns": 250792.0, "total_p50_ns": 258606.0, "total_p75_ns": 267454.0, "total_p95_ns": 279130.0, "total_p99_ns": 283294.2, "total_ci_low_ns": 257859.2679775281, "total_ci_high_ns": 262516.75056179776, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 499294.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.40894898170925}, {"serializer": "json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "python-3.14.0", "avg_time_ser_ns": 198916.2, "avg_time_deser_ns": 137716.44444444444, "avg_time_total_ns": 336632.64444444445, "median_size_bytes": 25746.0, "avg_ops_per_sec": 2970.597226690037, "min_ops_per_sec": 2605.6051778586093, "max_ops_per_sec": 3260.015582874486, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 198916.2, "ser_median_ns": 198400.0, "ser_std_ns": 14107.262409876821, "ser_mad_ns": 11207.0, "ser_cv": 0.07092063094849399, "ser_min_ns": 176049.0, "ser_max_ns": 235257.0, "ser_p5_ns": 179185.5, "ser_p25_ns": 186925.5, "ser_p50_ns": 198400.0, "ser_p75_ns": 208891.75, "ser_p95_ns": 220338.55, "ser_p99_ns": 233493.91, "ser_ci_low_ns": 196141.26472222223, "ser_ci_high_ns": 201827.16944444444, "deser_mean_ns": 137716.44444444444, "deser_median_ns": 136884.0, "deser_std_ns": 4864.494796016787, "deser_mad_ns": 2977.0, "deser_cv": 0.03532254129592455, "deser_min_ns": 129273.0, "deser_max_ns": 151512.0, "deser_p5_ns": 131334.65, "deser_p25_ns": 133978.5, "deser_p50_ns": 136884.0, "deser_p75_ns": 139847.5, "deser_p95_ns": 147740.8, "deser_p99_ns": 151314.42, "deser_ci_low_ns": 136721.0547222222, "deser_ci_high_ns": 138744.73305555555, "total_mean_ns": 336632.64444444445, "total_median_ns": 336650.0, "total_std_ns": 17490.55646856397, "total_mad_ns": 11352.5, "total_cv": 0.05195739853878162, "total_min_ns": 306747.0, "total_max_ns": 383788.0, "total_p5_ns": 311767.1, "total_p25_ns": 321305.25, "total_p50_ns": 336650.0, "total_p75_ns": 346689.25, "total_p95_ns": 366192.85, "total_p99_ns": 383300.28, "total_ci_low_ns": 333079.3644444445, "total_ci_high_ns": 340334.12111111113, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 211682.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.491825947779418}, {"serializer": "flatbuffers", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "25.12.19", "avg_time_ser_ns": 3159863.5531914895, "avg_time_deser_ns": 824242.8510638297, "avg_time_total_ns": 3984106.404255319, "median_size_bytes": 28724.0, "avg_ops_per_sec": 250.99731245428745, "min_ops_per_sec": 242.56260601501899, "max_ops_per_sec": 259.22121134590503, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 3159863.5531914895, "ser_median_ns": 3155700.5, "ser_std_ns": 47046.85313293753, "ser_mad_ns": 26321.5, "ser_cv": 0.014888887555103385, "ser_min_ns": 3049136.0, "ser_max_ns": 3279390.0, "ser_p5_ns": 3091350.45, "ser_p25_ns": 3134540.5, "ser_p50_ns": 3155700.5, "ser_p75_ns": 3186108.5, "ser_p95_ns": 3242636.05, "ser_p99_ns": 3268585.26, "ser_ci_low_ns": 3150319.287234043, "ser_ci_high_ns": 3169083.735372341, "deser_mean_ns": 824242.8510638297, "deser_median_ns": 825037.5, "deser_std_ns": 19664.267424796777, "deser_mad_ns": 12394.5, "deser_cv": 0.02385737091855464, "deser_min_ns": 780946.0, "deser_max_ns": 863581.0, "deser_p5_ns": 789737.75, "deser_p25_ns": 810193.25, "deser_p50_ns": 825037.5, "deser_p75_ns": 836430.25, "deser_p95_ns": 855345.7, "deser_p99_ns": 862049.29, "deser_ci_low_ns": 820288.1473404255, "deser_ci_high_ns": 828308.5819148936, "total_mean_ns": 3984106.404255319, "total_median_ns": 3978563.0, "total_std_ns": 54920.79167844823, "total_mad_ns": 32768.5, "total_cv": 0.013784971109152302, "total_min_ns": 3857709.0, "total_max_ns": 4122647.0, "total_p5_ns": 3898572.35, "total_p25_ns": 3949305.25, "total_p50_ns": 3978563.0, "total_p75_ns": 4016424.0, "total_p95_ns": 4088491.1, "total_p99_ns": 4117729.16, "total_ci_low_ns": 3972534.248404255, "total_ci_high_ns": 3995803.1109042554, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 188547.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 95.51420145587844}, {"serializer": "orjson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "3.11.9", "avg_time_ser_ns": 57434.406593406595, "avg_time_deser_ns": 74286.38461538461, "avg_time_total_ns": 131720.7912087912, "median_size_bytes": 25746.0, "avg_ops_per_sec": 7591.815922323877, "min_ops_per_sec": 6489.1242277942165, "max_ops_per_sec": 8775.547813572262, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 57434.406593406595, "ser_median_ns": 54095.0, "ser_std_ns": 9301.414266393427, "ser_mad_ns": 3162.0, "ser_cv": 0.16194846988218417, "ser_min_ns": 44433.0, "ser_max_ns": 79964.0, "ser_p5_ns": 47746.5, "ser_p25_ns": 51746.5, "ser_p50_ns": 54095.0, "ser_p75_ns": 60332.5, "ser_p95_ns": 76982.0, "ser_p99_ns": 79122.5, "ser_ci_low_ns": 55682.161813186816, "ser_ci_high_ns": 59371.81923076923, "deser_mean_ns": 74286.38461538461, "deser_median_ns": 73645.0, "deser_std_ns": 3924.6297766490898, "deser_mad_ns": 2791.0, "deser_cv": 0.052831077955519515, "deser_min_ns": 67425.0, "deser_max_ns": 85267.0, "deser_p5_ns": 68676.5, "deser_p25_ns": 70981.5, "deser_p50_ns": 73645.0, "deser_p75_ns": 76790.0, "deser_p95_ns": 80910.0, "deser_p99_ns": 82500.39999999998, "deser_ci_low_ns": 73503.7782967033, "deser_ci_high_ns": 75062.725, "total_mean_ns": 131720.7912087912, "total_median_ns": 128663.0, "total_std_ns": 10253.076980449965, "total_mad_ns": 6637.0, "total_cv": 0.07783947307299247, "total_min_ns": 113953.0, "total_max_ns": 154104.0, "total_p5_ns": 119488.5, "total_p25_ns": 124133.5, "total_p50_ns": 128663.0, "total_p75_ns": 139355.0, "total_p95_ns": 150386.0, "total_p99_ns": 154052.7, "total_ci_low_ns": 129675.15494505494, "total_ci_high_ns": 133836.59532967032, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 502598.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.16420099369784}, {"serializer": "cbor2", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "6.1.3", "avg_time_ser_ns": 354790.44943820225, "avg_time_deser_ns": 175531.16853932585, "avg_time_total_ns": 530321.6179775281, "median_size_bytes": 19847.0, "avg_ops_per_sec": 1885.648191777794, "min_ops_per_sec": 1737.8670809741789, "max_ops_per_sec": 2039.280623367301, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 354790.44943820225, "ser_median_ns": 355100.0, "ser_std_ns": 13805.135508547037, "ser_mad_ns": 10038.0, "ser_cv": 0.03891067397785641, "ser_min_ns": 322388.0, "ser_max_ns": 396007.0, "ser_p5_ns": 332604.0, "ser_p25_ns": 344868.0, "ser_p50_ns": 355100.0, "ser_p75_ns": 363819.0, "ser_p95_ns": 374003.8, "ser_p99_ns": 388094.92000000004, "ser_ci_low_ns": 351984.5530898876, "ser_ci_high_ns": 357576.11994382023, "deser_mean_ns": 175531.16853932585, "deser_median_ns": 174888.0, "deser_std_ns": 4178.4369746134935, "deser_mad_ns": 2637.0, "deser_cv": 0.02380453004092752, "deser_min_ns": 167511.0, "deser_max_ns": 186370.0, "deser_p5_ns": 168892.8, "deser_p25_ns": 172908.0, "deser_p50_ns": 174888.0, "deser_p75_ns": 178021.0, "deser_p95_ns": 183612.4, "deser_p99_ns": 185440.72, "deser_ci_low_ns": 174697.2418539326, "deser_ci_high_ns": 176406.10505617977, "total_mean_ns": 530321.6179775281, "total_median_ns": 531525.0, "total_std_ns": 16036.817821178649, "total_mad_ns": 10315.0, "total_cv": 0.030239796526375422, "total_min_ns": 490369.0, "total_max_ns": 575418.0, "total_p5_ns": 503993.4, "total_p25_ns": 518926.0, "total_p50_ns": 531525.0, "total_p75_ns": 541268.0, "total_p95_ns": 552633.6, "total_p99_ns": 566134.0, "total_ci_low_ns": 526963.9912921347, "total_ci_high_ns": 533500.9676966292, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 239191.0, "StreamMode": "adapted", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 38.19929278263419}, {"serializer": "dill", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "0.4.1", "avg_time_ser_ns": 4266631.75257732, "avg_time_deser_ns": 165147.77319587627, "avg_time_total_ns": 4431779.525773196, "median_size_bytes": 20767.0, "avg_ops_per_sec": 225.64299378713653, "min_ops_per_sec": 215.08253362062624, "max_ops_per_sec": 233.83509668379742, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 4266631.75257732, "ser_median_ns": 4249001.0, "ser_std_ns": 79820.05136790908, "ser_mad_ns": 52776.0, "ser_cv": 0.018707977626541743, "ser_min_ns": 4121723.0, "ser_max_ns": 4475676.0, "ser_p5_ns": 4147407.2, "ser_p25_ns": 4215776.0, "ser_p50_ns": 4249001.0, "ser_p75_ns": 4313823.0, "ser_p95_ns": 4406895.4, "ser_p99_ns": 4465706.4, "ser_ci_low_ns": 4250384.162113402, "ser_ci_high_ns": 4282105.134020618, "deser_mean_ns": 165147.77319587627, "deser_median_ns": 161540.0, "deser_std_ns": 12568.043749016419, "deser_mad_ns": 7760.0, "deser_cv": 0.0761018057089385, "deser_min_ns": 146562.0, "deser_max_ns": 195754.0, "deser_p5_ns": 150539.0, "deser_p25_ns": 154795.0, "deser_p50_ns": 161540.0, "deser_p75_ns": 173702.0, "deser_p95_ns": 189817.4, "deser_p99_ns": 195174.16, "deser_ci_low_ns": 162703.56082474228, "deser_ci_high_ns": 167712.3569587629, "total_mean_ns": 4431779.525773196, "total_median_ns": 4413620.0, "total_std_ns": 87178.83979834364, "total_mad_ns": 63143.0, "total_cv": 0.019671294406987425, "total_min_ns": 4276518.0, "total_max_ns": 4649378.0, "total_p5_ns": 4299485.0, "total_p25_ns": 4372617.0, "total_p50_ns": 4413620.0, "total_p75_ns": 4493802.0, "total_p95_ns": 4597335.8, "total_p99_ns": 4648004.24, "total_ci_low_ns": 4414256.478092784, "total_ci_high_ns": 4449390.115463918, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 332815.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 66.68441024711406}, {"serializer": "msgspec", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "python", "serializer_version": "0.21.1", "avg_time_ser_ns": 44812.71276595745, "avg_time_deser_ns": 55199.36170212766, "avg_time_total_ns": 100012.0744680851, "median_size_bytes": 14446.0, "avg_ops_per_sec": 9998.792698966667, "min_ops_per_sec": 7833.245862087873, "max_ops_per_sec": 11695.906432748538, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 44812.71276595745, "ser_median_ns": 40139.0, "ser_std_ns": 9975.670533554567, "ser_mad_ns": 2948.5, "ser_cv": 0.22260804842711315, "ser_min_ns": 33760.0, "ser_max_ns": 68484.0, "ser_p5_ns": 36291.35, "ser_p25_ns": 37590.25, "ser_p50_ns": 40139.0, "ser_p75_ns": 48890.0, "ser_p95_ns": 64541.1, "ser_p99_ns": 65696.78999999998, "ser_ci_low_ns": 42870.247340425536, "ser_ci_high_ns": 46902.906648936165, "deser_mean_ns": 55199.36170212766, "deser_median_ns": 54997.0, "deser_std_ns": 2390.974048379212, "deser_mad_ns": 1504.0, "deser_cv": 0.04331524812336828, "deser_min_ns": 50178.0, "deser_max_ns": 61342.0, "deser_p5_ns": 51500.8, "deser_p25_ns": 53559.0, "deser_p50_ns": 54997.0, "deser_p75_ns": 56730.25, "deser_p95_ns": 59374.399999999994, "deser_p99_ns": 61211.799999999996, "deser_ci_low_ns": 54734.43537234043, "deser_ci_high_ns": 55680.89787234043, "total_mean_ns": 100012.0744680851, "total_median_ns": 96717.0, "total_std_ns": 10310.238116874554, "total_mad_ns": 5087.5, "total_cv": 0.10308993360761314, "total_min_ns": 85500.0, "total_max_ns": 127661.0, "total_p5_ns": 88843.5, "total_p25_ns": 92241.5, "total_p50_ns": 96717.0, "total_p75_ns": 106308.75, "total_p95_ns": 119501.9, "total_p99_ns": 123848.92999999998, "total_ci_low_ns": 97919.57500000001, "total_ci_high_ns": 102092.50079787233, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 109600.0, "StreamMode": "native", "fastest_in_group": "protobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.2301274709958205}], "pareto_front": [{"serializer": "avro", "test_data": "message", "mode": "bytes", "time": 13526.152173913044, "size": 44.0}, {"serializer": "protobuf", "test_data": "message", "mode": "bytes", "time": 3510.3846153846152, "size": 50.0}, {"serializer": "msgspec-msgpack", "test_data": "message", "mode": "bytes", "time": 1795.3854166666667, "size": 52.0}, {"serializer": "orjson", "test_data": "message", "mode": "stream", "time": 2337.2842105263157, "size": 168.0}, {"serializer": "msgspec-msgpack", "test_data": "message", "mode": "stream", "time": 3008.945054945055, "size": 52.0}, {"serializer": "avro", "test_data": "message", "mode": "stream", "time": 14171.747252747253, "size": 44.0}, {"serializer": "protobuf", "test_data": "message", "mode": "stream", "time": 3936.8494623655915, "size": 50.0}, {"serializer": "avro", "test_data": "document", "mode": "bytes", "time": 26650.831325301206, "size": 114.0}, {"serializer": "msgspec-msgpack", "test_data": "document", "mode": "bytes", "time": 3671.131868131868, "size": 129.0}, {"serializer": "orjson", "test_data": "document", "mode": "stream", "time": 4661.4838709677415, "size": 448.0}, {"serializer": "msgspec-msgpack", "test_data": "document", "mode": "stream", "time": 4920.438202247191, "size": 129.0}, {"serializer": "avro", "test_data": "document", "mode": "stream", "time": 27466.1625, "size": 114.0}, {"serializer": "msgspec-msgpack", "test_data": "telemetry", "mode": "bytes", "time": 2840.449438202247, "size": 324.0}, {"serializer": "protobuf", "test_data": "telemetry", "mode": "bytes", "time": 4279.55421686747, "size": 291.0}, {"serializer": "avro", "test_data": "telemetry", "mode": "bytes", "time": 18992.79069767442, "size": 288.0}, {"serializer": "orjson", "test_data": "telemetry", "mode": "stream", "time": 3880.705263157895, "size": 663.0}, {"serializer": "avro", "test_data": "telemetry", "mode": "stream", "time": 19560.766666666666, "size": 288.0}, {"serializer": "msgspec-msgpack", "test_data": "telemetry", "mode": "stream", "time": 3967.9148936170213, "size": 324.0}, {"serializer": "protobuf", "test_data": "telemetry", "mode": "stream", "time": 4790.4047619047615, "size": 291.0}, {"serializer": "msgspec-msgpack", "test_data": "strings", "mode": "bytes", "time": 3035.9893617021276, "size": 339.0}, {"serializer": "avro", "test_data": "strings", "mode": "bytes", "time": 19891.522727272728, "size": 337.0}, {"serializer": "orjson", "test_data": "strings", "mode": "bytes", "time": 2256.0561797752807, "size": 410.0}, {"serializer": "orjson", "test_data": "strings", "mode": "stream", "time": 2852.621052631579, "size": 410.0}, {"serializer": "avro", "test_data": "strings", "mode": "stream", "time": 20387.56976744186, "size": 337.0}, {"serializer": "msgspec-msgpack", "test_data": "strings", "mode": "stream", "time": 4069.0, "size": 339.0}, {"serializer": "avro", "test_data": "event", "mode": "bytes", "time": 19386.755555555555, "size": 105.0}, {"serializer": "msgspec-msgpack", "test_data": "event", "mode": "bytes", "time": 2767.808510638298, "size": 112.0}, {"serializer": "orjson", "test_data": "event", "mode": "stream", "time": 3401.919191919192, "size": 257.0}, {"serializer": "avro", "test_data": "event", "mode": "stream", "time": 19780.247311827956, "size": 105.0}, {"serializer": "msgspec-msgpack", "test_data": "event", "mode": "stream", "time": 3924.7894736842104, "size": 112.0}]} \ No newline at end of file diff --git a/dashboard/public/data/stats_python_latest.json.gz b/dashboard/public/data/stats_python_latest.json.gz new file mode 100644 index 00000000..3f4d74b1 Binary files /dev/null and b/dashboard/public/data/stats_python_latest.json.gz differ diff --git a/dashboard/public/data/stats_rust_latest.json b/dashboard/public/data/stats_rust_latest.json deleted file mode 100644 index 93c54b96..00000000 --- a/dashboard/public/data/stats_rust_latest.json +++ /dev/null @@ -1 +0,0 @@ -{"schema_version": "2.0", "generated": "2026-07-24T20:23:47.820184", "language": "rust", "questions": {"Q1": "How fast?", "Q2": "How compact?", "Q3": "How stable?", "Q4": "Under which workloads does it win?"}, "groups": [{"serializer": "simd-json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.14.3", "avg_time_ser_ns": 224.2111111111111, "avg_time_deser_ns": 783.2666666666667, "avg_time_total_ns": 1007.4777777777778, "median_size_bytes": 182.0, "avg_ops_per_sec": 992577.7243501373, "min_ops_per_sec": 700280.1120448179, "max_ops_per_sec": 1335113.4846461948, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 224.2111111111111, "ser_median_ns": 225.0, "ser_std_ns": 20.39414679437857, "ser_mad_ns": 13.0, "ser_cv": 0.09095957240170828, "ser_min_ns": 173.0, "ser_max_ns": 274.0, "ser_p5_ns": 192.25, "ser_p25_ns": 210.5, "ser_p50_ns": 225.0, "ser_p75_ns": 237.75, "ser_p95_ns": 258.1, "ser_p99_ns": 270.44, "ser_ci_low_ns": 219.9661111111111, "ser_ci_high_ns": 228.55638888888888, "deser_mean_ns": 783.2666666666667, "deser_median_ns": 746.5, "deser_std_ns": 158.10548320733446, "deser_mad_ns": 103.0, "deser_cv": 0.20185396613414053, "deser_min_ns": 541.0, "deser_max_ns": 1200.0, "deser_p5_ns": 575.9, "deser_p25_ns": 654.25, "deser_p50_ns": 746.5, "deser_p75_ns": 888.5, "deser_p95_ns": 1069.35, "deser_p99_ns": 1172.41, "deser_ci_low_ns": 751.7663888888889, "deser_ci_high_ns": 816.2558333333334, "total_mean_ns": 1007.4777777777778, "total_median_ns": 977.5, "total_std_ns": 160.83114376262765, "total_mad_ns": 112.0, "total_cv": 0.15963741068053874, "total_min_ns": 749.0, "total_max_ns": 1428.0, "total_p5_ns": 800.05, "total_p25_ns": 880.0, "total_p50_ns": 977.5, "total_p75_ns": 1116.75, "total_p95_ns": 1299.9499999999998, "total_p99_ns": 1380.83, "total_ci_low_ns": 974.5550000000001, "total_ci_high_ns": 1041.8247222222224, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.049656184707729}, {"serializer": "prost", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.13.5", "avg_time_ser_ns": 119.40449438202248, "avg_time_deser_ns": 128.7191011235955, "avg_time_total_ns": 248.12359550561797, "median_size_bytes": 55.0, "avg_ops_per_sec": 4030249.513200199, "min_ops_per_sec": 2816901.408450704, "max_ops_per_sec": 5154639.175257732, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 119.40449438202248, "ser_median_ns": 115.0, "ser_std_ns": 23.433037624223275, "ser_mad_ns": 17.0, "ser_cv": 0.1962492094246609, "ser_min_ns": 80.0, "ser_max_ns": 188.0, "ser_p5_ns": 85.4, "ser_p25_ns": 101.0, "ser_p50_ns": 115.0, "ser_p75_ns": 135.0, "ser_p95_ns": 161.6, "ser_p99_ns": 170.4000000000001, "ser_ci_low_ns": 114.57219101123596, "ser_ci_high_ns": 124.29213483146067, "deser_mean_ns": 128.7191011235955, "deser_median_ns": 122.0, "deser_std_ns": 18.396509528146996, "deser_mad_ns": 10.0, "deser_cv": 0.1429198104054716, "deser_min_ns": 106.0, "deser_max_ns": 187.0, "deser_p5_ns": 110.0, "deser_p25_ns": 115.0, "deser_p50_ns": 122.0, "deser_p75_ns": 138.0, "deser_p95_ns": 166.6, "deser_p99_ns": 183.48000000000002, "deser_ci_low_ns": 125.03342696629214, "deser_ci_high_ns": 132.5511235955056, "total_mean_ns": 248.12359550561797, "total_median_ns": 238.0, "total_std_ns": 36.643187455861884, "total_mad_ns": 24.0, "total_cv": 0.147681188406091, "total_min_ns": 194.0, "total_max_ns": 355.0, "total_p5_ns": 200.4, "total_p25_ns": 221.0, "total_p50_ns": 238.0, "total_p75_ns": 268.0, "total_p95_ns": 312.0, "total_p99_ns": 329.48000000000013, "total_ci_low_ns": 240.34719101123596, "total_ci_high_ns": 256.13567415730336, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.05100541431348}, {"serializer": "nanoserde", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.1.37", "avg_time_ser_ns": 207.89772727272728, "avg_time_deser_ns": 89.93181818181819, "avg_time_total_ns": 297.82954545454544, "median_size_bytes": 68.0, "avg_ops_per_sec": 3357625.2432370563, "min_ops_per_sec": 2409638.5542168673, "max_ops_per_sec": 4366812.227074236, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 207.89772727272728, "ser_median_ns": 200.0, "ser_std_ns": 37.30028497402072, "ser_mad_ns": 21.0, "ser_cv": 0.17941651149023358, "ser_min_ns": 150.0, "ser_max_ns": 302.0, "ser_p5_ns": 155.7, "ser_p25_ns": 182.75, "ser_p50_ns": 200.0, "ser_p75_ns": 231.5, "ser_p95_ns": 279.65, "ser_p99_ns": 299.39, "ser_ci_low_ns": 200.38465909090908, "ser_ci_high_ns": 215.61392045454545, "deser_mean_ns": 89.93181818181819, "deser_median_ns": 81.5, "deser_std_ns": 18.49249332296474, "deser_mad_ns": 6.5, "deser_cv": 0.20562792676533953, "deser_min_ns": 73.0, "deser_max_ns": 148.0, "deser_p5_ns": 74.0, "deser_p25_ns": 77.0, "deser_p50_ns": 81.5, "deser_p75_ns": 100.25, "deser_p95_ns": 129.64999999999998, "deser_p99_ns": 136.68999999999994, "deser_ci_low_ns": 86.28352272727273, "deser_ci_high_ns": 94.06818181818181, "total_mean_ns": 297.82954545454544, "total_median_ns": 284.5, "total_std_ns": 43.29880718032876, "total_mad_ns": 25.5, "total_cv": 0.14538116799072573, "total_min_ns": 229.0, "total_max_ns": 415.0, "total_p5_ns": 242.35, "total_p25_ns": 266.25, "total_p50_ns": 284.5, "total_p75_ns": 322.75, "total_p95_ns": 371.95, "total_p99_ns": 402.81999999999994, "total_ci_low_ns": 289.22670454545454, "total_ci_high_ns": 306.6715909090909, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.764699612021188}, {"serializer": "flexbuffers", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "2.0.0", "avg_time_ser_ns": 1103.0681818181818, "avg_time_deser_ns": 494.46590909090907, "avg_time_total_ns": 1597.534090909091, "median_size_bytes": 226.0, "avg_ops_per_sec": 625964.7325779077, "min_ops_per_sec": 491642.08456243854, "max_ops_per_sec": 739644.9704142011, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 1103.0681818181818, "ser_median_ns": 1091.5, "ser_std_ns": 147.46250608240894, "ser_mad_ns": 94.5, "ser_cv": 0.1336839449392396, "ser_min_ns": 878.0, "ser_max_ns": 1555.0, "ser_p5_ns": 898.1, "ser_p25_ns": 984.5, "ser_p50_ns": 1091.5, "ser_p75_ns": 1171.25, "ser_p95_ns": 1332.8999999999999, "ser_p99_ns": 1458.4299999999994, "ser_ci_low_ns": 1074.2758522727274, "ser_ci_high_ns": 1133.6849431818182, "deser_mean_ns": 494.46590909090907, "deser_median_ns": 489.0, "deser_std_ns": 36.15704852148118, "deser_mad_ns": 24.0, "deser_cv": 0.07312344057845573, "deser_min_ns": 432.0, "deser_max_ns": 608.0, "deser_p5_ns": 444.35, "deser_p25_ns": 469.0, "deser_p50_ns": 489.0, "deser_p75_ns": 516.25, "deser_p95_ns": 559.25, "deser_p99_ns": 586.2499999999999, "deser_ci_low_ns": 487.03125000000006, "deser_ci_high_ns": 502.30738636363634, "total_mean_ns": 1597.534090909091, "total_median_ns": 1592.5, "total_std_ns": 159.52515377369292, "total_mad_ns": 95.0, "total_cv": 0.0998571202213993, "total_min_ns": 1352.0, "total_max_ns": 2034.0, "total_p5_ns": 1379.9, "total_p25_ns": 1478.75, "total_p50_ns": 1592.5, "total_p75_ns": 1681.5, "total_p95_ns": 1892.6999999999998, "total_p99_ns": 1948.7399999999996, "total_ci_low_ns": 1566.5667613636363, "total_ci_high_ns": 1630.3883522727274, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.349163708903014}, {"serializer": "serde_json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "1.0.150", "avg_time_ser_ns": 214.5054945054945, "avg_time_deser_ns": 386.010989010989, "avg_time_total_ns": 600.5164835164835, "median_size_bytes": 182.0, "avg_ops_per_sec": 1665233.2241477116, "min_ops_per_sec": 1434720.2295552366, "max_ops_per_sec": 1872659.1760299625, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 214.5054945054945, "ser_median_ns": 213.0, "ser_std_ns": 20.692657649177896, "ser_mad_ns": 12.0, "ser_cv": 0.09646679539319614, "ser_min_ns": 172.0, "ser_max_ns": 263.0, "ser_p5_ns": 183.5, "ser_p25_ns": 202.0, "ser_p50_ns": 213.0, "ser_p75_ns": 226.0, "ser_p95_ns": 250.0, "ser_p99_ns": 257.59999999999997, "ser_ci_low_ns": 210.46153846153845, "ser_ci_high_ns": 218.93406593406593, "deser_mean_ns": 386.010989010989, "deser_median_ns": 383.0, "deser_std_ns": 30.642923600543842, "deser_mad_ns": 21.0, "deser_cv": 0.07938355247101915, "deser_min_ns": 316.0, "deser_max_ns": 467.0, "deser_p5_ns": 343.0, "deser_p25_ns": 366.0, "deser_p50_ns": 383.0, "deser_p75_ns": 405.5, "deser_p95_ns": 442.5, "deser_p99_ns": 465.2, "deser_ci_low_ns": 379.7788461538462, "deser_ci_high_ns": 392.52774725274725, "total_mean_ns": 600.5164835164835, "total_median_ns": 594.0, "total_std_ns": 35.40413115799487, "total_mad_ns": 23.0, "total_cv": 0.05895613547637625, "total_min_ns": 534.0, "total_max_ns": 697.0, "total_p5_ns": 547.5, "total_p25_ns": 579.5, "total_p50_ns": 594.0, "total_p75_ns": 624.0, "total_p95_ns": 666.0, "total_p99_ns": 680.8, "total_ci_low_ns": 593.4604395604396, "total_ci_high_ns": 607.6052197802197, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.19799878220719}, {"serializer": "rkyv", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.8.17", "avg_time_ser_ns": 150.3186813186813, "avg_time_deser_ns": 85.63736263736264, "avg_time_total_ns": 235.95604395604394, "median_size_bytes": 80.0, "avg_ops_per_sec": 4238077.496274218, "min_ops_per_sec": 2898550.724637681, "max_ops_per_sec": 5988023.952095808, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 150.3186813186813, "ser_median_ns": 146.0, "ser_std_ns": 30.764654726877414, "ser_mad_ns": 20.0, "ser_cv": 0.20466288326236162, "ser_min_ns": 97.0, "ser_max_ns": 236.0, "ser_p5_ns": 113.0, "ser_p25_ns": 125.5, "ser_p50_ns": 146.0, "ser_p75_ns": 165.5, "ser_p95_ns": 212.5, "ser_p99_ns": 227.89999999999995, "ser_ci_low_ns": 144.28571428571428, "ser_ci_high_ns": 156.67170329670327, "deser_mean_ns": 85.63736263736264, "deser_median_ns": 77.0, "deser_std_ns": 22.315174948161015, "deser_mad_ns": 10.0, "deser_cv": 0.26057755938440297, "deser_min_ns": 64.0, "deser_max_ns": 154.0, "deser_p5_ns": 65.0, "deser_p25_ns": 69.0, "deser_p50_ns": 77.0, "deser_p75_ns": 95.5, "deser_p95_ns": 136.5, "deser_p99_ns": 153.1, "deser_ci_low_ns": 81.02170329670331, "deser_ci_high_ns": 90.39725274725274, "total_mean_ns": 235.95604395604394, "total_median_ns": 232.0, "total_std_ns": 36.35776306769897, "total_mad_ns": 21.0, "total_cv": 0.15408701747208486, "total_min_ns": 167.0, "total_max_ns": 345.0, "total_p5_ns": 182.0, "total_p25_ns": 212.5, "total_p50_ns": 232.0, "total_p75_ns": 257.5, "total_p95_ns": 304.0, "total_p99_ns": 339.59999999999997, "total_ci_low_ns": 228.65906593406595, "total_ci_high_ns": 243.69423076923076, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.629424269496314}, {"serializer": "minicbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.25.1", "avg_time_ser_ns": 114.85555555555555, "avg_time_deser_ns": 125.7, "avg_time_total_ns": 240.55555555555554, "median_size_bytes": 55.0, "avg_ops_per_sec": 4157043.8799076215, "min_ops_per_sec": 3205128.205128205, "max_ops_per_sec": 5780346.820809249, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 114.85555555555555, "ser_median_ns": 115.0, "ser_std_ns": 14.878202977684957, "ser_mad_ns": 10.0, "ser_cv": 0.1295383832825429, "ser_min_ns": 79.0, "ser_max_ns": 149.0, "ser_p5_ns": 92.0, "ser_p25_ns": 105.5, "ser_p50_ns": 115.0, "ser_p75_ns": 125.0, "ser_p95_ns": 139.95, "ser_p99_ns": 147.22, "ser_ci_low_ns": 111.89944444444446, "ser_ci_high_ns": 118.00027777777778, "deser_mean_ns": 125.7, "deser_median_ns": 121.5, "deser_std_ns": 19.572079402425064, "deser_mad_ns": 11.0, "deser_cv": 0.1557046889612177, "deser_min_ns": 92.0, "deser_max_ns": 182.0, "deser_p5_ns": 94.0, "deser_p25_ns": 115.0, "deser_p50_ns": 121.5, "deser_p75_ns": 136.0, "deser_p95_ns": 159.0, "deser_p99_ns": 178.44, "deser_ci_low_ns": 121.83333333333333, "deser_ci_high_ns": 130.04527777777778, "total_mean_ns": 240.55555555555554, "total_median_ns": 239.0, "total_std_ns": 28.207541867862506, "total_mad_ns": 17.0, "total_cv": 0.11725998928903583, "total_min_ns": 173.0, "total_max_ns": 312.0, "total_p5_ns": 200.45, "total_p25_ns": 221.25, "total_p50_ns": 239.0, "total_p75_ns": 253.0, "total_p95_ns": 295.65, "total_p99_ns": 303.99, "total_ci_low_ns": 234.46666666666667, "total_ci_high_ns": 246.17805555555555, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.1992517012715975}, {"serializer": "bincode", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "2.0.1", "avg_time_ser_ns": 71.95744680851064, "avg_time_deser_ns": 181.19148936170214, "avg_time_total_ns": 253.14893617021278, "median_size_bytes": 54.0, "avg_ops_per_sec": 3950243.7384434356, "min_ops_per_sec": 3039513.67781155, "max_ops_per_sec": 5813953.488372093, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 71.95744680851064, "ser_median_ns": 71.0, "ser_std_ns": 10.7422539170125, "ser_mad_ns": 7.0, "ser_cv": 0.1492862016852713, "ser_min_ns": 47.0, "ser_max_ns": 98.0, "ser_p5_ns": 54.0, "ser_p25_ns": 66.0, "ser_p50_ns": 71.0, "ser_p75_ns": 80.0, "ser_p95_ns": 90.35, "ser_p99_ns": 94.27999999999997, "ser_ci_low_ns": 69.8720744680851, "ser_ci_high_ns": 74.05345744680851, "deser_mean_ns": 181.19148936170214, "deser_median_ns": 185.0, "deser_std_ns": 35.10790634715392, "deser_mad_ns": 25.0, "deser_cv": 0.19376134315596927, "deser_min_ns": 102.0, "deser_max_ns": 261.0, "deser_p5_ns": 126.95, "deser_p25_ns": 155.25, "deser_p50_ns": 185.0, "deser_p75_ns": 202.5, "deser_p95_ns": 244.74999999999997, "deser_p99_ns": 252.62999999999994, "deser_ci_low_ns": 174.30797872340423, "deser_ci_high_ns": 188.03271276595746, "total_mean_ns": 253.14893617021278, "total_median_ns": 251.5, "total_std_ns": 33.920830484992265, "total_mad_ns": 23.0, "total_cv": 0.1339955482261419, "total_min_ns": 172.0, "total_max_ns": 329.0, "total_p5_ns": 201.25, "total_p25_ns": 229.25, "total_p50_ns": 251.5, "total_p75_ns": 274.75, "total_p95_ns": 308.7, "total_p99_ns": 320.62999999999994, "total_ci_low_ns": 246.56356382978726, "total_ci_high_ns": 260.07632978723404, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.6000275096354795}, {"serializer": "rmp-serde", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "1.3.1", "avg_time_ser_ns": 119.95604395604396, "avg_time_deser_ns": 233.71428571428572, "avg_time_total_ns": 353.6703296703297, "median_size_bytes": 136.0, "avg_ops_per_sec": 2827491.921451653, "min_ops_per_sec": 2150537.634408602, "max_ops_per_sec": 3367003.367003367, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 119.95604395604396, "ser_median_ns": 122.0, "ser_std_ns": 13.424614281992186, "ser_mad_ns": 8.0, "ser_cv": 0.1119127793753471, "ser_min_ns": 90.0, "ser_max_ns": 151.0, "ser_p5_ns": 96.0, "ser_p25_ns": 110.5, "ser_p50_ns": 122.0, "ser_p75_ns": 129.0, "ser_p95_ns": 139.0, "ser_p99_ns": 149.2, "ser_ci_low_ns": 117.15384615384616, "ser_ci_high_ns": 122.70357142857142, "deser_mean_ns": 233.71428571428572, "deser_median_ns": 223.0, "deser_std_ns": 28.732979779064454, "deser_mad_ns": 16.0, "deser_cv": 0.12294062252655939, "deser_min_ns": 201.0, "deser_max_ns": 314.0, "deser_p5_ns": 203.5, "deser_p25_ns": 211.0, "deser_p50_ns": 223.0, "deser_p75_ns": 250.5, "deser_p95_ns": 293.5, "deser_p99_ns": 309.5, "deser_ci_low_ns": 228.51620879120878, "deser_ci_high_ns": 239.90164835164833, "total_mean_ns": 353.6703296703297, "total_median_ns": 347.0, "total_std_ns": 34.733286930568795, "total_mad_ns": 26.0, "total_cv": 0.09820808820164555, "total_min_ns": 297.0, "total_max_ns": 465.0, "total_p5_ns": 306.0, "total_p25_ns": 329.5, "total_p50_ns": 347.0, "total_p75_ns": 380.0, "total_p95_ns": 414.5, "total_p99_ns": 445.1999999999999, "total_ci_low_ns": 346.81043956043953, "total_ci_high_ns": 360.52802197802197, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.270124665268144}, {"serializer": "ciborium", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.2.2", "avg_time_ser_ns": 150.42528735632183, "avg_time_deser_ns": 540.9310344827586, "avg_time_total_ns": 691.3563218390805, "median_size_bytes": 136.0, "avg_ops_per_sec": 1446432.1340692958, "min_ops_per_sec": 1285347.0437017996, "max_ops_per_sec": 1589825.119236884, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 150.42528735632183, "ser_median_ns": 150.0, "ser_std_ns": 13.832580502086323, "ser_mad_ns": 8.0, "ser_cv": 0.09195648381458776, "ser_min_ns": 124.0, "ser_max_ns": 190.0, "ser_p5_ns": 132.0, "ser_p25_ns": 140.5, "ser_p50_ns": 150.0, "ser_p75_ns": 158.0, "ser_p95_ns": 176.4, "ser_p99_ns": 188.28, "ser_ci_low_ns": 147.57385057471265, "ser_ci_high_ns": 153.22988505747125, "deser_mean_ns": 540.9310344827586, "deser_median_ns": 543.0, "deser_std_ns": 28.29939316608334, "deser_mad_ns": 20.0, "deser_cv": 0.05231608349693485, "deser_min_ns": 479.0, "deser_max_ns": 613.0, "deser_p5_ns": 501.3, "deser_p25_ns": 521.5, "deser_p50_ns": 543.0, "deser_p75_ns": 557.0, "deser_p95_ns": 593.5, "deser_p99_ns": 608.7, "deser_ci_low_ns": 535.1721264367817, "deser_ci_high_ns": 546.9890804597701, "total_mean_ns": 691.3563218390805, "total_median_ns": 688.0, "total_std_ns": 32.09686538759149, "total_mad_ns": 19.0, "total_cv": 0.04642593749950887, "total_min_ns": 629.0, "total_max_ns": 778.0, "total_p5_ns": 645.3, "total_p25_ns": 668.0, "total_p50_ns": 688.0, "total_p75_ns": 707.0, "total_p95_ns": 756.4, "total_p99_ns": 767.6800000000001, "total_ci_low_ns": 684.5163793103449, "total_ci_high_ns": 698.1847701149425, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.724210485434845}, {"serializer": "serde_avro_fast", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "2.1.0", "avg_time_ser_ns": 144.7674418604651, "avg_time_deser_ns": 179.82558139534885, "avg_time_total_ns": 324.59302325581393, "median_size_bytes": 47.0, "avg_ops_per_sec": 3080780.9421457998, "min_ops_per_sec": 2409638.5542168673, "max_ops_per_sec": 3610108.3032490974, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 144.7674418604651, "ser_median_ns": 140.0, "ser_std_ns": 14.50328516018893, "ser_mad_ns": 8.5, "ser_cv": 0.10018333524307213, "ser_min_ns": 125.0, "ser_max_ns": 187.0, "ser_p5_ns": 127.25, "ser_p25_ns": 136.0, "ser_p50_ns": 140.0, "ser_p75_ns": 153.0, "ser_p95_ns": 174.75, "ser_p99_ns": 183.60000000000002, "ser_ci_low_ns": 141.80203488372092, "ser_ci_high_ns": 147.8956395348837, "deser_mean_ns": 179.82558139534885, "deser_median_ns": 175.5, "deser_std_ns": 18.271927591069776, "deser_mad_ns": 10.5, "deser_cv": 0.10160916733475595, "deser_min_ns": 147.0, "deser_max_ns": 234.0, "deser_p5_ns": 159.0, "deser_p25_ns": 166.25, "deser_p50_ns": 175.5, "deser_p75_ns": 190.5, "deser_p95_ns": 215.5, "deser_p99_ns": 224.65000000000006, "deser_ci_low_ns": 176.12732558139535, "deser_ci_high_ns": 183.7563953488372, "total_mean_ns": 324.59302325581393, "total_median_ns": 321.0, "total_std_ns": 26.859275057877998, "total_mad_ns": 16.0, "total_cv": 0.08274754271816256, "total_min_ns": 277.0, "total_max_ns": 415.0, "total_p5_ns": 290.25, "total_p25_ns": 306.0, "total_p50_ns": 321.0, "total_p75_ns": 337.0, "total_p95_ns": 376.75, "total_p99_ns": 405.6500000000001, "total_ci_low_ns": 318.8255813953488, "total_ci_high_ns": 330.13982558139537, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.474637514967949}, {"serializer": "speedy", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.8.7", "avg_time_ser_ns": 27.181818181818183, "avg_time_deser_ns": 52.43181818181818, "avg_time_total_ns": 79.61363636363636, "median_size_bytes": 60.0, "avg_ops_per_sec": 12560662.289466172, "min_ops_per_sec": 7936507.936507937, "max_ops_per_sec": 16129032.258064516, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 27.181818181818183, "ser_median_ns": 21.5, "ser_std_ns": 8.93340039588671, "ser_mad_ns": 2.5, "ser_cv": 0.32865352627007965, "ser_min_ns": 18.0, "ser_max_ns": 52.0, "ser_p5_ns": 19.0, "ser_p25_ns": 20.0, "ser_p50_ns": 21.5, "ser_p75_ns": 36.25, "ser_p95_ns": 39.64999999999999, "ser_p99_ns": 47.64999999999998, "ser_ci_low_ns": 25.37471590909091, "ser_ci_high_ns": 29.022727272727273, "deser_mean_ns": 52.43181818181818, "deser_median_ns": 47.0, "deser_std_ns": 10.012400879352615, "deser_mad_ns": 3.0, "deser_cv": 0.19096039821912228, "deser_min_ns": 42.0, "deser_max_ns": 84.0, "deser_p5_ns": 44.0, "deser_p25_ns": 45.0, "deser_p50_ns": 47.0, "deser_p75_ns": 60.0, "deser_p95_ns": 73.64999999999999, "deser_p99_ns": 81.38999999999999, "deser_ci_low_ns": 50.363352272727276, "deser_ci_high_ns": 54.636647727272724, "total_mean_ns": 79.61363636363636, "total_median_ns": 80.0, "total_std_ns": 13.727589317281817, "total_mad_ns": 11.0, "total_cv": 0.1724276134628604, "total_min_ns": 62.0, "total_max_ns": 126.0, "total_p5_ns": 63.0, "total_p25_ns": 67.0, "total_p50_ns": 80.0, "total_p75_ns": 87.0, "total_p95_ns": 103.64999999999999, "total_p99_ns": 113.81999999999994, "total_ci_low_ns": 76.965625, "total_ci_high_ns": 82.38664772727273, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "sonic-rs", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.3.17", "avg_time_ser_ns": 203.8901098901099, "avg_time_deser_ns": 302.0879120879121, "avg_time_total_ns": 505.97802197802196, "median_size_bytes": 182.0, "avg_ops_per_sec": 1976370.4282859873, "min_ops_per_sec": 1675041.876046901, "max_ops_per_sec": 2267573.6961451247, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 203.8901098901099, "ser_median_ns": 203.0, "ser_std_ns": 21.793704773754456, "ser_mad_ns": 13.0, "ser_cv": 0.10688946504320661, "ser_min_ns": 146.0, "ser_max_ns": 257.0, "ser_p5_ns": 164.0, "ser_p25_ns": 191.5, "ser_p50_ns": 203.0, "ser_p75_ns": 218.0, "ser_p95_ns": 239.0, "ser_p99_ns": 244.39999999999992, "ser_ci_low_ns": 199.38406593406594, "ser_ci_high_ns": 208.39587912087913, "deser_mean_ns": 302.0879120879121, "deser_median_ns": 299.0, "deser_std_ns": 25.384005616681957, "deser_mad_ns": 17.0, "deser_cv": 0.08402853805449464, "deser_min_ns": 260.0, "deser_max_ns": 377.0, "deser_p5_ns": 268.5, "deser_p25_ns": 282.0, "deser_p50_ns": 299.0, "deser_p75_ns": 316.0, "deser_p95_ns": 351.5, "deser_p99_ns": 371.59999999999997, "deser_ci_low_ns": 296.9876373626374, "deser_ci_high_ns": 307.13186813186815, "total_mean_ns": 505.97802197802196, "total_median_ns": 502.0, "total_std_ns": 33.15719396450055, "total_mad_ns": 24.0, "total_cv": 0.06553089763638151, "total_min_ns": 441.0, "total_max_ns": 597.0, "total_p5_ns": 465.0, "total_p25_ns": 478.0, "total_p50_ns": 502.0, "total_p75_ns": 530.5, "total_p95_ns": 563.5, "total_p99_ns": 581.6999999999999, "total_ci_low_ns": 498.88956043956046, "total_ci_high_ns": 512.7032967032967, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.631418140382266}, {"serializer": "postcard", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "1.1.3", "avg_time_ser_ns": 66.675, "avg_time_deser_ns": 98.6875, "avg_time_total_ns": 165.3625, "median_size_bytes": 48.0, "avg_ops_per_sec": 6047320.281200393, "min_ops_per_sec": 4975124.378109452, "max_ops_per_sec": 6849315.068493151, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 66.675, "ser_median_ns": 67.0, "ser_std_ns": 5.068580307059751, "ser_mad_ns": 3.0, "ser_cv": 0.07601920220562056, "ser_min_ns": 54.0, "ser_max_ns": 76.0, "ser_p5_ns": 55.0, "ser_p25_ns": 64.0, "ser_p50_ns": 67.0, "ser_p75_ns": 70.0, "ser_p95_ns": 74.05, "ser_p99_ns": 76.0, "ser_ci_low_ns": 65.55, "ser_ci_high_ns": 67.763125, "deser_mean_ns": 98.6875, "deser_median_ns": 97.0, "deser_std_ns": 9.923241801352079, "deser_mad_ns": 7.0, "deser_cv": 0.10055216518152835, "deser_min_ns": 83.0, "deser_max_ns": 129.0, "deser_p5_ns": 85.95, "deser_p25_ns": 91.0, "deser_p50_ns": 97.0, "deser_p75_ns": 104.25, "deser_p95_ns": 115.05, "deser_p99_ns": 126.62999999999998, "deser_ci_low_ns": 96.6, "deser_ci_high_ns": 100.8875, "total_mean_ns": 165.3625, "total_median_ns": 164.0, "total_std_ns": 11.363102346485702, "total_mad_ns": 6.0, "total_cv": 0.06871631927725876, "total_min_ns": 146.0, "total_max_ns": 201.0, "total_p5_ns": 150.9, "total_p25_ns": 156.75, "total_p50_ns": 164.0, "total_p75_ns": 169.0, "total_p95_ns": 187.0, "total_p99_ns": 198.63, "total_ci_low_ns": 162.9246875, "total_ci_high_ns": 167.85, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.7438819616398895}, {"serializer": "bitcode", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.6.9", "avg_time_ser_ns": 889.3444444444444, "avg_time_deser_ns": 422.3333333333333, "avg_time_total_ns": 1311.6777777777777, "median_size_bytes": 55.0, "avg_ops_per_sec": 762382.3601663688, "min_ops_per_sec": 646830.530401035, "max_ops_per_sec": 884955.7522123894, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 889.3444444444444, "ser_median_ns": 884.5, "ser_std_ns": 93.44314634044862, "ser_mad_ns": 71.5, "ser_cv": 0.10506969141615392, "ser_min_ns": 716.0, "ser_max_ns": 1111.0, "ser_p5_ns": 745.25, "ser_p25_ns": 815.0, "ser_p50_ns": 884.5, "ser_p75_ns": 956.0, "ser_p95_ns": 1046.2, "ser_p99_ns": 1078.07, "ser_ci_low_ns": 870.8997222222222, "ser_ci_high_ns": 908.2672222222222, "deser_mean_ns": 422.3333333333333, "deser_median_ns": 413.0, "deser_std_ns": 44.16363850830381, "deser_mad_ns": 25.0, "deser_cv": 0.10457057263213215, "deser_min_ns": 345.0, "deser_max_ns": 532.0, "deser_p5_ns": 359.9, "deser_p25_ns": 395.25, "deser_p50_ns": 413.0, "deser_p75_ns": 446.75, "deser_p95_ns": 511.55, "deser_p99_ns": 524.88, "deser_ci_low_ns": 413.1886111111111, "deser_ci_high_ns": 431.8222222222222, "total_mean_ns": 1311.6777777777777, "total_median_ns": 1299.5, "total_std_ns": 95.03681460275119, "total_mad_ns": 63.5, "total_cv": 0.07245439101953909, "total_min_ns": 1130.0, "total_max_ns": 1546.0, "total_p5_ns": 1174.45, "total_p25_ns": 1236.75, "total_p50_ns": 1299.5, "total_p75_ns": 1367.25, "total_p95_ns": 1477.5, "total_p99_ns": 1526.42, "total_ci_low_ns": 1291.542777777778, "total_ci_high_ns": 1331.2244444444443, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.97054414375472}, {"serializer": "bson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "2.15.0", "avg_time_ser_ns": 421.35164835164835, "avg_time_deser_ns": 537.4725274725274, "avg_time_total_ns": 958.8241758241758, "median_size_bytes": 161.0, "avg_ops_per_sec": 1042944.0821519032, "min_ops_per_sec": 831255.1953449709, "max_ops_per_sec": 1234567.9012345679, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 421.35164835164835, "ser_median_ns": 400.0, "ser_std_ns": 72.7944402068628, "ser_mad_ns": 43.0, "ser_cv": 0.17276410449950486, "ser_min_ns": 276.0, "ser_max_ns": 608.0, "ser_p5_ns": 334.0, "ser_p25_ns": 371.0, "ser_p50_ns": 400.0, "ser_p75_ns": 465.0, "ser_p95_ns": 556.5, "ser_p99_ns": 591.8, "ser_ci_low_ns": 406.4266483516484, "ser_ci_high_ns": 436.70384615384614, "deser_mean_ns": 537.4725274725274, "deser_median_ns": 526.0, "deser_std_ns": 53.056435500185536, "deser_mad_ns": 35.0, "deser_cv": 0.0987146929159044, "deser_min_ns": 456.0, "deser_max_ns": 674.0, "deser_p5_ns": 471.0, "deser_p25_ns": 494.0, "deser_p50_ns": 526.0, "deser_p75_ns": 568.5, "deser_p95_ns": 647.0, "deser_p99_ns": 664.0999999999999, "deser_ci_low_ns": 527.2524725274725, "deser_ci_high_ns": 548.1978021978022, "total_mean_ns": 958.8241758241758, "total_median_ns": 933.0, "total_std_ns": 94.24195732340516, "total_mad_ns": 53.0, "total_cv": 0.09828909168085762, "total_min_ns": 810.0, "total_max_ns": 1203.0, "total_p5_ns": 846.0, "total_p25_ns": 893.0, "total_p50_ns": 933.0, "total_p75_ns": 1021.5, "total_p95_ns": 1165.5, "total_p99_ns": 1202.1, "total_ci_low_ns": 940.821978021978, "total_ci_high_ns": 978.0903846153846, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.896102268663162}, {"serializer": "simd-json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.14.3", "avg_time_ser_ns": 306.44444444444446, "avg_time_deser_ns": 630.9555555555555, "avg_time_total_ns": 937.4, "median_size_bytes": 182.0, "avg_ops_per_sec": 1066780.4565820354, "min_ops_per_sec": 961538.4615384615, "max_ops_per_sec": 1246882.7930174563, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 306.44444444444446, "ser_median_ns": 302.5, "ser_std_ns": 29.81030329050947, "ser_mad_ns": 16.5, "ser_cv": 0.09727800203574519, "ser_min_ns": 238.0, "ser_max_ns": 376.0, "ser_p5_ns": 260.45, "ser_p25_ns": 290.0, "ser_p50_ns": 302.5, "ser_p75_ns": 326.0, "ser_p95_ns": 358.0, "ser_p99_ns": 374.22, "ser_ci_low_ns": 300.56638888888887, "ser_ci_high_ns": 312.71305555555557, "deser_mean_ns": 630.9555555555555, "deser_median_ns": 632.0, "deser_std_ns": 46.00315355851531, "deser_mad_ns": 32.0, "deser_cv": 0.07291029162586514, "deser_min_ns": 531.0, "deser_max_ns": 717.0, "deser_p5_ns": 559.6, "deser_p25_ns": 597.0, "deser_p50_ns": 632.0, "deser_p75_ns": 662.0, "deser_p95_ns": 709.55, "deser_p99_ns": 717.0, "deser_ci_low_ns": 621.3216666666666, "deser_ci_high_ns": 640.0561111111111, "total_mean_ns": 937.4, "total_median_ns": 941.5, "total_std_ns": 54.454145228662526, "total_mad_ns": 42.5, "total_cv": 0.05809061790981707, "total_min_ns": 802.0, "total_max_ns": 1040.0, "total_p5_ns": 864.9, "total_p25_ns": 895.25, "total_p50_ns": 941.5, "total_p75_ns": 980.75, "total_p95_ns": 1024.75, "total_p99_ns": 1036.44, "total_ci_low_ns": 926.4991666666667, "total_ci_high_ns": 948.1905555555555, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.8046236111434}, {"serializer": "prost", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.13.5", "avg_time_ser_ns": 249.4945054945055, "avg_time_deser_ns": 155.9120879120879, "avg_time_total_ns": 405.4065934065934, "median_size_bytes": 55.0, "avg_ops_per_sec": 2466659.4383606203, "min_ops_per_sec": 2061855.6701030927, "max_ops_per_sec": 2898550.724637681, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 249.4945054945055, "ser_median_ns": 244.0, "ser_std_ns": 26.4282566063815, "ser_mad_ns": 14.0, "ser_cv": 0.10592720891387934, "ser_min_ns": 198.0, "ser_max_ns": 312.0, "ser_p5_ns": 214.0, "ser_p25_ns": 232.0, "ser_p50_ns": 244.0, "ser_p75_ns": 259.0, "ser_p95_ns": 300.5, "ser_p99_ns": 310.2, "ser_ci_low_ns": 244.05384615384617, "ser_ci_high_ns": 255.05494505494505, "deser_mean_ns": 155.9120879120879, "deser_median_ns": 153.0, "deser_std_ns": 15.405373053760137, "deser_mad_ns": 10.0, "deser_cv": 0.09880807357570992, "deser_min_ns": 132.0, "deser_max_ns": 197.0, "deser_p5_ns": 138.5, "deser_p25_ns": 143.0, "deser_p50_ns": 153.0, "deser_p75_ns": 164.5, "deser_p95_ns": 186.5, "deser_p99_ns": 194.29999999999998, "deser_ci_low_ns": 152.8010989010989, "deser_ci_high_ns": 159.07692307692307, "total_mean_ns": 405.4065934065934, "total_median_ns": 402.0, "total_std_ns": 29.80603146343893, "total_mad_ns": 21.0, "total_cv": 0.07352132882936525, "total_min_ns": 345.0, "total_max_ns": 485.0, "total_p5_ns": 363.0, "total_p25_ns": 385.5, "total_p50_ns": 402.0, "total_p75_ns": 428.0, "total_p95_ns": 462.5, "total_p99_ns": 473.29999999999995, "total_ci_low_ns": 399.714010989011, "total_ci_high_ns": 411.6489010989011, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.174111472340812}, {"serializer": "rmp-serde", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "1.3.1", "avg_time_ser_ns": 193.24137931034483, "avg_time_deser_ns": 246.31034482758622, "avg_time_total_ns": 439.55172413793105, "median_size_bytes": 136.0, "avg_ops_per_sec": 2275045.1086530164, "min_ops_per_sec": 1879699.2481203007, "max_ops_per_sec": 2762430.9392265193, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 193.24137931034483, "ser_median_ns": 192.0, "ser_std_ns": 30.848453851888994, "ser_mad_ns": 20.0, "ser_cv": 0.15963689537915432, "ser_min_ns": 128.0, "ser_max_ns": 272.0, "ser_p5_ns": 146.9, "ser_p25_ns": 172.5, "ser_p50_ns": 192.0, "ser_p75_ns": 211.5, "ser_p95_ns": 257.90000000000003, "ser_p99_ns": 269.42, "ser_ci_low_ns": 187.22844827586206, "ser_ci_high_ns": 199.5977011494253, "deser_mean_ns": 246.31034482758622, "deser_median_ns": 247.0, "deser_std_ns": 14.043379922481382, "deser_mad_ns": 11.0, "deser_cv": 0.0570149821856307, "deser_min_ns": 223.0, "deser_max_ns": 282.0, "deser_p5_ns": 228.0, "deser_p25_ns": 234.0, "deser_p50_ns": 247.0, "deser_p75_ns": 255.5, "deser_p95_ns": 272.8, "deser_p99_ns": 280.28, "deser_ci_low_ns": 243.4933908045977, "deser_ci_high_ns": 249.24166666666667, "total_mean_ns": 439.55172413793105, "total_median_ns": 437.0, "total_std_ns": 36.05994963838712, "total_mad_ns": 25.0, "total_cv": 0.08203801204308672, "total_min_ns": 362.0, "total_max_ns": 532.0, "total_p5_ns": 386.8, "total_p25_ns": 413.5, "total_p50_ns": 437.0, "total_p75_ns": 462.5, "total_p95_ns": 504.20000000000005, "total_p99_ns": 531.14, "total_ci_low_ns": 432.18103448275866, "total_ci_high_ns": 447.2083333333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.33444789970028}, {"serializer": "speedy", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.8.7", "avg_time_ser_ns": 103.70114942528735, "avg_time_deser_ns": 84.36781609195403, "avg_time_total_ns": 188.06896551724137, "median_size_bytes": 60.0, "avg_ops_per_sec": 5317198.386505318, "min_ops_per_sec": 4016064.2570281127, "max_ops_per_sec": 6666666.666666667, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 103.70114942528735, "ser_median_ns": 101.0, "ser_std_ns": 15.416779549786487, "ser_mad_ns": 8.0, "ser_cv": 0.14866546451246113, "ser_min_ns": 69.0, "ser_max_ns": 150.0, "ser_p5_ns": 89.3, "ser_p25_ns": 94.0, "ser_p50_ns": 101.0, "ser_p75_ns": 111.5, "ser_p95_ns": 137.8, "ser_p99_ns": 150.0, "ser_ci_low_ns": 100.51724137931035, "ser_ci_high_ns": 107.02298850574712, "deser_mean_ns": 84.36781609195403, "deser_median_ns": 85.0, "deser_std_ns": 13.408705036523186, "deser_mad_ns": 12.0, "deser_cv": 0.15893151746287698, "deser_min_ns": 60.0, "deser_max_ns": 121.0, "deser_p5_ns": 68.6, "deser_p25_ns": 72.5, "deser_p50_ns": 85.0, "deser_p75_ns": 93.5, "deser_p95_ns": 109.10000000000001, "deser_p99_ns": 114.12, "deser_ci_low_ns": 81.47011494252874, "deser_ci_high_ns": 87.22988505747126, "total_mean_ns": 188.06896551724137, "total_median_ns": 186.0, "total_std_ns": 22.466405464577484, "total_mad_ns": 15.0, "total_cv": 0.11945833488682565, "total_min_ns": 150.0, "total_max_ns": 249.0, "total_p5_ns": 160.3, "total_p25_ns": 172.5, "total_p50_ns": 186.0, "total_p75_ns": 202.0, "total_p95_ns": 234.70000000000005, "total_p99_ns": 245.56, "total_ci_low_ns": 183.3448275862069, "total_ci_high_ns": 192.7712643678161, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "flexbuffers", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "2.0.0", "avg_time_ser_ns": 1024.1195652173913, "avg_time_deser_ns": 541.1739130434783, "avg_time_total_ns": 1565.2934782608695, "median_size_bytes": 226.0, "avg_ops_per_sec": 638857.8332997701, "min_ops_per_sec": 583090.3790087464, "max_ops_per_sec": 703729.7677691766, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 1024.1195652173913, "ser_median_ns": 1018.0, "ser_std_ns": 53.21919062103761, "ser_mad_ns": 35.0, "ser_cv": 0.05196579816316731, "ser_min_ns": 914.0, "ser_max_ns": 1140.0, "ser_p5_ns": 944.1, "ser_p25_ns": 987.0, "ser_p50_ns": 1018.0, "ser_p75_ns": 1057.75, "ser_p95_ns": 1120.0, "ser_p99_ns": 1137.27, "ser_ci_low_ns": 1013.7163043478262, "ser_ci_high_ns": 1035.402445652174, "deser_mean_ns": 541.1739130434783, "deser_median_ns": 537.0, "deser_std_ns": 29.49859698494604, "deser_mad_ns": 22.0, "deser_cv": 0.0545085346391708, "deser_min_ns": 479.0, "deser_max_ns": 609.0, "deser_p5_ns": 490.65, "deser_p25_ns": 522.0, "deser_p50_ns": 537.0, "deser_p75_ns": 563.0, "deser_p95_ns": 589.45, "deser_p99_ns": 608.09, "deser_ci_low_ns": 534.7815217391304, "deser_ci_high_ns": 547.3595108695652, "total_mean_ns": 1565.2934782608695, "total_median_ns": 1552.0, "total_std_ns": 68.80271813623055, "total_mad_ns": 50.5, "total_cv": 0.04395515543364705, "total_min_ns": 1421.0, "total_max_ns": 1715.0, "total_p5_ns": 1462.1, "total_p25_ns": 1520.25, "total_p50_ns": 1552.0, "total_p75_ns": 1610.5, "total_p95_ns": 1688.35, "total_p99_ns": 1703.17, "total_ci_low_ns": 1551.5641304347826, "total_ci_high_ns": 1579.208695652174, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.495423844626377}, {"serializer": "serde_json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "1.0.150", "avg_time_ser_ns": 402.53684210526313, "avg_time_deser_ns": 976.7157894736843, "avg_time_total_ns": 1379.2526315789473, "median_size_bytes": 182.0, "avg_ops_per_sec": 725030.3367956713, "min_ops_per_sec": 567536.8898978434, "max_ops_per_sec": 851788.7563884157, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 402.53684210526313, "ser_median_ns": 397.0, "ser_std_ns": 37.27551547264504, "ser_mad_ns": 20.0, "ser_cv": 0.09260150021969298, "ser_min_ns": 329.0, "ser_max_ns": 499.0, "ser_p5_ns": 353.4, "ser_p25_ns": 379.0, "ser_p50_ns": 397.0, "ser_p75_ns": 421.0, "ser_p95_ns": 470.6, "ser_p99_ns": 486.78000000000003, "ser_ci_low_ns": 394.84973684210524, "ser_ci_high_ns": 410.3286842105263, "deser_mean_ns": 976.7157894736843, "deser_median_ns": 937.0, "deser_std_ns": 121.27019798059654, "deser_mad_ns": 79.0, "deser_cv": 0.12416119334565537, "deser_min_ns": 798.0, "deser_max_ns": 1353.0, "deser_p5_ns": 836.4, "deser_p25_ns": 880.0, "deser_p50_ns": 937.0, "deser_p75_ns": 1069.5, "deser_p95_ns": 1200.2, "deser_p99_ns": 1280.6200000000001, "deser_ci_low_ns": 951.8900000000001, "deser_ci_high_ns": 1000.1476315789474, "total_mean_ns": 1379.2526315789473, "total_median_ns": 1341.0, "total_std_ns": 138.62861517424454, "total_mad_ns": 99.0, "total_cv": 0.10050995154930002, "total_min_ns": 1174.0, "total_max_ns": 1762.0, "total_p5_ns": 1198.6, "total_p25_ns": 1266.0, "total_p50_ns": 1341.0, "total_p75_ns": 1488.5, "total_p95_ns": 1612.1, "total_p99_ns": 1751.66, "total_ci_low_ns": 1352.3363157894737, "total_ci_high_ns": 1405.98, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.701087249442903}, {"serializer": "serde_avro_fast", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "2.1.0", "avg_time_ser_ns": 196.17894736842106, "avg_time_deser_ns": 308.05263157894734, "avg_time_total_ns": 504.2315789473684, "median_size_bytes": 47.0, "avg_ops_per_sec": 1983215.7321197446, "min_ops_per_sec": 1639344.262295082, "max_ops_per_sec": 2493765.5860349126, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 196.17894736842106, "ser_median_ns": 195.0, "ser_std_ns": 18.12074099476421, "ser_mad_ns": 13.0, "ser_cv": 0.0923684281001556, "ser_min_ns": 168.0, "ser_max_ns": 237.0, "ser_p5_ns": 172.7, "ser_p25_ns": 182.5, "ser_p50_ns": 195.0, "ser_p75_ns": 209.0, "ser_p95_ns": 228.2, "ser_p99_ns": 237.0, "ser_ci_low_ns": 192.75763157894735, "ser_ci_high_ns": 199.65263157894736, "deser_mean_ns": 308.05263157894734, "deser_median_ns": 303.0, "deser_std_ns": 32.10003261781753, "deser_mad_ns": 19.0, "deser_cv": 0.10420307871835523, "deser_min_ns": 233.0, "deser_max_ns": 387.0, "deser_p5_ns": 268.2, "deser_p25_ns": 285.5, "deser_p50_ns": 303.0, "deser_p75_ns": 328.5, "deser_p95_ns": 367.9, "deser_p99_ns": 374.78000000000003, "deser_ci_low_ns": 301.7997368421053, "deser_ci_high_ns": 314.6844736842105, "total_mean_ns": 504.2315789473684, "total_median_ns": 500.0, "total_std_ns": 38.71979334160468, "total_mad_ns": 30.0, "total_cv": 0.07678970329949573, "total_min_ns": 401.0, "total_max_ns": 610.0, "total_p5_ns": 449.4, "total_p25_ns": 475.5, "total_p50_ns": 500.0, "total_p75_ns": 536.0, "total_p95_ns": 556.3, "total_p99_ns": 592.1400000000001, "total_ci_low_ns": 496.9257894736842, "total_ci_high_ns": 512.1265789473684, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.83847065795119}, {"serializer": "bincode", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "2.0.1", "avg_time_ser_ns": 149.63440860215053, "avg_time_deser_ns": 125.86021505376344, "avg_time_total_ns": 275.494623655914, "median_size_bytes": 54.0, "avg_ops_per_sec": 3629834.9010577262, "min_ops_per_sec": 2824858.757062147, "max_ops_per_sec": 4566210.0456621, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 149.63440860215053, "ser_median_ns": 143.0, "ser_std_ns": 25.88846685731957, "ser_mad_ns": 15.0, "ser_cv": 0.17301145571505608, "ser_min_ns": 106.0, "ser_max_ns": 217.0, "ser_p5_ns": 113.2, "ser_p25_ns": 132.0, "ser_p50_ns": 143.0, "ser_p75_ns": 164.0, "ser_p95_ns": 203.0, "ser_p99_ns": 215.16, "ser_ci_low_ns": 144.6233870967742, "ser_ci_high_ns": 155.08709677419355, "deser_mean_ns": 125.86021505376344, "deser_median_ns": 126.0, "deser_std_ns": 11.042006156185984, "deser_mad_ns": 9.0, "deser_cv": 0.08773230008759475, "deser_min_ns": 108.0, "deser_max_ns": 151.0, "deser_p5_ns": 110.0, "deser_p25_ns": 114.0, "deser_p50_ns": 126.0, "deser_p75_ns": 133.0, "deser_p95_ns": 144.39999999999998, "deser_p99_ns": 148.24, "deser_ci_low_ns": 123.60188172043011, "deser_ci_high_ns": 128.2260752688172, "total_mean_ns": 275.494623655914, "total_median_ns": 270.0, "total_std_ns": 30.01942257356567, "total_mad_ns": 20.0, "total_cv": 0.10896554776712881, "total_min_ns": 219.0, "total_max_ns": 354.0, "total_p5_ns": 230.6, "total_p25_ns": 258.0, "total_p50_ns": 270.0, "total_p75_ns": 291.0, "total_p95_ns": 333.2, "total_p99_ns": 345.71999999999997, "total_ci_low_ns": 269.56881720430107, "total_ci_high_ns": 281.6561827956989, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.9810901001112347, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.268025160180931}, {"serializer": "bitcode", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.6.9", "avg_time_ser_ns": 875.1290322580645, "avg_time_deser_ns": 508.9139784946237, "avg_time_total_ns": 1384.0430107526881, "median_size_bytes": 55.0, "avg_ops_per_sec": 722520.8987227696, "min_ops_per_sec": 626959.2476489028, "max_ops_per_sec": 812347.6848090983, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 875.1290322580645, "ser_median_ns": 872.0, "ser_std_ns": 58.216467453367066, "ser_mad_ns": 42.0, "ser_cv": 0.06652329577405651, "ser_min_ns": 741.0, "ser_max_ns": 1018.0, "ser_p5_ns": 782.2, "ser_p25_ns": 833.0, "ser_p50_ns": 872.0, "ser_p75_ns": 920.0, "ser_p95_ns": 970.4, "ser_p99_ns": 986.7199999999999, "ser_ci_low_ns": 863.3758064516129, "ser_ci_high_ns": 886.9575268817205, "deser_mean_ns": 508.9139784946237, "deser_median_ns": 501.0, "deser_std_ns": 38.95835455244889, "deser_mad_ns": 26.0, "deser_cv": 0.07655194433387028, "deser_min_ns": 437.0, "deser_max_ns": 617.0, "deser_p5_ns": 457.6, "deser_p25_ns": 480.0, "deser_p50_ns": 501.0, "deser_p75_ns": 535.0, "deser_p95_ns": 573.9999999999999, "deser_p99_ns": 607.8, "deser_ci_low_ns": 501.06397849462365, "deser_ci_high_ns": 516.6349462365591, "total_mean_ns": 1384.0430107526881, "total_median_ns": 1382.0, "total_std_ns": 82.16551614278798, "total_mad_ns": 65.0, "total_cv": 0.0593663025675074, "total_min_ns": 1231.0, "total_max_ns": 1595.0, "total_p5_ns": 1271.0, "total_p25_ns": 1314.0, "total_p50_ns": 1382.0, "total_p75_ns": 1438.0, "total_p95_ns": 1528.4, "total_p99_ns": 1588.56, "total_ci_low_ns": 1367.5801075268816, "total_ci_high_ns": 1401.5532258064516, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.491393228777635}, {"serializer": "sonic-rs", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.3.17", "avg_time_ser_ns": 252.2111111111111, "avg_time_deser_ns": 310.4555555555556, "avg_time_total_ns": 562.6666666666666, "median_size_bytes": 182.0, "avg_ops_per_sec": 1777251.1848341234, "min_ops_per_sec": 1572327.0440251573, "max_ops_per_sec": 2044989.7750511249, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 252.2111111111111, "ser_median_ns": 252.0, "ser_std_ns": 24.47539211077689, "ser_mad_ns": 18.5, "ser_cv": 0.09704327459226927, "ser_min_ns": 199.0, "ser_max_ns": 311.0, "ser_p5_ns": 213.15, "ser_p25_ns": 233.5, "ser_p50_ns": 252.0, "ser_p75_ns": 269.25, "ser_p95_ns": 295.59999999999997, "ser_p99_ns": 310.11, "ser_ci_low_ns": 247.355, "ser_ci_high_ns": 257.1002777777778, "deser_mean_ns": 310.4555555555556, "deser_median_ns": 307.0, "deser_std_ns": 22.136532980223425, "deser_mad_ns": 14.0, "deser_cv": 0.07130338814717112, "deser_min_ns": 270.0, "deser_max_ns": 370.0, "deser_p5_ns": 278.0, "deser_p25_ns": 299.0, "deser_p50_ns": 307.0, "deser_p75_ns": 322.75, "deser_p95_ns": 351.1, "deser_p99_ns": 360.21, "deser_ci_low_ns": 306.05555555555554, "deser_ci_high_ns": 315.0447222222222, "total_mean_ns": 562.6666666666666, "total_median_ns": 560.5, "total_std_ns": 34.02708768950428, "total_mad_ns": 24.5, "total_cv": 0.06047468191262609, "total_min_ns": 489.0, "total_max_ns": 636.0, "total_p5_ns": 507.95, "total_p25_ns": 539.0, "total_p50_ns": 560.5, "total_p75_ns": 585.0, "total_p95_ns": 620.5, "total_p99_ns": 631.55, "total_ci_low_ns": 555.7436111111111, "total_ci_high_ns": 569.5469444444444, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.893274391548522}, {"serializer": "postcard", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "1.1.3", "avg_time_ser_ns": 124.65853658536585, "avg_time_deser_ns": 112.5, "avg_time_total_ns": 237.15853658536585, "median_size_bytes": 48.0, "avg_ops_per_sec": 4216588.676916748, "min_ops_per_sec": 3300330.0330033004, "max_ops_per_sec": 5025125.628140704, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 124.65853658536585, "ser_median_ns": 122.0, "ser_std_ns": 14.888241704172286, "ser_mad_ns": 5.0, "ser_cv": 0.11943218741363015, "ser_min_ns": 94.0, "ser_max_ns": 174.0, "ser_p5_ns": 104.05, "ser_p25_ns": 118.0, "ser_p50_ns": 122.0, "ser_p75_ns": 130.75, "ser_p95_ns": 154.95, "ser_p99_ns": 164.27999999999997, "ser_ci_low_ns": 121.43871951219512, "ser_ci_high_ns": 128.1594512195122, "deser_mean_ns": 112.5, "deser_median_ns": 110.0, "deser_std_ns": 7.554329965957795, "deser_mad_ns": 3.0, "deser_cv": 0.06714959969740263, "deser_min_ns": 97.0, "deser_max_ns": 133.0, "deser_p5_ns": 105.05, "deser_p25_ns": 108.0, "deser_p50_ns": 110.0, "deser_p75_ns": 115.0, "deser_p95_ns": 128.95, "deser_p99_ns": 132.19, "deser_ci_low_ns": 110.90213414634147, "deser_ci_high_ns": 114.12225609756098, "total_mean_ns": 237.15853658536585, "total_median_ns": 235.0, "total_std_ns": 18.695394238507323, "total_mad_ns": 8.5, "total_cv": 0.07883078765658459, "total_min_ns": 199.0, "total_max_ns": 303.0, "total_p5_ns": 205.35, "total_p25_ns": 227.0, "total_p50_ns": 235.0, "total_p75_ns": 244.0, "total_p95_ns": 273.8, "total_p99_ns": 290.03999999999996, "total_ci_low_ns": 233.29268292682926, "total_ci_high_ns": 241.20762195121952, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.8853378188954303, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.358164206701964}, {"serializer": "nanoserde", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.1.37", "avg_time_ser_ns": 306.9574468085106, "avg_time_deser_ns": 119.31914893617021, "avg_time_total_ns": 426.27659574468083, "median_size_bytes": 68.0, "avg_ops_per_sec": 2345894.6843024706, "min_ops_per_sec": 1904761.9047619049, "max_ops_per_sec": 3048780.487804878, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 306.9574468085106, "ser_median_ns": 307.0, "ser_std_ns": 32.12205047540478, "ser_mad_ns": 22.0, "ser_cv": 0.10464659127635854, "ser_min_ns": 224.0, "ser_max_ns": 385.0, "ser_p5_ns": 253.3, "ser_p25_ns": 286.75, "ser_p50_ns": 307.0, "ser_p75_ns": 329.75, "ser_p95_ns": 362.75, "ser_p99_ns": 371.0499999999999, "ser_ci_low_ns": 300.7651595744681, "ser_ci_high_ns": 313.48962765957447, "deser_mean_ns": 119.31914893617021, "deser_median_ns": 116.5, "deser_std_ns": 13.71618051317686, "deser_mad_ns": 9.5, "deser_cv": 0.1149537239870386, "deser_min_ns": 100.0, "deser_max_ns": 158.0, "deser_p5_ns": 104.0, "deser_p25_ns": 107.25, "deser_p50_ns": 116.5, "deser_p75_ns": 128.75, "deser_p95_ns": 145.0, "deser_p99_ns": 155.20999999999998, "deser_ci_low_ns": 116.64760638297872, "deser_ci_high_ns": 122.05345744680851, "total_mean_ns": 426.27659574468083, "total_median_ns": 425.5, "total_std_ns": 37.61131271572972, "total_mad_ns": 23.5, "total_cv": 0.08823217856946827, "total_min_ns": 328.0, "total_max_ns": 525.0, "total_p5_ns": 371.3, "total_p25_ns": 402.0, "total_p50_ns": 425.5, "total_p75_ns": 447.5, "total_p95_ns": 487.35, "total_p99_ns": 515.6999999999999, "total_ci_low_ns": 418.8933510638298, "total_ci_high_ns": 433.6664893617021, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.587152518528007}, {"serializer": "bson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "2.15.0", "avg_time_ser_ns": 466.4583333333333, "avg_time_deser_ns": 554.09375, "avg_time_total_ns": 1020.5520833333334, "median_size_bytes": 161.0, "avg_ops_per_sec": 979861.7986588142, "min_ops_per_sec": 856898.029134533, "max_ops_per_sec": 1091703.056768559, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 466.4583333333333, "ser_median_ns": 464.5, "ser_std_ns": 39.78519075621948, "ser_mad_ns": 27.5, "ser_cv": 0.08529205700306097, "ser_min_ns": 377.0, "ser_max_ns": 570.0, "ser_p5_ns": 408.0, "ser_p25_ns": 438.5, "ser_p50_ns": 464.5, "ser_p75_ns": 495.25, "ser_p95_ns": 530.5, "ser_p99_ns": 561.4499999999999, "ser_ci_low_ns": 458.4783854166667, "ser_ci_high_ns": 474.17734375, "deser_mean_ns": 554.09375, "deser_median_ns": 542.5, "deser_std_ns": 39.13837210529625, "deser_mad_ns": 28.0, "deser_cv": 0.07063492794368507, "deser_min_ns": 486.0, "deser_max_ns": 657.0, "deser_p5_ns": 501.25, "deser_p25_ns": 523.75, "deser_p50_ns": 542.5, "deser_p75_ns": 582.0, "deser_p95_ns": 617.75, "deser_p99_ns": 642.75, "deser_ci_low_ns": 546.1976562499999, "deser_ci_high_ns": 561.4385416666667, "total_mean_ns": 1020.5520833333334, "total_median_ns": 1012.5, "total_std_ns": 60.12563509530718, "total_mad_ns": 44.5, "total_cv": 0.058914812949991215, "total_min_ns": 916.0, "total_max_ns": 1167.0, "total_p5_ns": 939.5, "total_p25_ns": 974.75, "total_p50_ns": 1012.5, "total_p75_ns": 1066.25, "total_p95_ns": 1144.75, "total_p99_ns": 1163.2, "total_ci_low_ns": 1008.6856770833333, "total_ci_high_ns": 1032.7609375000002, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.93256815594786}, {"serializer": "rkyv", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.8.17", "avg_time_ser_ns": 242.76666666666668, "avg_time_deser_ns": 101.72222222222223, "avg_time_total_ns": 344.4888888888889, "median_size_bytes": 80.0, "avg_ops_per_sec": 2902851.245000645, "min_ops_per_sec": 2392344.4976076554, "max_ops_per_sec": 3389830.5084745763, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 242.76666666666668, "ser_median_ns": 238.5, "ser_std_ns": 22.44045804575679, "ser_mad_ns": 12.5, "ser_cv": 0.09243632313232236, "ser_min_ns": 202.0, "ser_max_ns": 305.0, "ser_p5_ns": 210.35, "ser_p25_ns": 228.25, "ser_p50_ns": 238.5, "ser_p75_ns": 256.0, "ser_p95_ns": 287.5, "ser_p99_ns": 301.44, "ser_ci_low_ns": 238.14333333333335, "ser_ci_high_ns": 247.2888888888889, "deser_mean_ns": 101.72222222222223, "deser_median_ns": 100.0, "deser_std_ns": 8.089426831792, "deser_mad_ns": 5.0, "deser_cv": 0.07952467666425778, "deser_min_ns": 91.0, "deser_max_ns": 125.0, "deser_p5_ns": 92.0, "deser_p25_ns": 96.0, "deser_p50_ns": 100.0, "deser_p75_ns": 106.0, "deser_p95_ns": 119.19999999999999, "deser_p99_ns": 124.11, "deser_ci_low_ns": 100.1438888888889, "deser_ci_high_ns": 103.50027777777778, "total_mean_ns": 344.4888888888889, "total_median_ns": 338.5, "total_std_ns": 26.822447602349307, "total_mad_ns": 15.0, "total_cv": 0.07786157541644426, "total_min_ns": 295.0, "total_max_ns": 418.0, "total_p5_ns": 304.9, "total_p25_ns": 326.25, "total_p50_ns": 338.5, "total_p75_ns": 360.5, "total_p95_ns": 396.84999999999997, "total_p99_ns": 417.11, "total_ci_low_ns": 339.02194444444444, "total_ci_high_ns": 349.96777777777777, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.285850498673348}, {"serializer": "ciborium", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.2.2", "avg_time_ser_ns": 343.1011235955056, "avg_time_deser_ns": 622.3932584269663, "avg_time_total_ns": 965.4943820224719, "median_size_bytes": 136.0, "avg_ops_per_sec": 1035738.8076202447, "min_ops_per_sec": 967117.9883945842, "max_ops_per_sec": 1116071.4285714286, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 343.1011235955056, "ser_median_ns": 340.0, "ser_std_ns": 20.737013977986003, "ser_mad_ns": 14.0, "ser_cv": 0.060439947735157006, "ser_min_ns": 294.0, "ser_max_ns": 385.0, "ser_p5_ns": 313.0, "ser_p25_ns": 327.0, "ser_p50_ns": 340.0, "ser_p75_ns": 356.0, "ser_p95_ns": 384.6, "ser_p99_ns": 385.0, "ser_ci_low_ns": 338.6179775280899, "ser_ci_high_ns": 347.39353932584265, "deser_mean_ns": 622.3932584269663, "deser_median_ns": 621.0, "deser_std_ns": 23.159829043139688, "deser_mad_ns": 13.0, "deser_cv": 0.037210925294521545, "deser_min_ns": 573.0, "deser_max_ns": 681.0, "deser_p5_ns": 581.6, "deser_p25_ns": 610.0, "deser_p50_ns": 621.0, "deser_p75_ns": 635.0, "deser_p95_ns": 664.2, "deser_p99_ns": 676.6, "deser_ci_low_ns": 617.6058988764045, "deser_ci_high_ns": 627.0567415730337, "total_mean_ns": 965.4943820224719, "total_median_ns": 966.0, "total_std_ns": 31.99862340629445, "total_mad_ns": 23.0, "total_cv": 0.03314221605232466, "total_min_ns": 896.0, "total_max_ns": 1034.0, "total_p5_ns": 913.4, "total_p25_ns": 944.0, "total_p50_ns": 966.0, "total_p75_ns": 989.0, "total_p95_ns": 1013.8, "total_p99_ns": 1019.0400000000001, "total_ci_low_ns": 958.9536516853933, "total_ci_high_ns": 972.1912921348315, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.94439870766251}, {"serializer": "minicbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.25.1", "avg_time_ser_ns": 187.4659090909091, "avg_time_deser_ns": 143.3181818181818, "avg_time_total_ns": 330.78409090909093, "median_size_bytes": 55.0, "avg_ops_per_sec": 3023119.997251709, "min_ops_per_sec": 2518891.687657431, "max_ops_per_sec": 3816793.893129771, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 187.4659090909091, "ser_median_ns": 185.0, "ser_std_ns": 24.137988785570563, "ser_mad_ns": 18.0, "ser_cv": 0.12875935098079708, "ser_min_ns": 125.0, "ser_max_ns": 238.0, "ser_p5_ns": 155.0, "ser_p25_ns": 169.75, "ser_p50_ns": 185.0, "ser_p75_ns": 205.25, "ser_p95_ns": 228.29999999999998, "ser_p99_ns": 236.26, "ser_ci_low_ns": 182.55568181818182, "ser_ci_high_ns": 192.53437499999998, "deser_mean_ns": 143.3181818181818, "deser_median_ns": 142.0, "deser_std_ns": 15.056632902391115, "deser_mad_ns": 8.5, "deser_cv": 0.10505738149464147, "deser_min_ns": 113.0, "deser_max_ns": 179.0, "deser_p5_ns": 116.35, "deser_p25_ns": 136.0, "deser_p50_ns": 142.0, "deser_p75_ns": 152.0, "deser_p95_ns": 165.0, "deser_p99_ns": 175.51999999999998, "deser_ci_low_ns": 140.15795454545454, "deser_ci_high_ns": 146.38636363636363, "total_mean_ns": 330.78409090909093, "total_median_ns": 331.0, "total_std_ns": 28.992051571706135, "total_mad_ns": 19.5, "total_cv": 0.08764645086777766, "total_min_ns": 262.0, "total_max_ns": 397.0, "total_p5_ns": 286.05, "total_p25_ns": 311.25, "total_p50_ns": 331.0, "total_p75_ns": 348.75, "total_p95_ns": 380.0, "total_p99_ns": 395.26, "total_ci_low_ns": 324.5335227272727, "total_ci_high_ns": 336.6934659090909, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.47490032909447}, {"serializer": "nanoserde", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.1.37", "avg_time_ser_ns": 9685.707865168539, "avg_time_deser_ns": 12309.08988764045, "avg_time_total_ns": 21994.79775280899, "median_size_bytes": 6598.0, "avg_ops_per_sec": 45465.29644139548, "min_ops_per_sec": 41476.5657403567, "max_ops_per_sec": 51276.79212388473, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 9685.707865168539, "ser_median_ns": 9704.0, "ser_std_ns": 440.90715375563, "ser_mad_ns": 286.0, "ser_cv": 0.04552141773150185, "ser_min_ns": 8527.0, "ser_max_ns": 10625.0, "ser_p5_ns": 8873.4, "ser_p25_ns": 9450.0, "ser_p50_ns": 9704.0, "ser_p75_ns": 10015.0, "ser_p95_ns": 10307.8, "ser_p99_ns": 10610.04, "ser_ci_low_ns": 9591.23202247191, "ser_ci_high_ns": 9773.783426966293, "deser_mean_ns": 12309.08988764045, "deser_median_ns": 12326.0, "deser_std_ns": 617.726966761821, "deser_mad_ns": 394.0, "deser_cv": 0.05018461741692863, "deser_min_ns": 10774.0, "deser_max_ns": 13888.0, "deser_p5_ns": 11274.6, "deser_p25_ns": 11932.0, "deser_p50_ns": 12326.0, "deser_p75_ns": 12697.0, "deser_p95_ns": 13252.999999999998, "deser_p99_ns": 13584.400000000001, "deser_ci_low_ns": 12172.583426966292, "deser_ci_high_ns": 12433.447191011237, "total_mean_ns": 21994.79775280899, "total_median_ns": 22108.0, "total_std_ns": 967.4105805491943, "total_mad_ns": 615.0, "total_cv": 0.04398360882521162, "total_min_ns": 19502.0, "total_max_ns": 24110.0, "total_p5_ns": 20262.8, "total_p25_ns": 21435.0, "total_p50_ns": 22108.0, "total_p75_ns": 22717.0, "total_p95_ns": 23241.8, "total_p99_ns": 23758.88, "total_ci_low_ns": 21798.73370786517, "total_ci_high_ns": 22197.392415730337, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.106788367923727}, {"serializer": "postcard", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "1.1.3", "avg_time_ser_ns": 4107.053191489362, "avg_time_deser_ns": 12625.22340425532, "avg_time_total_ns": 16732.27659574468, "median_size_bytes": 4593.0, "avg_ops_per_sec": 59764.730416560174, "min_ops_per_sec": 54182.9215431296, "max_ops_per_sec": 68310.67695880866, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 4107.053191489362, "ser_median_ns": 4143.5, "ser_std_ns": 194.05061788495505, "ser_mad_ns": 135.5, "ser_cv": 0.04724813846751896, "ser_min_ns": 3596.0, "ser_max_ns": 4534.0, "ser_p5_ns": 3759.0, "ser_p25_ns": 3972.75, "ser_p50_ns": 4143.5, "ser_p75_ns": 4239.5, "ser_p95_ns": 4409.9, "ser_p99_ns": 4490.29, "ser_ci_low_ns": 4067.989893617021, "ser_ci_high_ns": 4144.320744680851, "deser_mean_ns": 12625.22340425532, "deser_median_ns": 12682.0, "deser_std_ns": 753.1221059981741, "deser_mad_ns": 503.0, "deser_cv": 0.05965218055027328, "deser_min_ns": 10841.0, "deser_max_ns": 14208.0, "deser_p5_ns": 11215.55, "deser_p25_ns": 12163.0, "deser_p50_ns": 12682.0, "deser_p75_ns": 13092.5, "deser_p95_ns": 13800.699999999999, "deser_p99_ns": 13991.309999999998, "deser_ci_low_ns": 12475.977127659575, "deser_ci_high_ns": 12773.897074468085, "total_mean_ns": 16732.27659574468, "total_median_ns": 16886.5, "total_std_ns": 889.4635256897118, "total_mad_ns": 599.5, "total_cv": 0.05315854782820877, "total_min_ns": 14639.0, "total_max_ns": 18456.0, "total_p5_ns": 15132.1, "total_p25_ns": 16115.5, "total_p50_ns": 16886.5, "total_p75_ns": 17340.75, "total_p95_ns": 17995.2, "total_p99_ns": 18168.629999999997, "total_ci_low_ns": 16553.5289893617, "total_ci_high_ns": 16909.222074468085, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.958014078623217}, {"serializer": "prost", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.13.5", "avg_time_ser_ns": 8092.795454545455, "avg_time_deser_ns": 15750.78409090909, "avg_time_total_ns": 23843.579545454544, "median_size_bytes": 5102.0, "avg_ops_per_sec": 41940.01148584406, "min_ops_per_sec": 38602.58637328701, "max_ops_per_sec": 47114.252061248524, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 8092.795454545455, "ser_median_ns": 8116.5, "ser_std_ns": 326.2278013442538, "ser_mad_ns": 200.5, "ser_cv": 0.040310891727903794, "ser_min_ns": 7312.0, "ser_max_ns": 8849.0, "ser_p5_ns": 7482.7, "ser_p25_ns": 7918.5, "ser_p50_ns": 8116.5, "ser_p75_ns": 8318.25, "ser_p95_ns": 8588.35, "ser_p99_ns": 8759.39, "ser_ci_low_ns": 8025.554545454545, "ser_ci_high_ns": 8158.369034090909, "deser_mean_ns": 15750.78409090909, "deser_median_ns": 15867.5, "deser_std_ns": 733.7325681630005, "deser_mad_ns": 460.5, "deser_cv": 0.04658387569330534, "deser_min_ns": 13866.0, "deser_max_ns": 17437.0, "deser_p5_ns": 14525.4, "deser_p25_ns": 15261.25, "deser_p50_ns": 15867.5, "deser_p75_ns": 16180.25, "deser_p95_ns": 16870.1, "deser_p99_ns": 17376.97, "deser_ci_low_ns": 15601.446590909092, "deser_ci_high_ns": 15899.982670454545, "total_mean_ns": 23843.579545454544, "total_median_ns": 24099.5, "total_std_ns": 973.7349555781252, "total_mad_ns": 641.0, "total_cv": 0.04083845522111442, "total_min_ns": 21225.0, "total_max_ns": 25905.0, "total_p5_ns": 22188.35, "total_p25_ns": 23183.25, "total_p50_ns": 24099.5, "total_p75_ns": 24417.0, "total_p95_ns": 25110.2, "total_p99_ns": 25744.92, "total_ci_low_ns": 23639.988068181818, "total_ci_high_ns": 24040.60198863636, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.34396898237434}, {"serializer": "rmp-serde", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "1.3.1", "avg_time_ser_ns": 5482.020618556701, "avg_time_deser_ns": 28192.659793814433, "avg_time_total_ns": 33674.68041237113, "median_size_bytes": 13364.0, "avg_ops_per_sec": 29695.901720647897, "min_ops_per_sec": 26005.77328166853, "max_ops_per_sec": 34944.263899080965, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 5482.020618556701, "ser_median_ns": 5452.0, "ser_std_ns": 293.2587374153526, "ser_mad_ns": 184.0, "ser_cv": 0.053494643274902776, "ser_min_ns": 4858.0, "ser_max_ns": 6106.0, "ser_p5_ns": 5037.6, "ser_p25_ns": 5309.0, "ser_p50_ns": 5452.0, "ser_p75_ns": 5648.0, "ser_p95_ns": 6044.4, "ser_p99_ns": 6096.4, "ser_ci_low_ns": 5429.007474226803, "ser_ci_high_ns": 5540.997680412371, "deser_mean_ns": 28192.659793814433, "deser_median_ns": 28503.0, "deser_std_ns": 2148.534344843198, "deser_mad_ns": 1488.0, "deser_cv": 0.07620899768082876, "deser_min_ns": 23462.0, "deser_max_ns": 32860.0, "deser_p5_ns": 24667.4, "deser_p25_ns": 26540.0, "deser_p50_ns": 28503.0, "deser_p75_ns": 29686.0, "deser_p95_ns": 31420.999999999996, "deser_p99_ns": 32368.479999999996, "deser_ci_low_ns": 27773.690721649484, "deser_ci_high_ns": 28615.576546391752, "total_mean_ns": 33674.68041237113, "total_median_ns": 33771.0, "total_std_ns": 2273.9232779236772, "total_mad_ns": 1790.0, "total_cv": 0.06752620218151503, "total_min_ns": 28617.0, "total_max_ns": 38453.0, "total_p5_ns": 29884.8, "total_p25_ns": 31981.0, "total_p50_ns": 33771.0, "total_p75_ns": 35441.0, "total_p95_ns": 36938.399999999994, "total_p99_ns": 38201.479999999996, "total_ci_low_ns": 33223.508505154634, "total_ci_high_ns": 34127.055670103095, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.033539080834665}, {"serializer": "serde_avro_fast", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "2.1.0", "avg_time_ser_ns": 10547.944444444445, "avg_time_deser_ns": 18050.722222222223, "avg_time_total_ns": 28598.666666666668, "median_size_bytes": 4493.0, "avg_ops_per_sec": 34966.66511259266, "min_ops_per_sec": 32173.996975644284, "max_ops_per_sec": 38205.85313670054, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 10547.944444444445, "ser_median_ns": 10652.5, "ser_std_ns": 373.9461104331944, "ser_mad_ns": 212.5, "ser_cv": 0.03545203640413087, "ser_min_ns": 9588.0, "ser_max_ns": 11285.0, "ser_p5_ns": 9864.8, "ser_p25_ns": 10291.5, "ser_p50_ns": 10652.5, "ser_p75_ns": 10842.0, "ser_p95_ns": 11021.949999999999, "ser_p99_ns": 11151.5, "ser_ci_low_ns": 10472.996111111112, "ser_ci_high_ns": 10622.4425, "deser_mean_ns": 18050.722222222223, "deser_median_ns": 18181.5, "deser_std_ns": 758.285840797886, "deser_mad_ns": 441.5, "deser_cv": 0.04200861502729022, "deser_min_ns": 16413.0, "deser_max_ns": 19796.0, "deser_p5_ns": 16801.4, "deser_p25_ns": 17417.25, "deser_p50_ns": 18181.5, "deser_p75_ns": 18495.0, "deser_p95_ns": 19358.8, "deser_p99_ns": 19724.8, "deser_ci_low_ns": 17900.17888888889, "deser_ci_high_ns": 18204.7025, "total_mean_ns": 28598.666666666668, "total_median_ns": 28820.5, "total_std_ns": 1073.8160556391, "total_mad_ns": 698.0, "total_cv": 0.037547766410057574, "total_min_ns": 26174.0, "total_max_ns": 31081.0, "total_p5_ns": 26679.25, "total_p25_ns": 27828.25, "total_p50_ns": 28820.5, "total_p75_ns": 29319.25, "total_p95_ns": 30116.7, "total_p99_ns": 30654.69, "total_ci_low_ns": 28375.903333333335, "total_ci_high_ns": 28819.666111111113, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.652374938844694}, {"serializer": "serde_json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "1.0.150", "avg_time_ser_ns": 16029.537634408602, "avg_time_deser_ns": 43193.23655913978, "avg_time_total_ns": 59222.77419354839, "median_size_bytes": 18070.0, "avg_ops_per_sec": 16885.396093264033, "min_ops_per_sec": 14874.975828164279, "max_ops_per_sec": 19414.836818296542, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 16029.537634408602, "ser_median_ns": 16090.0, "ser_std_ns": 833.9872347988227, "ser_mad_ns": 534.0, "ser_cv": 0.05202815288998771, "ser_min_ns": 13909.0, "ser_max_ns": 18386.0, "ser_p5_ns": 14744.2, "ser_p25_ns": 15431.0, "ser_p50_ns": 16090.0, "ser_p75_ns": 16463.0, "ser_p95_ns": 17303.399999999998, "ser_p99_ns": 18184.52, "ser_ci_low_ns": 15858.501075268818, "ser_ci_high_ns": 16200.35376344086, "deser_mean_ns": 43193.23655913978, "deser_median_ns": 43430.0, "deser_std_ns": 2745.1925266998855, "deser_mad_ns": 2214.0, "deser_cv": 0.06355607371402218, "deser_min_ns": 37273.0, "deser_max_ns": 51393.0, "deser_p5_ns": 38472.4, "deser_p25_ns": 41073.0, "deser_p50_ns": 43430.0, "deser_p75_ns": 45239.0, "deser_p95_ns": 46412.6, "deser_p99_ns": 48500.52, "deser_ci_low_ns": 42659.39731182796, "deser_ci_high_ns": 43778.894892473116, "total_mean_ns": 59222.77419354839, "total_median_ns": 59769.0, "total_std_ns": 3200.2948917419153, "total_mad_ns": 2279.0, "total_cv": 0.05403824686231178, "total_min_ns": 51507.0, "total_max_ns": 67227.0, "total_p5_ns": 54041.4, "total_p25_ns": 57046.0, "total_p50_ns": 59769.0, "total_p75_ns": 61641.0, "total_p95_ns": 63257.2, "total_p99_ns": 66480.88, "total_ci_low_ns": 58581.429569892476, "total_ci_high_ns": 59865.95430107527, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.36868257489439}, {"serializer": "bitcode", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.6.9", "avg_time_ser_ns": 52738.79347826087, "avg_time_deser_ns": 41576.065217391304, "avg_time_total_ns": 94314.85869565218, "median_size_bytes": 5264.0, "avg_ops_per_sec": 10602.78320754245, "min_ops_per_sec": 9882.88777980926, "max_ops_per_sec": 11662.895663735393, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 52738.79347826087, "ser_median_ns": 53220.0, "ser_std_ns": 2041.5635870471924, "ser_mad_ns": 1239.5, "ser_cv": 0.03871085120460203, "ser_min_ns": 48199.0, "ser_max_ns": 57974.0, "ser_p5_ns": 48685.75, "ser_p25_ns": 51350.5, "ser_p50_ns": 53220.0, "ser_p75_ns": 54283.0, "ser_p95_ns": 55132.9, "ser_p99_ns": 56116.69000000001, "ser_ci_low_ns": 52315.40190217391, "ser_ci_high_ns": 53133.625271739125, "deser_mean_ns": 41576.065217391304, "deser_median_ns": 42020.0, "deser_std_ns": 1743.5634081780088, "deser_mad_ns": 882.5, "deser_cv": 0.041936710438117045, "deser_min_ns": 37368.0, "deser_max_ns": 46218.0, "deser_p5_ns": 38345.65, "deser_p25_ns": 40478.0, "deser_p50_ns": 42020.0, "deser_p75_ns": 42721.75, "deser_p95_ns": 43792.6, "deser_p99_ns": 45446.32, "deser_ci_low_ns": 41212.30597826087, "deser_ci_high_ns": 41931.628532608695, "total_mean_ns": 94314.85869565218, "total_median_ns": 95469.0, "total_std_ns": 3501.904726870422, "total_mad_ns": 1783.5, "total_cv": 0.03712993663247525, "total_min_ns": 85742.0, "total_max_ns": 101185.0, "total_p5_ns": 87575.85, "total_p25_ns": 92170.5, "total_p50_ns": 95469.0, "total_p75_ns": 96830.0, "total_p95_ns": 98137.9, "total_p99_ns": 99478.75, "total_ci_low_ns": 93574.22934782608, "total_ci_high_ns": 95021.46902173913, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 32.441269823433316}, {"serializer": "minicbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.25.1", "avg_time_ser_ns": 7666.471910112359, "avg_time_deser_ns": 16085.370786516854, "avg_time_total_ns": 23751.842696629214, "median_size_bytes": 5264.0, "avg_ops_per_sec": 42101.99658075021, "min_ops_per_sec": 39067.078173223425, "max_ops_per_sec": 46347.79384501298, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 7666.471910112359, "ser_median_ns": 7670.0, "ser_std_ns": 260.0032381742249, "ser_mad_ns": 169.0, "ser_cv": 0.033914327375447764, "ser_min_ns": 7043.0, "ser_max_ns": 8233.0, "ser_p5_ns": 7176.2, "ser_p25_ns": 7517.0, "ser_p50_ns": 7670.0, "ser_p75_ns": 7853.0, "ser_p95_ns": 8068.0, "ser_p99_ns": 8203.08, "ser_ci_low_ns": 7614.344382022472, "ser_ci_high_ns": 7722.483426966292, "deser_mean_ns": 16085.370786516854, "deser_median_ns": 16129.0, "deser_std_ns": 777.0417003847826, "deser_mad_ns": 441.0, "deser_cv": 0.048307353973842976, "deser_min_ns": 14431.0, "deser_max_ns": 18115.0, "deser_p5_ns": 14772.2, "deser_p25_ns": 15575.0, "deser_p50_ns": 16129.0, "deser_p75_ns": 16565.0, "deser_p95_ns": 17331.399999999998, "deser_p99_ns": 17845.72, "deser_ci_low_ns": 15919.783146067415, "deser_ci_high_ns": 16253.434550561798, "total_mean_ns": 23751.842696629214, "total_median_ns": 23876.0, "total_std_ns": 943.0678407448698, "total_mad_ns": 581.0, "total_cv": 0.03970503900645599, "total_min_ns": 21576.0, "total_max_ns": 25597.0, "total_p5_ns": 22081.4, "total_p25_ns": 23135.0, "total_p50_ns": 23876.0, "total_p75_ns": 24381.0, "total_p95_ns": 25159.0, "total_p99_ns": 25404.280000000002, "total_ci_low_ns": 23557.049719101124, "total_ci_high_ns": 23933.545505617978, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.570245581665315}, {"serializer": "flexbuffers", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "2.0.0", "avg_time_ser_ns": 79319.73913043478, "avg_time_deser_ns": 50375.641304347824, "avg_time_total_ns": 129695.38043478261, "median_size_bytes": 22660.0, "avg_ops_per_sec": 7710.374854120965, "min_ops_per_sec": 7154.918290833119, "max_ops_per_sec": 8535.409144837358, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 79319.73913043478, "ser_median_ns": 79529.5, "ser_std_ns": 3075.455405818341, "ser_mad_ns": 1719.5, "ser_cv": 0.03877288855881142, "ser_min_ns": 72335.0, "ser_max_ns": 87099.0, "ser_p5_ns": 73365.0, "ser_p25_ns": 77855.75, "ser_p50_ns": 79529.5, "ser_p75_ns": 81229.5, "ser_p95_ns": 84145.3, "ser_p99_ns": 85459.18000000001, "ser_ci_low_ns": 78671.89945652174, "ser_ci_high_ns": 79950.8714673913, "deser_mean_ns": 50375.641304347824, "deser_median_ns": 50135.0, "deser_std_ns": 2744.625908100785, "deser_mad_ns": 2004.0, "deser_cv": 0.05448319539038606, "deser_min_ns": 43375.0, "deser_max_ns": 56223.0, "deser_p5_ns": 45264.1, "deser_p25_ns": 48733.75, "deser_p50_ns": 50135.0, "deser_p75_ns": 52601.25, "deser_p95_ns": 54093.15, "deser_p99_ns": 55952.73, "deser_ci_low_ns": 49818.357065217395, "deser_ci_high_ns": 50939.08505434783, "total_mean_ns": 129695.38043478261, "total_median_ns": 130093.0, "total_std_ns": 5206.952686768947, "total_mad_ns": 3404.5, "total_cv": 0.04014755706266089, "total_min_ns": 117159.0, "total_max_ns": 139764.0, "total_p5_ns": 119463.9, "total_p25_ns": 126872.5, "total_p50_ns": 130093.0, "total_p75_ns": 133496.75, "total_p95_ns": 136455.6, "total_p99_ns": 139408.19, "total_ci_low_ns": 128646.84076086957, "total_ci_high_ns": 130768.83858695652, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 31.35565643327987}, {"serializer": "bson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "2.15.0", "avg_time_ser_ns": 23225.483870967742, "avg_time_deser_ns": 55741.31182795699, "avg_time_total_ns": 78966.79569892473, "median_size_bytes": 15898.0, "avg_ops_per_sec": 12663.550434700197, "min_ops_per_sec": 11564.303308547176, "max_ops_per_sec": 13978.389409972184, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 23225.483870967742, "ser_median_ns": 23289.0, "ser_std_ns": 936.7597902495233, "ser_mad_ns": 572.0, "ser_cv": 0.04033327337565136, "ser_min_ns": 20971.0, "ser_max_ns": 25356.0, "ser_p5_ns": 21489.0, "ser_p25_ns": 22721.0, "ser_p50_ns": 23289.0, "ser_p75_ns": 23861.0, "ser_p95_ns": 24475.2, "ser_p99_ns": 25280.56, "ser_ci_low_ns": 23036.271505376346, "ser_ci_high_ns": 23406.77822580645, "deser_mean_ns": 55741.31182795699, "deser_median_ns": 56122.0, "deser_std_ns": 2817.48022630496, "deser_mad_ns": 1969.0, "deser_cv": 0.05054563902265135, "deser_min_ns": 49308.0, "deser_max_ns": 63227.0, "deser_p5_ns": 51132.2, "deser_p25_ns": 53591.0, "deser_p50_ns": 56122.0, "deser_p75_ns": 57723.0, "deser_p95_ns": 59857.6, "deser_p99_ns": 61917.84, "deser_ci_low_ns": 55144.66048387097, "deser_ci_high_ns": 56290.38037634408, "total_mean_ns": 78966.79569892473, "total_median_ns": 79905.0, "total_std_ns": 3462.0995783506983, "total_mad_ns": 2386.0, "total_cv": 0.04384247262039836, "total_min_ns": 71539.0, "total_max_ns": 86473.0, "total_p5_ns": 72797.0, "total_p25_ns": 76387.0, "total_p50_ns": 79905.0, "total_p75_ns": 81406.0, "total_p95_ns": 83660.2, "total_p99_ns": 86328.56, "total_ci_low_ns": 78282.74059139786, "total_ci_high_ns": 79635.96102150538, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.664603796197657}, {"serializer": "speedy", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.8.7", "avg_time_ser_ns": 1703.471264367816, "avg_time_deser_ns": 9714.0, "avg_time_total_ns": 11417.471264367816, "median_size_bytes": 5798.0, "avg_ops_per_sec": 87585.06825594975, "min_ops_per_sec": 77930.17456359102, "max_ops_per_sec": 99108.02775024777, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 1703.471264367816, "ser_median_ns": 1706.0, "ser_std_ns": 84.06376858027285, "ser_mad_ns": 51.0, "ser_cv": 0.04934850991541098, "ser_min_ns": 1483.0, "ser_max_ns": 1918.0, "ser_p5_ns": 1559.0, "ser_p25_ns": 1652.0, "ser_p50_ns": 1706.0, "ser_p75_ns": 1752.5, "ser_p95_ns": 1842.4, "ser_p99_ns": 1916.28, "ser_ci_low_ns": 1685.7813218390804, "ser_ci_high_ns": 1721.7270114942528, "deser_mean_ns": 9714.0, "deser_median_ns": 9795.0, "deser_std_ns": 558.1907234278713, "deser_mad_ns": 343.0, "deser_cv": 0.05746249983815846, "deser_min_ns": 8561.0, "deser_max_ns": 11148.0, "deser_p5_ns": 8875.2, "deser_p25_ns": 9348.0, "deser_p50_ns": 9795.0, "deser_p75_ns": 10015.5, "deser_p95_ns": 10694.6, "deser_p99_ns": 11056.84, "deser_ci_low_ns": 9600.738793103448, "deser_ci_high_ns": 9832.810057471264, "total_mean_ns": 11417.471264367816, "total_median_ns": 11468.0, "total_std_ns": 590.4923416607625, "total_mad_ns": 327.0, "total_cv": 0.05171831204897348, "total_min_ns": 10090.0, "total_max_ns": 12832.0, "total_p5_ns": 10504.7, "total_p25_ns": 11028.5, "total_p50_ns": 11468.0, "total_p75_ns": 11756.0, "total_p95_ns": 12457.4, "total_p99_ns": 12823.4, "total_ci_low_ns": 11298.00775862069, "total_ci_high_ns": 11541.76408045977, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "sonic-rs", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.3.17", "avg_time_ser_ns": 11593.021739130434, "avg_time_deser_ns": 29585.239130434784, "avg_time_total_ns": 41178.260869565216, "median_size_bytes": 18070.0, "avg_ops_per_sec": 24284.658430999894, "min_ops_per_sec": 22049.25804246687, "max_ops_per_sec": 26826.1930949379, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 11593.021739130434, "ser_median_ns": 11591.5, "ser_std_ns": 568.1872655674238, "ser_mad_ns": 359.0, "ser_cv": 0.049011144665553105, "ser_min_ns": 10465.0, "ser_max_ns": 12945.0, "ser_p5_ns": 10694.95, "ser_p25_ns": 11227.25, "ser_p50_ns": 11591.5, "ser_p75_ns": 11915.0, "ser_p95_ns": 12582.400000000001, "ser_p99_ns": 12899.5, "ser_ci_low_ns": 11476.260326086956, "ser_ci_high_ns": 11709.787771739131, "deser_mean_ns": 29585.239130434784, "deser_median_ns": 29877.5, "deser_std_ns": 1546.8710379738552, "deser_mad_ns": 907.0, "deser_cv": 0.052285230183675126, "deser_min_ns": 26110.0, "deser_max_ns": 33414.0, "deser_p5_ns": 26954.75, "deser_p25_ns": 28547.25, "deser_p50_ns": 29877.5, "deser_p75_ns": 30567.0, "deser_p95_ns": 31864.35, "deser_p99_ns": 33195.6, "deser_ci_low_ns": 29280.79891304348, "deser_ci_high_ns": 29888.572826086955, "total_mean_ns": 41178.260869565216, "total_median_ns": 41365.5, "total_std_ns": 1869.0937033382183, "total_mad_ns": 1449.5, "total_cv": 0.04539030216110128, "total_min_ns": 37277.0, "total_max_ns": 45353.0, "total_p5_ns": 37609.55, "total_p25_ns": 39581.0, "total_p50_ns": 41365.5, "total_p75_ns": 42675.0, "total_p95_ns": 43493.85, "total_p99_ns": 44655.94, "total_ci_low_ns": 40803.1714673913, "total_ci_high_ns": 41566.067663043475, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.137788208523602}, {"serializer": "ciborium", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.2.2", "avg_time_ser_ns": 11335.597826086956, "avg_time_deser_ns": 50708.29347826087, "avg_time_total_ns": 62043.891304347824, "median_size_bytes": 13364.0, "avg_ops_per_sec": 16117.622202234814, "min_ops_per_sec": 15003.525828569715, "max_ops_per_sec": 17762.620341752816, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 11335.597826086956, "ser_median_ns": 11400.0, "ser_std_ns": 500.22612600510917, "ser_mad_ns": 317.5, "ser_cv": 0.04412878206157981, "ser_min_ns": 10186.0, "ser_max_ns": 12584.0, "ser_p5_ns": 10497.05, "ser_p25_ns": 10955.25, "ser_p50_ns": 11400.0, "ser_p75_ns": 11675.0, "ser_p95_ns": 11997.05, "ser_p99_ns": 12468.43, "ser_ci_low_ns": 11235.301630434782, "ser_ci_high_ns": 11436.274456521738, "deser_mean_ns": 50708.29347826087, "deser_median_ns": 51426.5, "deser_std_ns": 2169.6191367699353, "deser_mad_ns": 1064.0, "deser_cv": 0.04278627790343747, "deser_min_ns": 45878.0, "deser_max_ns": 54916.0, "deser_p5_ns": 46931.75, "deser_p25_ns": 49106.25, "deser_p50_ns": 51426.5, "deser_p75_ns": 52093.75, "deser_p95_ns": 53922.2, "deser_p99_ns": 54713.07, "deser_ci_low_ns": 50268.11331521739, "deser_ci_high_ns": 51124.18505434783, "total_mean_ns": 62043.891304347824, "total_median_ns": 62882.0, "total_std_ns": 2583.995430270692, "total_mad_ns": 1275.0, "total_cv": 0.041647862117404205, "total_min_ns": 56298.0, "total_max_ns": 66651.0, "total_p5_ns": 57457.6, "total_p25_ns": 59913.75, "total_p50_ns": 62882.0, "total_p75_ns": 63743.25, "total_p95_ns": 65650.95, "total_p99_ns": 66459.9, "total_ci_low_ns": 61514.40380434783, "total_ci_high_ns": 62553.48885869565, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.56098178446769}, {"serializer": "bincode", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "2.0.1", "avg_time_ser_ns": 3249.9176470588236, "avg_time_deser_ns": 12444.635294117646, "avg_time_total_ns": 15694.552941176471, "median_size_bytes": 5178.0, "avg_ops_per_sec": 63716.37368378838, "min_ops_per_sec": 55903.39892665474, "max_ops_per_sec": 72296.12492770387, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 3249.9176470588236, "ser_median_ns": 3263.0, "ser_std_ns": 142.97404124731256, "ser_mad_ns": 84.0, "ser_cv": 0.043993127449461406, "ser_min_ns": 2945.0, "ser_max_ns": 3565.0, "ser_p5_ns": 3008.4, "ser_p25_ns": 3173.0, "ser_p50_ns": 3263.0, "ser_p75_ns": 3337.0, "ser_p95_ns": 3455.4, "ser_p99_ns": 3561.64, "ser_ci_low_ns": 3220.4817647058826, "ser_ci_high_ns": 3281.161176470588, "deser_mean_ns": 12444.635294117646, "deser_median_ns": 12591.0, "deser_std_ns": 684.4342614621986, "deser_mad_ns": 386.0, "deser_cv": 0.05499833826273063, "deser_min_ns": 10825.0, "deser_max_ns": 14327.0, "deser_p5_ns": 11334.8, "deser_p25_ns": 11916.0, "deser_p50_ns": 12591.0, "deser_p75_ns": 12875.0, "deser_p95_ns": 13602.0, "deser_p99_ns": 14085.079999999998, "deser_ci_low_ns": 12297.830588235294, "deser_ci_high_ns": 12589.638235294116, "total_mean_ns": 15694.552941176471, "total_median_ns": 15825.0, "total_std_ns": 781.2218529159238, "total_mad_ns": 463.0, "total_cv": 0.04977662351033257, "total_min_ns": 13832.0, "total_max_ns": 17888.0, "total_p5_ns": 14296.4, "total_p25_ns": 15149.0, "total_p50_ns": 15825.0, "total_p75_ns": 16212.0, "total_p95_ns": 16944.0, "total_p99_ns": 17431.879999999997, "total_ci_low_ns": 15534.266764705882, "total_ci_high_ns": 15860.418529411765, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.159291692112709}, {"serializer": "simd-json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.14.3", "avg_time_ser_ns": 15899.822916666666, "avg_time_deser_ns": 67446.59375, "avg_time_total_ns": 83346.41666666667, "median_size_bytes": 18070.0, "avg_ops_per_sec": 11998.116295741567, "min_ops_per_sec": 10797.387032338174, "max_ops_per_sec": 13592.496941688189, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 15899.822916666666, "ser_median_ns": 15927.5, "ser_std_ns": 891.9787228379465, "ser_mad_ns": 521.0, "ser_cv": 0.05609991554704348, "ser_min_ns": 13605.0, "ser_max_ns": 18008.0, "ser_p5_ns": 14584.0, "ser_p25_ns": 15193.0, "ser_p50_ns": 15927.5, "ser_p75_ns": 16366.75, "ser_p95_ns": 17474.0, "ser_p99_ns": 17962.4, "ser_ci_low_ns": 15725.115624999999, "ser_ci_high_ns": 16080.736458333333, "deser_mean_ns": 67446.59375, "deser_median_ns": 67578.0, "deser_std_ns": 3611.5710609041776, "deser_mad_ns": 2134.5, "deser_cv": 0.05354712313999071, "deser_min_ns": 59092.0, "deser_max_ns": 75844.0, "deser_p5_ns": 61260.5, "deser_p25_ns": 65470.75, "deser_p50_ns": 67578.0, "deser_p75_ns": 69710.25, "deser_p95_ns": 73535.25, "deser_p99_ns": 75755.65, "deser_ci_low_ns": 66742.65963541667, "deser_ci_high_ns": 68187.87421875, "total_mean_ns": 83346.41666666667, "total_median_ns": 83792.5, "total_std_ns": 4115.117080042333, "total_mad_ns": 2518.0, "total_cv": 0.04937365329694038, "total_min_ns": 73570.0, "total_max_ns": 92615.0, "total_p5_ns": 76308.25, "total_p25_ns": 80506.0, "total_p50_ns": 83792.5, "total_p75_ns": 86006.5, "total_p95_ns": 89778.5, "total_p99_ns": 91930.05, "total_ci_low_ns": 82486.76770833334, "total_ci_high_ns": 84136.68125000001, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.805805507327307}, {"serializer": "rmp-serde", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "1.3.1", "avg_time_ser_ns": 5621.215909090909, "avg_time_deser_ns": 28988.886363636364, "avg_time_total_ns": 34610.10227272727, "median_size_bytes": 13364.0, "avg_ops_per_sec": 28893.298035354233, "min_ops_per_sec": 25564.986194907455, "max_ops_per_sec": 32870.9486555782, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 5621.215909090909, "ser_median_ns": 5593.0, "ser_std_ns": 207.72718895548547, "ser_mad_ns": 126.0, "ser_cv": 0.03695413809306609, "ser_min_ns": 5259.0, "ser_max_ns": 6198.0, "ser_p5_ns": 5329.7, "ser_p25_ns": 5479.75, "ser_p50_ns": 5593.0, "ser_p75_ns": 5729.75, "ser_p95_ns": 6001.3, "ser_p99_ns": 6164.94, "ser_ci_low_ns": 5576.361931818182, "ser_ci_high_ns": 5665.489772727273, "deser_mean_ns": 28988.886363636364, "deser_median_ns": 29425.5, "deser_std_ns": 1717.7159482558145, "deser_mad_ns": 956.0, "deser_cv": 0.059254292376354135, "deser_min_ns": 24500.0, "deser_max_ns": 33389.0, "deser_p5_ns": 26324.9, "deser_p25_ns": 27612.0, "deser_p50_ns": 29425.5, "deser_p75_ns": 29968.25, "deser_p95_ns": 31870.84999999999, "deser_p99_ns": 33205.43, "deser_ci_low_ns": 28632.38465909091, "deser_ci_high_ns": 29358.067045454543, "total_mean_ns": 34610.10227272727, "total_median_ns": 34940.0, "total_std_ns": 1727.338255580006, "total_mad_ns": 1027.5, "total_cv": 0.049908499026342, "total_min_ns": 30422.0, "total_max_ns": 39116.0, "total_p5_ns": 31722.0, "total_p25_ns": 33456.25, "total_p50_ns": 34940.0, "total_p75_ns": 35718.25, "total_p95_ns": 37428.49999999999, "total_p99_ns": 38825.42, "total_ci_low_ns": 34239.22869318182, "total_ci_high_ns": 34958.42471590909, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.405560256148473}, {"serializer": "postcard", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "1.1.3", "avg_time_ser_ns": 4244.209302325581, "avg_time_deser_ns": 12926.837209302326, "avg_time_total_ns": 17171.04651162791, "median_size_bytes": 4593.0, "avg_ops_per_sec": 58237.568649226996, "min_ops_per_sec": 55383.25210456358, "max_ops_per_sec": 61504.39756442585, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 4244.209302325581, "ser_median_ns": 4228.0, "ser_std_ns": 105.12402941053735, "ser_mad_ns": 66.5, "ser_cv": 0.024768813675832495, "ser_min_ns": 4016.0, "ser_max_ns": 4484.0, "ser_p5_ns": 4075.5, "ser_p25_ns": 4194.25, "ser_p50_ns": 4228.0, "ser_p75_ns": 4301.75, "ser_p95_ns": 4418.0, "ser_p99_ns": 4473.8, "ser_ci_low_ns": 4223.56511627907, "ser_ci_high_ns": 4267.489244186047, "deser_mean_ns": 12926.837209302326, "deser_median_ns": 12873.5, "deser_std_ns": 338.573577387636, "deser_mad_ns": 211.0, "deser_cv": 0.026191524802679028, "deser_min_ns": 12206.0, "deser_max_ns": 13733.0, "deser_p5_ns": 12471.25, "deser_p25_ns": 12690.5, "deser_p50_ns": 12873.5, "deser_p75_ns": 13121.25, "deser_p95_ns": 13592.5, "deser_p99_ns": 13722.8, "deser_ci_low_ns": 12855.615697674419, "deser_ci_high_ns": 13000.186046511628, "total_mean_ns": 17171.04651162791, "total_median_ns": 17146.0, "total_std_ns": 373.2311035199866, "total_mad_ns": 251.5, "total_cv": 0.021736072013271966, "total_min_ns": 16259.0, "total_max_ns": 18056.0, "total_p5_ns": 16622.75, "total_p25_ns": 16929.25, "total_p50_ns": 17146.0, "total_p75_ns": 17406.0, "total_p95_ns": 17907.75, "total_p99_ns": 18006.7, "total_ci_low_ns": 17095.543895348837, "total_ci_high_ns": 17251.949999999997, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.10990697199614}, {"serializer": "bitcode", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.6.9", "avg_time_ser_ns": 54094.604395604394, "avg_time_deser_ns": 42582.395604395606, "avg_time_total_ns": 96677.0, "median_size_bytes": 5264.0, "avg_ops_per_sec": 10343.721878006145, "min_ops_per_sec": 10086.033868901732, "max_ops_per_sec": 10695.41594472609, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 54094.604395604394, "ser_median_ns": 54137.0, "ser_std_ns": 802.6713161426921, "ser_mad_ns": 585.0, "ser_cv": 0.014838287942224334, "ser_min_ns": 52042.0, "ser_max_ns": 56133.0, "ser_p5_ns": 52863.5, "ser_p25_ns": 53441.0, "ser_p50_ns": 54137.0, "ser_p75_ns": 54604.0, "ser_p95_ns": 55344.5, "ser_p99_ns": 56122.2, "ser_ci_low_ns": 53919.45082417582, "ser_ci_high_ns": 54253.57032967033, "deser_mean_ns": 42582.395604395606, "deser_median_ns": 42616.0, "deser_std_ns": 705.3194371523504, "deser_mad_ns": 426.0, "deser_cv": 0.016563639202101233, "deser_min_ns": 40957.0, "deser_max_ns": 44121.0, "deser_p5_ns": 41346.0, "deser_p25_ns": 42122.0, "deser_p50_ns": 42616.0, "deser_p75_ns": 43006.0, "deser_p95_ns": 43730.5, "deser_p99_ns": 44022.0, "deser_ci_low_ns": 42440.114285714284, "deser_ci_high_ns": 42725.8282967033, "total_mean_ns": 96677.0, "total_median_ns": 96811.0, "total_std_ns": 1225.7824439924077, "total_mad_ns": 843.0, "total_cv": 0.012679152683600108, "total_min_ns": 93498.0, "total_max_ns": 99147.0, "total_p5_ns": 94709.5, "total_p25_ns": 95788.0, "total_p50_ns": 96811.0, "total_p75_ns": 97537.0, "total_p95_ns": 98710.5, "total_p99_ns": 99071.4, "total_ci_low_ns": 96429.66126373627, "total_ci_high_ns": 96947.09368131869, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 94.3435335533387}, {"serializer": "prost", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.13.5", "avg_time_ser_ns": 8262.18888888889, "avg_time_deser_ns": 16063.555555555555, "avg_time_total_ns": 24325.744444444445, "median_size_bytes": 5102.0, "avg_ops_per_sec": 41108.71107290538, "min_ops_per_sec": 38744.67260751647, "max_ops_per_sec": 43299.415457891315, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 8262.18888888889, "ser_median_ns": 8264.5, "ser_std_ns": 184.48500407645236, "ser_mad_ns": 130.5, "ser_cv": 0.022328829146541353, "ser_min_ns": 7845.0, "ser_max_ns": 8606.0, "ser_p5_ns": 7880.25, "ser_p25_ns": 8172.0, "ser_p50_ns": 8264.5, "ser_p75_ns": 8407.5, "ser_p95_ns": 8511.75, "ser_p99_ns": 8598.88, "ser_ci_low_ns": 8223.731111111112, "ser_ci_high_ns": 8299.385833333334, "deser_mean_ns": 16063.555555555555, "deser_median_ns": 15925.0, "deser_std_ns": 473.4346201700194, "deser_mad_ns": 266.5, "deser_cv": 0.02947259207543767, "deser_min_ns": 14961.0, "deser_max_ns": 17370.0, "deser_p5_ns": 15480.45, "deser_p25_ns": 15750.5, "deser_p50_ns": 15925.0, "deser_p75_ns": 16341.5, "deser_p95_ns": 17015.0, "deser_p99_ns": 17341.52, "deser_ci_low_ns": 15965.419722222221, "deser_ci_high_ns": 16158.902777777777, "total_mean_ns": 24325.744444444445, "total_median_ns": 24229.5, "total_std_ns": 572.0901469215704, "total_mad_ns": 341.5, "total_cv": 0.02351788855745483, "total_min_ns": 23095.0, "total_max_ns": 25810.0, "total_p5_ns": 23529.45, "total_p25_ns": 23944.5, "total_p50_ns": 24229.5, "total_p75_ns": 24689.75, "total_p95_ns": 25426.85, "total_p99_ns": 25769.95, "total_ci_low_ns": 24207.813888888886, "total_ci_high_ns": 24440.645555555555, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.208978696823966}, {"serializer": "nanoserde", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.1.37", "avg_time_ser_ns": 9819.848837209302, "avg_time_deser_ns": 12580.011627906977, "avg_time_total_ns": 22399.86046511628, "median_size_bytes": 6598.0, "avg_ops_per_sec": 44643.13523547696, "min_ops_per_sec": 41993.868895141306, "max_ops_per_sec": 46761.74888940847, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 9819.848837209302, "ser_median_ns": 9813.0, "ser_std_ns": 255.3289236140828, "ser_mad_ns": 145.5, "ser_cv": 0.026001308965835836, "ser_min_ns": 9270.0, "ser_max_ns": 10379.0, "ser_p5_ns": 9414.75, "ser_p25_ns": 9670.0, "ser_p50_ns": 9813.0, "ser_p75_ns": 9961.75, "ser_p95_ns": 10291.0, "ser_p99_ns": 10342.45, "ser_ci_low_ns": 9765.708430232557, "ser_ci_high_ns": 9873.190406976744, "deser_mean_ns": 12580.011627906977, "deser_median_ns": 12514.5, "deser_std_ns": 384.0590179581333, "deser_mad_ns": 185.0, "deser_cv": 0.03052930548221058, "deser_min_ns": 11644.0, "deser_max_ns": 13584.0, "deser_p5_ns": 12084.25, "deser_p25_ns": 12365.5, "deser_p50_ns": 12514.5, "deser_p75_ns": 12796.5, "deser_p95_ns": 13307.0, "deser_p99_ns": 13516.85, "deser_ci_low_ns": 12503.737790697674, "deser_ci_high_ns": 12662.908139534884, "total_mean_ns": 22399.86046511628, "total_median_ns": 22345.0, "total_std_ns": 519.641056268441, "total_mad_ns": 309.5, "total_cv": 0.023198405948898108, "total_min_ns": 21385.0, "total_max_ns": 23813.0, "total_p5_ns": 21614.75, "total_p25_ns": 22087.5, "total_p50_ns": 22345.0, "total_p75_ns": 22735.0, "total_p95_ns": 23485.75, "total_p99_ns": 23577.550000000003, "total_ci_low_ns": 22289.38343023256, "total_ci_high_ns": 22515.265116279068, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.06814204347242}, {"serializer": "serde_avro_fast", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "2.1.0", "avg_time_ser_ns": 10804.260869565218, "avg_time_deser_ns": 18539.065217391304, "avg_time_total_ns": 29343.32608695652, "median_size_bytes": 4493.0, "avg_ops_per_sec": 34079.2995666743, "min_ops_per_sec": 32885.00115097504, "max_ops_per_sec": 35563.14235925886, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 10804.260869565218, "ser_median_ns": 10781.5, "ser_std_ns": 147.42708158967514, "ser_mad_ns": 90.0, "ser_cv": 0.013645272302241981, "ser_min_ns": 10512.0, "ser_max_ns": 11188.0, "ser_p5_ns": 10616.0, "ser_p25_ns": 10701.75, "ser_p50_ns": 10781.5, "ser_p75_ns": 10889.25, "ser_p95_ns": 11109.9, "ser_p99_ns": 11129.76, "ser_ci_low_ns": 10775.16277173913, "ser_ci_high_ns": 10833.548097826088, "deser_mean_ns": 18539.065217391304, "deser_median_ns": 18488.5, "deser_std_ns": 430.25647358591783, "deser_mad_ns": 251.0, "deser_cv": 0.023208099682517903, "deser_min_ns": 17343.0, "deser_max_ns": 19537.0, "deser_p5_ns": 17999.8, "deser_p25_ns": 18265.0, "deser_p50_ns": 18488.5, "deser_p75_ns": 18774.25, "deser_p95_ns": 19306.0, "deser_p99_ns": 19496.96, "deser_ci_low_ns": 18451.551630434784, "deser_ci_high_ns": 18624.815489130433, "total_mean_ns": 29343.32608695652, "total_median_ns": 29240.0, "total_std_ns": 498.90674124013344, "total_mad_ns": 292.0, "total_cv": 0.017002392290555765, "total_min_ns": 28119.0, "total_max_ns": 30409.0, "total_p5_ns": 28682.65, "total_p25_ns": 29042.75, "total_p50_ns": 29240.0, "total_p75_ns": 29696.75, "total_p95_ns": 30235.0, "total_p99_ns": 30394.44, "total_ci_low_ns": 29243.518206521738, "total_ci_high_ns": 29442.419293478262, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 43.89849818094826}, {"serializer": "sonic-rs", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.3.17", "avg_time_ser_ns": 11743.53488372093, "avg_time_deser_ns": 30143.488372093023, "avg_time_total_ns": 41887.023255813954, "median_size_bytes": 18070.0, "avg_ops_per_sec": 23873.74232570225, "min_ops_per_sec": 22878.059940517043, "max_ops_per_sec": 24935.168561739476, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 11743.53488372093, "ser_median_ns": 11717.5, "ser_std_ns": 343.34851776462176, "ser_mad_ns": 213.0, "ser_cv": 0.029237237438667366, "ser_min_ns": 11099.0, "ser_max_ns": 12531.0, "ser_p5_ns": 11194.25, "ser_p25_ns": 11504.25, "ser_p50_ns": 11717.5, "ser_p75_ns": 11922.75, "ser_p95_ns": 12365.0, "ser_p99_ns": 12522.5, "ser_ci_low_ns": 11668.301162790698, "ser_ci_high_ns": 11818.437209302325, "deser_mean_ns": 30143.488372093023, "deser_median_ns": 30142.0, "deser_std_ns": 600.2770094702073, "deser_mad_ns": 345.5, "deser_cv": 0.01991398613393221, "deser_min_ns": 28708.0, "deser_max_ns": 31665.0, "deser_p5_ns": 28970.25, "deser_p25_ns": 29794.25, "deser_p50_ns": 30142.0, "deser_p75_ns": 30484.25, "deser_p95_ns": 30991.0, "deser_p99_ns": 31503.5, "deser_ci_low_ns": 30014.974127906975, "deser_ci_high_ns": 30268.758139534883, "total_mean_ns": 41887.023255813954, "total_median_ns": 41953.0, "total_std_ns": 756.5229124751365, "total_mad_ns": 448.0, "total_cv": 0.018061033075921204, "total_min_ns": 40104.0, "total_max_ns": 43710.0, "total_p5_ns": 40626.5, "total_p25_ns": 41454.75, "total_p50_ns": 41953.0, "total_p75_ns": 42312.0, "total_p95_ns": 43092.75, "total_p99_ns": 43684.5, "total_ci_low_ns": 41717.50610465116, "total_ci_high_ns": 42046.45813953488, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 53.24240018283368}, {"serializer": "bincode", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "2.0.1", "avg_time_ser_ns": 3323.277777777778, "avg_time_deser_ns": 12977.388888888889, "avg_time_total_ns": 16300.666666666666, "median_size_bytes": 5178.0, "avg_ops_per_sec": 61347.184164246864, "min_ops_per_sec": 57149.388501543035, "max_ops_per_sec": 66675.55674089878, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 3323.277777777778, "ser_median_ns": 3323.5, "ser_std_ns": 103.54817885081731, "ser_mad_ns": 77.0, "ser_cv": 0.031158448307639905, "ser_min_ns": 3122.0, "ser_max_ns": 3551.0, "ser_p5_ns": 3169.55, "ser_p25_ns": 3246.25, "ser_p50_ns": 3323.5, "ser_p75_ns": 3388.0, "ser_p95_ns": 3502.95, "ser_p99_ns": 3550.11, "ser_ci_low_ns": 3301.0102777777774, "ser_ci_high_ns": 3344.902777777778, "deser_mean_ns": 12977.388888888889, "deser_median_ns": 12886.0, "deser_std_ns": 479.34941149658493, "deser_mad_ns": 278.5, "deser_cv": 0.03693727725975748, "deser_min_ns": 11690.0, "deser_max_ns": 14220.0, "deser_p5_ns": 12337.35, "deser_p25_ns": 12645.5, "deser_p50_ns": 12886.0, "deser_p75_ns": 13274.0, "deser_p95_ns": 13859.949999999999, "deser_p99_ns": 14046.45, "deser_ci_low_ns": 12876.30638888889, "deser_ci_high_ns": 13074.611388888889, "total_mean_ns": 16300.666666666666, "total_median_ns": 16266.5, "total_std_ns": 486.3448630783475, "total_mad_ns": 326.0, "total_cv": 0.02983588788260281, "total_min_ns": 14998.0, "total_max_ns": 17498.0, "total_p5_ns": 15556.4, "total_p25_ns": 15988.25, "total_p50_ns": 16266.5, "total_p75_ns": 16610.25, "total_p95_ns": 17174.85, "total_p99_ns": 17285.29, "total_ci_low_ns": 16198.499444444444, "total_ci_high_ns": 16403.619444444445, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.806168041377902}, {"serializer": "simd-json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.14.3", "avg_time_ser_ns": 16266.153846153846, "avg_time_deser_ns": 65909.06593406593, "avg_time_total_ns": 82175.21978021978, "median_size_bytes": 18070.0, "avg_ops_per_sec": 12169.118654924581, "min_ops_per_sec": 11448.59010612843, "max_ops_per_sec": 13026.26094205919, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 16266.153846153846, "ser_median_ns": 16179.0, "ser_std_ns": 445.67414411769806, "ser_mad_ns": 243.0, "ser_cv": 0.02739886443549643, "ser_min_ns": 15473.0, "ser_max_ns": 17393.0, "ser_p5_ns": 15685.0, "ser_p25_ns": 15981.0, "ser_p50_ns": 16179.0, "ser_p75_ns": 16497.0, "ser_p95_ns": 17185.5, "ser_p99_ns": 17288.6, "ser_ci_low_ns": 16176.723076923077, "ser_ci_high_ns": 16354.315659340658, "deser_mean_ns": 65909.06593406593, "deser_median_ns": 65531.0, "deser_std_ns": 2325.8911496561573, "deser_mad_ns": 1140.0, "deser_cv": 0.035289396332561146, "deser_min_ns": 60589.0, "deser_max_ns": 70951.0, "deser_p5_ns": 62507.5, "deser_p25_ns": 64600.0, "deser_p50_ns": 65531.0, "deser_p75_ns": 66999.0, "deser_p95_ns": 70272.5, "deser_p99_ns": 70857.4, "deser_ci_low_ns": 65446.671428571426, "deser_ci_high_ns": 66383.67527472528, "total_mean_ns": 82175.21978021978, "total_median_ns": 81739.0, "total_std_ns": 2372.2621262424595, "total_mad_ns": 1047.0, "total_cv": 0.02886833929482817, "total_min_ns": 76768.0, "total_max_ns": 87347.0, "total_p5_ns": 78798.5, "total_p25_ns": 80789.0, "total_p50_ns": 81739.0, "total_p75_ns": 83228.5, "total_p95_ns": 86485.5, "total_p99_ns": 87204.8, "total_ci_low_ns": 81691.59423076923, "total_ci_high_ns": 82661.26318681319, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 41.04608899648486}, {"serializer": "speedy", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.8.7", "avg_time_ser_ns": 1728.6744186046512, "avg_time_deser_ns": 9923.60465116279, "avg_time_total_ns": 11652.279069767443, "median_size_bytes": 5798.0, "avg_ops_per_sec": 85820.12102632881, "min_ops_per_sec": 81300.81300813008, "max_ops_per_sec": 89960.41741633682, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 1728.6744186046512, "ser_median_ns": 1732.0, "ser_std_ns": 76.09660143303381, "ser_mad_ns": 54.5, "ser_cv": 0.04402020450702183, "ser_min_ns": 1565.0, "ser_max_ns": 1901.0, "ser_p5_ns": 1607.25, "ser_p25_ns": 1673.5, "ser_p50_ns": 1732.0, "ser_p75_ns": 1782.75, "ser_p95_ns": 1841.75, "ser_p99_ns": 1888.25, "ser_ci_low_ns": 1713.8212209302326, "ser_ci_high_ns": 1743.7101744186045, "deser_mean_ns": 9923.60465116279, "deser_median_ns": 9913.5, "deser_std_ns": 234.99688503916852, "deser_mad_ns": 170.5, "deser_cv": 0.02368059725269617, "deser_min_ns": 9466.0, "deser_max_ns": 10658.0, "deser_p5_ns": 9574.25, "deser_p25_ns": 9737.5, "deser_p50_ns": 9913.5, "deser_p75_ns": 10064.0, "deser_p95_ns": 10342.25, "deser_p99_ns": 10493.95, "deser_ci_low_ns": 9873.309011627907, "deser_ci_high_ns": 9972.991279069767, "total_mean_ns": 11652.279069767443, "total_median_ns": 11646.0, "total_std_ns": 258.72468452063276, "total_mad_ns": 170.5, "total_cv": 0.022203783738059445, "total_min_ns": 11116.0, "total_max_ns": 12300.0, "total_p5_ns": 11243.0, "total_p25_ns": 11470.5, "total_p50_ns": 11646.0, "total_p75_ns": 11785.75, "total_p95_ns": 12126.5, "total_p99_ns": 12278.75, "total_ci_low_ns": 11597.122674418604, "total_ci_high_ns": 11707.831104651163, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "minicbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.25.1", "avg_time_ser_ns": 7826.714285714285, "avg_time_deser_ns": 16362.12087912088, "avg_time_total_ns": 24188.835164835164, "median_size_bytes": 5264.0, "avg_ops_per_sec": 41341.38718071729, "min_ops_per_sec": 39272.67014884342, "max_ops_per_sec": 43957.976174776915, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 7826.714285714285, "ser_median_ns": 7806.0, "ser_std_ns": 170.5984424648378, "ser_mad_ns": 114.0, "ser_cv": 0.021796942655262466, "ser_min_ns": 7415.0, "ser_max_ns": 8224.0, "ser_p5_ns": 7565.0, "ser_p25_ns": 7707.5, "ser_p50_ns": 7806.0, "ser_p75_ns": 7948.0, "ser_p95_ns": 8113.5, "ser_p99_ns": 8184.4, "ser_ci_low_ns": 7790.242857142857, "ser_ci_high_ns": 7860.795879120879, "deser_mean_ns": 16362.12087912088, "deser_median_ns": 16341.0, "deser_std_ns": 506.6363551276165, "deser_mad_ns": 263.0, "deser_cv": 0.030963978256273436, "deser_min_ns": 15187.0, "deser_max_ns": 17617.0, "deser_p5_ns": 15482.0, "deser_p25_ns": 16072.5, "deser_p50_ns": 16341.0, "deser_p75_ns": 16578.0, "deser_p95_ns": 17244.0, "deser_p99_ns": 17496.399999999998, "deser_ci_low_ns": 16257.39065934066, "deser_ci_high_ns": 16470.372252747253, "total_mean_ns": 24188.835164835164, "total_median_ns": 24171.0, "total_std_ns": 581.4508532539055, "total_mad_ns": 355.0, "total_cv": 0.02403798485092814, "total_min_ns": 22749.0, "total_max_ns": 25463.0, "total_p5_ns": 23202.0, "total_p25_ns": 23815.0, "total_p50_ns": 24171.0, "total_p75_ns": 24499.0, "total_p95_ns": 25217.0, "total_p99_ns": 25382.0, "total_ci_low_ns": 24073.997527472526, "total_ci_high_ns": 24306.703296703297, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.47710223621509}, {"serializer": "bson", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "2.15.0", "avg_time_ser_ns": 23974.157894736843, "avg_time_deser_ns": 56903.56842105263, "avg_time_total_ns": 80877.72631578948, "median_size_bytes": 15898.0, "avg_ops_per_sec": 12364.343627755687, "min_ops_per_sec": 11652.023956561256, "max_ops_per_sec": 13158.06786931407, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 23974.157894736843, "ser_median_ns": 23891.0, "ser_std_ns": 805.5234628936121, "ser_mad_ns": 567.0, "ser_cv": 0.033599656197745006, "ser_min_ns": 22519.0, "ser_max_ns": 25842.0, "ser_p5_ns": 22916.2, "ser_p25_ns": 23298.5, "ser_p50_ns": 23891.0, "ser_p75_ns": 24416.0, "ser_p95_ns": 25475.6, "ser_p99_ns": 25730.14, "ser_ci_low_ns": 23816.450789473685, "ser_ci_high_ns": 24130.314210526314, "deser_mean_ns": 56903.56842105263, "deser_median_ns": 56965.0, "deser_std_ns": 1751.280866526054, "deser_mad_ns": 1041.0, "deser_cv": 0.0307762925088918, "deser_min_ns": 52793.0, "deser_max_ns": 60662.0, "deser_p5_ns": 53844.6, "deser_p25_ns": 56106.5, "deser_p50_ns": 56965.0, "deser_p75_ns": 58028.5, "deser_p95_ns": 59743.6, "deser_p99_ns": 60560.48, "deser_ci_low_ns": 56552.89736842105, "deser_ci_high_ns": 57247.73289473684, "total_mean_ns": 80877.72631578948, "total_median_ns": 81002.0, "total_std_ns": 2041.1605764290564, "total_mad_ns": 1193.0, "total_cv": 0.025237610766396728, "total_min_ns": 75999.0, "total_max_ns": 85822.0, "total_p5_ns": 77255.8, "total_p25_ns": 79825.5, "total_p50_ns": 81002.0, "total_p75_ns": 82170.5, "total_p95_ns": 83850.2, "total_p99_ns": 84810.56, "total_ci_low_ns": 80483.0005263158, "total_ci_high_ns": 81300.63789473685, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 46.26931530725637}, {"serializer": "ciborium", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.2.2", "avg_time_ser_ns": 11613.430379746835, "avg_time_deser_ns": 52004.240506329115, "avg_time_total_ns": 63617.670886075946, "median_size_bytes": 13364.0, "avg_ops_per_sec": 15718.903035459458, "min_ops_per_sec": 15146.695748322503, "max_ops_per_sec": 16247.74562529449, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 11613.430379746835, "ser_median_ns": 11635.0, "ser_std_ns": 173.43222156074393, "ser_mad_ns": 117.0, "ser_cv": 0.014933763400622774, "ser_min_ns": 11151.0, "ser_max_ns": 12065.0, "ser_p5_ns": 11322.8, "ser_p25_ns": 11492.5, "ser_p50_ns": 11635.0, "ser_p75_ns": 11742.5, "ser_p95_ns": 11869.1, "ser_p99_ns": 11978.42, "ser_ci_low_ns": 11576.096518987342, "ser_ci_high_ns": 11651.146202531645, "deser_mean_ns": 52004.240506329115, "deser_median_ns": 51955.0, "deser_std_ns": 828.5728727865093, "deser_mad_ns": 498.0, "deser_cv": 0.015932794416748934, "deser_min_ns": 50315.0, "deser_max_ns": 54170.0, "deser_p5_ns": 50605.9, "deser_p25_ns": 51452.0, "deser_p50_ns": 51955.0, "deser_p75_ns": 52420.0, "deser_p95_ns": 53581.4, "deser_p99_ns": 54003.08, "deser_ci_low_ns": 51822.33797468354, "deser_ci_high_ns": 52174.184810126586, "total_mean_ns": 63617.670886075946, "total_median_ns": 63583.0, "total_std_ns": 905.4409001302581, "total_mad_ns": 542.0, "total_cv": 0.014232537713486659, "total_min_ns": 61547.0, "total_max_ns": 66021.0, "total_p5_ns": 62091.3, "total_p25_ns": 63046.0, "total_p50_ns": 63583.0, "total_p75_ns": 64110.5, "total_p95_ns": 65223.7, "total_p99_ns": 65914.14, "total_ci_low_ns": 63425.83101265823, "total_ci_high_ns": 63825.17246835443, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 79.13801949559986}, {"serializer": "flexbuffers", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "2.0.0", "avg_time_ser_ns": 81615.74226804124, "avg_time_deser_ns": 51803.67010309279, "avg_time_total_ns": 133419.412371134, "median_size_bytes": 22660.0, "avg_ops_per_sec": 7495.1611780322555, "min_ops_per_sec": 7086.368661243233, "max_ops_per_sec": 7936.19300821396, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 81615.74226804124, "ser_median_ns": 81645.0, "ser_std_ns": 2092.528724804585, "ser_mad_ns": 1515.0, "ser_cv": 0.02563878813884131, "ser_min_ns": 77694.0, "ser_max_ns": 87162.0, "ser_p5_ns": 78539.6, "ser_p25_ns": 79841.0, "ser_p50_ns": 81645.0, "ser_p75_ns": 82857.0, "ser_p95_ns": 85128.4, "ser_p99_ns": 87093.84, "ser_ci_low_ns": 81208.98067010309, "ser_ci_high_ns": 82028.43273195876, "deser_mean_ns": 51803.67010309279, "deser_median_ns": 52170.0, "deser_std_ns": 1656.0317889061482, "deser_mad_ns": 1023.0, "deser_cv": 0.031967460714859265, "deser_min_ns": 47517.0, "deser_max_ns": 54997.0, "deser_p5_ns": 48943.4, "deser_p25_ns": 50561.0, "deser_p50_ns": 52170.0, "deser_p75_ns": 52870.0, "deser_p95_ns": 54247.6, "deser_p99_ns": 54986.44, "deser_ci_low_ns": 51480.8175257732, "deser_ci_high_ns": 52142.053092783506, "total_mean_ns": 133419.412371134, "total_median_ns": 133837.0, "total_std_ns": 3298.2740143917736, "total_mad_ns": 2382.0, "total_cv": 0.02472109534718182, "total_min_ns": 126005.0, "total_max_ns": 141116.0, "total_p5_ns": 128080.6, "total_p25_ns": 130869.0, "total_p50_ns": 133837.0, "total_p75_ns": 135966.0, "total_p95_ns": 138490.0, "total_p99_ns": 140601.44, "total_ci_low_ns": 132762.95154639173, "total_ci_high_ns": 134099.05824742268, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 50.34558325629722}, {"serializer": "serde_json", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "1.0.150", "avg_time_ser_ns": 16490.677419354837, "avg_time_deser_ns": 44088.25806451613, "avg_time_total_ns": 60578.93548387097, "median_size_bytes": 18070.0, "avg_ops_per_sec": 16507.38812117701, "min_ops_per_sec": 15250.179189605478, "max_ops_per_sec": 18113.316910592668, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 16490.677419354837, "ser_median_ns": 16407.0, "ser_std_ns": 563.0560857323401, "ser_mad_ns": 375.0, "ser_cv": 0.03414390272842827, "ser_min_ns": 15608.0, "ser_max_ns": 18090.0, "ser_p5_ns": 15754.0, "ser_p25_ns": 16038.0, "ser_p50_ns": 16407.0, "ser_p75_ns": 16821.0, "ser_p95_ns": 17517.8, "ser_p99_ns": 17696.239999999998, "ser_ci_low_ns": 16378.256720430107, "ser_ci_high_ns": 16604.516666666666, "deser_mean_ns": 44088.25806451613, "deser_median_ns": 44708.0, "deser_std_ns": 2348.2375625285717, "deser_mad_ns": 1399.0, "deser_cv": 0.053262198726298074, "deser_min_ns": 38969.0, "deser_max_ns": 49803.0, "deser_p5_ns": 39626.4, "deser_p25_ns": 42292.0, "deser_p50_ns": 44708.0, "deser_p75_ns": 45805.0, "deser_p95_ns": 46853.6, "deser_p99_ns": 48415.64, "deser_ci_low_ns": 43637.632526881716, "deser_ci_high_ns": 44549.53978494624, "total_mean_ns": 60578.93548387097, "total_median_ns": 60974.0, "total_std_ns": 2440.2181914491543, "total_mad_ns": 1554.0, "total_cv": 0.040281628786607813, "total_min_ns": 55208.0, "total_max_ns": 65573.0, "total_p5_ns": 56099.2, "total_p25_ns": 59126.0, "total_p50_ns": 60974.0, "total_p75_ns": 62313.0, "total_p95_ns": 63679.799999999996, "total_p99_ns": 65517.8, "total_ci_low_ns": 60088.46639784946, "total_ci_high_ns": 61083.60564516129, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.549846027953176}, {"serializer": "prost", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.13.5", "avg_time_ser_ns": 561.9775280898876, "avg_time_deser_ns": 627.1460674157304, "avg_time_total_ns": 1189.123595505618, "median_size_bytes": 155.0, "avg_ops_per_sec": 840955.4766044297, "min_ops_per_sec": 699300.6993006993, "max_ops_per_sec": 989119.6834817013, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 561.9775280898876, "ser_median_ns": 556.0, "ser_std_ns": 60.26908930487009, "ser_mad_ns": 43.0, "ser_cv": 0.10724466067125396, "ser_min_ns": 454.0, "ser_max_ns": 747.0, "ser_p5_ns": 476.2, "ser_p25_ns": 514.0, "ser_p50_ns": 556.0, "ser_p75_ns": 599.0, "ser_p95_ns": 666.0, "ser_p99_ns": 704.7600000000002, "ser_ci_low_ns": 549.482584269663, "ser_ci_high_ns": 574.4202247191012, "deser_mean_ns": 627.1460674157304, "deser_median_ns": 616.0, "deser_std_ns": 50.6378744710908, "deser_mad_ns": 34.0, "deser_cv": 0.08074335007752402, "deser_min_ns": 548.0, "deser_max_ns": 785.0, "deser_p5_ns": 559.2, "deser_p25_ns": 589.0, "deser_p50_ns": 616.0, "deser_p75_ns": 657.0, "deser_p95_ns": 716.2, "deser_p99_ns": 755.0800000000002, "deser_ci_low_ns": 617.0643258426966, "deser_ci_high_ns": 637.9325842696629, "total_mean_ns": 1189.123595505618, "total_median_ns": 1180.0, "total_std_ns": 91.93770373869262, "total_mad_ns": 55.0, "total_cv": 0.0773155154654891, "total_min_ns": 1011.0, "total_max_ns": 1430.0, "total_p5_ns": 1062.4, "total_p25_ns": 1126.0, "total_p50_ns": 1180.0, "total_p75_ns": 1235.0, "total_p95_ns": 1364.8, "total_p99_ns": 1393.0400000000002, "total_ci_low_ns": 1169.347191011236, "total_ci_high_ns": 1208.4865168539325, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.080875552502814}, {"serializer": "serde_json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "1.0.150", "avg_time_ser_ns": 589.0224719101124, "avg_time_deser_ns": 1206.943820224719, "avg_time_total_ns": 1795.9662921348315, "median_size_bytes": 460.0, "avg_ops_per_sec": 556803.3233025318, "min_ops_per_sec": 479846.4491362764, "max_ops_per_sec": 618811.8811881188, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 589.0224719101124, "ser_median_ns": 579.0, "ser_std_ns": 72.07035349511708, "ser_mad_ns": 55.0, "ser_cv": 0.12235586404947103, "ser_min_ns": 468.0, "ser_max_ns": 780.0, "ser_p5_ns": 484.8, "ser_p25_ns": 531.0, "ser_p50_ns": 579.0, "ser_p75_ns": 641.0, "ser_p95_ns": 704.8, "ser_p99_ns": 778.24, "ser_ci_low_ns": 574.2356741573034, "ser_ci_high_ns": 603.8547752808988, "deser_mean_ns": 1206.943820224719, "deser_median_ns": 1196.0, "deser_std_ns": 69.7588963942889, "deser_mad_ns": 43.0, "deser_cv": 0.05779796476467363, "deser_min_ns": 1078.0, "deser_max_ns": 1401.0, "deser_p5_ns": 1124.0, "deser_p25_ns": 1158.0, "deser_p50_ns": 1196.0, "deser_p75_ns": 1245.0, "deser_p95_ns": 1352.0, "deser_p99_ns": 1374.6000000000001, "deser_ci_low_ns": 1192.357584269663, "deser_ci_high_ns": 1221.0449438202247, "total_mean_ns": 1795.9662921348315, "total_median_ns": 1789.0, "total_std_ns": 102.28574607866061, "total_mad_ns": 70.0, "total_cv": 0.056953043343077145, "total_min_ns": 1616.0, "total_max_ns": 2084.0, "total_p5_ns": 1658.6, "total_p25_ns": 1714.0, "total_p50_ns": 1789.0, "total_p75_ns": 1856.0, "total_p95_ns": 1994.6, "total_p99_ns": 2070.8, "total_ci_low_ns": 1775.347191011236, "total_ci_high_ns": 1818.0384831460674, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.633967959881993}, {"serializer": "flexbuffers", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "2.0.0", "avg_time_ser_ns": 2588.747252747253, "avg_time_deser_ns": 1859.4505494505495, "avg_time_total_ns": 4448.197802197802, "median_size_bytes": 452.0, "avg_ops_per_sec": 224810.1465959791, "min_ops_per_sec": 205128.20512820513, "max_ops_per_sec": 240211.38601969733, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 2588.747252747253, "ser_median_ns": 2579.0, "ser_std_ns": 125.51180496994371, "ser_mad_ns": 95.0, "ser_cv": 0.04848360721068733, "ser_min_ns": 2357.0, "ser_max_ns": 2873.0, "ser_p5_ns": 2407.0, "ser_p25_ns": 2487.0, "ser_p50_ns": 2579.0, "ser_p75_ns": 2676.5, "ser_p95_ns": 2827.0, "ser_p99_ns": 2857.7, "ser_ci_low_ns": 2563.592857142857, "ser_ci_high_ns": 2615.154120879121, "deser_mean_ns": 1859.4505494505495, "deser_median_ns": 1858.0, "deser_std_ns": 93.75360896594431, "deser_mad_ns": 65.0, "deser_cv": 0.050420060374096874, "deser_min_ns": 1702.0, "deser_max_ns": 2117.0, "deser_p5_ns": 1726.0, "deser_p25_ns": 1788.0, "deser_p50_ns": 1858.0, "deser_p75_ns": 1917.5, "deser_p95_ns": 2039.0, "deser_p99_ns": 2100.7999999999997, "deser_ci_low_ns": 1840.6134615384615, "deser_ci_high_ns": 1878.7038461538461, "total_mean_ns": 4448.197802197802, "total_median_ns": 4431.0, "total_std_ns": 167.27052073281504, "total_mad_ns": 125.0, "total_cv": 0.03760411028712991, "total_min_ns": 4163.0, "total_max_ns": 4875.0, "total_p5_ns": 4209.0, "total_p25_ns": 4336.5, "total_p50_ns": 4431.0, "total_p75_ns": 4560.5, "total_p95_ns": 4755.5, "total_p99_ns": 4873.2, "total_ci_low_ns": 4414.856318681319, "total_ci_high_ns": 4483.6747252747255, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 32.86910038989292}, {"serializer": "simd-json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.14.3", "avg_time_ser_ns": 603.6276595744681, "avg_time_deser_ns": 1688.1382978723404, "avg_time_total_ns": 2291.7659574468084, "median_size_bytes": 460.0, "avg_ops_per_sec": 436344.7309052761, "min_ops_per_sec": 372439.47858473, "max_ops_per_sec": 533902.8296849973, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 603.6276595744681, "ser_median_ns": 585.5, "ser_std_ns": 88.31322360372037, "ser_mad_ns": 62.5, "ser_cv": 0.1463041366692465, "ser_min_ns": 482.0, "ser_max_ns": 857.0, "ser_p5_ns": 501.3, "ser_p25_ns": 528.5, "ser_p50_ns": 585.5, "ser_p75_ns": 666.75, "ser_p95_ns": 763.35, "ser_p99_ns": 830.9599999999998, "ser_ci_low_ns": 586.2119680851064, "ser_ci_high_ns": 620.5640957446808, "deser_mean_ns": 1688.1382978723404, "deser_median_ns": 1677.0, "deser_std_ns": 155.17673594233375, "deser_mad_ns": 113.0, "deser_cv": 0.09192181478135535, "deser_min_ns": 1356.0, "deser_max_ns": 2088.0, "deser_p5_ns": 1440.65, "deser_p25_ns": 1583.75, "deser_p50_ns": 1677.0, "deser_p75_ns": 1796.5, "deser_p95_ns": 1925.35, "deser_p99_ns": 2073.12, "deser_ci_low_ns": 1656.3271276595744, "deser_ci_high_ns": 1718.261170212766, "total_mean_ns": 2291.7659574468084, "total_median_ns": 2271.0, "total_std_ns": 170.30058344326494, "total_mad_ns": 118.5, "total_cv": 0.07430976225556295, "total_min_ns": 1873.0, "total_max_ns": 2685.0, "total_p5_ns": 2039.4, "total_p25_ns": 2167.0, "total_p50_ns": 2271.0, "total_p75_ns": 2406.5, "total_p95_ns": 2602.9, "total_p99_ns": 2666.3999999999996, "total_ci_low_ns": 2256.785106382979, "total_ci_high_ns": 2325.246276595745, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.21529291873824}, {"serializer": "rkyv", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.8.17", "avg_time_ser_ns": 313.8222222222222, "avg_time_deser_ns": 296.44444444444446, "avg_time_total_ns": 610.2666666666667, "median_size_bytes": 272.0, "avg_ops_per_sec": 1638627.9222197947, "min_ops_per_sec": 1331557.9227696406, "max_ops_per_sec": 2028397.5659229208, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 313.8222222222222, "ser_median_ns": 315.0, "ser_std_ns": 36.24156710212016, "ser_mad_ns": 27.5, "ser_cv": 0.11548438745187702, "ser_min_ns": 226.0, "ser_max_ns": 392.0, "ser_p5_ns": 254.8, "ser_p25_ns": 287.5, "ser_p50_ns": 315.0, "ser_p75_ns": 341.25, "ser_p95_ns": 370.55, "ser_p99_ns": 383.99, "ser_ci_low_ns": 306.1775, "ser_ci_high_ns": 321.1016666666667, "deser_mean_ns": 296.44444444444446, "deser_median_ns": 287.5, "deser_std_ns": 52.76897094535491, "deser_mad_ns": 29.5, "deser_cv": 0.17800627380367098, "deser_min_ns": 210.0, "deser_max_ns": 441.0, "deser_p5_ns": 220.6, "deser_p25_ns": 262.0, "deser_p50_ns": 287.5, "deser_p75_ns": 324.75, "deser_p95_ns": 399.1, "deser_p99_ns": 426.76, "deser_ci_low_ns": 286.16611111111115, "deser_ci_high_ns": 307.7136111111111, "total_mean_ns": 610.2666666666667, "total_median_ns": 603.0, "total_std_ns": 53.900824450137065, "total_mad_ns": 35.5, "total_cv": 0.088323395974662, "total_min_ns": 493.0, "total_max_ns": 751.0, "total_p5_ns": 528.9, "total_p25_ns": 573.5, "total_p50_ns": 603.0, "total_p75_ns": 647.75, "total_p95_ns": 698.55, "total_p99_ns": 737.65, "total_ci_low_ns": 599.3102777777779, "total_ci_high_ns": 621.6008333333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.752172737476861}, {"serializer": "bson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "2.15.0", "avg_time_ser_ns": 1245.957894736842, "avg_time_deser_ns": 2133.978947368421, "avg_time_total_ns": 3379.936842105263, "median_size_bytes": 540.0, "avg_ops_per_sec": 295863.51660261484, "min_ops_per_sec": 265745.41589157586, "max_ops_per_sec": 326477.309826967, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1245.957894736842, "ser_median_ns": 1246.0, "ser_std_ns": 142.6280623360406, "ser_mad_ns": 105.0, "ser_cv": 0.11447261816673587, "ser_min_ns": 964.0, "ser_max_ns": 1557.0, "ser_p5_ns": 1014.3, "ser_p25_ns": 1148.0, "ser_p50_ns": 1246.0, "ser_p75_ns": 1360.5, "ser_p95_ns": 1474.2, "ser_p99_ns": 1505.3000000000002, "ser_ci_low_ns": 1218.356052631579, "ser_ci_high_ns": 1274.822105263158, "deser_mean_ns": 2133.978947368421, "deser_median_ns": 2127.0, "deser_std_ns": 85.1315601336841, "deser_mad_ns": 67.0, "deser_cv": 0.03989334582642748, "deser_min_ns": 1961.0, "deser_max_ns": 2305.0, "deser_p5_ns": 2016.0, "deser_p25_ns": 2065.5, "deser_p50_ns": 2127.0, "deser_p75_ns": 2204.0, "deser_p95_ns": 2285.9, "deser_p99_ns": 2290.9, "deser_ci_low_ns": 2117.1671052631577, "deser_ci_high_ns": 2150.9923684210526, "total_mean_ns": 3379.936842105263, "total_median_ns": 3355.0, "total_std_ns": 159.4001929125555, "total_mad_ns": 95.0, "total_cv": 0.04716070162224387, "total_min_ns": 3063.0, "total_max_ns": 3763.0, "total_p5_ns": 3127.0, "total_p25_ns": 3270.5, "total_p50_ns": 3355.0, "total_p75_ns": 3470.5, "total_p95_ns": 3693.2999999999997, "total_p99_ns": 3748.9, "total_ci_low_ns": 3349.346842105263, "total_ci_high_ns": 3411.7689473684213, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.159422566486366}, {"serializer": "serde_avro_fast", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "2.1.0", "avg_time_ser_ns": 645.9888888888889, "avg_time_deser_ns": 711.2, "avg_time_total_ns": 1357.1888888888889, "median_size_bytes": 114.0, "avg_ops_per_sec": 736817.1138054967, "min_ops_per_sec": 624219.7253433209, "max_ops_per_sec": 821018.0623973728, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 645.9888888888889, "ser_median_ns": 640.5, "ser_std_ns": 35.601254379000494, "ser_mad_ns": 22.5, "ser_cv": 0.05511124880218174, "ser_min_ns": 585.0, "ser_max_ns": 747.0, "ser_p5_ns": 603.0, "ser_p25_ns": 619.0, "ser_p50_ns": 640.5, "ser_p75_ns": 666.75, "ser_p95_ns": 716.9499999999999, "ser_p99_ns": 730.98, "ser_ci_low_ns": 638.9441666666667, "ser_ci_high_ns": 653.5677777777778, "deser_mean_ns": 711.2, "deser_median_ns": 699.0, "deser_std_ns": 66.18737447070886, "deser_mad_ns": 41.0, "deser_cv": 0.09306436230414632, "deser_min_ns": 588.0, "deser_max_ns": 887.0, "deser_p5_ns": 619.6, "deser_p25_ns": 667.25, "deser_p50_ns": 699.0, "deser_p75_ns": 750.75, "deser_p95_ns": 843.5, "deser_p99_ns": 868.31, "deser_ci_low_ns": 698.2, "deser_ci_high_ns": 725.105, "total_mean_ns": 1357.1888888888889, "total_median_ns": 1343.0, "total_std_ns": 82.71908525949311, "total_mad_ns": 54.5, "total_cv": 0.06094883765753052, "total_min_ns": 1218.0, "total_max_ns": 1602.0, "total_p5_ns": 1247.8, "total_p25_ns": 1295.5, "total_p50_ns": 1343.0, "total_p75_ns": 1405.75, "total_p95_ns": 1505.05, "total_p99_ns": 1554.83, "total_ci_low_ns": 1340.3875, "total_ci_high_ns": 1374.4794444444444, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.328867253537949}, {"serializer": "sonic-rs", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.3.17", "avg_time_ser_ns": 530.1, "avg_time_deser_ns": 948.6888888888889, "avg_time_total_ns": 1478.7888888888888, "median_size_bytes": 460.0, "avg_ops_per_sec": 676229.0462916351, "min_ops_per_sec": 589622.641509434, "max_ops_per_sec": 758725.3414264036, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 530.1, "ser_median_ns": 518.0, "ser_std_ns": 62.37671886352933, "ser_mad_ns": 42.0, "ser_cv": 0.11766972054995156, "ser_min_ns": 429.0, "ser_max_ns": 669.0, "ser_p5_ns": 445.35, "ser_p25_ns": 484.25, "ser_p50_ns": 518.0, "ser_p75_ns": 582.0, "ser_p95_ns": 638.3, "ser_p99_ns": 669.0, "ser_ci_low_ns": 517.8544444444445, "ser_ci_high_ns": 543.5344444444444, "deser_mean_ns": 948.6888888888889, "deser_median_ns": 934.0, "deser_std_ns": 67.0231629329598, "deser_mad_ns": 34.0, "deser_cv": 0.07064820060394911, "deser_min_ns": 829.0, "deser_max_ns": 1137.0, "deser_p5_ns": 867.95, "deser_p25_ns": 906.25, "deser_p50_ns": 934.0, "deser_p75_ns": 983.75, "deser_p95_ns": 1077.0, "deser_p99_ns": 1129.88, "deser_ci_low_ns": 934.6986111111112, "deser_ci_high_ns": 963.2555555555556, "total_mean_ns": 1478.7888888888888, "total_median_ns": 1471.5, "total_std_ns": 86.02096614621978, "total_mad_ns": 63.5, "total_cv": 0.05816987589814323, "total_min_ns": 1318.0, "total_max_ns": 1696.0, "total_p5_ns": 1364.15, "total_p25_ns": 1411.5, "total_p50_ns": 1471.5, "total_p75_ns": 1542.0, "total_p95_ns": 1623.3, "total_p99_ns": 1692.44, "total_ci_low_ns": 1461.1766666666665, "total_ci_high_ns": 1497.3338888888889, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.626951212323965}, {"serializer": "minicbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.25.1", "avg_time_ser_ns": 382.1744186046512, "avg_time_deser_ns": 597.1976744186046, "avg_time_total_ns": 979.3720930232558, "median_size_bytes": 133.0, "avg_ops_per_sec": 1021062.379787714, "min_ops_per_sec": 865051.9031141868, "max_ops_per_sec": 1273885.3503184714, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 382.1744186046512, "ser_median_ns": 381.0, "ser_std_ns": 34.17642526326664, "ser_mad_ns": 24.0, "ser_cv": 0.08942625042264066, "ser_min_ns": 307.0, "ser_max_ns": 472.0, "ser_p5_ns": 336.25, "ser_p25_ns": 355.0, "ser_p50_ns": 381.0, "ser_p75_ns": 398.75, "ser_p95_ns": 452.0, "ser_p99_ns": 462.6500000000001, "ser_ci_low_ns": 374.94941860465116, "ser_ci_high_ns": 389.1752906976744, "deser_mean_ns": 597.1976744186046, "deser_median_ns": 585.5, "deser_std_ns": 63.065012163908484, "deser_mad_ns": 36.5, "deser_cv": 0.10560157024272533, "deser_min_ns": 442.0, "deser_max_ns": 763.0, "deser_p5_ns": 510.75, "deser_p25_ns": 553.75, "deser_p50_ns": 585.5, "deser_p75_ns": 628.5, "deser_p95_ns": 717.25, "deser_p99_ns": 761.3, "deser_ci_low_ns": 584.755523255814, "deser_ci_high_ns": 611.7334302325581, "total_mean_ns": 979.3720930232558, "total_median_ns": 979.5, "total_std_ns": 72.0145486137232, "total_mad_ns": 47.0, "total_cv": 0.07353134638686623, "total_min_ns": 785.0, "total_max_ns": 1156.0, "total_p5_ns": 872.25, "total_p25_ns": 932.5, "total_p50_ns": 979.5, "total_p75_ns": 1025.75, "total_p95_ns": 1104.25, "total_p99_ns": 1150.05, "total_ci_low_ns": 964.2531976744186, "total_ci_high_ns": 993.5813953488372, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.834766955596326}, {"serializer": "bincode", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "2.0.1", "avg_time_ser_ns": 202.8877551020408, "avg_time_deser_ns": 572.8673469387755, "avg_time_total_ns": 775.7551020408164, "median_size_bytes": 122.0, "avg_ops_per_sec": 1289066.6105440387, "min_ops_per_sec": 955109.8376313276, "max_ops_per_sec": 1730103.8062283737, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 202.8877551020408, "ser_median_ns": 202.5, "ser_std_ns": 33.98298017096546, "ser_mad_ns": 26.0, "ser_cv": 0.167496457111835, "ser_min_ns": 141.0, "ser_max_ns": 281.0, "ser_p5_ns": 151.0, "ser_p25_ns": 176.25, "ser_p50_ns": 202.5, "ser_p75_ns": 226.75, "ser_p95_ns": 258.7999999999999, "ser_p99_ns": 278.09000000000003, "ser_ci_low_ns": 196.21122448979594, "ser_ci_high_ns": 209.6125, "deser_mean_ns": 572.8673469387755, "deser_median_ns": 553.5, "deser_std_ns": 114.97580541140864, "deser_mad_ns": 96.5, "deser_cv": 0.20070231970071867, "deser_min_ns": 408.0, "deser_max_ns": 847.0, "deser_p5_ns": 420.55, "deser_p25_ns": 471.0, "deser_p50_ns": 553.5, "deser_p75_ns": 683.0, "deser_p95_ns": 746.0999999999999, "deser_p99_ns": 800.44, "deser_ci_low_ns": 550.6727040816326, "deser_ci_high_ns": 595.6645408163265, "total_mean_ns": 775.7551020408164, "total_median_ns": 772.0, "total_std_ns": 115.23155184545217, "total_mad_ns": 97.5, "total_cv": 0.1485411459651467, "total_min_ns": 578.0, "total_max_ns": 1047.0, "total_p5_ns": 599.95, "total_p25_ns": 675.25, "total_p50_ns": 772.0, "total_p75_ns": 869.5, "total_p95_ns": 946.75, "total_p99_ns": 988.8000000000001, "total_ci_low_ns": 752.7742346938776, "total_ci_high_ns": 798.644387755102, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.640008679454299}, {"serializer": "speedy", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.8.7", "avg_time_ser_ns": 87.82608695652173, "avg_time_deser_ns": 263.82608695652175, "avg_time_total_ns": 351.6521739130435, "median_size_bytes": 214.0, "avg_ops_per_sec": 2843719.090009891, "min_ops_per_sec": 2044989.7750511249, "max_ops_per_sec": 4016064.2570281127, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 87.82608695652173, "ser_median_ns": 87.0, "ser_std_ns": 19.14927404910536, "ser_mad_ns": 14.0, "ser_cv": 0.21803628867793234, "ser_min_ns": 47.0, "ser_max_ns": 143.0, "ser_p5_ns": 61.55, "ser_p25_ns": 73.0, "ser_p50_ns": 87.0, "ser_p75_ns": 101.0, "ser_p95_ns": 122.80000000000001, "ser_p99_ns": 134.81000000000003, "ser_ci_low_ns": 83.96576086956522, "ser_ci_high_ns": 91.78288043478261, "deser_mean_ns": 263.82608695652175, "deser_median_ns": 255.0, "deser_std_ns": 53.20799095063959, "deser_mad_ns": 32.5, "deser_cv": 0.2016782781583241, "deser_min_ns": 182.0, "deser_max_ns": 410.0, "deser_p5_ns": 196.55, "deser_p25_ns": 225.75, "deser_p50_ns": 255.0, "deser_p75_ns": 288.75, "deser_p95_ns": 380.6, "deser_p99_ns": 408.18, "deser_ci_low_ns": 253.6192934782609, "deser_ci_high_ns": 275.3597826086957, "total_mean_ns": 351.6521739130435, "total_median_ns": 341.0, "total_std_ns": 54.47762617317248, "total_mad_ns": 35.0, "total_cv": 0.15491906552707307, "total_min_ns": 249.0, "total_max_ns": 489.0, "total_p5_ns": 277.55, "total_p25_ns": 314.0, "total_p50_ns": 341.0, "total_p75_ns": 383.0, "total_p95_ns": 458.9, "total_p99_ns": 488.09000000000003, "total_ci_low_ns": 340.3470108695652, "total_ci_high_ns": 362.5657608695652, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "rmp-serde", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "1.3.1", "avg_time_ser_ns": 332.2696629213483, "avg_time_deser_ns": 804.5505617977528, "avg_time_total_ns": 1136.8202247191011, "median_size_bytes": 333.0, "avg_ops_per_sec": 879646.5599889302, "min_ops_per_sec": 753012.048192771, "max_ops_per_sec": 1062699.2561105208, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 332.2696629213483, "ser_median_ns": 312.0, "ser_std_ns": 51.32909950083778, "ser_mad_ns": 26.0, "ser_cv": 0.15448024670548366, "ser_min_ns": 256.0, "ser_max_ns": 464.0, "ser_p5_ns": 278.6, "ser_p25_ns": 297.0, "ser_p50_ns": 312.0, "ser_p75_ns": 367.0, "ser_p95_ns": 429.0, "ser_p99_ns": 462.24, "ser_ci_low_ns": 321.80870786516857, "ser_ci_high_ns": 343.40533707865166, "deser_mean_ns": 804.5505617977528, "deser_median_ns": 804.0, "deser_std_ns": 65.57837282698728, "deser_mad_ns": 39.0, "deser_cv": 0.08150932451088426, "deser_min_ns": 653.0, "deser_max_ns": 967.0, "deser_p5_ns": 711.2, "deser_p25_ns": 761.0, "deser_p50_ns": 804.0, "deser_p75_ns": 838.0, "deser_p95_ns": 934.6, "deser_p99_ns": 963.48, "deser_ci_low_ns": 791.0778089887641, "deser_ci_high_ns": 818.3519662921349, "total_mean_ns": 1136.8202247191011, "total_median_ns": 1124.0, "total_std_ns": 85.820447049448, "total_mad_ns": 66.0, "total_cv": 0.07549166102375908, "total_min_ns": 941.0, "total_max_ns": 1328.0, "total_p5_ns": 1009.6, "total_p25_ns": 1076.0, "total_p50_ns": 1124.0, "total_p75_ns": 1205.0, "total_p95_ns": 1263.4, "total_p99_ns": 1306.0, "total_ci_low_ns": 1119.8640449438203, "total_ci_high_ns": 1154.3828651685394, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.916753353116116}, {"serializer": "ciborium", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.2.2", "avg_time_ser_ns": 541.7340425531914, "avg_time_deser_ns": 2094.0851063829787, "avg_time_total_ns": 2635.81914893617, "median_size_bytes": 339.0, "avg_ops_per_sec": 379388.69986721396, "min_ops_per_sec": 344827.5862068966, "max_ops_per_sec": 416493.12786339025, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 541.7340425531914, "ser_median_ns": 545.0, "ser_std_ns": 52.07731546107747, "ser_mad_ns": 39.0, "ser_cv": 0.09613077888854314, "ser_min_ns": 422.0, "ser_max_ns": 651.0, "ser_p5_ns": 463.90000000000003, "ser_p25_ns": 505.25, "ser_p50_ns": 545.0, "ser_p75_ns": 580.0, "ser_p95_ns": 624.35, "ser_p99_ns": 637.05, "ser_ci_low_ns": 531.5420212765957, "ser_ci_high_ns": 551.8938829787234, "deser_mean_ns": 2094.0851063829787, "deser_median_ns": 2099.5, "deser_std_ns": 89.71084488384616, "deser_mad_ns": 60.0, "deser_cv": 0.04284011409584006, "deser_min_ns": 1906.0, "deser_max_ns": 2315.0, "deser_p5_ns": 1941.6, "deser_p25_ns": 2033.25, "deser_p50_ns": 2099.5, "deser_p75_ns": 2153.75, "deser_p95_ns": 2243.2999999999997, "deser_p99_ns": 2305.7, "deser_ci_low_ns": 2076.202659574468, "deser_ci_high_ns": 2112.8428191489365, "total_mean_ns": 2635.81914893617, "total_median_ns": 2636.0, "total_std_ns": 115.54080066635657, "total_mad_ns": 73.0, "total_cv": 0.04383487414642595, "total_min_ns": 2401.0, "total_max_ns": 2900.0, "total_p5_ns": 2451.0, "total_p25_ns": 2558.0, "total_p50_ns": 2636.0, "total_p75_ns": 2704.5, "total_p95_ns": 2828.1, "total_p99_ns": 2894.42, "total_ci_low_ns": 2612.3819148936172, "total_ci_high_ns": 2658.872340425532, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.098246611810815}, {"serializer": "bitcode", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.6.9", "avg_time_ser_ns": 1328.0978260869565, "avg_time_deser_ns": 995.5, "avg_time_total_ns": 2323.5978260869565, "median_size_bytes": 122.0, "avg_ops_per_sec": 430367.07504759764, "min_ops_per_sec": 350385.423966363, "max_ops_per_sec": 497760.07964161277, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 1328.0978260869565, "ser_median_ns": 1316.0, "ser_std_ns": 110.12740471811476, "ser_mad_ns": 65.0, "ser_cv": 0.08292115426661667, "ser_min_ns": 1063.0, "ser_max_ns": 1610.0, "ser_p5_ns": 1139.1, "ser_p25_ns": 1269.0, "ser_p50_ns": 1316.0, "ser_p75_ns": 1396.0, "ser_p95_ns": 1521.9, "ser_p99_ns": 1558.13, "ser_ci_low_ns": 1306.2709239130434, "ser_ci_high_ns": 1350.5801630434783, "deser_mean_ns": 995.5, "deser_median_ns": 976.5, "deser_std_ns": 95.79516838397585, "deser_mad_ns": 57.0, "deser_cv": 0.09622819526265781, "deser_min_ns": 821.0, "deser_max_ns": 1305.0, "deser_p5_ns": 880.1, "deser_p25_ns": 928.0, "deser_p50_ns": 976.5, "deser_p75_ns": 1060.25, "deser_p95_ns": 1164.4, "deser_p99_ns": 1283.16, "deser_ci_low_ns": 976.216847826087, "deser_ci_high_ns": 1015.0796195652174, "total_mean_ns": 2323.5978260869565, "total_median_ns": 2303.0, "total_std_ns": 166.04812355423203, "total_mad_ns": 123.5, "total_cv": 0.07146164525117694, "total_min_ns": 2009.0, "total_max_ns": 2854.0, "total_p5_ns": 2072.75, "total_p25_ns": 2205.0, "total_p50_ns": 2303.0, "total_p75_ns": 2457.5, "total_p95_ns": 2598.9, "total_p99_ns": 2702.9400000000005, "total_ci_low_ns": 2290.040760869565, "total_ci_high_ns": 2358.4133152173913, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.89209174665112}, {"serializer": "nanoserde", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.1.37", "avg_time_ser_ns": 330.25, "avg_time_deser_ns": 359.84090909090907, "avg_time_total_ns": 690.0909090909091, "median_size_bytes": 258.0, "avg_ops_per_sec": 1449084.4421024898, "min_ops_per_sec": 1184834.1232227487, "max_ops_per_sec": 1748251.7482517483, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 330.25, "ser_median_ns": 328.0, "ser_std_ns": 37.11282890006523, "ser_mad_ns": 26.5, "ser_cv": 0.11237798304334665, "ser_min_ns": 261.0, "ser_max_ns": 421.0, "ser_p5_ns": 267.7, "ser_p25_ns": 302.75, "ser_p50_ns": 328.0, "ser_p75_ns": 356.75, "ser_p95_ns": 389.0, "ser_p99_ns": 407.94999999999993, "ser_ci_low_ns": 322.6357954545455, "ser_ci_high_ns": 337.56960227272725, "deser_mean_ns": 359.84090909090907, "deser_median_ns": 363.0, "deser_std_ns": 44.61943454811972, "deser_mad_ns": 35.5, "deser_cv": 0.1239976706952105, "deser_min_ns": 276.0, "deser_max_ns": 481.0, "deser_p5_ns": 295.7, "deser_p25_ns": 321.0, "deser_p50_ns": 363.0, "deser_p75_ns": 393.25, "deser_p95_ns": 434.04999999999984, "deser_p99_ns": 460.9899999999999, "deser_ci_low_ns": 350.6474431818182, "deser_ci_high_ns": 369.51278409090907, "total_mean_ns": 690.0909090909091, "total_median_ns": 682.5, "total_std_ns": 58.055192994656494, "total_mad_ns": 35.5, "total_cv": 0.08412687695181417, "total_min_ns": 572.0, "total_max_ns": 844.0, "total_p5_ns": 588.5, "total_p25_ns": 656.0, "total_p50_ns": 682.5, "total_p75_ns": 726.5, "total_p95_ns": 779.3, "total_p99_ns": 820.5099999999999, "total_ci_low_ns": 677.3857954545455, "total_ci_high_ns": 702.9553977272727, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.990807060228523}, {"serializer": "postcard", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "1.1.3", "avg_time_ser_ns": 163.43023255813952, "avg_time_deser_ns": 414.1744186046512, "avg_time_total_ns": 577.6046511627907, "median_size_bytes": 114.0, "avg_ops_per_sec": 1731287.9977452995, "min_ops_per_sec": 1410437.2355430184, "max_ops_per_sec": 2409638.5542168673, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 163.43023255813952, "ser_median_ns": 164.5, "ser_std_ns": 10.517817597016215, "ser_mad_ns": 6.5, "ser_cv": 0.06435662136914938, "ser_min_ns": 135.0, "ser_max_ns": 188.0, "ser_p5_ns": 146.0, "ser_p25_ns": 157.0, "ser_p50_ns": 164.5, "ser_p75_ns": 170.75, "ser_p95_ns": 178.75, "ser_p99_ns": 182.05000000000004, "ser_ci_low_ns": 161.08052325581397, "ser_ci_high_ns": 165.47732558139535, "deser_mean_ns": 414.1744186046512, "deser_median_ns": 409.5, "deser_std_ns": 58.23869582017161, "deser_mad_ns": 38.5, "deser_cv": 0.14061393752027732, "deser_min_ns": 259.0, "deser_max_ns": 557.0, "deser_p5_ns": 334.5, "deser_p25_ns": 372.5, "deser_p50_ns": 409.5, "deser_p75_ns": 452.75, "deser_p95_ns": 515.25, "deser_p99_ns": 547.6500000000001, "deser_ci_low_ns": 402.80232558139534, "deser_ci_high_ns": 426.8747093023255, "total_mean_ns": 577.6046511627907, "total_median_ns": 576.0, "total_std_ns": 59.621803960664764, "total_mad_ns": 39.0, "total_cv": 0.10322251360102207, "total_min_ns": 415.0, "total_max_ns": 709.0, "total_p5_ns": 479.5, "total_p25_ns": 538.25, "total_p50_ns": 576.0, "total_p75_ns": 616.75, "total_p95_ns": 675.75, "total_p99_ns": 703.9000000000001, "total_ci_low_ns": 564.9880813953488, "total_ci_high_ns": 589.7098837209302, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.9917846309403437, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.945777389158479}, {"serializer": "bson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "2.15.0", "avg_time_ser_ns": 1142.5670103092784, "avg_time_deser_ns": 2170.680412371134, "avg_time_total_ns": 3313.2474226804125, "median_size_bytes": 540.0, "avg_ops_per_sec": 301818.69097811036, "min_ops_per_sec": 271665.30834012496, "max_ops_per_sec": 336587.0077415012, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 1142.5670103092784, "ser_median_ns": 1149.0, "ser_std_ns": 74.19061980473212, "ser_mad_ns": 52.0, "ser_cv": 0.06493327667901917, "ser_min_ns": 948.0, "ser_max_ns": 1322.0, "ser_p5_ns": 1019.0, "ser_p25_ns": 1086.0, "ser_p50_ns": 1149.0, "ser_p75_ns": 1197.0, "ser_p95_ns": 1263.1999999999998, "ser_p99_ns": 1295.12, "ser_ci_low_ns": 1127.1018041237114, "ser_ci_high_ns": 1157.1157216494844, "deser_mean_ns": 2170.680412371134, "deser_median_ns": 2174.0, "deser_std_ns": 92.39065004909774, "deser_mad_ns": 69.0, "deser_cv": 0.042562990628443174, "deser_min_ns": 2008.0, "deser_max_ns": 2403.0, "deser_p5_ns": 2022.8, "deser_p25_ns": 2099.0, "deser_p50_ns": 2174.0, "deser_p75_ns": 2229.0, "deser_p95_ns": 2312.0, "deser_p99_ns": 2376.12, "deser_ci_low_ns": 2152.432731958763, "deser_ci_high_ns": 2188.547680412371, "total_mean_ns": 3313.2474226804125, "total_median_ns": 3327.0, "total_std_ns": 146.8937421324109, "total_mad_ns": 105.0, "total_cv": 0.04433527696328035, "total_min_ns": 2971.0, "total_max_ns": 3681.0, "total_p5_ns": 3085.4, "total_p25_ns": 3208.0, "total_p50_ns": 3327.0, "total_p75_ns": 3423.0, "total_p95_ns": 3523.2, "total_p99_ns": 3581.159999999999, "total_ci_low_ns": 3284.615721649485, "total_ci_high_ns": 3342.559536082474, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.024250874701263}, {"serializer": "bincode", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "2.0.1", "avg_time_ser_ns": 358.05263157894734, "avg_time_deser_ns": 452.0736842105263, "avg_time_total_ns": 810.1263157894737, "median_size_bytes": 122.0, "avg_ops_per_sec": 1234375.4060445414, "min_ops_per_sec": 1038421.5991692627, "max_ops_per_sec": 1531393.568147014, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 358.05263157894734, "ser_median_ns": 349.0, "ser_std_ns": 54.37348548559476, "ser_mad_ns": 33.0, "ser_cv": 0.15185891874559762, "ser_min_ns": 223.0, "ser_max_ns": 504.0, "ser_p5_ns": 282.4, "ser_p25_ns": 319.5, "ser_p50_ns": 349.0, "ser_p75_ns": 391.0, "ser_p95_ns": 460.5, "ser_p99_ns": 480.50000000000006, "ser_ci_low_ns": 347.24052631578945, "ser_ci_high_ns": 368.91631578947363, "deser_mean_ns": 452.0736842105263, "deser_median_ns": 456.0, "deser_std_ns": 34.90175942198731, "deser_mad_ns": 27.0, "deser_cv": 0.07720369630215834, "deser_min_ns": 381.0, "deser_max_ns": 547.0, "deser_p5_ns": 403.1, "deser_p25_ns": 423.0, "deser_p50_ns": 456.0, "deser_p75_ns": 473.5, "deser_p95_ns": 504.79999999999995, "deser_p99_ns": 545.12, "deser_ci_low_ns": 445.2521052631579, "deser_ci_high_ns": 458.95, "total_mean_ns": 810.1263157894737, "total_median_ns": 811.0, "total_std_ns": 66.04628327282722, "total_mad_ns": 46.0, "total_cv": 0.08152590773262891, "total_min_ns": 653.0, "total_max_ns": 963.0, "total_p5_ns": 706.0, "total_p25_ns": 761.5, "total_p50_ns": 811.0, "total_p75_ns": 849.5, "total_p95_ns": 915.2, "total_p99_ns": 938.5600000000001, "total_ci_low_ns": 796.9776315789474, "total_ci_high_ns": 822.9473684210526, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.396108415429433}, {"serializer": "serde_json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "1.0.150", "avg_time_ser_ns": 1488.872340425532, "avg_time_deser_ns": 2809.0851063829787, "avg_time_total_ns": 4297.95744680851, "median_size_bytes": 460.0, "avg_ops_per_sec": 232668.66002653414, "min_ops_per_sec": 200601.80541624874, "max_ops_per_sec": 269614.45133459155, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 1488.872340425532, "ser_median_ns": 1494.5, "ser_std_ns": 81.39657783123043, "ser_mad_ns": 53.5, "ser_cv": 0.05466995095628321, "ser_min_ns": 1307.0, "ser_max_ns": 1663.0, "ser_p5_ns": 1350.25, "ser_p25_ns": 1430.0, "ser_p50_ns": 1494.5, "ser_p75_ns": 1541.75, "ser_p95_ns": 1626.7, "ser_p99_ns": 1660.21, "ser_ci_low_ns": 1473.072340425532, "ser_ci_high_ns": 1504.9683510638297, "deser_mean_ns": 2809.0851063829787, "deser_median_ns": 2766.5, "deser_std_ns": 237.8669393822181, "deser_mad_ns": 160.0, "deser_cv": 0.08467772615422793, "deser_min_ns": 2402.0, "deser_max_ns": 3446.0, "deser_p5_ns": 2512.65, "deser_p25_ns": 2628.25, "deser_p50_ns": 2766.5, "deser_p75_ns": 2948.75, "deser_p95_ns": 3319.4, "deser_p99_ns": 3423.68, "deser_ci_low_ns": 2762.286170212766, "deser_ci_high_ns": 2857.7824468085105, "total_mean_ns": 4297.95744680851, "total_median_ns": 4278.0, "total_std_ns": 274.8161033179706, "total_mad_ns": 211.0, "total_cv": 0.06394109451270578, "total_min_ns": 3709.0, "total_max_ns": 4985.0, "total_p5_ns": 3909.55, "total_p25_ns": 4078.5, "total_p50_ns": 4278.0, "total_p75_ns": 4490.0, "total_p95_ns": 4761.6, "total_p99_ns": 4909.669999999999, "total_ci_low_ns": 4243.584574468085, "total_ci_high_ns": 4354.697340425532, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.50235243188064}, {"serializer": "rmp-serde", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "1.3.1", "avg_time_ser_ns": 497.2551020408163, "avg_time_deser_ns": 873.2551020408164, "avg_time_total_ns": 1370.5102040816328, "median_size_bytes": 333.0, "avg_ops_per_sec": 729655.2751098205, "min_ops_per_sec": 614628.1499692686, "max_ops_per_sec": 892060.6601248885, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 497.2551020408163, "ser_median_ns": 493.5, "ser_std_ns": 65.34781032220594, "ser_mad_ns": 47.5, "ser_cv": 0.13141707355843676, "ser_min_ns": 347.0, "ser_max_ns": 631.0, "ser_p5_ns": 399.0, "ser_p25_ns": 452.25, "ser_p50_ns": 493.5, "ser_p75_ns": 544.0, "ser_p95_ns": 611.75, "ser_p99_ns": 629.06, "ser_ci_low_ns": 484.977806122449, "ser_ci_high_ns": 509.8086734693877, "deser_mean_ns": 873.2551020408164, "deser_median_ns": 875.0, "deser_std_ns": 62.117665403201684, "deser_mad_ns": 43.0, "deser_cv": 0.07113346977078214, "deser_min_ns": 732.0, "deser_max_ns": 1007.0, "deser_p5_ns": 763.85, "deser_p25_ns": 830.0, "deser_p50_ns": 875.0, "deser_p75_ns": 913.75, "deser_p95_ns": 973.3, "deser_p99_ns": 1005.06, "deser_ci_low_ns": 861.0918367346939, "deser_ci_high_ns": 884.8380102040817, "total_mean_ns": 1370.5102040816328, "total_median_ns": 1371.5, "total_std_ns": 101.95776818242652, "total_mad_ns": 65.5, "total_cv": 0.07439402339273173, "total_min_ns": 1121.0, "total_max_ns": 1627.0, "total_p5_ns": 1190.65, "total_p25_ns": 1305.75, "total_p50_ns": 1371.5, "total_p75_ns": 1435.75, "total_p95_ns": 1524.15, "total_p99_ns": 1604.69, "total_ci_low_ns": 1351.0272959183674, "total_ci_high_ns": 1390.3997448979592, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.731207109388256}, {"serializer": "nanoserde", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.1.37", "avg_time_ser_ns": 523.0215053763441, "avg_time_deser_ns": 407.1720430107527, "avg_time_total_ns": 930.1935483870968, "median_size_bytes": 258.0, "avg_ops_per_sec": 1075045.0825357193, "min_ops_per_sec": 904159.1320072332, "max_ops_per_sec": 1329787.2340425532, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 523.0215053763441, "ser_median_ns": 517.0, "ser_std_ns": 55.86843600090725, "ser_mad_ns": 35.0, "ser_cv": 0.10681862108271571, "ser_min_ns": 385.0, "ser_max_ns": 657.0, "ser_p5_ns": 429.6, "ser_p25_ns": 486.0, "ser_p50_ns": 517.0, "ser_p75_ns": 563.0, "ser_p95_ns": 615.1999999999999, "ser_p99_ns": 647.8, "ser_ci_low_ns": 512.0424731182795, "ser_ci_high_ns": 534.3018817204301, "deser_mean_ns": 407.1720430107527, "deser_median_ns": 404.0, "deser_std_ns": 30.734707634682884, "deser_mad_ns": 22.0, "deser_cv": 0.0754833446015134, "deser_min_ns": 358.0, "deser_max_ns": 478.0, "deser_p5_ns": 363.0, "deser_p25_ns": 386.0, "deser_p50_ns": 404.0, "deser_p75_ns": 429.0, "deser_p95_ns": 462.4, "deser_p99_ns": 474.32, "deser_ci_low_ns": 400.8680107526882, "deser_ci_high_ns": 413.4951612903226, "total_mean_ns": 930.1935483870968, "total_median_ns": 924.0, "total_std_ns": 73.44093427707385, "total_mad_ns": 50.0, "total_cv": 0.07895231525139719, "total_min_ns": 752.0, "total_max_ns": 1106.0, "total_p5_ns": 816.0, "total_p25_ns": 886.0, "total_p50_ns": 924.0, "total_p75_ns": 981.0, "total_p95_ns": 1047.8, "total_p99_ns": 1093.12, "total_ci_low_ns": 915.8698924731183, "total_ci_high_ns": 944.4529569892474, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.99226741265014}, {"serializer": "flexbuffers", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "2.0.0", "avg_time_ser_ns": 2846.639175257732, "avg_time_deser_ns": 1918.7422680412371, "avg_time_total_ns": 4765.381443298969, "median_size_bytes": 452.0, "avg_ops_per_sec": 209846.79020945737, "min_ops_per_sec": 188643.65214110544, "max_ops_per_sec": 236462.52069047056, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 2846.639175257732, "ser_median_ns": 2865.0, "ser_std_ns": 136.37732472560353, "ser_mad_ns": 89.0, "ser_cv": 0.04790818798215129, "ser_min_ns": 2510.0, "ser_max_ns": 3191.0, "ser_p5_ns": 2624.2, "ser_p25_ns": 2767.0, "ser_p50_ns": 2865.0, "ser_p75_ns": 2936.0, "ser_p95_ns": 3054.0, "ser_p99_ns": 3149.72, "ser_ci_low_ns": 2819.775773195876, "ser_ci_high_ns": 2873.7940721649484, "deser_mean_ns": 1918.7422680412371, "deser_median_ns": 1917.0, "deser_std_ns": 92.53808656783292, "deser_mad_ns": 59.0, "deser_cv": 0.04822851307815361, "deser_min_ns": 1719.0, "deser_max_ns": 2148.0, "deser_p5_ns": 1792.0, "deser_p25_ns": 1853.0, "deser_p50_ns": 1917.0, "deser_p75_ns": 1970.0, "deser_p95_ns": 2097.2, "deser_p99_ns": 2129.7599999999998, "deser_ci_low_ns": 1900.6079896907218, "deser_ci_high_ns": 1936.6090206185568, "total_mean_ns": 4765.381443298969, "total_median_ns": 4765.0, "total_std_ns": 210.58378396431317, "total_mad_ns": 163.0, "total_cv": 0.04419033113507292, "total_min_ns": 4229.0, "total_max_ns": 5301.0, "total_p5_ns": 4413.4, "total_p25_ns": 4594.0, "total_p50_ns": 4765.0, "total_p75_ns": 4914.0, "total_p95_ns": 5094.599999999999, "total_p99_ns": 5175.239999999999, "total_ci_low_ns": 4726.019845360825, "total_ci_high_ns": 4808.454639175257, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.823276008675478}, {"serializer": "serde_avro_fast", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "2.1.0", "avg_time_ser_ns": 839.4175824175824, "avg_time_deser_ns": 929.3406593406594, "avg_time_total_ns": 1768.7582417582419, "median_size_bytes": 114.0, "avg_ops_per_sec": 565368.3903154258, "min_ops_per_sec": 505816.8942842691, "max_ops_per_sec": 634517.7664974619, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 839.4175824175824, "ser_median_ns": 839.0, "ser_std_ns": 41.795019887825, "ser_mad_ns": 28.0, "ser_cv": 0.04979049851142309, "ser_min_ns": 738.0, "ser_max_ns": 951.0, "ser_p5_ns": 776.0, "ser_p25_ns": 812.0, "ser_p50_ns": 839.0, "ser_p75_ns": 868.0, "ser_p95_ns": 910.0, "ser_p99_ns": 938.3999999999999, "ser_ci_low_ns": 830.725, "ser_ci_high_ns": 847.8467032967033, "deser_mean_ns": 929.3406593406594, "deser_median_ns": 928.0, "deser_std_ns": 63.98666871226985, "deser_mad_ns": 42.0, "deser_cv": 0.06885168325430478, "deser_min_ns": 783.0, "deser_max_ns": 1107.0, "deser_p5_ns": 834.5, "deser_p25_ns": 887.0, "deser_p50_ns": 928.0, "deser_p75_ns": 971.5, "deser_p95_ns": 1033.5, "deser_p99_ns": 1102.5, "deser_ci_low_ns": 916.7137362637362, "deser_ci_high_ns": 942.264010989011, "total_mean_ns": 1768.7582417582419, "total_median_ns": 1769.0, "total_std_ns": 88.67736034002273, "total_mad_ns": 58.0, "total_cv": 0.050135376472859636, "total_min_ns": 1576.0, "total_max_ns": 1977.0, "total_p5_ns": 1603.0, "total_p25_ns": 1711.5, "total_p50_ns": 1769.0, "total_p75_ns": 1825.5, "total_p95_ns": 1936.5, "total_p99_ns": 1959.0, "total_ci_low_ns": 1750.3181318681318, "total_ci_high_ns": 1787.8351648351647, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.084883926185714}, {"serializer": "simd-json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.14.3", "avg_time_ser_ns": 802.9042553191489, "avg_time_deser_ns": 1496.0212765957447, "avg_time_total_ns": 2298.925531914894, "median_size_bytes": 460.0, "avg_ops_per_sec": 434985.8166858708, "min_ops_per_sec": 398565.16540454363, "max_ops_per_sec": 492125.9842519685, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 802.9042553191489, "ser_median_ns": 797.0, "ser_std_ns": 74.5110324729981, "ser_mad_ns": 46.5, "ser_cv": 0.09280189011251469, "ser_min_ns": 640.0, "ser_max_ns": 975.0, "ser_p5_ns": 676.8, "ser_p25_ns": 758.25, "ser_p50_ns": 797.0, "ser_p75_ns": 859.0, "ser_p95_ns": 923.6999999999998, "ser_p99_ns": 946.1699999999998, "ser_ci_low_ns": 788.115425531915, "ser_ci_high_ns": 818.0359042553191, "deser_mean_ns": 1496.0212765957447, "deser_median_ns": 1491.0, "deser_std_ns": 65.33716996471412, "deser_mad_ns": 43.0, "deser_cv": 0.04367395770826965, "deser_min_ns": 1366.0, "deser_max_ns": 1657.0, "deser_p5_ns": 1383.3, "deser_p25_ns": 1456.25, "deser_p50_ns": 1491.0, "deser_p75_ns": 1534.0, "deser_p95_ns": 1614.1, "deser_p99_ns": 1644.9099999999999, "deser_ci_low_ns": 1482.594414893617, "deser_ci_high_ns": 1509.2662234042552, "total_mean_ns": 2298.925531914894, "total_median_ns": 2303.5, "total_std_ns": 106.8852504345979, "total_mad_ns": 73.5, "total_cv": 0.0464935679519674, "total_min_ns": 2032.0, "total_max_ns": 2509.0, "total_p5_ns": 2114.2, "total_p25_ns": 2229.75, "total_p50_ns": 2303.5, "total_p75_ns": 2375.0, "total_p95_ns": 2485.45, "total_p99_ns": 2500.63, "total_ci_low_ns": 2277.595478723404, "total_ci_high_ns": 2321.5109042553195, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.629426936112452}, {"serializer": "bitcode", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.6.9", "avg_time_ser_ns": 1567.061224489796, "avg_time_deser_ns": 1069.3061224489795, "avg_time_total_ns": 2636.3673469387754, "median_size_bytes": 122.0, "avg_ops_per_sec": 379309.81096437585, "min_ops_per_sec": 323624.59546925564, "max_ops_per_sec": 459770.1149425287, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 1567.061224489796, "ser_median_ns": 1555.0, "ser_std_ns": 145.22870809938757, "ser_mad_ns": 103.5, "ser_cv": 0.0926758353979891, "ser_min_ns": 1207.0, "ser_max_ns": 1883.0, "ser_p5_ns": 1339.7, "ser_p25_ns": 1462.0, "ser_p50_ns": 1555.0, "ser_p75_ns": 1662.25, "ser_p95_ns": 1816.2499999999998, "ser_p99_ns": 1873.3, "ser_ci_low_ns": 1538.8500000000001, "ser_ci_high_ns": 1596.420918367347, "deser_mean_ns": 1069.3061224489795, "deser_median_ns": 1062.0, "deser_std_ns": 88.37098560132618, "deser_mad_ns": 60.0, "deser_cv": 0.08264329900116389, "deser_min_ns": 884.0, "deser_max_ns": 1272.0, "deser_p5_ns": 940.65, "deser_p25_ns": 1009.5, "deser_p50_ns": 1062.0, "deser_p75_ns": 1131.25, "deser_p95_ns": 1218.9499999999998, "deser_p99_ns": 1269.09, "deser_ci_low_ns": 1051.265306122449, "deser_ci_high_ns": 1087.5614795918368, "total_mean_ns": 2636.3673469387754, "total_median_ns": 2637.0, "total_std_ns": 217.6947824460405, "total_mad_ns": 146.0, "total_cv": 0.08257376677753855, "total_min_ns": 2175.0, "total_max_ns": 3090.0, "total_p5_ns": 2299.0, "total_p25_ns": 2491.75, "total_p50_ns": 2637.0, "total_p75_ns": 2793.25, "total_p95_ns": 3035.0499999999997, "total_p99_ns": 3080.3, "total_ci_low_ns": 2595.0829081632655, "total_ci_high_ns": 2680.1242346938775, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.922734419366815}, {"serializer": "minicbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.25.1", "avg_time_ser_ns": 529.7912087912088, "avg_time_deser_ns": 623.8131868131868, "avg_time_total_ns": 1153.6043956043957, "median_size_bytes": 133.0, "avg_ops_per_sec": 866848.2920230905, "min_ops_per_sec": 759878.4194528875, "max_ops_per_sec": 1071811.3612004288, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 529.7912087912088, "ser_median_ns": 534.0, "ser_std_ns": 54.55568337508557, "ser_mad_ns": 36.0, "ser_cv": 0.1029758185296465, "ser_min_ns": 384.0, "ser_max_ns": 663.0, "ser_p5_ns": 434.0, "ser_p25_ns": 493.5, "ser_p50_ns": 534.0, "ser_p75_ns": 565.0, "ser_p95_ns": 626.5, "ser_p99_ns": 655.8, "ser_ci_low_ns": 518.5041208791209, "ser_ci_high_ns": 540.5730769230769, "deser_mean_ns": 623.8131868131868, "deser_median_ns": 617.0, "deser_std_ns": 45.79638803998801, "deser_mad_ns": 29.0, "deser_cv": 0.07341362607921696, "deser_min_ns": 533.0, "deser_max_ns": 736.0, "deser_p5_ns": 555.5, "deser_p25_ns": 590.0, "deser_p50_ns": 617.0, "deser_p75_ns": 650.0, "deser_p95_ns": 705.0, "deser_p99_ns": 730.5999999999999, "deser_ci_low_ns": 614.8337912087912, "deser_ci_high_ns": 633.4417582417582, "total_mean_ns": 1153.6043956043957, "total_median_ns": 1144.0, "total_std_ns": 80.90239374578054, "total_mad_ns": 48.0, "total_cv": 0.07013010183910942, "total_min_ns": 933.0, "total_max_ns": 1316.0, "total_p5_ns": 1019.0, "total_p25_ns": 1102.0, "total_p50_ns": 1144.0, "total_p75_ns": 1213.0, "total_p95_ns": 1290.5, "total_p99_ns": 1314.2, "total_ci_low_ns": 1137.0642857142857, "total_ci_high_ns": 1170.0263736263735, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.959728592233528}, {"serializer": "sonic-rs", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.3.17", "avg_time_ser_ns": 674.7628865979382, "avg_time_deser_ns": 968.3298969072165, "avg_time_total_ns": 1643.0927835051546, "median_size_bytes": 460.0, "avg_ops_per_sec": 608608.3573848663, "min_ops_per_sec": 534759.3582887701, "max_ops_per_sec": 686341.7982155114, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 674.7628865979382, "ser_median_ns": 672.0, "ser_std_ns": 64.86986543519846, "ser_mad_ns": 38.0, "ser_cv": 0.09613727536537081, "ser_min_ns": 531.0, "ser_max_ns": 827.0, "ser_p5_ns": 568.6, "ser_p25_ns": 634.0, "ser_p50_ns": 672.0, "ser_p75_ns": 709.0, "ser_p95_ns": 795.1999999999999, "ser_p99_ns": 826.04, "ser_ci_low_ns": 661.6574742268041, "ser_ci_high_ns": 687.176030927835, "deser_mean_ns": 968.3298969072165, "deser_median_ns": 964.0, "deser_std_ns": 47.65276348437302, "deser_mad_ns": 34.0, "deser_cv": 0.04921129011566501, "deser_min_ns": 878.0, "deser_max_ns": 1079.0, "deser_p5_ns": 896.6, "deser_p25_ns": 930.0, "deser_p50_ns": 964.0, "deser_p75_ns": 998.0, "deser_p95_ns": 1047.8, "deser_p99_ns": 1071.32, "deser_ci_low_ns": 959.2577319587629, "deser_ci_high_ns": 977.8489690721649, "total_mean_ns": 1643.0927835051546, "total_median_ns": 1636.0, "total_std_ns": 90.23592716621464, "total_mad_ns": 62.0, "total_cv": 0.05491833940973033, "total_min_ns": 1457.0, "total_max_ns": 1870.0, "total_p5_ns": 1505.2, "total_p25_ns": 1578.0, "total_p50_ns": 1636.0, "total_p75_ns": 1703.0, "total_p95_ns": 1796.1999999999998, "total_p99_ns": 1822.9599999999996, "total_ci_low_ns": 1625.0306701030927, "total_ci_high_ns": 1662.6417525773195, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.842681249179924}, {"serializer": "prost", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.13.5", "avg_time_ser_ns": 796.4895833333334, "avg_time_deser_ns": 750.1145833333334, "avg_time_total_ns": 1546.6041666666667, "median_size_bytes": 155.0, "avg_ops_per_sec": 646577.8520144941, "min_ops_per_sec": 547345.3749315818, "max_ops_per_sec": 774593.3384972889, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 796.4895833333334, "ser_median_ns": 789.0, "ser_std_ns": 78.61243972695773, "ser_mad_ns": 54.0, "ser_cv": 0.09869864135317659, "ser_min_ns": 619.0, "ser_max_ns": 979.0, "ser_p5_ns": 678.0, "ser_p25_ns": 735.75, "ser_p50_ns": 789.0, "ser_p75_ns": 845.0, "ser_p95_ns": 939.75, "ser_p99_ns": 964.75, "ser_ci_low_ns": 780.67578125, "ser_ci_high_ns": 811.1356770833333, "deser_mean_ns": 750.1145833333334, "deser_median_ns": 748.5, "deser_std_ns": 39.46160553504519, "deser_mad_ns": 26.0, "deser_cv": 0.05260743679943811, "deser_min_ns": 672.0, "deser_max_ns": 850.0, "deser_p5_ns": 691.0, "deser_p25_ns": 721.75, "deser_p50_ns": 748.5, "deser_p75_ns": 771.5, "deser_p95_ns": 822.25, "deser_p99_ns": 848.1, "deser_ci_low_ns": 742.12421875, "deser_ci_high_ns": 758.2190104166667, "total_mean_ns": 1546.6041666666667, "total_median_ns": 1541.5, "total_std_ns": 102.4104722406913, "total_mad_ns": 72.5, "total_cv": 0.06621634316517616, "total_min_ns": 1291.0, "total_max_ns": 1827.0, "total_p5_ns": 1404.75, "total_p25_ns": 1470.25, "total_p50_ns": 1541.5, "total_p75_ns": 1613.5, "total_p95_ns": 1716.25, "total_p99_ns": 1786.1499999999999, "total_ci_low_ns": 1525.9893229166667, "total_ci_high_ns": 1566.4690104166666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.943043919138773}, {"serializer": "speedy", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.8.7", "avg_time_ser_ns": 224.8875, "avg_time_deser_ns": 292.7125, "avg_time_total_ns": 517.6, "median_size_bytes": 214.0, "avg_ops_per_sec": 1931993.8176197836, "min_ops_per_sec": 1692047.377326565, "max_ops_per_sec": 2304147.465437788, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 224.8875, "ser_median_ns": 222.5, "ser_std_ns": 21.578818581942922, "ser_mad_ns": 16.5, "ser_cv": 0.09595383728283219, "ser_min_ns": 164.0, "ser_max_ns": 279.0, "ser_p5_ns": 192.8, "ser_p25_ns": 211.0, "ser_p50_ns": 222.5, "ser_p75_ns": 242.25, "ser_p95_ns": 257.05, "ser_p99_ns": 277.41999999999996, "ser_ci_low_ns": 220.4, "ser_ci_high_ns": 229.5265625, "deser_mean_ns": 292.7125, "deser_median_ns": 292.5, "deser_std_ns": 21.736158843407054, "deser_mad_ns": 10.5, "deser_cv": 0.0742577062592375, "deser_min_ns": 249.0, "deser_max_ns": 339.0, "deser_p5_ns": 254.95, "deser_p25_ns": 281.0, "deser_p50_ns": 292.5, "deser_p75_ns": 300.25, "deser_p95_ns": 335.05, "deser_p99_ns": 338.21, "deser_ci_low_ns": 288.0746875, "deser_ci_high_ns": 297.5003125, "total_mean_ns": 517.6, "total_median_ns": 515.0, "total_std_ns": 34.48852313231318, "total_mad_ns": 24.5, "total_cv": 0.06663161347046596, "total_min_ns": 434.0, "total_max_ns": 591.0, "total_p5_ns": 457.75, "total_p25_ns": 498.0, "total_p50_ns": 515.0, "total_p75_ns": 544.25, "total_p95_ns": 571.2, "total_p99_ns": 590.21, "total_ci_low_ns": 509.5621875, "total_ci_high_ns": 525.1253125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "ciborium", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.2.2", "avg_time_ser_ns": 1281.2244897959183, "avg_time_deser_ns": 2384.612244897959, "avg_time_total_ns": 3665.8367346938776, "median_size_bytes": 339.0, "avg_ops_per_sec": 272789.01718014095, "min_ops_per_sec": 242365.48715462917, "max_ops_per_sec": 305157.1559353067, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 1281.2244897959183, "ser_median_ns": 1279.5, "ser_std_ns": 84.09255218038774, "ser_mad_ns": 65.5, "ser_cv": 0.0656345182675852, "ser_min_ns": 1092.0, "ser_max_ns": 1461.0, "ser_p5_ns": 1142.85, "ser_p25_ns": 1217.5, "ser_p50_ns": 1279.5, "ser_p75_ns": 1347.75, "ser_p95_ns": 1406.5, "ser_p99_ns": 1447.42, "ser_ci_low_ns": 1264.5204081632653, "ser_ci_high_ns": 1297.2492346938775, "deser_mean_ns": 2384.612244897959, "deser_median_ns": 2377.0, "deser_std_ns": 126.53923499392046, "deser_mad_ns": 92.5, "deser_cv": 0.05306491034953788, "deser_min_ns": 2134.0, "deser_max_ns": 2709.0, "deser_p5_ns": 2217.1, "deser_p25_ns": 2286.75, "deser_p50_ns": 2377.0, "deser_p75_ns": 2469.75, "deser_p95_ns": 2601.0999999999995, "deser_p99_ns": 2671.17, "deser_ci_low_ns": 2359.254336734694, "deser_ci_high_ns": 2409.6438775510205, "total_mean_ns": 3665.8367346938776, "total_median_ns": 3674.5, "total_std_ns": 186.87212088614393, "total_mad_ns": 127.0, "total_cv": 0.05097666219489969, "total_min_ns": 3277.0, "total_max_ns": 4126.0, "total_p5_ns": 3377.9, "total_p25_ns": 3516.75, "total_p50_ns": 3674.5, "total_p75_ns": 3780.0, "total_p95_ns": 3955.2999999999997, "total_p99_ns": 4094.96, "total_ci_low_ns": 3629.466836734694, "total_ci_high_ns": 3704.1022959183674, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.2891905518193}, {"serializer": "postcard", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "1.1.3", "avg_time_ser_ns": 309.6585365853659, "avg_time_deser_ns": 438.7317073170732, "avg_time_total_ns": 748.390243902439, "median_size_bytes": 114.0, "avg_ops_per_sec": 1336201.2775387825, "min_ops_per_sec": 1138952.1640091117, "max_ops_per_sec": 1642036.1247947456, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 309.6585365853659, "ser_median_ns": 301.5, "ser_std_ns": 37.639032640051894, "ser_mad_ns": 17.0, "ser_cv": 0.12155012115958787, "ser_min_ns": 212.0, "ser_max_ns": 404.0, "ser_p5_ns": 270.05, "ser_p25_ns": 290.25, "ser_p50_ns": 301.5, "ser_p75_ns": 323.25, "ser_p95_ns": 393.0, "ser_p99_ns": 400.76, "ser_ci_low_ns": 302.25548780487804, "ser_ci_high_ns": 317.7073170731707, "deser_mean_ns": 438.7317073170732, "deser_median_ns": 439.0, "deser_std_ns": 27.41093265738776, "deser_mad_ns": 19.0, "deser_cv": 0.06247766505186225, "deser_min_ns": 366.0, "deser_max_ns": 502.0, "deser_p5_ns": 392.1, "deser_p25_ns": 424.0, "deser_p50_ns": 439.0, "deser_p75_ns": 460.0, "deser_p95_ns": 477.9, "deser_p99_ns": 497.95, "deser_ci_low_ns": 432.65731707317076, "deser_ci_high_ns": 444.6341463414634, "total_mean_ns": 748.390243902439, "total_median_ns": 743.5, "total_std_ns": 51.765796443416754, "total_mad_ns": 34.0, "total_cv": 0.06916952334050602, "total_min_ns": 609.0, "total_max_ns": 878.0, "total_p5_ns": 671.35, "total_p25_ns": 715.25, "total_p50_ns": 743.5, "total_p75_ns": 779.75, "total_p95_ns": 835.95, "total_p99_ns": 869.9, "total_ci_low_ns": 737.2926829268292, "total_ci_high_ns": 759.4518292682927, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.209999034782465}, {"serializer": "rkyv", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.8.17", "avg_time_ser_ns": 517.8068181818181, "avg_time_deser_ns": 367.84090909090907, "avg_time_total_ns": 885.6477272727273, "median_size_bytes": 272.0, "avg_ops_per_sec": 1129117.1074072649, "min_ops_per_sec": 955109.8376313276, "max_ops_per_sec": 1381215.4696132597, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 517.8068181818181, "ser_median_ns": 516.0, "ser_std_ns": 55.01073206778137, "ser_mad_ns": 34.5, "ser_cv": 0.1062379446082639, "ser_min_ns": 389.0, "ser_max_ns": 646.0, "ser_p5_ns": 432.2, "ser_p25_ns": 483.75, "ser_p50_ns": 516.0, "ser_p75_ns": 551.0, "ser_p95_ns": 615.3, "ser_p99_ns": 638.17, "ser_ci_low_ns": 506.2724431818182, "ser_ci_high_ns": 529.865625, "deser_mean_ns": 367.84090909090907, "deser_median_ns": 368.0, "deser_std_ns": 31.523713520246673, "deser_mad_ns": 21.0, "deser_cv": 0.08569931386412442, "deser_min_ns": 304.0, "deser_max_ns": 435.0, "deser_p5_ns": 318.35, "deser_p25_ns": 345.75, "deser_p50_ns": 368.0, "deser_p75_ns": 388.0, "deser_p95_ns": 421.0, "deser_p99_ns": 433.26, "deser_ci_low_ns": 361.35170454545454, "deser_ci_high_ns": 374.5002840909091, "total_mean_ns": 885.6477272727273, "total_median_ns": 888.0, "total_std_ns": 72.09620644167825, "total_mad_ns": 55.5, "total_cv": 0.08140506007246476, "total_min_ns": 724.0, "total_max_ns": 1047.0, "total_p5_ns": 769.0, "total_p25_ns": 825.75, "total_p50_ns": 888.0, "total_p75_ns": 940.75, "total_p95_ns": 996.9499999999999, "total_p99_ns": 1026.9899999999998, "total_ci_low_ns": 870.9977272727273, "total_ci_high_ns": 901.2392045454545, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.387342231958666}, {"serializer": "bson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "2.15.0", "avg_time_ser_ns": 79328.29032258065, "avg_time_deser_ns": 221891.67741935485, "avg_time_total_ns": 301219.96774193546, "median_size_bytes": 55020.0, "avg_ops_per_sec": 3319.833035958397, "min_ops_per_sec": 3182.80774568093, "max_ops_per_sec": 3498.11801250927, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 79328.29032258065, "ser_median_ns": 78357.0, "ser_std_ns": 4691.271285429173, "ser_mad_ns": 2719.0, "ser_cv": 0.059137430875575187, "ser_min_ns": 72949.0, "ser_max_ns": 90752.0, "ser_p5_ns": 73912.4, "ser_p25_ns": 75921.0, "ser_p50_ns": 78357.0, "ser_p75_ns": 81377.0, "ser_p95_ns": 89246.0, "ser_p99_ns": 90567.08, "ser_ci_low_ns": 78427.69220430107, "ser_ci_high_ns": 80300.91747311829, "deser_mean_ns": 221891.67741935485, "deser_median_ns": 221813.0, "deser_std_ns": 5063.398358641054, "deser_mad_ns": 3297.0, "deser_cv": 0.022819235121972137, "deser_min_ns": 212489.0, "deser_max_ns": 235089.0, "deser_p5_ns": 214477.2, "deser_p25_ns": 218516.0, "deser_p50_ns": 221813.0, "deser_p75_ns": 225062.0, "deser_p95_ns": 230072.4, "deser_p99_ns": 231955.47999999998, "deser_ci_low_ns": 220883.289516129, "deser_ci_high_ns": 222955.47338709678, "total_mean_ns": 301219.96774193546, "total_median_ns": 300801.0, "total_std_ns": 5499.395096086582, "total_mad_ns": 3468.0, "total_cv": 0.018257073517775838, "total_min_ns": 285868.0, "total_max_ns": 314188.0, "total_p5_ns": 292908.2, "total_p25_ns": 297671.0, "total_p50_ns": 300801.0, "total_p75_ns": 305479.0, "total_p95_ns": 310420.4, "total_p99_ns": 312580.76, "total_ci_low_ns": 300136.35376344086, "total_ci_high_ns": 302320.4991935484, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 59.869382656722266}, {"serializer": "speedy", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.8.7", "avg_time_ser_ns": 7954.740740740741, "avg_time_deser_ns": 45621.0, "avg_time_total_ns": 53575.74074074074, "median_size_bytes": 22420.0, "avg_ops_per_sec": 18665.16423616272, "min_ops_per_sec": 17729.867735186697, "max_ops_per_sec": 19656.019656019656, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 7954.740740740741, "ser_median_ns": 7951.0, "ser_std_ns": 315.72344614305166, "ser_mad_ns": 222.0, "ser_cv": 0.03968997311578651, "ser_min_ns": 7183.0, "ser_max_ns": 8765.0, "ser_p5_ns": 7504.0, "ser_p25_ns": 7731.0, "ser_p50_ns": 7951.0, "ser_p75_ns": 8176.0, "ser_p95_ns": 8488.0, "ser_p99_ns": 8641.0, "ser_ci_low_ns": 7888.27037037037, "ser_ci_high_ns": 8021.316975308642, "deser_mean_ns": 45621.0, "deser_median_ns": 45435.0, "deser_std_ns": 1164.587577213496, "deser_mad_ns": 714.0, "deser_cv": 0.025527445194395038, "deser_min_ns": 42628.0, "deser_max_ns": 48157.0, "deser_p5_ns": 44128.0, "deser_p25_ns": 44772.0, "deser_p50_ns": 45435.0, "deser_p75_ns": 46373.0, "deser_p95_ns": 47853.0, "deser_p99_ns": 48116.2, "deser_ci_low_ns": 45376.64382716049, "deser_ci_high_ns": 45888.68919753087, "total_mean_ns": 53575.74074074074, "total_median_ns": 53494.0, "total_std_ns": 1298.3870356886825, "total_mad_ns": 904.0, "total_cv": 0.024234607263233728, "total_min_ns": 50875.0, "total_max_ns": 56402.0, "total_p5_ns": 51791.0, "total_p25_ns": 52574.0, "total_p50_ns": 53494.0, "total_p75_ns": 54320.0, "total_p95_ns": 55903.0, "total_p99_ns": 56115.6, "total_ci_low_ns": 53295.878703703704, "total_ci_high_ns": 53851.892592592594, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "nanoserde", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.1.37", "avg_time_ser_ns": 29929.279069767443, "avg_time_deser_ns": 56630.75581395349, "avg_time_total_ns": 86560.03488372093, "median_size_bytes": 26820.0, "avg_ops_per_sec": 11552.675566077743, "min_ops_per_sec": 10978.997178397725, "max_ops_per_sec": 12419.737446750376, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 29929.279069767443, "ser_median_ns": 30011.0, "ser_std_ns": 1179.5457116660264, "ser_mad_ns": 807.0, "ser_cv": 0.03941109670287797, "ser_min_ns": 26894.0, "ser_max_ns": 32584.0, "ser_p5_ns": 28113.5, "ser_p25_ns": 29143.5, "ser_p50_ns": 30011.0, "ser_p75_ns": 30641.0, "ser_p95_ns": 31952.75, "ser_p99_ns": 32386.800000000003, "ser_ci_low_ns": 29677.60668604651, "ser_ci_high_ns": 30167.69069767442, "deser_mean_ns": 56630.75581395349, "deser_median_ns": 56187.5, "deser_std_ns": 1740.7593943688619, "deser_mad_ns": 1072.0, "deser_cv": 0.030738763227665573, "deser_min_ns": 53319.0, "deser_max_ns": 61359.0, "deser_p5_ns": 54602.5, "deser_p25_ns": 55362.25, "deser_p50_ns": 56187.5, "deser_p75_ns": 57763.5, "deser_p95_ns": 59854.0, "deser_p99_ns": 61067.450000000004, "deser_ci_low_ns": 56277.296220930235, "deser_ci_high_ns": 57015.90959302325, "total_mean_ns": 86560.03488372093, "total_median_ns": 86671.5, "total_std_ns": 2304.229382207343, "total_mad_ns": 1744.0, "total_cv": 0.026620014482465187, "total_min_ns": 80517.0, "total_max_ns": 91083.0, "total_p5_ns": 82910.25, "total_p25_ns": 84948.75, "total_p50_ns": 86671.5, "total_p75_ns": 88433.75, "total_p95_ns": 89763.25, "total_p99_ns": 91037.1, "total_ci_low_ns": 86093.02529069768, "total_ci_high_ns": 87050.90523255814, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.420307918422925}, {"serializer": "minicbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.25.1", "avg_time_ser_ns": 34723.5, "avg_time_deser_ns": 75873.46341463414, "avg_time_total_ns": 110596.96341463414, "median_size_bytes": 14255.0, "avg_ops_per_sec": 9041.839568876268, "min_ops_per_sec": 8687.719907910168, "max_ops_per_sec": 9390.464921918285, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 34723.5, "ser_median_ns": 34616.0, "ser_std_ns": 584.2378648427791, "ser_mad_ns": 321.0, "ser_cv": 0.016825431331599035, "ser_min_ns": 33241.0, "ser_max_ns": 36528.0, "ser_p5_ns": 33901.75, "ser_p25_ns": 34373.5, "ser_p50_ns": 34616.0, "ser_p75_ns": 35064.25, "ser_p95_ns": 35777.0, "ser_p99_ns": 36182.94, "ser_ci_low_ns": 34600.49756097561, "ser_ci_high_ns": 34850.19603658537, "deser_mean_ns": 75873.46341463414, "deser_median_ns": 75483.0, "deser_std_ns": 1436.6504355456925, "deser_mad_ns": 1015.5, "deser_cv": 0.018934820830501294, "deser_min_ns": 72085.0, "deser_max_ns": 80000.0, "deser_p5_ns": 73993.0, "deser_p25_ns": 74911.75, "deser_p50_ns": 75483.0, "deser_p75_ns": 76989.25, "deser_p95_ns": 78457.35, "deser_p99_ns": 79192.43, "deser_ci_low_ns": 75562.47378048781, "deser_ci_high_ns": 76172.1893292683, "total_mean_ns": 110596.96341463414, "total_median_ns": 110128.5, "total_std_ns": 1738.6445653355697, "total_mad_ns": 1134.5, "total_cv": 0.015720545227062836, "total_min_ns": 106491.0, "total_max_ns": 115105.0, "total_p5_ns": 108436.05, "total_p25_ns": 109385.75, "total_p50_ns": 110128.5, "total_p75_ns": 111668.5, "total_p95_ns": 113709.8, "total_p99_ns": 114878.2, "total_ci_low_ns": 110231.48201219512, "total_ci_high_ns": 110977.77286585365, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 36.95622893735099}, {"serializer": "bincode", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "2.0.1", "avg_time_ser_ns": 17815.082352941175, "avg_time_deser_ns": 56868.035294117646, "avg_time_total_ns": 74683.11764705883, "median_size_bytes": 13346.0, "avg_ops_per_sec": 13389.907003157656, "min_ops_per_sec": 12129.151201998884, "max_ops_per_sec": 14452.120126022488, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 17815.082352941175, "ser_median_ns": 16957.0, "ser_std_ns": 2085.219282814872, "ser_mad_ns": 1144.0, "ser_cv": 0.11704797325680694, "ser_min_ns": 15311.0, "ser_max_ns": 22665.0, "ser_p5_ns": 15587.0, "ser_p25_ns": 16086.0, "ser_p50_ns": 16957.0, "ser_p75_ns": 19270.0, "ser_p95_ns": 22167.6, "ser_p99_ns": 22550.76, "ser_ci_low_ns": 17380.99794117647, "ser_ci_high_ns": 18261.840294117646, "deser_mean_ns": 56868.035294117646, "deser_median_ns": 56604.0, "deser_std_ns": 1500.9701897920086, "deser_mad_ns": 895.0, "deser_cv": 0.02639391675884514, "deser_min_ns": 53083.0, "deser_max_ns": 60588.0, "deser_p5_ns": 54912.8, "deser_p25_ns": 55876.0, "deser_p50_ns": 56604.0, "deser_p75_ns": 57883.0, "deser_p95_ns": 59452.6, "deser_p99_ns": 60554.4, "deser_ci_low_ns": 56568.255000000005, "deser_ci_high_ns": 57196.31323529412, "total_mean_ns": 74683.11764705883, "total_median_ns": 74079.0, "total_std_ns": 2856.252712457875, "total_mad_ns": 1747.0, "total_cv": 0.03824495819732775, "total_min_ns": 69194.0, "total_max_ns": 82446.0, "total_p5_ns": 71207.0, "total_p25_ns": 72441.0, "total_p50_ns": 74079.0, "total_p75_ns": 76810.0, "total_p95_ns": 80067.6, "total_p99_ns": 80893.68, "total_ci_low_ns": 74118.69705882353, "total_ci_high_ns": 75285.51029411764, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.395401964468224}, {"serializer": "flexbuffers", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "2.0.0", "avg_time_ser_ns": 226363.65979381444, "avg_time_deser_ns": 186959.84536082475, "avg_time_total_ns": 413323.5051546392, "median_size_bytes": 47320.0, "avg_ops_per_sec": 2419.4123671380944, "min_ops_per_sec": 2334.277937805499, "max_ops_per_sec": 2536.706137814171, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 226363.65979381444, "ser_median_ns": 226511.0, "ser_std_ns": 5002.66325921878, "ser_mad_ns": 3496.0, "ser_cv": 0.022100116528313354, "ser_min_ns": 214593.0, "ser_max_ns": 237842.0, "ser_p5_ns": 218590.4, "ser_p25_ns": 222810.0, "ser_p50_ns": 226511.0, "ser_p75_ns": 229642.0, "ser_p95_ns": 235311.0, "ser_p99_ns": 237073.04, "ser_ci_low_ns": 225383.6618556701, "ser_ci_high_ns": 227324.96108247424, "deser_mean_ns": 186959.84536082475, "deser_median_ns": 187533.0, "deser_std_ns": 4645.711854182051, "deser_mad_ns": 3548.0, "deser_cv": 0.02484871468103763, "deser_min_ns": 174819.0, "deser_max_ns": 196761.0, "deser_p5_ns": 178894.2, "deser_p25_ns": 183714.0, "deser_p50_ns": 187533.0, "deser_p75_ns": 189920.0, "deser_p95_ns": 194115.6, "deser_p99_ns": 196512.36, "deser_ci_low_ns": 186025.03479381444, "deser_ci_high_ns": 187873.36417525774, "total_mean_ns": 413323.5051546392, "total_median_ns": 412224.0, "total_std_ns": 7243.145775955637, "total_mad_ns": 4898.0, "total_cv": 0.017524156467331117, "total_min_ns": 394212.0, "total_max_ns": 428398.0, "total_p5_ns": 401294.6, "total_p25_ns": 408940.0, "total_p50_ns": 412224.0, "total_p75_ns": 419614.0, "total_p95_ns": 425104.4, "total_p99_ns": 427728.88, "total_ci_low_ns": 411899.39201030927, "total_ci_high_ns": 414748.6711340206, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 66.08396682031976}, {"serializer": "rmp-serde", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "1.3.1", "avg_time_ser_ns": 24646.488636363636, "avg_time_deser_ns": 99159.14772727272, "avg_time_total_ns": 123805.63636363637, "median_size_bytes": 34256.0, "avg_ops_per_sec": 8077.176688974359, "min_ops_per_sec": 7620.963747075455, "max_ops_per_sec": 8690.664488206769, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 24646.488636363636, "ser_median_ns": 24560.0, "ser_std_ns": 569.2456592360093, "ser_mad_ns": 424.5, "ser_cv": 0.023096420250150337, "ser_min_ns": 23452.0, "ser_max_ns": 25951.0, "ser_p5_ns": 23808.45, "ser_p25_ns": 24239.25, "ser_p50_ns": 24560.0, "ser_p75_ns": 25143.5, "ser_p95_ns": 25661.65, "ser_p99_ns": 25894.45, "ser_ci_low_ns": 24530.27471590909, "ser_ci_high_ns": 24769.320738636365, "deser_mean_ns": 99159.14772727272, "deser_median_ns": 99274.5, "deser_std_ns": 2982.9648659880177, "deser_mad_ns": 1920.0, "deser_cv": 0.030082598876226357, "deser_min_ns": 91367.0, "deser_max_ns": 106036.0, "deser_p5_ns": 93387.9, "deser_p25_ns": 97567.0, "deser_p50_ns": 99274.5, "deser_p75_ns": 101262.5, "deser_p95_ns": 103393.0, "deser_p99_ns": 105144.25, "deser_ci_low_ns": 98547.91619318182, "deser_ci_high_ns": 99763.3002840909, "total_mean_ns": 123805.63636363637, "total_median_ns": 123759.0, "total_std_ns": 3167.2988897565842, "total_mad_ns": 2045.5, "total_cv": 0.02558283275935625, "total_min_ns": 115066.0, "total_max_ns": 131217.0, "total_p5_ns": 118491.85, "total_p25_ns": 122144.25, "total_p50_ns": 123759.0, "total_p75_ns": 125977.25, "total_p95_ns": 128294.4, "total_p99_ns": 130599.3, "total_ci_low_ns": 123131.64204545454, "total_ci_high_ns": 124454.73352272729, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.46243221991603}, {"serializer": "ciborium", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.2.2", "avg_time_ser_ns": 43765.347368421055, "avg_time_deser_ns": 203492.16842105263, "avg_time_total_ns": 247257.5157894737, "median_size_bytes": 34855.0, "avg_ops_per_sec": 4044.3664444620786, "min_ops_per_sec": 3896.5694602471985, "max_ops_per_sec": 4202.280998125782, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 43765.347368421055, "ser_median_ns": 43520.0, "ser_std_ns": 862.5993346241726, "ser_mad_ns": 596.0, "ser_cv": 0.01970964213679662, "ser_min_ns": 42414.0, "ser_max_ns": 45997.0, "ser_p5_ns": 42688.4, "ser_p25_ns": 43065.0, "ser_p50_ns": 43520.0, "ser_p75_ns": 44360.5, "ser_p95_ns": 45469.8, "ser_p99_ns": 45762.94, "ser_ci_low_ns": 43594.59710526316, "ser_ci_high_ns": 43941.79815789474, "deser_mean_ns": 203492.16842105263, "deser_median_ns": 202306.0, "deser_std_ns": 3845.2960754021015, "deser_mad_ns": 1982.0, "deser_cv": 0.018896531032317997, "deser_min_ns": 195280.0, "deser_max_ns": 211561.0, "deser_p5_ns": 196976.1, "deser_p25_ns": 200783.0, "deser_p50_ns": 202306.0, "deser_p75_ns": 206033.5, "deser_p95_ns": 210779.4, "deser_p99_ns": 211393.68, "deser_ci_low_ns": 202716.9244736842, "deser_ci_high_ns": 204261.9247368421, "total_mean_ns": 247257.5157894737, "total_median_ns": 246438.0, "total_std_ns": 4301.175749359203, "total_mad_ns": 2925.0, "total_cv": 0.0173955308724424, "total_min_ns": 237966.0, "total_max_ns": 256636.0, "total_p5_ns": 240989.0, "total_p25_ns": 244225.5, "total_p50_ns": 246438.0, "total_p75_ns": 249942.5, "total_p95_ns": 254780.7, "total_p99_ns": 256292.9, "total_ci_low_ns": 246390.86105263158, "total_ci_high_ns": 248143.7692105263, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 58.76440257986629}, {"serializer": "sonic-rs", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.3.17", "avg_time_ser_ns": 35311.62765957447, "avg_time_deser_ns": 97443.1914893617, "avg_time_total_ns": 132754.81914893616, "median_size_bytes": 47101.0, "avg_ops_per_sec": 7532.683230716551, "min_ops_per_sec": 6991.931311266798, "max_ops_per_sec": 8265.009256810368, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 35311.62765957447, "ser_median_ns": 35310.5, "ser_std_ns": 1112.7695757384306, "ser_mad_ns": 745.0, "ser_cv": 0.03151283725763663, "ser_min_ns": 32952.0, "ser_max_ns": 37950.0, "ser_p5_ns": 33320.05, "ser_p25_ns": 34560.75, "ser_p50_ns": 35310.5, "ser_p75_ns": 35994.25, "ser_p95_ns": 37207.5, "ser_p99_ns": 37806.78, "ser_ci_low_ns": 35087.7335106383, "ser_ci_high_ns": 35529.60771276596, "deser_mean_ns": 97443.1914893617, "deser_median_ns": 97303.0, "deser_std_ns": 4517.199975521509, "deser_mad_ns": 2731.0, "deser_cv": 0.046357266284886324, "deser_min_ns": 86236.0, "deser_max_ns": 106368.0, "deser_p5_ns": 87796.6, "deser_p25_ns": 95000.0, "deser_p50_ns": 97303.0, "deser_p75_ns": 101230.25, "deser_p95_ns": 104107.25, "deser_p99_ns": 105529.14, "deser_ci_low_ns": 96530.02659574468, "deser_ci_high_ns": 98324.74175531915, "total_mean_ns": 132754.81914893616, "total_median_ns": 132391.0, "total_std_ns": 4969.347087124982, "total_mad_ns": 3073.0, "total_cv": 0.0374325174707965, "total_min_ns": 120992.0, "total_max_ns": 143022.0, "total_p5_ns": 122478.75, "total_p25_ns": 129718.75, "total_p50_ns": 132391.0, "total_p75_ns": 136731.5, "total_p95_ns": 139963.8, "total_p99_ns": 142183.13999999998, "total_ci_low_ns": 131786.93324468087, "total_ci_high_ns": 133735.2300531915, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.028663433663255}, {"serializer": "bitcode", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.6.9", "avg_time_ser_ns": 107858.78888888888, "avg_time_deser_ns": 102817.84444444445, "avg_time_total_ns": 210676.63333333333, "median_size_bytes": 13028.0, "avg_ops_per_sec": 4746.610880276392, "min_ops_per_sec": 4439.117503440316, "max_ops_per_sec": 5062.317123793903, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 107858.78888888888, "ser_median_ns": 107363.5, "ser_std_ns": 3136.183870492621, "ser_mad_ns": 1868.5, "ser_cv": 0.029076757701436567, "ser_min_ns": 101261.0, "ser_max_ns": 115841.0, "ser_p5_ns": 103958.6, "ser_p25_ns": 105547.0, "ser_p50_ns": 107363.5, "ser_p75_ns": 109472.75, "ser_p95_ns": 113720.95, "ser_p99_ns": 115706.61, "ser_ci_low_ns": 107238.95305555555, "ser_ci_high_ns": 108540.76138888889, "deser_mean_ns": 102817.84444444445, "deser_median_ns": 102384.5, "deser_std_ns": 3465.8429715756706, "deser_mad_ns": 2426.5, "deser_cv": 0.03370857452130665, "deser_min_ns": 95765.0, "deser_max_ns": 112269.0, "deser_p5_ns": 97901.6, "deser_p25_ns": 100298.75, "deser_p50_ns": 102384.5, "deser_p75_ns": 105242.75, "deser_p95_ns": 108633.0, "deser_p99_ns": 111913.89, "deser_ci_low_ns": 102087.83944444444, "deser_ci_high_ns": 103536.44638888889, "total_mean_ns": 210676.63333333333, "total_median_ns": 210994.0, "total_std_ns": 4986.2156811655395, "total_mad_ns": 3444.5, "total_cv": 0.023667625603625113, "total_min_ns": 197538.0, "total_max_ns": 225270.0, "total_p5_ns": 203893.8, "total_p25_ns": 207140.75, "total_p50_ns": 210994.0, "total_p75_ns": 213910.0, "total_p95_ns": 218422.45, "total_p99_ns": 222297.4, "total_ci_low_ns": 209655.72166666665, "total_ci_high_ns": 211738.62333333332, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 41.96374107671825}, {"serializer": "simd-json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.14.3", "avg_time_ser_ns": 51127.48314606742, "avg_time_deser_ns": 162461.70786516854, "avg_time_total_ns": 213589.19101123596, "median_size_bytes": 47101.0, "avg_ops_per_sec": 4681.884861614531, "min_ops_per_sec": 4479.423766926622, "max_ops_per_sec": 4934.518933749148, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 51127.48314606742, "ser_median_ns": 50876.0, "ser_std_ns": 1020.2821480573573, "ser_mad_ns": 650.0, "ser_cv": 0.019955649785116297, "ser_min_ns": 49588.0, "ser_max_ns": 54346.0, "ser_p5_ns": 49800.2, "ser_p25_ns": 50355.0, "ser_p50_ns": 50876.0, "ser_p75_ns": 51807.0, "ser_p95_ns": 53063.0, "ser_p99_ns": 54091.68, "ser_ci_low_ns": 50922.85702247191, "ser_ci_high_ns": 51343.88764044944, "deser_mean_ns": 162461.70786516854, "deser_median_ns": 162113.0, "deser_std_ns": 3592.112936073366, "deser_mad_ns": 2362.0, "deser_cv": 0.022110520585284996, "deser_min_ns": 152709.0, "deser_max_ns": 171325.0, "deser_p5_ns": 157516.2, "deser_p25_ns": 160314.0, "deser_p50_ns": 162113.0, "deser_p75_ns": 165007.0, "deser_p95_ns": 167822.6, "deser_p99_ns": 170611.32, "deser_ci_low_ns": 161678.37106741575, "deser_ci_high_ns": 163219.48370786518, "total_mean_ns": 213589.19101123596, "total_median_ns": 213430.0, "total_std_ns": 3952.615163857297, "total_mad_ns": 2627.0, "total_cv": 0.018505689099451515, "total_min_ns": 202654.0, "total_max_ns": 223243.0, "total_p5_ns": 208142.4, "total_p25_ns": 211109.0, "total_p50_ns": 213430.0, "total_p75_ns": 216155.0, "total_p95_ns": 219204.8, "total_p99_ns": 222493.24, "total_ci_low_ns": 212749.71629213484, "total_ci_high_ns": 214420.1761235955, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 53.139719775806554}, {"serializer": "postcard", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "1.1.3", "avg_time_ser_ns": 19629.285714285714, "avg_time_deser_ns": 61111.0989010989, "avg_time_total_ns": 80740.38461538461, "median_size_bytes": 12467.0, "avg_ops_per_sec": 12385.375729427176, "min_ops_per_sec": 11696.590443885607, "max_ops_per_sec": 12841.421288508212, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 19629.285714285714, "ser_median_ns": 19627.0, "ser_std_ns": 343.9699045528479, "ser_mad_ns": 257.0, "ser_cv": 0.01752330214963018, "ser_min_ns": 18829.0, "ser_max_ns": 20558.0, "ser_p5_ns": 19178.0, "ser_p25_ns": 19351.0, "ser_p50_ns": 19627.0, "ser_p75_ns": 19867.0, "ser_p95_ns": 20252.0, "ser_p99_ns": 20379.8, "ser_ci_low_ns": 19558.039285714283, "ser_ci_high_ns": 19697.75796703297, "deser_mean_ns": 61111.0989010989, "deser_median_ns": 60958.0, "deser_std_ns": 1512.1188743316084, "deser_mad_ns": 1040.0, "deser_cv": 0.02474376834196345, "deser_min_ns": 58522.0, "deser_max_ns": 65315.0, "deser_p5_ns": 59063.0, "deser_p25_ns": 59971.5, "deser_p50_ns": 60958.0, "deser_p75_ns": 61994.5, "deser_p95_ns": 64103.0, "deser_p99_ns": 64901.0, "deser_ci_low_ns": 60825.47417582417, "deser_ci_high_ns": 61421.23873626373, "total_mean_ns": 80740.38461538461, "total_median_ns": 80583.0, "total_std_ns": 1639.154041769587, "total_mad_ns": 1190.0, "total_cv": 0.0203015386857255, "total_min_ns": 77873.0, "total_max_ns": 85495.0, "total_p5_ns": 78651.5, "total_p25_ns": 79423.5, "total_p50_ns": 80583.0, "total_p75_ns": 81789.0, "total_p95_ns": 83800.0, "total_p99_ns": 84569.79999999999, "total_ci_low_ns": 80419.67857142858, "total_ci_high_ns": 81086.5043956044, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.168524777744118}, {"serializer": "serde_avro_fast", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "2.1.0", "avg_time_ser_ns": 53531.74698795181, "avg_time_deser_ns": 84308.72289156627, "avg_time_total_ns": 137840.46987951806, "median_size_bytes": 12467.0, "avg_ops_per_sec": 7254.763429594139, "min_ops_per_sec": 6925.303674566129, "max_ops_per_sec": 7598.322290438271, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 53531.74698795181, "ser_median_ns": 53427.0, "ser_std_ns": 842.4838399459571, "ser_mad_ns": 515.0, "ser_cv": 0.015738022525877436, "ser_min_ns": 52121.0, "ser_max_ns": 55648.0, "ser_p5_ns": 52236.8, "ser_p25_ns": 52945.0, "ser_p50_ns": 53427.0, "ser_p75_ns": 54006.5, "ser_p95_ns": 55141.8, "ser_p99_ns": 55326.56, "ser_ci_low_ns": 53352.44427710843, "ser_ci_high_ns": 53714.71355421687, "deser_mean_ns": 84308.72289156627, "deser_median_ns": 84110.0, "deser_std_ns": 2104.0420873170037, "deser_mad_ns": 1261.0, "deser_cv": 0.024956398521456896, "deser_min_ns": 78488.0, "deser_max_ns": 89753.0, "deser_p5_ns": 81019.6, "deser_p25_ns": 83077.0, "deser_p50_ns": 84110.0, "deser_p75_ns": 85666.0, "deser_p95_ns": 87237.0, "deser_p99_ns": 89149.48, "deser_ci_low_ns": 83850.3843373494, "deser_ci_high_ns": 84752.0798192771, "total_mean_ns": 137840.46987951806, "total_median_ns": 137637.0, "total_std_ns": 2400.7164648940534, "total_mad_ns": 1567.0, "total_cv": 0.017416630014337898, "total_min_ns": 131608.0, "total_max_ns": 144398.0, "total_p5_ns": 134669.3, "total_p25_ns": 136356.5, "total_p50_ns": 137637.0, "total_p75_ns": 139699.0, "total_p95_ns": 141510.3, "total_p99_ns": 142593.99999999997, "total_ci_low_ns": 137363.9969879518, "total_ci_high_ns": 138351.42078313255, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 43.31353859030653}, {"serializer": "serde_json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "1.0.150", "avg_time_ser_ns": 51192.14444444444, "avg_time_deser_ns": 144376.51111111112, "avg_time_total_ns": 195568.65555555557, "median_size_bytes": 47101.0, "avg_ops_per_sec": 5113.2938310552945, "min_ops_per_sec": 4875.385155427279, "max_ops_per_sec": 5370.453910764538, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 51192.14444444444, "ser_median_ns": 50840.5, "ser_std_ns": 1268.081321259934, "ser_mad_ns": 787.0, "ser_cv": 0.024771013893276173, "ser_min_ns": 49322.0, "ser_max_ns": 54626.0, "ser_p5_ns": 49472.1, "ser_p25_ns": 50338.75, "ser_p50_ns": 50840.5, "ser_p75_ns": 52012.0, "ser_p95_ns": 53526.8, "ser_p99_ns": 54231.73, "ser_ci_low_ns": 50937.13361111111, "ser_ci_high_ns": 51451.76388888888, "deser_mean_ns": 144376.51111111112, "deser_median_ns": 143948.5, "deser_std_ns": 3147.373152059051, "deser_mad_ns": 1972.0, "deser_cv": 0.02179975903169495, "deser_min_ns": 136803.0, "deser_max_ns": 152908.0, "deser_p5_ns": 139738.6, "deser_p25_ns": 142301.0, "deser_p50_ns": 143948.5, "deser_p75_ns": 146537.5, "deser_p95_ns": 149880.4, "deser_p99_ns": 152050.04, "deser_ci_low_ns": 143703.62027777778, "deser_ci_high_ns": 145030.83472222224, "total_mean_ns": 195568.65555555557, "total_median_ns": 194930.0, "total_std_ns": 3528.1316160610686, "total_mad_ns": 2096.0, "total_cv": 0.018040373627556207, "total_min_ns": 186204.0, "total_max_ns": 205112.0, "total_p5_ns": 190980.4, "total_p25_ns": 193136.0, "total_p50_ns": 194930.0, "total_p75_ns": 197755.5, "total_p95_ns": 201946.65, "total_p99_ns": 204147.24, "total_ci_low_ns": 194825.17138888888, "total_ci_high_ns": 196284.19833333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 52.130324807452176}, {"serializer": "prost", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.13.5", "avg_time_ser_ns": 43980.55172413793, "avg_time_deser_ns": 81001.27586206897, "avg_time_total_ns": 124981.8275862069, "median_size_bytes": 16477.0, "avg_ops_per_sec": 8001.163203588494, "min_ops_per_sec": 7597.571816047591, "max_ops_per_sec": 8343.20612725058, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 43980.55172413793, "ser_median_ns": 43728.0, "ser_std_ns": 962.4561211214785, "ser_mad_ns": 561.0, "ser_cv": 0.021883675474522343, "ser_min_ns": 42304.0, "ser_max_ns": 46895.0, "ser_p5_ns": 42827.7, "ser_p25_ns": 43301.0, "ser_p50_ns": 43728.0, "ser_p75_ns": 44549.0, "ser_p95_ns": 45988.8, "ser_p99_ns": 46351.48, "ser_ci_low_ns": 43785.73735632184, "ser_ci_high_ns": 44191.504022988505, "deser_mean_ns": 81001.27586206897, "deser_median_ns": 80966.0, "deser_std_ns": 2188.252949164439, "deser_mad_ns": 1499.0, "deser_cv": 0.02701504298389882, "deser_min_ns": 75163.0, "deser_max_ns": 87062.0, "deser_p5_ns": 77597.4, "deser_p25_ns": 79501.5, "deser_p50_ns": 80966.0, "deser_p75_ns": 82392.5, "deser_p95_ns": 84135.1, "deser_p99_ns": 86690.48, "deser_ci_low_ns": 80534.82442528737, "deser_ci_high_ns": 81473.52959770114, "total_mean_ns": 124981.8275862069, "total_median_ns": 124658.0, "total_std_ns": 2504.5747316075235, "total_mad_ns": 1874.0, "total_cv": 0.020039511183175644, "total_min_ns": 119858.0, "total_max_ns": 131621.0, "total_p5_ns": 121708.2, "total_p25_ns": 123037.0, "total_p50_ns": 124658.0, "total_p75_ns": 126753.0, "total_p95_ns": 129365.7, "total_p99_ns": 131242.6, "total_ci_low_ns": 124457.1, "total_ci_high_ns": 125533.22241379309, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 35.268116785788834}, {"serializer": "bincode", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "2.0.1", "avg_time_ser_ns": 16965.0, "avg_time_deser_ns": 57254.8375, "avg_time_total_ns": 74219.8375, "median_size_bytes": 13346.0, "avg_ops_per_sec": 13473.48678848832, "min_ops_per_sec": 12509.069075079433, "max_ops_per_sec": 14478.90423652738, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 16965.0, "ser_median_ns": 16725.0, "ser_std_ns": 1176.7404884744935, "ser_mad_ns": 676.0, "ser_cv": 0.06936283456967247, "ser_min_ns": 15337.0, "ser_max_ns": 20279.0, "ser_p5_ns": 15675.45, "ser_p25_ns": 16059.75, "ser_p50_ns": 16725.0, "ser_p75_ns": 17441.0, "ser_p95_ns": 19599.05, "ser_p99_ns": 19976.429999999997, "ser_ci_low_ns": 16699.3709375, "ser_ci_high_ns": 17215.1175, "deser_mean_ns": 57254.8375, "deser_median_ns": 56965.5, "deser_std_ns": 2130.2786674770027, "deser_mad_ns": 1067.0, "deser_cv": 0.037206963821650924, "deser_min_ns": 51879.0, "deser_max_ns": 62727.0, "deser_p5_ns": 54416.55, "deser_p25_ns": 56139.75, "deser_p50_ns": 56965.5, "deser_p75_ns": 58400.5, "deser_p95_ns": 61286.45, "deser_p99_ns": 62132.92, "deser_ci_low_ns": 56793.970624999994, "deser_ci_high_ns": 57726.8309375, "total_mean_ns": 74219.8375, "total_median_ns": 74093.5, "total_std_ns": 2453.1497678262685, "total_mad_ns": 1535.5, "total_cv": 0.03305248098699042, "total_min_ns": 69066.0, "total_max_ns": 79942.0, "total_p5_ns": 70507.5, "total_p25_ns": 72594.25, "total_p50_ns": 74093.5, "total_p75_ns": 75652.75, "total_p95_ns": 79164.4, "total_p99_ns": 79771.36, "total_ci_low_ns": 73696.75437499999, "total_ci_high_ns": 74745.77375000001, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.229258333203555}, {"serializer": "bson", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "2.15.0", "avg_time_ser_ns": 82600.60606060606, "avg_time_deser_ns": 224807.0, "avg_time_total_ns": 307407.6060606061, "median_size_bytes": 55020.0, "avg_ops_per_sec": 3253.009946028622, "min_ops_per_sec": 2991.790526794476, "max_ops_per_sec": 3438.6358243957457, "runs": 99, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 0, "ser_mean_ns": 82600.60606060606, "ser_median_ns": 80869.0, "ser_std_ns": 6939.7401686615285, "ser_mad_ns": 4411.0, "ser_cv": 0.08401560835485485, "ser_min_ns": 73370.0, "ser_max_ns": 103224.0, "ser_p5_ns": 74613.9, "ser_p25_ns": 76974.0, "ser_p50_ns": 80869.0, "ser_p75_ns": 88009.5, "ser_p95_ns": 95950.9, "ser_p99_ns": 98782.63999999998, "ser_ci_low_ns": 81231.7265151515, "ser_ci_high_ns": 84000.00808080808, "deser_mean_ns": 224807.0, "deser_median_ns": 224216.0, "deser_std_ns": 7481.046348565671, "deser_mad_ns": 4469.0, "deser_cv": 0.033277639702347664, "deser_min_ns": 209977.0, "deser_max_ns": 241386.0, "deser_p5_ns": 213786.6, "deser_p25_ns": 220391.0, "deser_p50_ns": 224216.0, "deser_p75_ns": 229374.5, "deser_p95_ns": 239208.3, "deser_p99_ns": 240724.5, "deser_ci_low_ns": 223340.72373737374, "deser_ci_high_ns": 226307.46212121213, "total_mean_ns": 307407.6060606061, "total_median_ns": 304678.0, "total_std_ns": 10279.928808236557, "total_mad_ns": 6926.0, "total_cv": 0.033440710657659675, "total_min_ns": 290813.0, "total_max_ns": 334248.0, "total_p5_ns": 295085.9, "total_p25_ns": 299167.5, "total_p50_ns": 304678.0, "total_p75_ns": 313993.5, "total_p95_ns": 328420.4, "total_p99_ns": 330940.5, "total_ci_low_ns": 305426.09924242424, "total_ci_high_ns": 309457.027020202, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 33.47977934144695}, {"serializer": "speedy", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.8.7", "avg_time_ser_ns": 7983.472527472528, "avg_time_deser_ns": 45938.318681318684, "avg_time_total_ns": 53921.79120879121, "median_size_bytes": 22420.0, "avg_ops_per_sec": 18545.37799250563, "min_ops_per_sec": 16980.811682798438, "max_ops_per_sec": 20232.675771370763, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 7983.472527472528, "ser_median_ns": 7932.0, "ser_std_ns": 373.298133479256, "ser_mad_ns": 237.0, "ser_cv": 0.046758867421998605, "ser_min_ns": 7333.0, "ser_max_ns": 8898.0, "ser_p5_ns": 7464.0, "ser_p25_ns": 7727.5, "ser_p50_ns": 7932.0, "ser_p75_ns": 8238.0, "ser_p95_ns": 8672.5, "ser_p99_ns": 8889.9, "ser_ci_low_ns": 7911.140934065934, "ser_ci_high_ns": 8063.019505494505, "deser_mean_ns": 45938.318681318684, "deser_median_ns": 45570.0, "deser_std_ns": 1703.6776878213977, "deser_mad_ns": 1013.0, "deser_cv": 0.03708620029479261, "deser_min_ns": 41485.0, "deser_max_ns": 50584.0, "deser_p5_ns": 43498.0, "deser_p25_ns": 44926.0, "deser_p50_ns": 45570.0, "deser_p75_ns": 47002.5, "deser_p95_ns": 48994.5, "deser_p99_ns": 50407.6, "deser_ci_low_ns": 45592.15714285714, "deser_ci_high_ns": 46280.68076923077, "total_mean_ns": 53921.79120879121, "total_median_ns": 53501.0, "total_std_ns": 1928.6813947846654, "total_mad_ns": 1150.0, "total_cv": 0.035768125493394594, "total_min_ns": 49425.0, "total_max_ns": 58890.0, "total_p5_ns": 51375.0, "total_p25_ns": 52596.0, "total_p50_ns": 53501.0, "total_p75_ns": 55015.5, "total_p95_ns": 57694.5, "total_p99_ns": 58847.7, "total_ci_low_ns": 53513.505494505494, "total_ci_high_ns": 54314.79230769231, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "postcard", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "1.1.3", "avg_time_ser_ns": 19809.56043956044, "avg_time_deser_ns": 61782.62637362637, "avg_time_total_ns": 81592.18681318681, "median_size_bytes": 12467.0, "avg_ops_per_sec": 12256.075478030716, "min_ops_per_sec": 11418.392747036927, "max_ops_per_sec": 13060.968601431483, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 19809.56043956044, "ser_median_ns": 19593.0, "ser_std_ns": 603.8089508149486, "ser_mad_ns": 326.0, "ser_cv": 0.030480683943350878, "ser_min_ns": 18670.0, "ser_max_ns": 21550.0, "ser_p5_ns": 19051.5, "ser_p25_ns": 19419.5, "ser_p50_ns": 19593.0, "ser_p75_ns": 20154.5, "ser_p95_ns": 20979.0, "ser_p99_ns": 21546.4, "ser_ci_low_ns": 19687.75824175824, "ser_ci_high_ns": 19932.018406593408, "deser_mean_ns": 61782.62637362637, "deser_median_ns": 61588.0, "deser_std_ns": 2061.753787694952, "deser_mad_ns": 1484.0, "deser_cv": 0.033371093278337365, "deser_min_ns": 55975.0, "deser_max_ns": 66932.0, "deser_p5_ns": 59259.0, "deser_p25_ns": 60132.5, "deser_p50_ns": 61588.0, "deser_p75_ns": 63445.0, "deser_p95_ns": 64858.5, "deser_p99_ns": 66612.5, "deser_ci_low_ns": 61341.024175824175, "deser_ci_high_ns": 62212.77005494506, "total_mean_ns": 81592.18681318681, "total_median_ns": 81460.0, "total_std_ns": 2446.02771816805, "total_mad_ns": 1862.0, "total_cv": 0.029978700335222864, "total_min_ns": 76564.0, "total_max_ns": 87578.0, "total_p5_ns": 78547.0, "total_p25_ns": 79603.5, "total_p50_ns": 81460.0, "total_p75_ns": 83333.0, "total_p95_ns": 85590.5, "total_p99_ns": 87146.0, "total_ci_low_ns": 81088.72912087913, "total_ci_high_ns": 82105.72664835166, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.510208178646462}, {"serializer": "bitcode", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.6.9", "avg_time_ser_ns": 108164.94623655915, "avg_time_deser_ns": 102929.96774193548, "avg_time_total_ns": 211094.91397849462, "median_size_bytes": 13028.0, "avg_ops_per_sec": 4737.205559115818, "min_ops_per_sec": 4462.612234697703, "max_ops_per_sec": 5116.764567428723, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 108164.94623655915, "ser_median_ns": 107640.0, "ser_std_ns": 3148.505381666422, "ser_mad_ns": 1961.0, "ser_cv": 0.029108370976125397, "ser_min_ns": 101342.0, "ser_max_ns": 115194.0, "ser_p5_ns": 103440.0, "ser_p25_ns": 105940.0, "ser_p50_ns": 107640.0, "ser_p75_ns": 109890.0, "ser_p95_ns": 114082.59999999999, "ser_p99_ns": 115085.44, "ser_ci_low_ns": 107541.98494623655, "ser_ci_high_ns": 108809.65833333334, "deser_mean_ns": 102929.96774193548, "deser_median_ns": 102779.0, "deser_std_ns": 3559.7788416026665, "deser_mad_ns": 2318.0, "deser_cv": 0.034584474470328135, "deser_min_ns": 92948.0, "deser_max_ns": 111875.0, "deser_p5_ns": 97679.0, "deser_p25_ns": 100682.0, "deser_p50_ns": 102779.0, "deser_p75_ns": 105245.0, "deser_p95_ns": 109077.4, "deser_p99_ns": 110811.48, "deser_ci_low_ns": 102217.6502688172, "deser_ci_high_ns": 103664.72849462365, "total_mean_ns": 211094.91397849462, "total_median_ns": 210380.0, "total_std_ns": 6048.983226913131, "total_mad_ns": 3973.0, "total_cv": 0.028655276969531223, "total_min_ns": 195436.0, "total_max_ns": 224084.0, "total_p5_ns": 202931.2, "total_p25_ns": 207200.0, "total_p50_ns": 210380.0, "total_p75_ns": 214801.0, "total_p95_ns": 222537.2, "total_p99_ns": 223749.12, "total_ci_low_ns": 209900.6306451613, "total_ci_high_ns": 212289.29758064516, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 34.70993648249763}, {"serializer": "nanoserde", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.1.37", "avg_time_ser_ns": 30610.565217391304, "avg_time_deser_ns": 57194.30434782609, "avg_time_total_ns": 87804.86956521739, "median_size_bytes": 26820.0, "avg_ops_per_sec": 11388.889989264733, "min_ops_per_sec": 10593.22033898305, "max_ops_per_sec": 12343.697925024378, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 30610.565217391304, "ser_median_ns": 30447.5, "ser_std_ns": 1328.8639228191432, "ser_mad_ns": 897.5, "ser_cv": 0.043411936806189814, "ser_min_ns": 27977.0, "ser_max_ns": 34052.0, "ser_p5_ns": 28842.5, "ser_p25_ns": 29574.5, "ser_p50_ns": 30447.5, "ser_p75_ns": 31478.25, "ser_p95_ns": 32795.55, "ser_p99_ns": 33980.11, "ser_ci_low_ns": 30352.49293478261, "ser_ci_high_ns": 30885.77038043478, "deser_mean_ns": 57194.30434782609, "deser_median_ns": 56969.0, "deser_std_ns": 2058.867525794726, "deser_mad_ns": 1335.0, "deser_cv": 0.035997771968232395, "deser_min_ns": 52504.0, "deser_max_ns": 62989.0, "deser_p5_ns": 53408.5, "deser_p25_ns": 55853.75, "deser_p50_ns": 56969.0, "deser_p75_ns": 58690.0, "deser_p95_ns": 60426.45, "deser_p99_ns": 61568.490000000005, "deser_ci_low_ns": 56761.02173913043, "deser_ci_high_ns": 57630.929891304346, "total_mean_ns": 87804.86956521739, "total_median_ns": 87348.5, "total_std_ns": 2771.6313013660197, "total_mad_ns": 1653.5, "total_cv": 0.03156580398206025, "total_min_ns": 81013.0, "total_max_ns": 94400.0, "total_p5_ns": 83757.9, "total_p25_ns": 85961.75, "total_p50_ns": 87348.5, "total_p75_ns": 89368.25, "total_p95_ns": 92872.1, "total_p99_ns": 94246.21, "total_ci_low_ns": 87241.32554347826, "total_ci_high_ns": 88404.81141304347, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.118539101553651}, {"serializer": "sonic-rs", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.3.17", "avg_time_ser_ns": 35603.55434782609, "avg_time_deser_ns": 99048.28260869565, "avg_time_total_ns": 134651.83695652173, "median_size_bytes": 47101.0, "avg_ops_per_sec": 7426.5603990452355, "min_ops_per_sec": 6802.397164760861, "max_ops_per_sec": 7995.075033779192, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 35603.55434782609, "ser_median_ns": 35436.0, "ser_std_ns": 1317.7161591688612, "ser_mad_ns": 702.5, "ser_cv": 0.03701080364885871, "ser_min_ns": 32715.0, "ser_max_ns": 38760.0, "ser_p5_ns": 33342.95, "ser_p25_ns": 34849.75, "ser_p50_ns": 35436.0, "ser_p75_ns": 36390.25, "ser_p95_ns": 37816.4, "ser_p99_ns": 38647.16, "ser_ci_low_ns": 35341.59293478261, "ser_ci_high_ns": 35875.98206521739, "deser_mean_ns": 99048.28260869565, "deser_median_ns": 98711.5, "deser_std_ns": 4240.370871521248, "deser_mad_ns": 2620.5, "deser_cv": 0.04281114987398052, "deser_min_ns": 89862.0, "deser_max_ns": 108626.0, "deser_p5_ns": 92594.2, "deser_p25_ns": 96220.75, "deser_p50_ns": 98711.5, "deser_p75_ns": 101686.75, "deser_p95_ns": 106881.65000000001, "deser_p99_ns": 108535.91, "deser_ci_low_ns": 98215.65326086956, "deser_ci_high_ns": 99920.04211956522, "total_mean_ns": 134651.83695652173, "total_median_ns": 134132.5, "total_std_ns": 5106.295539621641, "total_mad_ns": 3338.0, "total_cv": 0.037922212240375404, "total_min_ns": 125077.0, "total_max_ns": 147007.0, "total_p5_ns": 127508.25, "total_p25_ns": 131038.75, "total_p50_ns": 134132.5, "total_p75_ns": 137962.75, "total_p95_ns": 143960.55000000002, "total_p99_ns": 146969.69, "total_ci_low_ns": 133623.15108695652, "total_ci_high_ns": 135659.79375, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.78649324249022}, {"serializer": "minicbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.25.1", "avg_time_ser_ns": 35264.8202247191, "avg_time_deser_ns": 76785.4382022472, "avg_time_total_ns": 112050.25842696629, "median_size_bytes": 14255.0, "avg_ops_per_sec": 8924.5666546302, "min_ops_per_sec": 8340.074893872546, "max_ops_per_sec": 9556.483596295908, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 35264.8202247191, "ser_median_ns": 35216.0, "ser_std_ns": 960.8993013388996, "ser_mad_ns": 591.0, "ser_cv": 0.02724809867782485, "ser_min_ns": 33220.0, "ser_max_ns": 37734.0, "ser_p5_ns": 33928.6, "ser_p25_ns": 34603.0, "ser_p50_ns": 35216.0, "ser_p75_ns": 35785.0, "ser_p95_ns": 37015.6, "ser_p99_ns": 37566.8, "ser_ci_low_ns": 35069.45758426966, "ser_ci_high_ns": 35459.84466292134, "deser_mean_ns": 76785.4382022472, "deser_median_ns": 76432.0, "deser_std_ns": 2837.1191973351492, "deser_mad_ns": 1634.0, "deser_cv": 0.036948661930695584, "deser_min_ns": 69596.0, "deser_max_ns": 82716.0, "deser_p5_ns": 72818.6, "deser_p25_ns": 74945.0, "deser_p50_ns": 76432.0, "deser_p75_ns": 78775.0, "deser_p95_ns": 82058.8, "deser_p99_ns": 82276.0, "deser_ci_low_ns": 76204.89410112359, "deser_ci_high_ns": 77352.5297752809, "total_mean_ns": 112050.25842696629, "total_median_ns": 111325.0, "total_std_ns": 3517.1373222864395, "total_mad_ns": 1968.0, "total_cv": 0.03138892646623291, "total_min_ns": 104641.0, "total_max_ns": 119903.0, "total_p5_ns": 106480.6, "total_p25_ns": 109883.0, "total_p50_ns": 111325.0, "total_p75_ns": 114275.0, "total_p95_ns": 118936.2, "total_p99_ns": 119574.76, "total_ci_low_ns": 111321.45533707866, "total_ci_high_ns": 112769.67865168539, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.469362191351905}, {"serializer": "simd-json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.14.3", "avg_time_ser_ns": 51826.09574468085, "avg_time_deser_ns": 164269.79787234042, "avg_time_total_ns": 216095.89361702127, "median_size_bytes": 47101.0, "avg_ops_per_sec": 4627.575208681489, "min_ops_per_sec": 4255.464015796282, "max_ops_per_sec": 5044.772354647496, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 51826.09574468085, "ser_median_ns": 51616.0, "ser_std_ns": 1645.1896911197332, "ser_mad_ns": 1204.5, "ser_cv": 0.03174442657661679, "ser_min_ns": 48779.0, "ser_max_ns": 55822.0, "ser_p5_ns": 49721.05, "ser_p25_ns": 50422.75, "ser_p50_ns": 51616.0, "ser_p75_ns": 52944.25, "ser_p95_ns": 55006.2, "ser_p99_ns": 55747.6, "ser_ci_low_ns": 51495.039893617024, "ser_ci_high_ns": 52168.27765957447, "deser_mean_ns": 164269.79787234042, "deser_median_ns": 162937.5, "deser_std_ns": 6371.855048975669, "deser_mad_ns": 3852.5, "deser_cv": 0.03878896261823766, "deser_min_ns": 148392.0, "deser_max_ns": 181977.0, "deser_p5_ns": 155287.05, "deser_p25_ns": 160093.5, "deser_p50_ns": 162937.5, "deser_p75_ns": 168903.0, "deser_p95_ns": 175921.0, "deser_p99_ns": 180192.33, "deser_ci_low_ns": 163035.62180851065, "deser_ci_high_ns": 165491.53670212766, "total_mean_ns": 216095.89361702127, "total_median_ns": 214706.5, "total_std_ns": 7403.008385099351, "total_mad_ns": 4687.0, "total_cv": 0.034257978072546935, "total_min_ns": 198225.0, "total_max_ns": 234992.0, "total_p5_ns": 205359.5, "total_p25_ns": 210515.0, "total_p50_ns": 214706.5, "total_p75_ns": 222147.5, "total_p95_ns": 229213.25, "total_p99_ns": 233903.9, "total_ci_low_ns": 214636.4375, "total_ci_high_ns": 217555.57792553192, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.645376762736387}, {"serializer": "flexbuffers", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "2.0.0", "avg_time_ser_ns": 229247.75531914894, "avg_time_deser_ns": 190114.32978723405, "avg_time_total_ns": 419362.08510638296, "median_size_bytes": 47320.0, "avg_ops_per_sec": 2384.574179485782, "min_ops_per_sec": 2249.1470109960796, "max_ops_per_sec": 2511.988464948969, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 229247.75531914894, "ser_median_ns": 228370.0, "ser_std_ns": 6003.011890433988, "ser_mad_ns": 3565.5, "ser_cv": 0.02618569539351367, "ser_min_ns": 217139.0, "ser_max_ns": 245640.0, "ser_p5_ns": 220413.05, "ser_p25_ns": 225477.0, "ser_p50_ns": 228370.0, "ser_p75_ns": 233625.75, "ser_p95_ns": 240671.95, "ser_p99_ns": 242720.72999999998, "ser_ci_low_ns": 228130.3114361702, "ser_ci_high_ns": 230495.73909574468, "deser_mean_ns": 190114.32978723405, "deser_median_ns": 190217.0, "deser_std_ns": 5634.340877745157, "deser_mad_ns": 3193.0, "deser_cv": 0.02963659227608363, "deser_min_ns": 178819.0, "deser_max_ns": 203618.0, "deser_p5_ns": 180591.0, "deser_p25_ns": 187245.0, "deser_p50_ns": 190217.0, "deser_p75_ns": 193897.75, "deser_p95_ns": 198721.55, "deser_p99_ns": 201983.99, "deser_ci_low_ns": 188965.85824468083, "deser_ci_high_ns": 191264.89414893618, "total_mean_ns": 419362.08510638296, "total_median_ns": 417925.0, "total_std_ns": 10021.699679485377, "total_mad_ns": 4980.0, "total_cv": 0.023897486290261772, "total_min_ns": 398091.0, "total_max_ns": 444613.0, "total_p5_ns": 403092.35, "total_p25_ns": 413471.0, "total_p50_ns": 417925.0, "total_p75_ns": 424106.5, "total_p95_ns": 437220.3, "total_p99_ns": 442397.74, "total_ci_low_ns": 417360.6210106383, "total_ci_high_ns": 421409.24867021275, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 50.05255671330062}, {"serializer": "ciborium", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.2.2", "avg_time_ser_ns": 44279.44329896907, "avg_time_deser_ns": 206209.43298969071, "avg_time_total_ns": 250488.87628865978, "median_size_bytes": 34855.0, "avg_ops_per_sec": 3992.1932455300503, "min_ops_per_sec": 3740.541106676492, "max_ops_per_sec": 4213.560079046387, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 44279.44329896907, "ser_median_ns": 44034.0, "ser_std_ns": 1294.5827188798469, "ser_mad_ns": 916.0, "ser_cv": 0.029236653002590658, "ser_min_ns": 42043.0, "ser_max_ns": 47915.0, "ser_p5_ns": 42694.0, "ser_p25_ns": 43147.0, "ser_p50_ns": 44034.0, "ser_p75_ns": 45261.0, "ser_p95_ns": 46591.6, "ser_p99_ns": 47022.19999999999, "ser_ci_low_ns": 44036.60154639176, "ser_ci_high_ns": 44551.72268041237, "deser_mean_ns": 206209.43298969071, "deser_median_ns": 204987.0, "deser_std_ns": 5695.878041595842, "deser_mad_ns": 3426.0, "deser_cv": 0.02762181127708451, "deser_min_ns": 194186.0, "deser_max_ns": 220794.0, "deser_p5_ns": 199874.4, "deser_p25_ns": 201943.0, "deser_p50_ns": 204987.0, "deser_p75_ns": 210002.0, "deser_p95_ns": 216971.4, "deser_p99_ns": 220481.04, "deser_ci_low_ns": 205109.43273195875, "deser_ci_high_ns": 207336.02603092784, "total_mean_ns": 250488.87628865978, "total_median_ns": 249272.0, "total_std_ns": 6711.207928498124, "total_mad_ns": 4204.0, "total_cv": 0.02679243896149793, "total_min_ns": 237329.0, "total_max_ns": 267341.0, "total_p5_ns": 243177.2, "total_p25_ns": 245263.0, "total_p50_ns": 249272.0, "total_p75_ns": 255538.0, "total_p95_ns": 263715.4, "total_p99_ns": 267100.04, "total_ci_low_ns": 249150.34304123712, "total_ci_high_ns": 251806.52293814434, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 39.11830184171351}, {"serializer": "prost", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.13.5", "avg_time_ser_ns": 44829.322916666664, "avg_time_deser_ns": 81983.98958333333, "avg_time_total_ns": 126813.3125, "median_size_bytes": 16477.0, "avg_ops_per_sec": 7885.607435733532, "min_ops_per_sec": 7291.924922341, "max_ops_per_sec": 8550.882023480723, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 44829.322916666664, "ser_median_ns": 44373.5, "ser_std_ns": 1530.6527159132004, "ser_mad_ns": 1102.0, "ser_cv": 0.03414400700984341, "ser_min_ns": 41853.0, "ser_max_ns": 49135.0, "ser_p5_ns": 42942.0, "ser_p25_ns": 43597.5, "ser_p50_ns": 44373.5, "ser_p75_ns": 45881.0, "ser_p95_ns": 47268.75, "ser_p99_ns": 48917.45, "ser_ci_low_ns": 44527.24609375, "ser_ci_high_ns": 45168.6859375, "deser_mean_ns": 81983.98958333333, "deser_median_ns": 81341.5, "deser_std_ns": 3231.323865880073, "deser_mad_ns": 1898.0, "deser_cv": 0.03941408416817244, "deser_min_ns": 73725.0, "deser_max_ns": 89954.0, "deser_p5_ns": 76737.75, "deser_p25_ns": 80043.5, "deser_p50_ns": 81341.5, "deser_p75_ns": 84185.75, "deser_p95_ns": 87105.75, "deser_p99_ns": 89683.25, "deser_ci_low_ns": 81349.33177083333, "deser_ci_high_ns": 82668.78489583333, "total_mean_ns": 126813.3125, "total_median_ns": 126014.0, "total_std_ns": 4247.633593357725, "total_mad_ns": 2907.5, "total_cv": 0.03349517104805321, "total_min_ns": 116947.0, "total_max_ns": 137138.0, "total_p5_ns": 120955.0, "total_p25_ns": 123618.5, "total_p50_ns": 126014.0, "total_p75_ns": 130025.0, "total_p95_ns": 134165.25, "total_p99_ns": 136011.3, "total_ci_low_ns": 125989.52500000001, "total_ci_high_ns": 127714.00286458332, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.814506235090008}, {"serializer": "serde_json", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "1.0.150", "avg_time_ser_ns": 51777.84375, "avg_time_deser_ns": 146207.64583333334, "avg_time_total_ns": 197985.48958333334, "median_size_bytes": 47101.0, "avg_ops_per_sec": 5050.875203554217, "min_ops_per_sec": 4708.496953602471, "max_ops_per_sec": 5457.561997904296, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 51777.84375, "ser_median_ns": 51345.5, "ser_std_ns": 1642.3493911763626, "ser_mad_ns": 981.0, "ser_cv": 0.03171915383549286, "ser_min_ns": 48412.0, "ser_max_ns": 55577.0, "ser_p5_ns": 49695.25, "ser_p25_ns": 50529.5, "ser_p50_ns": 51345.5, "ser_p75_ns": 52718.5, "ser_p95_ns": 54784.75, "ser_p99_ns": 55568.45, "ser_ci_low_ns": 51456.581770833334, "ser_ci_high_ns": 52114.92473958334, "deser_mean_ns": 146207.64583333334, "deser_median_ns": 145855.0, "deser_std_ns": 5494.674868939096, "deser_mad_ns": 3680.5, "deser_cv": 0.03758131004450101, "deser_min_ns": 133523.0, "deser_max_ns": 157607.0, "deser_p5_ns": 136427.25, "deser_p25_ns": 142544.5, "deser_p50_ns": 145855.0, "deser_p75_ns": 150111.25, "deser_p95_ns": 155796.5, "deser_p99_ns": 157316.3, "deser_ci_low_ns": 145027.44374999998, "deser_ci_high_ns": 147289.74609375, "total_mean_ns": 197985.48958333334, "total_median_ns": 196715.5, "total_std_ns": 6626.568504683157, "total_mad_ns": 4318.5, "total_cv": 0.0334699705449575, "total_min_ns": 183232.0, "total_max_ns": 212382.0, "total_p5_ns": 187913.75, "total_p25_ns": 193328.25, "total_p50_ns": 196715.5, "total_p75_ns": 202696.75, "total_p95_ns": 210617.25, "total_p99_ns": 212156.85, "total_ci_low_ns": 196690.62239583334, "total_ci_high_ns": 199328.58307291666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.07103668128429}, {"serializer": "serde_avro_fast", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "2.1.0", "avg_time_ser_ns": 54480.76404494382, "avg_time_deser_ns": 85884.13483146067, "avg_time_total_ns": 140364.8988764045, "median_size_bytes": 12467.0, "avg_ops_per_sec": 7124.288251584393, "min_ops_per_sec": 6572.461386789352, "max_ops_per_sec": 7648.417542410475, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 54480.76404494382, "ser_median_ns": 54268.0, "ser_std_ns": 1574.2708847884292, "ser_mad_ns": 1037.0, "ser_cv": 0.02889590321254924, "ser_min_ns": 51664.0, "ser_max_ns": 58759.0, "ser_p5_ns": 52567.8, "ser_p25_ns": 53353.0, "ser_p50_ns": 54268.0, "ser_p75_ns": 55387.0, "ser_p95_ns": 57443.8, "ser_p99_ns": 58407.0, "ser_ci_low_ns": 54154.02134831461, "ser_ci_high_ns": 54789.198876404495, "deser_mean_ns": 85884.13483146067, "deser_median_ns": 85270.0, "deser_std_ns": 3193.5227848049617, "deser_mad_ns": 1686.0, "deser_cv": 0.03718408284687203, "deser_min_ns": 77388.0, "deser_max_ns": 93791.0, "deser_p5_ns": 82144.0, "deser_p25_ns": 83623.0, "deser_p50_ns": 85270.0, "deser_p75_ns": 87703.0, "deser_p95_ns": 91383.4, "deser_p99_ns": 92780.76000000001, "deser_ci_low_ns": 85227.92808988765, "deser_ci_high_ns": 86567.15674157302, "total_mean_ns": 140364.8988764045, "total_median_ns": 139670.0, "total_std_ns": 4371.117576164912, "total_mad_ns": 2725.0, "total_cv": 0.03114110159416573, "total_min_ns": 130746.0, "total_max_ns": 152150.0, "total_p5_ns": 135393.0, "total_p25_ns": 137136.0, "total_p50_ns": 139670.0, "total_p75_ns": 143236.0, "total_p95_ns": 148513.2, "total_p99_ns": 150247.44, "total_ci_low_ns": 139491.05561797752, "total_ci_high_ns": 141247.03061797752, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.576461678358744}, {"serializer": "rmp-serde", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "1.3.1", "avg_time_ser_ns": 24908.547368421052, "avg_time_deser_ns": 99846.13684210526, "avg_time_total_ns": 124754.68421052632, "median_size_bytes": 34256.0, "avg_ops_per_sec": 8015.731083191054, "min_ops_per_sec": 7415.317078958296, "max_ops_per_sec": 8704.205001436194, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 24908.547368421052, "ser_median_ns": 24859.0, "ser_std_ns": 859.452172971818, "ser_mad_ns": 616.0, "ser_cv": 0.0345043073070342, "ser_min_ns": 23312.0, "ser_max_ns": 26815.0, "ser_p5_ns": 23526.9, "ser_p25_ns": 24386.0, "ser_p50_ns": 24859.0, "ser_p75_ns": 25496.5, "ser_p95_ns": 26399.3, "ser_p99_ns": 26768.94, "ser_ci_low_ns": 24735.239210526317, "ser_ci_high_ns": 25076.795263157896, "deser_mean_ns": 99846.13684210526, "deser_median_ns": 99723.0, "deser_std_ns": 3572.483621481823, "deser_mad_ns": 2200.0, "deser_cv": 0.0357798882808183, "deser_min_ns": 91270.0, "deser_max_ns": 108644.0, "deser_p5_ns": 93652.5, "deser_p25_ns": 97939.5, "deser_p50_ns": 99723.0, "deser_p75_ns": 102316.5, "deser_p95_ns": 105436.59999999999, "deser_p99_ns": 108471.04, "deser_ci_low_ns": 99116.5947368421, "deser_ci_high_ns": 100555.02052631578, "total_mean_ns": 124754.68421052632, "total_median_ns": 124691.0, "total_std_ns": 3892.314646000687, "total_mad_ns": 2524.0, "total_cv": 0.031199747493507488, "total_min_ns": 114887.0, "total_max_ns": 134856.0, "total_p5_ns": 118821.9, "total_p25_ns": 122415.5, "total_p50_ns": 124691.0, "total_p75_ns": 127294.0, "total_p95_ns": 131465.8, "total_p99_ns": 134659.54, "total_ci_low_ns": 124009.86973684211, "total_ci_high_ns": 125526.02894736842, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.81643739674494}, {"serializer": "nanoserde", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.1.37", "avg_time_ser_ns": 346.46315789473687, "avg_time_deser_ns": 230.96842105263158, "avg_time_total_ns": 577.4315789473684, "median_size_bytes": 322.0, "avg_ops_per_sec": 1731806.9126440135, "min_ops_per_sec": 1451378.809869376, "max_ops_per_sec": 2040816.3265306123, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 346.46315789473687, "ser_median_ns": 337.0, "ser_std_ns": 38.80688974975026, "ser_mad_ns": 26.0, "ser_cv": 0.11200870529945539, "ser_min_ns": 270.0, "ser_max_ns": 453.0, "ser_p5_ns": 292.1, "ser_p25_ns": 319.0, "ser_p50_ns": 337.0, "ser_p75_ns": 375.5, "ser_p95_ns": 410.79999999999995, "ser_p99_ns": 448.3, "ser_ci_low_ns": 338.8313157894737, "ser_ci_high_ns": 354.2213157894737, "deser_mean_ns": 230.96842105263158, "deser_median_ns": 230.0, "deser_std_ns": 33.416600738662986, "deser_mad_ns": 23.0, "deser_cv": 0.14468038784855453, "deser_min_ns": 173.0, "deser_max_ns": 321.0, "deser_p5_ns": 179.8, "deser_p25_ns": 205.5, "deser_p50_ns": 230.0, "deser_p75_ns": 251.0, "deser_p95_ns": 294.3, "deser_p99_ns": 307.84000000000003, "deser_ci_low_ns": 224.54605263157893, "deser_ci_high_ns": 237.4107894736842, "total_mean_ns": 577.4315789473684, "total_median_ns": 568.0, "total_std_ns": 50.23448265365538, "total_mad_ns": 35.0, "total_cv": 0.08699642431269616, "total_min_ns": 490.0, "total_max_ns": 689.0, "total_p5_ns": 503.4, "total_p25_ns": 542.5, "total_p50_ns": 568.0, "total_p75_ns": 614.5, "total_p95_ns": 674.9, "total_p99_ns": 686.1800000000001, "total_ci_low_ns": 567.5260526315789, "total_ci_high_ns": 587.4852631578947, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.010847819270609}, {"serializer": "simd-json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.14.3", "avg_time_ser_ns": 666.506329113924, "avg_time_deser_ns": 1569.240506329114, "avg_time_total_ns": 2235.746835443038, "median_size_bytes": 672.0, "avg_ops_per_sec": 447277.8331370595, "min_ops_per_sec": 391083.30074305827, "max_ops_per_sec": 482160.07714561233, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 666.506329113924, "ser_median_ns": 661.0, "ser_std_ns": 26.486510072846766, "ser_mad_ns": 14.0, "ser_cv": 0.039739322667886476, "ser_min_ns": 624.0, "ser_max_ns": 764.0, "ser_p5_ns": 633.3, "ser_p25_ns": 650.0, "ser_p50_ns": 661.0, "ser_p75_ns": 679.5, "ser_p95_ns": 708.5, "ser_p99_ns": 755.42, "ser_ci_low_ns": 660.8221518987342, "ser_ci_high_ns": 672.4566455696203, "deser_mean_ns": 1569.240506329114, "deser_median_ns": 1554.0, "deser_std_ns": 93.23793868376087, "deser_mad_ns": 70.0, "deser_cv": 0.05941596479807299, "deser_min_ns": 1410.0, "deser_max_ns": 1849.0, "deser_p5_ns": 1443.6, "deser_p25_ns": 1495.5, "deser_p50_ns": 1554.0, "deser_p75_ns": 1625.5, "deser_p95_ns": 1718.3, "deser_p99_ns": 1841.2, "deser_ci_low_ns": 1548.620253164557, "deser_ci_high_ns": 1590.3822784810127, "total_mean_ns": 2235.746835443038, "total_median_ns": 2227.0, "total_std_ns": 99.39837850847267, "total_mad_ns": 69.0, "total_cv": 0.044458691356606926, "total_min_ns": 2074.0, "total_max_ns": 2557.0, "total_p5_ns": 2109.4, "total_p25_ns": 2159.0, "total_p50_ns": 2227.0, "total_p75_ns": 2296.0, "total_p95_ns": 2378.2999999999997, "total_p99_ns": 2516.44, "total_ci_low_ns": 2214.90917721519, "total_ci_high_ns": 2258.0724683544304, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.32538806744142}, {"serializer": "prost", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.13.5", "avg_time_ser_ns": 228.9787234042553, "avg_time_deser_ns": 360.5744680851064, "avg_time_total_ns": 589.5531914893617, "median_size_bytes": 290.0, "avg_ops_per_sec": 1696199.7906817282, "min_ops_per_sec": 1324503.311258278, "max_ops_per_sec": 2212389.3805309734, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 228.9787234042553, "ser_median_ns": 225.5, "ser_std_ns": 41.953117387958585, "ser_mad_ns": 29.0, "ser_cv": 0.1832184089606071, "ser_min_ns": 144.0, "ser_max_ns": 320.0, "ser_p5_ns": 172.3, "ser_p25_ns": 195.5, "ser_p50_ns": 225.5, "ser_p75_ns": 250.5, "ser_p95_ns": 309.44999999999993, "ser_p99_ns": 319.07, "ser_ci_low_ns": 221.0095744680851, "ser_ci_high_ns": 237.44760638297873, "deser_mean_ns": 360.5744680851064, "deser_median_ns": 355.0, "deser_std_ns": 38.74995369035099, "deser_mad_ns": 30.5, "deser_cv": 0.10746726992662398, "deser_min_ns": 293.0, "deser_max_ns": 453.0, "deser_p5_ns": 306.25, "deser_p25_ns": 330.75, "deser_p50_ns": 355.0, "deser_p75_ns": 386.75, "deser_p95_ns": 429.04999999999995, "deser_p99_ns": 448.34999999999997, "deser_ci_low_ns": 353.1481382978724, "deser_ci_high_ns": 368.7140957446809, "total_mean_ns": 589.5531914893617, "total_median_ns": 589.5, "total_std_ns": 64.62873574756455, "total_mad_ns": 43.0, "total_cv": 0.10962324804704371, "total_min_ns": 452.0, "total_max_ns": 755.0, "total_p5_ns": 500.6, "total_p25_ns": 535.0, "total_p50_ns": 589.5, "total_p75_ns": 629.5, "total_p95_ns": 712.05, "total_p99_ns": 745.6999999999999, "total_ci_low_ns": 575.9465425531915, "total_ci_high_ns": 602.4053191489361, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.419596984571706}, {"serializer": "bitcode", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.6.9", "avg_time_ser_ns": 917.8279569892474, "avg_time_deser_ns": 480.8817204301075, "avg_time_total_ns": 1398.7096774193549, "median_size_bytes": 290.0, "avg_ops_per_sec": 714944.6494464944, "min_ops_per_sec": 602409.6385542168, "max_ops_per_sec": 803212.8514056224, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 917.8279569892474, "ser_median_ns": 898.0, "ser_std_ns": 94.24674180228172, "ser_mad_ns": 60.0, "ser_cv": 0.10268454026116122, "ser_min_ns": 765.0, "ser_max_ns": 1176.0, "ser_p5_ns": 797.8, "ser_p25_ns": 852.0, "ser_p50_ns": 898.0, "ser_p75_ns": 979.0, "ser_p95_ns": 1098.6, "ser_p99_ns": 1136.4399999999998, "ser_ci_low_ns": 900.0427419354838, "ser_ci_high_ns": 936.1301075268817, "deser_mean_ns": 480.8817204301075, "deser_median_ns": 473.0, "deser_std_ns": 46.17119595741897, "deser_mad_ns": 30.0, "deser_cv": 0.0960136224685829, "deser_min_ns": 390.0, "deser_max_ns": 617.0, "deser_p5_ns": 419.0, "deser_p25_ns": 446.0, "deser_p50_ns": 473.0, "deser_p75_ns": 511.0, "deser_p95_ns": 556.3999999999999, "deser_p99_ns": 599.52, "deser_ci_low_ns": 471.68790322580645, "deser_ci_high_ns": 489.7543010752688, "total_mean_ns": 1398.7096774193549, "total_median_ns": 1384.0, "total_std_ns": 91.39469833415099, "total_mad_ns": 61.0, "total_cv": 0.06534215056177768, "total_min_ns": 1245.0, "total_max_ns": 1660.0, "total_p5_ns": 1280.2, "total_p25_ns": 1333.0, "total_p50_ns": 1384.0, "total_p75_ns": 1447.0, "total_p95_ns": 1574.3999999999999, "total_p99_ns": 1648.96, "total_ci_low_ns": 1380.933870967742, "total_ci_high_ns": 1417.3658602150538, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.17557733048784}, {"serializer": "bson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "2.15.0", "avg_time_ser_ns": 943.2888888888889, "avg_time_deser_ns": 1859.3666666666666, "avg_time_total_ns": 2802.6555555555556, "median_size_bytes": 478.0, "avg_ops_per_sec": 356804.45926284196, "min_ops_per_sec": 330469.2663582287, "max_ops_per_sec": 378931.413414172, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 943.2888888888889, "ser_median_ns": 938.5, "ser_std_ns": 52.11595637483706, "ser_mad_ns": 33.5, "ser_cv": 0.0552491998885146, "ser_min_ns": 829.0, "ser_max_ns": 1096.0, "ser_p5_ns": 870.45, "ser_p25_ns": 905.0, "ser_p50_ns": 938.5, "ser_p75_ns": 968.75, "ser_p95_ns": 1040.2, "ser_p99_ns": 1070.19, "ser_ci_low_ns": 932.9883333333333, "ser_ci_high_ns": 954.0444444444445, "deser_mean_ns": 1859.3666666666666, "deser_median_ns": 1853.5, "deser_std_ns": 44.597185883910264, "deser_mad_ns": 31.5, "deser_cv": 0.02398514864411373, "deser_min_ns": 1749.0, "deser_max_ns": 1985.0, "deser_p5_ns": 1802.35, "deser_p25_ns": 1824.5, "deser_p50_ns": 1853.5, "deser_p75_ns": 1887.75, "deser_p95_ns": 1938.8, "deser_p99_ns": 1971.65, "deser_ci_low_ns": 1850.3555555555556, "deser_ci_high_ns": 1868.6683333333333, "total_mean_ns": 2802.6555555555556, "total_median_ns": 2792.0, "total_std_ns": 69.43336650717255, "total_mad_ns": 35.5, "total_cv": 0.024774134791390425, "total_min_ns": 2639.0, "total_max_ns": 3026.0, "total_p5_ns": 2711.0, "total_p25_ns": 2760.0, "total_p50_ns": 2792.0, "total_p75_ns": 2838.5, "total_p95_ns": 2911.6, "total_p99_ns": 3003.75, "total_ci_low_ns": 2788.6544444444444, "total_ci_high_ns": 2817.412222222222, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 50.033133325841206}, {"serializer": "minicbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.25.1", "avg_time_ser_ns": 345.01063829787233, "avg_time_deser_ns": 406.75531914893617, "avg_time_total_ns": 751.7659574468086, "median_size_bytes": 322.0, "avg_ops_per_sec": 1330201.2283134747, "min_ops_per_sec": 1180637.544273908, "max_ops_per_sec": 1479289.9408284023, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 345.01063829787233, "ser_median_ns": 343.0, "ser_std_ns": 17.351827198167825, "ser_mad_ns": 13.0, "ser_cv": 0.05029360046337688, "ser_min_ns": 316.0, "ser_max_ns": 401.0, "ser_p5_ns": 320.65, "ser_p25_ns": 331.0, "ser_p50_ns": 343.0, "ser_p75_ns": 359.0, "ser_p95_ns": 375.04999999999995, "ser_p99_ns": 385.1899999999999, "ser_ci_low_ns": 341.4255319148936, "ser_ci_high_ns": 348.4473404255319, "deser_mean_ns": 406.75531914893617, "deser_median_ns": 407.5, "deser_std_ns": 32.71831099901448, "deser_mad_ns": 25.0, "deser_cv": 0.08043732794317669, "deser_min_ns": 343.0, "deser_max_ns": 486.0, "deser_p5_ns": 357.65, "deser_p25_ns": 381.25, "deser_p50_ns": 407.5, "deser_p75_ns": 426.5, "deser_p95_ns": 468.0, "deser_p99_ns": 479.48999999999995, "deser_ci_low_ns": 400.36143617021276, "deser_ci_high_ns": 413.5542553191489, "total_mean_ns": 751.7659574468086, "total_median_ns": 746.0, "total_std_ns": 39.46045401150205, "total_mad_ns": 28.0, "total_cv": 0.052490344395907405, "total_min_ns": 676.0, "total_max_ns": 847.0, "total_p5_ns": 693.85, "total_p25_ns": 725.25, "total_p50_ns": 746.0, "total_p75_ns": 777.0, "total_p95_ns": 811.4, "total_p99_ns": 845.14, "total_ci_low_ns": 743.701329787234, "total_ci_high_ns": 759.4912234042553, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.03065160496399}, {"serializer": "serde_avro_fast", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "2.1.0", "avg_time_ser_ns": 307.24468085106383, "avg_time_deser_ns": 700.4787234042553, "avg_time_total_ns": 1007.7234042553191, "median_size_bytes": 287.0, "avg_ops_per_sec": 992335.7895403586, "min_ops_per_sec": 870322.0191470844, "max_ops_per_sec": 1109877.9134295227, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 307.24468085106383, "ser_median_ns": 305.0, "ser_std_ns": 20.7854819940507, "ser_mad_ns": 14.5, "ser_cv": 0.06765123463317634, "ser_min_ns": 265.0, "ser_max_ns": 361.0, "ser_p5_ns": 278.65, "ser_p25_ns": 292.0, "ser_p50_ns": 305.0, "ser_p75_ns": 321.75, "ser_p95_ns": 343.4, "ser_p99_ns": 356.34999999999997, "ser_ci_low_ns": 303.11569148936167, "ser_ci_high_ns": 311.4385638297872, "deser_mean_ns": 700.4787234042553, "deser_median_ns": 695.0, "deser_std_ns": 51.11356294206411, "deser_mad_ns": 31.0, "deser_cv": 0.07296947249683387, "deser_min_ns": 599.0, "deser_max_ns": 820.0, "deser_p5_ns": 620.0, "deser_p25_ns": 666.0, "deser_p50_ns": 695.0, "deser_p75_ns": 731.0, "deser_p95_ns": 791.0999999999999, "deser_p99_ns": 812.56, "deser_ci_low_ns": 690.6574468085106, "deser_ci_high_ns": 711.1494680851064, "total_mean_ns": 1007.7234042553191, "total_median_ns": 994.5, "total_std_ns": 58.67358297244227, "total_mad_ns": 38.0, "total_cv": 0.05822389628412024, "total_min_ns": 901.0, "total_max_ns": 1149.0, "total_p5_ns": 930.65, "total_p25_ns": 965.0, "total_p50_ns": 994.5, "total_p75_ns": 1046.75, "total_p95_ns": 1115.75, "total_p99_ns": 1140.6299999999999, "total_ci_low_ns": 995.8789893617021, "total_ci_high_ns": 1019.7454787234042, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.20830165992735}, {"serializer": "sonic-rs", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.3.17", "avg_time_ser_ns": 765.0, "avg_time_deser_ns": 1012.8314606741573, "avg_time_total_ns": 1777.8314606741574, "median_size_bytes": 672.0, "avg_ops_per_sec": 562483.0149089599, "min_ops_per_sec": 524658.9716684156, "max_ops_per_sec": 596302.9218843172, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 765.0, "ser_median_ns": 766.0, "ser_std_ns": 22.227644540485656, "ser_mad_ns": 15.0, "ser_cv": 0.02905574449736687, "ser_min_ns": 715.0, "ser_max_ns": 815.0, "ser_p5_ns": 728.4, "ser_p25_ns": 751.0, "ser_p50_ns": 766.0, "ser_p75_ns": 781.0, "ser_p95_ns": 801.0, "ser_p99_ns": 811.48, "ser_ci_low_ns": 760.3814606741573, "ser_ci_high_ns": 769.573595505618, "deser_mean_ns": 1012.8314606741573, "deser_median_ns": 1009.0, "deser_std_ns": 34.70893124354967, "deser_mad_ns": 22.0, "deser_cv": 0.0342692072582805, "deser_min_ns": 949.0, "deser_max_ns": 1111.0, "deser_p5_ns": 958.8, "deser_p25_ns": 990.0, "deser_p50_ns": 1009.0, "deser_p75_ns": 1037.0, "deser_p95_ns": 1066.2, "deser_p99_ns": 1103.08, "deser_ci_low_ns": 1005.8643258426966, "deser_ci_high_ns": 1020.0679775280898, "total_mean_ns": 1777.8314606741574, "total_median_ns": 1775.0, "total_std_ns": 44.34094043858959, "total_mad_ns": 32.0, "total_cv": 0.02494102586179649, "total_min_ns": 1677.0, "total_max_ns": 1906.0, "total_p5_ns": 1715.4, "total_p25_ns": 1744.0, "total_p50_ns": 1775.0, "total_p75_ns": 1807.0, "total_p95_ns": 1862.2, "total_p99_ns": 1879.6000000000001, "total_ci_low_ns": 1768.7637640449439, "total_ci_high_ns": 1787.0564606741573, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 43.63237623816945}, {"serializer": "rkyv", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.8.17", "avg_time_ser_ns": 191.2826086956522, "avg_time_deser_ns": 136.97826086956522, "avg_time_total_ns": 328.2608695652174, "median_size_bytes": 304.0, "avg_ops_per_sec": 3046357.61589404, "min_ops_per_sec": 2475247.5247524753, "max_ops_per_sec": 3745318.352059925, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 191.2826086956522, "ser_median_ns": 189.0, "ser_std_ns": 21.8362165578079, "ser_mad_ns": 14.5, "ser_cv": 0.11415683164668297, "ser_min_ns": 138.0, "ser_max_ns": 241.0, "ser_p5_ns": 160.75, "ser_p25_ns": 177.0, "ser_p50_ns": 189.0, "ser_p75_ns": 206.0, "ser_p95_ns": 229.9, "ser_p99_ns": 239.18, "ser_ci_low_ns": 186.76059782608698, "ser_ci_high_ns": 195.57608695652175, "deser_mean_ns": 136.97826086956522, "deser_median_ns": 137.0, "deser_std_ns": 24.135140702353652, "deser_mad_ns": 18.0, "deser_cv": 0.17619686911732552, "deser_min_ns": 98.0, "deser_max_ns": 201.0, "deser_p5_ns": 101.0, "deser_p25_ns": 117.75, "deser_p50_ns": 137.0, "deser_p75_ns": 154.0, "deser_p95_ns": 173.45, "deser_p99_ns": 192.81000000000003, "deser_ci_low_ns": 131.92391304347825, "deser_ci_high_ns": 141.76114130434783, "total_mean_ns": 328.2608695652174, "total_median_ns": 325.5, "total_std_ns": 29.381114351811576, "total_mad_ns": 19.0, "total_cv": 0.08950538146909487, "total_min_ns": 267.0, "total_max_ns": 404.0, "total_p5_ns": 284.4, "total_p25_ns": 308.75, "total_p50_ns": 325.5, "total_p75_ns": 347.5, "total_p95_ns": 381.9, "total_p99_ns": 401.27, "total_ci_low_ns": 322.34728260869565, "total_ci_high_ns": 334.1635869565217, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.549809078688809}, {"serializer": "bincode", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "2.0.1", "avg_time_ser_ns": 126.41836734693878, "avg_time_deser_ns": 282.9387755102041, "avg_time_total_ns": 409.35714285714283, "median_size_bytes": 289.0, "avg_ops_per_sec": 2442854.6501483163, "min_ops_per_sec": 1776198.9342806395, "max_ops_per_sec": 3484320.557491289, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 126.41836734693878, "ser_median_ns": 128.5, "ser_std_ns": 24.925837821854596, "ser_mad_ns": 15.5, "ser_cv": 0.19716943308917187, "ser_min_ns": 67.0, "ser_max_ns": 177.0, "ser_p5_ns": 81.7, "ser_p25_ns": 111.5, "ser_p50_ns": 128.5, "ser_p75_ns": 142.75, "ser_p95_ns": 162.74999999999994, "ser_p99_ns": 173.12, "ser_ci_low_ns": 121.5, "ser_ci_high_ns": 131.4591836734694, "deser_mean_ns": 282.9387755102041, "deser_median_ns": 272.5, "deser_std_ns": 52.555874307810384, "deser_mad_ns": 38.0, "deser_cv": 0.18574998853741406, "deser_min_ns": 193.0, "deser_max_ns": 406.0, "deser_p5_ns": 214.0, "deser_p25_ns": 242.25, "deser_p50_ns": 272.5, "deser_p75_ns": 316.25, "deser_p95_ns": 375.4999999999999, "deser_p99_ns": 402.12, "deser_ci_low_ns": 272.9359693877551, "deser_ci_high_ns": 293.7877551020408, "total_mean_ns": 409.35714285714283, "total_median_ns": 405.5, "total_std_ns": 62.133087952850865, "total_mad_ns": 37.0, "total_cv": 0.15178210283369606, "total_min_ns": 287.0, "total_max_ns": 563.0, "total_p5_ns": 313.55, "total_p25_ns": 370.0, "total_p50_ns": 405.5, "total_p75_ns": 451.5, "total_p95_ns": 513.5499999999998, "total_p99_ns": 561.06, "total_ci_low_ns": 396.62984693877553, "total_ci_high_ns": 421.6224489795918, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.935706497841311}, {"serializer": "rmp-serde", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "1.3.1", "avg_time_ser_ns": 314.0833333333333, "avg_time_deser_ns": 380.375, "avg_time_total_ns": 694.4583333333334, "median_size_bytes": 356.0, "avg_ops_per_sec": 1439971.2005759885, "min_ops_per_sec": 1173708.9201877934, "max_ops_per_sec": 1818181.8181818181, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 314.0833333333333, "ser_median_ns": 322.5, "ser_std_ns": 59.34531714184926, "ser_mad_ns": 44.5, "ser_cv": 0.18894767994221043, "ser_min_ns": 172.0, "ser_max_ns": 461.0, "ser_p5_ns": 202.5, "ser_p25_ns": 276.5, "ser_p50_ns": 322.5, "ser_p75_ns": 357.0, "ser_p95_ns": 403.5, "ser_p99_ns": 422.9999999999999, "ser_ci_low_ns": 302.9453125, "ser_ci_high_ns": 325.71953125, "deser_mean_ns": 380.375, "deser_median_ns": 376.5, "deser_std_ns": 36.35186232831603, "deser_mad_ns": 24.5, "deser_cv": 0.09556848459629584, "deser_min_ns": 315.0, "deser_max_ns": 470.0, "deser_p5_ns": 325.75, "deser_p25_ns": 353.75, "deser_p50_ns": 376.5, "deser_p75_ns": 405.25, "deser_p95_ns": 438.25, "deser_p99_ns": 464.29999999999995, "deser_ci_low_ns": 373.16614583333336, "deser_ci_high_ns": 387.7708333333333, "total_mean_ns": 694.4583333333334, "total_median_ns": 698.5, "total_std_ns": 68.13730976826236, "total_mad_ns": 42.5, "total_cv": 0.09811576375102277, "total_min_ns": 550.0, "total_max_ns": 852.0, "total_p5_ns": 575.0, "total_p25_ns": 650.0, "total_p50_ns": 698.5, "total_p75_ns": 732.75, "total_p95_ns": 805.25, "total_p99_ns": 851.05, "total_ci_low_ns": 680.7044270833334, "total_ci_high_ns": 707.6986979166667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.020673056381519}, {"serializer": "postcard", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "1.1.3", "avg_time_ser_ns": 129.58510638297872, "avg_time_deser_ns": 202.7127659574468, "avg_time_total_ns": 332.29787234042556, "median_size_bytes": 286.0, "avg_ops_per_sec": 3009348.1879882184, "min_ops_per_sec": 2392344.4976076554, "max_ops_per_sec": 3891050.5836575874, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 129.58510638297872, "ser_median_ns": 130.0, "ser_std_ns": 19.51531495340253, "ser_mad_ns": 16.0, "ser_cv": 0.1505984406551053, "ser_min_ns": 89.0, "ser_max_ns": 168.0, "ser_p5_ns": 99.0, "ser_p25_ns": 113.5, "ser_p50_ns": 130.0, "ser_p75_ns": 145.75, "ser_p95_ns": 160.35, "ser_p99_ns": 166.14, "ser_ci_low_ns": 125.44654255319148, "ser_ci_high_ns": 133.38297872340425, "deser_mean_ns": 202.7127659574468, "deser_median_ns": 199.0, "deser_std_ns": 28.113679500608143, "deser_mad_ns": 20.0, "deser_cv": 0.13868726701953113, "deser_min_ns": 157.0, "deser_max_ns": 272.0, "deser_p5_ns": 161.0, "deser_p25_ns": 180.5, "deser_p50_ns": 199.0, "deser_p75_ns": 220.0, "deser_p95_ns": 259.4, "deser_p99_ns": 267.34999999999997, "deser_ci_low_ns": 197.2656914893617, "deser_ci_high_ns": 208.40425531914894, "total_mean_ns": 332.29787234042556, "total_median_ns": 329.0, "total_std_ns": 31.157880926203646, "total_mad_ns": 20.0, "total_cv": 0.09376491250682362, "total_min_ns": 257.0, "total_max_ns": 418.0, "total_p5_ns": 283.65, "total_p25_ns": 311.25, "total_p50_ns": 329.0, "total_p75_ns": 350.5, "total_p95_ns": 387.0, "total_p99_ns": 402.1899999999999, "total_ci_low_ns": 325.6803191489362, "total_ci_high_ns": 338.75531914893617, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.509834922762393}, {"serializer": "serde_json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "1.0.150", "avg_time_ser_ns": 692.679012345679, "avg_time_deser_ns": 1196.6666666666667, "avg_time_total_ns": 1889.3456790123457, "median_size_bytes": 672.0, "avg_ops_per_sec": 529283.7679776786, "min_ops_per_sec": 462534.69010175765, "max_ops_per_sec": 561797.7528089888, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 692.679012345679, "ser_median_ns": 664.0, "ser_std_ns": 81.82555028236807, "ser_mad_ns": 25.0, "ser_cv": 0.11812910283693324, "ser_min_ns": 609.0, "ser_max_ns": 938.0, "ser_p5_ns": 623.0, "ser_p25_ns": 640.0, "ser_p50_ns": 664.0, "ser_p75_ns": 695.0, "ser_p95_ns": 900.0, "ser_p99_ns": 934.8, "ser_ci_low_ns": 675.625, "ser_ci_high_ns": 710.1132716049383, "deser_mean_ns": 1196.6666666666667, "deser_median_ns": 1195.0, "deser_std_ns": 37.50899892025912, "deser_mad_ns": 25.0, "deser_cv": 0.03134456734283492, "deser_min_ns": 1121.0, "deser_max_ns": 1273.0, "deser_p5_ns": 1146.0, "deser_p25_ns": 1174.0, "deser_p50_ns": 1195.0, "deser_p75_ns": 1220.0, "deser_p95_ns": 1262.0, "deser_p99_ns": 1272.2, "deser_ci_low_ns": 1188.690740740741, "deser_ci_high_ns": 1205.0743827160495, "total_mean_ns": 1889.3456790123457, "total_median_ns": 1864.0, "total_std_ns": 85.17234887183562, "total_mad_ns": 39.0, "total_cv": 0.04508034173839454, "total_min_ns": 1780.0, "total_max_ns": 2162.0, "total_p5_ns": 1792.0, "total_p25_ns": 1835.0, "total_p50_ns": 1864.0, "total_p75_ns": 1910.0, "total_p95_ns": 2084.0, "total_p99_ns": 2137.2000000000003, "total_ci_low_ns": 1871.5055555555557, "total_ci_high_ns": 1909.7932098765432, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.910436919707358}, {"serializer": "speedy", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.8.7", "avg_time_ser_ns": 52.265957446808514, "avg_time_deser_ns": 117.18085106382979, "avg_time_total_ns": 169.4468085106383, "median_size_bytes": 302.0, "avg_ops_per_sec": 5901557.0065293815, "min_ops_per_sec": 4098360.655737705, "max_ops_per_sec": 8928571.42857143, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 52.265957446808514, "ser_median_ns": 52.0, "ser_std_ns": 11.6371443970847, "ser_mad_ns": 9.0, "ser_cv": 0.2226524676014577, "ser_min_ns": 36.0, "ser_max_ns": 87.0, "ser_p5_ns": 37.65, "ser_p25_ns": 42.0, "ser_p50_ns": 52.0, "ser_p75_ns": 59.0, "ser_p95_ns": 73.35, "ser_p99_ns": 87.0, "ser_ci_low_ns": 49.95718085106383, "ser_ci_high_ns": 54.57446808510638, "deser_mean_ns": 117.18085106382979, "deser_median_ns": 116.0, "deser_std_ns": 23.298420623917348, "deser_mad_ns": 16.5, "deser_cv": 0.19882447014509583, "deser_min_ns": 74.0, "deser_max_ns": 182.0, "deser_p5_ns": 88.0, "deser_p25_ns": 96.25, "deser_p50_ns": 116.0, "deser_p75_ns": 131.0, "deser_p95_ns": 158.7, "deser_p99_ns": 179.20999999999998, "deser_ci_low_ns": 112.45718085106382, "deser_ci_high_ns": 121.67047872340426, "total_mean_ns": 169.4468085106383, "total_median_ns": 168.0, "total_std_ns": 27.609261739331146, "total_mad_ns": 20.0, "total_cv": 0.1629376320628533, "total_min_ns": 112.0, "total_max_ns": 244.0, "total_p5_ns": 129.65, "total_p25_ns": 149.25, "total_p50_ns": 168.0, "total_p75_ns": 189.0, "total_p95_ns": 211.79999999999995, "total_p99_ns": 236.55999999999995, "total_ci_low_ns": 164.24468085106383, "total_ci_high_ns": 174.85292553191488, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "ciborium", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.2.2", "avg_time_ser_ns": 430.74468085106383, "avg_time_deser_ns": 900.9042553191489, "avg_time_total_ns": 1331.6489361702127, "median_size_bytes": 355.0, "avg_ops_per_sec": 750948.6718593969, "min_ops_per_sec": 687285.2233676976, "max_ops_per_sec": 815660.6851549755, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 430.74468085106383, "ser_median_ns": 431.0, "ser_std_ns": 17.938926359437087, "ser_mad_ns": 11.5, "ser_cv": 0.04164630965144693, "ser_min_ns": 387.0, "ser_max_ns": 469.0, "ser_p5_ns": 401.65, "ser_p25_ns": 420.0, "ser_p50_ns": 431.0, "ser_p75_ns": 442.75, "ser_p95_ns": 461.7, "ser_p99_ns": 468.07, "ser_ci_low_ns": 427.05186170212767, "ser_ci_high_ns": 434.4468085106383, "deser_mean_ns": 900.9042553191489, "deser_median_ns": 900.0, "deser_std_ns": 40.22037924272637, "deser_mad_ns": 28.5, "deser_cv": 0.04464445473007356, "deser_min_ns": 824.0, "deser_max_ns": 1013.0, "deser_p5_ns": 845.6, "deser_p25_ns": 867.0, "deser_p50_ns": 900.0, "deser_p75_ns": 925.5, "deser_p95_ns": 966.15, "deser_p99_ns": 1007.42, "deser_ci_low_ns": 892.8609042553192, "deser_ci_high_ns": 908.7877659574468, "total_mean_ns": 1331.6489361702127, "total_median_ns": 1325.0, "total_std_ns": 47.680772583137895, "total_mad_ns": 31.5, "total_cv": 0.03580581284453735, "total_min_ns": 1226.0, "total_max_ns": 1455.0, "total_p5_ns": 1266.55, "total_p25_ns": 1297.0, "total_p50_ns": 1325.0, "total_p75_ns": 1360.75, "total_p95_ns": 1410.75, "total_p99_ns": 1452.21, "total_ci_low_ns": 1322.1372340425532, "total_ci_high_ns": 1341.2877659574467, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.710378469031518}, {"serializer": "flexbuffers", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "2.0.0", "avg_time_ser_ns": 1451.9782608695652, "avg_time_deser_ns": 948.3586956521739, "avg_time_total_ns": 2400.336956521739, "median_size_bytes": 416.0, "avg_ops_per_sec": 416608.1754826089, "min_ops_per_sec": 375657.4004507889, "max_ops_per_sec": 457456.54162854527, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 1451.9782608695652, "ser_median_ns": 1459.0, "ser_std_ns": 105.88839015949085, "ser_mad_ns": 82.5, "ser_cv": 0.07292698039161832, "ser_min_ns": 1218.0, "ser_max_ns": 1735.0, "ser_p5_ns": 1266.95, "ser_p25_ns": 1373.0, "ser_p50_ns": 1459.0, "ser_p75_ns": 1522.25, "ser_p95_ns": 1625.6000000000001, "ser_p99_ns": 1694.96, "ser_ci_low_ns": 1430.3472826086957, "ser_ci_high_ns": 1474.1315217391304, "deser_mean_ns": 948.3586956521739, "deser_median_ns": 943.0, "deser_std_ns": 40.319760792543065, "deser_mad_ns": 27.0, "deser_cv": 0.042515306684477325, "deser_min_ns": 867.0, "deser_max_ns": 1060.0, "deser_p5_ns": 882.0, "deser_p25_ns": 918.0, "deser_p50_ns": 943.0, "deser_p75_ns": 975.25, "deser_p95_ns": 1014.15, "deser_p99_ns": 1042.71, "deser_ci_low_ns": 940.5858695652174, "deser_ci_high_ns": 956.6635869565217, "total_mean_ns": 2400.336956521739, "total_median_ns": 2398.5, "total_std_ns": 108.27125857028584, "total_mad_ns": 64.0, "total_cv": 0.04510669149017257, "total_min_ns": 2186.0, "total_max_ns": 2662.0, "total_p5_ns": 2220.85, "total_p25_ns": 2335.25, "total_p50_ns": 2398.5, "total_p75_ns": 2462.25, "total_p95_ns": 2599.5, "total_p99_ns": 2648.35, "total_ci_low_ns": 2378.8989130434784, "total_ci_high_ns": 2422.0760869565215, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.255681099596075}, {"serializer": "nanoserde", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.1.37", "avg_time_ser_ns": 461.4421052631579, "avg_time_deser_ns": 250.8736842105263, "avg_time_total_ns": 712.3157894736842, "median_size_bytes": 322.0, "avg_ops_per_sec": 1403871.730456628, "min_ops_per_sec": 1146788.990825688, "max_ops_per_sec": 1742160.2787456445, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 461.4421052631579, "ser_median_ns": 463.0, "ser_std_ns": 49.49440453856476, "ser_mad_ns": 33.0, "ser_cv": 0.10726026943366682, "ser_min_ns": 344.0, "ser_max_ns": 599.0, "ser_p5_ns": 379.1, "ser_p25_ns": 425.0, "ser_p50_ns": 463.0, "ser_p75_ns": 494.0, "ser_p95_ns": 533.0, "ser_p99_ns": 588.6600000000001, "ser_ci_low_ns": 451.6507894736842, "ser_ci_high_ns": 471.5615789473684, "deser_mean_ns": 250.8736842105263, "deser_median_ns": 250.0, "deser_std_ns": 17.458304190796, "deser_mad_ns": 15.0, "deser_cv": 0.06959001796356397, "deser_min_ns": 224.0, "deser_max_ns": 292.0, "deser_p5_ns": 229.0, "deser_p25_ns": 235.0, "deser_p50_ns": 250.0, "deser_p75_ns": 263.0, "deser_p95_ns": 280.3, "deser_p99_ns": 292.0, "deser_ci_low_ns": 247.3365789473684, "deser_ci_high_ns": 254.3165789473684, "total_mean_ns": 712.3157894736842, "total_median_ns": 708.0, "total_std_ns": 57.77216129227588, "total_mad_ns": 40.0, "total_cv": 0.08110470404560675, "total_min_ns": 574.0, "total_max_ns": 872.0, "total_p5_ns": 625.4, "total_p25_ns": 672.0, "total_p50_ns": 708.0, "total_p75_ns": 748.0, "total_p95_ns": 806.1, "total_p99_ns": 862.6, "total_ci_low_ns": 700.9036842105263, "total_ci_high_ns": 724.3057894736842, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.119255086721159}, {"serializer": "serde_avro_fast", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "2.1.0", "avg_time_ser_ns": 460.69565217391306, "avg_time_deser_ns": 843.9673913043479, "avg_time_total_ns": 1304.6630434782608, "median_size_bytes": 287.0, "avg_ops_per_sec": 766481.4336535338, "min_ops_per_sec": 698324.0223463688, "max_ops_per_sec": 838222.9673093043, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 460.69565217391306, "ser_median_ns": 460.0, "ser_std_ns": 17.834858527357998, "ser_mad_ns": 14.0, "ser_cv": 0.03871288657316289, "ser_min_ns": 424.0, "ser_max_ns": 501.0, "ser_p5_ns": 433.65, "ser_p25_ns": 446.75, "ser_p50_ns": 460.0, "ser_p75_ns": 474.0, "ser_p95_ns": 495.35, "ser_p99_ns": 499.18, "ser_ci_low_ns": 457.1519021739131, "ser_ci_high_ns": 464.3807065217391, "deser_mean_ns": 843.9673913043479, "deser_median_ns": 847.5, "deser_std_ns": 50.523729836943026, "deser_mad_ns": 31.5, "deser_cv": 0.05986455206386449, "deser_min_ns": 737.0, "deser_max_ns": 970.0, "deser_p5_ns": 753.1, "deser_p25_ns": 810.0, "deser_p50_ns": 847.5, "deser_p75_ns": 871.25, "deser_p95_ns": 914.9, "deser_p99_ns": 959.08, "deser_ci_low_ns": 834.1086956521739, "deser_ci_high_ns": 854.3595108695652, "total_mean_ns": 1304.6630434782608, "total_median_ns": 1306.5, "total_std_ns": 54.167683722550116, "total_mad_ns": 36.5, "total_cv": 0.0415185238773514, "total_min_ns": 1193.0, "total_max_ns": 1432.0, "total_p5_ns": 1211.15, "total_p25_ns": 1269.75, "total_p50_ns": 1306.5, "total_p75_ns": 1339.75, "total_p95_ns": 1391.8, "total_p99_ns": 1416.53, "total_ci_low_ns": 1293.9554347826088, "total_ci_high_ns": 1315.229347826087, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.929714402323377}, {"serializer": "sonic-rs", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.3.17", "avg_time_ser_ns": 911.5531914893617, "avg_time_deser_ns": 1039.6170212765958, "avg_time_total_ns": 1951.1702127659576, "median_size_bytes": 672.0, "avg_ops_per_sec": 512512.94913036365, "min_ops_per_sec": 482160.07714561233, "max_ops_per_sec": 545851.5283842795, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 911.5531914893617, "ser_median_ns": 912.0, "ser_std_ns": 42.716775939835635, "ser_mad_ns": 29.0, "ser_cv": 0.04686152858511951, "ser_min_ns": 829.0, "ser_max_ns": 1026.0, "ser_p5_ns": 847.3, "ser_p25_ns": 880.0, "ser_p50_ns": 912.0, "ser_p75_ns": 937.75, "ser_p95_ns": 981.05, "ser_p99_ns": 1002.7499999999998, "ser_ci_low_ns": 903.084840425532, "ser_ci_high_ns": 920.6382978723404, "deser_mean_ns": 1039.6170212765958, "deser_median_ns": 1040.0, "deser_std_ns": 35.10846676150396, "deser_mad_ns": 26.0, "deser_cv": 0.033770577090391024, "deser_min_ns": 963.0, "deser_max_ns": 1128.0, "deser_p5_ns": 989.65, "deser_p25_ns": 1008.25, "deser_p50_ns": 1040.0, "deser_p75_ns": 1057.75, "deser_p95_ns": 1097.75, "deser_p99_ns": 1114.05, "deser_ci_low_ns": 1032.680585106383, "deser_ci_high_ns": 1046.638829787234, "total_mean_ns": 1951.1702127659576, "total_median_ns": 1948.0, "total_std_ns": 60.62588224350806, "total_mad_ns": 48.5, "total_cv": 0.031071549702250463, "total_min_ns": 1832.0, "total_max_ns": 2074.0, "total_p5_ns": 1864.3, "total_p25_ns": 1901.5, "total_p50_ns": 1948.0, "total_p75_ns": 1998.5, "total_p95_ns": 2053.7, "total_p99_ns": 2071.21, "total_ci_low_ns": 1939.2409574468086, "total_ci_high_ns": 1963.4268617021276, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 33.212257763087266}, {"serializer": "bson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "2.15.0", "avg_time_ser_ns": 1048.4555555555555, "avg_time_deser_ns": 1842.1666666666667, "avg_time_total_ns": 2890.6222222222223, "median_size_bytes": 478.0, "avg_ops_per_sec": 345946.27838681405, "min_ops_per_sec": 326264.2740619902, "max_ops_per_sec": 368324.12523020257, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 1048.4555555555555, "ser_median_ns": 1050.5, "ser_std_ns": 60.778685114887374, "ser_mad_ns": 37.0, "ser_cv": 0.05796972965886186, "ser_min_ns": 893.0, "ser_max_ns": 1201.0, "ser_p5_ns": 953.5, "ser_p25_ns": 1010.0, "ser_p50_ns": 1050.5, "ser_p75_ns": 1077.75, "ser_p95_ns": 1160.6, "ser_p99_ns": 1191.21, "ser_ci_low_ns": 1036.7222222222222, "ser_ci_high_ns": 1060.7555555555555, "deser_mean_ns": 1842.1666666666667, "deser_median_ns": 1839.5, "deser_std_ns": 37.96457544559197, "deser_mad_ns": 24.5, "deser_cv": 0.02060865400104513, "deser_min_ns": 1766.0, "deser_max_ns": 1951.0, "deser_p5_ns": 1786.45, "deser_p25_ns": 1814.75, "deser_p50_ns": 1839.5, "deser_p75_ns": 1863.0, "deser_p95_ns": 1912.4, "deser_p99_ns": 1930.53, "deser_ci_low_ns": 1834.6883333333333, "deser_ci_high_ns": 1850.0347222222222, "total_mean_ns": 2890.6222222222223, "total_median_ns": 2890.5, "total_std_ns": 70.7993807148974, "total_mad_ns": 44.5, "total_cv": 0.024492782270409928, "total_min_ns": 2715.0, "total_max_ns": 3065.0, "total_p5_ns": 2773.35, "total_p25_ns": 2849.25, "total_p50_ns": 2890.5, "total_p75_ns": 2935.5, "total_p95_ns": 3003.65, "total_p99_ns": 3054.32, "total_ci_low_ns": 2876.0430555555554, "total_ci_high_ns": 2905.5569444444445, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 46.33877528265888}, {"serializer": "simd-json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.14.3", "avg_time_ser_ns": 1058.7173913043478, "avg_time_deser_ns": 1442.3804347826087, "avg_time_total_ns": 2501.0978260869565, "median_size_bytes": 672.0, "avg_ops_per_sec": 399824.42492644535, "min_ops_per_sec": 357015.3516601214, "max_ops_per_sec": 445434.29844097997, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 1058.7173913043478, "ser_median_ns": 1026.5, "ser_std_ns": 115.36614679396618, "ser_mad_ns": 67.5, "ser_cv": 0.10896783952120993, "ser_min_ns": 778.0, "ser_max_ns": 1349.0, "ser_p5_ns": 921.2, "ser_p25_ns": 979.0, "ser_p50_ns": 1026.5, "ser_p75_ns": 1135.25, "ser_p95_ns": 1257.7, "ser_p99_ns": 1325.3400000000001, "ser_ci_low_ns": 1035.8244565217392, "ser_ci_high_ns": 1082.6103260869565, "deser_mean_ns": 1442.3804347826087, "deser_median_ns": 1439.0, "deser_std_ns": 38.23548848947359, "deser_mad_ns": 23.5, "deser_cv": 0.026508601730469483, "deser_min_ns": 1364.0, "deser_max_ns": 1549.0, "deser_p5_ns": 1385.55, "deser_p25_ns": 1417.0, "deser_p50_ns": 1439.0, "deser_p75_ns": 1463.0, "deser_p95_ns": 1518.7, "deser_p99_ns": 1547.18, "deser_ci_low_ns": 1435.1084239130435, "deser_ci_high_ns": 1450.478804347826, "total_mean_ns": 2501.0978260869565, "total_median_ns": 2470.5, "total_std_ns": 122.85317420728121, "total_mad_ns": 88.0, "total_cv": 0.04911969972781462, "total_min_ns": 2245.0, "total_max_ns": 2801.0, "total_p5_ns": 2343.55, "total_p25_ns": 2406.75, "total_p50_ns": 2470.5, "total_p75_ns": 2582.25, "total_p95_ns": 2720.7, "total_p99_ns": 2773.7000000000003, "total_ci_low_ns": 2476.4877717391305, "total_ci_high_ns": 2525.327173913043, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.645266187466543}, {"serializer": "prost", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.13.5", "avg_time_ser_ns": 358.31182795698925, "avg_time_deser_ns": 367.93548387096774, "avg_time_total_ns": 726.247311827957, "median_size_bytes": 290.0, "avg_ops_per_sec": 1376941.4133637347, "min_ops_per_sec": 1141552.511415525, "max_ops_per_sec": 1715265.8662092625, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 358.31182795698925, "ser_median_ns": 354.0, "ser_std_ns": 41.76408340819419, "ser_mad_ns": 25.0, "ser_cv": 0.11655792566581819, "ser_min_ns": 264.0, "ser_max_ns": 461.0, "ser_p5_ns": 294.0, "ser_p25_ns": 333.0, "ser_p50_ns": 354.0, "ser_p75_ns": 383.0, "ser_p95_ns": 430.3999999999999, "ser_p99_ns": 459.15999999999997, "ser_ci_low_ns": 350.31155913978495, "ser_ci_high_ns": 366.8284946236559, "deser_mean_ns": 367.93548387096774, "deser_median_ns": 361.0, "deser_std_ns": 38.75531000128799, "deser_mad_ns": 25.0, "deser_cv": 0.1053318087006775, "deser_min_ns": 314.0, "deser_max_ns": 474.0, "deser_p5_ns": 319.0, "deser_p25_ns": 339.0, "deser_p50_ns": 361.0, "deser_p75_ns": 390.0, "deser_p95_ns": 441.19999999999993, "deser_p99_ns": 463.88, "deser_ci_low_ns": 359.6005376344086, "deser_ci_high_ns": 375.64784946236557, "total_mean_ns": 726.247311827957, "total_median_ns": 718.0, "total_std_ns": 60.69876725235904, "total_mad_ns": 38.0, "total_cv": 0.08357864636989963, "total_min_ns": 583.0, "total_max_ns": 876.0, "total_p5_ns": 642.2, "total_p25_ns": 685.0, "total_p50_ns": 718.0, "total_p75_ns": 767.0, "total_p95_ns": 849.1999999999999, "total_p99_ns": 868.64, "total_ci_low_ns": 713.4728494623656, "total_ci_high_ns": 738.3336021505377, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.106100874470393}, {"serializer": "rkyv", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.8.17", "avg_time_ser_ns": 300.1011235955056, "avg_time_deser_ns": 162.4494382022472, "avg_time_total_ns": 462.55056179775283, "median_size_bytes": 304.0, "avg_ops_per_sec": 2161925.8143658754, "min_ops_per_sec": 1733102.253032929, "max_ops_per_sec": 2801120.4481792715, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 300.1011235955056, "ser_median_ns": 302.0, "ser_std_ns": 41.8400756517166, "ser_mad_ns": 25.0, "ser_cv": 0.1394199233592713, "ser_min_ns": 197.0, "ser_max_ns": 395.0, "ser_p5_ns": 224.0, "ser_p25_ns": 273.0, "ser_p50_ns": 302.0, "ser_p75_ns": 326.0, "ser_p95_ns": 370.79999999999995, "ser_p99_ns": 388.84000000000003, "ser_ci_low_ns": 291.3587078651685, "ser_ci_high_ns": 308.9556179775281, "deser_mean_ns": 162.4494382022472, "deser_median_ns": 160.0, "deser_std_ns": 14.192676757554688, "deser_mad_ns": 8.0, "deser_cv": 0.08736673339482412, "deser_min_ns": 142.0, "deser_max_ns": 203.0, "deser_p5_ns": 145.4, "deser_p25_ns": 151.0, "deser_p50_ns": 160.0, "deser_p75_ns": 168.0, "deser_p95_ns": 192.2, "deser_p99_ns": 200.36, "deser_ci_low_ns": 159.65168539325842, "deser_ci_high_ns": 165.563202247191, "total_mean_ns": 462.55056179775283, "total_median_ns": 462.0, "total_std_ns": 46.94605493057359, "total_mad_ns": 29.0, "total_cv": 0.10149388803704543, "total_min_ns": 357.0, "total_max_ns": 577.0, "total_p5_ns": 384.8, "total_p25_ns": 430.0, "total_p50_ns": 462.0, "total_p75_ns": 489.0, "total_p95_ns": 544.3999999999999, "total_p99_ns": 564.6800000000001, "total_ci_low_ns": 453.0308988764045, "total_ci_high_ns": 472.6862359550562, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.984025991606877, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.3158227459743674}, {"serializer": "speedy", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.8.7", "avg_time_ser_ns": 182.14457831325302, "avg_time_deser_ns": 148.9156626506024, "avg_time_total_ns": 331.06024096385545, "median_size_bytes": 302.0, "avg_ops_per_sec": 3020598.2968192734, "min_ops_per_sec": 2375296.9121140144, "max_ops_per_sec": 3906250.0, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 182.14457831325302, "ser_median_ns": 183.0, "ser_std_ns": 26.28462062161923, "ser_mad_ns": 14.0, "ser_cv": 0.14430635742786055, "ser_min_ns": 123.0, "ser_max_ns": 248.0, "ser_p5_ns": 134.2, "ser_p25_ns": 168.5, "ser_p50_ns": 183.0, "ser_p75_ns": 197.0, "ser_p95_ns": 228.49999999999994, "ser_p99_ns": 247.18, "ser_ci_low_ns": 176.289156626506, "ser_ci_high_ns": 187.53072289156628, "deser_mean_ns": 148.9156626506024, "deser_median_ns": 148.0, "deser_std_ns": 11.375202833117465, "deser_mad_ns": 7.0, "deser_cv": 0.07638687986640369, "deser_min_ns": 131.0, "deser_max_ns": 179.0, "deser_p5_ns": 132.1, "deser_p25_ns": 140.5, "deser_p50_ns": 148.0, "deser_p75_ns": 154.5, "deser_p95_ns": 171.49999999999994, "deser_p99_ns": 176.53999999999996, "deser_ci_low_ns": 146.52981927710846, "deser_ci_high_ns": 151.45813253012048, "total_mean_ns": 331.06024096385545, "total_median_ns": 329.0, "total_std_ns": 29.43175214097132, "total_mad_ns": 16.0, "total_cv": 0.08890150038942497, "total_min_ns": 256.0, "total_max_ns": 421.0, "total_p5_ns": 281.6, "total_p25_ns": 315.0, "total_p50_ns": 329.0, "total_p75_ns": 346.0, "total_p95_ns": 381.19999999999993, "total_p99_ns": 402.1399999999998, "total_ci_low_ns": 324.6861445783133, "total_ci_high_ns": 337.4105421686747, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "postcard", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "1.1.3", "avg_time_ser_ns": 240.247311827957, "avg_time_deser_ns": 223.3978494623656, "avg_time_total_ns": 463.64516129032256, "median_size_bytes": 286.0, "avg_ops_per_sec": 2156821.8186878175, "min_ops_per_sec": 1694915.2542372881, "max_ops_per_sec": 2873563.2183908047, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 240.247311827957, "ser_median_ns": 237.0, "ser_std_ns": 42.861165131046505, "ser_mad_ns": 29.0, "ser_cv": 0.17840434843966008, "ser_min_ns": 144.0, "ser_max_ns": 340.0, "ser_p5_ns": 179.0, "ser_p25_ns": 208.0, "ser_p50_ns": 237.0, "ser_p75_ns": 265.0, "ser_p95_ns": 318.9999999999999, "ser_p99_ns": 340.0, "ser_ci_low_ns": 231.79569892473117, "ser_ci_high_ns": 248.72069892473118, "deser_mean_ns": 223.3978494623656, "deser_median_ns": 220.0, "deser_std_ns": 16.269563330867, "deser_mad_ns": 13.0, "deser_cv": 0.0728277526843777, "deser_min_ns": 201.0, "deser_max_ns": 269.0, "deser_p5_ns": 203.0, "deser_p25_ns": 209.0, "deser_p50_ns": 220.0, "deser_p75_ns": 235.0, "deser_p95_ns": 255.99999999999994, "deser_p99_ns": 262.56, "deser_ci_low_ns": 220.23655913978496, "deser_ci_high_ns": 226.93602150537635, "total_mean_ns": 463.64516129032256, "total_median_ns": 460.0, "total_std_ns": 48.77112589327435, "total_mad_ns": 31.0, "total_cv": 0.1051906284485845, "total_min_ns": 348.0, "total_max_ns": 590.0, "total_p5_ns": 399.0, "total_p25_ns": 430.0, "total_p50_ns": 460.0, "total_p75_ns": 492.0, "total_p95_ns": 561.9999999999998, "total_p99_ns": 580.8, "total_ci_low_ns": 454.3752688172043, "total_ci_high_ns": 473.89354838709676, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.9882109081487239, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.2343939326604234}, {"serializer": "rmp-serde", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "1.3.1", "avg_time_ser_ns": 441.7173913043478, "avg_time_deser_ns": 402.0, "avg_time_total_ns": 843.7173913043479, "median_size_bytes": 356.0, "avg_ops_per_sec": 1185230.9912138311, "min_ops_per_sec": 945179.584120983, "max_ops_per_sec": 1432664.7564469913, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 441.7173913043478, "ser_median_ns": 433.5, "ser_std_ns": 69.50726518860489, "ser_mad_ns": 44.0, "ser_cv": 0.1573568678909309, "ser_min_ns": 274.0, "ser_max_ns": 631.0, "ser_p5_ns": 334.15, "ser_p25_ns": 395.25, "ser_p50_ns": 433.5, "ser_p75_ns": 491.5, "ser_p95_ns": 562.45, "ser_p99_ns": 630.09, "ser_ci_low_ns": 427.6388586956522, "ser_ci_high_ns": 456.1635869565217, "deser_mean_ns": 402.0, "deser_median_ns": 399.5, "deser_std_ns": 20.557076800785822, "deser_mad_ns": 13.5, "deser_cv": 0.05113700696712891, "deser_min_ns": 362.0, "deser_max_ns": 459.0, "deser_p5_ns": 372.65, "deser_p25_ns": 389.25, "deser_p50_ns": 399.5, "deser_p75_ns": 415.25, "deser_p95_ns": 439.8, "deser_p99_ns": 447.1700000000001, "deser_ci_low_ns": 397.9125, "deser_ci_high_ns": 406.33722826086955, "total_mean_ns": 843.7173913043479, "total_median_ns": 834.5, "total_std_ns": 74.41498225712826, "total_mad_ns": 50.0, "total_cv": 0.08819894318177578, "total_min_ns": 698.0, "total_max_ns": 1058.0, "total_p5_ns": 717.0, "total_p25_ns": 797.75, "total_p50_ns": 834.5, "total_p75_ns": 892.0, "total_p95_ns": 990.35, "total_p99_ns": 1019.7800000000002, "total_ci_low_ns": 828.8586956521739, "total_ci_high_ns": 859.5008152173913, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.85410997914}, {"serializer": "bitcode", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.6.9", "avg_time_ser_ns": 954.3010752688172, "avg_time_deser_ns": 513.9569892473119, "avg_time_total_ns": 1468.258064516129, "median_size_bytes": 290.0, "avg_ops_per_sec": 681079.1809473592, "min_ops_per_sec": 613496.9325153375, "max_ops_per_sec": 758150.113722517, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 954.3010752688172, "ser_median_ns": 957.0, "ser_std_ns": 55.42028841856065, "ser_mad_ns": 35.0, "ser_cv": 0.05807421772311145, "ser_min_ns": 824.0, "ser_max_ns": 1070.0, "ser_p5_ns": 852.4, "ser_p25_ns": 922.0, "ser_p50_ns": 957.0, "ser_p75_ns": 991.0, "ser_p95_ns": 1041.8, "ser_p99_ns": 1067.24, "ser_ci_low_ns": 943.2887096774193, "ser_ci_high_ns": 966.1629032258064, "deser_mean_ns": 513.9569892473119, "deser_median_ns": 511.0, "deser_std_ns": 28.84852267278269, "deser_mad_ns": 20.0, "deser_cv": 0.056130227385430144, "deser_min_ns": 437.0, "deser_max_ns": 582.0, "deser_p5_ns": 476.2, "deser_p25_ns": 492.0, "deser_p50_ns": 511.0, "deser_p75_ns": 533.0, "deser_p95_ns": 563.1999999999999, "deser_p99_ns": 579.24, "deser_ci_low_ns": 507.97822580645163, "deser_ci_high_ns": 519.6239247311828, "total_mean_ns": 1468.258064516129, "total_median_ns": 1471.0, "total_std_ns": 66.02814011857014, "total_mad_ns": 43.0, "total_cv": 0.04497039159143321, "total_min_ns": 1319.0, "total_max_ns": 1630.0, "total_p5_ns": 1361.0, "total_p25_ns": 1426.0, "total_p50_ns": 1471.0, "total_p75_ns": 1509.0, "total_p95_ns": 1576.8, "total_p99_ns": 1621.72, "total_ci_low_ns": 1454.654569892473, "total_ci_high_ns": 1480.9260752688172, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.73720306444066}, {"serializer": "minicbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.25.1", "avg_time_ser_ns": 492.07608695652175, "avg_time_deser_ns": 415.0, "avg_time_total_ns": 907.0760869565217, "median_size_bytes": 322.0, "avg_ops_per_sec": 1102443.3499898145, "min_ops_per_sec": 1006036.217303823, "max_ops_per_sec": 1253132.8320802005, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 492.07608695652175, "ser_median_ns": 495.5, "ser_std_ns": 34.904023413553546, "ser_mad_ns": 22.5, "ser_cv": 0.07093216748132196, "ser_min_ns": 404.0, "ser_max_ns": 563.0, "ser_p5_ns": 434.75, "ser_p25_ns": 468.5, "ser_p50_ns": 495.5, "ser_p75_ns": 512.25, "ser_p95_ns": 550.9, "ser_p99_ns": 563.0, "ser_ci_low_ns": 485.0741847826087, "ser_ci_high_ns": 498.85896739130436, "deser_mean_ns": 415.0, "deser_median_ns": 415.0, "deser_std_ns": 22.278950791086377, "deser_mad_ns": 15.0, "deser_cv": 0.053684218773702115, "deser_min_ns": 369.0, "deser_max_ns": 475.0, "deser_p5_ns": 378.65, "deser_p25_ns": 400.75, "deser_p50_ns": 415.0, "deser_p75_ns": 430.25, "deser_p95_ns": 450.9, "deser_p99_ns": 472.27, "deser_ci_low_ns": 410.40108695652174, "deser_ci_high_ns": 419.57608695652175, "total_mean_ns": 907.0760869565217, "total_median_ns": 912.0, "total_std_ns": 42.647348627545284, "total_mad_ns": 26.5, "total_cv": 0.047016285889134535, "total_min_ns": 798.0, "total_max_ns": 994.0, "total_p5_ns": 829.25, "total_p25_ns": 879.5, "total_p50_ns": 912.0, "total_p75_ns": 934.0, "total_p95_ns": 974.15, "total_p99_ns": 993.09, "total_ci_low_ns": 898.3910326086957, "total_ci_high_ns": 915.5983695652174, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.510096735511715}, {"serializer": "ciborium", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.2.2", "avg_time_ser_ns": 812.6741573033707, "avg_time_deser_ns": 989.4044943820224, "avg_time_total_ns": 1802.0786516853932, "median_size_bytes": 355.0, "avg_ops_per_sec": 554914.7364155002, "min_ops_per_sec": 518403.3177812338, "max_ops_per_sec": 596658.7112171837, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 812.6741573033707, "ser_median_ns": 812.0, "ser_std_ns": 21.878681654284378, "ser_mad_ns": 12.0, "ser_cv": 0.026921837562649455, "ser_min_ns": 759.0, "ser_max_ns": 863.0, "ser_p5_ns": 773.0, "ser_p25_ns": 801.0, "ser_p50_ns": 812.0, "ser_p75_ns": 825.0, "ser_p95_ns": 850.6, "ser_p99_ns": 858.6, "ser_ci_low_ns": 808.1794943820224, "ser_ci_high_ns": 816.9558988764045, "deser_mean_ns": 989.4044943820224, "deser_median_ns": 983.0, "deser_std_ns": 40.72237465758608, "deser_mad_ns": 28.0, "deser_cv": 0.04115846945189095, "deser_min_ns": 896.0, "deser_max_ns": 1104.0, "deser_p5_ns": 935.6, "deser_p25_ns": 959.0, "deser_p50_ns": 983.0, "deser_p75_ns": 1020.0, "deser_p95_ns": 1059.0, "deser_p99_ns": 1078.48, "deser_ci_low_ns": 981.1230337078653, "deser_ci_high_ns": 997.4050561797752, "total_mean_ns": 1802.0786516853932, "total_median_ns": 1797.0, "total_std_ns": 51.58184685947292, "total_mad_ns": 31.0, "total_cv": 0.02862352695384911, "total_min_ns": 1676.0, "total_max_ns": 1929.0, "total_p5_ns": 1728.0, "total_p25_ns": 1773.0, "total_p50_ns": 1797.0, "total_p75_ns": 1836.0, "total_p95_ns": 1893.2, "total_p99_ns": 1924.6, "total_ci_low_ns": 1791.1342696629213, "total_ci_high_ns": 1813.0587078651686, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 34.565890887817766}, {"serializer": "flexbuffers", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "2.0.0", "avg_time_ser_ns": 1401.7078651685392, "avg_time_deser_ns": 984.0337078651686, "avg_time_total_ns": 2385.741573033708, "median_size_bytes": 416.0, "avg_ops_per_sec": 419156.8824147204, "min_ops_per_sec": 376364.3206624012, "max_ops_per_sec": 473933.6492890995, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 1401.7078651685392, "ser_median_ns": 1388.0, "ser_std_ns": 92.28503304328278, "ser_mad_ns": 57.0, "ser_cv": 0.06583756525628581, "ser_min_ns": 1196.0, "ser_max_ns": 1644.0, "ser_p5_ns": 1263.6, "ser_p25_ns": 1339.0, "ser_p50_ns": 1388.0, "ser_p75_ns": 1463.0, "ser_p95_ns": 1574.6, "ser_p99_ns": 1597.3600000000001, "ser_ci_low_ns": 1382.325, "ser_ci_high_ns": 1420.7553370786516, "deser_mean_ns": 984.0337078651686, "deser_median_ns": 983.0, "deser_std_ns": 27.669498072706443, "deser_mad_ns": 16.0, "deser_cv": 0.028118445386118514, "deser_min_ns": 914.0, "deser_max_ns": 1052.0, "deser_p5_ns": 935.0, "deser_p25_ns": 968.0, "deser_p50_ns": 983.0, "deser_p75_ns": 999.0, "deser_p95_ns": 1033.4, "deser_p99_ns": 1044.96, "deser_ci_low_ns": 978.2356741573034, "deser_ci_high_ns": 989.798595505618, "total_mean_ns": 2385.741573033708, "total_median_ns": 2372.0, "total_std_ns": 105.4043651081922, "total_mad_ns": 64.0, "total_cv": 0.04418096507165278, "total_min_ns": 2110.0, "total_max_ns": 2657.0, "total_p5_ns": 2234.0, "total_p25_ns": 2316.0, "total_p50_ns": 2372.0, "total_p75_ns": 2443.0, "total_p95_ns": 2595.6, "total_p99_ns": 2626.2000000000003, "total_ci_low_ns": 2365.448595505618, "total_ci_high_ns": 2407.289606741573, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.044531352969532}, {"serializer": "serde_json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "1.0.150", "avg_time_ser_ns": 1224.8333333333333, "avg_time_deser_ns": 2908.2291666666665, "avg_time_total_ns": 4133.0625, "median_size_bytes": 672.0, "avg_ops_per_sec": 241951.33753723782, "min_ops_per_sec": 208899.10173386254, "max_ops_per_sec": 276166.80475006904, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 1224.8333333333333, "ser_median_ns": 1235.5, "ser_std_ns": 108.10060291634451, "ser_mad_ns": 67.5, "ser_cv": 0.08825739794503566, "ser_min_ns": 980.0, "ser_max_ns": 1447.0, "ser_p5_ns": 1017.75, "ser_p25_ns": 1171.75, "ser_p50_ns": 1235.5, "ser_p75_ns": 1303.25, "ser_p95_ns": 1385.0, "ser_p99_ns": 1438.45, "ser_ci_low_ns": 1202.8091145833334, "ser_ci_high_ns": 1246.0216145833333, "deser_mean_ns": 2908.2291666666665, "deser_median_ns": 2833.5, "deser_std_ns": 226.2480929453407, "deser_mad_ns": 117.0, "deser_cv": 0.07779582693775819, "deser_min_ns": 2562.0, "deser_max_ns": 3475.0, "deser_p5_ns": 2650.5, "deser_p25_ns": 2737.5, "deser_p50_ns": 2833.5, "deser_p75_ns": 3018.0, "deser_p95_ns": 3339.25, "deser_p99_ns": 3400.8999999999996, "deser_ci_low_ns": 2863.823697916667, "deser_ci_high_ns": 2953.885677083333, "total_mean_ns": 4133.0625, "total_median_ns": 4079.5, "total_std_ns": 270.5585572380531, "total_mad_ns": 170.0, "total_cv": 0.06546200480589226, "total_min_ns": 3621.0, "total_max_ns": 4787.0, "total_p5_ns": 3767.0, "total_p25_ns": 3943.25, "total_p50_ns": 4079.5, "total_p75_ns": 4285.75, "total_p95_ns": 4608.25, "total_p99_ns": 4766.1, "total_ci_low_ns": 4080.86640625, "total_ci_high_ns": 4188.345572916666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.00301276253004}, {"serializer": "bincode", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "2.0.1", "avg_time_ser_ns": 259.86021505376345, "avg_time_deser_ns": 250.76344086021504, "avg_time_total_ns": 510.6236559139785, "median_size_bytes": 289.0, "avg_ops_per_sec": 1958389.4878706199, "min_ops_per_sec": 1605136.4365971107, "max_ops_per_sec": 2450980.3921568627, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 259.86021505376345, "ser_median_ns": 259.0, "ser_std_ns": 38.081603283592216, "ser_mad_ns": 23.0, "ser_cv": 0.1465464933741911, "ser_min_ns": 178.0, "ser_max_ns": 355.0, "ser_p5_ns": 201.0, "ser_p25_ns": 236.0, "ser_p50_ns": 259.0, "ser_p75_ns": 279.0, "ser_p95_ns": 331.4, "ser_p99_ns": 346.71999999999997, "ser_ci_low_ns": 252.32231182795698, "ser_ci_high_ns": 267.6236559139785, "deser_mean_ns": 250.76344086021504, "deser_median_ns": 250.0, "deser_std_ns": 19.283016772742734, "deser_mad_ns": 13.0, "deser_cv": 0.07689724110737423, "deser_min_ns": 210.0, "deser_max_ns": 291.0, "deser_p5_ns": 220.0, "deser_p25_ns": 239.0, "deser_p50_ns": 250.0, "deser_p75_ns": 264.0, "deser_p95_ns": 285.4, "deser_p99_ns": 291.0, "deser_ci_low_ns": 246.86021505376345, "deser_ci_high_ns": 254.59166666666667, "total_mean_ns": 510.6236559139785, "total_median_ns": 513.0, "total_std_ns": 46.28289992664081, "total_mad_ns": 28.0, "total_cv": 0.09063994468450125, "total_min_ns": 408.0, "total_max_ns": 623.0, "total_p5_ns": 437.2, "total_p25_ns": 477.0, "total_p50_ns": 513.0, "total_p75_ns": 534.0, "total_p95_ns": 593.0, "total_p99_ns": 619.3199999999999, "total_ci_low_ns": 501.19301075268817, "total_ci_high_ns": 519.4206989247311, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.9994817981603835, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.554720134785271}, {"serializer": "bson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "2.15.0", "avg_time_ser_ns": 75267.68478260869, "avg_time_deser_ns": 192175.46739130435, "avg_time_total_ns": 267443.152173913, "median_size_bytes": 48392.0, "avg_ops_per_sec": 3739.1123753646143, "min_ops_per_sec": 3594.562146384949, "max_ops_per_sec": 3918.2189344011786, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 75267.68478260869, "ser_median_ns": 75271.0, "ser_std_ns": 1504.8342607388226, "ser_mad_ns": 1019.0, "ser_cv": 0.01999309883232291, "ser_min_ns": 72325.0, "ser_max_ns": 79492.0, "ser_p5_ns": 73010.35, "ser_p25_ns": 74136.5, "ser_p50_ns": 75271.0, "ser_p75_ns": 76237.25, "ser_p95_ns": 77599.85, "ser_p99_ns": 79481.08, "ser_ci_low_ns": 74960.45054347826, "ser_ci_high_ns": 75592.41766304348, "deser_mean_ns": 192175.46739130435, "deser_median_ns": 192309.0, "deser_std_ns": 3959.828416337894, "deser_mad_ns": 2746.0, "deser_cv": 0.02060527532515355, "deser_min_ns": 182893.0, "deser_max_ns": 200853.0, "deser_p5_ns": 185758.7, "deser_p25_ns": 189528.25, "deser_p50_ns": 192309.0, "deser_p75_ns": 194512.5, "deser_p95_ns": 199188.65, "deser_p99_ns": 200114.08000000002, "deser_ci_low_ns": 191402.72853260871, "deser_ci_high_ns": 192975.80326086958, "total_mean_ns": 267443.152173913, "total_median_ns": 267683.0, "total_std_ns": 4650.872847146532, "total_mad_ns": 3136.5, "total_cv": 0.017390136219012857, "total_min_ns": 255218.0, "total_max_ns": 278198.0, "total_p5_ns": 260043.05, "total_p25_ns": 264220.0, "total_p50_ns": 267683.0, "total_p75_ns": 270046.5, "total_p95_ns": 275782.5, "total_p99_ns": 277935.01, "total_ci_low_ns": 266492.1214673913, "total_ci_high_ns": 268392.56956521736, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 73.32328002892923}, {"serializer": "postcard", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "1.1.3", "avg_time_ser_ns": 7744.976470588235, "avg_time_deser_ns": 27208.0, "avg_time_total_ns": 34952.97647058823, "median_size_bytes": 29192.0, "avg_ops_per_sec": 28609.866768899257, "min_ops_per_sec": 27146.618888617424, "max_ops_per_sec": 30002.10014701029, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 7744.976470588235, "ser_median_ns": 7735.0, "ser_std_ns": 198.84140464621717, "ser_mad_ns": 122.0, "ser_cv": 0.02567359699559101, "ser_min_ns": 7296.0, "ser_max_ns": 8287.0, "ser_p5_ns": 7437.6, "ser_p25_ns": 7604.0, "ser_p50_ns": 7735.0, "ser_p75_ns": 7848.0, "ser_p95_ns": 8117.599999999999, "ser_p99_ns": 8273.56, "ser_ci_low_ns": 7703.855588235294, "ser_ci_high_ns": 7787.745, "deser_mean_ns": 27208.0, "deser_median_ns": 27249.0, "deser_std_ns": 649.0128034543071, "deser_mad_ns": 379.0, "deser_cv": 0.023853749024342365, "deser_min_ns": 25542.0, "deser_max_ns": 28779.0, "deser_p5_ns": 25937.8, "deser_p25_ns": 26891.0, "deser_p50_ns": 27249.0, "deser_p75_ns": 27648.0, "deser_p95_ns": 28130.6, "deser_p99_ns": 28359.0, "deser_ci_low_ns": 27069.181470588235, "deser_ci_high_ns": 27345.800882352938, "total_mean_ns": 34952.97647058823, "total_median_ns": 34985.0, "total_std_ns": 734.8077004105448, "total_mad_ns": 496.0, "total_cv": 0.021022750409506928, "total_min_ns": 33331.0, "total_max_ns": 36837.0, "total_p5_ns": 33627.4, "total_p25_ns": 34505.0, "total_p50_ns": 34985.0, "total_p75_ns": 35481.0, "total_p95_ns": 36045.4, "total_p99_ns": 36408.6, "total_ci_low_ns": 34794.12735294118, "total_ci_high_ns": 35102.59029411765, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 17.49200703786931}, {"serializer": "flexbuffers", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "2.0.0", "avg_time_ser_ns": 111315.65168539326, "avg_time_deser_ns": 94030.66292134831, "avg_time_total_ns": 205346.31460674157, "median_size_bytes": 42220.0, "avg_ops_per_sec": 4869.821997609738, "min_ops_per_sec": 4622.930660663021, "max_ops_per_sec": 5108.13930917524, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 111315.65168539326, "ser_median_ns": 111162.0, "ser_std_ns": 3960.0490329296877, "ser_mad_ns": 2342.0, "ser_cv": 0.03557495260524376, "ser_min_ns": 101664.0, "ser_max_ns": 120337.0, "ser_p5_ns": 103712.8, "ser_p25_ns": 109301.0, "ser_p50_ns": 111162.0, "ser_p75_ns": 113579.0, "ser_p95_ns": 118415.6, "ser_p99_ns": 120030.76, "ser_ci_low_ns": 110487.4665730337, "ser_ci_high_ns": 112162.10814606742, "deser_mean_ns": 94030.66292134831, "deser_median_ns": 93825.0, "deser_std_ns": 1275.2381768964165, "deser_mad_ns": 732.0, "deser_cv": 0.013561939661779114, "deser_min_ns": 91317.0, "deser_max_ns": 97128.0, "deser_p5_ns": 92071.0, "deser_p25_ns": 93247.0, "deser_p50_ns": 93825.0, "deser_p75_ns": 94921.0, "deser_p95_ns": 96171.0, "deser_p99_ns": 97106.88, "deser_ci_low_ns": 93761.06039325842, "deser_ci_high_ns": 94292.15646067416, "total_mean_ns": 205346.31460674157, "total_median_ns": 205139.0, "total_std_ns": 4312.800502298376, "total_mad_ns": 3170.0, "total_cv": 0.02100257075739496, "total_min_ns": 195766.0, "total_max_ns": 216313.0, "total_p5_ns": 198962.4, "total_p25_ns": 202115.0, "total_p50_ns": 205139.0, "total_p75_ns": 208506.0, "total_p95_ns": 212398.6, "total_p99_ns": 214711.4, "total_ci_low_ns": 204430.49213483147, "total_ci_high_ns": 206306.29185393258, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 59.3455972296114}, {"serializer": "rmp-serde", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "1.3.1", "avg_time_ser_ns": 15205.931034482759, "avg_time_deser_ns": 42491.36781609195, "avg_time_total_ns": 57697.29885057471, "median_size_bytes": 36192.0, "avg_ops_per_sec": 17331.83389728199, "min_ops_per_sec": 16437.0952365298, "max_ops_per_sec": 18581.143855215727, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 15205.931034482759, "ser_median_ns": 14647.0, "ser_std_ns": 1157.0036460828105, "ser_mad_ns": 461.0, "ser_cv": 0.07608897103762031, "ser_min_ns": 13627.0, "ser_max_ns": 19034.0, "ser_p5_ns": 13949.6, "ser_p25_ns": 14374.0, "ser_p50_ns": 14647.0, "ser_p75_ns": 16253.0, "ser_p95_ns": 17111.8, "ser_p99_ns": 17689.82, "ser_ci_low_ns": 14982.609770114943, "ser_ci_high_ns": 15454.970114942527, "deser_mean_ns": 42491.36781609195, "deser_median_ns": 42605.0, "deser_std_ns": 1025.3784906973178, "deser_mad_ns": 567.0, "deser_cv": 0.024131454066983356, "deser_min_ns": 39867.0, "deser_max_ns": 44907.0, "deser_p5_ns": 40687.7, "deser_p25_ns": 41972.5, "deser_p50_ns": 42605.0, "deser_p75_ns": 43069.5, "deser_p95_ns": 44096.7, "deser_p99_ns": 44737.58, "deser_ci_low_ns": 42271.963793103445, "deser_ci_high_ns": 42693.159770114944, "total_mean_ns": 57697.29885057471, "total_median_ns": 57530.0, "total_std_ns": 1556.6117356927314, "total_mad_ns": 1031.0, "total_cv": 0.026978936045586235, "total_min_ns": 53818.0, "total_max_ns": 60838.0, "total_p5_ns": 55385.3, "total_p25_ns": 56676.5, "total_p50_ns": 57530.0, "total_p75_ns": 58864.5, "total_p95_ns": 60345.8, "total_p99_ns": 60794.14, "total_ci_low_ns": 57387.630172413796, "total_ci_high_ns": 58019.925862068965, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.39427177848368}, {"serializer": "speedy", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.8.7", "avg_time_ser_ns": 3559.75, "avg_time_deser_ns": 20080.402173913044, "avg_time_total_ns": 23640.152173913044, "median_size_bytes": 30792.0, "avg_ops_per_sec": 42300.91213640757, "min_ops_per_sec": 40384.460059769, "max_ops_per_sec": 44806.88233712698, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 3559.75, "ser_median_ns": 3558.5, "ser_std_ns": 142.3812885132078, "ser_mad_ns": 95.0, "ser_cv": 0.039997552781293015, "ser_min_ns": 3262.0, "ser_max_ns": 3899.0, "ser_p5_ns": 3311.55, "ser_p25_ns": 3467.5, "ser_p50_ns": 3558.5, "ser_p75_ns": 3657.75, "ser_p95_ns": 3798.25, "ser_p99_ns": 3887.17, "ser_ci_low_ns": 3531.173641304348, "ser_ci_high_ns": 3586.8423913043475, "deser_mean_ns": 20080.402173913044, "deser_median_ns": 20064.5, "deser_std_ns": 509.6140332176549, "deser_mad_ns": 405.5, "deser_cv": 0.025378676622309252, "deser_min_ns": 18909.0, "deser_max_ns": 21220.0, "deser_p5_ns": 19263.65, "deser_p25_ns": 19707.75, "deser_p50_ns": 20064.5, "deser_p75_ns": 20510.25, "deser_p95_ns": 20876.5, "deser_p99_ns": 21018.89, "deser_ci_low_ns": 19976.772282608694, "deser_ci_high_ns": 20188.04429347826, "total_mean_ns": 23640.152173913044, "total_median_ns": 23673.0, "total_std_ns": 546.8808041532142, "total_mad_ns": 419.5, "total_cv": 0.023133556845573028, "total_min_ns": 22318.0, "total_max_ns": 24762.0, "total_p5_ns": 22816.45, "total_p25_ns": 23247.25, "total_p50_ns": 23673.0, "total_p75_ns": 24083.75, "total_p95_ns": 24617.05, "total_p99_ns": 24751.08, "total_ci_low_ns": 23528.50244565217, "total_ci_high_ns": 23749.271739130436, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "ciborium", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.2.2", "avg_time_ser_ns": 33672.18681318681, "avg_time_deser_ns": 87075.94505494506, "avg_time_total_ns": 120748.13186813187, "median_size_bytes": 36092.0, "avg_ops_per_sec": 8281.701625761734, "min_ops_per_sec": 7948.556939487636, "max_ops_per_sec": 8574.932043663553, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 33672.18681318681, "ser_median_ns": 33674.0, "ser_std_ns": 582.3899783953077, "ser_mad_ns": 429.0, "ser_cv": 0.017295876315559948, "ser_min_ns": 32491.0, "ser_max_ns": 35162.0, "ser_p5_ns": 32812.5, "ser_p25_ns": 33223.5, "ser_p50_ns": 33674.0, "ser_p75_ns": 34046.5, "ser_p95_ns": 34596.0, "ser_p99_ns": 35085.5, "ser_ci_low_ns": 33557.306593406596, "ser_ci_high_ns": 33787.19258241758, "deser_mean_ns": 87075.94505494506, "deser_median_ns": 87005.0, "deser_std_ns": 1779.5637440591217, "deser_mad_ns": 1198.0, "deser_cv": 0.02043691564801524, "deser_min_ns": 82205.0, "deser_max_ns": 91706.0, "deser_p5_ns": 84284.5, "deser_p25_ns": 85809.5, "deser_p50_ns": 87005.0, "deser_p75_ns": 88309.0, "deser_p95_ns": 90119.0, "deser_p99_ns": 90548.59999999999, "deser_ci_low_ns": 86707.96346153846, "deser_ci_high_ns": 87444.99065934066, "total_mean_ns": 120748.13186813187, "total_median_ns": 120578.0, "total_std_ns": 1959.272184646302, "total_mad_ns": 1283.0, "total_cv": 0.016226107636895026, "total_min_ns": 116619.0, "total_max_ns": 125809.0, "total_p5_ns": 117676.0, "total_p25_ns": 119438.5, "total_p50_ns": 120578.0, "total_p75_ns": 121941.0, "total_p95_ns": 124015.5, "total_p99_ns": 125593.9, "total_ci_low_ns": 120353.49532967033, "total_ci_high_ns": 121172.58846153847, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 67.39174651090575}, {"serializer": "minicbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.25.1", "avg_time_ser_ns": 31047.168674698794, "avg_time_deser_ns": 46890.867469879515, "avg_time_total_ns": 77938.03614457832, "median_size_bytes": 32792.0, "avg_ops_per_sec": 12830.705640888335, "min_ops_per_sec": 12390.806021931727, "max_ops_per_sec": 13357.198194106804, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 31047.168674698794, "ser_median_ns": 31105.0, "ser_std_ns": 615.0386230044797, "ser_mad_ns": 398.0, "ser_cv": 0.01980981355976888, "ser_min_ns": 29576.0, "ser_max_ns": 32325.0, "ser_p5_ns": 29919.1, "ser_p25_ns": 30674.0, "ser_p50_ns": 31105.0, "ser_p75_ns": 31342.0, "ser_p95_ns": 32092.3, "ser_p99_ns": 32323.36, "ser_ci_low_ns": 30918.110542168673, "ser_ci_high_ns": 31174.243072289155, "deser_mean_ns": 46890.867469879515, "deser_median_ns": 46786.0, "deser_std_ns": 1050.4892561771017, "deser_mad_ns": 619.0, "deser_cv": 0.02240285396408771, "deser_min_ns": 44782.0, "deser_max_ns": 49388.0, "deser_p5_ns": 45225.9, "deser_p25_ns": 46232.0, "deser_p50_ns": 46786.0, "deser_p75_ns": 47486.5, "deser_p95_ns": 48822.0, "deser_p99_ns": 49383.08, "deser_ci_low_ns": 46668.03825301205, "deser_ci_high_ns": 47105.82048192771, "total_mean_ns": 77938.03614457832, "total_median_ns": 77915.0, "total_std_ns": 1305.858510673017, "total_mad_ns": 843.0, "total_cv": 0.01675508615909432, "total_min_ns": 74866.0, "total_max_ns": 80705.0, "total_p5_ns": 76026.7, "total_p25_ns": 77163.0, "total_p50_ns": 77915.0, "total_p75_ns": 78800.0, "total_p95_ns": 80357.5, "total_p99_ns": 80615.62, "total_ci_low_ns": 77664.52740963855, "total_ci_high_ns": 78204.83403614457, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 55.01684780015156}, {"serializer": "bitcode", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.6.9", "avg_time_ser_ns": 66002.8163265306, "avg_time_deser_ns": 50931.91836734694, "avg_time_total_ns": 116934.73469387754, "median_size_bytes": 29592.0, "avg_ops_per_sec": 8551.778927090325, "min_ops_per_sec": 7986.136067786323, "max_ops_per_sec": 9057.068589180426, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 66002.8163265306, "ser_median_ns": 65670.0, "ser_std_ns": 2298.9836631524886, "ser_mad_ns": 1765.5, "ser_cv": 0.034831599484769035, "ser_min_ns": 61464.0, "ser_max_ns": 72343.0, "ser_p5_ns": 63189.35, "ser_p25_ns": 64282.5, "ser_p50_ns": 65670.0, "ser_p75_ns": 67850.5, "ser_p95_ns": 69944.65, "ser_p99_ns": 71163.48, "ser_ci_low_ns": 65529.10459183674, "ser_ci_high_ns": 66441.56198979593, "deser_mean_ns": 50931.91836734694, "deser_median_ns": 50849.0, "deser_std_ns": 1351.281504575422, "deser_mad_ns": 864.5, "deser_cv": 0.0265311330869042, "deser_min_ns": 47826.0, "deser_max_ns": 54215.0, "deser_p5_ns": 48655.7, "deser_p25_ns": 50084.5, "deser_p50_ns": 50849.0, "deser_p75_ns": 51753.25, "deser_p95_ns": 53087.85, "deser_p99_ns": 54128.67, "deser_ci_low_ns": 50669.02780612245, "deser_ci_high_ns": 51196.89540816326, "total_mean_ns": 116934.73469387754, "total_median_ns": 116254.5, "total_std_ns": 2988.614593188452, "total_mad_ns": 1891.5, "total_cv": 0.02555797129922363, "total_min_ns": 110411.0, "total_max_ns": 125217.0, "total_p5_ns": 112666.0, "total_p25_ns": 114983.75, "total_p50_ns": 116254.5, "total_p75_ns": 119174.75, "total_p95_ns": 121833.04999999999, "total_p99_ns": 123909.44, "total_ci_low_ns": 116354.59795918367, "total_ci_high_ns": 117517.48520408163, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 42.621118511072666}, {"serializer": "serde_avro_fast", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "2.1.0", "avg_time_ser_ns": 23258.224719101123, "avg_time_deser_ns": 68268.10112359551, "avg_time_total_ns": 91526.32584269663, "median_size_bytes": 29292.0, "avg_ops_per_sec": 10925.81823636915, "min_ops_per_sec": 10386.696718842506, "max_ops_per_sec": 11525.916022175863, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 23258.224719101123, "ser_median_ns": 23182.0, "ser_std_ns": 407.31637672165704, "ser_mad_ns": 215.0, "ser_cv": 0.017512788772186174, "ser_min_ns": 22506.0, "ser_max_ns": 24572.0, "ser_p5_ns": 22727.0, "ser_p25_ns": 22998.0, "ser_p50_ns": 23182.0, "ser_p75_ns": 23444.0, "ser_p95_ns": 24028.4, "ser_p99_ns": 24426.8, "ser_ci_low_ns": 23174.759550561797, "ser_ci_high_ns": 23341.892696629213, "deser_mean_ns": 68268.10112359551, "deser_median_ns": 68232.0, "deser_std_ns": 1935.5244946017267, "deser_mad_ns": 1191.0, "deser_cv": 0.028351813844910815, "deser_min_ns": 63711.0, "deser_max_ns": 72420.0, "deser_p5_ns": 65042.6, "deser_p25_ns": 67041.0, "deser_p50_ns": 68232.0, "deser_p75_ns": 69279.0, "deser_p95_ns": 71693.0, "deser_p99_ns": 72413.84, "deser_ci_low_ns": 67868.2915730337, "deser_ci_high_ns": 68648.85224719101, "total_mean_ns": 91526.32584269663, "total_median_ns": 91500.0, "total_std_ns": 2038.4270605681195, "total_mad_ns": 1335.0, "total_cv": 0.022271483551863525, "total_min_ns": 86761.0, "total_max_ns": 96277.0, "total_p5_ns": 88181.2, "total_p25_ns": 90134.0, "total_p50_ns": 91500.0, "total_p75_ns": 92663.0, "total_p95_ns": 94981.4, "total_p99_ns": 95646.04000000001, "total_ci_low_ns": 91107.6606741573, "total_ci_high_ns": 91969.25702247191, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 45.630583805912586}, {"serializer": "bincode", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "2.0.1", "avg_time_ser_ns": 6566.035294117647, "avg_time_deser_ns": 25846.4, "avg_time_total_ns": 32412.435294117648, "median_size_bytes": 29492.0, "avg_ops_per_sec": 30852.356230742233, "min_ops_per_sec": 29209.019745297348, "max_ops_per_sec": 32507.63929523438, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 6566.035294117647, "ser_median_ns": 6552.0, "ser_std_ns": 196.0477011353313, "ser_mad_ns": 132.0, "ser_cv": 0.029857850644050863, "ser_min_ns": 6218.0, "ser_max_ns": 7039.0, "ser_p5_ns": 6281.4, "ser_p25_ns": 6419.0, "ser_p50_ns": 6552.0, "ser_p75_ns": 6678.0, "ser_p95_ns": 6932.2, "ser_p99_ns": 7000.36, "ser_ci_low_ns": 6526.376470588235, "ser_ci_high_ns": 6607.47294117647, "deser_mean_ns": 25846.4, "deser_median_ns": 25915.0, "deser_std_ns": 666.12617137482, "deser_mad_ns": 485.0, "deser_cv": 0.025772493321113192, "deser_min_ns": 24300.0, "deser_max_ns": 27577.0, "deser_p5_ns": 24664.8, "deser_p25_ns": 25455.0, "deser_p50_ns": 25915.0, "deser_p75_ns": 26400.0, "deser_p95_ns": 26755.4, "deser_p99_ns": 27241.0, "deser_ci_low_ns": 25700.110294117647, "deser_ci_high_ns": 25982.976470588237, "total_mean_ns": 32412.435294117648, "total_median_ns": 32460.0, "total_std_ns": 788.3535955373316, "total_mad_ns": 523.0, "total_cv": 0.024322565965304233, "total_min_ns": 30762.0, "total_max_ns": 34236.0, "total_p5_ns": 31076.2, "total_p25_ns": 31976.0, "total_p50_ns": 32460.0, "total_p75_ns": 33029.0, "total_p95_ns": 33498.8, "total_p99_ns": 34034.4, "total_ci_low_ns": 32238.357352941177, "total_ci_high_ns": 32577.095294117647, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.965598776240682}, {"serializer": "serde_json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "1.0.150", "avg_time_ser_ns": 62657.06976744186, "avg_time_deser_ns": 138303.93023255814, "avg_time_total_ns": 200961.0, "median_size_bytes": 67763.0, "avg_ops_per_sec": 4976.0898880877385, "min_ops_per_sec": 4835.73024362409, "max_ops_per_sec": 5132.469025549431, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 62657.06976744186, "ser_median_ns": 62514.0, "ser_std_ns": 945.4038637870456, "ser_mad_ns": 537.0, "ser_cv": 0.01508854255866112, "ser_min_ns": 60795.0, "ser_max_ns": 65024.0, "ser_p5_ns": 61441.75, "ser_p25_ns": 62044.0, "ser_p50_ns": 62514.0, "ser_p75_ns": 63131.75, "ser_p95_ns": 64481.0, "ser_p99_ns": 64922.85, "ser_ci_low_ns": 62453.83604651163, "ser_ci_high_ns": 62851.04854651162, "deser_mean_ns": 138303.93023255814, "deser_median_ns": 137948.0, "deser_std_ns": 2127.5082790504434, "deser_mad_ns": 1202.0, "deser_cv": 0.015382847584107242, "deser_min_ns": 133323.0, "deser_max_ns": 143690.0, "deser_p5_ns": 135140.0, "deser_p25_ns": 137058.0, "deser_p50_ns": 137948.0, "deser_p75_ns": 139524.75, "deser_p95_ns": 142010.0, "deser_p99_ns": 143650.9, "deser_ci_low_ns": 137860.27354651163, "deser_ci_high_ns": 138755.74186046512, "total_mean_ns": 200961.0, "total_median_ns": 200706.0, "total_std_ns": 2458.884869203924, "total_mad_ns": 1377.0, "total_cv": 0.012235632133617589, "total_min_ns": 194838.0, "total_max_ns": 206794.0, "total_p5_ns": 197223.5, "total_p25_ns": 199500.75, "total_p50_ns": 200706.0, "total_p75_ns": 202313.25, "total_p95_ns": 205322.5, "total_p99_ns": 206723.45, "total_ci_low_ns": 200475.64738372093, "total_ci_high_ns": 201496.27441860465, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 100.69448147596803}, {"serializer": "prost", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.13.5", "avg_time_ser_ns": 16014.494252873563, "avg_time_deser_ns": 40570.85057471264, "avg_time_total_ns": 56585.34482758621, "median_size_bytes": 29592.0, "avg_ops_per_sec": 17672.42035984704, "min_ops_per_sec": 16447.63894142996, "max_ops_per_sec": 18898.947328633796, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 16014.494252873563, "ser_median_ns": 16099.0, "ser_std_ns": 472.6487430099778, "ser_mad_ns": 299.0, "ser_cv": 0.02951381014890108, "ser_min_ns": 14801.0, "ser_max_ns": 17297.0, "ser_p5_ns": 15196.6, "ser_p25_ns": 15675.5, "ser_p50_ns": 16099.0, "ser_p75_ns": 16348.0, "ser_p95_ns": 16625.1, "ser_p99_ns": 17132.74, "ser_ci_low_ns": 15913.466091954024, "ser_ci_high_ns": 16117.58764367816, "deser_mean_ns": 40570.85057471264, "deser_median_ns": 40439.0, "deser_std_ns": 1644.899039304686, "deser_mad_ns": 1069.0, "deser_cv": 0.04054386378406208, "deser_min_ns": 36307.0, "deser_max_ns": 44638.0, "deser_p5_ns": 38205.0, "deser_p25_ns": 39369.5, "deser_p50_ns": 40439.0, "deser_p75_ns": 41471.0, "deser_p95_ns": 43466.2, "deser_p99_ns": 44570.92, "deser_ci_low_ns": 40238.54396551724, "deser_ci_high_ns": 40904.317816091956, "total_mean_ns": 56585.34482758621, "total_median_ns": 56568.0, "total_std_ns": 1686.1766909786409, "total_mad_ns": 1131.0, "total_cv": 0.029798823283950445, "total_min_ns": 52913.0, "total_max_ns": 60799.0, "total_p5_ns": 54041.4, "total_p25_ns": 55485.0, "total_p50_ns": 56568.0, "total_p75_ns": 57701.5, "total_p95_ns": 59555.8, "total_p99_ns": 60737.08, "total_ci_low_ns": 56218.15517241379, "total_ci_high_ns": 56939.36091954023, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.47662442830717}, {"serializer": "nanoserde", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.1.37", "avg_time_ser_ns": 24907.183908045976, "avg_time_deser_ns": 30650.74712643678, "avg_time_total_ns": 55557.93103448276, "median_size_bytes": 32792.0, "avg_ops_per_sec": 17999.230377735574, "min_ops_per_sec": 16901.027582477014, "max_ops_per_sec": 19077.052213891908, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 24907.183908045976, "ser_median_ns": 24809.0, "ser_std_ns": 825.4675141683895, "ser_mad_ns": 514.0, "ser_cv": 0.03314174405327821, "ser_min_ns": 23299.0, "ser_max_ns": 26663.0, "ser_p5_ns": 23684.0, "ser_p25_ns": 24392.0, "ser_p50_ns": 24809.0, "ser_p75_ns": 25482.0, "ser_p95_ns": 26355.2, "ser_p99_ns": 26643.22, "ser_ci_low_ns": 24730.893103448274, "ser_ci_high_ns": 25077.16408045977, "deser_mean_ns": 30650.74712643678, "deser_median_ns": 30774.0, "deser_std_ns": 883.8486429720347, "deser_mad_ns": 541.0, "deser_cv": 0.028836120676800744, "deser_min_ns": 28220.0, "deser_max_ns": 32808.0, "deser_p5_ns": 29133.2, "deser_p25_ns": 30122.0, "deser_p50_ns": 30774.0, "deser_p75_ns": 31222.0, "deser_p95_ns": 31994.100000000002, "deser_p99_ns": 32588.7, "deser_ci_low_ns": 30454.870689655174, "deser_ci_high_ns": 30838.8566091954, "total_mean_ns": 55557.93103448276, "total_median_ns": 55623.0, "total_std_ns": 1431.844296078211, "total_mad_ns": 1000.0, "total_cv": 0.02577209535015834, "total_min_ns": 52419.0, "total_max_ns": 59168.0, "total_p5_ns": 52836.9, "total_p25_ns": 54582.0, "total_p50_ns": 55623.0, "total_p75_ns": 56451.0, "total_p95_ns": 57720.3, "total_p99_ns": 58892.8, "total_ci_low_ns": 55266.987931034484, "total_ci_high_ns": 55852.27327586207, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.638536552792825}, {"serializer": "sonic-rs", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.3.17", "avg_time_ser_ns": 85523.31818181818, "avg_time_deser_ns": 126813.34090909091, "avg_time_total_ns": 212336.6590909091, "median_size_bytes": 67763.0, "avg_ops_per_sec": 4709.502373642714, "min_ops_per_sec": 4595.39816827429, "max_ops_per_sec": 4884.744454593858, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 85523.31818181818, "ser_median_ns": 85215.0, "ser_std_ns": 1331.9399605523504, "ser_mad_ns": 485.0, "ser_cv": 0.01557399769874123, "ser_min_ns": 81591.0, "ser_max_ns": 90150.0, "ser_p5_ns": 83463.45, "ser_p25_ns": 84793.75, "ser_p50_ns": 85215.0, "ser_p75_ns": 86499.25, "ser_p95_ns": 87493.95, "ser_p99_ns": 88640.54999999999, "ser_ci_low_ns": 85237.00596590909, "ser_ci_high_ns": 85815.62102272727, "deser_mean_ns": 126813.34090909091, "deser_median_ns": 126425.5, "deser_std_ns": 2190.4927377577123, "deser_mad_ns": 1612.5, "deser_cv": 0.017273361951153216, "deser_min_ns": 120778.0, "deser_max_ns": 132083.0, "deser_p5_ns": 124237.2, "deser_p25_ns": 125267.0, "deser_p50_ns": 126425.5, "deser_p75_ns": 128461.75, "deser_p95_ns": 130089.2, "deser_p99_ns": 131607.11, "deser_ci_low_ns": 126352.89176136363, "deser_ci_high_ns": 127245.25994318181, "total_mean_ns": 212336.6590909091, "total_median_ns": 212127.0, "total_std_ns": 2920.798508699659, "total_mad_ns": 2197.5, "total_cv": 0.013755507509653143, "total_min_ns": 204719.0, "total_max_ns": 217609.0, "total_p5_ns": 207627.9, "total_p25_ns": 210280.25, "total_p50_ns": 212127.0, "total_p75_ns": 215048.25, "total_p95_ns": 216307.25, "total_p99_ns": 217092.22, "total_ci_low_ns": 211725.746875, "total_ci_high_ns": 212951.1431818182, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 90.37663055631708}, {"serializer": "simd-json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.14.3", "avg_time_ser_ns": 62096.49411764706, "avg_time_deser_ns": 151494.22352941177, "avg_time_total_ns": 213590.71764705883, "median_size_bytes": 67763.0, "avg_ops_per_sec": 4681.851397926468, "min_ops_per_sec": 4505.133599736901, "max_ops_per_sec": 4837.391098232901, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 62096.49411764706, "ser_median_ns": 62109.0, "ser_std_ns": 799.4332906969224, "ser_mad_ns": 442.0, "ser_cv": 0.012874048721371104, "ser_min_ns": 59773.0, "ser_max_ns": 64267.0, "ser_p5_ns": 61015.0, "ser_p25_ns": 61573.0, "ser_p50_ns": 62109.0, "ser_p75_ns": 62472.0, "ser_p95_ns": 63554.2, "ser_p99_ns": 64122.52, "ser_ci_low_ns": 61923.02764705883, "ser_ci_high_ns": 62267.90235294117, "deser_mean_ns": 151494.22352941177, "deser_median_ns": 151314.0, "deser_std_ns": 2742.4227660977444, "deser_mad_ns": 1675.0, "deser_cv": 0.01810249065744291, "deser_min_ns": 146028.0, "deser_max_ns": 158360.0, "deser_p5_ns": 147785.8, "deser_p25_ns": 149639.0, "deser_p50_ns": 151314.0, "deser_p75_ns": 152902.0, "deser_p95_ns": 157123.8, "deser_p99_ns": 158260.04, "deser_ci_low_ns": 150941.93588235293, "deser_ci_high_ns": 152044.335, "total_mean_ns": 213590.71764705883, "total_median_ns": 213362.0, "total_std_ns": 3125.8652311219776, "total_mad_ns": 1589.0, "total_cv": 0.014634836502058175, "total_min_ns": 206723.0, "total_max_ns": 221969.0, "total_p5_ns": 209059.8, "total_p25_ns": 211813.0, "total_p50_ns": 213362.0, "total_p75_ns": 214994.0, "total_p95_ns": 219610.6, "total_p99_ns": 221329.76, "total_ci_low_ns": 212915.675, "total_ci_high_ns": 214238.2717647059, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 85.92076112052636}, {"serializer": "bson", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "2.15.0", "avg_time_ser_ns": 75313.42045454546, "avg_time_deser_ns": 192914.0340909091, "avg_time_total_ns": 268227.45454545453, "median_size_bytes": 48392.0, "avg_ops_per_sec": 3728.1791369739794, "min_ops_per_sec": 3624.9877656662907, "max_ops_per_sec": 3845.4291306638365, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 75313.42045454546, "ser_median_ns": 75218.5, "ser_std_ns": 1423.4596815028372, "ser_mad_ns": 911.0, "ser_cv": 0.018900478466011908, "ser_min_ns": 71950.0, "ser_max_ns": 79175.0, "ser_p5_ns": 73187.1, "ser_p25_ns": 74450.25, "ser_p50_ns": 75218.5, "ser_p75_ns": 76176.25, "ser_p95_ns": 77685.25, "ser_p99_ns": 78693.89, "ser_ci_low_ns": 75031.06079545454, "ser_ci_high_ns": 75601.28437499999, "deser_mean_ns": 192914.0340909091, "deser_median_ns": 193108.0, "deser_std_ns": 2896.3381694698396, "deser_mad_ns": 1804.5, "deser_cv": 0.015013620875840298, "deser_min_ns": 185949.0, "deser_max_ns": 199400.0, "deser_p5_ns": 188095.7, "deser_p25_ns": 191127.25, "deser_p50_ns": 193108.0, "deser_p75_ns": 194632.5, "deser_p95_ns": 197179.0, "deser_p99_ns": 198851.03, "deser_ci_low_ns": 192291.03551136362, "deser_ci_high_ns": 193490.3755681818, "total_mean_ns": 268227.45454545453, "total_median_ns": 268130.5, "total_std_ns": 3588.772840910561, "total_mad_ns": 2225.0, "total_cv": 0.013379588032821592, "total_min_ns": 260049.0, "total_max_ns": 275863.0, "total_p5_ns": 262036.85, "total_p25_ns": 266259.75, "total_p50_ns": 268130.5, "total_p75_ns": 270450.0, "total_p95_ns": 274646.8, "total_p99_ns": 275490.64, "total_ci_low_ns": 267519.52926136367, "total_ci_high_ns": 268977.28295454546, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 94.4148016098036}, {"serializer": "rmp-serde", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "1.3.1", "avg_time_ser_ns": 14594.116883116883, "avg_time_deser_ns": 42708.896103896106, "avg_time_total_ns": 57303.01298701299, "median_size_bytes": 36192.0, "avg_ops_per_sec": 17451.089355923352, "min_ops_per_sec": 16458.196181698488, "max_ops_per_sec": 18254.171078091345, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 14594.116883116883, "ser_median_ns": 14433.0, "ser_std_ns": 539.8985278449134, "ser_mad_ns": 204.0, "ser_cv": 0.036994258177381854, "ser_min_ns": 13871.0, "ser_max_ns": 16351.0, "ser_p5_ns": 13963.8, "ser_p25_ns": 14268.0, "ser_p50_ns": 14433.0, "ser_p75_ns": 14724.0, "ser_p95_ns": 15863.0, "ser_p99_ns": 16249.92, "ser_ci_low_ns": 14476.218181818182, "ser_ci_high_ns": 14723.819805194804, "deser_mean_ns": 42708.896103896106, "deser_median_ns": 42591.0, "deser_std_ns": 878.8970597829685, "deser_mad_ns": 529.0, "deser_cv": 0.0205787819391284, "deser_min_ns": 40563.0, "deser_max_ns": 44834.0, "deser_p5_ns": 41369.0, "deser_p25_ns": 42185.0, "deser_p50_ns": 42591.0, "deser_p75_ns": 43242.0, "deser_p95_ns": 44370.6, "deser_p99_ns": 44820.32, "deser_ci_low_ns": 42510.91461038961, "deser_ci_high_ns": 42900.481168831175, "total_mean_ns": 57303.01298701299, "total_median_ns": 57279.0, "total_std_ns": 1112.3147568247805, "total_mad_ns": 660.0, "total_cv": 0.0194111042132614, "total_min_ns": 54782.0, "total_max_ns": 60760.0, "total_p5_ns": 55584.6, "total_p25_ns": 56568.0, "total_p50_ns": 57279.0, "total_p75_ns": 57874.0, "total_p95_ns": 59307.6, "total_p99_ns": 60018.24, "total_ci_low_ns": 57051.66233766233, "total_ci_high_ns": 57549.47142857143, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 37.404578572641654}, {"serializer": "simd-json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.14.3", "avg_time_ser_ns": 61806.470588235294, "avg_time_deser_ns": 150213.09411764707, "avg_time_total_ns": 212019.56470588237, "median_size_bytes": 67763.0, "avg_ops_per_sec": 4716.545859280578, "min_ops_per_sec": 4587.829406151362, "max_ops_per_sec": 4845.102086300958, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 61806.470588235294, "ser_median_ns": 61744.0, "ser_std_ns": 818.6066790333336, "ser_mad_ns": 509.0, "ser_cv": 0.013244676022467353, "ser_min_ns": 60103.0, "ser_max_ns": 63959.0, "ser_p5_ns": 60433.6, "ser_p25_ns": 61237.0, "ser_p50_ns": 61744.0, "ser_p75_ns": 62291.0, "ser_p95_ns": 63353.6, "ser_p99_ns": 63868.28, "ser_ci_low_ns": 61645.940294117645, "ser_ci_high_ns": 61977.724117647056, "deser_mean_ns": 150213.09411764707, "deser_median_ns": 150340.0, "deser_std_ns": 2179.942182629586, "deser_mad_ns": 1450.0, "deser_cv": 0.01451233126802017, "deser_min_ns": 145625.0, "deser_max_ns": 155797.0, "deser_p5_ns": 146616.4, "deser_p25_ns": 148770.0, "deser_p50_ns": 150340.0, "deser_p75_ns": 151662.0, "deser_p95_ns": 153750.8, "deser_p99_ns": 154735.24, "deser_ci_low_ns": 149733.19764705884, "deser_ci_high_ns": 150676.28647058824, "total_mean_ns": 212019.56470588237, "total_median_ns": 212047.0, "total_std_ns": 2498.1095778658732, "total_mad_ns": 1715.0, "total_cv": 0.011782448385512437, "total_min_ns": 206394.0, "total_max_ns": 217968.0, "total_p5_ns": 207747.2, "total_p25_ns": 210332.0, "total_p50_ns": 212047.0, "total_p75_ns": 213674.0, "total_p95_ns": 215779.0, "total_p99_ns": 217178.4, "total_ci_low_ns": 211478.9, "total_ci_high_ns": 212564.17970588236, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 103.5858007260248}, {"serializer": "prost", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.13.5", "avg_time_ser_ns": 16004.543209876543, "avg_time_deser_ns": 40147.02469135803, "avg_time_total_ns": 56151.567901234564, "median_size_bytes": 29592.0, "avg_ops_per_sec": 17808.941715731034, "min_ops_per_sec": 16623.998404096154, "max_ops_per_sec": 18892.52045115339, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 16004.543209876543, "ser_median_ns": 16071.0, "ser_std_ns": 523.6149121583226, "ser_mad_ns": 357.0, "ser_cv": 0.032716642099175644, "ser_min_ns": 14819.0, "ser_max_ns": 17011.0, "ser_p5_ns": 14997.0, "ser_p25_ns": 15712.0, "ser_p50_ns": 16071.0, "ser_p75_ns": 16356.0, "ser_p95_ns": 16644.0, "ser_p99_ns": 16967.0, "ser_ci_low_ns": 15887.443827160494, "ser_ci_high_ns": 16119.361111111111, "deser_mean_ns": 40147.02469135803, "deser_median_ns": 40123.0, "deser_std_ns": 1157.679456664372, "deser_mad_ns": 728.0, "deser_cv": 0.028835996330098455, "deser_min_ns": 37217.0, "deser_max_ns": 43292.0, "deser_p5_ns": 38513.0, "deser_p25_ns": 39395.0, "deser_p50_ns": 40123.0, "deser_p75_ns": 40780.0, "deser_p95_ns": 42217.0, "deser_p99_ns": 43014.4, "deser_ci_low_ns": 39892.58086419753, "deser_ci_high_ns": 40402.25185185185, "total_mean_ns": 56151.567901234564, "total_median_ns": 56048.0, "total_std_ns": 1378.027321375302, "total_mad_ns": 782.0, "total_cv": 0.024541208249057714, "total_min_ns": 52931.0, "total_max_ns": 60154.0, "total_p5_ns": 54128.0, "total_p25_ns": 55266.0, "total_p50_ns": 56048.0, "total_p75_ns": 56786.0, "total_p95_ns": 58782.0, "total_p99_ns": 59434.8, "total_ci_low_ns": 55850.145987654316, "total_ci_high_ns": 56456.38240740741, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.37867561163985}, {"serializer": "bincode", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "2.0.1", "avg_time_ser_ns": 6540.523255813953, "avg_time_deser_ns": 26035.25581395349, "avg_time_total_ns": 32575.779069767443, "median_size_bytes": 29492.0, "avg_ops_per_sec": 30697.654163797684, "min_ops_per_sec": 29296.30280658581, "max_ops_per_sec": 32464.370353536993, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 6540.523255813953, "ser_median_ns": 6537.0, "ser_std_ns": 175.44569977759912, "ser_mad_ns": 125.0, "ser_cv": 0.026824413417021832, "ser_min_ns": 6162.0, "ser_max_ns": 6975.0, "ser_p5_ns": 6252.5, "ser_p25_ns": 6426.25, "ser_p50_ns": 6537.0, "ser_p75_ns": 6674.5, "ser_p95_ns": 6796.25, "ser_p99_ns": 6923.150000000001, "ser_ci_low_ns": 6502.030813953488, "ser_ci_high_ns": 6578.527906976744, "deser_mean_ns": 26035.25581395349, "deser_median_ns": 26001.5, "deser_std_ns": 632.176356370622, "deser_mad_ns": 441.0, "deser_cv": 0.024281549637465427, "deser_min_ns": 24445.0, "deser_max_ns": 27392.0, "deser_p5_ns": 24969.75, "deser_p25_ns": 25597.5, "deser_p50_ns": 26001.5, "deser_p75_ns": 26448.0, "deser_p95_ns": 27121.25, "deser_p99_ns": 27345.25, "deser_ci_low_ns": 25907.115988372094, "deser_ci_high_ns": 26174.34854651163, "total_mean_ns": 32575.779069767443, "total_median_ns": 32603.5, "total_std_ns": 724.9061018490241, "total_mad_ns": 464.0, "total_cv": 0.022252916815788046, "total_min_ns": 30803.0, "total_max_ns": 34134.0, "total_p5_ns": 31418.25, "total_p25_ns": 32038.25, "total_p50_ns": 32603.5, "total_p75_ns": 33027.5, "total_p95_ns": 33821.25, "total_p99_ns": 34119.55, "total_ci_low_ns": 32429.377906976744, "total_ci_high_ns": 32729.771220930234, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.742502418796713}, {"serializer": "flexbuffers", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "2.0.0", "avg_time_ser_ns": 110499.4588235294, "avg_time_deser_ns": 94133.11764705883, "avg_time_total_ns": 204632.57647058825, "median_size_bytes": 42220.0, "avg_ops_per_sec": 4886.807453864657, "min_ops_per_sec": 4663.831057383777, "max_ops_per_sec": 5194.076674959876, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 110499.4588235294, "ser_median_ns": 110658.0, "ser_std_ns": 3752.963833688621, "ser_mad_ns": 2167.0, "ser_cv": 0.03396363994580466, "ser_min_ns": 101160.0, "ser_max_ns": 119831.0, "ser_p5_ns": 102500.8, "ser_p25_ns": 108682.0, "ser_p50_ns": 110658.0, "ser_p75_ns": 113209.0, "ser_p95_ns": 116113.8, "ser_p99_ns": 118638.2, "ser_ci_low_ns": 109698.75235294117, "ser_ci_high_ns": 111322.3794117647, "deser_mean_ns": 94133.11764705883, "deser_median_ns": 93918.0, "deser_std_ns": 1534.6986086289812, "deser_mad_ns": 647.0, "deser_cv": 0.016303492830048987, "deser_min_ns": 90425.0, "deser_max_ns": 98832.0, "deser_p5_ns": 91420.8, "deser_p25_ns": 93476.0, "deser_p50_ns": 93918.0, "deser_p75_ns": 94816.0, "deser_p95_ns": 96840.0, "deser_p99_ns": 98107.08, "deser_ci_low_ns": 93794.77352941177, "deser_ci_high_ns": 94463.62176470588, "total_mean_ns": 204632.57647058825, "total_median_ns": 204780.0, "total_std_ns": 4049.8672534872485, "total_mad_ns": 2791.0, "total_cv": 0.01979092148150387, "total_min_ns": 192527.0, "total_max_ns": 214416.0, "total_p5_ns": 197551.8, "total_p25_ns": 201896.0, "total_p50_ns": 204780.0, "total_p75_ns": 207303.0, "total_p95_ns": 210697.4, "total_p99_ns": 212243.75999999998, "total_ci_low_ns": 203803.94029411764, "total_ci_high_ns": 205528.225, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 62.61470078044763}, {"serializer": "postcard", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "1.1.3", "avg_time_ser_ns": 7770.619047619048, "avg_time_deser_ns": 27433.5, "avg_time_total_ns": 35204.119047619046, "median_size_bytes": 29192.0, "avg_ops_per_sec": 28405.76691174531, "min_ops_per_sec": 27012.425715829282, "max_ops_per_sec": 30024.620188554614, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 7770.619047619048, "ser_median_ns": 7770.5, "ser_std_ns": 253.96949369796863, "ser_mad_ns": 157.0, "ser_cv": 0.03268330259682284, "ser_min_ns": 7178.0, "ser_max_ns": 8332.0, "ser_p5_ns": 7357.35, "ser_p25_ns": 7614.25, "ser_p50_ns": 7770.5, "ser_p75_ns": 7925.75, "ser_p95_ns": 8195.0, "ser_p99_ns": 8273.9, "ser_ci_low_ns": 7713.8032738095235, "ser_ci_high_ns": 7825.202678571428, "deser_mean_ns": 27433.5, "deser_median_ns": 27423.5, "deser_std_ns": 664.9580564723386, "deser_mad_ns": 337.0, "deser_cv": 0.024238907046944015, "deser_min_ns": 25843.0, "deser_max_ns": 29012.0, "deser_p5_ns": 26553.55, "deser_p25_ns": 27074.75, "deser_p50_ns": 27423.5, "deser_p75_ns": 27729.0, "deser_p95_ns": 28556.85, "deser_p99_ns": 28938.96, "deser_ci_low_ns": 27295.911607142858, "deser_ci_high_ns": 27580.670238095237, "total_mean_ns": 35204.119047619046, "total_median_ns": 35179.0, "total_std_ns": 769.4785185280941, "total_mad_ns": 528.0, "total_cv": 0.021857627440904137, "total_min_ns": 33306.0, "total_max_ns": 37020.0, "total_p5_ns": 34153.55, "total_p25_ns": 34680.75, "total_p50_ns": 35179.0, "total_p75_ns": 35724.0, "total_p95_ns": 36445.15, "total_p99_ns": 36971.86, "total_ci_low_ns": 35044.375595238096, "total_ci_high_ns": 35371.48958333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.04436562685677}, {"serializer": "serde_json", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "1.0.150", "avg_time_ser_ns": 62227.83950617284, "avg_time_deser_ns": 137643.95061728396, "avg_time_total_ns": 199871.7901234568, "median_size_bytes": 67763.0, "avg_ops_per_sec": 5003.207302953158, "min_ops_per_sec": 4880.191303499098, "max_ops_per_sec": 5163.582286847323, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 62227.83950617284, "ser_median_ns": 62268.0, "ser_std_ns": 775.4286630114682, "ser_mad_ns": 454.0, "ser_cv": 0.012461121407477882, "ser_min_ns": 60291.0, "ser_max_ns": 63813.0, "ser_p5_ns": 60892.0, "ser_p25_ns": 61835.0, "ser_p50_ns": 62268.0, "ser_p75_ns": 62722.0, "ser_p95_ns": 63440.0, "ser_p99_ns": 63699.4, "ser_ci_low_ns": 62060.48086419753, "ser_ci_high_ns": 62388.70864197531, "deser_mean_ns": 137643.95061728396, "deser_median_ns": 137966.0, "deser_std_ns": 2634.1758383849137, "deser_mad_ns": 1461.0, "deser_cv": 0.019137607040277293, "deser_min_ns": 131709.0, "deser_max_ns": 142229.0, "deser_p5_ns": 132993.0, "deser_p25_ns": 136006.0, "deser_p50_ns": 137966.0, "deser_p75_ns": 139291.0, "deser_p95_ns": 141549.0, "deser_p99_ns": 142179.4, "deser_ci_low_ns": 137066.2262345679, "deser_ci_high_ns": 138164.57067901237, "total_mean_ns": 199871.7901234568, "total_median_ns": 200140.0, "total_std_ns": 2907.1271803794953, "total_mad_ns": 1862.0, "total_cv": 0.014544959939488315, "total_min_ns": 193664.0, "total_max_ns": 204910.0, "total_p5_ns": 194800.0, "total_p25_ns": 198459.0, "total_p50_ns": 200140.0, "total_p75_ns": 202002.0, "total_p95_ns": 204267.0, "total_p99_ns": 204657.2, "total_ci_low_ns": 199275.40586419753, "total_ci_high_ns": 200478.5024691358, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 84.90847557968483}, {"serializer": "serde_avro_fast", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "2.1.0", "avg_time_ser_ns": 23186.059523809523, "avg_time_deser_ns": 68064.51190476191, "avg_time_total_ns": 91250.57142857143, "median_size_bytes": 29292.0, "avg_ops_per_sec": 10958.835482830635, "min_ops_per_sec": 10373.766818469454, "max_ops_per_sec": 11591.246290801188, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 23186.059523809523, "ser_median_ns": 23156.5, "ser_std_ns": 371.5139443844062, "ser_mad_ns": 204.5, "ser_cv": 0.016023160123560556, "ser_min_ns": 22387.0, "ser_max_ns": 24335.0, "ser_p5_ns": 22606.6, "ser_p25_ns": 22986.75, "ser_p50_ns": 23156.5, "ser_p75_ns": 23365.0, "ser_p95_ns": 23756.85, "ser_p99_ns": 24218.8, "ser_ci_low_ns": 23107.125892857144, "ser_ci_high_ns": 23266.89017857143, "deser_mean_ns": 68064.51190476191, "deser_median_ns": 67747.0, "deser_std_ns": 2037.2312979390317, "deser_mad_ns": 1390.0, "deser_cv": 0.029930888225417562, "deser_min_ns": 63629.0, "deser_max_ns": 73206.0, "deser_p5_ns": 65399.6, "deser_p25_ns": 66552.0, "deser_p50_ns": 67747.0, "deser_p75_ns": 69391.75, "deser_p95_ns": 71500.85, "deser_p99_ns": 73107.23, "deser_ci_low_ns": 67646.78898809524, "deser_ci_high_ns": 68479.56577380953, "total_mean_ns": 91250.57142857143, "total_median_ns": 90880.0, "total_std_ns": 2163.9882818520796, "total_mad_ns": 1495.0, "total_cv": 0.023714791567590272, "total_min_ns": 86272.0, "total_max_ns": 96397.0, "total_p5_ns": 88040.5, "total_p25_ns": 89728.25, "total_p50_ns": 90880.0, "total_p75_ns": 92745.5, "total_p95_ns": 94901.65, "total_p99_ns": 96083.26, "total_ci_low_ns": 90782.30744047619, "total_ci_high_ns": 91711.36904761905, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 42.495158289299575}, {"serializer": "minicbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.25.1", "avg_time_ser_ns": 31036.522727272728, "avg_time_deser_ns": 47113.329545454544, "avg_time_total_ns": 78149.85227272728, "median_size_bytes": 32792.0, "avg_ops_per_sec": 12795.929498499894, "min_ops_per_sec": 12106.537530266343, "max_ops_per_sec": 13561.160835367507, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 31036.522727272728, "ser_median_ns": 31021.5, "ser_std_ns": 681.4389774127277, "ser_mad_ns": 397.5, "ser_cv": 0.021956034939891213, "ser_min_ns": 29719.0, "ser_max_ns": 32621.0, "ser_p5_ns": 29907.05, "ser_p25_ns": 30574.25, "ser_p50_ns": 31021.5, "ser_p75_ns": 31392.75, "ser_p95_ns": 32307.149999999998, "ser_p99_ns": 32512.25, "ser_ci_low_ns": 30891.67698863636, "ser_ci_high_ns": 31177.788920454546, "deser_mean_ns": 47113.329545454544, "deser_median_ns": 46848.0, "deser_std_ns": 1610.957741275203, "deser_mad_ns": 898.5, "deser_cv": 0.03419324757595331, "deser_min_ns": 42964.0, "deser_max_ns": 51378.0, "deser_p5_ns": 45010.0, "deser_p25_ns": 46223.5, "deser_p50_ns": 46848.0, "deser_p75_ns": 48056.25, "deser_p95_ns": 49681.75, "deser_p99_ns": 51287.52, "deser_ci_low_ns": 46776.142045454544, "deser_ci_high_ns": 47446.97386363637, "total_mean_ns": 78149.85227272728, "total_median_ns": 78249.5, "total_std_ns": 1633.0638896200546, "total_mad_ns": 945.0, "total_cv": 0.02089657039812423, "total_min_ns": 73740.0, "total_max_ns": 82600.0, "total_p5_ns": 75227.4, "total_p25_ns": 77038.75, "total_p50_ns": 78249.5, "total_p75_ns": 79125.5, "total_p95_ns": 80723.9, "total_p99_ns": 82157.17, "total_ci_low_ns": 77832.14630681818, "total_ci_high_ns": 78487.94005681817, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 43.629357427510485}, {"serializer": "bitcode", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.6.9", "avg_time_ser_ns": 65507.068181818184, "avg_time_deser_ns": 51005.670454545456, "avg_time_total_ns": 116512.73863636363, "median_size_bytes": 29592.0, "avg_ops_per_sec": 8582.752510186898, "min_ops_per_sec": 8186.253642882871, "max_ops_per_sec": 9022.502120287998, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 65507.068181818184, "ser_median_ns": 65372.0, "ser_std_ns": 1995.0525634503942, "ser_mad_ns": 1261.5, "ser_cv": 0.03045553127050389, "ser_min_ns": 61391.0, "ser_max_ns": 70499.0, "ser_p5_ns": 62152.45, "ser_p25_ns": 64223.5, "ser_p50_ns": 65372.0, "ser_p75_ns": 66659.75, "ser_p95_ns": 69304.49999999999, "ser_p99_ns": 70298.9, "ser_ci_low_ns": 65086.34460227272, "ser_ci_high_ns": 65907.09602272727, "deser_mean_ns": 51005.670454545456, "deser_median_ns": 50997.0, "deser_std_ns": 1096.2360023781996, "deser_mad_ns": 841.5, "deser_cv": 0.0214924339315396, "deser_min_ns": 48668.0, "deser_max_ns": 53339.0, "deser_p5_ns": 49336.0, "deser_p25_ns": 50212.75, "deser_p50_ns": 50997.0, "deser_p75_ns": 51861.5, "deser_p95_ns": 52843.95, "deser_p99_ns": 53278.97, "deser_ci_low_ns": 50780.33607954546, "deser_ci_high_ns": 51236.941477272725, "total_mean_ns": 116512.73863636363, "total_median_ns": 116242.0, "total_std_ns": 2434.925557616444, "total_mad_ns": 1464.0, "total_cv": 0.02089836344175077, "total_min_ns": 110834.0, "total_max_ns": 122156.0, "total_p5_ns": 111953.3, "total_p25_ns": 115248.75, "total_p50_ns": 116242.0, "total_p75_ns": 118088.25, "total_p95_ns": 120385.95, "total_p99_ns": 122059.43, "total_ci_low_ns": 116027.55852272727, "total_ci_high_ns": 117027.86704545455, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 51.846531987521985}, {"serializer": "ciborium", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.2.2", "avg_time_ser_ns": 33597.36956521739, "avg_time_deser_ns": 87115.92391304347, "avg_time_total_ns": 120713.29347826086, "median_size_bytes": 36092.0, "avg_ops_per_sec": 8284.09176144373, "min_ops_per_sec": 7912.33136843771, "max_ops_per_sec": 8618.906433151762, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 33597.36956521739, "ser_median_ns": 33633.5, "ser_std_ns": 709.8083585565416, "ser_mad_ns": 517.0, "ser_cv": 0.021126902723104562, "ser_min_ns": 31783.0, "ser_max_ns": 35313.0, "ser_p5_ns": 32439.4, "ser_p25_ns": 33099.75, "ser_p50_ns": 33633.5, "ser_p75_ns": 34063.75, "ser_p95_ns": 34806.25, "ser_p99_ns": 35191.06, "ser_ci_low_ns": 33456.34402173913, "ser_ci_high_ns": 33736.53695652174, "deser_mean_ns": 87115.92391304347, "deser_median_ns": 87170.5, "deser_std_ns": 1705.388133667773, "deser_mad_ns": 1103.0, "deser_cv": 0.019576078138940946, "deser_min_ns": 83315.0, "deser_max_ns": 91207.0, "deser_p5_ns": 84169.8, "deser_p25_ns": 86188.75, "deser_p50_ns": 87170.5, "deser_p75_ns": 88305.0, "deser_p95_ns": 89640.55, "deser_p99_ns": 90998.61, "deser_ci_low_ns": 86781.07364130435, "deser_ci_high_ns": 87454.82255434783, "total_mean_ns": 120713.29347826086, "total_median_ns": 120952.5, "total_std_ns": 2053.0410707530323, "total_mad_ns": 1329.5, "total_cv": 0.01700758062013081, "total_min_ns": 116024.0, "total_max_ns": 126385.0, "total_p5_ns": 117662.05, "total_p25_ns": 119101.0, "total_p50_ns": 120952.5, "total_p75_ns": 122196.75, "total_p95_ns": 123946.3, "total_p99_ns": 125335.77, "total_ci_low_ns": 120265.17418478262, "total_ci_high_ns": 121131.16875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 62.888127615891804}, {"serializer": "speedy", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.8.7", "avg_time_ser_ns": 3538.1704545454545, "avg_time_deser_ns": 20324.579545454544, "avg_time_total_ns": 23862.75, "median_size_bytes": 30792.0, "avg_ops_per_sec": 41906.318425160556, "min_ops_per_sec": 39184.952978056426, "max_ops_per_sec": 44708.722671793264, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 3538.1704545454545, "ser_median_ns": 3530.5, "ser_std_ns": 113.57899894826447, "ser_mad_ns": 80.0, "ser_cv": 0.032101053470261896, "ser_min_ns": 3277.0, "ser_max_ns": 3870.0, "ser_p5_ns": 3379.4, "ser_p25_ns": 3448.75, "ser_p50_ns": 3530.5, "ser_p75_ns": 3606.0, "ser_p95_ns": 3735.0, "ser_p99_ns": 3784.74, "ser_ci_low_ns": 3515.2244318181815, "ser_ci_high_ns": 3562.1602272727273, "deser_mean_ns": 20324.579545454544, "deser_median_ns": 20357.5, "deser_std_ns": 588.4685700762676, "deser_mad_ns": 399.0, "deser_cv": 0.028953542126674628, "deser_min_ns": 18919.0, "deser_max_ns": 21650.0, "deser_p5_ns": 19328.3, "deser_p25_ns": 19930.5, "deser_p50_ns": 20357.5, "deser_p75_ns": 20742.0, "deser_p95_ns": 21260.3, "deser_p99_ns": 21519.5, "deser_ci_low_ns": 20197.487215909092, "deser_ci_high_ns": 20442.32840909091, "total_mean_ns": 23862.75, "total_median_ns": 23879.5, "total_std_ns": 634.7357536892769, "total_mad_ns": 425.5, "total_cv": 0.026599438609937114, "total_min_ns": 22367.0, "total_max_ns": 25520.0, "total_p5_ns": 22691.35, "total_p25_ns": 23476.75, "total_p50_ns": 23879.5, "total_p75_ns": 24348.5, "total_p95_ns": 24855.55, "total_p99_ns": 25232.03, "total_ci_low_ns": 23724.767329545455, "total_ci_high_ns": 23991.069602272724, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "sonic-rs", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.3.17", "avg_time_ser_ns": 85139.37647058823, "avg_time_deser_ns": 126509.88235294117, "avg_time_total_ns": 211649.2588235294, "median_size_bytes": 67763.0, "avg_ops_per_sec": 4724.798024611973, "min_ops_per_sec": 4583.0144319124465, "max_ops_per_sec": 4895.7930450364, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 85139.37647058823, "ser_median_ns": 85056.0, "ser_std_ns": 1056.0640760735637, "ser_mad_ns": 478.0, "ser_cv": 0.01240394421303268, "ser_min_ns": 82884.0, "ser_max_ns": 87665.0, "ser_p5_ns": 83263.8, "ser_p25_ns": 84627.0, "ser_p50_ns": 85056.0, "ser_p75_ns": 85622.0, "ser_p95_ns": 87110.8, "ser_p99_ns": 87397.88, "ser_ci_low_ns": 84909.04323529413, "ser_ci_high_ns": 85364.87529411765, "deser_mean_ns": 126509.88235294117, "deser_median_ns": 126411.0, "deser_std_ns": 2516.136628566391, "deser_mad_ns": 1689.0, "deser_cv": 0.019888854386464417, "deser_min_ns": 120262.0, "deser_max_ns": 133086.0, "deser_p5_ns": 121835.2, "deser_p25_ns": 124913.0, "deser_p50_ns": 126411.0, "deser_p75_ns": 128206.0, "deser_p95_ns": 130140.6, "deser_p99_ns": 132392.16, "deser_ci_low_ns": 125966.8694117647, "deser_ci_high_ns": 127001.00852941176, "total_mean_ns": 211649.2588235294, "total_median_ns": 211845.0, "total_std_ns": 2960.1599906606607, "total_mad_ns": 2039.0, "total_cv": 0.013986158076408886, "total_min_ns": 204257.0, "total_max_ns": 218197.0, "total_p5_ns": 206102.4, "total_p25_ns": 209806.0, "total_p50_ns": 211845.0, "total_p75_ns": 213870.0, "total_p95_ns": 215872.0, "total_p99_ns": 217262.91999999998, "total_ci_low_ns": 211007.05852941176, "total_ci_high_ns": 212287.32470588238, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 88.04278967781346}, {"serializer": "nanoserde", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.1.37", "avg_time_ser_ns": 24667.14285714286, "avg_time_deser_ns": 30904.654761904763, "avg_time_total_ns": 55571.79761904762, "median_size_bytes": 32792.0, "avg_ops_per_sec": 17994.73910948749, "min_ops_per_sec": 17101.910283378653, "max_ops_per_sec": 18623.70798025887, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 24667.14285714286, "ser_median_ns": 24586.5, "ser_std_ns": 760.3688727975714, "ser_mad_ns": 476.5, "ser_cv": 0.030825170032912488, "ser_min_ns": 22972.0, "ser_max_ns": 26362.0, "ser_p5_ns": 23575.05, "ser_p25_ns": 24234.0, "ser_p50_ns": 24586.5, "ser_p75_ns": 25122.25, "ser_p95_ns": 26063.2, "ser_p99_ns": 26356.19, "ser_ci_low_ns": 24500.59613095238, "ser_ci_high_ns": 24825.599404761902, "deser_mean_ns": 30904.654761904763, "deser_median_ns": 30930.0, "deser_std_ns": 623.4437877492045, "deser_mad_ns": 355.0, "deser_cv": 0.02017313548888774, "deser_min_ns": 29547.0, "deser_max_ns": 32387.0, "deser_p5_ns": 29881.0, "deser_p25_ns": 30533.75, "deser_p50_ns": 30930.0, "deser_p75_ns": 31210.75, "deser_p95_ns": 32050.0, "deser_p99_ns": 32239.260000000002, "deser_ci_low_ns": 30777.319345238095, "deser_ci_high_ns": 31037.492857142857, "total_mean_ns": 55571.79761904762, "total_median_ns": 55559.0, "total_std_ns": 1068.2249298332044, "total_mad_ns": 768.0, "total_cv": 0.019222428922599094, "total_min_ns": 53695.0, "total_max_ns": 58473.0, "total_p5_ns": 53852.4, "total_p25_ns": 54812.25, "total_p50_ns": 55559.0, "total_p75_ns": 56328.0, "total_p95_ns": 57347.95, "total_p99_ns": 58096.18, "total_ci_low_ns": 55347.0568452381, "total_ci_high_ns": 55812.59642857143, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 36.13341796189781}, {"serializer": "nanoserde", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.1.37", "avg_time_ser_ns": 879.5212765957447, "avg_time_deser_ns": 846.6276595744681, "avg_time_total_ns": 1726.1489361702127, "median_size_bytes": 535.0, "avg_ops_per_sec": 579324.2860136327, "min_ops_per_sec": 438404.20868040336, "max_ops_per_sec": 728862.9737609329, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 879.5212765957447, "ser_median_ns": 900.5, "ser_std_ns": 173.03469281847177, "ser_mad_ns": 146.0, "ser_cv": 0.19673735863243239, "ser_min_ns": 498.0, "ser_max_ns": 1225.0, "ser_p5_ns": 648.15, "ser_p25_ns": 703.5, "ser_p50_ns": 900.5, "ser_p75_ns": 1017.25, "ser_p95_ns": 1149.6, "ser_p99_ns": 1223.1399999999999, "ser_ci_low_ns": 845.8260638297872, "ser_ci_high_ns": 916.1021276595745, "deser_mean_ns": 846.6276595744681, "deser_median_ns": 821.5, "deser_std_ns": 92.51689575918078, "deser_mad_ns": 56.5, "deser_cv": 0.1092769586640739, "deser_min_ns": 733.0, "deser_max_ns": 1101.0, "deser_p5_ns": 743.95, "deser_p25_ns": 770.5, "deser_p50_ns": 821.5, "deser_p75_ns": 898.75, "deser_p95_ns": 1023.35, "deser_p99_ns": 1087.05, "deser_ci_low_ns": 828.656914893617, "deser_ci_high_ns": 865.7343085106382, "total_mean_ns": 1726.1489361702127, "total_median_ns": 1714.5, "total_std_ns": 201.72934904885133, "total_mad_ns": 171.5, "total_cv": 0.11686671110572068, "total_min_ns": 1372.0, "total_max_ns": 2281.0, "total_p5_ns": 1432.7, "total_p25_ns": 1579.5, "total_p50_ns": 1714.5, "total_p75_ns": 1897.25, "total_p95_ns": 2044.4999999999998, "total_p99_ns": 2109.8799999999987, "total_ci_low_ns": 1688.3164893617022, "total_ci_high_ns": 1765.7715425531915, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.9634172818063396, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.890635625426033}, {"serializer": "bincode", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "2.0.1", "avg_time_ser_ns": 190.49484536082474, "avg_time_deser_ns": 1095.7938144329896, "avg_time_total_ns": 1286.2886597938145, "median_size_bytes": 305.0, "avg_ops_per_sec": 777430.4720686062, "min_ops_per_sec": 508388.40874428063, "max_ops_per_sec": 1029866.1174047374, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 190.49484536082474, "ser_median_ns": 188.0, "ser_std_ns": 21.664642715407386, "ser_mad_ns": 15.0, "ser_cv": 0.11372823592350452, "ser_min_ns": 151.0, "ser_max_ns": 243.0, "ser_p5_ns": 159.8, "ser_p25_ns": 175.0, "ser_p50_ns": 188.0, "ser_p75_ns": 204.0, "ser_p95_ns": 230.0, "ser_p99_ns": 242.04, "ser_ci_low_ns": 186.26597938144332, "ser_ci_high_ns": 195.00025773195875, "deser_mean_ns": 1095.7938144329896, "deser_median_ns": 980.0, "deser_std_ns": 276.74773930664765, "deser_mad_ns": 87.0, "deser_cv": 0.25255457337094817, "deser_min_ns": 789.0, "deser_max_ns": 1790.0, "deser_p5_ns": 831.2, "deser_p25_ns": 903.0, "deser_p50_ns": 980.0, "deser_p75_ns": 1300.0, "deser_p95_ns": 1590.5999999999995, "deser_p99_ns": 1749.6799999999996, "deser_ci_low_ns": 1042.3180412371134, "deser_ci_high_ns": 1150.245618556701, "total_mean_ns": 1286.2886597938145, "total_median_ns": 1166.0, "total_std_ns": 279.9933391604643, "total_mad_ns": 89.0, "total_cv": 0.2176753538395851, "total_min_ns": 971.0, "total_max_ns": 1967.0, "total_p5_ns": 1017.0, "total_p25_ns": 1090.0, "total_p50_ns": 1166.0, "total_p75_ns": 1516.0, "total_p95_ns": 1816.0, "total_p99_ns": 1954.52, "total_ci_low_ns": 1232.2139175257732, "total_ci_high_ns": 1341.830412371134, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.5371344414054281, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.109072706954241}, {"serializer": "bitcode", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.6.9", "avg_time_ser_ns": 725.445652173913, "avg_time_deser_ns": 838.3913043478261, "avg_time_total_ns": 1563.8369565217392, "median_size_bytes": 291.0, "avg_ops_per_sec": 639452.8507781167, "min_ops_per_sec": 411015.20756267983, "max_ops_per_sec": 834724.5409015025, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 725.445652173913, "ser_median_ns": 719.5, "ser_std_ns": 55.77808544628896, "ser_mad_ns": 38.5, "ser_cv": 0.07688802776492089, "ser_min_ns": 614.0, "ser_max_ns": 867.0, "ser_p5_ns": 639.0, "ser_p25_ns": 686.75, "ser_p50_ns": 719.5, "ser_p75_ns": 760.0, "ser_p95_ns": 819.85, "ser_p99_ns": 866.09, "ser_ci_low_ns": 714.5323369565217, "ser_ci_high_ns": 737.2317934782609, "deser_mean_ns": 838.3913043478261, "deser_median_ns": 696.0, "deser_std_ns": 298.2373107944885, "deser_mad_ns": 103.0, "deser_cv": 0.3557256727829298, "deser_min_ns": 524.0, "deser_max_ns": 1663.0, "deser_p5_ns": 569.0, "deser_p25_ns": 622.75, "deser_p50_ns": 696.0, "deser_p75_ns": 1073.5, "deser_p95_ns": 1367.6, "deser_p99_ns": 1491.9200000000005, "deser_ci_low_ns": 779.4309782608696, "deser_ci_high_ns": 898.1415760869565, "total_mean_ns": 1563.8369565217392, "total_median_ns": 1437.5, "total_std_ns": 301.25117398609103, "total_mad_ns": 124.0, "total_cv": 0.19263592200566035, "total_min_ns": 1198.0, "total_max_ns": 2433.0, "total_p5_ns": 1261.65, "total_p25_ns": 1339.75, "total_p50_ns": 1437.5, "total_p75_ns": 1750.5, "total_p95_ns": 2138.85, "total_p99_ns": 2191.850000000001, "total_ci_low_ns": 1501.7535326086957, "total_ci_high_ns": 1625.9578804347827, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.7739574090505768, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.967170850337616}, {"serializer": "serde_json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "1.0.150", "avg_time_ser_ns": 317.86170212765956, "avg_time_deser_ns": 1482.372340425532, "avg_time_total_ns": 1800.2340425531916, "median_size_bytes": 390.0, "avg_ops_per_sec": 555483.3295907151, "min_ops_per_sec": 364564.34560699965, "max_ops_per_sec": 750187.5468867216, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 317.86170212765956, "ser_median_ns": 318.0, "ser_std_ns": 16.98740903989813, "ser_mad_ns": 10.0, "ser_cv": 0.053442767487212564, "ser_min_ns": 283.0, "ser_max_ns": 361.0, "ser_p5_ns": 289.65, "ser_p25_ns": 307.0, "ser_p50_ns": 318.0, "ser_p75_ns": 327.0, "ser_p95_ns": 346.35, "ser_p99_ns": 357.28, "ser_ci_low_ns": 314.43537234042554, "ser_ci_high_ns": 321.13829787234044, "deser_mean_ns": 1482.372340425532, "deser_median_ns": 1270.5, "deser_std_ns": 424.74376802259667, "deser_mad_ns": 143.0, "deser_cv": 0.2865297445449293, "deser_min_ns": 1015.0, "deser_max_ns": 2398.0, "deser_p5_ns": 1090.5, "deser_p25_ns": 1146.25, "deser_p50_ns": 1270.5, "deser_p75_ns": 1982.25, "deser_p95_ns": 2192.6, "deser_p99_ns": 2358.0099999999998, "deser_ci_low_ns": 1398.911170212766, "deser_ci_high_ns": 1568.5962765957447, "total_mean_ns": 1800.2340425531916, "total_median_ns": 1584.0, "total_std_ns": 422.0917299664407, "total_mad_ns": 145.5, "total_cv": 0.23446491955446352, "total_min_ns": 1333.0, "total_max_ns": 2743.0, "total_p5_ns": 1402.1, "total_p25_ns": 1471.0, "total_p50_ns": 1584.0, "total_p75_ns": 2277.5, "total_p95_ns": 2507.2, "total_p99_ns": 2675.1099999999997, "total_ci_low_ns": 1714.5742021276596, "total_ci_high_ns": 1889.5002659574468, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.9288970907511941, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.2683734901504726}, {"serializer": "speedy", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.8.7", "avg_time_ser_ns": 125.98979591836735, "avg_time_deser_ns": 827.9897959183673, "avg_time_total_ns": 953.9795918367347, "median_size_bytes": 403.0, "avg_ops_per_sec": 1048240.4535244411, "min_ops_per_sec": 610873.5491753207, "max_ops_per_sec": 1631321.370309951, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 125.98979591836735, "ser_median_ns": 125.5, "ser_std_ns": 20.939035168134044, "ser_mad_ns": 17.0, "ser_cv": 0.1661962781628846, "ser_min_ns": 93.0, "ser_max_ns": 191.0, "ser_p5_ns": 100.85, "ser_p25_ns": 107.25, "ser_p50_ns": 125.5, "ser_p75_ns": 142.0, "ser_p95_ns": 157.29999999999998, "ser_p99_ns": 185.18, "ser_ci_low_ns": 121.84693877551021, "ser_ci_high_ns": 130.1734693877551, "deser_mean_ns": 827.9897959183673, "deser_median_ns": 682.0, "deser_std_ns": 315.3246566160994, "deser_mad_ns": 130.0, "deser_cv": 0.38083157325188544, "deser_min_ns": 508.0, "deser_max_ns": 1504.0, "deser_p5_ns": 519.85, "deser_p25_ns": 563.25, "deser_p50_ns": 682.0, "deser_p75_ns": 1184.25, "deser_p95_ns": 1357.35, "deser_p99_ns": 1447.74, "deser_ci_low_ns": 766.3974489795919, "deser_ci_high_ns": 889.6053571428571, "total_mean_ns": 953.9795918367347, "total_median_ns": 802.5, "total_std_ns": 315.6781598561119, "total_mad_ns": 126.5, "total_cv": 0.3309066174553318, "total_min_ns": 613.0, "total_max_ns": 1637.0, "total_p5_ns": 634.85, "total_p25_ns": 695.25, "total_p50_ns": 802.5, "total_p75_ns": 1320.0, "total_p95_ns": 1468.6999999999996, "total_p99_ns": 1592.38, "total_ci_low_ns": 889.7948979591837, "total_ci_high_ns": 1018.0507653061223, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "minicbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.25.1", "avg_time_ser_ns": 357.83505154639175, "avg_time_deser_ns": 1317.6082474226805, "avg_time_total_ns": 1675.4432989690722, "median_size_bytes": 306.0, "avg_ops_per_sec": 596856.9635363467, "min_ops_per_sec": 407497.96251018747, "max_ops_per_sec": 859845.2278589854, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 357.83505154639175, "ser_median_ns": 354.0, "ser_std_ns": 21.065710888971488, "ser_mad_ns": 15.0, "ser_cv": 0.05886989214146454, "ser_min_ns": 315.0, "ser_max_ns": 416.0, "ser_p5_ns": 330.0, "ser_p25_ns": 340.0, "ser_p50_ns": 354.0, "ser_p75_ns": 373.0, "ser_p95_ns": 397.0, "ser_p99_ns": 411.19999999999993, "ser_ci_low_ns": 353.7110824742268, "ser_ci_high_ns": 362.09304123711337, "deser_mean_ns": 1317.6082474226805, "deser_median_ns": 1169.0, "deser_std_ns": 392.6481821316272, "deser_mad_ns": 239.0, "deser_cv": 0.2980007015739847, "deser_min_ns": 837.0, "deser_max_ns": 2084.0, "deser_p5_ns": 864.6, "deser_p25_ns": 972.0, "deser_p50_ns": 1169.0, "deser_p75_ns": 1736.0, "deser_p95_ns": 1904.0, "deser_p99_ns": 2011.0399999999995, "deser_ci_low_ns": 1239.4778350515464, "deser_ci_high_ns": 1396.7056701030929, "total_mean_ns": 1675.4432989690722, "total_median_ns": 1545.0, "total_std_ns": 393.911844227026, "total_mad_ns": 266.0, "total_cv": 0.23510902724634514, "total_min_ns": 1163.0, "total_max_ns": 2454.0, "total_p5_ns": 1212.4, "total_p25_ns": 1334.0, "total_p50_ns": 1545.0, "total_p75_ns": 2095.0, "total_p95_ns": 2253.7999999999997, "total_p99_ns": 2365.6799999999994, "total_ci_low_ns": 1600.565206185567, "total_ci_high_ns": 1753.2043814432989, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.7814012202819272, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.014491645740633}, {"serializer": "rkyv", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.8.17", "avg_time_ser_ns": 456.6458333333333, "avg_time_deser_ns": 898.2916666666666, "avg_time_total_ns": 1354.9375, "median_size_bytes": 452.0, "avg_ops_per_sec": 738041.422574842, "min_ops_per_sec": 511247.4437627812, "max_ops_per_sec": 1033057.8512396694, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 456.6458333333333, "ser_median_ns": 453.0, "ser_std_ns": 38.410793210863524, "ser_mad_ns": 29.5, "ser_cv": 0.0841150633752201, "ser_min_ns": 386.0, "ser_max_ns": 551.0, "ser_p5_ns": 396.5, "ser_p25_ns": 422.75, "ser_p50_ns": 453.0, "ser_p75_ns": 482.0, "ser_p95_ns": 525.5, "ser_p99_ns": 545.3, "ser_ci_low_ns": 448.88489583333336, "ser_ci_high_ns": 464.18932291666664, "deser_mean_ns": 898.2916666666666, "deser_median_ns": 719.5, "deser_std_ns": 338.8799482091639, "deser_mad_ns": 137.0, "deser_cv": 0.37724935094484596, "deser_min_ns": 551.0, "deser_max_ns": 1487.0, "deser_p5_ns": 564.25, "deser_p25_ns": 614.5, "deser_p50_ns": 719.5, "deser_p75_ns": 1293.5, "deser_p95_ns": 1444.25, "deser_p99_ns": 1463.25, "deser_ci_low_ns": 832.1489583333333, "deser_ci_high_ns": 971.3578124999999, "total_mean_ns": 1354.9375, "total_median_ns": 1193.5, "total_std_ns": 338.3614639156739, "total_mad_ns": 156.0, "total_cv": 0.24972477617283004, "total_min_ns": 968.0, "total_max_ns": 1956.0, "total_p5_ns": 1015.5, "total_p25_ns": 1081.75, "total_p50_ns": 1193.5, "total_p75_ns": 1741.0, "total_p95_ns": 1914.75, "total_p99_ns": 1932.25, "total_ci_low_ns": 1287.30546875, "total_ci_high_ns": 1421.7736979166666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.5866284013605442, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.221007818076095}, {"serializer": "bson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "2.15.0", "avg_time_ser_ns": 1520.5568181818182, "avg_time_deser_ns": 2058.7727272727275, "avg_time_total_ns": 3579.3295454545455, "median_size_bytes": 580.0, "avg_ops_per_sec": 279381.9309736143, "min_ops_per_sec": 246062.99212598425, "max_ops_per_sec": 316656.11146295123, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 1520.5568181818182, "ser_median_ns": 1550.0, "ser_std_ns": 162.26357570001676, "ser_mad_ns": 116.5, "ser_cv": 0.10671326040551439, "ser_min_ns": 1078.0, "ser_max_ns": 1896.0, "ser_p5_ns": 1261.05, "ser_p25_ns": 1401.5, "ser_p50_ns": 1550.0, "ser_p75_ns": 1644.5, "ser_p95_ns": 1765.35, "ser_p99_ns": 1862.9399999999998, "ser_ci_low_ns": 1487.3954545454546, "ser_ci_high_ns": 1554.050284090909, "deser_mean_ns": 2058.7727272727275, "deser_median_ns": 2033.0, "deser_std_ns": 118.21456503147122, "deser_mad_ns": 69.0, "deser_cv": 0.057419919870451655, "deser_min_ns": 1892.0, "deser_max_ns": 2395.0, "deser_p5_ns": 1923.05, "deser_p25_ns": 1967.0, "deser_p50_ns": 2033.0, "deser_p75_ns": 2115.0, "deser_p95_ns": 2315.75, "deser_p99_ns": 2351.5, "deser_ci_low_ns": 2034.4769886363636, "deser_ci_high_ns": 2084.0360795454544, "total_mean_ns": 3579.3295454545455, "total_median_ns": 3583.0, "total_std_ns": 211.58551552835607, "total_mad_ns": 145.5, "total_cv": 0.05911316989435977, "total_min_ns": 3158.0, "total_max_ns": 4064.0, "total_p5_ns": 3250.0, "total_p25_ns": 3423.75, "total_p50_ns": 3583.0, "total_p75_ns": 3697.75, "total_p95_ns": 3950.7999999999997, "total_p99_ns": 4043.12, "total_ci_low_ns": 3537.210227272727, "total_ci_high_ns": 3621.003693181818, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.630999251890486}, {"serializer": "postcard", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "1.1.3", "avg_time_ser_ns": 194.58064516129033, "avg_time_deser_ns": 1013.8924731182796, "avg_time_total_ns": 1208.47311827957, "median_size_bytes": 305.0, "avg_ops_per_sec": 827490.4794106132, "min_ops_per_sec": 525762.3554153523, "max_ops_per_sec": 1226993.865030675, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 194.58064516129033, "ser_median_ns": 194.0, "ser_std_ns": 10.267426946464326, "ser_mad_ns": 6.0, "ser_cv": 0.052766948829640926, "ser_min_ns": 168.0, "ser_max_ns": 219.0, "ser_p5_ns": 180.6, "ser_p25_ns": 189.0, "ser_p50_ns": 194.0, "ser_p75_ns": 202.0, "ser_p95_ns": 212.79999999999998, "ser_p99_ns": 217.16, "ser_ci_low_ns": 192.40833333333333, "ser_ci_high_ns": 196.66693548387096, "deser_mean_ns": 1013.8924731182796, "deser_median_ns": 826.0, "deser_std_ns": 356.09529325380424, "deser_mad_ns": 140.0, "deser_cv": 0.3512160339435349, "deser_min_ns": 630.0, "deser_max_ns": 1697.0, "deser_p5_ns": 661.6, "deser_p25_ns": 726.0, "deser_p50_ns": 826.0, "deser_p75_ns": 1401.0, "deser_p95_ns": 1587.6, "deser_p99_ns": 1690.56, "deser_ci_low_ns": 945.8771505376344, "deser_ci_high_ns": 1086.7319892473117, "total_mean_ns": 1208.47311827957, "total_median_ns": 1016.0, "total_std_ns": 356.8482685533425, "total_mad_ns": 133.0, "total_cv": 0.29528854482205263, "total_min_ns": 815.0, "total_max_ns": 1902.0, "total_p5_ns": 851.6, "total_p25_ns": 913.0, "total_p50_ns": 1016.0, "total_p75_ns": 1594.0, "total_p95_ns": 1790.3999999999999, "total_p99_ns": 1890.96, "total_ci_low_ns": 1137.6336021505376, "total_ci_high_ns": 1279.8709677419354, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.5113012947114329, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 0.7536294657665995}, {"serializer": "prost", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.13.5", "avg_time_ser_ns": 1106.0674157303372, "avg_time_deser_ns": 1085.4943820224719, "avg_time_total_ns": 2191.561797752809, "median_size_bytes": 335.0, "avg_ops_per_sec": 456295.59751652146, "min_ops_per_sec": 334896.1821835231, "max_ops_per_sec": 571428.5714285715, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 1106.0674157303372, "ser_median_ns": 982.0, "ser_std_ns": 274.3557659546521, "ser_mad_ns": 175.0, "ser_cv": 0.24804615166562408, "ser_min_ns": 763.0, "ser_max_ns": 1662.0, "ser_p5_ns": 795.4, "ser_p25_ns": 871.0, "ser_p50_ns": 982.0, "ser_p75_ns": 1366.0, "ser_p95_ns": 1553.6, "ser_p99_ns": 1649.68, "ser_ci_low_ns": 1050.164606741573, "ser_ci_high_ns": 1159.1587078651687, "deser_mean_ns": 1085.4943820224719, "deser_median_ns": 1060.0, "deser_std_ns": 91.98506840237042, "deser_mad_ns": 49.0, "deser_cv": 0.08474025285233226, "deser_min_ns": 934.0, "deser_max_ns": 1376.0, "deser_p5_ns": 984.4, "deser_p25_ns": 1019.0, "deser_p50_ns": 1060.0, "deser_p75_ns": 1136.0, "deser_p95_ns": 1279.5999999999997, "deser_p99_ns": 1355.7600000000002, "deser_ci_low_ns": 1067.4258426966294, "deser_ci_high_ns": 1106.2412921348314, "total_mean_ns": 2191.561797752809, "total_median_ns": 2050.0, "total_std_ns": 341.22752856602415, "total_mad_ns": 236.0, "total_cv": 0.1557006190361199, "total_min_ns": 1750.0, "total_max_ns": 2986.0, "total_p5_ns": 1790.0, "total_p25_ns": 1907.0, "total_p50_ns": 2050.0, "total_p75_ns": 2493.0, "total_p95_ns": 2751.7999999999997, "total_p99_ns": 2897.1200000000003, "total_ci_low_ns": 2124.204494382023, "total_ci_high_ns": 2261.6407303370784, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.756887779046976}, {"serializer": "simd-json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.14.3", "avg_time_ser_ns": 328.44897959183675, "avg_time_deser_ns": 1908.6632653061224, "avg_time_total_ns": 2237.112244897959, "median_size_bytes": 390.0, "avg_ops_per_sec": 447004.83951157884, "min_ops_per_sec": 372995.1510630362, "max_ops_per_sec": 547045.9518599563, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 328.44897959183675, "ser_median_ns": 325.0, "ser_std_ns": 19.000880310035118, "ser_mad_ns": 14.0, "ser_cv": 0.05785032528841312, "ser_min_ns": 301.0, "ser_max_ns": 380.0, "ser_p5_ns": 303.0, "ser_p25_ns": 314.0, "ser_p50_ns": 325.0, "ser_p75_ns": 340.0, "ser_p95_ns": 367.29999999999995, "ser_p99_ns": 374.18, "ser_ci_low_ns": 325.0301020408163, "ser_ci_high_ns": 332.2454081632653, "deser_mean_ns": 1908.6632653061224, "deser_median_ns": 1927.5, "deser_std_ns": 177.51706430984774, "deser_mad_ns": 130.0, "deser_cv": 0.09300596262137237, "deser_min_ns": 1513.0, "deser_max_ns": 2367.0, "deser_p5_ns": 1622.7, "deser_p25_ns": 1778.75, "deser_p50_ns": 1927.5, "deser_p75_ns": 2034.75, "deser_p95_ns": 2217.15, "deser_p99_ns": 2256.42, "deser_ci_low_ns": 1873.938775510204, "deser_ci_high_ns": 1943.317857142857, "total_mean_ns": 2237.112244897959, "total_median_ns": 2250.0, "total_std_ns": 179.29747686273075, "total_mad_ns": 127.5, "total_cv": 0.08014683986985598, "total_min_ns": 1828.0, "total_max_ns": 2681.0, "total_p5_ns": 1955.4, "total_p25_ns": 2114.25, "total_p50_ns": 2250.0, "total_p75_ns": 2360.0, "total_p95_ns": 2535.45, "total_p99_ns": 2600.4900000000002, "total_ci_low_ns": 2202.770918367347, "total_ci_high_ns": 2274.380357142857, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.97902121368624}, {"serializer": "flexbuffers", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "2.0.0", "avg_time_ser_ns": 1792.0752688172042, "avg_time_deser_ns": 1500.268817204301, "avg_time_total_ns": 3292.3440860215055, "median_size_bytes": 470.0, "avg_ops_per_sec": 303734.9602205181, "min_ops_per_sec": 261028.45210127905, "max_ops_per_sec": 349772.6477789437, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 1792.0752688172042, "ser_median_ns": 1779.0, "ser_std_ns": 175.57051330616426, "ser_mad_ns": 129.0, "ser_cv": 0.09797050177587872, "ser_min_ns": 1432.0, "ser_max_ns": 2186.0, "ser_p5_ns": 1522.6000000000001, "ser_p25_ns": 1658.0, "ser_p50_ns": 1779.0, "ser_p75_ns": 1913.0, "ser_p95_ns": 2081.8, "ser_p99_ns": 2162.08, "ser_ci_low_ns": 1757.54811827957, "ser_ci_high_ns": 1828.3744623655912, "deser_mean_ns": 1500.268817204301, "deser_median_ns": 1495.0, "deser_std_ns": 82.64817257572928, "deser_mad_ns": 67.0, "deser_cv": 0.05508890915278855, "deser_min_ns": 1362.0, "deser_max_ns": 1719.0, "deser_p5_ns": 1388.6, "deser_p25_ns": 1433.0, "deser_p50_ns": 1495.0, "deser_p75_ns": 1563.0, "deser_p95_ns": 1640.1999999999998, "deser_p99_ns": 1719.0, "deser_ci_low_ns": 1483.8145161290322, "deser_ci_high_ns": 1516.2712365591397, "total_mean_ns": 3292.3440860215055, "total_median_ns": 3250.0, "total_std_ns": 213.92920886326414, "total_mad_ns": 148.0, "total_cv": 0.06497777974409044, "total_min_ns": 2859.0, "total_max_ns": 3831.0, "total_p5_ns": 2948.8, "total_p25_ns": 3157.0, "total_p50_ns": 3250.0, "total_p75_ns": 3462.0, "total_p95_ns": 3610.2, "total_p99_ns": 3722.4399999999996, "total_ci_low_ns": 3248.4158602150537, "total_ci_high_ns": 3335.2688172043013, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.595477508687248}, {"serializer": "serde_avro_fast", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "2.1.0", "avg_time_ser_ns": 444.0515463917526, "avg_time_deser_ns": 1413.2577319587629, "avg_time_total_ns": 1857.3092783505156, "median_size_bytes": 305.0, "avg_ops_per_sec": 538413.2904822961, "min_ops_per_sec": 366972.4770642202, "max_ops_per_sec": 720980.5335255949, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 444.0515463917526, "ser_median_ns": 443.0, "ser_std_ns": 21.93996122661637, "ser_mad_ns": 15.0, "ser_cv": 0.04940859097304083, "ser_min_ns": 406.0, "ser_max_ns": 502.0, "ser_p5_ns": 411.8, "ser_p25_ns": 427.0, "ser_p50_ns": 443.0, "ser_p75_ns": 457.0, "ser_p95_ns": 481.3999999999999, "ser_p99_ns": 500.08, "ser_ci_low_ns": 439.80386597938144, "ser_ci_high_ns": 448.3610824742268, "deser_mean_ns": 1413.2577319587629, "deser_median_ns": 1226.0, "deser_std_ns": 413.3519807205909, "deser_mad_ns": 184.0, "deser_cv": 0.29248166938926895, "deser_min_ns": 962.0, "deser_max_ns": 2236.0, "deser_p5_ns": 997.6, "deser_p25_ns": 1077.0, "deser_p50_ns": 1226.0, "deser_p75_ns": 1882.0, "deser_p95_ns": 2161.8, "deser_p99_ns": 2208.16, "deser_ci_low_ns": 1333.119587628866, "deser_ci_high_ns": 1493.2971649484537, "total_mean_ns": 1857.3092783505156, "total_median_ns": 1668.0, "total_std_ns": 417.5241600001715, "total_mad_ns": 188.0, "total_cv": 0.22480055684154904, "total_min_ns": 1387.0, "total_max_ns": 2725.0, "total_p5_ns": 1438.0, "total_p25_ns": 1534.0, "total_p50_ns": 1668.0, "total_p75_ns": 2320.0, "total_p95_ns": 2616.0, "total_p99_ns": 2656.8399999999992, "total_ci_low_ns": 1776.2237113402064, "total_ci_high_ns": 1937.4023195876287, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.9596044603408374, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.4328551684636883}, {"serializer": "sonic-rs", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.3.17", "avg_time_ser_ns": 223.20618556701032, "avg_time_deser_ns": 1191.5360824742268, "avg_time_total_ns": 1414.7422680412371, "median_size_bytes": 390.0, "avg_ops_per_sec": 706842.5271442104, "min_ops_per_sec": 489715.96474045055, "max_ops_per_sec": 968992.2480620155, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 223.20618556701032, "ser_median_ns": 224.0, "ser_std_ns": 11.815366181666686, "ser_mad_ns": 8.0, "ser_cv": 0.05293476142541539, "ser_min_ns": 194.0, "ser_max_ns": 252.0, "ser_p5_ns": 201.2, "ser_p25_ns": 216.0, "ser_p50_ns": 224.0, "ser_p75_ns": 232.0, "ser_p95_ns": 240.2, "ser_p99_ns": 244.31999999999994, "ser_ci_low_ns": 220.96907216494844, "ser_ci_high_ns": 225.51546391752578, "deser_mean_ns": 1191.5360824742268, "deser_median_ns": 1090.0, "deser_std_ns": 307.13277740307444, "deser_mad_ns": 201.0, "deser_cv": 0.2577620450782428, "deser_min_ns": 815.0, "deser_max_ns": 1833.0, "deser_p5_ns": 853.6, "deser_p25_ns": 924.0, "deser_p50_ns": 1090.0, "deser_p75_ns": 1526.0, "deser_p95_ns": 1682.2, "deser_p99_ns": 1789.7999999999997, "deser_ci_low_ns": 1129.6244845360825, "deser_ci_high_ns": 1254.695618556701, "total_mean_ns": 1414.7422680412371, "total_median_ns": 1310.0, "total_std_ns": 306.3265985278388, "total_mad_ns": 208.0, "total_cv": 0.21652466703490758, "total_min_ns": 1032.0, "total_max_ns": 2042.0, "total_p5_ns": 1081.0, "total_p25_ns": 1150.0, "total_p50_ns": 1310.0, "total_p75_ns": 1739.0, "total_p95_ns": 1895.7999999999997, "total_p99_ns": 2010.3199999999997, "total_ci_low_ns": 1353.8422680412373, "total_ci_high_ns": 1475.517268041237, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.6302335367136546, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.4754942581922672}, {"serializer": "ciborium", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.2.2", "avg_time_ser_ns": 281.14130434782606, "avg_time_deser_ns": 2547.021739130435, "avg_time_total_ns": 2828.163043478261, "median_size_bytes": 321.0, "avg_ops_per_sec": 353586.40383410646, "min_ops_per_sec": 280819.99438360013, "max_ops_per_sec": 426439.23240938166, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 281.14130434782606, "ser_median_ns": 280.0, "ser_std_ns": 15.788841185225994, "ser_mad_ns": 9.0, "ser_cv": 0.05615980626486726, "ser_min_ns": 244.0, "ser_max_ns": 324.0, "ser_p5_ns": 254.75, "ser_p25_ns": 272.0, "ser_p50_ns": 280.0, "ser_p75_ns": 291.0, "ser_p95_ns": 307.35, "ser_p99_ns": 324.0, "ser_ci_low_ns": 277.92391304347825, "ser_ci_high_ns": 284.3807065217391, "deser_mean_ns": 2547.021739130435, "deser_median_ns": 2391.5, "deser_std_ns": 344.6618657757471, "deser_mad_ns": 186.0, "deser_cv": 0.13531956185557187, "deser_min_ns": 2080.0, "deser_max_ns": 3269.0, "deser_p5_ns": 2153.75, "deser_p25_ns": 2281.5, "deser_p50_ns": 2391.5, "deser_p75_ns": 2888.5, "deser_p95_ns": 3115.15, "deser_p99_ns": 3236.2400000000002, "deser_ci_low_ns": 2480.429891304348, "deser_ci_high_ns": 2618.677989130435, "total_mean_ns": 2828.163043478261, "total_median_ns": 2676.0, "total_std_ns": 346.9134001312654, "total_mad_ns": 202.0, "total_cv": 0.12266386159427657, "total_min_ns": 2345.0, "total_max_ns": 3561.0, "total_p5_ns": 2429.85, "total_p25_ns": 2554.0, "total_p50_ns": 2676.0, "total_p75_ns": 3180.5, "total_p95_ns": 3396.0, "total_p99_ns": 3516.4100000000003, "total_ci_low_ns": 2759.2815217391303, "total_ci_high_ns": 2901.396467391304, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.636749803402028}, {"serializer": "rmp-serde", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "1.3.1", "avg_time_ser_ns": 186.1443298969072, "avg_time_deser_ns": 1172.5876288659795, "avg_time_total_ns": 1358.7319587628865, "median_size_bytes": 322.0, "avg_ops_per_sec": 735980.3333915037, "min_ops_per_sec": 453514.73922902497, "max_ops_per_sec": 1165501.1655011654, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 186.1443298969072, "ser_median_ns": 186.0, "ser_std_ns": 13.77799399610484, "ser_mad_ns": 10.0, "ser_cv": 0.07401780115319946, "ser_min_ns": 154.0, "ser_max_ns": 223.0, "ser_p5_ns": 168.6, "ser_p25_ns": 176.0, "ser_p50_ns": 186.0, "ser_p75_ns": 195.0, "ser_p95_ns": 208.79999999999995, "ser_p99_ns": 221.07999999999998, "ser_ci_low_ns": 183.48453608247422, "ser_ci_high_ns": 188.9278350515464, "deser_mean_ns": 1172.5876288659795, "deser_median_ns": 1045.0, "deser_std_ns": 370.16200711584037, "deser_mad_ns": 305.0, "deser_cv": 0.3156796114878233, "deser_min_ns": 683.0, "deser_max_ns": 1984.0, "deser_p5_ns": 737.8, "deser_p25_ns": 837.0, "deser_p50_ns": 1045.0, "deser_p75_ns": 1510.0, "deser_p95_ns": 1739.1999999999998, "deser_p99_ns": 1863.039999999999, "deser_ci_low_ns": 1103.1680412371134, "deser_ci_high_ns": 1245.8469072164949, "total_mean_ns": 1358.7319587628865, "total_median_ns": 1229.0, "total_std_ns": 371.74796893257974, "total_mad_ns": 297.0, "total_cv": 0.27359919411261435, "total_min_ns": 858.0, "total_max_ns": 2205.0, "total_p5_ns": 908.8, "total_p25_ns": 1018.0, "total_p50_ns": 1229.0, "total_p75_ns": 1702.0, "total_p95_ns": 1934.7999999999997, "total_p99_ns": 2048.5199999999986, "total_ci_low_ns": 1288.3172680412372, "total_ci_high_ns": 1431.2255154639174, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.6287607826635809, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.1696145016863555}, {"serializer": "simd-json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.14.3", "avg_time_ser_ns": 664.3684210526316, "avg_time_deser_ns": 1503.3684210526317, "avg_time_total_ns": 2167.7368421052633, "median_size_bytes": 390.0, "avg_ops_per_sec": 461310.60771602683, "min_ops_per_sec": 403714.1703673799, "max_ops_per_sec": 519750.5197505198, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 664.3684210526316, "ser_median_ns": 652.0, "ser_std_ns": 76.40249698375534, "ser_mad_ns": 56.0, "ser_cv": 0.11500019351115832, "ser_min_ns": 537.0, "ser_max_ns": 859.0, "ser_p5_ns": 569.7, "ser_p25_ns": 599.5, "ser_p50_ns": 652.0, "ser_p75_ns": 717.5, "ser_p95_ns": 805.9, "ser_p99_ns": 847.72, "ser_ci_low_ns": 649.1573684210526, "ser_ci_high_ns": 679.8005263157894, "deser_mean_ns": 1503.3684210526317, "deser_median_ns": 1493.0, "deser_std_ns": 74.01567583125211, "deser_mad_ns": 51.0, "deser_cv": 0.04923322506629989, "deser_min_ns": 1365.0, "deser_max_ns": 1687.0, "deser_p5_ns": 1399.0, "deser_p25_ns": 1451.0, "deser_p50_ns": 1493.0, "deser_p75_ns": 1546.0, "deser_p95_ns": 1627.1999999999998, "deser_p99_ns": 1682.3, "deser_ci_low_ns": 1488.8726315789474, "deser_ci_high_ns": 1518.1794736842105, "total_mean_ns": 2167.7368421052633, "total_median_ns": 2152.0, "total_std_ns": 113.77920111752803, "total_mad_ns": 87.0, "total_cv": 0.0524875524129709, "total_min_ns": 1924.0, "total_max_ns": 2477.0, "total_p5_ns": 2001.5, "total_p25_ns": 2071.0, "total_p50_ns": 2152.0, "total_p75_ns": 2253.0, "total_p95_ns": 2343.5, "total_p99_ns": 2408.38, "total_ci_low_ns": 2144.505, "total_ci_high_ns": 2190.0426315789473, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.719492129353958}, {"serializer": "flexbuffers", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "2.0.0", "avg_time_ser_ns": 1672.8695652173913, "avg_time_deser_ns": 1557.1630434782608, "avg_time_total_ns": 3230.032608695652, "median_size_bytes": 470.0, "avg_ops_per_sec": 309594.3976874645, "min_ops_per_sec": 288517.02250432776, "max_ops_per_sec": 332667.99733865605, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 1672.8695652173913, "ser_median_ns": 1673.0, "ser_std_ns": 69.19779222027633, "ser_mad_ns": 47.0, "ser_cv": 0.04136472661051969, "ser_min_ns": 1528.0, "ser_max_ns": 1863.0, "ser_p5_ns": 1559.2, "ser_p25_ns": 1624.5, "ser_p50_ns": 1673.0, "ser_p75_ns": 1718.5, "ser_p95_ns": 1790.0, "ser_p99_ns": 1822.0500000000002, "ser_ci_low_ns": 1658.8119565217391, "ser_ci_high_ns": 1686.9239130434783, "deser_mean_ns": 1557.1630434782608, "deser_median_ns": 1549.0, "deser_std_ns": 71.68494518697511, "deser_mad_ns": 47.5, "deser_cv": 0.04603560653921716, "deser_min_ns": 1414.0, "deser_max_ns": 1764.0, "deser_p5_ns": 1458.2, "deser_p25_ns": 1503.0, "deser_p50_ns": 1549.0, "deser_p75_ns": 1604.0, "deser_p95_ns": 1672.8500000000001, "deser_p99_ns": 1733.0600000000002, "deser_ci_low_ns": 1542.8078804347826, "deser_ci_high_ns": 1572.6203804347826, "total_mean_ns": 3230.032608695652, "total_median_ns": 3239.5, "total_std_ns": 104.09847948208736, "total_mad_ns": 67.5, "total_cv": 0.032228306055437715, "total_min_ns": 3006.0, "total_max_ns": 3466.0, "total_p5_ns": 3034.55, "total_p25_ns": 3159.75, "total_p50_ns": 3239.5, "total_p75_ns": 3293.75, "total_p95_ns": 3388.8, "total_p99_ns": 3450.53, "total_ci_low_ns": 3209.1472826086956, "total_ci_high_ns": 3251.4513586956523, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.47042785783705}, {"serializer": "serde_avro_fast", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "2.1.0", "avg_time_ser_ns": 652.1789473684211, "avg_time_deser_ns": 1578.3473684210526, "avg_time_total_ns": 2230.5263157894738, "median_size_bytes": 305.0, "avg_ops_per_sec": 448324.6814535158, "min_ops_per_sec": 388802.4883359253, "max_ops_per_sec": 493827.16049382713, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 652.1789473684211, "ser_median_ns": 650.0, "ser_std_ns": 27.565773932491, "ser_mad_ns": 21.0, "ser_cv": 0.04226719375674492, "ser_min_ns": 599.0, "ser_max_ns": 731.0, "ser_p5_ns": 610.4, "ser_p25_ns": 631.5, "ser_p50_ns": 650.0, "ser_p75_ns": 673.0, "ser_p95_ns": 699.6, "ser_p99_ns": 712.2, "ser_ci_low_ns": 646.5997368421052, "ser_ci_high_ns": 657.8113157894737, "deser_mean_ns": 1578.3473684210526, "deser_median_ns": 1575.0, "deser_std_ns": 110.91426326759156, "deser_mad_ns": 93.0, "deser_cv": 0.07027240358283614, "deser_min_ns": 1399.0, "deser_max_ns": 1871.0, "deser_p5_ns": 1423.4, "deser_p25_ns": 1481.5, "deser_p50_ns": 1575.0, "deser_p75_ns": 1667.5, "deser_p95_ns": 1738.1, "deser_p99_ns": 1860.66, "deser_ci_low_ns": 1557.0734210526316, "deser_ci_high_ns": 1600.1499999999999, "total_mean_ns": 2230.5263157894738, "total_median_ns": 2235.0, "total_std_ns": 121.45771018729839, "total_mad_ns": 101.0, "total_cv": 0.05445248922979399, "total_min_ns": 2025.0, "total_max_ns": 2572.0, "total_p5_ns": 2053.0, "total_p25_ns": 2132.5, "total_p50_ns": 2235.0, "total_p75_ns": 2330.5, "total_p95_ns": 2417.0, "total_p99_ns": 2507.1400000000003, "total_ci_low_ns": 2208.325789473684, "total_ci_high_ns": 2255.3415789473684, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.888145148446855}, {"serializer": "serde_json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "1.0.150", "avg_time_ser_ns": 848.6976744186046, "avg_time_deser_ns": 2820.186046511628, "avg_time_total_ns": 3668.8837209302324, "median_size_bytes": 390.0, "avg_ops_per_sec": 272562.46751435706, "min_ops_per_sec": 239980.80153587714, "max_ops_per_sec": 314564.3284051588, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 848.6976744186046, "ser_median_ns": 842.0, "ser_std_ns": 26.113359108697765, "ser_mad_ns": 15.5, "ser_cv": 0.030768741208801555, "ser_min_ns": 795.0, "ser_max_ns": 908.0, "ser_p5_ns": 811.25, "ser_p25_ns": 832.0, "ser_p50_ns": 842.0, "ser_p75_ns": 868.0, "ser_p95_ns": 896.75, "ser_p99_ns": 905.45, "ser_ci_low_ns": 843.1383720930232, "ser_ci_high_ns": 854.1633720930232, "deser_mean_ns": 2820.186046511628, "deser_median_ns": 2819.0, "deser_std_ns": 191.64596720042414, "deser_mad_ns": 106.0, "deser_cv": 0.06795507957266747, "deser_min_ns": 2357.0, "deser_max_ns": 3326.0, "deser_p5_ns": 2482.0, "deser_p25_ns": 2714.25, "deser_p50_ns": 2819.0, "deser_p75_ns": 2924.5, "deser_p95_ns": 3149.25, "deser_p99_ns": 3321.75, "deser_ci_low_ns": 2780.663662790698, "deser_ci_high_ns": 2857.977906976744, "total_mean_ns": 3668.8837209302324, "total_median_ns": 3663.5, "total_std_ns": 193.85825134418982, "total_mad_ns": 107.5, "total_cv": 0.05283848333439081, "total_min_ns": 3179.0, "total_max_ns": 4167.0, "total_p5_ns": 3346.0, "total_p25_ns": 3554.25, "total_p50_ns": 3663.5, "total_p75_ns": 3767.0, "total_p95_ns": 3990.25, "total_p99_ns": 4150.0, "total_ci_low_ns": 3628.5613372093026, "total_ci_high_ns": 3706.6174418604655, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.55784784586329}, {"serializer": "postcard", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "1.1.3", "avg_time_ser_ns": 509.93333333333334, "avg_time_deser_ns": 912.3222222222222, "avg_time_total_ns": 1422.2555555555555, "median_size_bytes": 305.0, "avg_ops_per_sec": 703108.5208940416, "min_ops_per_sec": 599161.1743559018, "max_ops_per_sec": 814332.2475570033, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 509.93333333333334, "ser_median_ns": 484.5, "ser_std_ns": 78.370454189622, "ser_mad_ns": 48.5, "ser_cv": 0.15368764712306576, "ser_min_ns": 403.0, "ser_max_ns": 721.0, "ser_p5_ns": 420.25, "ser_p25_ns": 446.0, "ser_p50_ns": 484.5, "ser_p75_ns": 569.25, "ser_p95_ns": 657.65, "ser_p99_ns": 708.54, "ser_ci_low_ns": 493.8311111111111, "ser_ci_high_ns": 526.3522222222222, "deser_mean_ns": 912.3222222222222, "deser_median_ns": 906.0, "deser_std_ns": 58.77950184973391, "deser_mad_ns": 42.5, "deser_cv": 0.06442844470735305, "deser_min_ns": 816.0, "deser_max_ns": 1096.0, "deser_p5_ns": 830.9, "deser_p25_ns": 869.25, "deser_p50_ns": 906.0, "deser_p75_ns": 950.5, "deser_p95_ns": 1001.0, "deser_p99_ns": 1067.52, "deser_ci_low_ns": 900.6402777777778, "deser_ci_high_ns": 924.8002777777778, "total_mean_ns": 1422.2555555555555, "total_median_ns": 1409.5, "total_std_ns": 107.08209190612247, "total_mad_ns": 82.5, "total_cv": 0.0752903312543536, "total_min_ns": 1228.0, "total_max_ns": 1669.0, "total_p5_ns": 1272.15, "total_p25_ns": 1331.5, "total_p50_ns": 1409.5, "total_p75_ns": 1509.0, "total_p95_ns": 1599.55, "total_p99_ns": 1652.98, "total_ci_low_ns": 1400.8663888888889, "total_ci_high_ns": 1444.2666666666667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.9246770025839793, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.447020853475042}, {"serializer": "minicbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.25.1", "avg_time_ser_ns": 664.3176470588236, "avg_time_deser_ns": 1101.5764705882352, "avg_time_total_ns": 1765.894117647059, "median_size_bytes": 306.0, "avg_ops_per_sec": 566285.3678523127, "min_ops_per_sec": 492368.29148202855, "max_ops_per_sec": 628535.5122564425, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 664.3176470588236, "ser_median_ns": 653.0, "ser_std_ns": 47.59231924943999, "ser_mad_ns": 28.0, "ser_cv": 0.0716409077195955, "ser_min_ns": 563.0, "ser_max_ns": 779.0, "ser_p5_ns": 599.2, "ser_p25_ns": 633.0, "ser_p50_ns": 653.0, "ser_p75_ns": 688.0, "ser_p95_ns": 759.6, "ser_p99_ns": 776.48, "ser_ci_low_ns": 654.6464705882353, "ser_ci_high_ns": 674.3652941176471, "deser_mean_ns": 1101.5764705882352, "deser_median_ns": 1088.0, "deser_std_ns": 75.15133564548086, "deser_mad_ns": 43.0, "deser_cv": 0.06822162387451004, "deser_min_ns": 989.0, "deser_max_ns": 1355.0, "deser_p5_ns": 1008.2, "deser_p25_ns": 1049.0, "deser_p50_ns": 1088.0, "deser_p75_ns": 1136.0, "deser_p95_ns": 1238.8, "deser_p99_ns": 1338.1999999999998, "deser_ci_low_ns": 1085.34, "deser_ci_high_ns": 1117.1111764705881, "total_mean_ns": 1765.894117647059, "total_median_ns": 1762.0, "total_std_ns": 93.688697230752, "total_mad_ns": 63.0, "total_cv": 0.05305453837492035, "total_min_ns": 1591.0, "total_max_ns": 2031.0, "total_p5_ns": 1632.0, "total_p25_ns": 1706.0, "total_p50_ns": 1762.0, "total_p75_ns": 1826.0, "total_p95_ns": 1949.3999999999999, "total_p99_ns": 2010.84, "total_ci_low_ns": 1747.0111764705882, "total_ci_high_ns": 1786.1891176470588, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.505900779879776}, {"serializer": "prost", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.13.5", "avg_time_ser_ns": 1372.5714285714287, "avg_time_deser_ns": 1580.265306122449, "avg_time_total_ns": 2952.8367346938776, "median_size_bytes": 335.0, "avg_ops_per_sec": 338657.3962084194, "min_ops_per_sec": 287273.7719046251, "max_ops_per_sec": 380372.76531000383, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 1372.5714285714287, "ser_median_ns": 1357.5, "ser_std_ns": 103.3554571150644, "ser_mad_ns": 65.0, "ser_cv": 0.07530060364336498, "ser_min_ns": 1206.0, "ser_max_ns": 1640.0, "ser_p5_ns": 1236.25, "ser_p25_ns": 1297.0, "ser_p50_ns": 1357.5, "ser_p75_ns": 1439.75, "ser_p95_ns": 1553.3, "ser_p99_ns": 1603.14, "ser_ci_low_ns": 1352.3724489795918, "ser_ci_high_ns": 1392.7255102040815, "deser_mean_ns": 1580.265306122449, "deser_median_ns": 1581.0, "deser_std_ns": 127.18713795929389, "deser_mad_ns": 91.0, "deser_cv": 0.08048467397628144, "deser_min_ns": 1347.0, "deser_max_ns": 1930.0, "deser_p5_ns": 1388.8, "deser_p25_ns": 1482.25, "deser_p50_ns": 1581.0, "deser_p75_ns": 1665.0, "deser_p95_ns": 1784.8499999999997, "deser_p99_ns": 1923.21, "deser_ci_low_ns": 1555.8441326530613, "deser_ci_high_ns": 1604.6451530612244, "total_mean_ns": 2952.8367346938776, "total_median_ns": 2945.5, "total_std_ns": 181.04830442055444, "total_mad_ns": 136.0, "total_cv": 0.06131334736301424, "total_min_ns": 2629.0, "total_max_ns": 3481.0, "total_p5_ns": 2706.55, "total_p25_ns": 2808.75, "total_p50_ns": 2945.5, "total_p75_ns": 3079.75, "total_p95_ns": 3236.2, "total_p99_ns": 3464.51, "total_ci_low_ns": 2916.4073979591835, "total_ci_high_ns": 2987.796428571429, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.220332209429408}, {"serializer": "bson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "2.15.0", "avg_time_ser_ns": 1433.9775280898875, "avg_time_deser_ns": 2102.494382022472, "avg_time_total_ns": 3536.4719101123596, "median_size_bytes": 580.0, "avg_ops_per_sec": 282767.6920437432, "min_ops_per_sec": 265533.7227827934, "max_ops_per_sec": 309214.59492888063, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 1433.9775280898875, "ser_median_ns": 1420.0, "ser_std_ns": 87.3511692079851, "ser_mad_ns": 58.0, "ser_cv": 0.06091529852935713, "ser_min_ns": 1262.0, "ser_max_ns": 1659.0, "ser_p5_ns": 1309.8, "ser_p25_ns": 1378.0, "ser_p50_ns": 1420.0, "ser_p75_ns": 1485.0, "ser_p95_ns": 1589.2, "ser_p99_ns": 1639.64, "ser_ci_low_ns": 1416.7727528089888, "ser_ci_high_ns": 1452.4415730337078, "deser_mean_ns": 2102.494382022472, "deser_median_ns": 2098.0, "deser_std_ns": 76.29430510075406, "deser_mad_ns": 45.0, "deser_cv": 0.03628751912638338, "deser_min_ns": 1925.0, "deser_max_ns": 2294.0, "deser_p5_ns": 1977.4, "deser_p25_ns": 2058.0, "deser_p50_ns": 2098.0, "deser_p75_ns": 2152.0, "deser_p95_ns": 2227.6, "deser_p99_ns": 2271.12, "deser_ci_low_ns": 2087.513764044944, "deser_ci_high_ns": 2118.05702247191, "total_mean_ns": 3536.4719101123596, "total_median_ns": 3539.0, "total_std_ns": 119.97547949170512, "total_mad_ns": 86.0, "total_cv": 0.033925189437710904, "total_min_ns": 3234.0, "total_max_ns": 3766.0, "total_p5_ns": 3354.4, "total_p25_ns": 3445.0, "total_p50_ns": 3539.0, "total_p75_ns": 3612.0, "total_p95_ns": 3735.4, "total_p99_ns": 3762.48, "total_ci_low_ns": 3512.7851123595506, "total_ci_high_ns": 3562.0120786516854, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.557166706394412}, {"serializer": "rkyv", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.8.17", "avg_time_ser_ns": 722.4659090909091, "avg_time_deser_ns": 850.0681818181819, "avg_time_total_ns": 1572.534090909091, "median_size_bytes": 452.0, "avg_ops_per_sec": 635916.2613904887, "min_ops_per_sec": 553403.4311012728, "max_ops_per_sec": 717360.1147776183, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 722.4659090909091, "ser_median_ns": 713.5, "ser_std_ns": 58.61582479506224, "ser_mad_ns": 40.5, "ser_cv": 0.08113299749855257, "ser_min_ns": 626.0, "ser_max_ns": 873.0, "ser_p5_ns": 649.7, "ser_p25_ns": 676.75, "ser_p50_ns": 713.5, "ser_p75_ns": 761.5, "ser_p95_ns": 837.25, "ser_p99_ns": 860.8199999999999, "ser_ci_low_ns": 710.9292613636363, "ser_ci_high_ns": 734.943465909091, "deser_mean_ns": 850.0681818181819, "deser_median_ns": 833.0, "deser_std_ns": 65.12230676224183, "deser_mad_ns": 42.0, "deser_cv": 0.07660833349032539, "deser_min_ns": 742.0, "deser_max_ns": 1029.0, "deser_p5_ns": 764.05, "deser_p25_ns": 798.75, "deser_p50_ns": 833.0, "deser_p75_ns": 896.25, "deser_p95_ns": 976.5999999999998, "deser_p99_ns": 1021.17, "deser_ci_low_ns": 836.871590909091, "deser_ci_high_ns": 863.443465909091, "total_mean_ns": 1572.534090909091, "total_median_ns": 1585.0, "total_std_ns": 83.23819150847065, "total_mad_ns": 55.0, "total_cv": 0.05293251954897218, "total_min_ns": 1394.0, "total_max_ns": 1807.0, "total_p5_ns": 1416.2, "total_p25_ns": 1518.25, "total_p50_ns": 1585.0, "total_p75_ns": 1623.25, "total_p95_ns": 1696.55, "total_p99_ns": 1747.8399999999997, "total_ci_low_ns": 1555.0411931818182, "total_ci_high_ns": 1589.0127840909092, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.616742636612902}, {"serializer": "sonic-rs", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.3.17", "avg_time_ser_ns": 537.6382978723404, "avg_time_deser_ns": 1101.095744680851, "avg_time_total_ns": 1638.7340425531916, "median_size_bytes": 390.0, "avg_ops_per_sec": 610227.1473179219, "min_ops_per_sec": 540248.5143165856, "max_ops_per_sec": 694444.4444444445, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 537.6382978723404, "ser_median_ns": 508.5, "ser_std_ns": 78.41341379979751, "ser_mad_ns": 46.0, "ser_cv": 0.14584789459774755, "ser_min_ns": 315.0, "ser_max_ns": 743.0, "ser_p5_ns": 456.3, "ser_p25_ns": 475.25, "ser_p50_ns": 508.5, "ser_p75_ns": 615.25, "ser_p95_ns": 659.15, "ser_p99_ns": 694.6399999999996, "ser_ci_low_ns": 522.318085106383, "ser_ci_high_ns": 554.3534574468085, "deser_mean_ns": 1101.095744680851, "deser_median_ns": 1085.0, "deser_std_ns": 59.29678755173519, "deser_mad_ns": 37.0, "deser_cv": 0.05385252630226281, "deser_min_ns": 992.0, "deser_max_ns": 1257.0, "deser_p5_ns": 1018.65, "deser_p25_ns": 1058.75, "deser_p50_ns": 1085.0, "deser_p75_ns": 1146.25, "deser_p95_ns": 1209.05, "deser_p99_ns": 1234.6799999999998, "deser_ci_low_ns": 1089.5635638297872, "deser_ci_high_ns": 1113.649734042553, "total_mean_ns": 1638.7340425531916, "total_median_ns": 1628.5, "total_std_ns": 96.93564826168002, "total_mad_ns": 71.5, "total_cv": 0.05915276411213846, "total_min_ns": 1440.0, "total_max_ns": 1851.0, "total_p5_ns": 1507.25, "total_p25_ns": 1564.25, "total_p50_ns": 1628.5, "total_p75_ns": 1700.75, "total_p95_ns": 1808.9499999999998, "total_p99_ns": 1846.35, "total_ci_low_ns": 1619.5632978723404, "total_ci_high_ns": 1657.8465425531915, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.967518325432456}, {"serializer": "bitcode", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.6.9", "avg_time_ser_ns": 1010.9887640449438, "avg_time_deser_ns": 903.9550561797753, "avg_time_total_ns": 1914.943820224719, "median_size_bytes": 291.0, "avg_ops_per_sec": 522208.53136184945, "min_ops_per_sec": 468384.074941452, "max_ops_per_sec": 588235.2941176471, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 1010.9887640449438, "ser_median_ns": 998.0, "ser_std_ns": 84.56929573674834, "ser_mad_ns": 50.0, "ser_cv": 0.0836500846937096, "ser_min_ns": 845.0, "ser_max_ns": 1216.0, "ser_p5_ns": 897.8, "ser_p25_ns": 948.0, "ser_p50_ns": 998.0, "ser_p75_ns": 1043.0, "ser_p95_ns": 1181.8, "ser_p99_ns": 1206.3200000000002, "ser_ci_low_ns": 994.4269662921348, "ser_ci_high_ns": 1028.3491573033707, "deser_mean_ns": 903.9550561797753, "deser_median_ns": 901.0, "deser_std_ns": 71.154586850226, "deser_mad_ns": 43.0, "deser_cv": 0.0787147395921806, "deser_min_ns": 740.0, "deser_max_ns": 1070.0, "deser_p5_ns": 795.2, "deser_p25_ns": 853.0, "deser_p50_ns": 901.0, "deser_p75_ns": 939.0, "deser_p95_ns": 1027.6, "deser_p99_ns": 1069.12, "deser_ci_low_ns": 889.9769662921349, "deser_ci_high_ns": 918.6966292134831, "total_mean_ns": 1914.943820224719, "total_median_ns": 1909.0, "total_std_ns": 118.96928170660482, "total_mad_ns": 92.0, "total_cv": 0.06212677387718024, "total_min_ns": 1700.0, "total_max_ns": 2135.0, "total_p5_ns": 1720.4, "total_p25_ns": 1829.0, "total_p50_ns": 1909.0, "total_p75_ns": 2018.0, "total_p95_ns": 2106.2, "total_p99_ns": 2128.84, "total_ci_low_ns": 1890.3421348314605, "total_ci_high_ns": 1939.5516853932584, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.040050048687549}, {"serializer": "speedy", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.8.7", "avg_time_ser_ns": 449.3255813953488, "avg_time_deser_ns": 736.0116279069767, "avg_time_total_ns": 1185.3372093023256, "median_size_bytes": 403.0, "avg_ops_per_sec": 843641.7857738452, "min_ops_per_sec": 723589.001447178, "max_ops_per_sec": 963391.1368015414, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 449.3255813953488, "ser_median_ns": 432.5, "ser_std_ns": 65.03527402344871, "ser_mad_ns": 36.5, "ser_cv": 0.14473975379164095, "ser_min_ns": 371.0, "ser_max_ns": 612.0, "ser_p5_ns": 377.0, "ser_p25_ns": 397.5, "ser_p50_ns": 432.5, "ser_p75_ns": 473.75, "ser_p95_ns": 580.5, "ser_p99_ns": 599.2500000000001, "ser_ci_low_ns": 436.2630813953488, "ser_ci_high_ns": 463.58284883720927, "deser_mean_ns": 736.0116279069767, "deser_median_ns": 730.5, "deser_std_ns": 48.63803744735705, "deser_mad_ns": 30.0, "deser_cv": 0.06608324597489149, "deser_min_ns": 664.0, "deser_max_ns": 897.0, "deser_p5_ns": 673.5, "deser_p25_ns": 700.25, "deser_p50_ns": 730.5, "deser_p75_ns": 758.0, "deser_p95_ns": 820.75, "deser_p99_ns": 859.6000000000003, "deser_ci_low_ns": 726.0453488372093, "deser_ci_high_ns": 746.6421511627907, "total_mean_ns": 1185.3372093023256, "total_median_ns": 1168.0, "total_std_ns": 83.7706407176048, "total_mad_ns": 60.0, "total_cv": 0.0706724129304193, "total_min_ns": 1038.0, "total_max_ns": 1382.0, "total_p5_ns": 1069.25, "total_p25_ns": 1120.25, "total_p50_ns": 1168.0, "total_p75_ns": 1242.5, "total_p95_ns": 1326.75, "total_p99_ns": 1358.2000000000003, "total_ci_low_ns": 1168.2406976744187, "total_ci_high_ns": 1203.1191860465117, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "nanoserde", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.1.37", "avg_time_ser_ns": 822.9052631578948, "avg_time_deser_ns": 865.0947368421052, "avg_time_total_ns": 1688.0, "median_size_bytes": 535.0, "avg_ops_per_sec": 592417.0616113744, "min_ops_per_sec": 511247.4437627812, "max_ops_per_sec": 672494.9562878278, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 822.9052631578948, "ser_median_ns": 809.0, "ser_std_ns": 80.3009066592797, "ser_mad_ns": 57.0, "ser_cv": 0.09758220083697774, "ser_min_ns": 693.0, "ser_max_ns": 1003.0, "ser_p5_ns": 716.1, "ser_p25_ns": 759.0, "ser_p50_ns": 809.0, "ser_p75_ns": 877.0, "ser_p95_ns": 966.5999999999999, "ser_p99_ns": 1002.06, "ser_ci_low_ns": 806.8102631578947, "ser_ci_high_ns": 838.8636842105262, "deser_mean_ns": 865.0947368421052, "deser_median_ns": 856.0, "deser_std_ns": 57.23004598542483, "deser_mad_ns": 38.0, "deser_cv": 0.06615465745905966, "deser_min_ns": 782.0, "deser_max_ns": 1008.0, "deser_p5_ns": 791.1, "deser_p25_ns": 824.0, "deser_p50_ns": 856.0, "deser_p75_ns": 897.0, "deser_p95_ns": 969.8, "deser_p99_ns": 999.54, "deser_ci_low_ns": 853.915, "deser_ci_high_ns": 876.2052631578947, "total_mean_ns": 1688.0, "total_median_ns": 1693.0, "total_std_ns": 106.45636405029298, "total_mad_ns": 79.0, "total_cv": 0.06306656638050531, "total_min_ns": 1487.0, "total_max_ns": 1956.0, "total_p5_ns": 1524.5, "total_p25_ns": 1606.0, "total_p50_ns": 1693.0, "total_p75_ns": 1764.0, "total_p95_ns": 1855.4, "total_p99_ns": 1933.44, "total_ci_low_ns": 1665.6521052631579, "total_ci_high_ns": 1708.6123684210527, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.195047201984576}, {"serializer": "rmp-serde", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "1.3.1", "avg_time_ser_ns": 477.98823529411766, "avg_time_deser_ns": 945.6117647058824, "avg_time_total_ns": 1423.6, "median_size_bytes": 322.0, "avg_ops_per_sec": 702444.5068839563, "min_ops_per_sec": 597371.5651135006, "max_ops_per_sec": 807102.5020177562, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 477.98823529411766, "ser_median_ns": 451.0, "ser_std_ns": 68.3008913902731, "ser_mad_ns": 24.0, "ser_cv": 0.14289241104071507, "ser_min_ns": 394.0, "ser_max_ns": 636.0, "ser_p5_ns": 407.2, "ser_p25_ns": 434.0, "ser_p50_ns": 451.0, "ser_p75_ns": 496.0, "ser_p95_ns": 622.1999999999999, "ser_p99_ns": 630.12, "ser_ci_low_ns": 463.4694117647059, "ser_ci_high_ns": 492.2358823529412, "deser_mean_ns": 945.6117647058824, "deser_median_ns": 936.0, "deser_std_ns": 65.48411187122433, "deser_mad_ns": 41.0, "deser_cv": 0.06925052576052936, "deser_min_ns": 834.0, "deser_max_ns": 1119.0, "deser_p5_ns": 865.0, "deser_p25_ns": 900.0, "deser_p50_ns": 936.0, "deser_p75_ns": 980.0, "deser_p95_ns": 1061.2, "deser_p99_ns": 1113.12, "deser_ci_low_ns": 931.9873529411765, "deser_ci_high_ns": 959.7120588235294, "total_mean_ns": 1423.6, "total_median_ns": 1416.0, "total_std_ns": 103.46648870873258, "total_mad_ns": 77.0, "total_cv": 0.07267946664002008, "total_min_ns": 1239.0, "total_max_ns": 1674.0, "total_p5_ns": 1278.6, "total_p25_ns": 1340.0, "total_p50_ns": 1416.0, "total_p75_ns": 1503.0, "total_p95_ns": 1591.6, "total_p99_ns": 1669.8, "total_ci_low_ns": 1401.5979411764706, "total_ci_high_ns": 1446.106176470588, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.9328317373461013, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.52137625473589}, {"serializer": "ciborium", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.2.2", "avg_time_ser_ns": 556.1075268817204, "avg_time_deser_ns": 2861.3440860215055, "avg_time_total_ns": 3417.451612903226, "median_size_bytes": 321.0, "avg_ops_per_sec": 292615.701192173, "min_ops_per_sec": 264900.66225165565, "max_ops_per_sec": 322997.41602067184, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 556.1075268817204, "ser_median_ns": 555.0, "ser_std_ns": 23.458317504065636, "ser_mad_ns": 16.0, "ser_cv": 0.04218306059550068, "ser_min_ns": 494.0, "ser_max_ns": 620.0, "ser_p5_ns": 521.0, "ser_p25_ns": 540.0, "ser_p50_ns": 555.0, "ser_p75_ns": 571.0, "ser_p95_ns": 594.1999999999999, "ser_p99_ns": 603.4399999999999, "ser_ci_low_ns": 551.3868279569892, "ser_ci_high_ns": 560.7317204301075, "deser_mean_ns": 2861.3440860215055, "deser_median_ns": 2843.0, "deser_std_ns": 147.50243141869663, "deser_mad_ns": 94.0, "deser_cv": 0.051550050250610796, "deser_min_ns": 2535.0, "deser_max_ns": 3186.0, "deser_p5_ns": 2618.6, "deser_p25_ns": 2769.0, "deser_p50_ns": 2843.0, "deser_p75_ns": 2960.0, "deser_p95_ns": 3129.4, "deser_p99_ns": 3174.96, "deser_ci_low_ns": 2832.771505376344, "deser_ci_high_ns": 2892.366129032258, "total_mean_ns": 3417.451612903226, "total_median_ns": 3409.0, "total_std_ns": 149.31470384866233, "total_mad_ns": 92.0, "total_cv": 0.04369182676497798, "total_min_ns": 3096.0, "total_max_ns": 3775.0, "total_p5_ns": 3165.6, "total_p25_ns": 3333.0, "total_p50_ns": 3409.0, "total_p75_ns": 3508.0, "total_p95_ns": 3683.7999999999997, "total_p99_ns": 3720.72, "total_ci_low_ns": 3387.9029569892473, "total_ci_high_ns": 3448.388172043011, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.173084468467945}, {"serializer": "bincode", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "2.0.1", "avg_time_ser_ns": 467.55128205128204, "avg_time_deser_ns": 1027.128205128205, "avg_time_total_ns": 1494.679487179487, "median_size_bytes": 305.0, "avg_ops_per_sec": 669039.7564009093, "min_ops_per_sec": 584112.1495327103, "max_ops_per_sec": 786782.0613690008, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 467.55128205128204, "ser_median_ns": 461.5, "ser_std_ns": 46.6076877432957, "ser_mad_ns": 25.5, "ser_cv": 0.09968465392462268, "ser_min_ns": 399.0, "ser_max_ns": 602.0, "ser_p5_ns": 405.85, "ser_p25_ns": 435.25, "ser_p50_ns": 461.5, "ser_p75_ns": 482.75, "ser_p95_ns": 573.3999999999999, "ser_p99_ns": 591.99, "ser_ci_low_ns": 457.5605769230769, "ser_ci_high_ns": 478.1176282051282, "deser_mean_ns": 1027.128205128205, "deser_median_ns": 1025.5, "deser_std_ns": 77.84539439109696, "deser_mad_ns": 55.5, "deser_cv": 0.07578936495213894, "deser_min_ns": 867.0, "deser_max_ns": 1217.0, "deser_p5_ns": 921.9, "deser_p25_ns": 969.0, "deser_p50_ns": 1025.5, "deser_p75_ns": 1074.0, "deser_p95_ns": 1172.8999999999999, "deser_p99_ns": 1214.69, "deser_ci_low_ns": 1010.9467948717949, "deser_ci_high_ns": 1044.1544871794872, "total_mean_ns": 1494.679487179487, "total_median_ns": 1487.0, "total_std_ns": 97.73772133195132, "total_mad_ns": 76.5, "total_cv": 0.06539042127110867, "total_min_ns": 1271.0, "total_max_ns": 1712.0, "total_p5_ns": 1358.0, "total_p25_ns": 1414.0, "total_p50_ns": 1487.0, "total_p75_ns": 1562.0, "total_p95_ns": 1677.6499999999999, "total_p99_ns": 1710.46, "total_ci_low_ns": 1474.0714743589745, "total_ci_high_ns": 1515.576923076923, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.9904591532498509, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.395619773273188}, {"serializer": "bitcode", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.6.9", "avg_time_ser_ns": 77630.0, "avg_time_deser_ns": 108115.04285714286, "avg_time_total_ns": 185745.04285714286, "median_size_bytes": 32842.0, "avg_ops_per_sec": 5383.723757134683, "min_ops_per_sec": 4997.6511039811285, "max_ops_per_sec": 5990.032585777267, "runs": 70, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 29, "ser_mean_ns": 77630.0, "ser_median_ns": 77593.5, "ser_std_ns": 1612.8887397946958, "ser_mad_ns": 725.0, "ser_cv": 0.020776616511589536, "ser_min_ns": 73031.0, "ser_max_ns": 81654.0, "ser_p5_ns": 74820.95, "ser_p25_ns": 76901.75, "ser_p50_ns": 77593.5, "ser_p75_ns": 78325.25, "ser_p95_ns": 80544.8, "ser_p99_ns": 81456.66, "ser_ci_low_ns": 77255.76928571428, "ser_ci_high_ns": 77993.34107142857, "deser_mean_ns": 108115.04285714286, "deser_median_ns": 108499.5, "deser_std_ns": 5085.208001490843, "deser_mad_ns": 1906.5, "deser_cv": 0.04703515687645938, "deser_min_ns": 88521.0, "deser_max_ns": 118606.0, "deser_p5_ns": 95195.15, "deser_p25_ns": 106705.0, "deser_p50_ns": 108499.5, "deser_p75_ns": 110386.75, "deser_p95_ns": 114858.25, "deser_p99_ns": 118491.46, "deser_ci_low_ns": 106883.09642857143, "deser_ci_high_ns": 109234.16892857144, "total_mean_ns": 185745.04285714286, "total_median_ns": 186498.5, "total_std_ns": 5929.176870397398, "total_mad_ns": 2426.0, "total_cv": 0.03192105037741194, "total_min_ns": 166944.0, "total_max_ns": 200094.0, "total_p5_ns": 171059.65, "total_p25_ns": 183908.25, "total_p50_ns": 186498.5, "total_p75_ns": 188603.0, "total_p95_ns": 192125.95, "total_p99_ns": 199151.46, "total_ci_low_ns": 184260.21142857143, "total_ci_high_ns": 187044.35642857142, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.87662697407805}, {"serializer": "bincode", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "2.0.1", "avg_time_ser_ns": 23910.30769230769, "avg_time_deser_ns": 121017.08791208791, "avg_time_total_ns": 144927.3956043956, "median_size_bytes": 34250.0, "avg_ops_per_sec": 6900.006695281222, "min_ops_per_sec": 5747.093407509152, "max_ops_per_sec": 7788.283306593561, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 23910.30769230769, "ser_median_ns": 23677.0, "ser_std_ns": 823.4600940517558, "ser_mad_ns": 407.0, "ser_cv": 0.0344395440095769, "ser_min_ns": 22593.0, "ser_max_ns": 26120.0, "ser_p5_ns": 22956.5, "ser_p25_ns": 23352.5, "ser_p50_ns": 23677.0, "ser_p75_ns": 24219.5, "ser_p95_ns": 25678.0, "ser_p99_ns": 25931.0, "ser_ci_low_ns": 23749.47335164835, "ser_ci_high_ns": 24079.56456043956, "deser_mean_ns": 121017.08791208791, "deser_median_ns": 123996.0, "deser_std_ns": 8411.213627121502, "deser_mad_ns": 3955.0, "deser_cv": 0.06950434663600379, "deser_min_ns": 105249.0, "deser_max_ns": 149942.0, "deser_p5_ns": 107955.0, "deser_p25_ns": 111150.5, "deser_p50_ns": 123996.0, "deser_p75_ns": 127062.0, "deser_p95_ns": 129614.5, "deser_p99_ns": 134539.3999999999, "deser_ci_low_ns": 119314.18104395604, "deser_ci_high_ns": 122681.87252747253, "total_mean_ns": 144927.3956043956, "total_median_ns": 147742.0, "total_std_ns": 8478.331006983655, "total_mad_ns": 4200.0, "total_cv": 0.05850054071299761, "total_min_ns": 128398.0, "total_max_ns": 174001.0, "total_p5_ns": 131479.5, "total_p25_ns": 135749.0, "total_p50_ns": 147742.0, "total_p75_ns": 150952.0, "total_p95_ns": 153628.0, "total_p99_ns": 158180.7999999999, "total_ci_low_ns": 143226.060989011, "total_ci_high_ns": 146699.839010989, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.7066512434933487, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.7694825766757032}, {"serializer": "rmp-serde", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "1.3.1", "avg_time_ser_ns": 22863.817204301075, "avg_time_deser_ns": 137408.40860215054, "avg_time_total_ns": 160272.2258064516, "median_size_bytes": 35950.0, "avg_ops_per_sec": 6239.384241207349, "min_ops_per_sec": 5710.565688637116, "max_ops_per_sec": 7098.8947020948835, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 22863.817204301075, "ser_median_ns": 22791.0, "ser_std_ns": 425.750206061799, "ser_mad_ns": 260.0, "ser_cv": 0.01862113409399145, "ser_min_ns": 21926.0, "ser_max_ns": 24095.0, "ser_p5_ns": 22325.2, "ser_p25_ns": 22563.0, "ser_p50_ns": 22791.0, "ser_p75_ns": 23089.0, "ser_p95_ns": 23649.8, "ser_p99_ns": 24082.12, "ser_ci_low_ns": 22780.696505376345, "ser_ci_high_ns": 22950.636827956987, "deser_mean_ns": 137408.40860215054, "deser_median_ns": 140044.0, "deser_std_ns": 8806.34625196457, "deser_mad_ns": 4459.0, "deser_cv": 0.0640888453738103, "deser_min_ns": 118382.0, "deser_max_ns": 152774.0, "deser_p5_ns": 121770.8, "deser_p25_ns": 133293.0, "deser_p50_ns": 140044.0, "deser_p75_ns": 143502.0, "deser_p95_ns": 149980.8, "deser_p99_ns": 152106.08, "deser_ci_low_ns": 135561.58413978494, "deser_ci_high_ns": 139235.16317204302, "total_mean_ns": 160272.2258064516, "total_median_ns": 162751.0, "total_std_ns": 8847.32854930384, "total_mad_ns": 4654.0, "total_cv": 0.055201882327310256, "total_min_ns": 140867.0, "total_max_ns": 175114.0, "total_p5_ns": 144549.8, "total_p25_ns": 155555.0, "total_p50_ns": 162751.0, "total_p75_ns": 166677.0, "total_p95_ns": 172896.8, "total_p99_ns": 174964.04, "total_ci_low_ns": 158530.32338709678, "total_ci_high_ns": 162099.01155913976, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.9997736276174307, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.577291295872042}, {"serializer": "bson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "2.15.0", "avg_time_ser_ns": 113982.42268041238, "avg_time_deser_ns": 265173.05154639174, "avg_time_total_ns": 379155.4742268041, "median_size_bytes": 61750.0, "avg_ops_per_sec": 2637.4404907096705, "min_ops_per_sec": 2440.4053025126414, "max_ops_per_sec": 2806.8993586234965, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 113982.42268041238, "ser_median_ns": 116272.0, "ser_std_ns": 9410.812662875096, "ser_mad_ns": 4242.0, "ser_cv": 0.08256371852405207, "ser_min_ns": 97711.0, "ser_max_ns": 142079.0, "ser_p5_ns": 99460.6, "ser_p25_ns": 102764.0, "ser_p50_ns": 116272.0, "ser_p75_ns": 119741.0, "ser_p95_ns": 124302.4, "ser_p99_ns": 142048.28, "ser_ci_low_ns": 112179.49716494845, "ser_ci_high_ns": 115788.89871134021, "deser_mean_ns": 265173.05154639174, "deser_median_ns": 264942.0, "deser_std_ns": 4065.5256972785155, "deser_mad_ns": 2766.0, "deser_cv": 0.015331594494877455, "deser_min_ns": 256101.0, "deser_max_ns": 273505.0, "deser_p5_ns": 258073.0, "deser_p25_ns": 262710.0, "deser_p50_ns": 264942.0, "deser_p75_ns": 267888.0, "deser_p95_ns": 271775.2, "deser_p99_ns": 273467.56, "deser_ci_low_ns": 264394.4128865979, "deser_ci_high_ns": 265977.3582474227, "total_mean_ns": 379155.4742268041, "total_median_ns": 380802.0, "total_std_ns": 10619.970259583262, "total_mad_ns": 6497.0, "total_cv": 0.028009539572757387, "total_min_ns": 356265.0, "total_max_ns": 409768.0, "total_p5_ns": 361986.6, "total_p25_ns": 370381.0, "total_p50_ns": 380802.0, "total_p75_ns": 385577.0, "total_p95_ns": 395061.0, "total_p99_ns": 405205.11999999994, "total_ci_low_ns": 377157.63917525776, "total_ci_high_ns": 381317.756185567, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.71529549117664}, {"serializer": "flexbuffers", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "2.0.0", "avg_time_ser_ns": 142442.44210526315, "avg_time_deser_ns": 185884.0105263158, "avg_time_total_ns": 328326.45263157896, "median_size_bytes": 50704.0, "avg_ops_per_sec": 3045.7491072829216, "min_ops_per_sec": 2887.6362964331915, "max_ops_per_sec": 3247.491312960738, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 142442.44210526315, "ser_median_ns": 145168.0, "ser_std_ns": 8188.428111067667, "ser_mad_ns": 3810.0, "ser_cv": 0.05748587282024077, "ser_min_ns": 124323.0, "ser_max_ns": 155766.0, "ser_p5_ns": 128217.7, "ser_p25_ns": 136748.5, "ser_p50_ns": 145168.0, "ser_p75_ns": 148359.0, "ser_p95_ns": 151100.1, "ser_p99_ns": 153652.88, "ser_ci_low_ns": 140881.04289473683, "ser_ci_high_ns": 144129.08710526317, "deser_mean_ns": 185884.0105263158, "deser_median_ns": 185783.0, "deser_std_ns": 2818.7450485675695, "deser_mad_ns": 1544.0, "deser_cv": 0.015163999531678475, "deser_min_ns": 179523.0, "deser_max_ns": 192801.0, "deser_p5_ns": 181359.0, "deser_p25_ns": 184351.0, "deser_p50_ns": 185783.0, "deser_p75_ns": 187403.0, "deser_p95_ns": 191367.3, "deser_p99_ns": 192786.9, "deser_ci_low_ns": 185343.19789473683, "deser_ci_high_ns": 186452.3663157895, "total_mean_ns": 328326.45263157896, "total_median_ns": 331323.0, "total_std_ns": 9240.652020340895, "total_mad_ns": 5185.0, "total_cv": 0.028144707641665403, "total_min_ns": 307930.0, "total_max_ns": 346304.0, "total_p5_ns": 311436.9, "total_p25_ns": 321263.5, "total_p50_ns": 331323.0, "total_p75_ns": 334724.0, "total_p95_ns": 338872.1, "total_p99_ns": 341946.16000000003, "total_ci_low_ns": 326382.5242105263, "total_ci_high_ns": 330217.06763157895, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.226016968212626}, {"serializer": "nanoserde", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.1.37", "avg_time_ser_ns": 67719.64935064936, "avg_time_deser_ns": 118947.97402597402, "avg_time_total_ns": 186667.62337662338, "median_size_bytes": 57250.0, "avg_ops_per_sec": 5357.115400684055, "min_ops_per_sec": 5070.531087426097, "max_ops_per_sec": 5560.436383047341, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 67719.64935064936, "ser_median_ns": 68003.0, "ser_std_ns": 2259.303227279514, "ser_mad_ns": 1539.0, "ser_cv": 0.03336259488853732, "ser_min_ns": 59896.0, "ser_max_ns": 72176.0, "ser_p5_ns": 64222.8, "ser_p25_ns": 66321.0, "ser_p50_ns": 68003.0, "ser_p75_ns": 69313.0, "ser_p95_ns": 70843.4, "ser_p99_ns": 71758.0, "ser_ci_low_ns": 67214.41720779221, "ser_ci_high_ns": 68208.41038961039, "deser_mean_ns": 118947.97402597402, "deser_median_ns": 118681.0, "deser_std_ns": 3208.4803706412417, "deser_mad_ns": 2291.0, "deser_cv": 0.026973812685036767, "deser_min_ns": 112300.0, "deser_max_ns": 127341.0, "deser_p5_ns": 114774.4, "deser_p25_ns": 116479.0, "deser_p50_ns": 118681.0, "deser_p75_ns": 121146.0, "deser_p95_ns": 124671.8, "deser_p99_ns": 126609.87999999999, "deser_ci_low_ns": 118252.17045454546, "deser_ci_high_ns": 119654.54220779221, "total_mean_ns": 186667.62337662338, "total_median_ns": 186598.0, "total_std_ns": 3904.509875700962, "total_mad_ns": 2868.0, "total_cv": 0.020916909987240606, "total_min_ns": 179842.0, "total_max_ns": 197218.0, "total_p5_ns": 181621.0, "total_p25_ns": 183268.0, "total_p50_ns": 186598.0, "total_p75_ns": 188947.0, "total_p95_ns": 194545.2, "total_p99_ns": 195678.24, "total_ci_low_ns": 185819.48051948054, "total_ci_high_ns": 187565.5951298701, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.925701003521036}, {"serializer": "speedy", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.8.7", "avg_time_ser_ns": 19084.76842105263, "avg_time_deser_ns": 111518.93684210526, "avg_time_total_ns": 130603.7052631579, "median_size_bytes": 44050.0, "avg_ops_per_sec": 7656.7506104445165, "min_ops_per_sec": 7047.812359043753, "max_ops_per_sec": 8623.66333218351, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 19084.76842105263, "ser_median_ns": 19067.0, "ser_std_ns": 342.3937155366169, "ser_mad_ns": 168.0, "ser_cv": 0.017940679602845924, "ser_min_ns": 18306.0, "ser_max_ns": 19889.0, "ser_p5_ns": 18495.7, "ser_p25_ns": 18905.0, "ser_p50_ns": 19067.0, "ser_p75_ns": 19245.5, "ser_p95_ns": 19683.8, "ser_p99_ns": 19884.3, "ser_ci_low_ns": 19017.908684210528, "ser_ci_high_ns": 19151.40447368421, "deser_mean_ns": 111518.93684210526, "deser_median_ns": 114480.0, "deser_std_ns": 7586.368133965932, "deser_mad_ns": 3577.0, "deser_cv": 0.0680276224719317, "deser_min_ns": 97636.0, "deser_max_ns": 121999.0, "deser_p5_ns": 99580.5, "deser_p25_ns": 102562.0, "deser_p50_ns": 114480.0, "deser_p75_ns": 117584.5, "deser_p95_ns": 119720.7, "deser_p99_ns": 121651.2, "deser_ci_low_ns": 110034.10921052631, "deser_ci_high_ns": 112965.30368421052, "total_mean_ns": 130603.7052631579, "total_median_ns": 133500.0, "total_std_ns": 7641.761516981461, "total_mad_ns": 3682.0, "total_cv": 0.058511062160019216, "total_min_ns": 115960.0, "total_max_ns": 141888.0, "total_p5_ns": 118622.2, "total_p25_ns": 121577.0, "total_p50_ns": 133500.0, "total_p75_ns": 136556.0, "total_p95_ns": 139029.8, "total_p99_ns": 140646.26, "total_ci_low_ns": 129109.72736842105, "total_ci_high_ns": 132103.5152631579, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "sonic-rs", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.3.17", "avg_time_ser_ns": 16161.888888888889, "avg_time_deser_ns": 144716.02222222224, "avg_time_total_ns": 160877.9111111111, "median_size_bytes": 42750.0, "avg_ops_per_sec": 6215.893736395826, "min_ops_per_sec": 5718.010589755612, "max_ops_per_sec": 6950.429536545358, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 16161.888888888889, "ser_median_ns": 16112.5, "ser_std_ns": 272.34361328178926, "ser_mad_ns": 78.0, "ser_cv": 0.016850976711578702, "ser_min_ns": 15607.0, "ser_max_ns": 16874.0, "ser_p5_ns": 15691.4, "ser_p25_ns": 16045.5, "ser_p50_ns": 16112.5, "ser_p75_ns": 16329.75, "ser_p95_ns": 16755.15, "ser_p99_ns": 16841.96, "ser_ci_low_ns": 16105.026388888888, "ser_ci_high_ns": 16221.279166666667, "deser_mean_ns": 144716.02222222224, "deser_median_ns": 146486.5, "deser_std_ns": 7360.464486713782, "deser_mad_ns": 4719.5, "deser_cv": 0.050861434509381694, "deser_min_ns": 128269.0, "deser_max_ns": 158012.0, "deser_p5_ns": 132563.05, "deser_p25_ns": 138553.0, "deser_p50_ns": 146486.5, "deser_p75_ns": 150001.5, "deser_p95_ns": 155136.1, "deser_p99_ns": 156659.2, "deser_ci_low_ns": 143284.3213888889, "deser_ci_high_ns": 146138.7683333333, "total_mean_ns": 160877.9111111111, "total_median_ns": 162503.0, "total_std_ns": 7396.283428439431, "total_mad_ns": 4630.5, "total_cv": 0.0459745118354449, "total_min_ns": 143876.0, "total_max_ns": 174886.0, "total_p5_ns": 148675.2, "total_p25_ns": 154751.75, "total_p50_ns": 162503.0, "total_p75_ns": 166159.25, "total_p95_ns": 171361.3, "total_p99_ns": 173093.54, "total_ci_low_ns": 159359.88194444447, "total_ci_high_ns": 162416.37055555556, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.0075039994962784}, {"serializer": "rkyv", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.8.17", "avg_time_ser_ns": 78725.74683544303, "avg_time_deser_ns": 125578.92405063291, "avg_time_total_ns": 204304.67088607594, "median_size_bytes": 49952.0, "avg_ops_per_sec": 4894.650698209531, "min_ops_per_sec": 4675.016245681454, "max_ops_per_sec": 5119.567498937689, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 78725.74683544303, "ser_median_ns": 78680.0, "ser_std_ns": 2666.787760720196, "ser_mad_ns": 1602.0, "ser_cv": 0.03387440409164317, "ser_min_ns": 73198.0, "ser_max_ns": 85478.0, "ser_p5_ns": 74570.4, "ser_p25_ns": 77075.0, "ser_p50_ns": 78680.0, "ser_p75_ns": 80269.5, "ser_p95_ns": 83470.0, "ser_p99_ns": 85185.5, "ser_ci_low_ns": 78141.68955696202, "ser_ci_high_ns": 79316.63164556962, "deser_mean_ns": 125578.92405063291, "deser_median_ns": 125409.0, "deser_std_ns": 2172.3573676122624, "deser_mad_ns": 1483.0, "deser_cv": 0.0172987416800639, "deser_min_ns": 121130.0, "deser_max_ns": 129916.0, "deser_p5_ns": 122422.8, "deser_p25_ns": 124410.5, "deser_p50_ns": 125409.0, "deser_p75_ns": 127008.5, "deser_p95_ns": 129565.0, "deser_p99_ns": 129887.14, "deser_ci_low_ns": 125089.77848101265, "deser_ci_high_ns": 126062.12658227848, "total_mean_ns": 204304.67088607594, "total_median_ns": 203937.0, "total_std_ns": 3761.044459821885, "total_mad_ns": 2843.0, "total_cv": 0.018408998891264277, "total_min_ns": 195329.0, "total_max_ns": 213903.0, "total_p5_ns": 199201.2, "total_p25_ns": 201549.0, "total_p50_ns": 203937.0, "total_p75_ns": 206973.5, "total_p95_ns": 210750.5, "total_p99_ns": 212814.9, "total_ci_low_ns": 203443.407278481, "total_ci_high_ns": 205081.2174050633, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.852440933724441}, {"serializer": "simd-json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.14.3", "avg_time_ser_ns": 50974.11224489796, "avg_time_deser_ns": 177030.54081632654, "avg_time_total_ns": 228004.6530612245, "median_size_bytes": 42750.0, "avg_ops_per_sec": 4385.875404619383, "min_ops_per_sec": 4099.839286299977, "max_ops_per_sec": 4809.357085144858, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 50974.11224489796, "ser_median_ns": 50032.0, "ser_std_ns": 2779.8592743535314, "ser_mad_ns": 1830.0, "ser_cv": 0.05453472658823538, "ser_min_ns": 46787.0, "ser_max_ns": 57795.0, "ser_p5_ns": 47742.0, "ser_p25_ns": 48551.0, "ser_p50_ns": 50032.0, "ser_p75_ns": 53311.75, "ser_p95_ns": 55560.94999999999, "ser_p99_ns": 57336.19, "ser_ci_low_ns": 50450.231632653056, "ser_ci_high_ns": 51538.635204081635, "deser_mean_ns": 177030.54081632654, "deser_median_ns": 178708.5, "deser_std_ns": 7281.258773251993, "deser_mad_ns": 4453.0, "deser_cv": 0.04112995836580805, "deser_min_ns": 160759.0, "deser_max_ns": 195595.0, "deser_p5_ns": 165399.5, "deser_p25_ns": 169746.5, "deser_p50_ns": 178708.5, "deser_p75_ns": 182117.75, "deser_p95_ns": 186371.69999999998, "deser_p99_ns": 190184.34, "deser_ci_low_ns": 175669.1219387755, "deser_ci_high_ns": 178365.61607142858, "total_mean_ns": 228004.6530612245, "total_median_ns": 229770.0, "total_std_ns": 8043.169493878553, "total_mad_ns": 5497.5, "total_cv": 0.03527633925838688, "total_min_ns": 207928.0, "total_max_ns": 243912.0, "total_p5_ns": 214322.7, "total_p25_ns": 222003.75, "total_p50_ns": 229770.0, "total_p75_ns": 234102.5, "total_p95_ns": 240153.05, "total_p99_ns": 243388.2, "total_ci_low_ns": 226412.68520408164, "total_ci_high_ns": 229505.01607142857, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.361838299737947}, {"serializer": "minicbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.25.1", "avg_time_ser_ns": 37276.29213483146, "avg_time_deser_ns": 179135.8202247191, "avg_time_total_ns": 216412.11235955055, "median_size_bytes": 34350.0, "avg_ops_per_sec": 4620.813452153658, "min_ops_per_sec": 4342.143542581231, "max_ops_per_sec": 4970.969537898672, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 37276.29213483146, "ser_median_ns": 37191.0, "ser_std_ns": 614.1097622176939, "ser_mad_ns": 465.0, "ser_cv": 0.01647453990317512, "ser_min_ns": 35734.0, "ser_max_ns": 38872.0, "ser_p5_ns": 36395.2, "ser_p25_ns": 36890.0, "ser_p50_ns": 37191.0, "ser_p75_ns": 37724.0, "ser_p95_ns": 38234.0, "ser_p99_ns": 38736.48, "ser_ci_low_ns": 37152.35646067416, "ser_ci_high_ns": 37404.395786516856, "deser_mean_ns": 179135.8202247191, "deser_median_ns": 181128.0, "deser_std_ns": 7138.018802290943, "deser_mad_ns": 3661.0, "deser_cv": 0.039846965243113125, "deser_min_ns": 164051.0, "deser_max_ns": 192878.0, "deser_p5_ns": 165948.6, "deser_p25_ns": 175283.0, "deser_p50_ns": 181128.0, "deser_p75_ns": 183749.0, "deser_p95_ns": 188491.8, "deser_p99_ns": 192621.04, "deser_ci_low_ns": 177626.75926966293, "deser_ci_high_ns": 180513.4643258427, "total_mean_ns": 216412.11235955055, "total_median_ns": 218347.0, "total_std_ns": 7210.436278627039, "total_mad_ns": 3656.0, "total_cv": 0.03331808095217658, "total_min_ns": 201168.0, "total_max_ns": 230301.0, "total_p5_ns": 202817.2, "total_p25_ns": 212745.0, "total_p50_ns": 218347.0, "total_p75_ns": 221134.0, "total_p95_ns": 226155.6, "total_p99_ns": 230275.48, "total_ci_low_ns": 214949.98230337078, "total_ci_high_ns": 217874.1061797753, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.491458613914398}, {"serializer": "serde_json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "1.0.150", "avg_time_ser_ns": 50615.12631578947, "avg_time_deser_ns": 209623.8, "avg_time_total_ns": 260238.92631578946, "median_size_bytes": 42750.0, "avg_ops_per_sec": 3842.62267815592, "min_ops_per_sec": 3642.5493474372843, "max_ops_per_sec": 4170.576582212491, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 50615.12631578947, "ser_median_ns": 49621.0, "ser_std_ns": 2571.8278467339687, "ser_mad_ns": 1704.0, "ser_cv": 0.050811447761450766, "ser_min_ns": 46575.0, "ser_max_ns": 55252.0, "ser_p5_ns": 47524.3, "ser_p25_ns": 48377.0, "ser_p50_ns": 49621.0, "ser_p75_ns": 53337.5, "ser_p95_ns": 54727.9, "ser_p99_ns": 55155.18, "ser_ci_low_ns": 50092.89578947369, "ser_ci_high_ns": 51094.573684210525, "deser_mean_ns": 209623.8, "deser_median_ns": 211614.0, "deser_std_ns": 7675.028953580427, "deser_mad_ns": 5391.0, "deser_cv": 0.03661334711793426, "deser_min_ns": 191558.0, "deser_max_ns": 222654.0, "deser_p5_ns": 196427.3, "deser_p25_ns": 203458.0, "deser_p50_ns": 211614.0, "deser_p75_ns": 215307.5, "deser_p95_ns": 219439.5, "deser_p99_ns": 222229.12, "deser_ci_low_ns": 208031.58842105264, "deser_ci_high_ns": 211120.0955263158, "total_mean_ns": 260238.92631578946, "total_median_ns": 260814.0, "total_std_ns": 7910.283481003195, "total_mad_ns": 6047.0, "total_cv": 0.03039623469474503, "total_min_ns": 239775.0, "total_max_ns": 274533.0, "total_p5_ns": 245599.8, "total_p25_ns": 254760.0, "total_p50_ns": 260814.0, "total_p75_ns": 266617.0, "total_p95_ns": 271180.1, "total_p99_ns": 274316.8, "total_ci_low_ns": 258669.5944736842, "total_ci_high_ns": 261745.5489473684, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.602077605462128}, {"serializer": "ciborium", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.2.2", "avg_time_ser_ns": 33076.03296703297, "avg_time_deser_ns": 271072.95604395604, "avg_time_total_ns": 304148.989010989, "median_size_bytes": 35850.0, "avg_ops_per_sec": 3287.862317911139, "min_ops_per_sec": 3119.32672451978, "max_ops_per_sec": 3491.2909746637015, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 33076.03296703297, "ser_median_ns": 33159.0, "ser_std_ns": 877.4138064733127, "ser_mad_ns": 701.0, "ser_cv": 0.026527177770920563, "ser_min_ns": 30851.0, "ser_max_ns": 35229.0, "ser_p5_ns": 31774.5, "ser_p25_ns": 32343.5, "ser_p50_ns": 33159.0, "ser_p75_ns": 33700.0, "ser_p95_ns": 34406.5, "ser_p99_ns": 35201.1, "ser_ci_low_ns": 32902.16208791208, "ser_ci_high_ns": 33247.38763736264, "deser_mean_ns": 271072.95604395604, "deser_median_ns": 273018.0, "deser_std_ns": 7628.128373784443, "deser_mad_ns": 3263.0, "deser_cv": 0.028140499462246237, "deser_min_ns": 255070.0, "deser_max_ns": 286581.0, "deser_p5_ns": 256711.5, "deser_p25_ns": 268905.0, "deser_p50_ns": 273018.0, "deser_p75_ns": 276048.0, "deser_p95_ns": 280605.5, "deser_p99_ns": 284717.1, "deser_ci_low_ns": 269553.44945054944, "deser_ci_high_ns": 272591.2675824176, "total_mean_ns": 304148.989010989, "total_median_ns": 306343.0, "total_std_ns": 7793.820785289538, "total_mad_ns": 3705.0, "total_cv": 0.025625009672506076, "total_min_ns": 286427.0, "total_max_ns": 320582.0, "total_p5_ns": 290183.5, "total_p25_ns": 301561.5, "total_p50_ns": 306343.0, "total_p75_ns": 309279.0, "total_p95_ns": 313612.5, "total_p99_ns": 318809.0, "total_ci_low_ns": 302564.4703296703, "total_ci_high_ns": 305750.0956043956, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.398321876420773}, {"serializer": "serde_avro_fast", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "2.1.0", "avg_time_ser_ns": 43167.3870967742, "avg_time_deser_ns": 191775.62365591398, "avg_time_total_ns": 234943.01075268816, "median_size_bytes": 34250.0, "avg_ops_per_sec": 4256.351345785069, "min_ops_per_sec": 4013.9363871361365, "max_ops_per_sec": 4549.1145148596825, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 43167.3870967742, "ser_median_ns": 43110.0, "ser_std_ns": 615.8892657432698, "ser_mad_ns": 360.0, "ser_cv": 0.014267466881017078, "ser_min_ns": 41626.0, "ser_max_ns": 44825.0, "ser_p5_ns": 42289.0, "ser_p25_ns": 42790.0, "ser_p50_ns": 43110.0, "ser_p75_ns": 43576.0, "ser_p95_ns": 44008.6, "ser_p99_ns": 44819.48, "ser_ci_low_ns": 43048.801612903226, "ser_ci_high_ns": 43292.32177419355, "deser_mean_ns": 191775.62365591398, "deser_median_ns": 193814.0, "deser_std_ns": 6968.815545472962, "deser_mad_ns": 4172.0, "deser_cv": 0.03633838030414382, "deser_min_ns": 176443.0, "deser_max_ns": 204794.0, "deser_p5_ns": 179507.6, "deser_p25_ns": 187553.0, "deser_p50_ns": 193814.0, "deser_p75_ns": 196604.0, "deser_p95_ns": 201352.4, "deser_p99_ns": 204351.48, "deser_ci_low_ns": 190398.31021505376, "deser_ci_high_ns": 193145.29677419356, "total_mean_ns": 234943.01075268816, "total_median_ns": 236551.0, "total_std_ns": 7013.979399082427, "total_mad_ns": 4354.0, "total_cv": 0.029853960654593233, "total_min_ns": 219823.0, "total_max_ns": 249132.0, "total_p5_ns": 222484.4, "total_p25_ns": 230029.0, "total_p50_ns": 236551.0, "total_p75_ns": 240270.0, "total_p95_ns": 244391.2, "total_p99_ns": 248750.2, "total_ci_low_ns": 233484.11021505375, "total_ci_high_ns": 236336.6685483871, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.161700970708454}, {"serializer": "postcard", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "1.1.3", "avg_time_ser_ns": 40166.33707865168, "avg_time_deser_ns": 134295.61797752808, "avg_time_total_ns": 174461.95505617978, "median_size_bytes": 34250.0, "avg_ops_per_sec": 5731.908711432144, "min_ops_per_sec": 5323.679727427598, "max_ops_per_sec": 6298.53810930483, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 40166.33707865168, "ser_median_ns": 40180.0, "ser_std_ns": 637.1308725239948, "ser_mad_ns": 354.0, "ser_cv": 0.015862309557289164, "ser_min_ns": 38613.0, "ser_max_ns": 41563.0, "ser_p5_ns": 39052.0, "ser_p25_ns": 39834.0, "ser_p50_ns": 40180.0, "ser_p75_ns": 40534.0, "ser_p95_ns": 41240.8, "ser_p99_ns": 41556.84, "ser_ci_low_ns": 40033.83764044944, "ser_ci_high_ns": 40295.049438202244, "deser_mean_ns": 134295.61797752808, "deser_median_ns": 135180.0, "deser_std_ns": 7126.299400660553, "deser_mad_ns": 3160.0, "deser_cv": 0.05306427348845447, "deser_min_ns": 118181.0, "deser_max_ns": 147659.0, "deser_p5_ns": 120128.2, "deser_p25_ns": 132006.0, "deser_p50_ns": 135180.0, "deser_p75_ns": 138120.0, "deser_p95_ns": 145453.6, "deser_p99_ns": 147651.96, "deser_ci_low_ns": 132854.21011235955, "deser_ci_high_ns": 135745.779494382, "total_mean_ns": 174461.95505617978, "total_median_ns": 175386.0, "total_std_ns": 7161.354058591333, "total_mad_ns": 3098.0, "total_cv": 0.0410482277140896, "total_min_ns": 158767.0, "total_max_ns": 187840.0, "total_p5_ns": 159840.0, "total_p25_ns": 172267.0, "total_p50_ns": 175386.0, "total_p75_ns": 178243.0, "total_p95_ns": 185686.6, "total_p99_ns": 187714.16, "total_ci_low_ns": 172980.15926966292, "total_ci_high_ns": 175949.84213483144, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.891692570213041}, {"serializer": "prost", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.13.5", "avg_time_ser_ns": 94759.1125, "avg_time_deser_ns": 178954.9875, "avg_time_total_ns": 273714.1, "median_size_bytes": 37250.0, "avg_ops_per_sec": 3653.44715526164, "min_ops_per_sec": 3480.8760668885143, "max_ops_per_sec": 3849.3814044083115, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 94759.1125, "ser_median_ns": 93933.5, "ser_std_ns": 2713.630428246926, "ser_mad_ns": 1064.0, "ser_cv": 0.028637144826012654, "ser_min_ns": 89629.0, "ser_max_ns": 104008.0, "ser_p5_ns": 91463.35, "ser_p25_ns": 93017.75, "ser_p50_ns": 93933.5, "ser_p75_ns": 96326.25, "ser_p95_ns": 100458.4, "ser_p99_ns": 102341.09999999999, "ser_ci_low_ns": 94186.8428125, "ser_ci_high_ns": 95368.70468750001, "deser_mean_ns": 178954.9875, "deser_median_ns": 179607.0, "deser_std_ns": 4713.52553557582, "deser_mad_ns": 2603.5, "deser_cv": 0.026339168309437704, "deser_min_ns": 167430.0, "deser_max_ns": 188496.0, "deser_p5_ns": 169182.55, "deser_p25_ns": 176793.5, "deser_p50_ns": 179607.0, "deser_p75_ns": 181689.0, "deser_p95_ns": 185716.65, "deser_p99_ns": 187866.37, "deser_ci_low_ns": 177904.0309375, "deser_ci_high_ns": 179945.698125, "total_mean_ns": 273714.1, "total_median_ns": 273629.5, "total_std_ns": 5174.147839334622, "total_mad_ns": 3073.5, "total_cv": 0.018903475704520237, "total_min_ns": 259782.0, "total_max_ns": 287284.0, "total_p5_ns": 265918.8, "total_p25_ns": 270729.75, "total_p50_ns": 273629.5, "total_p75_ns": 276590.25, "total_p95_ns": 283576.35, "total_p99_ns": 286601.44, "total_ci_low_ns": 272611.634375, "total_ci_high_ns": 274839.683125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.49198647316298}, {"serializer": "bincode", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "2.0.1", "avg_time_ser_ns": 24179.61176470588, "avg_time_deser_ns": 124894.83529411764, "avg_time_total_ns": 149074.44705882354, "median_size_bytes": 34250.0, "avg_ops_per_sec": 6708.057750537276, "min_ops_per_sec": 6376.168432865323, "max_ops_per_sec": 7344.4087016554295, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 24179.61176470588, "ser_median_ns": 23767.0, "ser_std_ns": 1044.0154178541077, "ser_mad_ns": 418.0, "ser_cv": 0.04317750954868596, "ser_min_ns": 22645.0, "ser_max_ns": 26862.0, "ser_p5_ns": 22999.4, "ser_p25_ns": 23478.0, "ser_p50_ns": 23767.0, "ser_p75_ns": 25076.0, "ser_p95_ns": 26270.0, "ser_p99_ns": 26719.2, "ser_ci_low_ns": 23973.317941176472, "ser_ci_high_ns": 24399.34176470588, "deser_mean_ns": 124894.83529411764, "deser_median_ns": 125500.0, "deser_std_ns": 4393.940239658691, "deser_mad_ns": 2665.0, "deser_cv": 0.035181120414717736, "deser_min_ns": 111771.0, "deser_max_ns": 134189.0, "deser_p5_ns": 114746.4, "deser_p25_ns": 122523.0, "deser_p50_ns": 125500.0, "deser_p75_ns": 127877.0, "deser_p95_ns": 130798.4, "deser_p99_ns": 133428.8, "deser_ci_low_ns": 123925.46911764707, "deser_ci_high_ns": 125780.99205882353, "total_mean_ns": 149074.44705882354, "total_median_ns": 149421.0, "total_std_ns": 4213.718636802896, "total_mad_ns": 2468.0, "total_cv": 0.02826586796018903, "total_min_ns": 136158.0, "total_max_ns": 156834.0, "total_p5_ns": 140206.6, "total_p25_ns": 146831.0, "total_p50_ns": 149421.0, "total_p75_ns": 151814.0, "total_p95_ns": 155572.8, "total_p99_ns": 156671.88, "total_ci_low_ns": 148179.6455882353, "total_ci_high_ns": 149957.5382352941, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.9658039215686275, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.44482490714733}, {"serializer": "flexbuffers", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "2.0.0", "avg_time_ser_ns": 146951.43373493975, "avg_time_deser_ns": 187500.65060240965, "avg_time_total_ns": 334452.0843373494, "median_size_bytes": 50704.0, "avg_ops_per_sec": 2989.964921227213, "min_ops_per_sec": 2913.4812604885324, "max_ops_per_sec": 3089.2992851361455, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 146951.43373493975, "ser_median_ns": 146912.0, "ser_std_ns": 2817.5193474037437, "ser_mad_ns": 2042.0, "ser_cv": 0.01917313275408921, "ser_min_ns": 140150.0, "ser_max_ns": 153557.0, "ser_p5_ns": 142385.0, "ser_p25_ns": 144814.0, "ser_p50_ns": 146912.0, "ser_p75_ns": 148775.0, "ser_p95_ns": 151299.5, "ser_p99_ns": 153370.04, "ser_ci_low_ns": 146320.1792168675, "ser_ci_high_ns": 147588.81506024094, "deser_mean_ns": 187500.65060240965, "deser_median_ns": 187435.0, "deser_std_ns": 2401.9969204186864, "deser_mad_ns": 1388.0, "deser_cv": 0.012810605790974346, "deser_min_ns": 181754.0, "deser_max_ns": 193114.0, "deser_p5_ns": 183365.7, "deser_p25_ns": 186117.0, "deser_p50_ns": 187435.0, "deser_p75_ns": 188828.5, "deser_p95_ns": 192002.9, "deser_p99_ns": 192493.25999999998, "deser_ci_low_ns": 186980.46957831326, "deser_ci_high_ns": 188022.59096385544, "total_mean_ns": 334452.0843373494, "total_median_ns": 334504.0, "total_std_ns": 3706.3452651510743, "total_mad_ns": 2044.0, "total_cv": 0.011081842328758284, "total_min_ns": 323698.0, "total_max_ns": 343232.0, "total_p5_ns": 328437.1, "total_p25_ns": 332271.5, "total_p50_ns": 334504.0, "total_p75_ns": 336417.5, "total_p95_ns": 340019.9, "total_p99_ns": 342629.3, "total_ci_low_ns": 333644.0509036145, "total_ci_high_ns": 335261.6641566265, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 57.68948732650765}, {"serializer": "nanoserde", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.1.37", "avg_time_ser_ns": 67110.925, "avg_time_deser_ns": 120860.775, "avg_time_total_ns": 187971.7, "median_size_bytes": 57250.0, "avg_ops_per_sec": 5319.949758394481, "min_ops_per_sec": 5105.557399229061, "max_ops_per_sec": 5683.788131113624, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 67110.925, "ser_median_ns": 67641.0, "ser_std_ns": 2962.6940903145583, "ser_mad_ns": 2198.0, "ser_cv": 0.04414622642013291, "ser_min_ns": 56250.0, "ser_max_ns": 72091.0, "ser_p5_ns": 62693.8, "ser_p25_ns": 64818.25, "ser_p50_ns": 67641.0, "ser_p75_ns": 69526.0, "ser_p95_ns": 70990.05, "ser_p99_ns": 71539.58, "ser_ci_low_ns": 66439.09625, "ser_ci_high_ns": 67764.93718749999, "deser_mean_ns": 120860.775, "deser_median_ns": 120568.0, "deser_std_ns": 2596.859529718273, "deser_mad_ns": 1997.0, "deser_cv": 0.021486371651334133, "deser_min_ns": 115247.0, "deser_max_ns": 126384.0, "deser_p5_ns": 116833.6, "deser_p25_ns": 119100.25, "deser_p50_ns": 120568.0, "deser_p75_ns": 122997.25, "deser_p95_ns": 124967.8, "deser_p99_ns": 125945.55, "deser_ci_low_ns": 120312.3328125, "deser_ci_high_ns": 121446.27, "total_mean_ns": 187971.7, "total_median_ns": 187923.5, "total_std_ns": 4278.633661594153, "total_mad_ns": 3273.0, "total_cv": 0.022762116114256308, "total_min_ns": 175939.0, "total_max_ns": 195865.0, "total_p5_ns": 182023.1, "total_p25_ns": 184716.25, "total_p50_ns": 187923.5, "total_p75_ns": 191065.5, "total_p95_ns": 195316.6, "total_p99_ns": 195491.33, "total_ci_low_ns": 187037.095625, "total_ci_high_ns": 188897.15375, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.763229541842328}, {"serializer": "speedy", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.8.7", "avg_time_ser_ns": 19161.746666666666, "avg_time_deser_ns": 117026.74666666667, "avg_time_total_ns": 136188.49333333335, "median_size_bytes": 44050.0, "avg_ops_per_sec": 7342.76424919697, "min_ops_per_sec": 6925.975177304965, "max_ops_per_sec": 7690.059828665467, "runs": 75, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 24, "ser_mean_ns": 19161.746666666666, "ser_median_ns": 19162.0, "ser_std_ns": 297.2309182079461, "ser_mad_ns": 183.0, "ser_cv": 0.015511681861706384, "ser_min_ns": 18564.0, "ser_max_ns": 20045.0, "ser_p5_ns": 18628.9, "ser_p25_ns": 18949.0, "ser_p50_ns": 19162.0, "ser_p75_ns": 19312.0, "ser_p95_ns": 19642.7, "ser_p99_ns": 19978.4, "ser_ci_low_ns": 19101.943666666666, "ser_ci_high_ns": 19225.322, "deser_mean_ns": 117026.74666666667, "deser_median_ns": 117214.0, "deser_std_ns": 2927.134444568028, "deser_mad_ns": 2106.0, "deser_cv": 0.025012525152951028, "deser_min_ns": 111227.0, "deser_max_ns": 124599.0, "deser_p5_ns": 112514.4, "deser_p25_ns": 114728.0, "deser_p50_ns": 117214.0, "deser_p75_ns": 119273.5, "deser_p95_ns": 121863.5, "deser_p99_ns": 124406.6, "deser_ci_low_ns": 116371.94366666666, "deser_ci_high_ns": 117673.976, "total_mean_ns": 136188.49333333335, "total_median_ns": 136279.0, "total_std_ns": 3072.117415642751, "total_mad_ns": 2263.0, "total_cv": 0.02255783392891698, "total_min_ns": 130038.0, "total_max_ns": 144384.0, "total_p5_ns": 131351.0, "total_p25_ns": 133986.5, "total_p50_ns": 136279.0, "total_p75_ns": 138340.5, "total_p95_ns": 141436.9, "total_p99_ns": 143880.06, "total_ci_low_ns": 135513.66333333333, "total_ci_high_ns": 136893.959, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "ciborium", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.2.2", "avg_time_ser_ns": 33324.67816091954, "avg_time_deser_ns": 274070.4482758621, "avg_time_total_ns": 307395.1264367816, "median_size_bytes": 35850.0, "avg_ops_per_sec": 3253.142011689175, "min_ops_per_sec": 3121.5273008777735, "max_ops_per_sec": 3417.097790504569, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 33324.67816091954, "ser_median_ns": 33338.0, "ser_std_ns": 1128.4217574369272, "ser_mad_ns": 806.0, "ser_cv": 0.03386144502245331, "ser_min_ns": 30798.0, "ser_max_ns": 35830.0, "ser_p5_ns": 31746.8, "ser_p25_ns": 32355.0, "ser_p50_ns": 33338.0, "ser_p75_ns": 34058.5, "ser_p95_ns": 35168.0, "ser_p99_ns": 35700.14, "ser_ci_low_ns": 33083.6091954023, "ser_ci_high_ns": 33556.481321839085, "deser_mean_ns": 274070.4482758621, "deser_median_ns": 274372.0, "deser_std_ns": 5779.92475761483, "deser_mad_ns": 3633.0, "deser_cv": 0.02108919365066722, "deser_min_ns": 259988.0, "deser_max_ns": 286218.0, "deser_p5_ns": 261570.1, "deser_p25_ns": 270637.0, "deser_p50_ns": 274372.0, "deser_p75_ns": 277759.5, "deser_p95_ns": 284104.7, "deser_p99_ns": 286128.56, "deser_ci_low_ns": 272880.358908046, "deser_ci_high_ns": 275256.34137931035, "total_mean_ns": 307395.1264367816, "total_median_ns": 307384.0, "total_std_ns": 6129.189133753031, "total_mad_ns": 3919.0, "total_cv": 0.019939122668600765, "total_min_ns": 292646.0, "total_max_ns": 320356.0, "total_p5_ns": 294168.3, "total_p25_ns": 303631.5, "total_p50_ns": 307384.0, "total_p75_ns": 311238.5, "total_p95_ns": 317824.5, "total_p99_ns": 319036.76, "total_ci_low_ns": 306128.14741379314, "total_ci_high_ns": 308699.42040229886, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 34.38640581779454}, {"serializer": "simd-json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.14.3", "avg_time_ser_ns": 50453.77380952381, "avg_time_deser_ns": 180746.2380952381, "avg_time_total_ns": 231200.0119047619, "median_size_bytes": 42750.0, "avg_ops_per_sec": 4325.259292858209, "min_ops_per_sec": 4096.933445316181, "max_ops_per_sec": 4608.146280995544, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 50453.77380952381, "ser_median_ns": 49726.5, "ser_std_ns": 2355.92651997013, "ser_mad_ns": 1427.5, "ser_cv": 0.04669475327780968, "ser_min_ns": 46579.0, "ser_max_ns": 56879.0, "ser_p5_ns": 47866.75, "ser_p25_ns": 48707.25, "ser_p50_ns": 49726.5, "ser_p75_ns": 52536.0, "ser_p95_ns": 55159.64999999999, "ser_p99_ns": 56444.91, "ser_ci_low_ns": 49955.95952380952, "ser_ci_high_ns": 50966.85119047618, "deser_mean_ns": 180746.2380952381, "deser_median_ns": 181083.0, "deser_std_ns": 4815.140958336708, "deser_mad_ns": 3547.0, "deser_cv": 0.02664033846059652, "deser_min_ns": 167870.0, "deser_max_ns": 190967.0, "deser_p5_ns": 173377.5, "deser_p25_ns": 177522.75, "deser_p50_ns": 181083.0, "deser_p75_ns": 184044.0, "deser_p95_ns": 188616.5, "deser_p99_ns": 190661.56, "deser_ci_low_ns": 179717.51666666666, "deser_ci_high_ns": 181775.19642857142, "total_mean_ns": 231200.0119047619, "total_median_ns": 231861.0, "total_std_ns": 5322.114670515999, "total_mad_ns": 2821.0, "total_cv": 0.02301952593630633, "total_min_ns": 217007.0, "total_max_ns": 244085.0, "total_p5_ns": 223418.75, "total_p25_ns": 227646.0, "total_p50_ns": 231861.0, "total_p75_ns": 233777.0, "total_p95_ns": 240693.7, "total_p99_ns": 244077.53, "total_ci_low_ns": 230096.70803571428, "total_ci_high_ns": 232338.97023809524, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.455464674919423}, {"serializer": "serde_avro_fast", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "2.1.0", "avg_time_ser_ns": 43071.333333333336, "avg_time_deser_ns": 191414.26666666666, "avg_time_total_ns": 234485.6, "median_size_bytes": 34250.0, "avg_ops_per_sec": 4264.65420477846, "min_ops_per_sec": 4074.481522226297, "max_ops_per_sec": 4497.6769498553995, "runs": 75, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 24, "ser_mean_ns": 43071.333333333336, "ser_median_ns": 43078.0, "ser_std_ns": 511.84674472940634, "ser_mad_ns": 305.0, "ser_cv": 0.011883698625444758, "ser_min_ns": 41822.0, "ser_max_ns": 44408.0, "ser_p5_ns": 42369.8, "ser_p25_ns": 42782.0, "ser_p50_ns": 43078.0, "ser_p75_ns": 43387.0, "ser_p95_ns": 43972.6, "ser_p99_ns": 44345.840000000004, "ser_ci_low_ns": 42960.46466666667, "ser_ci_high_ns": 43181.40666666666, "deser_mean_ns": 191414.26666666666, "deser_median_ns": 192083.0, "deser_std_ns": 4920.8011222446985, "deser_mad_ns": 3042.0, "deser_cv": 0.02570759853973632, "deser_min_ns": 179636.0, "deser_max_ns": 202657.0, "deser_p5_ns": 182545.6, "deser_p25_ns": 188957.0, "deser_p50_ns": 192083.0, "deser_p75_ns": 194523.5, "deser_p95_ns": 198623.8, "deser_p99_ns": 200717.46000000002, "deser_ci_low_ns": 190278.184, "deser_ci_high_ns": 192471.00366666666, "total_mean_ns": 234485.6, "total_median_ns": 235097.0, "total_std_ns": 5055.180537851272, "total_mad_ns": 3062.0, "total_cv": 0.02155859693666166, "total_min_ns": 222337.0, "total_max_ns": 245430.0, "total_p5_ns": 225097.8, "total_p25_ns": 231974.0, "total_p50_ns": 235097.0, "total_p75_ns": 237668.5, "total_p95_ns": 242035.3, "total_p99_ns": 244018.08000000002, "total_ci_low_ns": 233366.8726666667, "total_ci_high_ns": 235589.103, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.380645949517753}, {"serializer": "bson", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "2.15.0", "avg_time_ser_ns": 117377.92592592593, "avg_time_deser_ns": 264079.2962962963, "avg_time_total_ns": 381457.22222222225, "median_size_bytes": 61750.0, "avg_ops_per_sec": 2621.5259319888787, "min_ops_per_sec": 2528.886202649767, "max_ops_per_sec": 2731.9120105779634, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 117377.92592592593, "ser_median_ns": 117759.0, "ser_std_ns": 3556.4988463999875, "ser_mad_ns": 2162.0, "ser_cv": 0.030299554352701707, "ser_min_ns": 106032.0, "ser_max_ns": 126517.0, "ser_p5_ns": 111645.0, "ser_p25_ns": 115298.0, "ser_p50_ns": 117759.0, "ser_p75_ns": 119469.0, "ser_p95_ns": 122367.0, "ser_p99_ns": 125415.40000000001, "ser_ci_low_ns": 116562.79969135803, "ser_ci_high_ns": 118163.8864197531, "deser_mean_ns": 264079.2962962963, "deser_median_ns": 263892.0, "deser_std_ns": 3871.6946626911467, "deser_mad_ns": 2207.0, "deser_cv": 0.01466110640626335, "deser_min_ns": 255437.0, "deser_max_ns": 272729.0, "deser_p5_ns": 257832.0, "deser_p25_ns": 261834.0, "deser_p50_ns": 263892.0, "deser_p75_ns": 266400.0, "deser_p95_ns": 270715.0, "deser_p99_ns": 272545.0, "deser_ci_low_ns": 263226.06111111114, "deser_ci_high_ns": 264865.79814814817, "total_mean_ns": 381457.22222222225, "total_median_ns": 381628.0, "total_std_ns": 6028.634300154555, "total_mad_ns": 3679.0, "total_cv": 0.01580422115233279, "total_min_ns": 366044.0, "total_max_ns": 395431.0, "total_p5_ns": 371293.0, "total_p25_ns": 377949.0, "total_p50_ns": 381628.0, "total_p75_ns": 384810.0, "total_p95_ns": 391793.0, "total_p99_ns": 393762.2, "total_ci_low_ns": 380163.250308642, "total_ci_high_ns": 382801.69166666665, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 50.439227139096374}, {"serializer": "serde_json", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "1.0.150", "avg_time_ser_ns": 50762.71276595745, "avg_time_deser_ns": 212148.1595744681, "avg_time_total_ns": 262910.87234042556, "median_size_bytes": 42750.0, "avg_ops_per_sec": 3803.5703548431707, "min_ops_per_sec": 3588.860178007465, "max_ops_per_sec": 4093.461922617196, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 50762.71276595745, "ser_median_ns": 49544.5, "ser_std_ns": 2613.7919910588616, "ser_mad_ns": 1171.5, "ser_cv": 0.051490392231593386, "ser_min_ns": 46325.0, "ser_max_ns": 58436.0, "ser_p5_ns": 48173.9, "ser_p25_ns": 48696.75, "ser_p50_ns": 49544.5, "ser_p75_ns": 53238.0, "ser_p95_ns": 54884.9, "ser_p99_ns": 56978.68999999999, "ser_ci_low_ns": 50263.72473404255, "ser_ci_high_ns": 51261.7164893617, "deser_mean_ns": 212148.1595744681, "deser_median_ns": 213212.0, "deser_std_ns": 6429.963436246468, "deser_mad_ns": 3476.5, "deser_cv": 0.03030883439735628, "deser_min_ns": 196431.0, "deser_max_ns": 225619.0, "deser_p5_ns": 198227.7, "deser_p25_ns": 209395.25, "deser_p50_ns": 213212.0, "deser_p75_ns": 216562.25, "deser_p95_ns": 220177.7, "deser_p99_ns": 224740.15, "deser_ci_low_ns": 210840.55984042556, "deser_ci_high_ns": 213361.05930851062, "total_mean_ns": 262910.87234042556, "total_median_ns": 263527.5, "total_std_ns": 7366.967607195193, "total_mad_ns": 4700.5, "total_cv": 0.028020779595817565, "total_min_ns": 244292.0, "total_max_ns": 278640.0, "total_p5_ns": 248432.3, "total_p25_ns": 258636.75, "total_p50_ns": 263527.5, "total_p75_ns": 267649.0, "total_p95_ns": 273828.65, "total_p99_ns": 275772.81, "total_ci_low_ns": 261478.87898936172, "total_ci_high_ns": 264262.0574468085, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.50708459364054}, {"serializer": "postcard", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "1.1.3", "avg_time_ser_ns": 40215.16049382716, "avg_time_deser_ns": 137677.28395061727, "avg_time_total_ns": 177892.44444444444, "median_size_bytes": 34250.0, "avg_ops_per_sec": 5621.374213632207, "min_ops_per_sec": 5339.170826770603, "max_ops_per_sec": 6036.897517627741, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 40215.16049382716, "ser_median_ns": 40088.0, "ser_std_ns": 800.5078615602429, "ser_mad_ns": 387.0, "ser_cv": 0.019905623942073215, "ser_min_ns": 38766.0, "ser_max_ns": 42199.0, "ser_p5_ns": 39013.0, "ser_p25_ns": 39751.0, "ser_p50_ns": 40088.0, "ser_p75_ns": 40582.0, "ser_p95_ns": 41948.0, "ser_p99_ns": 42147.0, "ser_ci_low_ns": 40041.44290123457, "ser_ci_high_ns": 40389.846296296295, "deser_mean_ns": 137677.28395061727, "deser_median_ns": 138003.0, "deser_std_ns": 3938.8673760186693, "deser_mad_ns": 2179.0, "deser_cv": 0.028609420980671586, "deser_min_ns": 126345.0, "deser_max_ns": 146555.0, "deser_p5_ns": 131602.0, "deser_p25_ns": 135095.0, "deser_p50_ns": 138003.0, "deser_p75_ns": 139710.0, "deser_p95_ns": 144179.0, "deser_p99_ns": 146258.2, "deser_ci_low_ns": 136839.57067901237, "deser_ci_high_ns": 138508.70061728393, "total_mean_ns": 177892.44444444444, "total_median_ns": 177968.0, "total_std_ns": 4232.215362549501, "total_mad_ns": 2567.0, "total_cv": 0.02379086630557385, "total_min_ns": 165648.0, "total_max_ns": 187295.0, "total_p5_ns": 171049.0, "total_p25_ns": 175424.0, "total_p50_ns": 177968.0, "total_p75_ns": 180697.0, "total_p95_ns": 184569.0, "total_p99_ns": 186859.8, "total_ci_low_ns": 176946.62037037036, "total_ci_high_ns": 178820.85185185185, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.155468977516822}, {"serializer": "rmp-serde", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "1.3.1", "avg_time_ser_ns": 22798.03947368421, "avg_time_deser_ns": 142433.6052631579, "avg_time_total_ns": 165231.6447368421, "median_size_bytes": 35950.0, "avg_ops_per_sec": 6052.109458770204, "min_ops_per_sec": 5694.047442803293, "max_ops_per_sec": 6518.7773381224615, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 22798.03947368421, "ser_median_ns": 22724.0, "ser_std_ns": 446.54216496062196, "ser_mad_ns": 192.0, "ser_cv": 0.01958686690915093, "ser_min_ns": 21989.0, "ser_max_ns": 24040.0, "ser_p5_ns": 22196.0, "ser_p25_ns": 22553.5, "ser_p50_ns": 22724.0, "ser_p75_ns": 22936.5, "ser_p95_ns": 23659.5, "ser_p99_ns": 24013.75, "ser_ci_low_ns": 22699.898355263158, "ser_ci_high_ns": 22896.78486842105, "deser_mean_ns": 142433.6052631579, "deser_median_ns": 142143.5, "deser_std_ns": 4443.490274034432, "deser_mad_ns": 3178.5, "deser_cv": 0.031196923407398946, "deser_min_ns": 130941.0, "deser_max_ns": 152999.0, "deser_p5_ns": 136175.0, "deser_p25_ns": 138814.5, "deser_p50_ns": 142143.5, "deser_p75_ns": 145057.0, "deser_p95_ns": 151088.0, "deser_p99_ns": 152711.75, "deser_ci_low_ns": 141441.98684210525, "deser_ci_high_ns": 143449.6052631579, "total_mean_ns": 165231.6447368421, "total_median_ns": 165049.0, "total_std_ns": 4547.223090206292, "total_mad_ns": 3020.0, "total_cv": 0.027520291875375774, "total_min_ns": 153403.0, "total_max_ns": 175622.0, "total_p5_ns": 159380.5, "total_p25_ns": 161871.75, "total_p50_ns": 165049.0, "total_p75_ns": 167919.25, "total_p95_ns": 174683.0, "total_p99_ns": 175409.0, "total_ci_low_ns": 164255.23980263158, "total_ci_high_ns": 166267.50624999998, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.437513813569257}, {"serializer": "rkyv", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.8.17", "avg_time_ser_ns": 78187.7, "avg_time_deser_ns": 127112.4875, "avg_time_total_ns": 205300.1875, "median_size_bytes": 49952.0, "avg_ops_per_sec": 4870.916155398056, "min_ops_per_sec": 4642.978191931433, "max_ops_per_sec": 5149.7548716681085, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 78187.7, "ser_median_ns": 78265.0, "ser_std_ns": 2576.5020856712604, "ser_mad_ns": 1793.0, "ser_cv": 0.03295278011338434, "ser_min_ns": 72758.0, "ser_max_ns": 83984.0, "ser_p5_ns": 74422.85, "ser_p25_ns": 76097.0, "ser_p50_ns": 78265.0, "ser_p75_ns": 79987.5, "ser_p95_ns": 82543.05, "ser_p99_ns": 83969.78, "ser_ci_low_ns": 77639.15531249999, "ser_ci_high_ns": 78749.3528125, "deser_mean_ns": 127112.4875, "deser_median_ns": 126828.5, "deser_std_ns": 2470.3404059685295, "deser_mad_ns": 1450.5, "deser_cv": 0.019434285761802353, "deser_min_ns": 121426.0, "deser_max_ns": 133370.0, "deser_p5_ns": 123291.95, "deser_p25_ns": 125505.25, "deser_p50_ns": 126828.5, "deser_p75_ns": 128499.75, "deser_p95_ns": 131301.9, "deser_p99_ns": 133336.82, "deser_ci_low_ns": 126562.4075, "deser_ci_high_ns": 127666.3909375, "total_mean_ns": 205300.1875, "total_median_ns": 205242.5, "total_std_ns": 3969.3420016955015, "total_mad_ns": 2459.0, "total_cv": 0.019334332082358675, "total_min_ns": 194184.0, "total_max_ns": 215379.0, "total_p5_ns": 199629.0, "total_p25_ns": 202644.75, "total_p50_ns": 205242.5, "total_p75_ns": 207469.75, "total_p95_ns": 211547.1, "total_p99_ns": 215004.54, "total_ci_low_ns": 204458.8175, "total_ci_high_ns": 206153.791875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.2979718193643}, {"serializer": "sonic-rs", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.3.17", "avg_time_ser_ns": 16152.324675324675, "avg_time_deser_ns": 147668.36363636365, "avg_time_total_ns": 163820.6883116883, "median_size_bytes": 42750.0, "avg_ops_per_sec": 6104.235126258176, "min_ops_per_sec": 5711.707286424985, "max_ops_per_sec": 6586.573927705765, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 16152.324675324675, "ser_median_ns": 16086.0, "ser_std_ns": 255.4006883701745, "ser_mad_ns": 83.0, "ser_cv": 0.015812008085767427, "ser_min_ns": 15633.0, "ser_max_ns": 16890.0, "ser_p5_ns": 15783.8, "ser_p25_ns": 16015.0, "ser_p50_ns": 16086.0, "ser_p75_ns": 16203.0, "ser_p95_ns": 16741.0, "ser_p99_ns": 16871.76, "ser_ci_low_ns": 16097.616558441558, "ser_ci_high_ns": 16209.287987012987, "deser_mean_ns": 147668.36363636365, "deser_median_ns": 148293.0, "deser_std_ns": 4972.779456594013, "deser_mad_ns": 2967.0, "deser_cv": 0.0336753203877818, "deser_min_ns": 135888.0, "deser_max_ns": 158288.0, "deser_p5_ns": 137236.0, "deser_p25_ns": 144840.0, "deser_p50_ns": 148293.0, "deser_p75_ns": 150700.0, "deser_p95_ns": 155159.6, "deser_p99_ns": 157705.84, "deser_ci_low_ns": 146516.63896103896, "deser_ci_high_ns": 148772.41168831167, "total_mean_ns": 163820.6883116883, "total_median_ns": 164354.0, "total_std_ns": 5048.8558585603805, "total_mad_ns": 3228.0, "total_cv": 0.030819403279238655, "total_min_ns": 151824.0, "total_max_ns": 175079.0, "total_p5_ns": 153603.4, "total_p25_ns": 160793.0, "total_p50_ns": 164354.0, "total_p75_ns": 166736.0, "total_p95_ns": 171546.2, "total_p99_ns": 174233.88, "total_ci_low_ns": 162650.47824675325, "total_ci_high_ns": 164954.77954545457, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.558900981381533}, {"serializer": "bitcode", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.6.9", "avg_time_ser_ns": 77740.22784810126, "avg_time_deser_ns": 108637.24050632911, "avg_time_total_ns": 186377.46835443037, "median_size_bytes": 32842.0, "avg_ops_per_sec": 5365.4554320821635, "min_ops_per_sec": 5165.58275521853, "max_ops_per_sec": 5679.720557748558, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 77740.22784810126, "ser_median_ns": 77577.0, "ser_std_ns": 1308.6297095245998, "ser_mad_ns": 730.0, "ser_cv": 0.016833366015874908, "ser_min_ns": 75048.0, "ser_max_ns": 81027.0, "ser_p5_ns": 75862.0, "ser_p25_ns": 76854.0, "ser_p50_ns": 77577.0, "ser_p75_ns": 78487.5, "ser_p95_ns": 80006.5, "ser_p99_ns": 80835.12, "ser_ci_low_ns": 77463.5088607595, "ser_ci_high_ns": 78029.775, "deser_mean_ns": 108637.24050632911, "deser_median_ns": 109039.0, "deser_std_ns": 2593.317058227175, "deser_mad_ns": 1636.0, "deser_cv": 0.023871345094374802, "deser_min_ns": 100374.0, "deser_max_ns": 114203.0, "deser_p5_ns": 105083.4, "deser_p25_ns": 106610.0, "deser_p50_ns": 109039.0, "deser_p75_ns": 110225.0, "deser_p95_ns": 112472.0, "deser_p99_ns": 114105.5, "deser_ci_low_ns": 108089.09177215189, "deser_ci_high_ns": 109190.86392405063, "total_mean_ns": 186377.46835443037, "total_median_ns": 186465.0, "total_std_ns": 3301.606399359774, "total_mad_ns": 2377.0, "total_cv": 0.017714621990042135, "total_min_ns": 176065.0, "total_max_ns": 193589.0, "total_p5_ns": 182015.4, "total_p25_ns": 184265.0, "total_p50_ns": 186465.0, "total_p75_ns": 188887.0, "total_p95_ns": 190978.1, "total_p99_ns": 192666.26, "total_ci_low_ns": 185651.92943037974, "total_ci_high_ns": 187070.82816455697, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.64593149426939}, {"serializer": "prost", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.13.5", "avg_time_ser_ns": 94778.24705882353, "avg_time_deser_ns": 177965.15294117646, "avg_time_total_ns": 272743.4, "median_size_bytes": 37250.0, "avg_ops_per_sec": 3666.449857265107, "min_ops_per_sec": 3470.378583599685, "max_ops_per_sec": 3827.6779391781974, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 94778.24705882353, "ser_median_ns": 94428.0, "ser_std_ns": 2223.2402292165198, "ser_mad_ns": 1193.0, "ser_cv": 0.023457283693342414, "ser_min_ns": 90161.0, "ser_max_ns": 100611.0, "ser_p5_ns": 91253.6, "ser_p25_ns": 93361.0, "ser_p50_ns": 94428.0, "ser_p75_ns": 96255.0, "ser_p95_ns": 98964.8, "ser_p99_ns": 100411.08, "ser_ci_low_ns": 94326.52088235294, "ser_ci_high_ns": 95246.89794117647, "deser_mean_ns": 177965.15294117646, "deser_median_ns": 178814.0, "deser_std_ns": 5588.616718076901, "deser_mad_ns": 3370.0, "deser_cv": 0.03140287087508715, "deser_min_ns": 164679.0, "deser_max_ns": 189979.0, "deser_p5_ns": 166630.4, "deser_p25_ns": 174634.0, "deser_p50_ns": 178814.0, "deser_p75_ns": 181733.0, "deser_p95_ns": 185059.4, "deser_p99_ns": 189258.28, "deser_ci_low_ns": 176801.34970588237, "deser_ci_high_ns": 179127.92529411765, "total_mean_ns": 272743.4, "total_median_ns": 273002.0, "total_std_ns": 5622.346807500363, "total_mad_ns": 3710.0, "total_cv": 0.020614052649854633, "total_min_ns": 261255.0, "total_max_ns": 288153.0, "total_p5_ns": 263755.8, "total_p25_ns": 269187.0, "total_p50_ns": 273002.0, "total_p75_ns": 276594.0, "total_p95_ns": 281625.0, "total_p99_ns": 287658.24, "total_ci_low_ns": 271560.8429411765, "total_ci_high_ns": 273947.46882352943, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.49873085180657}, {"serializer": "minicbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.25.1", "avg_time_ser_ns": 37253.23863636364, "avg_time_deser_ns": 180425.32954545456, "avg_time_total_ns": 217678.56818181818, "median_size_bytes": 34350.0, "avg_ops_per_sec": 4593.9295188892465, "min_ops_per_sec": 4352.651853141527, "max_ops_per_sec": 4868.738801900756, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 37253.23863636364, "ser_median_ns": 37250.0, "ser_std_ns": 650.8221148337999, "ser_mad_ns": 418.5, "ser_cv": 0.017470215708937566, "ser_min_ns": 35458.0, "ser_max_ns": 39044.0, "ser_p5_ns": 36239.85, "ser_p25_ns": 36802.75, "ser_p50_ns": 37250.0, "ser_p75_ns": 37644.25, "ser_p95_ns": 38264.299999999996, "ser_p99_ns": 38803.01, "ser_ci_low_ns": 37120.45284090909, "ser_ci_high_ns": 37387.18295454545, "deser_mean_ns": 180425.32954545456, "deser_median_ns": 180907.0, "deser_std_ns": 5152.174676934563, "deser_mad_ns": 3092.0, "deser_cv": 0.028555717148553553, "deser_min_ns": 167998.0, "deser_max_ns": 191537.0, "deser_p5_ns": 170475.55, "deser_p25_ns": 177742.5, "deser_p50_ns": 180907.0, "deser_p75_ns": 183652.25, "deser_p95_ns": 188973.55, "deser_p99_ns": 191156.81, "deser_ci_low_ns": 179331.33892045455, "deser_ci_high_ns": 181452.36875, "total_mean_ns": 217678.56818181818, "total_median_ns": 217906.0, "total_std_ns": 5329.805324765202, "total_mad_ns": 3052.0, "total_cv": 0.02448475001137195, "total_min_ns": 205392.0, "total_max_ns": 229745.0, "total_p5_ns": 207361.75, "total_p25_ns": 215044.25, "total_p50_ns": 217906.0, "total_p75_ns": 221076.5, "total_p95_ns": 226591.15, "total_p99_ns": 229000.28, "total_ci_low_ns": 216528.18977272726, "total_ci_high_ns": 218737.08551136364, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.27977350438099}, {"serializer": "sonic-rs", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.3.17", "avg_time_ser_ns": 274.0574712643678, "avg_time_deser_ns": 552.5862068965517, "avg_time_total_ns": 826.6436781609195, "median_size_bytes": 258.0, "avg_ops_per_sec": 1209711.0598181263, "min_ops_per_sec": 1039501.0395010395, "max_ops_per_sec": 1388888.888888889, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 274.0574712643678, "ser_median_ns": 271.0, "ser_std_ns": 26.426887436428323, "ser_mad_ns": 21.0, "ser_cv": 0.09642826854713184, "ser_min_ns": 224.0, "ser_max_ns": 345.0, "ser_p5_ns": 235.3, "ser_p25_ns": 253.0, "ser_p50_ns": 271.0, "ser_p75_ns": 294.0, "ser_p95_ns": 311.7, "ser_p99_ns": 331.24, "ser_ci_low_ns": 268.42442528735637, "ser_ci_high_ns": 279.575, "deser_mean_ns": 552.5862068965517, "deser_median_ns": 540.0, "deser_std_ns": 52.341799678503634, "deser_mad_ns": 27.0, "deser_cv": 0.09472150955860252, "deser_min_ns": 462.0, "deser_max_ns": 715.0, "deser_p5_ns": 486.5, "deser_p25_ns": 515.5, "deser_p50_ns": 540.0, "deser_p75_ns": 577.0, "deser_p95_ns": 654.4, "deser_p99_ns": 714.14, "deser_ci_low_ns": 542.5629310344829, "deser_ci_high_ns": 563.7031609195402, "total_mean_ns": 826.6436781609195, "total_median_ns": 818.0, "total_std_ns": 55.06971839394349, "total_mad_ns": 36.0, "total_cv": 0.06661844740222314, "total_min_ns": 720.0, "total_max_ns": 962.0, "total_p5_ns": 738.6, "total_p25_ns": 789.5, "total_p50_ns": 818.0, "total_p75_ns": 865.5, "total_p95_ns": 915.9, "total_p99_ns": 949.96, "total_ci_low_ns": 815.9278735632183, "total_ci_high_ns": 837.437356321839, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.362386395891571}, {"serializer": "nanoserde", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.1.37", "avg_time_ser_ns": 273.22222222222223, "avg_time_deser_ns": 307.3333333333333, "avg_time_total_ns": 580.5555555555555, "median_size_bytes": 181.0, "avg_ops_per_sec": 1722488.038277512, "min_ops_per_sec": 1190476.1904761905, "max_ops_per_sec": 2169197.3969631237, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 273.22222222222223, "ser_median_ns": 267.5, "ser_std_ns": 38.00318667234938, "ser_mad_ns": 22.5, "ser_cv": 0.13909259050473544, "ser_min_ns": 201.0, "ser_max_ns": 384.0, "ser_p5_ns": 222.7, "ser_p25_ns": 245.25, "ser_p50_ns": 267.5, "ser_p75_ns": 299.0, "ser_p95_ns": 335.75, "ser_p99_ns": 368.87, "ser_ci_low_ns": 265.6219444444444, "ser_ci_high_ns": 281.3347222222222, "deser_mean_ns": 307.3333333333333, "deser_median_ns": 281.0, "deser_std_ns": 71.17315489373847, "deser_mad_ns": 34.5, "deser_cv": 0.23158293349372605, "deser_min_ns": 233.0, "deser_max_ns": 550.0, "deser_p5_ns": 238.45, "deser_p25_ns": 254.0, "deser_p50_ns": 281.0, "deser_p75_ns": 344.75, "deser_p95_ns": 450.55, "deser_p99_ns": 523.3, "deser_ci_low_ns": 293.2658333333333, "deser_ci_high_ns": 321.8902777777778, "total_mean_ns": 580.5555555555555, "total_median_ns": 563.5, "total_std_ns": 78.1880635608515, "total_mad_ns": 49.5, "total_cv": 0.13467800421964854, "total_min_ns": 461.0, "total_max_ns": 840.0, "total_p5_ns": 483.8, "total_p25_ns": 518.25, "total_p50_ns": 563.5, "total_p75_ns": 624.5, "total_p95_ns": 720.75, "total_p99_ns": 777.6999999999999, "total_ci_low_ns": 565.73, "total_ci_high_ns": 596.7455555555555, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.477815117499838}, {"serializer": "simd-json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.14.3", "avg_time_ser_ns": 325.3763440860215, "avg_time_deser_ns": 1283.7096774193549, "avg_time_total_ns": 1609.0860215053763, "median_size_bytes": 258.0, "avg_ops_per_sec": 621470.8142604163, "min_ops_per_sec": 548245.6140350878, "max_ops_per_sec": 710732.0540156361, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 325.3763440860215, "ser_median_ns": 319.0, "ser_std_ns": 37.91865262537418, "ser_mad_ns": 25.0, "ser_cv": 0.11653782862391932, "ser_min_ns": 254.0, "ser_max_ns": 437.0, "ser_p5_ns": 270.4, "ser_p25_ns": 298.0, "ser_p50_ns": 319.0, "ser_p75_ns": 346.0, "ser_p95_ns": 393.4, "ser_p99_ns": 417.67999999999995, "ser_ci_low_ns": 317.9451612903226, "ser_ci_high_ns": 333.3768817204301, "deser_mean_ns": 1283.7096774193549, "deser_median_ns": 1279.0, "deser_std_ns": 93.80618092238186, "deser_mad_ns": 64.0, "deser_cv": 0.07307429598175241, "deser_min_ns": 1087.0, "deser_max_ns": 1548.0, "deser_p5_ns": 1130.2, "deser_p25_ns": 1217.0, "deser_p50_ns": 1279.0, "deser_p75_ns": 1346.0, "deser_p95_ns": 1424.2, "deser_p99_ns": 1516.72, "deser_ci_low_ns": 1264.6876344086022, "deser_ci_high_ns": 1302.4416666666666, "total_mean_ns": 1609.0860215053763, "total_median_ns": 1609.0, "total_std_ns": 97.2048102130998, "total_mad_ns": 69.0, "total_cv": 0.06040995255316437, "total_min_ns": 1407.0, "total_max_ns": 1824.0, "total_p5_ns": 1461.2, "total_p25_ns": 1540.0, "total_p50_ns": 1609.0, "total_p75_ns": 1671.0, "total_p95_ns": 1777.1999999999998, "total_p99_ns": 1816.6399999999999, "total_ci_low_ns": 1589.7075268817205, "total_ci_high_ns": 1627.4422043010752, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.836696288316574}, {"serializer": "ciborium", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.2.2", "avg_time_ser_ns": 241.36363636363637, "avg_time_deser_ns": 1285.965909090909, "avg_time_total_ns": 1527.3295454545455, "median_size_bytes": 197.0, "avg_ops_per_sec": 654737.5469662587, "min_ops_per_sec": 566251.415628539, "max_ops_per_sec": 733675.7153338224, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 241.36363636363637, "ser_median_ns": 241.0, "ser_std_ns": 23.80484922016908, "ser_mad_ns": 16.0, "ser_cv": 0.09862649394420334, "ser_min_ns": 192.0, "ser_max_ns": 312.0, "ser_p5_ns": 208.0, "ser_p25_ns": 223.0, "ser_p50_ns": 241.0, "ser_p75_ns": 255.0, "ser_p95_ns": 284.29999999999995, "ser_p99_ns": 297.2099999999999, "ser_ci_low_ns": 236.55625, "ser_ci_high_ns": 246.2965909090909, "deser_mean_ns": 1285.965909090909, "deser_median_ns": 1269.0, "deser_std_ns": 78.52731406546685, "deser_mad_ns": 38.5, "deser_cv": 0.061064849005974316, "deser_min_ns": 1118.0, "deser_max_ns": 1510.0, "deser_p5_ns": 1177.5, "deser_p25_ns": 1237.75, "deser_p50_ns": 1269.0, "deser_p75_ns": 1335.5, "deser_p95_ns": 1429.7499999999998, "deser_p99_ns": 1502.17, "deser_ci_low_ns": 1269.4426136363636, "deser_ci_high_ns": 1303.2173295454545, "total_mean_ns": 1527.3295454545455, "total_median_ns": 1509.0, "total_std_ns": 80.07291527545723, "total_mad_ns": 46.5, "total_cv": 0.052426744125889935, "total_min_ns": 1363.0, "total_max_ns": 1766.0, "total_p5_ns": 1415.4, "total_p25_ns": 1477.75, "total_p50_ns": 1509.0, "total_p75_ns": 1566.75, "total_p95_ns": 1657.55, "total_p99_ns": 1738.1599999999999, "total_ci_low_ns": 1511.613068181818, "total_ci_high_ns": 1543.859375, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.51807264238826}, {"serializer": "minicbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.25.1", "avg_time_ser_ns": 195.61111111111111, "avg_time_deser_ns": 422.26666666666665, "avg_time_total_ns": 617.8777777777777, "median_size_bytes": 103.0, "avg_ops_per_sec": 1618443.0577784174, "min_ops_per_sec": 1189060.6420927467, "max_ops_per_sec": 1992031.87250996, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 195.61111111111111, "ser_median_ns": 192.0, "ser_std_ns": 21.243740357327333, "ser_mad_ns": 14.5, "ser_cv": 0.10860191037543084, "ser_min_ns": 165.0, "ser_max_ns": 256.0, "ser_p5_ns": 168.0, "ser_p25_ns": 179.25, "ser_p50_ns": 192.0, "ser_p75_ns": 208.5, "ser_p95_ns": 236.1, "ser_p99_ns": 249.76999999999998, "ser_ci_low_ns": 191.31, "ser_ci_high_ns": 200.11111111111111, "deser_mean_ns": 422.26666666666665, "deser_median_ns": 402.0, "deser_std_ns": 69.20362398771981, "deser_mad_ns": 39.5, "deser_cv": 0.16388606880577788, "deser_min_ns": 312.0, "deser_max_ns": 653.0, "deser_p5_ns": 335.6, "deser_p25_ns": 373.25, "deser_p50_ns": 402.0, "deser_p75_ns": 462.0, "deser_p95_ns": 558.0, "deser_p99_ns": 593.37, "deser_ci_low_ns": 408.63166666666666, "deser_ci_high_ns": 437.29055555555556, "total_mean_ns": 617.8777777777777, "total_median_ns": 603.5, "total_std_ns": 74.24599679410375, "total_mad_ns": 43.0, "total_cv": 0.12016291807925583, "total_min_ns": 502.0, "total_max_ns": 841.0, "total_p5_ns": 515.95, "total_p25_ns": 567.5, "total_p50_ns": 603.5, "total_p75_ns": 653.5, "total_p95_ns": 762.0, "total_p99_ns": 802.73, "total_ci_low_ns": 602.1327777777777, "total_ci_high_ns": 633.0122222222221, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.2362640665577995}, {"serializer": "rkyv", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.8.17", "avg_time_ser_ns": 258.0, "avg_time_deser_ns": 268.2413793103448, "avg_time_total_ns": 526.2413793103449, "median_size_bytes": 136.0, "avg_ops_per_sec": 1900268.6586724329, "min_ops_per_sec": 1420454.5454545454, "max_ops_per_sec": 2380952.380952381, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 258.0, "ser_median_ns": 250.0, "ser_std_ns": 38.95614708038819, "ser_mad_ns": 24.0, "ser_cv": 0.15099281814103951, "ser_min_ns": 194.0, "ser_max_ns": 351.0, "ser_p5_ns": 204.9, "ser_p25_ns": 227.5, "ser_p50_ns": 250.0, "ser_p75_ns": 281.0, "ser_p95_ns": 332.0, "ser_p99_ns": 345.84000000000003, "ser_ci_low_ns": 249.8617816091954, "ser_ci_high_ns": 265.90977011494255, "deser_mean_ns": 268.2413793103448, "deser_median_ns": 251.0, "deser_std_ns": 48.32664186920555, "deser_mad_ns": 22.0, "deser_cv": 0.18016102509409448, "deser_min_ns": 203.0, "deser_max_ns": 424.0, "deser_p5_ns": 217.6, "deser_p25_ns": 233.5, "deser_p50_ns": 251.0, "deser_p75_ns": 285.0, "deser_p95_ns": 363.5, "deser_p99_ns": 406.8, "deser_ci_low_ns": 258.97701149425285, "deser_ci_high_ns": 279.1853448275862, "total_mean_ns": 526.2413793103449, "total_median_ns": 519.0, "total_std_ns": 61.40221295861343, "total_mad_ns": 35.0, "total_cv": 0.11668070085838342, "total_min_ns": 420.0, "total_max_ns": 704.0, "total_p5_ns": 450.6, "total_p25_ns": 486.0, "total_p50_ns": 519.0, "total_p75_ns": 551.5, "total_p95_ns": 659.4000000000001, "total_p99_ns": 689.38, "total_ci_low_ns": 513.4129310344828, "total_ci_high_ns": 539.4393678160919, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.9981777403980936, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.326603480329478}, {"serializer": "serde_json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "1.0.150", "avg_time_ser_ns": 328.8941176470588, "avg_time_deser_ns": 748.0470588235294, "avg_time_total_ns": 1076.9411764705883, "median_size_bytes": 258.0, "avg_ops_per_sec": 928555.8225912169, "min_ops_per_sec": 793021.4115781126, "max_ops_per_sec": 1076426.2648008612, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 328.8941176470588, "ser_median_ns": 326.0, "ser_std_ns": 42.87718438956166, "ser_mad_ns": 32.0, "ser_cv": 0.13036774478154034, "ser_min_ns": 238.0, "ser_max_ns": 444.0, "ser_p5_ns": 274.4, "ser_p25_ns": 294.0, "ser_p50_ns": 326.0, "ser_p75_ns": 356.0, "ser_p95_ns": 400.2, "ser_p99_ns": 438.96, "ser_ci_low_ns": 320.0232352941176, "ser_ci_high_ns": 337.8985294117647, "deser_mean_ns": 748.0470588235294, "deser_median_ns": 732.0, "deser_std_ns": 55.337902683326874, "deser_mad_ns": 25.0, "deser_cv": 0.07397649924639507, "deser_min_ns": 639.0, "deser_max_ns": 918.0, "deser_p5_ns": 684.4, "deser_p25_ns": 713.0, "deser_p50_ns": 732.0, "deser_p75_ns": 776.0, "deser_p95_ns": 857.6, "deser_p99_ns": 910.4399999999999, "deser_ci_low_ns": 737.6808823529411, "deser_ci_high_ns": 760.6714705882353, "total_mean_ns": 1076.9411764705883, "total_median_ns": 1063.0, "total_std_ns": 68.96865280711239, "total_mad_ns": 38.0, "total_cv": 0.06404124414031628, "total_min_ns": 929.0, "total_max_ns": 1261.0, "total_p5_ns": 968.6, "total_p25_ns": 1030.0, "total_p50_ns": 1063.0, "total_p75_ns": 1109.0, "total_p95_ns": 1203.2, "total_p99_ns": 1248.3999999999999, "total_ci_low_ns": 1062.1176470588234, "total_ci_high_ns": 1091.3302941176469, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.172220653726258}, {"serializer": "flexbuffers", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "2.0.0", "avg_time_ser_ns": 1452.906976744186, "avg_time_deser_ns": 1036.639534883721, "avg_time_total_ns": 2489.546511627907, "median_size_bytes": 306.0, "avg_ops_per_sec": 401679.58113226935, "min_ops_per_sec": 360100.82823190495, "max_ops_per_sec": 442477.8761061947, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 1452.906976744186, "ser_median_ns": 1450.5, "ser_std_ns": 62.2164396483526, "ser_mad_ns": 42.5, "ser_cv": 0.0428220392937841, "ser_min_ns": 1322.0, "ser_max_ns": 1615.0, "ser_p5_ns": 1358.25, "ser_p25_ns": 1410.75, "ser_p50_ns": 1450.5, "ser_p75_ns": 1493.0, "ser_p95_ns": 1544.5, "ser_p99_ns": 1614.15, "ser_ci_low_ns": 1439.3566860465116, "ser_ci_high_ns": 1466.1752906976744, "deser_mean_ns": 1036.639534883721, "deser_median_ns": 1011.0, "deser_std_ns": 80.17112767525663, "deser_mad_ns": 39.5, "deser_cv": 0.07733751702249073, "deser_min_ns": 896.0, "deser_max_ns": 1282.0, "deser_p5_ns": 943.25, "deser_p25_ns": 989.0, "deser_p50_ns": 1011.0, "deser_p75_ns": 1086.0, "deser_p95_ns": 1207.0, "deser_p99_ns": 1260.7500000000002, "deser_ci_low_ns": 1019.2985465116279, "deser_ci_high_ns": 1052.5933139534884, "total_mean_ns": 2489.546511627907, "total_median_ns": 2471.5, "total_std_ns": 95.23329335982604, "total_mad_ns": 55.0, "total_cv": 0.03825326938662145, "total_min_ns": 2260.0, "total_max_ns": 2777.0, "total_p5_ns": 2352.5, "total_p25_ns": 2431.25, "total_p50_ns": 2471.5, "total_p75_ns": 2535.25, "total_p95_ns": 2660.25, "total_p99_ns": 2749.8, "total_ci_low_ns": 2469.7776162790697, "total_ci_high_ns": 2509.3488372093025, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.819198354534397}, {"serializer": "bincode", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "2.0.1", "avg_time_ser_ns": 124.91578947368421, "avg_time_deser_ns": 516.8842105263158, "avg_time_total_ns": 641.8, "median_size_bytes": 99.0, "avg_ops_per_sec": 1558117.7937052043, "min_ops_per_sec": 1210653.7530266345, "max_ops_per_sec": 1926782.2736030829, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 124.91578947368421, "ser_median_ns": 121.0, "ser_std_ns": 17.799511801752853, "ser_mad_ns": 14.0, "ser_cv": 0.142492089084564, "ser_min_ns": 88.0, "ser_max_ns": 163.0, "ser_p5_ns": 98.7, "ser_p25_ns": 113.0, "ser_p50_ns": 121.0, "ser_p75_ns": 139.0, "ser_p95_ns": 156.6, "ser_p99_ns": 162.06, "ser_ci_low_ns": 121.36815789473684, "ser_ci_high_ns": 128.52631578947367, "deser_mean_ns": 516.8842105263158, "deser_median_ns": 507.0, "deser_std_ns": 63.26655248181247, "deser_mad_ns": 40.0, "deser_cv": 0.12239985511917939, "deser_min_ns": 400.0, "deser_max_ns": 695.0, "deser_p5_ns": 436.4, "deser_p25_ns": 475.0, "deser_p50_ns": 507.0, "deser_p75_ns": 554.5, "deser_p95_ns": 629.5999999999999, "deser_p99_ns": 676.2, "deser_ci_low_ns": 504.2513157894737, "deser_ci_high_ns": 529.4860526315789, "total_mean_ns": 641.8, "total_median_ns": 634.0, "total_std_ns": 62.37713028810097, "total_mad_ns": 42.0, "total_cv": 0.09719091662215795, "total_min_ns": 519.0, "total_max_ns": 826.0, "total_p5_ns": 558.0, "total_p25_ns": 595.0, "total_p50_ns": 634.0, "total_p75_ns": 682.5, "total_p95_ns": 754.3, "total_p99_ns": 801.5600000000001, "total_ci_low_ns": 629.6515789473684, "total_ci_high_ns": 654.097894736842, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.299978820056617}, {"serializer": "bson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "2.15.0", "avg_time_ser_ns": 663.2840909090909, "avg_time_deser_ns": 1113.840909090909, "avg_time_total_ns": 1777.125, "median_size_bytes": 294.0, "avg_ops_per_sec": 562706.6188366041, "min_ops_per_sec": 502260.17076845805, "max_ops_per_sec": 617283.9506172839, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 663.2840909090909, "ser_median_ns": 667.5, "ser_std_ns": 54.06699736217793, "ser_mad_ns": 43.0, "ser_cv": 0.08151408740721372, "ser_min_ns": 533.0, "ser_max_ns": 776.0, "ser_p5_ns": 574.0, "ser_p25_ns": 622.75, "ser_p50_ns": 667.5, "ser_p75_ns": 703.75, "ser_p95_ns": 745.25, "ser_p99_ns": 762.9499999999999, "ser_ci_low_ns": 651.9988636363637, "ser_ci_high_ns": 674.2167613636364, "deser_mean_ns": 1113.840909090909, "deser_median_ns": 1096.5, "deser_std_ns": 78.74444134567351, "deser_mad_ns": 47.5, "deser_cv": 0.07069630923319462, "deser_min_ns": 994.0, "deser_max_ns": 1321.0, "deser_p5_ns": 1007.35, "deser_p25_ns": 1058.75, "deser_p50_ns": 1096.5, "deser_p75_ns": 1160.5, "deser_p95_ns": 1259.8999999999999, "deser_p99_ns": 1311.4299999999998, "deser_ci_low_ns": 1098.3852272727274, "deser_ci_high_ns": 1130.6258522727273, "total_mean_ns": 1777.125, "total_median_ns": 1760.5, "total_std_ns": 86.75421914944474, "total_mad_ns": 52.5, "total_cv": 0.04881717332739382, "total_min_ns": 1620.0, "total_max_ns": 1991.0, "total_p5_ns": 1670.1, "total_p25_ns": 1715.75, "total_p50_ns": 1760.5, "total_p75_ns": 1824.0, "total_p95_ns": 1946.65, "total_p99_ns": 1981.4299999999998, "total_ci_low_ns": 1760.028125, "total_ci_high_ns": 1795.7176136363635, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.928198401479847}, {"serializer": "postcard", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "1.1.3", "avg_time_ser_ns": 117.2987012987013, "avg_time_deser_ns": 320.53246753246754, "avg_time_total_ns": 437.83116883116884, "median_size_bytes": 96.0, "avg_ops_per_sec": 2283985.406223119, "min_ops_per_sec": 1666666.6666666667, "max_ops_per_sec": 2688172.0430107526, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 117.2987012987013, "ser_median_ns": 117.0, "ser_std_ns": 4.597095579261618, "ser_mad_ns": 2.0, "ser_cv": 0.03919135956633576, "ser_min_ns": 104.0, "ser_max_ns": 126.0, "ser_p5_ns": 109.6, "ser_p25_ns": 115.0, "ser_p50_ns": 117.0, "ser_p75_ns": 120.0, "ser_p95_ns": 125.0, "ser_p99_ns": 126.0, "ser_ci_low_ns": 116.31168831168831, "ser_ci_high_ns": 118.27272727272727, "deser_mean_ns": 320.53246753246754, "deser_median_ns": 308.0, "deser_std_ns": 52.58016046090319, "deser_mad_ns": 27.0, "deser_cv": 0.16404004519628643, "deser_min_ns": 259.0, "deser_max_ns": 478.0, "deser_p5_ns": 262.8, "deser_p25_ns": 281.0, "deser_p50_ns": 308.0, "deser_p75_ns": 339.0, "deser_p95_ns": 442.6, "deser_p99_ns": 458.2399999999999, "deser_ci_low_ns": 308.9733766233766, "deser_ci_high_ns": 331.97435064935064, "total_mean_ns": 437.83116883116884, "total_median_ns": 422.0, "total_std_ns": 52.28046898004792, "total_mad_ns": 25.0, "total_cv": 0.1194078281809299, "total_min_ns": 372.0, "total_max_ns": 600.0, "total_p5_ns": 383.8, "total_p25_ns": 400.0, "total_p50_ns": 422.0, "total_p75_ns": 455.0, "total_p95_ns": 555.2, "total_p99_ns": 576.4399999999998, "total_ci_low_ns": 426.76363636363635, "total_ci_high_ns": 449.84448051948056, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.9393411466582199, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.0223258730390192}, {"serializer": "rmp-serde", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "1.3.1", "avg_time_ser_ns": 161.82978723404256, "avg_time_deser_ns": 527.8510638297872, "avg_time_total_ns": 689.6808510638298, "median_size_bytes": 197.0, "avg_ops_per_sec": 1449946.0126484653, "min_ops_per_sec": 1187648.4560570072, "max_ops_per_sec": 1686340.6408094435, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 161.82978723404256, "ser_median_ns": 159.0, "ser_std_ns": 28.515469598199793, "ser_mad_ns": 21.0, "ser_cv": 0.17620655681243627, "ser_min_ns": 104.0, "ser_max_ns": 220.0, "ser_p5_ns": 121.3, "ser_p25_ns": 140.25, "ser_p50_ns": 159.0, "ser_p75_ns": 180.75, "ser_p95_ns": 209.0, "ser_p99_ns": 214.41999999999996, "ser_ci_low_ns": 156.1909574468085, "ser_ci_high_ns": 167.6601063829787, "deser_mean_ns": 527.8510638297872, "deser_median_ns": 513.0, "deser_std_ns": 50.642953728006, "deser_mad_ns": 24.0, "deser_cv": 0.09594174796308928, "deser_min_ns": 458.0, "deser_max_ns": 672.0, "deser_p5_ns": 468.65, "deser_p25_ns": 493.25, "deser_p50_ns": 513.0, "deser_p75_ns": 546.25, "deser_p95_ns": 635.7, "deser_p99_ns": 664.56, "deser_ci_low_ns": 517.9146276595744, "deser_ci_high_ns": 538.8654255319149, "total_mean_ns": 689.6808510638298, "total_median_ns": 682.5, "total_std_ns": 57.80374895122538, "total_mad_ns": 38.5, "total_cv": 0.08381231530796214, "total_min_ns": 593.0, "total_max_ns": 842.0, "total_p5_ns": 607.6, "total_p25_ns": 646.75, "total_p50_ns": 682.5, "total_p75_ns": 724.0, "total_p95_ns": 811.05, "total_p99_ns": 830.8399999999999, "total_ci_low_ns": 677.8707446808511, "total_ci_high_ns": 701.3723404255319, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.503370726665267}, {"serializer": "prost", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.13.5", "avg_time_ser_ns": 407.0952380952381, "avg_time_deser_ns": 448.20238095238096, "avg_time_total_ns": 855.297619047619, "median_size_bytes": 114.0, "avg_ops_per_sec": 1169183.6592664765, "min_ops_per_sec": 931098.6964618249, "max_ops_per_sec": 1373626.3736263737, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 407.0952380952381, "ser_median_ns": 402.0, "ser_std_ns": 44.835877159541766, "ser_mad_ns": 22.5, "ser_cv": 0.11013608847238006, "ser_min_ns": 322.0, "ser_max_ns": 507.0, "ser_p5_ns": 339.75, "ser_p25_ns": 381.0, "ser_p50_ns": 402.0, "ser_p75_ns": 430.25, "ser_p95_ns": 491.7, "ser_p99_ns": 502.02, "ser_ci_low_ns": 397.97589285714287, "ser_ci_high_ns": 417.04970238095234, "deser_mean_ns": 448.20238095238096, "deser_median_ns": 435.5, "deser_std_ns": 48.015002615749964, "deser_mad_ns": 23.5, "deser_cv": 0.10712795080142891, "deser_min_ns": 374.0, "deser_max_ns": 615.0, "deser_p5_ns": 394.45, "deser_p25_ns": 415.75, "deser_p50_ns": 435.5, "deser_p75_ns": 468.0, "deser_p95_ns": 547.7499999999999, "deser_p99_ns": 596.74, "deser_ci_low_ns": 438.2973214285714, "deser_ci_high_ns": 458.6791666666667, "total_mean_ns": 855.297619047619, "total_median_ns": 836.0, "total_std_ns": 79.7627173471423, "total_mad_ns": 40.5, "total_cv": 0.09325726574096949, "total_min_ns": 728.0, "total_max_ns": 1074.0, "total_p5_ns": 755.15, "total_p25_ns": 808.75, "total_p50_ns": 836.0, "total_p75_ns": 881.5, "total_p95_ns": 1014.8999999999999, "total_p99_ns": 1072.34, "total_ci_low_ns": 839.1526785714286, "total_ci_high_ns": 872.7053571428571, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.573239412642165}, {"serializer": "speedy", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.8.7", "avg_time_ser_ns": 52.81707317073171, "avg_time_deser_ns": 231.76829268292684, "avg_time_total_ns": 284.5853658536585, "median_size_bytes": 133.0, "avg_ops_per_sec": 3513884.127528283, "min_ops_per_sec": 2222222.222222222, "max_ops_per_sec": 4504504.504504505, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 52.81707317073171, "ser_median_ns": 54.0, "ser_std_ns": 11.701142762362881, "ser_mad_ns": 11.0, "ser_cv": 0.2215409158424743, "ser_min_ns": 38.0, "ser_max_ns": 81.0, "ser_p5_ns": 40.0, "ser_p25_ns": 42.0, "ser_p50_ns": 54.0, "ser_p75_ns": 59.75, "ser_p95_ns": 72.0, "ser_p99_ns": 78.57, "ser_ci_low_ns": 50.206707317073175, "ser_ci_high_ns": 55.50030487804878, "deser_mean_ns": 231.76829268292684, "deser_median_ns": 216.0, "deser_std_ns": 46.019668039130806, "deser_mad_ns": 19.0, "deser_cv": 0.1985589465513668, "deser_min_ns": 182.0, "deser_max_ns": 388.0, "deser_p5_ns": 187.1, "deser_p25_ns": 202.0, "deser_p50_ns": 216.0, "deser_p75_ns": 247.0, "deser_p95_ns": 337.6, "deser_p99_ns": 383.14, "deser_ci_low_ns": 222.25548780487804, "deser_ci_high_ns": 242.2591463414634, "total_mean_ns": 284.5853658536585, "total_median_ns": 273.0, "total_std_ns": 48.69404385193966, "total_mad_ns": 26.0, "total_cv": 0.17110522779649692, "total_min_ns": 222.0, "total_max_ns": 450.0, "total_p5_ns": 231.2, "total_p25_ns": 252.0, "total_p50_ns": 273.0, "total_p75_ns": 303.25, "total_p95_ns": 393.55, "total_p99_ns": 430.55999999999995, "total_ci_low_ns": 274.6582317073171, "total_ci_high_ns": 294.8307926829268, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "serde_avro_fast", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "2.1.0", "avg_time_ser_ns": 333.18888888888887, "avg_time_deser_ns": 484.24444444444447, "avg_time_total_ns": 817.4333333333333, "median_size_bytes": 96.0, "avg_ops_per_sec": 1223341.3530155364, "min_ops_per_sec": 965250.9652509652, "max_ops_per_sec": 1383125.8644536652, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 333.18888888888887, "ser_median_ns": 327.0, "ser_std_ns": 24.398330410940996, "ser_mad_ns": 15.5, "ser_cv": 0.0732267228127085, "ser_min_ns": 299.0, "ser_max_ns": 410.0, "ser_p5_ns": 303.9, "ser_p25_ns": 314.25, "ser_p50_ns": 327.0, "ser_p75_ns": 346.25, "ser_p95_ns": 373.65, "ser_p99_ns": 404.65999999999997, "ser_ci_low_ns": 328.3997222222222, "ser_ci_high_ns": 338.46666666666664, "deser_mean_ns": 484.24444444444447, "deser_median_ns": 463.0, "deser_std_ns": 65.48459139646553, "deser_mad_ns": 33.0, "deser_cv": 0.13523044435046344, "deser_min_ns": 391.0, "deser_max_ns": 680.0, "deser_p5_ns": 412.45, "deser_p25_ns": 434.25, "deser_p50_ns": 463.0, "deser_p75_ns": 512.75, "deser_p95_ns": 622.3, "deser_p99_ns": 657.75, "deser_ci_low_ns": 471.64166666666665, "deser_ci_high_ns": 498.2452777777778, "total_mean_ns": 817.4333333333333, "total_median_ns": 797.5, "total_std_ns": 71.87317950796576, "total_mad_ns": 43.5, "total_cv": 0.08792543266480336, "total_min_ns": 723.0, "total_max_ns": 1036.0, "total_p5_ns": 734.45, "total_p25_ns": 758.0, "total_p50_ns": 797.5, "total_p75_ns": 860.75, "total_p95_ns": 945.6999999999999, "total_p99_ns": 995.9499999999999, "total_ci_low_ns": 802.7327777777778, "total_ci_high_ns": 831.5469444444444, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.567291013065235}, {"serializer": "bitcode", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "rust", "serializer_version": "0.6.9", "avg_time_ser_ns": 1101.6022727272727, "avg_time_deser_ns": 738.8295454545455, "avg_time_total_ns": 1840.4318181818182, "median_size_bytes": 97.0, "avg_ops_per_sec": 543350.7452549426, "min_ops_per_sec": 443262.41134751774, "max_ops_per_sec": 643500.6435006435, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 1101.6022727272727, "ser_median_ns": 1081.5, "ser_std_ns": 100.16418014081225, "ser_mad_ns": 49.5, "ser_cv": 0.09092590186186936, "ser_min_ns": 925.0, "ser_max_ns": 1393.0, "ser_p5_ns": 974.65, "ser_p25_ns": 1033.5, "ser_p50_ns": 1081.5, "ser_p75_ns": 1140.5, "ser_p95_ns": 1288.8999999999999, "ser_p99_ns": 1357.33, "ser_ci_low_ns": 1082.0775568181818, "ser_ci_high_ns": 1122.8639204545455, "deser_mean_ns": 738.8295454545455, "deser_median_ns": 734.0, "deser_std_ns": 77.8553361684731, "deser_mad_ns": 50.0, "deser_cv": 0.10537658739753653, "deser_min_ns": 583.0, "deser_max_ns": 971.0, "deser_p5_ns": 631.45, "deser_p25_ns": 687.0, "deser_p50_ns": 734.0, "deser_p75_ns": 784.75, "deser_p95_ns": 881.9499999999998, "deser_p99_ns": 939.6799999999998, "deser_ci_low_ns": 723.1460227272727, "deser_ci_high_ns": 755.3423295454546, "total_mean_ns": 1840.4318181818182, "total_median_ns": 1807.5, "total_std_ns": 158.3305719387425, "total_mad_ns": 87.5, "total_cv": 0.08602903425955705, "total_min_ns": 1554.0, "total_max_ns": 2256.0, "total_p5_ns": 1643.1, "total_p25_ns": 1732.5, "total_p50_ns": 1807.5, "total_p75_ns": 1914.5, "total_p95_ns": 2177.5, "total_p99_ns": 2222.0699999999997, "total_ci_low_ns": 1806.9221590909092, "total_ci_high_ns": 1874.1289772727273, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.032391416637953}, {"serializer": "prost", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.13.5", "avg_time_ser_ns": 598.1855670103092, "avg_time_deser_ns": 563.2164948453608, "avg_time_total_ns": 1161.4020618556701, "median_size_bytes": 114.0, "avg_ops_per_sec": 861028.2630308195, "min_ops_per_sec": 639795.2655150351, "max_ops_per_sec": 1113585.74610245, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 598.1855670103092, "ser_median_ns": 593.0, "ser_std_ns": 81.22016502190553, "ser_mad_ns": 56.0, "ser_cv": 0.1357775404509313, "ser_min_ns": 467.0, "ser_max_ns": 787.0, "ser_p5_ns": 476.8, "ser_p25_ns": 538.0, "ser_p50_ns": 593.0, "ser_p75_ns": 649.0, "ser_p95_ns": 758.5999999999999, "ser_p99_ns": 773.56, "ser_ci_low_ns": 581.9162371134021, "ser_ci_high_ns": 614.5512886597937, "deser_mean_ns": 563.2164948453608, "deser_median_ns": 512.0, "deser_std_ns": 121.18565533271354, "deser_mad_ns": 58.0, "deser_cv": 0.2151670919474523, "deser_min_ns": 431.0, "deser_max_ns": 901.0, "deser_p5_ns": 440.8, "deser_p25_ns": 469.0, "deser_p50_ns": 512.0, "deser_p75_ns": 676.0, "deser_p95_ns": 777.2, "deser_p99_ns": 860.6799999999996, "deser_ci_low_ns": 540.5458762886598, "deser_ci_high_ns": 587.8499999999999, "total_mean_ns": 1161.4020618556701, "total_median_ns": 1121.0, "total_std_ns": 170.25181471094848, "total_mad_ns": 116.0, "total_cv": 0.14659162429841288, "total_min_ns": 898.0, "total_max_ns": 1563.0, "total_p5_ns": 935.4, "total_p25_ns": 1034.0, "total_p50_ns": 1121.0, "total_p75_ns": 1299.0, "total_p95_ns": 1448.599999999999, "total_p99_ns": 1532.2799999999997, "total_ci_low_ns": 1127.881443298969, "total_ci_high_ns": 1194.4453608247422, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.946721582144084}, {"serializer": "serde_json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "1.0.150", "avg_time_ser_ns": 775.978947368421, "avg_time_deser_ns": 1730.6947368421052, "avg_time_total_ns": 2506.6736842105265, "median_size_bytes": 258.0, "avg_ops_per_sec": 398935.0533733108, "min_ops_per_sec": 332005.31208499335, "max_ops_per_sec": 461467.4665436087, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 775.978947368421, "ser_median_ns": 778.0, "ser_std_ns": 45.96806915521798, "ser_mad_ns": 30.0, "ser_cv": 0.059238809649552464, "ser_min_ns": 663.0, "ser_max_ns": 900.0, "ser_p5_ns": 710.7, "ser_p25_ns": 742.0, "ser_p50_ns": 778.0, "ser_p75_ns": 805.0, "ser_p95_ns": 855.2, "ser_p99_ns": 896.24, "ser_ci_low_ns": 766.8626315789473, "ser_ci_high_ns": 785.4555263157895, "deser_mean_ns": 1730.6947368421052, "deser_median_ns": 1721.0, "deser_std_ns": 169.58435255523707, "deser_mad_ns": 136.0, "deser_cv": 0.09798628778675751, "deser_min_ns": 1450.0, "deser_max_ns": 2248.0, "deser_p5_ns": 1512.5, "deser_p25_ns": 1586.0, "deser_p50_ns": 1721.0, "deser_p75_ns": 1856.5, "deser_p95_ns": 2020.5, "deser_p99_ns": 2137.0800000000004, "deser_ci_low_ns": 1697.0942105263157, "deser_ci_high_ns": 1763.4913157894737, "total_mean_ns": 2506.6736842105265, "total_median_ns": 2503.0, "total_std_ns": 185.3321596660843, "total_mad_ns": 143.0, "total_cv": 0.0739354950081803, "total_min_ns": 2167.0, "total_max_ns": 3012.0, "total_p5_ns": 2245.0, "total_p25_ns": 2340.0, "total_p50_ns": 2503.0, "total_p75_ns": 2625.0, "total_p95_ns": 2808.6, "total_p99_ns": 2957.48, "total_ci_low_ns": 2470.1323684210524, "total_ci_high_ns": 2542.4452631578947, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.17143470476401}, {"serializer": "simd-json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.14.3", "avg_time_ser_ns": 487.37894736842105, "avg_time_deser_ns": 1066.9368421052632, "avg_time_total_ns": 1554.3157894736842, "median_size_bytes": 258.0, "avg_ops_per_sec": 643369.9038331301, "min_ops_per_sec": 555247.084952804, "max_ops_per_sec": 716845.8781362007, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 487.37894736842105, "ser_median_ns": 494.0, "ser_std_ns": 59.70729649045692, "ser_mad_ns": 41.0, "ser_cv": 0.12250692569476701, "ser_min_ns": 363.0, "ser_max_ns": 624.0, "ser_p5_ns": 396.4, "ser_p25_ns": 437.5, "ser_p50_ns": 494.0, "ser_p75_ns": 522.0, "ser_p95_ns": 589.1, "ser_p99_ns": 607.08, "ser_ci_low_ns": 475.5092105263158, "ser_ci_high_ns": 499.7392105263158, "deser_mean_ns": 1066.9368421052632, "deser_median_ns": 1056.0, "deser_std_ns": 69.67581627006845, "deser_mad_ns": 41.0, "deser_cv": 0.06530453680143354, "deser_min_ns": 925.0, "deser_max_ns": 1257.0, "deser_p5_ns": 979.4, "deser_p25_ns": 1019.0, "deser_p50_ns": 1056.0, "deser_p75_ns": 1110.0, "deser_p95_ns": 1204.5, "deser_p99_ns": 1252.3, "deser_ci_low_ns": 1053.413157894737, "deser_ci_high_ns": 1080.6634210526315, "total_mean_ns": 1554.3157894736842, "total_median_ns": 1550.0, "total_std_ns": 92.82450418842832, "total_mad_ns": 65.0, "total_cv": 0.059720492333067116, "total_min_ns": 1395.0, "total_max_ns": 1801.0, "total_p5_ns": 1413.4, "total_p25_ns": 1485.5, "total_p50_ns": 1550.0, "total_p75_ns": 1614.5, "total_p95_ns": 1714.6999999999998, "total_p99_ns": 1756.8200000000002, "total_ci_low_ns": 1535.8205263157895, "total_ci_high_ns": 1573.0665789473685, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.882982962560606}, {"serializer": "postcard", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "1.1.3", "avg_time_ser_ns": 257.9247311827957, "avg_time_deser_ns": 361.63440860215053, "avg_time_total_ns": 619.5591397849462, "median_size_bytes": 96.0, "avg_ops_per_sec": 1614050.9207032404, "min_ops_per_sec": 1254705.1442910915, "max_ops_per_sec": 2020202.0202020202, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 257.9247311827957, "ser_median_ns": 259.0, "ser_std_ns": 44.71898647426669, "ser_mad_ns": 25.0, "ser_cv": 0.17337998674727154, "ser_min_ns": 155.0, "ser_max_ns": 355.0, "ser_p5_ns": 163.4, "ser_p25_ns": 234.0, "ser_p50_ns": 259.0, "ser_p75_ns": 286.0, "ser_p95_ns": 331.5999999999999, "ser_p99_ns": 350.4, "ser_ci_low_ns": 249.04274193548386, "ser_ci_high_ns": 266.96827956989245, "deser_mean_ns": 361.63440860215053, "deser_median_ns": 357.0, "deser_std_ns": 40.892963396567005, "deser_mad_ns": 30.0, "deser_cv": 0.11307818731805219, "deser_min_ns": 289.0, "deser_max_ns": 458.0, "deser_p5_ns": 304.6, "deser_p25_ns": 329.0, "deser_p50_ns": 357.0, "deser_p75_ns": 391.0, "deser_p95_ns": 430.79999999999995, "deser_p99_ns": 455.24, "deser_ci_low_ns": 353.13790322580644, "deser_ci_high_ns": 369.97903225806454, "total_mean_ns": 619.5591397849462, "total_median_ns": 607.0, "total_std_ns": 62.29461250443793, "total_mad_ns": 43.0, "total_cv": 0.10054667666763963, "total_min_ns": 495.0, "total_max_ns": 797.0, "total_p5_ns": 540.6, "total_p25_ns": 574.0, "total_p50_ns": 607.0, "total_p75_ns": 662.0, "total_p95_ns": 732.8, "total_p99_ns": 773.0799999999999, "total_ci_low_ns": 606.7188172043011, "total_ci_high_ns": 632.1225806451613, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.7509157509157509, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.65629014408586}, {"serializer": "bson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "2.15.0", "avg_time_ser_ns": 817.9278350515464, "avg_time_deser_ns": 1189.298969072165, "avg_time_total_ns": 2007.2268041237114, "median_size_bytes": 294.0, "avg_ops_per_sec": 498199.8038017267, "min_ops_per_sec": 443458.9800443459, "max_ops_per_sec": 580046.403712297, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 817.9278350515464, "ser_median_ns": 820.0, "ser_std_ns": 79.35669046341235, "ser_mad_ns": 64.0, "ser_cv": 0.09702162839147202, "ser_min_ns": 641.0, "ser_max_ns": 980.0, "ser_p5_ns": 689.4, "ser_p25_ns": 757.0, "ser_p50_ns": 820.0, "ser_p75_ns": 884.0, "ser_p95_ns": 951.5999999999999, "ser_p99_ns": 975.1999999999999, "ser_ci_low_ns": 801.8958762886598, "ser_ci_high_ns": 834.0252577319587, "deser_mean_ns": 1189.298969072165, "deser_median_ns": 1181.0, "deser_std_ns": 81.82643788181248, "deser_mad_ns": 57.0, "deser_cv": 0.0688022440191381, "deser_min_ns": 1030.0, "deser_max_ns": 1380.0, "deser_p5_ns": 1068.6, "deser_p25_ns": 1134.0, "deser_p50_ns": 1181.0, "deser_p75_ns": 1242.0, "deser_p95_ns": 1334.8, "deser_p99_ns": 1364.6399999999999, "deser_ci_low_ns": 1173.2976804123712, "deser_ci_high_ns": 1205.0824742268042, "total_mean_ns": 2007.2268041237114, "total_median_ns": 2002.0, "total_std_ns": 113.47829318444556, "total_mad_ns": 81.0, "total_cv": 0.056534863400245605, "total_min_ns": 1724.0, "total_max_ns": 2255.0, "total_p5_ns": 1829.8, "total_p25_ns": 1931.0, "total_p50_ns": 2002.0, "total_p75_ns": 2085.0, "total_p95_ns": 2206.7999999999997, "total_p99_ns": 2246.36, "total_ci_low_ns": 1983.6448453608248, "total_ci_high_ns": 2030.3030927835052, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.953466028786536}, {"serializer": "speedy", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.8.7", "avg_time_ser_ns": 220.16483516483515, "avg_time_deser_ns": 293.4945054945055, "avg_time_total_ns": 513.6593406593406, "median_size_bytes": 133.0, "avg_ops_per_sec": 1946815.565967097, "min_ops_per_sec": 1512859.30408472, "max_ops_per_sec": 2631578.947368421, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 220.16483516483515, "ser_median_ns": 223.0, "ser_std_ns": 42.14321185256654, "ser_mad_ns": 29.0, "ser_cv": 0.19141663481824583, "ser_min_ns": 133.0, "ser_max_ns": 331.0, "ser_p5_ns": 154.0, "ser_p25_ns": 189.0, "ser_p50_ns": 223.0, "ser_p75_ns": 242.0, "ser_p95_ns": 302.0, "ser_p99_ns": 323.79999999999995, "ser_ci_low_ns": 211.69175824175824, "ser_ci_high_ns": 228.69285714285712, "deser_mean_ns": 293.4945054945055, "deser_median_ns": 285.0, "deser_std_ns": 43.83564597863089, "deser_mad_ns": 30.0, "deser_cv": 0.14935763756385395, "deser_min_ns": 228.0, "deser_max_ns": 412.0, "deser_p5_ns": 234.0, "deser_p25_ns": 260.0, "deser_p50_ns": 285.0, "deser_p75_ns": 321.0, "deser_p95_ns": 383.0, "deser_p99_ns": 411.1, "deser_ci_low_ns": 284.59148351648355, "deser_ci_high_ns": 302.70412087912086, "total_mean_ns": 513.6593406593406, "total_median_ns": 504.0, "total_std_ns": 65.05403220575268, "total_mad_ns": 51.0, "total_cv": 0.12664820252708414, "total_min_ns": 380.0, "total_max_ns": 661.0, "total_p5_ns": 421.0, "total_p25_ns": 464.0, "total_p50_ns": 504.0, "total_p75_ns": 561.5, "total_p95_ns": 623.5, "total_p99_ns": 653.8, "total_ci_low_ns": 500.0873626373627, "total_ci_high_ns": 527.231043956044, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "rkyv", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.8.17", "avg_time_ser_ns": 415.7931034482759, "avg_time_deser_ns": 344.62068965517244, "avg_time_total_ns": 760.4137931034483, "median_size_bytes": 136.0, "avg_ops_per_sec": 1315073.4627244694, "min_ops_per_sec": 1051524.7108307045, "max_ops_per_sec": 1666666.6666666667, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 415.7931034482759, "ser_median_ns": 413.0, "ser_std_ns": 57.55424901596319, "ser_mad_ns": 33.0, "ser_cv": 0.13842040317324036, "ser_min_ns": 265.0, "ser_max_ns": 569.0, "ser_p5_ns": 324.1, "ser_p25_ns": 379.5, "ser_p50_ns": 413.0, "ser_p75_ns": 439.5, "ser_p95_ns": 511.80000000000007, "ser_p99_ns": 562.12, "ser_ci_low_ns": 403.8502873563218, "ser_ci_high_ns": 427.82758620689657, "deser_mean_ns": 344.62068965517244, "deser_median_ns": 342.0, "deser_std_ns": 38.28328962661287, "deser_mad_ns": 26.0, "deser_cv": 0.11108819283287703, "deser_min_ns": 251.0, "deser_max_ns": 436.0, "deser_p5_ns": 286.6, "deser_p25_ns": 320.5, "deser_p50_ns": 342.0, "deser_p75_ns": 371.0, "deser_p95_ns": 416.6, "deser_p99_ns": 426.54, "deser_ci_low_ns": 336.63045977011495, "deser_ci_high_ns": 352.7244252873563, "total_mean_ns": 760.4137931034483, "total_median_ns": 756.0, "total_std_ns": 69.7166277126993, "total_mad_ns": 47.0, "total_cv": 0.09168248701561219, "total_min_ns": 600.0, "total_max_ns": 951.0, "total_p5_ns": 651.6, "total_p25_ns": 712.5, "total_p50_ns": 756.0, "total_p75_ns": 806.0, "total_p95_ns": 874.8, "total_p99_ns": 929.5, "total_ci_low_ns": 745.619540229885, "total_ci_high_ns": 774.5416666666666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.993179234558545, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.6469007166512584}, {"serializer": "flexbuffers", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "2.0.0", "avg_time_ser_ns": 1615.8111111111111, "avg_time_deser_ns": 1108.0555555555557, "avg_time_total_ns": 2723.866666666667, "median_size_bytes": 306.0, "avg_ops_per_sec": 367125.1652063243, "min_ops_per_sec": 342231.34839151264, "max_ops_per_sec": 396667.98889329634, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 1615.8111111111111, "ser_median_ns": 1623.0, "ser_std_ns": 72.85276740009732, "ser_mad_ns": 50.5, "ser_cv": 0.045087428164793455, "ser_min_ns": 1410.0, "ser_max_ns": 1774.0, "ser_p5_ns": 1495.8, "ser_p25_ns": 1567.5, "ser_p50_ns": 1623.0, "ser_p75_ns": 1671.75, "ser_p95_ns": 1719.65, "ser_p99_ns": 1756.2, "ser_ci_low_ns": 1600.1533333333334, "ser_ci_high_ns": 1630.2119444444445, "deser_mean_ns": 1108.0555555555557, "deser_median_ns": 1108.0, "deser_std_ns": 47.75060705799447, "deser_mad_ns": 31.0, "deser_cv": 0.04309405500345452, "deser_min_ns": 1019.0, "deser_max_ns": 1224.0, "deser_p5_ns": 1033.9, "deser_p25_ns": 1074.25, "deser_p50_ns": 1108.0, "deser_p75_ns": 1137.75, "deser_p95_ns": 1184.1, "deser_p99_ns": 1219.55, "deser_ci_low_ns": 1098.2769444444446, "deser_ci_high_ns": 1118.0016666666666, "total_mean_ns": 2723.866666666667, "total_median_ns": 2729.5, "total_std_ns": 88.54456124371896, "total_mad_ns": 53.5, "total_cv": 0.03250693667472183, "total_min_ns": 2521.0, "total_max_ns": 2922.0, "total_p5_ns": 2587.15, "total_p25_ns": 2665.25, "total_p50_ns": 2729.5, "total_p75_ns": 2779.25, "total_p95_ns": 2879.1, "total_p99_ns": 2914.88, "total_ci_low_ns": 2705.132222222222, "total_ci_high_ns": 2741.9602777777777, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.35255706739956}, {"serializer": "minicbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.25.1", "avg_time_ser_ns": 350.1758241758242, "avg_time_deser_ns": 455.43956043956047, "avg_time_total_ns": 805.6153846153846, "median_size_bytes": 103.0, "avg_ops_per_sec": 1241287.119259047, "min_ops_per_sec": 1012145.7489878542, "max_ops_per_sec": 1490312.9657228019, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 350.1758241758242, "ser_median_ns": 347.0, "ser_std_ns": 49.2055989150723, "ser_mad_ns": 29.0, "ser_cv": 0.14051683616618274, "ser_min_ns": 230.0, "ser_max_ns": 465.0, "ser_p5_ns": 256.0, "ser_p25_ns": 325.0, "ser_p50_ns": 347.0, "ser_p75_ns": 386.0, "ser_p95_ns": 423.0, "ser_p99_ns": 457.79999999999995, "ser_ci_low_ns": 339.6151098901099, "ser_ci_high_ns": 359.84615384615387, "deser_mean_ns": 455.43956043956047, "deser_median_ns": 452.0, "deser_std_ns": 50.8663190881984, "deser_mad_ns": 31.0, "deser_cv": 0.11168621153398611, "deser_min_ns": 351.0, "deser_max_ns": 565.0, "deser_p5_ns": 368.5, "deser_p25_ns": 424.0, "deser_p50_ns": 452.0, "deser_p75_ns": 484.0, "deser_p95_ns": 543.5, "deser_p99_ns": 559.5999999999999, "deser_ci_low_ns": 444.63653846153846, "deser_ci_high_ns": 465.85054945054947, "total_mean_ns": 805.6153846153846, "total_median_ns": 802.0, "total_std_ns": 68.1750637420994, "total_mad_ns": 49.0, "total_cv": 0.08462482847773246, "total_min_ns": 671.0, "total_max_ns": 988.0, "total_p5_ns": 700.0, "total_p25_ns": 755.0, "total_p50_ns": 802.0, "total_p75_ns": 852.0, "total_p95_ns": 920.5, "total_p99_ns": 942.0999999999997, "total_ci_low_ns": 791.5244505494506, "total_ci_high_ns": 819.0879120879121, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 4.363283016215808}, {"serializer": "bincode", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "2.0.1", "avg_time_ser_ns": 270.12359550561797, "avg_time_deser_ns": 409.82022471910113, "avg_time_total_ns": 679.943820224719, "median_size_bytes": 99.0, "avg_ops_per_sec": 1470709.7413864331, "min_ops_per_sec": 1259445.8438287154, "max_ops_per_sec": 1739130.4347826086, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 270.12359550561797, "ser_median_ns": 275.0, "ser_std_ns": 37.18773631696315, "ser_mad_ns": 22.0, "ser_cv": 0.13766933705793105, "ser_min_ns": 189.0, "ser_max_ns": 362.0, "ser_p5_ns": 213.0, "ser_p25_ns": 243.0, "ser_p50_ns": 275.0, "ser_p75_ns": 289.0, "ser_p95_ns": 334.19999999999993, "ser_p99_ns": 345.2800000000001, "ser_ci_low_ns": 262.6154494382023, "ser_ci_high_ns": 277.9109550561798, "deser_mean_ns": 409.82022471910113, "deser_median_ns": 407.0, "deser_std_ns": 25.247664967528458, "deser_mad_ns": 18.0, "deser_cv": 0.06160668372292682, "deser_min_ns": 365.0, "deser_max_ns": 488.0, "deser_p5_ns": 375.0, "deser_p25_ns": 390.0, "deser_p50_ns": 407.0, "deser_p75_ns": 428.0, "deser_p95_ns": 452.0, "deser_p99_ns": 474.80000000000007, "deser_ci_low_ns": 404.4258426966292, "deser_ci_high_ns": 414.95533707865167, "total_mean_ns": 679.943820224719, "total_median_ns": 682.0, "total_std_ns": 45.33796310903705, "total_mad_ns": 26.0, "total_cv": 0.06667898399907952, "total_min_ns": 575.0, "total_max_ns": 794.0, "total_p5_ns": 604.0, "total_p25_ns": 654.0, "total_p50_ns": 682.0, "total_p75_ns": 706.0, "total_p95_ns": 749.6, "total_p99_ns": 785.2, "total_ci_low_ns": 670.3367977528089, "total_ci_high_ns": 689.113202247191, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.9614767255216693, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 2.9474498697302187}, {"serializer": "ciborium", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.2.2", "avg_time_ser_ns": 597.7894736842105, "avg_time_deser_ns": 1527.8526315789475, "avg_time_total_ns": 2125.642105263158, "median_size_bytes": 197.0, "avg_ops_per_sec": 470446.0819269471, "min_ops_per_sec": 402090.8725371934, "max_ops_per_sec": 568504.8322910744, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 597.7894736842105, "ser_median_ns": 596.0, "ser_std_ns": 41.61753280714857, "ser_mad_ns": 33.0, "ser_cv": 0.06961904590031896, "ser_min_ns": 500.0, "ser_max_ns": 721.0, "ser_p5_ns": 536.1, "ser_p25_ns": 564.5, "ser_p50_ns": 596.0, "ser_p75_ns": 628.0, "ser_p95_ns": 662.5, "ser_p99_ns": 687.1600000000001, "ser_ci_low_ns": 589.5678947368422, "ser_ci_high_ns": 606.2023684210527, "deser_mean_ns": 1527.8526315789475, "deser_median_ns": 1506.0, "deser_std_ns": 132.4107863785428, "deser_mad_ns": 85.0, "deser_cv": 0.08666463220454967, "deser_min_ns": 1259.0, "deser_max_ns": 1886.0, "deser_p5_ns": 1359.7, "deser_p25_ns": 1430.5, "deser_p50_ns": 1506.0, "deser_p75_ns": 1606.0, "deser_p95_ns": 1778.5, "deser_p99_ns": 1861.56, "deser_ci_low_ns": 1502.1344736842107, "deser_ci_high_ns": 1555.7694736842104, "total_mean_ns": 2125.642105263158, "total_median_ns": 2114.0, "total_std_ns": 141.5402292853838, "total_mad_ns": 93.0, "total_cv": 0.06658704630235054, "total_min_ns": 1759.0, "total_max_ns": 2487.0, "total_p5_ns": 1926.7, "total_p25_ns": 2022.5, "total_p50_ns": 2114.0, "total_p75_ns": 2204.5, "total_p95_ns": 2384.3, "total_p99_ns": 2441.88, "total_ci_low_ns": 2097.7576315789474, "total_ci_high_ns": 2153.077631578947, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.472734332022387}, {"serializer": "nanoserde", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.1.37", "avg_time_ser_ns": 422.86813186813185, "avg_time_deser_ns": 336.34065934065933, "avg_time_total_ns": 759.2087912087912, "median_size_bytes": 181.0, "avg_ops_per_sec": 1317160.722556739, "min_ops_per_sec": 1060445.3870625664, "max_ops_per_sec": 1605136.4365971107, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 422.86813186813185, "ser_median_ns": 411.0, "ser_std_ns": 55.895380208864566, "ser_mad_ns": 36.0, "ser_cv": 0.1321815856918135, "ser_min_ns": 328.0, "ser_max_ns": 587.0, "ser_p5_ns": 349.5, "ser_p25_ns": 382.0, "ser_p50_ns": 411.0, "ser_p75_ns": 461.0, "ser_p95_ns": 524.0, "ser_p99_ns": 548.2999999999997, "ser_ci_low_ns": 411.3947802197802, "ser_ci_high_ns": 434.5763736263736, "deser_mean_ns": 336.34065934065933, "deser_median_ns": 331.0, "deser_std_ns": 38.811000668544644, "deser_mad_ns": 27.0, "deser_cv": 0.11539193847281873, "deser_min_ns": 267.0, "deser_max_ns": 430.0, "deser_p5_ns": 286.0, "deser_p25_ns": 306.5, "deser_p50_ns": 331.0, "deser_p75_ns": 358.5, "deser_p95_ns": 409.0, "deser_p99_ns": 430.0, "deser_ci_low_ns": 328.2519230769231, "deser_ci_high_ns": 344.4398351648352, "total_mean_ns": 759.2087912087912, "total_median_ns": 756.0, "total_std_ns": 74.96303036734788, "total_mad_ns": 52.0, "total_cv": 0.09873835924369873, "total_min_ns": 623.0, "total_max_ns": 943.0, "total_p5_ns": 650.5, "total_p25_ns": 699.0, "total_p50_ns": 756.0, "total_p75_ns": 805.5, "total_p95_ns": 886.5, "total_p99_ns": 939.4, "total_ci_low_ns": 743.7796703296704, "total_ci_high_ns": 774.4508241758242, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.9945658736867528, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.4840733506442336}, {"serializer": "serde_avro_fast", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "2.1.0", "avg_time_ser_ns": 432.7040816326531, "avg_time_deser_ns": 704.734693877551, "avg_time_total_ns": 1137.438775510204, "median_size_bytes": 96.0, "avg_ops_per_sec": 879168.1992302793, "min_ops_per_sec": 733675.7153338224, "max_ops_per_sec": 1048218.0293501049, "runs": 98, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 1, "ser_mean_ns": 432.7040816326531, "ser_median_ns": 432.0, "ser_std_ns": 29.781406080253813, "ser_mad_ns": 22.0, "ser_cv": 0.06882626567303086, "ser_min_ns": 370.0, "ser_max_ns": 509.0, "ser_p5_ns": 388.0, "ser_p25_ns": 412.5, "ser_p50_ns": 432.0, "ser_p75_ns": 454.0, "ser_p95_ns": 483.45, "ser_p99_ns": 498.33000000000004, "ser_ci_low_ns": 426.5709183673469, "ser_ci_high_ns": 438.45969387755105, "deser_mean_ns": 704.734693877551, "deser_median_ns": 698.0, "deser_std_ns": 75.36489256509705, "deser_mad_ns": 53.5, "deser_cv": 0.10694080087135861, "deser_min_ns": 553.0, "deser_max_ns": 919.0, "deser_p5_ns": 599.35, "deser_p25_ns": 649.25, "deser_p50_ns": 698.0, "deser_p75_ns": 757.0, "deser_p95_ns": 835.0, "deser_p99_ns": 881.1700000000001, "deser_ci_low_ns": 690.1107142857143, "deser_ci_high_ns": 719.929081632653, "total_mean_ns": 1137.438775510204, "total_median_ns": 1128.0, "total_std_ns": 86.56051650170457, "total_mad_ns": 60.0, "total_cv": 0.07610125341724648, "total_min_ns": 954.0, "total_max_ns": 1363.0, "total_p5_ns": 1006.7, "total_p25_ns": 1075.25, "total_p50_ns": 1128.0, "total_p75_ns": 1194.0, "total_p95_ns": 1279.6999999999998, "total_p99_ns": 1338.75, "total_ci_low_ns": 1120.518112244898, "total_ci_high_ns": 1154.3367346938774, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 8.072307633806963}, {"serializer": "rmp-serde", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "1.3.1", "avg_time_ser_ns": 305.4479166666667, "avg_time_deser_ns": 583.5833333333334, "avg_time_total_ns": 889.03125, "median_size_bytes": 197.0, "avg_ops_per_sec": 1124819.8530704067, "min_ops_per_sec": 935453.6950420954, "max_ops_per_sec": 1371742.1124828532, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 305.4479166666667, "ser_median_ns": 307.5, "ser_std_ns": 47.86557268272901, "ser_mad_ns": 31.5, "ser_cv": 0.1567061684528181, "ser_min_ns": 176.0, "ser_max_ns": 422.0, "ser_p5_ns": 228.0, "ser_p25_ns": 272.5, "ser_p50_ns": 307.5, "ser_p75_ns": 337.0, "ser_p95_ns": 381.25, "ser_p99_ns": 404.9, "ser_ci_low_ns": 295.76015625, "ser_ci_high_ns": 314.41692708333335, "deser_mean_ns": 583.5833333333334, "deser_median_ns": 578.0, "deser_std_ns": 48.16106019699156, "deser_mad_ns": 34.0, "deser_cv": 0.08252644900241307, "deser_min_ns": 501.0, "deser_max_ns": 708.0, "deser_p5_ns": 514.5, "deser_p25_ns": 543.75, "deser_p50_ns": 578.0, "deser_p75_ns": 609.0, "deser_p95_ns": 675.25, "deser_p99_ns": 700.4, "deser_ci_low_ns": 574.4164062499999, "deser_ci_high_ns": 592.9377604166667, "total_mean_ns": 889.03125, "total_median_ns": 890.5, "total_std_ns": 69.36106189999356, "total_mad_ns": 46.5, "total_cv": 0.07801869945515814, "total_min_ns": 729.0, "total_max_ns": 1069.0, "total_p5_ns": 787.0, "total_p25_ns": 838.75, "total_p50_ns": 890.5, "total_p75_ns": 928.75, "total_p95_ns": 999.5, "total_p99_ns": 1039.55, "total_ci_low_ns": 874.9885416666667, "total_ci_high_ns": 903.0942708333333, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.554933499953825}, {"serializer": "bitcode", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.6.9", "avg_time_ser_ns": 1257.8842105263159, "avg_time_deser_ns": 914.0421052631579, "avg_time_total_ns": 2171.926315789474, "median_size_bytes": 97.0, "avg_ops_per_sec": 460420.77612403245, "min_ops_per_sec": 379506.6413662239, "max_ops_per_sec": 554631.1702717693, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1257.8842105263159, "ser_median_ns": 1263.0, "ser_std_ns": 90.7971626651423, "ser_mad_ns": 63.0, "ser_cv": 0.07218244883378537, "ser_min_ns": 1072.0, "ser_max_ns": 1482.0, "ser_p5_ns": 1109.4, "ser_p25_ns": 1188.5, "ser_p50_ns": 1263.0, "ser_p75_ns": 1320.0, "ser_p95_ns": 1403.3, "ser_p99_ns": 1439.7, "ser_ci_low_ns": 1239.3155263157894, "ser_ci_high_ns": 1275.6536842105263, "deser_mean_ns": 914.0421052631579, "deser_median_ns": 897.0, "deser_std_ns": 152.81075180713282, "deser_mad_ns": 108.0, "deser_cv": 0.16718130480776675, "deser_min_ns": 688.0, "deser_max_ns": 1298.0, "deser_p5_ns": 708.0, "deser_p25_ns": 796.5, "deser_p50_ns": 897.0, "deser_p75_ns": 1023.0, "deser_p95_ns": 1195.3, "deser_p99_ns": 1266.04, "deser_ci_low_ns": 883.2097368421053, "deser_ci_high_ns": 945.2110526315789, "total_mean_ns": 2171.926315789474, "total_median_ns": 2181.0, "total_std_ns": 203.32738730375587, "total_mad_ns": 152.0, "total_cv": 0.09361615346966702, "total_min_ns": 1803.0, "total_max_ns": 2635.0, "total_p5_ns": 1843.9, "total_p25_ns": 2014.0, "total_p50_ns": 2181.0, "total_p75_ns": 2294.0, "total_p95_ns": 2518.9, "total_p99_ns": 2624.66, "total_ci_low_ns": 2128.1465789473687, "total_ci_high_ns": 2210.704736842105, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.844863954427682}, {"serializer": "sonic-rs", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "rust", "serializer_version": "0.3.17", "avg_time_ser_ns": 417.3157894736842, "avg_time_deser_ns": 636.5894736842105, "avg_time_total_ns": 1053.9052631578948, "median_size_bytes": 258.0, "avg_ops_per_sec": 948851.889214051, "min_ops_per_sec": 786782.0613690008, "max_ops_per_sec": 1107419.7120708749, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 417.3157894736842, "ser_median_ns": 420.0, "ser_std_ns": 56.16754252365592, "ser_mad_ns": 39.0, "ser_cv": 0.13459242123211784, "ser_min_ns": 288.0, "ser_max_ns": 568.0, "ser_p5_ns": 322.1, "ser_p25_ns": 378.5, "ser_p50_ns": 420.0, "ser_p75_ns": 458.0, "ser_p95_ns": 508.6, "ser_p99_ns": 544.5, "ser_ci_low_ns": 406.0205263157894, "ser_ci_high_ns": 428.9268421052631, "deser_mean_ns": 636.5894736842105, "deser_median_ns": 634.0, "deser_std_ns": 60.54635901642292, "deser_mad_ns": 47.0, "deser_cv": 0.09511052494477441, "deser_min_ns": 516.0, "deser_max_ns": 811.0, "deser_p5_ns": 550.4, "deser_p25_ns": 585.5, "deser_p50_ns": 634.0, "deser_p75_ns": 678.5, "deser_p95_ns": 738.6999999999999, "deser_p99_ns": 762.1200000000001, "deser_ci_low_ns": 624.4631578947368, "deser_ci_high_ns": 648.9302631578947, "total_mean_ns": 1053.9052631578948, "total_median_ns": 1042.0, "total_std_ns": 78.25083422629349, "total_mad_ns": 50.0, "total_cv": 0.0742484518881941, "total_min_ns": 903.0, "total_max_ns": 1271.0, "total_p5_ns": 940.1, "total_p25_ns": 993.0, "total_p50_ns": 1042.0, "total_p75_ns": 1097.5, "total_p95_ns": 1188.8, "total_p99_ns": 1239.04, "total_ci_low_ns": 1038.5365789473683, "total_ci_high_ns": 1068.9384210526316, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.462599897325924}, {"serializer": "minicbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.25.1", "avg_time_ser_ns": 18099.964705882354, "avg_time_deser_ns": 65102.882352941175, "avg_time_total_ns": 83202.84705882354, "median_size_bytes": 11478.0, "avg_ops_per_sec": 12018.819491753817, "min_ops_per_sec": 11247.202258438214, "max_ops_per_sec": 13082.669387861899, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 18099.964705882354, "ser_median_ns": 18129.0, "ser_std_ns": 388.49089733341805, "ser_mad_ns": 291.0, "ser_cv": 0.021463627341061133, "ser_min_ns": 17179.0, "ser_max_ns": 19174.0, "ser_p5_ns": 17430.6, "ser_p25_ns": 17848.0, "ser_p50_ns": 18129.0, "ser_p75_ns": 18428.0, "ser_p95_ns": 18583.4, "ser_p99_ns": 18733.839999999997, "ser_ci_low_ns": 18019.795294117648, "ser_ci_high_ns": 18178.495000000003, "deser_mean_ns": 65102.882352941175, "deser_median_ns": 65332.0, "deser_std_ns": 2595.676462026461, "deser_mad_ns": 1467.0, "deser_cv": 0.03987037698199849, "deser_min_ns": 58392.0, "deser_max_ns": 70457.0, "deser_p5_ns": 59215.4, "deser_p25_ns": 63685.0, "deser_p50_ns": 65332.0, "deser_p75_ns": 66778.0, "deser_p95_ns": 69044.4, "deser_p99_ns": 70391.48, "deser_ci_low_ns": 64563.11294117647, "deser_ci_high_ns": 65665.31852941176, "total_mean_ns": 83202.84705882354, "total_median_ns": 83593.0, "total_std_ns": 2776.5116882343495, "total_mad_ns": 1621.0, "total_cv": 0.0333703927976333, "total_min_ns": 76437.0, "total_max_ns": 88911.0, "total_p5_ns": 77088.2, "total_p25_ns": 81702.0, "total_p50_ns": 83593.0, "total_p75_ns": 84911.0, "total_p95_ns": 87652.0, "total_p99_ns": 88661.52, "total_ci_low_ns": 82624.56264705882, "total_ci_high_ns": 83815.58852941176, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.847133139227905}, {"serializer": "simd-json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.14.3", "avg_time_ser_ns": 30299.977777777778, "avg_time_deser_ns": 130134.36666666667, "avg_time_total_ns": 160434.34444444443, "median_size_bytes": 26978.0, "avg_ops_per_sec": 6233.079353818049, "min_ops_per_sec": 5814.021093268527, "max_ops_per_sec": 6734.278826080515, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 30299.977777777778, "ser_median_ns": 30273.5, "ser_std_ns": 999.9966851380765, "ser_mad_ns": 641.5, "ser_cv": 0.03300321513342763, "ser_min_ns": 27650.0, "ser_max_ns": 32922.0, "ser_p5_ns": 28622.2, "ser_p25_ns": 29714.0, "ser_p50_ns": 30273.5, "ser_p75_ns": 30927.25, "ser_p95_ns": 31827.95, "ser_p99_ns": 32888.18, "ser_ci_low_ns": 30096.38888888889, "ser_ci_high_ns": 30510.38111111111, "deser_mean_ns": 130134.36666666667, "deser_median_ns": 130050.5, "deser_std_ns": 3766.5390499245777, "deser_mad_ns": 2493.5, "deser_cv": 0.028943461642014966, "deser_min_ns": 120844.0, "deser_max_ns": 140132.0, "deser_p5_ns": 122922.2, "deser_p25_ns": 128153.75, "deser_p50_ns": 130050.5, "deser_p75_ns": 132657.25, "deser_p95_ns": 135572.0, "deser_p99_ns": 139225.98, "deser_ci_low_ns": 129369.21861111111, "deser_ci_high_ns": 130884.5375, "total_mean_ns": 160434.34444444443, "total_median_ns": 160565.5, "total_std_ns": 4255.270028430208, "total_mad_ns": 2765.0, "total_cv": 0.026523435759129074, "total_min_ns": 148494.0, "total_max_ns": 171998.0, "total_p5_ns": 153026.25, "total_p25_ns": 157859.5, "total_p50_ns": 160565.5, "total_p75_ns": 163340.25, "total_p95_ns": 166046.75, "total_p99_ns": 171132.03, "total_ci_low_ns": 159582.9075, "total_ci_high_ns": 161375.79972222223, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 31.720589060017893}, {"serializer": "rmp-serde", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "1.3.1", "avg_time_ser_ns": 12995.759493670887, "avg_time_deser_ns": 80280.43037974683, "avg_time_total_ns": 93276.18987341772, "median_size_bytes": 20878.0, "avg_ops_per_sec": 10720.84956897435, "min_ops_per_sec": 10102.642851369917, "max_ops_per_sec": 11426.873721618502, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 12995.759493670887, "ser_median_ns": 13046.0, "ser_std_ns": 399.3928152862849, "ser_mad_ns": 234.0, "ser_cv": 0.030732548988829368, "ser_min_ns": 11867.0, "ser_max_ns": 13845.0, "ser_p5_ns": 12191.6, "ser_p25_ns": 12817.0, "ser_p50_ns": 13046.0, "ser_p75_ns": 13273.5, "ser_p95_ns": 13584.3, "ser_p99_ns": 13841.1, "ser_ci_low_ns": 12908.895569620254, "ser_ci_high_ns": 13081.150632911393, "deser_mean_ns": 80280.43037974683, "deser_median_ns": 80014.0, "deser_std_ns": 2125.732107271693, "deser_mad_ns": 1116.0, "deser_cv": 0.02647883297606204, "deser_min_ns": 75379.0, "deser_max_ns": 85174.0, "deser_p5_ns": 76902.3, "deser_p25_ns": 79127.0, "deser_p50_ns": 80014.0, "deser_p75_ns": 81372.0, "deser_p95_ns": 84681.4, "deser_p99_ns": 85166.2, "deser_ci_low_ns": 79827.77531645569, "deser_ci_high_ns": 80725.90569620254, "total_mean_ns": 93276.18987341772, "total_median_ns": 93128.0, "total_std_ns": 2276.894292085611, "total_mad_ns": 1201.0, "total_cv": 0.02441024118990618, "total_min_ns": 87513.0, "total_max_ns": 98984.0, "total_p5_ns": 89750.5, "total_p25_ns": 92188.5, "total_p50_ns": 93128.0, "total_p75_ns": 94600.5, "total_p95_ns": 97600.6, "total_p99_ns": 98619.74, "total_ci_low_ns": 92766.05348101266, "total_ci_high_ns": 93746.64905063291, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.293831328878458}, {"serializer": "flexbuffers", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "2.0.0", "avg_time_ser_ns": 129814.8488372093, "avg_time_deser_ns": 123699.58139534884, "avg_time_total_ns": 253514.43023255814, "median_size_bytes": 31436.0, "avg_ops_per_sec": 3944.548636078282, "min_ops_per_sec": 3759.7377206966044, "max_ops_per_sec": 4165.1914946789675, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 129814.8488372093, "ser_median_ns": 130150.0, "ser_std_ns": 3729.161380311986, "ser_mad_ns": 2211.5, "ser_cv": 0.028726770579137962, "ser_min_ns": 121632.0, "ser_max_ns": 139378.0, "ser_p5_ns": 123328.25, "ser_p25_ns": 127696.0, "ser_p50_ns": 130150.0, "ser_p75_ns": 131723.0, "ser_p95_ns": 135794.0, "ser_p99_ns": 138806.80000000002, "ser_ci_low_ns": 128984.96453488372, "ser_ci_high_ns": 130569.58575581395, "deser_mean_ns": 123699.58139534884, "deser_median_ns": 123825.0, "deser_std_ns": 2692.4682813801223, "deser_mad_ns": 1988.0, "deser_cv": 0.021766187492380313, "deser_min_ns": 117629.0, "deser_max_ns": 130560.0, "deser_p5_ns": 119586.5, "deser_p25_ns": 121637.75, "deser_p50_ns": 123825.0, "deser_p75_ns": 125040.5, "deser_p95_ns": 128793.0, "deser_p99_ns": 129871.5, "deser_ci_low_ns": 123124.05639534885, "deser_ci_high_ns": 124270.91395348837, "total_mean_ns": 253514.43023255814, "total_median_ns": 253821.5, "total_std_ns": 5602.810398868006, "total_mad_ns": 3289.0, "total_cv": 0.022100558117060007, "total_min_ns": 240085.0, "total_max_ns": 265976.0, "total_p5_ns": 243754.25, "total_p25_ns": 250174.5, "total_p50_ns": 253821.5, "total_p75_ns": 256549.25, "total_p95_ns": 263217.25, "total_p99_ns": 265578.2, "total_ci_low_ns": 252376.85, "total_ci_high_ns": 254714.449127907, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 46.99226678839938}, {"serializer": "bincode", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "2.0.1", "avg_time_ser_ns": 10713.23595505618, "avg_time_deser_ns": 54404.87640449438, "avg_time_total_ns": 65118.11235955056, "median_size_bytes": 11078.0, "avg_ops_per_sec": 15356.71050288568, "min_ops_per_sec": 14479.533179850281, "max_ops_per_sec": 16670.27856035474, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 10713.23595505618, "ser_median_ns": 10545.0, "ser_std_ns": 695.3114740641569, "ser_mad_ns": 324.0, "ser_cv": 0.06490209652630681, "ser_min_ns": 8979.0, "ser_max_ns": 12483.0, "ser_p5_ns": 9915.2, "ser_p25_ns": 10251.0, "ser_p50_ns": 10545.0, "ser_p75_ns": 11147.0, "ser_p95_ns": 11969.4, "ser_p99_ns": 12328.12, "ser_ci_low_ns": 10572.780337078651, "ser_ci_high_ns": 10857.373033707865, "deser_mean_ns": 54404.87640449438, "deser_median_ns": 54287.0, "deser_std_ns": 1618.30007485566, "deser_mad_ns": 1035.0, "deser_cv": 0.029745496760690597, "deser_min_ns": 50597.0, "deser_max_ns": 58258.0, "deser_p5_ns": 51858.8, "deser_p25_ns": 53538.0, "deser_p50_ns": 54287.0, "deser_p75_ns": 55495.0, "deser_p95_ns": 57145.8, "deser_p99_ns": 57812.72, "deser_ci_low_ns": 54058.61825842696, "deser_ci_high_ns": 54732.2154494382, "total_mean_ns": 65118.11235955056, "total_median_ns": 65225.0, "total_std_ns": 1802.6786662063503, "total_mad_ns": 1257.0, "total_cv": 0.02768321440665901, "total_min_ns": 59987.0, "total_max_ns": 69063.0, "total_p5_ns": 62635.6, "total_p25_ns": 63877.0, "total_p50_ns": 65225.0, "total_p75_ns": 66252.0, "total_p95_ns": 68130.4, "total_p99_ns": 68981.16, "total_ci_low_ns": 64747.43651685393, "total_ci_high_ns": 65485.39550561798, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.9994237971766061, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 5.1222934946406005}, {"serializer": "serde_avro_fast", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "2.1.0", "avg_time_ser_ns": 27518.706666666665, "avg_time_deser_ns": 70538.30666666667, "avg_time_total_ns": 98057.01333333334, "median_size_bytes": 10778.0, "avg_ops_per_sec": 10198.148668883245, "min_ops_per_sec": 9718.645220856213, "max_ops_per_sec": 10787.952015189436, "runs": 75, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 24, "ser_mean_ns": 27518.706666666665, "ser_median_ns": 27502.0, "ser_std_ns": 535.4518368159265, "ser_mad_ns": 354.0, "ser_cv": 0.0194577399040529, "ser_min_ns": 26252.0, "ser_max_ns": 28891.0, "ser_p5_ns": 26825.7, "ser_p25_ns": 27100.0, "ser_p50_ns": 27502.0, "ser_p75_ns": 27839.5, "ser_p95_ns": 28592.899999999998, "ser_p99_ns": 28777.04, "ser_ci_low_ns": 27406.5, "ser_ci_high_ns": 27638.066, "deser_mean_ns": 70538.30666666667, "deser_median_ns": 70323.0, "deser_std_ns": 1589.3995889433636, "deser_mad_ns": 1098.0, "deser_cv": 0.022532431866477517, "deser_min_ns": 66412.0, "deser_max_ns": 74608.0, "deser_p5_ns": 68585.4, "deser_p25_ns": 69457.5, "deser_p50_ns": 70323.0, "deser_p75_ns": 71703.5, "deser_p95_ns": 73281.0, "deser_p99_ns": 74374.16, "deser_ci_low_ns": 70160.65000000001, "deser_ci_high_ns": 70886.386, "total_mean_ns": 98057.01333333334, "total_median_ns": 98074.0, "total_std_ns": 1956.8968229049522, "total_mad_ns": 1245.0, "total_cv": 0.01995672472964999, "total_min_ns": 92696.0, "total_max_ns": 102895.0, "total_p5_ns": 95661.5, "total_p25_ns": 96574.5, "total_p50_ns": 98074.0, "total_p75_ns": 99256.0, "total_p95_ns": 101514.2, "total_p99_ns": 102858.0, "total_ci_low_ns": 97623.88500000001, "total_ci_high_ns": 98515.45433333334, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.39677158227177}, {"serializer": "bson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "2.15.0", "avg_time_ser_ns": 51677.6976744186, "avg_time_deser_ns": 139505.58139534883, "avg_time_total_ns": 191183.27906976745, "median_size_bytes": 30578.0, "avg_ops_per_sec": 5230.582950902707, "min_ops_per_sec": 4904.677591018554, "max_ops_per_sec": 5546.311702717693, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 51677.6976744186, "ser_median_ns": 51628.5, "ser_std_ns": 2017.7090099170423, "ser_mad_ns": 1328.0, "ser_cv": 0.03904409640361832, "ser_min_ns": 47607.0, "ser_max_ns": 56931.0, "ser_p5_ns": 48594.0, "ser_p25_ns": 50162.0, "ser_p50_ns": 51628.5, "ser_p75_ns": 52813.5, "ser_p95_ns": 55311.0, "ser_p99_ns": 56557.0, "ser_ci_low_ns": 51233.54593023256, "ser_ci_high_ns": 52097.18866279069, "deser_mean_ns": 139505.58139534883, "deser_median_ns": 139373.0, "deser_std_ns": 3180.0081667121044, "deser_mad_ns": 1902.0, "deser_cv": 0.022794845445647003, "deser_min_ns": 130747.0, "deser_max_ns": 147722.0, "deser_p5_ns": 134209.0, "deser_p25_ns": 137806.25, "deser_p50_ns": 139373.0, "deser_p75_ns": 141470.5, "deser_p95_ns": 144144.0, "deser_p99_ns": 146892.4, "deser_ci_low_ns": 138841.20959302326, "deser_ci_high_ns": 140162.25436046513, "total_mean_ns": 191183.27906976745, "total_median_ns": 190956.5, "total_std_ns": 4667.750327642196, "total_mad_ns": 2653.0, "total_cv": 0.024415055282835794, "total_min_ns": 180300.0, "total_max_ns": 203887.0, "total_p5_ns": 182994.5, "total_p25_ns": 188771.25, "total_p50_ns": 190956.5, "total_p75_ns": 194019.0, "total_p95_ns": 198921.75, "total_p99_ns": 203621.8, "total_ci_low_ns": 190213.81104651163, "total_ci_high_ns": 192210.15232558138, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 38.1046190875498}, {"serializer": "serde_json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "1.0.150", "avg_time_ser_ns": 30376.16091954023, "avg_time_deser_ns": 103483.29885057472, "avg_time_total_ns": 133859.45977011495, "median_size_bytes": 26978.0, "avg_ops_per_sec": 7470.521707747524, "min_ops_per_sec": 7010.361314022125, "max_ops_per_sec": 8195.57930452314, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 30376.16091954023, "ser_median_ns": 30353.0, "ser_std_ns": 970.1123511242374, "ser_mad_ns": 663.0, "ser_cv": 0.0319366345764974, "ser_min_ns": 27525.0, "ser_max_ns": 32719.0, "ser_p5_ns": 28982.8, "ser_p25_ns": 29707.0, "ser_p50_ns": 30353.0, "ser_p75_ns": 30992.0, "ser_p95_ns": 31906.5, "ser_p99_ns": 32212.46, "ser_ci_low_ns": 30174.186206896553, "ser_ci_high_ns": 30572.505747126437, "deser_mean_ns": 103483.29885057472, "deser_median_ns": 103539.0, "deser_std_ns": 3835.4562177167295, "deser_mad_ns": 2417.0, "deser_cv": 0.03706352870770923, "deser_min_ns": 93996.0, "deser_max_ns": 112288.0, "deser_p5_ns": 95915.5, "deser_p25_ns": 101687.0, "deser_p50_ns": 103539.0, "deser_p75_ns": 106106.0, "deser_p95_ns": 109218.40000000001, "deser_p99_ns": 111350.6, "deser_ci_low_ns": 102679.2474137931, "deser_ci_high_ns": 104305.09626436782, "total_mean_ns": 133859.45977011495, "total_median_ns": 133894.0, "total_std_ns": 4365.443457067232, "total_mad_ns": 2946.0, "total_cv": 0.03261214010996515, "total_min_ns": 122017.0, "total_max_ns": 142646.0, "total_p5_ns": 126222.8, "total_p25_ns": 132133.5, "total_p50_ns": 133894.0, "total_p75_ns": 136921.5, "total_p95_ns": 140111.4, "total_p99_ns": 141734.4, "total_ci_low_ns": 132927.49942528736, "total_ci_high_ns": 134753.90459770113, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.189464524934998}, {"serializer": "nanoserde", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.1.37", "avg_time_ser_ns": 26545.60714285714, "avg_time_deser_ns": 58778.607142857145, "avg_time_total_ns": 85324.21428571429, "median_size_bytes": 19278.0, "avg_ops_per_sec": 11720.002444457652, "min_ops_per_sec": 10941.278160114665, "max_ops_per_sec": 12856.444935846339, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 26545.60714285714, "ser_median_ns": 26576.5, "ser_std_ns": 887.1692768189719, "ser_mad_ns": 511.5, "ser_cv": 0.03342056830889589, "ser_min_ns": 24429.0, "ser_max_ns": 29199.0, "ser_p5_ns": 24982.75, "ser_p25_ns": 26090.0, "ser_p50_ns": 26576.5, "ser_p75_ns": 27106.25, "ser_p95_ns": 27829.7, "ser_p99_ns": 28518.4, "ser_ci_low_ns": 26360.8625, "ser_ci_high_ns": 26732.427083333336, "deser_mean_ns": 58778.607142857145, "deser_median_ns": 58829.5, "deser_std_ns": 2065.3605304915222, "deser_mad_ns": 1271.5, "deser_cv": 0.035137963127840253, "deser_min_ns": 52971.0, "deser_max_ns": 64211.0, "deser_p5_ns": 55347.5, "deser_p25_ns": 57566.5, "deser_p50_ns": 58829.5, "deser_p75_ns": 60094.5, "deser_p95_ns": 61889.2, "deser_p99_ns": 64119.7, "deser_ci_low_ns": 58333.86875, "deser_ci_high_ns": 59209.42946428571, "total_mean_ns": 85324.21428571429, "total_median_ns": 85276.0, "total_std_ns": 2634.3550275844987, "total_mad_ns": 1586.5, "total_cv": 0.03087464736285963, "total_min_ns": 77782.0, "total_max_ns": 91397.0, "total_p5_ns": 80375.1, "total_p25_ns": 83836.75, "total_p50_ns": 85276.0, "total_p75_ns": 87016.75, "total_p95_ns": 88997.55, "total_p99_ns": 90856.67, "total_ci_low_ns": 84789.34196428572, "total_ci_high_ns": 85885.73809523809, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.378325092794666}, {"serializer": "prost", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.13.5", "avg_time_ser_ns": 39149.843373493975, "avg_time_deser_ns": 66211.55421686747, "avg_time_total_ns": 105361.39759036145, "median_size_bytes": 12578.0, "avg_ops_per_sec": 9491.142134313155, "min_ops_per_sec": 8997.82252694848, "max_ops_per_sec": 10018.534288433602, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 39149.843373493975, "ser_median_ns": 39144.0, "ser_std_ns": 1343.9601427917687, "ser_mad_ns": 982.0, "ser_cv": 0.03432862118936813, "ser_min_ns": 36528.0, "ser_max_ns": 42425.0, "ser_p5_ns": 37149.9, "ser_p25_ns": 38092.5, "ser_p50_ns": 39144.0, "ser_p75_ns": 40094.5, "ser_p95_ns": 41395.299999999996, "ser_p99_ns": 41991.219999999994, "ser_ci_low_ns": 38860.318373493974, "ser_ci_high_ns": 39441.74006024097, "deser_mean_ns": 66211.55421686747, "deser_median_ns": 66258.0, "deser_std_ns": 1402.9049761208646, "deser_mad_ns": 929.0, "deser_cv": 0.021188219982358803, "deser_min_ns": 62427.0, "deser_max_ns": 69732.0, "deser_p5_ns": 63983.2, "deser_p25_ns": 65161.0, "deser_p50_ns": 66258.0, "deser_p75_ns": 66996.0, "deser_p95_ns": 68454.8, "deser_p99_ns": 69472.88, "deser_ci_low_ns": 65923.73975903614, "deser_ci_high_ns": 66517.37379518073, "total_mean_ns": 105361.39759036145, "total_median_ns": 105585.0, "total_std_ns": 2278.6158503909037, "total_mad_ns": 1527.0, "total_cv": 0.021626666905558905, "total_min_ns": 99815.0, "total_max_ns": 111138.0, "total_p5_ns": 101756.1, "total_p25_ns": 103850.0, "total_p50_ns": 105585.0, "total_p75_ns": 106990.5, "total_p95_ns": 108564.6, "total_p99_ns": 110473.79999999999, "total_ci_low_ns": 104847.5469879518, "total_ci_high_ns": 105837.72259036145, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.527974904782013}, {"serializer": "speedy", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.8.7", "avg_time_ser_ns": 7820.794871794872, "avg_time_deser_ns": 48991.679487179485, "avg_time_total_ns": 56812.47435897436, "median_size_bytes": 14478.0, "avg_ops_per_sec": 17601.76812017404, "min_ops_per_sec": 16539.587502687682, "max_ops_per_sec": 18811.8439369427, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 7820.794871794872, "ser_median_ns": 7820.0, "ser_std_ns": 209.8579209521218, "ser_mad_ns": 133.0, "ser_cv": 0.026833323772364765, "ser_min_ns": 7195.0, "ser_max_ns": 8435.0, "ser_p5_ns": 7504.9, "ser_p25_ns": 7681.75, "ser_p50_ns": 7820.0, "ser_p75_ns": 7929.75, "ser_p95_ns": 8207.9, "ser_p99_ns": 8364.93, "ser_ci_low_ns": 7774.733653846154, "ser_ci_high_ns": 7865.941025641026, "deser_mean_ns": 48991.679487179485, "deser_median_ns": 48743.5, "deser_std_ns": 1300.1839679379416, "deser_mad_ns": 813.0, "deser_cv": 0.02653887316270069, "deser_min_ns": 45513.0, "deser_max_ns": 52774.0, "deser_p5_ns": 47335.0, "deser_p25_ns": 48122.0, "deser_p50_ns": 48743.5, "deser_p75_ns": 49961.25, "deser_p95_ns": 50899.1, "deser_p99_ns": 52640.79, "deser_ci_low_ns": 48704.58878205128, "deser_ci_high_ns": 49279.48621794872, "total_mean_ns": 56812.47435897436, "total_median_ns": 56565.0, "total_std_ns": 1367.0591026883549, "total_mad_ns": 974.0, "total_cv": 0.024062657332093614, "total_min_ns": 53158.0, "total_max_ns": 60461.0, "total_p5_ns": 54935.3, "total_p25_ns": 55901.0, "total_p50_ns": 56565.0, "total_p75_ns": 57953.5, "total_p95_ns": 58696.75, "total_p99_ns": 60425.58, "total_ci_low_ns": 56504.010897435895, "total_ci_high_ns": 57111.0657051282, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "ciborium", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.2.2", "avg_time_ser_ns": 21280.091954022988, "avg_time_deser_ns": 139254.1379310345, "avg_time_total_ns": 160534.22988505746, "median_size_bytes": 20878.0, "avg_ops_per_sec": 6229.201091356032, "min_ops_per_sec": 5992.222095719756, "max_ops_per_sec": 6559.742858079963, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 21280.091954022988, "ser_median_ns": 21252.0, "ser_std_ns": 564.8669041049529, "ser_mad_ns": 321.0, "ser_cv": 0.02654438267115501, "ser_min_ns": 19860.0, "ser_max_ns": 22631.0, "ser_p5_ns": 20525.3, "ser_p25_ns": 20907.0, "ser_p50_ns": 21252.0, "ser_p75_ns": 21538.0, "ser_p95_ns": 22271.6, "ser_p99_ns": 22566.5, "ser_ci_low_ns": 21159.83649425287, "ser_ci_high_ns": 21398.1591954023, "deser_mean_ns": 139254.1379310345, "deser_median_ns": 139306.0, "deser_std_ns": 2792.6607308260695, "deser_mad_ns": 1726.0, "deser_cv": 0.020054418291032276, "deser_min_ns": 131514.0, "deser_max_ns": 145011.0, "deser_p5_ns": 134052.1, "deser_p25_ns": 137504.5, "deser_p50_ns": 139306.0, "deser_p75_ns": 141002.0, "deser_p95_ns": 144014.9, "deser_p99_ns": 144690.22, "deser_ci_low_ns": 138669.68132183907, "deser_ci_high_ns": 139844.23879310343, "total_mean_ns": 160534.22988505746, "total_median_ns": 160805.0, "total_std_ns": 3122.9362439453776, "total_mad_ns": 1883.0, "total_cv": 0.019453397859019853, "total_min_ns": 152445.0, "total_max_ns": 166883.0, "total_p5_ns": 154806.7, "total_p25_ns": 158199.0, "total_p50_ns": 160805.0, "total_p75_ns": 162407.5, "total_p95_ns": 165791.7, "total_p99_ns": 166796.14, "total_ci_low_ns": 159906.91839080458, "total_ci_high_ns": 161184.15919540232, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "native", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 42.049541722685085}, {"serializer": "sonic-rs", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.3.17", "avg_time_ser_ns": 15572.115789473684, "avg_time_deser_ns": 72498.2947368421, "avg_time_total_ns": 88070.41052631578, "median_size_bytes": 26978.0, "avg_ops_per_sec": 11354.551364344965, "min_ops_per_sec": 10192.640913260626, "max_ops_per_sec": 13061.99221505264, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 15572.115789473684, "ser_median_ns": 15345.0, "ser_std_ns": 1137.5264398438328, "ser_mad_ns": 704.0, "ser_cv": 0.07304893279902074, "ser_min_ns": 13219.0, "ser_max_ns": 18910.0, "ser_p5_ns": 14144.3, "ser_p25_ns": 14745.5, "ser_p50_ns": 15345.0, "ser_p75_ns": 16364.5, "ser_p95_ns": 17476.5, "ser_p99_ns": 18487.0, "ser_ci_low_ns": 15343.161052631578, "ser_ci_high_ns": 15791.452631578946, "deser_mean_ns": 72498.2947368421, "deser_median_ns": 71829.0, "deser_std_ns": 3690.5061749168863, "deser_mad_ns": 2335.0, "deser_cv": 0.050904730770742514, "deser_min_ns": 63256.0, "deser_max_ns": 81332.0, "deser_p5_ns": 67159.2, "deser_p25_ns": 69979.5, "deser_p50_ns": 71829.0, "deser_p75_ns": 75325.5, "deser_p95_ns": 78305.59999999999, "deser_p99_ns": 80665.54000000001, "deser_ci_low_ns": 71748.61473684211, "deser_ci_high_ns": 73234.23289473684, "total_mean_ns": 88070.41052631578, "total_median_ns": 87335.0, "total_std_ns": 4439.772165648452, "total_mad_ns": 2934.0, "total_cv": 0.05041162110084443, "total_min_ns": 76558.0, "total_max_ns": 98110.0, "total_p5_ns": 81457.8, "total_p25_ns": 85097.5, "total_p50_ns": 87335.0, "total_p75_ns": 91450.5, "total_p95_ns": 95398.09999999999, "total_p99_ns": 96909.62000000001, "total_ci_low_ns": 87156.00921052632, "total_ci_high_ns": 88922.50368421052, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.10710613348506}, {"serializer": "bitcode", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "0.6.9", "avg_time_ser_ns": 90744.46739130435, "avg_time_deser_ns": 99154.11956521739, "avg_time_total_ns": 189898.58695652173, "median_size_bytes": 10878.0, "avg_ops_per_sec": 5265.968620550901, "min_ops_per_sec": 4987.605799588024, "max_ops_per_sec": 5643.054246680474, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 90744.46739130435, "ser_median_ns": 90788.5, "ser_std_ns": 2593.7778906794883, "ser_mad_ns": 1732.5, "ser_cv": 0.02858331714587857, "ser_min_ns": 85261.0, "ser_max_ns": 97678.0, "ser_p5_ns": 86371.4, "ser_p25_ns": 89016.75, "ser_p50_ns": 90788.5, "ser_p75_ns": 92330.0, "ser_p95_ns": 94825.0, "ser_p99_ns": 97027.35, "ser_ci_low_ns": 90211.20760869565, "ser_ci_high_ns": 91266.5660326087, "deser_mean_ns": 99154.11956521739, "deser_median_ns": 99029.0, "deser_std_ns": 2815.9764798374313, "deser_mad_ns": 1811.0, "deser_cv": 0.028399994797848594, "deser_min_ns": 91564.0, "deser_max_ns": 105052.0, "deser_p5_ns": 93789.95, "deser_p25_ns": 97568.25, "deser_p50_ns": 99029.0, "deser_p75_ns": 101354.0, "deser_p95_ns": 102838.05, "deser_p99_ns": 104122.89, "deser_ci_low_ns": 98574.65461956522, "deser_ci_high_ns": 99720.21304347826, "total_mean_ns": 189898.58695652173, "total_median_ns": 190543.5, "total_std_ns": 4821.003304343126, "total_mad_ns": 3167.5, "total_cv": 0.025387252120243106, "total_min_ns": 177209.0, "total_max_ns": 200497.0, "total_p5_ns": 181294.65, "total_p25_ns": 186763.5, "total_p50_ns": 190543.5, "total_p75_ns": 192892.25, "total_p95_ns": 197081.85, "total_p99_ns": 199884.57, "total_ci_low_ns": 188904.82092391304, "total_ci_high_ns": 190879.40326086956, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 36.1318271658461}, {"serializer": "postcard", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "rust", "serializer_version": "1.1.3", "avg_time_ser_ns": 14712.547619047618, "avg_time_deser_ns": 59265.52380952381, "avg_time_total_ns": 73978.07142857143, "median_size_bytes": 10778.0, "avg_ops_per_sec": 13517.519187635717, "min_ops_per_sec": 12746.160219233956, "max_ops_per_sec": 14476.59857839802, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 14712.547619047618, "ser_median_ns": 14735.0, "ser_std_ns": 296.6458439642307, "ser_mad_ns": 221.0, "ser_cv": 0.02016277885008697, "ser_min_ns": 13956.0, "ser_max_ns": 15399.0, "ser_p5_ns": 14245.95, "ser_p25_ns": 14499.0, "ser_p50_ns": 14735.0, "ser_p75_ns": 14932.75, "ser_p95_ns": 15155.75, "ser_p99_ns": 15319.32, "ser_ci_low_ns": 14650.036607142856, "ser_ci_high_ns": 14776.064285714285, "deser_mean_ns": 59265.52380952381, "deser_median_ns": 59230.5, "deser_std_ns": 1752.3878887618712, "deser_mad_ns": 1091.0, "deser_cv": 0.029568419818475765, "deser_min_ns": 55121.0, "deser_max_ns": 63479.0, "deser_p5_ns": 56429.45, "deser_p25_ns": 58181.0, "deser_p50_ns": 59230.5, "deser_p75_ns": 60345.75, "deser_p95_ns": 62399.1, "deser_p99_ns": 63281.46, "deser_ci_low_ns": 58912.13869047619, "deser_ci_high_ns": 59636.65148809524, "total_mean_ns": 73978.07142857143, "total_median_ns": 73869.5, "total_std_ns": 1899.4959685652202, "total_mad_ns": 1197.5, "total_cv": 0.025676473201917054, "total_min_ns": 69077.0, "total_max_ns": 78455.0, "total_p5_ns": 70807.2, "total_p25_ns": 72843.75, "total_p50_ns": 73869.5, "total_p75_ns": 75104.25, "total_p95_ns": 77458.15, "total_p99_ns": 78353.74, "total_ci_low_ns": 73565.41904761906, "total_ci_high_ns": 74389.15863095238, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 10.263388403665045}, {"serializer": "speedy", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.8.7", "avg_time_ser_ns": 7816.761904761905, "avg_time_deser_ns": 49278.90476190476, "avg_time_total_ns": 57095.666666666664, "median_size_bytes": 14478.0, "avg_ops_per_sec": 17514.464028209964, "min_ops_per_sec": 16738.36265336525, "max_ops_per_sec": 18231.872960309214, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 7816.761904761905, "ser_median_ns": 7788.5, "ser_std_ns": 170.8646768889824, "ser_mad_ns": 103.5, "ser_cv": 0.02185875417094297, "ser_min_ns": 7438.0, "ser_max_ns": 8289.0, "ser_p5_ns": 7574.8, "ser_p25_ns": 7728.5, "ser_p50_ns": 7788.5, "ser_p75_ns": 7919.75, "ser_p95_ns": 8098.8, "ser_p99_ns": 8225.09, "ser_ci_low_ns": 7779.689880952381, "ser_ci_high_ns": 7854.607738095238, "deser_mean_ns": 49278.90476190476, "deser_median_ns": 49161.5, "deser_std_ns": 1103.4326246243968, "deser_mad_ns": 601.0, "deser_cv": 0.022391581751983445, "deser_min_ns": 47276.0, "deser_max_ns": 52133.0, "deser_p5_ns": 47590.15, "deser_p25_ns": 48597.0, "deser_p50_ns": 49161.5, "deser_p75_ns": 49772.25, "deser_p95_ns": 51376.2, "deser_p99_ns": 51990.24, "deser_ci_low_ns": 49049.75654761905, "deser_ci_high_ns": 49536.34642857143, "total_mean_ns": 57095.666666666664, "total_median_ns": 56927.5, "total_std_ns": 1144.6164226587352, "total_mad_ns": 612.0, "total_cv": 0.02004734316075479, "total_min_ns": 54849.0, "total_max_ns": 59743.0, "total_p5_ns": 55299.35, "total_p25_ns": 56386.5, "total_p50_ns": 56927.5, "total_p75_ns": 57634.5, "total_p95_ns": 59340.1, "total_p99_ns": 59616.840000000004, "total_ci_low_ns": 56848.96160714286, "total_ci_high_ns": 57337.4568452381, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "flexbuffers", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "2.0.0", "avg_time_ser_ns": 130366.41573033707, "avg_time_deser_ns": 124473.94382022473, "avg_time_total_ns": 254840.35955056178, "median_size_bytes": 31436.0, "avg_ops_per_sec": 3924.0252280431832, "min_ops_per_sec": 3727.7546242796116, "max_ops_per_sec": 4087.2714193458733, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 130366.41573033707, "ser_median_ns": 130444.0, "ser_std_ns": 2851.7977615762943, "ser_mad_ns": 1902.0, "ser_cv": 0.02187524866431273, "ser_min_ns": 122702.0, "ser_max_ns": 138256.0, "ser_p5_ns": 125368.8, "ser_p25_ns": 128756.0, "ser_p50_ns": 130444.0, "ser_p75_ns": 132360.0, "ser_p95_ns": 134652.6, "ser_p99_ns": 135548.24000000002, "ser_ci_low_ns": 129798.01207865169, "ser_ci_high_ns": 130949.35252808989, "deser_mean_ns": 124473.94382022473, "deser_median_ns": 124180.0, "deser_std_ns": 2365.9476016231106, "deser_mad_ns": 1510.0, "deser_cv": 0.019007573223840342, "deser_min_ns": 120270.0, "deser_max_ns": 130186.0, "deser_p5_ns": 120817.6, "deser_p25_ns": 122894.0, "deser_p50_ns": 124180.0, "deser_p75_ns": 125819.0, "deser_p95_ns": 128528.0, "deser_p99_ns": 130024.08, "deser_ci_low_ns": 123992.75, "deser_ci_high_ns": 124973.04803370786, "total_mean_ns": 254840.35955056178, "total_median_ns": 254795.0, "total_std_ns": 4405.994084114769, "total_mad_ns": 3565.0, "total_cv": 0.017289231940675373, "total_min_ns": 244662.0, "total_max_ns": 268258.0, "total_p5_ns": 248397.0, "total_p25_ns": 251202.0, "total_p50_ns": 254795.0, "total_p75_ns": 258312.0, "total_p95_ns": 261667.4, "total_p99_ns": 264546.16000000003, "total_ci_low_ns": 253918.70983146067, "total_ci_high_ns": 255791.52078651686, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 60.39564323372735}, {"serializer": "postcard", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "1.1.3", "avg_time_ser_ns": 14678.886363636364, "avg_time_deser_ns": 59518.579545454544, "avg_time_total_ns": 74197.46590909091, "median_size_bytes": 10778.0, "avg_ops_per_sec": 13477.549236320709, "min_ops_per_sec": 12835.487555994814, "max_ops_per_sec": 14131.279587366636, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 14678.886363636364, "ser_median_ns": 14687.0, "ser_std_ns": 168.73106070429054, "ser_mad_ns": 125.5, "ser_cv": 0.01149481347047442, "ser_min_ns": 14323.0, "ser_max_ns": 15085.0, "ser_p5_ns": 14373.7, "ser_p25_ns": 14558.75, "ser_p50_ns": 14687.0, "ser_p75_ns": 14804.5, "ser_p95_ns": 14915.5, "ser_p99_ns": 15063.25, "ser_ci_low_ns": 14644.774431818181, "ser_ci_high_ns": 14714.409659090908, "deser_mean_ns": 59518.579545454544, "deser_median_ns": 59507.0, "deser_std_ns": 1525.461262230316, "deser_mad_ns": 1099.5, "deser_cv": 0.025630001150570403, "deser_min_ns": 56289.0, "deser_max_ns": 63521.0, "deser_p5_ns": 57353.45, "deser_p25_ns": 58385.75, "deser_p50_ns": 59507.0, "deser_p75_ns": 60516.0, "deser_p95_ns": 62331.59999999999, "deser_p99_ns": 63280.88, "deser_ci_low_ns": 59203.96761363637, "deser_ci_high_ns": 59820.72585227273, "total_mean_ns": 74197.46590909091, "total_median_ns": 74188.5, "total_std_ns": 1564.2448139293642, "total_mad_ns": 1127.0, "total_cv": 0.02108218649739233, "total_min_ns": 70765.0, "total_max_ns": 77909.0, "total_p5_ns": 71974.1, "total_p25_ns": 73014.0, "total_p50_ns": 74188.5, "total_p75_ns": 75283.75, "total_p95_ns": 77060.59999999999, "total_p99_ns": 77854.19, "total_ci_low_ns": 73872.86051136363, "total_ci_high_ns": 74507.165625, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.378619946874483}, {"serializer": "nanoserde", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.1.37", "avg_time_ser_ns": 26608.627906976744, "avg_time_deser_ns": 59155.813953488374, "avg_time_total_ns": 85764.44186046511, "median_size_bytes": 19278.0, "avg_ops_per_sec": 11659.843850286521, "min_ops_per_sec": 11134.369571994834, "max_ops_per_sec": 12077.294685990339, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 26608.627906976744, "ser_median_ns": 26580.0, "ser_std_ns": 654.9315194827917, "ser_mad_ns": 341.5, "ser_cv": 0.0246135021231617, "ser_min_ns": 25378.0, "ser_max_ns": 28180.0, "ser_p5_ns": 25528.25, "ser_p25_ns": 26244.5, "ser_p50_ns": 26580.0, "ser_p75_ns": 26921.75, "ser_p95_ns": 27780.75, "ser_p99_ns": 28079.7, "ser_ci_low_ns": 26466.77877906977, "ser_ci_high_ns": 26746.060755813953, "deser_mean_ns": 59155.813953488374, "deser_median_ns": 58926.0, "deser_std_ns": 1394.6370517650646, "deser_mad_ns": 922.0, "deser_cv": 0.023575654843691386, "deser_min_ns": 56661.0, "deser_max_ns": 62743.0, "deser_p5_ns": 57127.0, "deser_p25_ns": 58142.0, "deser_p50_ns": 58926.0, "deser_p75_ns": 60022.75, "deser_p95_ns": 61750.25, "deser_p99_ns": 62647.8, "deser_ci_low_ns": 58863.71017441861, "deser_ci_high_ns": 59466.97034883721, "total_mean_ns": 85764.44186046511, "total_median_ns": 85583.0, "total_std_ns": 1665.8779462716184, "total_mad_ns": 1087.5, "total_cv": 0.01942387672716307, "total_min_ns": 82800.0, "total_max_ns": 89812.0, "total_p5_ns": 83205.25, "total_p25_ns": 84622.75, "total_p50_ns": 85583.0, "total_p75_ns": 86760.5, "total_p95_ns": 89082.0, "total_p99_ns": 89518.75, "total_ci_low_ns": 85411.32994186046, "total_ci_high_ns": 86113.18691860465, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.92696976024582}, {"serializer": "minicbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.25.1", "avg_time_ser_ns": 18239.117647058825, "avg_time_deser_ns": 65824.90588235293, "avg_time_total_ns": 84064.02352941176, "median_size_bytes": 11478.0, "avg_ops_per_sec": 11895.695185826155, "min_ops_per_sec": 11183.555699699162, "max_ops_per_sec": 12541.38657569981, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 18239.117647058825, "ser_median_ns": 18313.0, "ser_std_ns": 321.9585307430249, "ser_mad_ns": 225.0, "ser_cv": 0.017652089151085813, "ser_min_ns": 17373.0, "ser_max_ns": 18950.0, "ser_p5_ns": 17700.4, "ser_p25_ns": 18027.0, "ser_p50_ns": 18313.0, "ser_p75_ns": 18488.0, "ser_p95_ns": 18741.2, "ser_p99_ns": 18808.04, "ser_ci_low_ns": 18170.163529411766, "ser_ci_high_ns": 18307.968529411763, "deser_mean_ns": 65824.90588235293, "deser_median_ns": 65606.0, "deser_std_ns": 1772.856745102509, "deser_mad_ns": 1242.0, "deser_cv": 0.026932917280141466, "deser_min_ns": 61218.0, "deser_max_ns": 70653.0, "deser_p5_ns": 63197.2, "deser_p25_ns": 64530.0, "deser_p50_ns": 65606.0, "deser_p75_ns": 66891.0, "deser_p95_ns": 68840.0, "deser_p99_ns": 70448.88, "deser_ci_low_ns": 65464.10794117647, "deser_ci_high_ns": 66202.19382352941, "total_mean_ns": 84064.02352941176, "total_median_ns": 83831.0, "total_std_ns": 1923.0492402411742, "total_mad_ns": 1137.0, "total_cv": 0.022876007589243578, "total_min_ns": 79736.0, "total_max_ns": 89417.0, "total_p5_ns": 81102.0, "total_p25_ns": 82978.0, "total_p50_ns": 83831.0, "total_p75_ns": 85149.0, "total_p95_ns": 87342.4, "total_p99_ns": 89012.95999999999, "total_ci_low_ns": 83645.87205882353, "total_ci_high_ns": 84482.9538235294, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.94138741970331}, {"serializer": "sonic-rs", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.3.17", "avg_time_ser_ns": 15399.806451612903, "avg_time_deser_ns": 72796.87096774194, "avg_time_total_ns": 88196.67741935483, "median_size_bytes": 26978.0, "avg_ops_per_sec": 11338.2956054595, "min_ops_per_sec": 10359.259105788755, "max_ops_per_sec": 12234.810482785622, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 15399.806451612903, "ser_median_ns": 15112.0, "ser_std_ns": 929.6405950930073, "ser_mad_ns": 523.0, "ser_cv": 0.06036703110613712, "ser_min_ns": 14152.0, "ser_max_ns": 17956.0, "ser_p5_ns": 14232.6, "ser_p25_ns": 14684.0, "ser_p50_ns": 15112.0, "ser_p75_ns": 16020.0, "ser_p95_ns": 17180.0, "ser_p99_ns": 17540.16, "ser_ci_low_ns": 15219.324193548387, "ser_ci_high_ns": 15599.161021505377, "deser_mean_ns": 72796.87096774194, "deser_median_ns": 72068.0, "deser_std_ns": 2821.5506345216822, "deser_mad_ns": 1976.0, "deser_cv": 0.038759229579688664, "deser_min_ns": 66354.0, "deser_max_ns": 78863.0, "deser_p5_ns": 69036.6, "deser_p25_ns": 70656.0, "deser_p50_ns": 72068.0, "deser_p75_ns": 75053.0, "deser_p95_ns": 77871.8, "deser_p99_ns": 78598.96, "deser_ci_low_ns": 72238.57822580644, "deser_ci_high_ns": 73377.65161290322, "total_mean_ns": 88196.67741935483, "total_median_ns": 87484.0, "total_std_ns": 3282.7424515953594, "total_mad_ns": 2475.0, "total_cv": 0.03722070431277901, "total_min_ns": 81734.0, "total_max_ns": 96532.0, "total_p5_ns": 83493.0, "total_p25_ns": 85545.0, "total_p50_ns": 87484.0, "total_p75_ns": 91029.0, "total_p95_ns": 93643.2, "total_p99_ns": 95375.56, "total_ci_low_ns": 87538.24435483871, "total_ci_high_ns": 88859.46881720431, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.350812686008947}, {"serializer": "prost", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.13.5", "avg_time_ser_ns": 39320.606741573036, "avg_time_deser_ns": 66682.67415730337, "avg_time_total_ns": 106003.2808988764, "median_size_bytes": 12578.0, "avg_ops_per_sec": 9433.670274356571, "min_ops_per_sec": 9079.271116114798, "max_ops_per_sec": 9799.022057598651, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 39320.606741573036, "ser_median_ns": 39367.0, "ser_std_ns": 1257.5223440810607, "ser_mad_ns": 781.0, "ser_cv": 0.03198125482513226, "ser_min_ns": 36399.0, "ser_max_ns": 42512.0, "ser_p5_ns": 37359.4, "ser_p25_ns": 38559.0, "ser_p50_ns": 39367.0, "ser_p75_ns": 40110.0, "ser_p95_ns": 41761.6, "ser_p99_ns": 42431.92, "ser_ci_low_ns": 39044.02808988764, "ser_ci_high_ns": 39592.30505617978, "deser_mean_ns": 66682.67415730337, "deser_median_ns": 66470.0, "deser_std_ns": 1224.3839988789994, "deser_mad_ns": 597.0, "deser_cv": 0.018361351195824827, "deser_min_ns": 63965.0, "deser_max_ns": 69634.0, "deser_p5_ns": 64877.6, "deser_p25_ns": 65985.0, "deser_p50_ns": 66470.0, "deser_p75_ns": 67286.0, "deser_p95_ns": 69095.0, "deser_p99_ns": 69564.48, "deser_ci_low_ns": 66432.85646067416, "deser_ci_high_ns": 66947.74466292135, "total_mean_ns": 106003.2808988764, "total_median_ns": 105973.0, "total_std_ns": 1888.5977421258394, "total_mad_ns": 1087.0, "total_cv": 0.017816408380109467, "total_min_ns": 102051.0, "total_max_ns": 110141.0, "total_p5_ns": 102919.6, "total_p25_ns": 104620.0, "total_p50_ns": 105973.0, "total_p75_ns": 107017.0, "total_p95_ns": 109499.8, "total_p99_ns": 109908.68000000001, "total_ci_low_ns": 105614.61685393257, "total_ci_high_ns": 106395.22528089889, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.97329124522974}, {"serializer": "rmp-serde", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "1.3.1", "avg_time_ser_ns": 13036.62962962963, "avg_time_deser_ns": 80873.87654320987, "avg_time_total_ns": 93910.50617283951, "median_size_bytes": 20878.0, "avg_ops_per_sec": 10648.435843371237, "min_ops_per_sec": 10125.249334264856, "max_ops_per_sec": 11336.45463717677, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 13036.62962962963, "ser_median_ns": 13044.0, "ser_std_ns": 280.9476127521128, "ser_mad_ns": 186.0, "ser_cv": 0.021550632389952654, "ser_min_ns": 12379.0, "ser_max_ns": 13753.0, "ser_p5_ns": 12538.0, "ser_p25_ns": 12869.0, "ser_p50_ns": 13044.0, "ser_p75_ns": 13239.0, "ser_p95_ns": 13391.0, "ser_p99_ns": 13674.6, "ser_ci_low_ns": 12975.171604938272, "ser_ci_high_ns": 13100.235802469135, "deser_mean_ns": 80873.87654320987, "deser_median_ns": 80746.0, "deser_std_ns": 2009.355427635415, "deser_mad_ns": 1313.0, "deser_cv": 0.02484554362324702, "deser_min_ns": 75393.0, "deser_max_ns": 85950.0, "deser_p5_ns": 77818.0, "deser_p25_ns": 79438.0, "deser_p50_ns": 80746.0, "deser_p75_ns": 82059.0, "deser_p95_ns": 84338.0, "deser_p99_ns": 85314.8, "deser_ci_low_ns": 80445.26635802469, "deser_ci_high_ns": 81318.85679012345, "total_mean_ns": 93910.50617283951, "total_median_ns": 93816.0, "total_std_ns": 2104.673015716793, "total_mad_ns": 1390.0, "total_cv": 0.022411475579134935, "total_min_ns": 88211.0, "total_max_ns": 98763.0, "total_p5_ns": 90760.0, "total_p25_ns": 92426.0, "total_p50_ns": 93816.0, "total_p75_ns": 95170.0, "total_p95_ns": 97381.0, "total_p99_ns": 98558.2, "total_ci_low_ns": 93462.64351851853, "total_ci_high_ns": 94365.80524691357, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.740360808533627}, {"serializer": "bitcode", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.6.9", "avg_time_ser_ns": 91150.58536585367, "avg_time_deser_ns": 100148.15853658537, "avg_time_total_ns": 191298.74390243902, "median_size_bytes": 10878.0, "avg_ops_per_sec": 5227.425855498523, "min_ops_per_sec": 5098.009227396701, "max_ops_per_sec": 5432.9519401071375, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 91150.58536585367, "ser_median_ns": 91213.0, "ser_std_ns": 1457.8731502611377, "ser_mad_ns": 925.5, "ser_cv": 0.015994117255633974, "ser_min_ns": 87594.0, "ser_max_ns": 94811.0, "ser_p5_ns": 88826.55, "ser_p25_ns": 90255.75, "ser_p50_ns": 91213.0, "ser_p75_ns": 92064.75, "ser_p95_ns": 93818.7, "ser_p99_ns": 94362.26, "ser_ci_low_ns": 90849.08871951219, "ser_ci_high_ns": 91452.79512195122, "deser_mean_ns": 100148.15853658537, "deser_median_ns": 100550.0, "deser_std_ns": 1976.3532851919947, "deser_mad_ns": 1218.0, "deser_cv": 0.019734294809524714, "deser_min_ns": 94036.0, "deser_max_ns": 103718.0, "deser_p5_ns": 97256.75, "deser_p25_ns": 98932.5, "deser_p50_ns": 100550.0, "deser_p75_ns": 101437.75, "deser_p95_ns": 103085.35, "deser_p99_ns": 103389.95, "deser_ci_low_ns": 99734.38963414634, "deser_ci_high_ns": 100576.33932926829, "total_mean_ns": 191298.74390243902, "total_median_ns": 191570.0, "total_std_ns": 2783.4972620210015, "total_mad_ns": 1764.5, "total_cv": 0.014550525556197928, "total_min_ns": 184062.0, "total_max_ns": 196155.0, "total_p5_ns": 185526.7, "total_p25_ns": 189762.0, "total_p50_ns": 191570.0, "total_p75_ns": 193235.75, "total_p95_ns": 195549.45, "total_p99_ns": 195813.18, "total_ci_low_ns": 190693.9850609756, "total_ci_high_ns": 191893.82256097562, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 63.046039367680514}, {"serializer": "bincode", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "2.0.1", "avg_time_ser_ns": 10934.238095238095, "avg_time_deser_ns": 54844.333333333336, "avg_time_total_ns": 65778.57142857143, "median_size_bytes": 11078.0, "avg_ops_per_sec": 15202.519274622651, "min_ops_per_sec": 14073.406890340013, "max_ops_per_sec": 16097.875080489375, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 10934.238095238095, "ser_median_ns": 10690.5, "ser_std_ns": 687.2270388078581, "ser_mad_ns": 356.5, "ser_cv": 0.06285093051953462, "ser_min_ns": 10032.0, "ser_max_ns": 12580.0, "ser_p5_ns": 10193.65, "ser_p25_ns": 10400.0, "ser_p50_ns": 10690.5, "ser_p75_ns": 11611.25, "ser_p95_ns": 12106.85, "ser_p99_ns": 12571.7, "ser_ci_low_ns": 10791.683928571429, "ser_ci_high_ns": 11078.523214285715, "deser_mean_ns": 54844.333333333336, "deser_median_ns": 54718.5, "deser_std_ns": 1479.9345909783635, "deser_mad_ns": 902.0, "deser_cv": 0.026984275330390196, "deser_min_ns": 50925.0, "deser_max_ns": 58486.0, "deser_p5_ns": 52788.35, "deser_p25_ns": 53819.75, "deser_p50_ns": 54718.5, "deser_p75_ns": 55621.5, "deser_p95_ns": 57331.0, "deser_p99_ns": 58329.13, "deser_ci_low_ns": 54539.26726190476, "deser_ci_high_ns": 55151.40803571429, "total_mean_ns": 65778.57142857143, "total_median_ns": 65819.0, "total_std_ns": 1674.3488738799315, "total_mad_ns": 1147.5, "total_cv": 0.025454321027602388, "total_min_ns": 62120.0, "total_max_ns": 71056.0, "total_p5_ns": 63306.4, "total_p25_ns": 64625.75, "total_p50_ns": 65819.0, "total_p75_ns": 66873.25, "total_p95_ns": 68700.8, "total_p99_ns": 69613.46, "total_ci_low_ns": 65441.114285714284, "total_ci_high_ns": 66138.39642857142, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.026981978258747}, {"serializer": "ciborium", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.2.2", "avg_time_ser_ns": 21362.528735632182, "avg_time_deser_ns": 140057.5172413793, "avg_time_total_ns": 161420.0459770115, "median_size_bytes": 20878.0, "avg_ops_per_sec": 6195.0174400422, "min_ops_per_sec": 5972.895002478752, "max_ops_per_sec": 6382.802177812103, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 21362.528735632182, "ser_median_ns": 21288.0, "ser_std_ns": 498.61964902841515, "ser_mad_ns": 293.0, "ser_cv": 0.02334085328562857, "ser_min_ns": 20504.0, "ser_max_ns": 22697.0, "ser_p5_ns": 20668.5, "ser_p25_ns": 21051.0, "ser_p50_ns": 21288.0, "ser_p75_ns": 21593.5, "ser_p95_ns": 22333.5, "ser_p99_ns": 22655.72, "ser_ci_low_ns": 21264.574137931035, "ser_ci_high_ns": 21466.014080459772, "deser_mean_ns": 140057.5172413793, "deser_median_ns": 140310.0, "deser_std_ns": 2366.7206084903146, "deser_mad_ns": 1437.0, "deser_cv": 0.01689820478833305, "deser_min_ns": 135659.0, "deser_max_ns": 145599.0, "deser_p5_ns": 136513.2, "deser_p25_ns": 138143.0, "deser_p50_ns": 140310.0, "deser_p75_ns": 141562.5, "deser_p95_ns": 144328.7, "deser_p99_ns": 145517.3, "deser_ci_low_ns": 139532.94396551725, "deser_ci_high_ns": 140569.17183908046, "total_mean_ns": 161420.0459770115, "total_median_ns": 161659.0, "total_std_ns": 2605.310551091554, "total_mad_ns": 1352.0, "total_cv": 0.016139944300738132, "total_min_ns": 156671.0, "total_max_ns": 167423.0, "total_p5_ns": 157565.3, "total_p25_ns": 159469.5, "total_p50_ns": 161659.0, "total_p75_ns": 162841.0, "total_p95_ns": 166062.0, "total_p99_ns": 167380.86, "total_ci_low_ns": 160873.83620689655, "total_ci_high_ns": 161933.7905172414, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 51.308723057627546}, {"serializer": "serde_avro_fast", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "2.1.0", "avg_time_ser_ns": 27567.222222222223, "avg_time_deser_ns": 70824.37037037036, "avg_time_total_ns": 98391.5925925926, "median_size_bytes": 10778.0, "avg_ops_per_sec": 10163.470004400406, "min_ops_per_sec": 9789.525208027411, "max_ops_per_sec": 10524.100189433804, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 27567.222222222223, "ser_median_ns": 27613.0, "ser_std_ns": 395.7632815206585, "ser_mad_ns": 199.0, "ser_cv": 0.014356298880256047, "ser_min_ns": 26736.0, "ser_max_ns": 28504.0, "ser_p5_ns": 26803.0, "ser_p25_ns": 27374.0, "ser_p50_ns": 27613.0, "ser_p75_ns": 27787.0, "ser_p95_ns": 28174.0, "ser_p99_ns": 28344.8, "ser_ci_low_ns": 27478.283333333333, "ser_ci_high_ns": 27652.804938271605, "deser_mean_ns": 70824.37037037036, "deser_median_ns": 70721.0, "deser_std_ns": 1477.3319739013, "deser_mad_ns": 938.0, "deser_cv": 0.020859090821079115, "deser_min_ns": 67817.0, "deser_max_ns": 74899.0, "deser_p5_ns": 68741.0, "deser_p25_ns": 69961.0, "deser_p50_ns": 70721.0, "deser_p75_ns": 71713.0, "deser_p95_ns": 73409.0, "deser_p99_ns": 74081.40000000001, "deser_ci_low_ns": 70505.5938271605, "deser_ci_high_ns": 71152.63117283951, "total_mean_ns": 98391.5925925926, "total_median_ns": 98371.0, "total_std_ns": 1583.5721469022005, "total_mad_ns": 1004.0, "total_cv": 0.016094588014844466, "total_min_ns": 95020.0, "total_max_ns": 102150.0, "total_p5_ns": 95677.0, "total_p25_ns": 97401.0, "total_p50_ns": 98371.0, "total_p75_ns": 99440.0, "total_p95_ns": 100991.0, "total_p99_ns": 101546.0, "total_ci_low_ns": 98036.52901234568, "total_ci_high_ns": 98749.09290123457, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.837620326039648}, {"serializer": "serde_json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "1.0.150", "avg_time_ser_ns": 30446.3595505618, "avg_time_deser_ns": 103935.89887640449, "avg_time_total_ns": 134382.2584269663, "median_size_bytes": 26978.0, "avg_ops_per_sec": 7441.458505800282, "min_ops_per_sec": 7037.743417950468, "max_ops_per_sec": 7875.814162289027, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 30446.3595505618, "ser_median_ns": 30419.0, "ser_std_ns": 976.7539497464294, "ser_mad_ns": 682.0, "ser_cv": 0.032081140870860086, "ser_min_ns": 28517.0, "ser_max_ns": 33042.0, "ser_p5_ns": 28764.4, "ser_p25_ns": 29775.0, "ser_p50_ns": 30419.0, "ser_p75_ns": 31113.0, "ser_p95_ns": 31956.2, "ser_p99_ns": 32312.480000000003, "ser_ci_low_ns": 30252.273595505616, "ser_ci_high_ns": 30648.776123595504, "deser_mean_ns": 103935.89887640449, "deser_median_ns": 103798.0, "deser_std_ns": 2708.074827944886, "deser_mad_ns": 1538.0, "deser_cv": 0.026055240366614777, "deser_min_ns": 97090.0, "deser_max_ns": 110063.0, "deser_p5_ns": 99359.8, "deser_p25_ns": 102510.0, "deser_p50_ns": 103798.0, "deser_p75_ns": 105421.0, "deser_p95_ns": 108201.2, "deser_p99_ns": 109170.68000000001, "deser_ci_low_ns": 103382.62584269662, "deser_ci_high_ns": 104514.63651685393, "total_mean_ns": 134382.2584269663, "total_median_ns": 134132.0, "total_std_ns": 3011.3587484725304, "total_mad_ns": 1731.0, "total_cv": 0.022408901172837004, "total_min_ns": 126971.0, "total_max_ns": 142091.0, "total_p5_ns": 129282.0, "total_p25_ns": 132824.0, "total_p50_ns": 134132.0, "total_p75_ns": 136477.0, "total_p95_ns": 138916.4, "total_p99_ns": 141724.04, "total_ci_low_ns": 133761.3547752809, "total_ci_high_ns": 134998.53960674157, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 33.41538040777009}, {"serializer": "simd-json", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "0.14.3", "avg_time_ser_ns": 30418.197802197803, "avg_time_deser_ns": 130640.46153846153, "avg_time_total_ns": 161058.65934065933, "median_size_bytes": 26978.0, "avg_ops_per_sec": 6208.917943895672, "min_ops_per_sec": 5964.4518668734345, "max_ops_per_sec": 6546.002029260629, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 30418.197802197803, "ser_median_ns": 30309.0, "ser_std_ns": 834.1054985202907, "ser_mad_ns": 562.0, "ser_cv": 0.027421266175737213, "ser_min_ns": 29046.0, "ser_max_ns": 32549.0, "ser_p5_ns": 29211.5, "ser_p25_ns": 29806.5, "ser_p50_ns": 30309.0, "ser_p75_ns": 30922.5, "ser_p95_ns": 31954.5, "ser_p99_ns": 32531.0, "ser_ci_low_ns": 30250.8739010989, "ser_ci_high_ns": 30590.298076923078, "deser_mean_ns": 130640.46153846153, "deser_median_ns": 130923.0, "deser_std_ns": 3171.5442411393656, "deser_mad_ns": 1767.0, "deser_cv": 0.02427689097076283, "deser_min_ns": 123151.0, "deser_max_ns": 137227.0, "deser_p5_ns": 124411.5, "deser_p25_ns": 128634.0, "deser_p50_ns": 130923.0, "deser_p75_ns": 132571.5, "deser_p95_ns": 135691.5, "deser_p99_ns": 136841.8, "deser_ci_low_ns": 129979.57417582418, "deser_ci_high_ns": 131260.0837912088, "total_mean_ns": 161058.65934065933, "total_median_ns": 161666.0, "total_std_ns": 3552.0070733781554, "total_mad_ns": 2176.0, "total_cv": 0.02205412045474198, "total_min_ns": 152765.0, "total_max_ns": 167660.0, "total_p5_ns": 154414.5, "total_p25_ns": 158718.5, "total_p50_ns": 161666.0, "total_p75_ns": 163485.0, "total_p95_ns": 166642.0, "total_p99_ns": 167489.0, "total_ci_low_ns": 160336.98598901098, "total_ci_high_ns": 161793.3098901099, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 38.59742920431468}, {"serializer": "bson", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "rust", "serializer_version": "2.15.0", "avg_time_ser_ns": 51665.066666666666, "avg_time_deser_ns": 139595.85555555555, "avg_time_total_ns": 191260.92222222223, "median_size_bytes": 30578.0, "avg_ops_per_sec": 5228.459574392933, "min_ops_per_sec": 5048.924074279771, "max_ops_per_sec": 5473.7233908621665, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 51665.066666666666, "ser_median_ns": 51700.0, "ser_std_ns": 1592.4392906425105, "ser_mad_ns": 1011.5, "ser_cv": 0.030822360124233082, "ser_min_ns": 48047.0, "ser_max_ns": 55368.0, "ser_p5_ns": 49385.7, "ser_p25_ns": 50381.0, "ser_p50_ns": 51700.0, "ser_p75_ns": 52638.25, "ser_p95_ns": 54193.3, "ser_p99_ns": 55231.83, "ser_ci_low_ns": 51325.61, "ser_ci_high_ns": 51997.677777777775, "deser_mean_ns": 139595.85555555555, "deser_median_ns": 139969.5, "deser_std_ns": 2915.7122034005138, "deser_mad_ns": 1822.5, "deser_cv": 0.020886810656353158, "deser_min_ns": 132410.0, "deser_max_ns": 146325.0, "deser_p5_ns": 134366.65, "deser_p25_ns": 138143.0, "deser_p50_ns": 139969.5, "deser_p75_ns": 141745.75, "deser_p95_ns": 143402.65, "deser_p99_ns": 145965.44, "deser_ci_low_ns": 138986.75777777776, "deser_ci_high_ns": 140215.36583333332, "total_mean_ns": 191260.92222222223, "total_median_ns": 191511.5, "total_std_ns": 3405.139391387895, "total_mad_ns": 2239.5, "total_cv": 0.017803633653044566, "total_min_ns": 182691.0, "total_max_ns": 198062.0, "total_p5_ns": 185352.15, "total_p25_ns": 189135.5, "total_p50_ns": 191511.5, "total_p75_ns": 193707.75, "total_p95_ns": 196506.8, "total_p99_ns": 197451.46, "total_ci_low_ns": 190534.4686111111, "total_ci_high_ns": 191954.8175, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "speedy", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 51.870316995623746}], "pareto_front": [{"serializer": "serde_avro_fast", "test_data": "message", "mode": "bytes", "time": 324.59302325581393, "size": 47.0}, {"serializer": "speedy", "test_data": "message", "mode": "bytes", "time": 79.61363636363636, "size": 60.0}, {"serializer": "postcard", "test_data": "message", "mode": "bytes", "time": 165.3625, "size": 48.0}, {"serializer": "speedy", "test_data": "message", "mode": "stream", "time": 188.06896551724137, "size": 60.0}, {"serializer": "serde_avro_fast", "test_data": "message", "mode": "stream", "time": 504.2315789473684, "size": 47.0}, {"serializer": "postcard", "test_data": "message", "mode": "stream", "time": 237.15853658536585, "size": 48.0}, {"serializer": "speedy", "test_data": "document", "mode": "bytes", "time": 351.6521739130435, "size": 214.0}, {"serializer": "postcard", "test_data": "document", "mode": "bytes", "time": 577.6046511627907, "size": 114.0}, {"serializer": "speedy", "test_data": "document", "mode": "stream", "time": 517.6, "size": 214.0}, {"serializer": "postcard", "test_data": "document", "mode": "stream", "time": 748.390243902439, "size": 114.0}, {"serializer": "postcard", "test_data": "telemetry", "mode": "bytes", "time": 332.29787234042556, "size": 286.0}, {"serializer": "speedy", "test_data": "telemetry", "mode": "bytes", "time": 169.4468085106383, "size": 302.0}, {"serializer": "speedy", "test_data": "telemetry", "mode": "stream", "time": 331.06024096385545, "size": 302.0}, {"serializer": "postcard", "test_data": "telemetry", "mode": "stream", "time": 463.64516129032256, "size": 286.0}, {"serializer": "bitcode", "test_data": "strings", "mode": "bytes", "time": 1563.8369565217392, "size": 291.0}, {"serializer": "speedy", "test_data": "strings", "mode": "bytes", "time": 953.9795918367347, "size": 403.0}, {"serializer": "postcard", "test_data": "strings", "mode": "bytes", "time": 1208.47311827957, "size": 305.0}, {"serializer": "postcard", "test_data": "strings", "mode": "stream", "time": 1422.2555555555555, "size": 305.0}, {"serializer": "bitcode", "test_data": "strings", "mode": "stream", "time": 1914.943820224719, "size": 291.0}, {"serializer": "speedy", "test_data": "strings", "mode": "stream", "time": 1185.3372093023256, "size": 403.0}, {"serializer": "postcard", "test_data": "event", "mode": "bytes", "time": 437.83116883116884, "size": 96.0}, {"serializer": "speedy", "test_data": "event", "mode": "bytes", "time": 284.5853658536585, "size": 133.0}, {"serializer": "postcard", "test_data": "event", "mode": "stream", "time": 619.5591397849462, "size": 96.0}, {"serializer": "speedy", "test_data": "event", "mode": "stream", "time": 513.6593406593406, "size": 133.0}]} \ No newline at end of file diff --git a/dashboard/public/data/stats_rust_latest.json.gz b/dashboard/public/data/stats_rust_latest.json.gz new file mode 100644 index 00000000..d295e871 Binary files /dev/null and b/dashboard/public/data/stats_rust_latest.json.gz differ diff --git a/dashboard/public/data/stats_swift_latest.json b/dashboard/public/data/stats_swift_latest.json deleted file mode 100644 index 97cb4c16..00000000 --- a/dashboard/public/data/stats_swift_latest.json +++ /dev/null @@ -1 +0,0 @@ -{"schema_version": "2.0", "generated": "2026-07-24T20:24:21.772741", "language": "swift", "questions": {"Q1": "How fast?", "Q2": "How compact?", "Q3": "How stable?", "Q4": "Under which workloads does it win?"}, "groups": [{"serializer": "FlatBuffers", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "24.3.25", "avg_time_ser_ns": 2044.891304347826, "avg_time_deser_ns": 1885.75, "avg_time_total_ns": 3930.641304347826, "median_size_bytes": 120.0, "avg_ops_per_sec": 254411.41090484738, "min_ops_per_sec": 216637.78162911613, "max_ops_per_sec": 314169.02293433866, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 2044.891304347826, "ser_median_ns": 2090.0, "ser_std_ns": 164.62240888157447, "ser_mad_ns": 105.0, "ser_cv": 0.08050423439698534, "ser_min_ns": 1587.0, "ser_max_ns": 2352.0, "ser_p5_ns": 1773.0, "ser_p25_ns": 1930.75, "ser_p50_ns": 2090.0, "ser_p75_ns": 2165.5, "ser_p95_ns": 2275.5, "ser_p99_ns": 2312.8700000000003, "ser_ci_low_ns": 2011.1391304347826, "ser_ci_high_ns": 2077.983423913043, "deser_mean_ns": 1885.75, "deser_median_ns": 1873.0, "deser_std_ns": 166.60644058365824, "deser_mad_ns": 145.0, "deser_cv": 0.08835022700976176, "deser_min_ns": 1596.0, "deser_max_ns": 2406.0, "deser_p5_ns": 1639.65, "deser_p25_ns": 1742.25, "deser_p50_ns": 1873.0, "deser_p75_ns": 2017.5, "deser_p95_ns": 2142.7, "deser_p99_ns": 2274.9600000000005, "deser_ci_low_ns": 1848.481793478261, "deser_ci_high_ns": 1920.5991847826087, "total_mean_ns": 3930.641304347826, "total_median_ns": 3980.5, "total_std_ns": 289.91149015062666, "total_mad_ns": 210.0, "total_cv": 0.0737567912467477, "total_min_ns": 3183.0, "total_max_ns": 4616.0, "total_p5_ns": 3486.3, "total_p25_ns": 3706.25, "total_p50_ns": 3980.5, "total_p75_ns": 4147.75, "total_p95_ns": 4358.5, "total_p99_ns": 4550.4800000000005, "total_ci_low_ns": 3868.392934782609, "total_ci_high_ns": 3990.7190217391303, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 0.8483201581027668, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.9636801776272248}, {"serializer": "XMLCoder", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "0.18.2", "avg_time_ser_ns": 57359.54945054945, "avg_time_deser_ns": 77501.96703296703, "avg_time_total_ns": 134861.5164835165, "median_size_bytes": 254.0, "avg_ops_per_sec": 7415.013756887611, "min_ops_per_sec": 6910.897794732514, "max_ops_per_sec": 8127.438231469441, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 57359.54945054945, "ser_median_ns": 57357.0, "ser_std_ns": 1740.3014059750062, "ser_mad_ns": 999.0, "ser_cv": 0.030340220985789767, "ser_min_ns": 53861.0, "ser_max_ns": 61869.0, "ser_p5_ns": 54519.0, "ser_p25_ns": 56098.0, "ser_p50_ns": 57357.0, "ser_p75_ns": 58279.5, "ser_p95_ns": 60599.5, "ser_p99_ns": 61500.0, "ser_ci_low_ns": 57002.27335164836, "ser_ci_high_ns": 57712.210989010986, "deser_mean_ns": 77501.96703296703, "deser_median_ns": 77732.0, "deser_std_ns": 3403.32442196205, "deser_mad_ns": 2145.0, "deser_cv": 0.043912748956608766, "deser_min_ns": 68568.0, "deser_max_ns": 84956.0, "deser_p5_ns": 71589.5, "deser_p25_ns": 75413.0, "deser_p50_ns": 77732.0, "deser_p75_ns": 79705.0, "deser_p95_ns": 83236.5, "deser_p99_ns": 84083.9, "deser_ci_low_ns": 76808.45247252747, "deser_ci_high_ns": 78194.1695054945, "total_mean_ns": 134861.5164835165, "total_median_ns": 135439.0, "total_std_ns": 4801.0593445906115, "total_mad_ns": 3279.0, "total_cv": 0.0355999210877732, "total_min_ns": 123040.0, "total_max_ns": 144699.0, "total_p5_ns": 126847.0, "total_p25_ns": 131260.0, "total_p50_ns": 135439.0, "total_p75_ns": 138419.0, "total_p95_ns": 142897.0, "total_p99_ns": 143944.8, "total_ci_low_ns": 133868.50824175825, "total_ci_high_ns": 135870.65851648353, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 38.18068239895322}, {"serializer": "BinaryCodable", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "4.0.0", "avg_time_ser_ns": 13954.4, "avg_time_deser_ns": 10768.023529411765, "avg_time_total_ns": 24722.423529411764, "median_size_bytes": 122.0, "avg_ops_per_sec": 40449.10883475159, "min_ops_per_sec": 37643.51590438547, "max_ops_per_sec": 44523.59750667854, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 13954.4, "ser_median_ns": 13973.0, "ser_std_ns": 573.8896774683806, "ser_mad_ns": 386.0, "ser_cv": 0.04112607331511069, "ser_min_ns": 12463.0, "ser_max_ns": 15167.0, "ser_p5_ns": 12881.8, "ser_p25_ns": 13616.0, "ser_p50_ns": 13973.0, "ser_p75_ns": 14359.0, "ser_p95_ns": 14842.0, "ser_p99_ns": 15135.08, "ser_ci_low_ns": 13832.081470588237, "ser_ci_high_ns": 14070.70794117647, "deser_mean_ns": 10768.023529411765, "deser_median_ns": 10794.0, "deser_std_ns": 435.3880583393828, "deser_mad_ns": 275.0, "deser_cv": 0.04043342375229442, "deser_min_ns": 9630.0, "deser_max_ns": 11653.0, "deser_p5_ns": 10016.2, "deser_p25_ns": 10519.0, "deser_p50_ns": 10794.0, "deser_p75_ns": 11065.0, "deser_p95_ns": 11469.0, "deser_p99_ns": 11613.52, "deser_ci_low_ns": 10674.385294117648, "deser_ci_high_ns": 10855.955294117646, "total_mean_ns": 24722.423529411764, "total_median_ns": 24714.0, "total_std_ns": 916.9935786303522, "total_mad_ns": 588.0, "total_cv": 0.03709157306278746, "total_min_ns": 22460.0, "total_max_ns": 26565.0, "total_p5_ns": 22950.6, "total_p25_ns": 24310.0, "total_p50_ns": 24714.0, "total_p75_ns": 25323.0, "total_p95_ns": 26097.8, "total_p99_ns": 26459.16, "total_ci_low_ns": 24515.726176470587, "total_ci_high_ns": 24907.082058823533, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 31.46979458193407}, {"serializer": "Foundation.JSONEncoder", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 8026.079545454545, "avg_time_deser_ns": 11178.329545454546, "avg_time_total_ns": 19204.409090909092, "median_size_bytes": 168.0, "avg_ops_per_sec": 52071.375654738375, "min_ops_per_sec": 45777.065690089265, "max_ops_per_sec": 61808.51721367204, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 8026.079545454545, "ser_median_ns": 8093.5, "ser_std_ns": 490.6729186943385, "ser_mad_ns": 233.0, "ser_cv": 0.06113481880107007, "ser_min_ns": 6570.0, "ser_max_ns": 9335.0, "ser_p5_ns": 7199.0, "ser_p25_ns": 7820.0, "ser_p50_ns": 8093.5, "ser_p75_ns": 8323.25, "ser_p95_ns": 8720.6, "ser_p99_ns": 9226.25, "ser_ci_low_ns": 7922.020170454545, "ser_ci_high_ns": 8123.399431818182, "deser_mean_ns": 11178.329545454546, "deser_median_ns": 11306.5, "deser_std_ns": 606.7609827201442, "deser_mad_ns": 321.0, "deser_cv": 0.05428011227016222, "deser_min_ns": 9552.0, "deser_max_ns": 12510.0, "deser_p5_ns": 10043.9, "deser_p25_ns": 10871.75, "deser_p50_ns": 11306.5, "deser_p75_ns": 11577.25, "deser_p95_ns": 12027.199999999999, "deser_p99_ns": 12307.289999999999, "deser_ci_low_ns": 11052.840340909092, "deser_ci_high_ns": 11297.475852272728, "total_mean_ns": 19204.409090909092, "total_median_ns": 19414.0, "total_std_ns": 1060.6007800435796, "total_mad_ns": 527.5, "total_cv": 0.05522694163735778, "total_min_ns": 16179.0, "total_max_ns": 21845.0, "total_p5_ns": 17170.8, "total_p25_ns": 18753.25, "total_p50_ns": 19414.0, "total_p75_ns": 19897.25, "total_p95_ns": 20694.7, "total_p99_ns": 21121.159999999996, "total_ci_low_ns": 18981.899147727272, "total_ci_high_ns": 19424.242613636365, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.2787564012133}, {"serializer": "SwiftAvroCore", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "2.3.0", "avg_time_ser_ns": 36084.333333333336, "avg_time_deser_ns": 10534.892857142857, "avg_time_total_ns": 46619.22619047619, "median_size_bytes": 44.0, "avg_ops_per_sec": 21450.37748833955, "min_ops_per_sec": 18950.879320800486, "max_ops_per_sec": 24762.89527771587, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 36084.333333333336, "ser_median_ns": 36050.0, "ser_std_ns": 2199.456407833499, "ser_mad_ns": 1648.5, "ser_cv": 0.06095322276057473, "ser_min_ns": 30674.0, "ser_max_ns": 41960.0, "ser_p5_ns": 32579.6, "ser_p25_ns": 34413.0, "ser_p50_ns": 36050.0, "ser_p75_ns": 37426.5, "ser_p95_ns": 39509.6, "ser_p99_ns": 41173.990000000005, "ser_ci_low_ns": 35638.68898809524, "ser_ci_high_ns": 36562.31428571429, "deser_mean_ns": 10534.892857142857, "deser_median_ns": 10493.5, "deser_std_ns": 399.6226840244671, "deser_mad_ns": 262.0, "deser_cv": 0.03793324616049753, "deser_min_ns": 9542.0, "deser_max_ns": 11459.0, "deser_p5_ns": 9808.0, "deser_p25_ns": 10257.75, "deser_p50_ns": 10493.5, "deser_p75_ns": 10836.75, "deser_p95_ns": 11174.199999999999, "deser_p99_ns": 11436.59, "deser_ci_low_ns": 10450.427678571428, "deser_ci_high_ns": 10618.791369047618, "total_mean_ns": 46619.22619047619, "total_median_ns": 46704.5, "total_std_ns": 2430.09079780383, "total_mad_ns": 1698.5, "total_cv": 0.05212636494383237, "total_min_ns": 40383.0, "total_max_ns": 52768.0, "total_p5_ns": 42815.75, "total_p25_ns": 44975.25, "total_p50_ns": 46704.5, "total_p75_ns": 48359.75, "total_p95_ns": 50516.1, "total_p99_ns": 51986.14, "total_ci_low_ns": 46113.05952380952, "total_ci_high_ns": 47116.26369047619, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.17478504183811}, {"serializer": "SwiftCbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "0.0.4", "avg_time_ser_ns": 16082.229885057472, "avg_time_deser_ns": 10251.747126436781, "avg_time_total_ns": 26333.97701149425, "median_size_bytes": 124.0, "avg_ops_per_sec": 37973.755333784946, "min_ops_per_sec": 34574.56003872351, "max_ops_per_sec": 42329.834067050455, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 16082.229885057472, "ser_median_ns": 16203.0, "ser_std_ns": 808.3391773309804, "ser_mad_ns": 503.0, "ser_cv": 0.05026287915968885, "ser_min_ns": 14332.0, "ser_max_ns": 18013.0, "ser_p5_ns": 14596.9, "ser_p25_ns": 15591.5, "ser_p50_ns": 16203.0, "ser_p75_ns": 16622.5, "ser_p95_ns": 17231.8, "ser_p99_ns": 17899.48, "ser_ci_low_ns": 15913.868103448276, "ser_ci_high_ns": 16244.256034482758, "deser_mean_ns": 10251.747126436781, "deser_median_ns": 10278.0, "deser_std_ns": 333.49523961564694, "deser_mad_ns": 229.0, "deser_cv": 0.032530576057191576, "deser_min_ns": 9292.0, "deser_max_ns": 11025.0, "deser_p5_ns": 9764.6, "deser_p25_ns": 10054.5, "deser_p50_ns": 10278.0, "deser_p75_ns": 10506.0, "deser_p95_ns": 10686.3, "deser_p99_ns": 10926.1, "deser_ci_low_ns": 10183.26264367816, "deser_ci_high_ns": 10320.11724137931, "total_mean_ns": 26333.97701149425, "total_median_ns": 26500.0, "total_std_ns": 1082.882071539063, "total_mad_ns": 727.0, "total_cv": 0.041121098839966584, "total_min_ns": 23624.0, "total_max_ns": 28923.0, "total_p5_ns": 24339.7, "total_p25_ns": 25672.0, "total_p50_ns": 26500.0, "total_p75_ns": 27164.0, "total_p95_ns": 27716.8, "total_p99_ns": 28908.38, "total_ci_low_ns": 26100.666666666664, "total_ci_high_ns": 26561.679597701146, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.909295773034916}, {"serializer": "CapnProto", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "capnproto-1.0.2", "avg_time_ser_ns": 8906.556962025317, "avg_time_deser_ns": 4979.886075949367, "avg_time_total_ns": 13886.443037974683, "median_size_bytes": 96.0, "avg_ops_per_sec": 72012.68152437174, "min_ops_per_sec": 60128.675365281706, "max_ops_per_sec": 100210.44192804891, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 8906.556962025317, "ser_median_ns": 9050.0, "ser_std_ns": 885.4487743343144, "ser_mad_ns": 402.0, "ser_cv": 0.09941538330800354, "ser_min_ns": 5963.0, "ser_max_ns": 11005.0, "ser_p5_ns": 7129.2, "ser_p25_ns": 8631.0, "ser_p50_ns": 9050.0, "ser_p75_ns": 9330.0, "ser_p95_ns": 9875.4, "ser_p99_ns": 10853.68, "ser_ci_low_ns": 8701.804746835443, "ser_ci_high_ns": 9101.142721518987, "deser_mean_ns": 4979.886075949367, "deser_median_ns": 5087.0, "deser_std_ns": 339.6993764228847, "deser_mad_ns": 126.0, "deser_cv": 0.06821428668087036, "deser_min_ns": 3961.0, "deser_max_ns": 5626.0, "deser_p5_ns": 4189.7, "deser_p25_ns": 4884.5, "deser_p50_ns": 5087.0, "deser_p75_ns": 5178.0, "deser_p95_ns": 5406.8, "deser_p99_ns": 5490.28, "deser_ci_low_ns": 4904.7927215189875, "deser_ci_high_ns": 5053.273734177215, "total_mean_ns": 13886.443037974683, "total_median_ns": 14088.0, "total_std_ns": 1195.363862068521, "total_mad_ns": 483.0, "total_cv": 0.08608135710488343, "total_min_ns": 9979.0, "total_max_ns": 16631.0, "total_p5_ns": 11162.7, "total_p25_ns": 13577.0, "total_p50_ns": 14088.0, "total_p75_ns": 14524.0, "total_p95_ns": 15180.5, "total_p99_ns": 16294.82, "total_ci_low_ns": 13611.329430379747, "total_ci_high_ns": 14140.552215189875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.346289581419212}, {"serializer": "SwiftProtobuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "1.38.1", "avg_time_ser_ns": 1734.75, "avg_time_deser_ns": 1620.465909090909, "avg_time_total_ns": 3355.215909090909, "median_size_bytes": 50.0, "avg_ops_per_sec": 298043.41273255006, "min_ops_per_sec": 251572.32704402515, "max_ops_per_sec": 390320.06245121, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 1734.75, "ser_median_ns": 1795.0, "ser_std_ns": 184.35767647039603, "ser_mad_ns": 99.5, "ser_cv": 0.10627333994546535, "ser_min_ns": 1279.0, "ser_max_ns": 2160.0, "ser_p5_ns": 1368.45, "ser_p25_ns": 1599.0, "ser_p50_ns": 1795.0, "ser_p75_ns": 1857.5, "ser_p95_ns": 1980.35, "ser_p99_ns": 2077.3499999999995, "ser_ci_low_ns": 1696.3113636363637, "ser_ci_high_ns": 1774.0025568181818, "deser_mean_ns": 1620.465909090909, "deser_median_ns": 1642.0, "deser_std_ns": 125.587076432968, "deser_mad_ns": 71.0, "deser_cv": 0.07750059765430246, "deser_min_ns": 1277.0, "deser_max_ns": 1919.0, "deser_p5_ns": 1377.85, "deser_p25_ns": 1562.5, "deser_p50_ns": 1642.0, "deser_p75_ns": 1707.0, "deser_p95_ns": 1797.6, "deser_p99_ns": 1876.37, "deser_ci_low_ns": 1595.1960227272727, "deser_ci_high_ns": 1645.0485795454545, "total_mean_ns": 3355.215909090909, "total_median_ns": 3413.0, "total_std_ns": 293.75775651734983, "total_mad_ns": 162.5, "total_cv": 0.08755256426908845, "total_min_ns": 2562.0, "total_max_ns": 3975.0, "total_p5_ns": 2754.0, "total_p25_ns": 3184.0, "total_p50_ns": 3413.0, "total_p75_ns": 3551.25, "total_p95_ns": 3726.0, "total_p99_ns": 3826.229999999999, "total_ci_low_ns": 3292.606534090909, "total_ci_high_ns": 3413.719034090909, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "IkigaJSON", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "2.5.3", "avg_time_ser_ns": 7237.573033707865, "avg_time_deser_ns": 11350.14606741573, "avg_time_total_ns": 18587.719101123595, "median_size_bytes": 168.0, "avg_ops_per_sec": 53798.96234495774, "min_ops_per_sec": 49773.530436513865, "max_ops_per_sec": 58899.75262103899, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 7237.573033707865, "ser_median_ns": 7259.0, "ser_std_ns": 284.5182087015478, "ser_mad_ns": 231.0, "ser_cv": 0.03931127290549591, "ser_min_ns": 6603.0, "ser_max_ns": 7774.0, "ser_p5_ns": 6768.2, "ser_p25_ns": 6989.0, "ser_p50_ns": 7259.0, "ser_p75_ns": 7490.0, "ser_p95_ns": 7621.4, "ser_p99_ns": 7706.240000000001, "ser_ci_low_ns": 7179.69606741573, "ser_ci_high_ns": 7292.359550561798, "deser_mean_ns": 11350.14606741573, "deser_median_ns": 11378.0, "deser_std_ns": 483.2017871016442, "deser_mad_ns": 348.0, "deser_cv": 0.042572296799671276, "deser_min_ns": 10163.0, "deser_max_ns": 12317.0, "deser_p5_ns": 10501.8, "deser_p25_ns": 10996.0, "deser_p50_ns": 11378.0, "deser_p75_ns": 11679.0, "deser_p95_ns": 12115.4, "deser_p99_ns": 12221.08, "deser_ci_low_ns": 11249.297752808989, "deser_ci_high_ns": 11450.340449438203, "total_mean_ns": 18587.719101123595, "total_median_ns": 18677.0, "total_std_ns": 711.5872780552586, "total_mad_ns": 555.0, "total_cv": 0.03828265717724583, "total_min_ns": 16978.0, "total_max_ns": 20091.0, "total_p5_ns": 17355.4, "total_p25_ns": 18049.0, "total_p50_ns": 18677.0, "total_p75_ns": 19166.0, "total_p95_ns": 19535.8, "total_p99_ns": 19839.32, "total_ci_low_ns": 18434.933988764045, "total_ci_high_ns": 18735.366853932584, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.806187810349762}, {"serializer": "TOML", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "2.0.0", "avg_time_ser_ns": 41467.80722891566, "avg_time_deser_ns": 18746.68674698795, "avg_time_total_ns": 60214.49397590361, "median_size_bytes": 167.0, "avg_ops_per_sec": 16607.29724641007, "min_ops_per_sec": 15006.452774693118, "max_ops_per_sec": 18484.630030129945, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 41467.80722891566, "ser_median_ns": 41386.0, "ser_std_ns": 1976.8320768206654, "ser_mad_ns": 1416.0, "ser_cv": 0.0476714880511505, "ser_min_ns": 37341.0, "ser_max_ns": 47603.0, "ser_p5_ns": 38561.3, "ser_p25_ns": 40000.5, "ser_p50_ns": 41386.0, "ser_p75_ns": 42885.0, "ser_p95_ns": 44609.5, "ser_p99_ns": 46035.97999999999, "ser_ci_low_ns": 41049.52861445783, "ser_ci_high_ns": 41905.79186746988, "deser_mean_ns": 18746.68674698795, "deser_median_ns": 18701.0, "deser_std_ns": 797.0615229752227, "deser_mad_ns": 486.0, "deser_cv": 0.04251746101765355, "deser_min_ns": 16575.0, "deser_max_ns": 21047.0, "deser_p5_ns": 17743.5, "deser_p25_ns": 18217.5, "deser_p50_ns": 18701.0, "deser_p75_ns": 19233.0, "deser_p95_ns": 20070.3, "deser_p99_ns": 20812.48, "deser_ci_low_ns": 18582.706626506024, "deser_ci_high_ns": 18915.812048192773, "total_mean_ns": 60214.49397590361, "total_median_ns": 60152.0, "total_std_ns": 2459.7968058729525, "total_mad_ns": 1505.0, "total_cv": 0.04085057672090218, "total_min_ns": 54099.0, "total_max_ns": 66638.0, "total_p5_ns": 56547.3, "total_p25_ns": 58641.5, "total_p50_ns": 60152.0, "total_p75_ns": 61629.0, "total_p95_ns": 64359.4, "total_p99_ns": 65331.73999999999, "total_ci_low_ns": 59710.842168674695, "total_ci_high_ns": 60742.500903614455, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 32.790108600640245}, {"serializer": "SwiftBSON", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "3.1.0", "avg_time_ser_ns": 12811.03409090909, "avg_time_deser_ns": 21326.69318181818, "avg_time_total_ns": 34137.72727272727, "median_size_bytes": 144.0, "avg_ops_per_sec": 29293.104136985206, "min_ops_per_sec": 27013.155406683054, "max_ops_per_sec": 32933.73732051113, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 12811.03409090909, "ser_median_ns": 12823.0, "ser_std_ns": 530.5823183310963, "ser_mad_ns": 291.5, "ser_cv": 0.04141604140352775, "ser_min_ns": 11468.0, "ser_max_ns": 14016.0, "ser_p5_ns": 11878.0, "ser_p25_ns": 12536.75, "ser_p50_ns": 12823.0, "ser_p75_ns": 13121.5, "ser_p95_ns": 13676.449999999999, "ser_p99_ns": 13952.49, "ser_ci_low_ns": 12699.847159090908, "ser_ci_high_ns": 12916.570738636363, "deser_mean_ns": 21326.69318181818, "deser_median_ns": 21501.0, "deser_std_ns": 977.7399856266532, "deser_mad_ns": 603.5, "deser_cv": 0.04584583166696531, "deser_min_ns": 18796.0, "deser_max_ns": 23076.0, "deser_p5_ns": 19536.05, "deser_p25_ns": 20787.0, "deser_p50_ns": 21501.0, "deser_p75_ns": 21999.25, "deser_p95_ns": 22640.3, "deser_p99_ns": 23059.47, "deser_ci_low_ns": 21115.518465909092, "deser_ci_high_ns": 21528.65113636364, "total_mean_ns": 34137.72727272727, "total_median_ns": 34340.0, "total_std_ns": 1453.9780210458582, "total_mad_ns": 878.5, "total_cv": 0.042591529583384, "total_min_ns": 30364.0, "total_max_ns": 37019.0, "total_p5_ns": 31553.65, "total_p25_ns": 33326.0, "total_p50_ns": 34340.0, "total_p75_ns": 34974.0, "total_p95_ns": 36293.7, "total_p99_ns": 36955.49, "total_ci_low_ns": 33829.207102272725, "total_ci_high_ns": 34429.90284090909, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.220986673237622}, {"serializer": "Foundation.PropertyListEncoder", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 12763.785714285714, "avg_time_deser_ns": 17832.738095238095, "avg_time_total_ns": 30596.52380952381, "median_size_bytes": 197.0, "avg_ops_per_sec": 32683.4514347257, "min_ops_per_sec": 30083.330826389098, "max_ops_per_sec": 38810.835985407124, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 12763.785714285714, "ser_median_ns": 12811.0, "ser_std_ns": 687.859576441219, "ser_mad_ns": 474.0, "ser_cv": 0.053891501458798424, "ser_min_ns": 10662.0, "ser_max_ns": 13989.0, "ser_p5_ns": 11632.9, "ser_p25_ns": 12313.25, "ser_p50_ns": 12811.0, "ser_p75_ns": 13232.75, "ser_p95_ns": 13758.4, "ser_p99_ns": 13933.39, "ser_ci_low_ns": 12614.347023809523, "ser_ci_high_ns": 12910.448809523808, "deser_mean_ns": 17832.738095238095, "deser_median_ns": 17945.0, "deser_std_ns": 976.7995209219937, "deser_mad_ns": 520.5, "deser_cv": 0.05477563320367667, "deser_min_ns": 14872.0, "deser_max_ns": 19602.0, "deser_p5_ns": 16021.6, "deser_p25_ns": 17419.5, "deser_p50_ns": 17945.0, "deser_p75_ns": 18465.25, "deser_p95_ns": 19189.0, "deser_p99_ns": 19581.25, "deser_ci_low_ns": 17617.666964285716, "deser_ci_high_ns": 18044.908333333333, "total_mean_ns": 30596.52380952381, "total_median_ns": 31023.5, "total_std_ns": 1582.0779341700338, "total_mad_ns": 1043.0, "total_cv": 0.051707767327397465, "total_min_ns": 25766.0, "total_max_ns": 33241.0, "total_p5_ns": 27791.4, "total_p25_ns": 29658.5, "total_p50_ns": 31023.5, "total_p75_ns": 31526.5, "total_p95_ns": 32824.8, "total_p99_ns": 33100.73, "total_ci_low_ns": 30266.595833333336, "total_ci_high_ns": 30925.05238095238, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.102029698091275}, {"serializer": "SwiftMsgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "1.2.1", "avg_time_ser_ns": 14623.776470588235, "avg_time_deser_ns": 9784.717647058824, "avg_time_total_ns": 24408.49411764706, "median_size_bytes": 124.0, "avg_ops_per_sec": 40969.3443266134, "min_ops_per_sec": 38741.67054083372, "max_ops_per_sec": 44408.91731059597, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 14623.776470588235, "ser_median_ns": 14661.0, "ser_std_ns": 495.64360219028026, "ser_mad_ns": 347.0, "ser_cv": 0.033892996326026534, "ser_min_ns": 13443.0, "ser_max_ns": 15723.0, "ser_p5_ns": 13825.8, "ser_p25_ns": 14256.0, "ser_p50_ns": 14661.0, "ser_p75_ns": 14954.0, "ser_p95_ns": 15507.8, "ser_p99_ns": 15707.88, "ser_ci_low_ns": 14519.493235294118, "ser_ci_high_ns": 14727.341176470587, "deser_mean_ns": 9784.717647058824, "deser_median_ns": 9836.0, "deser_std_ns": 293.51841881707173, "deser_mad_ns": 162.0, "deser_cv": 0.029997638092837568, "deser_min_ns": 9075.0, "deser_max_ns": 10687.0, "deser_p5_ns": 9286.4, "deser_p25_ns": 9646.0, "deser_p50_ns": 9836.0, "deser_p75_ns": 9969.0, "deser_p95_ns": 10177.6, "deser_p99_ns": 10324.96, "deser_ci_low_ns": 9724.594117647059, "deser_ci_high_ns": 9846.95794117647, "total_mean_ns": 24408.49411764706, "total_median_ns": 24407.0, "total_std_ns": 687.5924980810705, "total_mad_ns": 474.0, "total_cv": 0.028170213810279638, "total_min_ns": 22518.0, "total_max_ns": 25812.0, "total_p5_ns": 23279.4, "total_p25_ns": 23949.0, "total_p50_ns": 24407.0, "total_p75_ns": 24893.0, "total_p95_ns": 25508.2, "total_p99_ns": 25786.8, "total_ci_low_ns": 24261.404705882353, "total_ci_high_ns": 24551.701176470586, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 39.887496143721656}, {"serializer": "Yams", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "5.4.0", "avg_time_ser_ns": 72880.08988764045, "avg_time_deser_ns": 58750.68539325843, "avg_time_total_ns": 131630.77528089887, "median_size_bytes": 157.0, "avg_ops_per_sec": 7597.007598458713, "min_ops_per_sec": 7076.189330521727, "max_ops_per_sec": 8354.21888053467, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 72880.08988764045, "ser_median_ns": 72814.0, "ser_std_ns": 2993.156890917444, "ser_mad_ns": 1995.0, "ser_cv": 0.04106961030827496, "ser_min_ns": 65776.0, "ser_max_ns": 80347.0, "ser_p5_ns": 67778.0, "ser_p25_ns": 70928.0, "ser_p50_ns": 72814.0, "ser_p75_ns": 74809.0, "ser_p95_ns": 78305.2, "ser_p99_ns": 79706.36, "ser_ci_low_ns": 72255.71207865169, "ser_ci_high_ns": 73445.66516853933, "deser_mean_ns": 58750.68539325843, "deser_median_ns": 58679.0, "deser_std_ns": 1756.7353088477503, "deser_mad_ns": 1116.0, "deser_cv": 0.029901528758153578, "deser_min_ns": 53924.0, "deser_max_ns": 62603.0, "deser_p5_ns": 55293.8, "deser_p25_ns": 57851.0, "deser_p50_ns": 58679.0, "deser_p75_ns": 60020.0, "deser_p95_ns": 61431.6, "deser_p99_ns": 62382.12, "deser_ci_low_ns": 58373.088764044944, "deser_ci_high_ns": 59114.94606741573, "total_mean_ns": 131630.77528089887, "total_median_ns": 131645.0, "total_std_ns": 4345.284734767125, "total_mad_ns": 2711.0, "total_cv": 0.0330111611474925, "total_min_ns": 119700.0, "total_max_ns": 141319.0, "total_p5_ns": 123846.4, "total_p25_ns": 129647.0, "total_p50_ns": 131645.0, "total_p75_ns": 134386.0, "total_p95_ns": 138786.0, "total_p99_ns": 140906.28, "total_ci_low_ns": 130724.0, "total_ci_high_ns": 132524.05533707867, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 41.35771104213489}, {"serializer": "SwiftProtobuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "1.38.1", "avg_time_ser_ns": 6652.444444444444, "avg_time_deser_ns": 2891.0666666666666, "avg_time_total_ns": 9543.511111111111, "median_size_bytes": 50.0, "avg_ops_per_sec": 104783.23840748105, "min_ops_per_sec": 94482.2373393802, "max_ops_per_sec": 117550.25273304338, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 6652.444444444444, "ser_median_ns": 6618.5, "ser_std_ns": 296.2544499684222, "ser_mad_ns": 201.0, "ser_cv": 0.044533171594665286, "ser_min_ns": 5927.0, "ser_max_ns": 7509.0, "ser_p5_ns": 6211.25, "ser_p25_ns": 6440.75, "ser_p50_ns": 6618.5, "ser_p75_ns": 6855.5, "ser_p95_ns": 7152.0, "ser_p99_ns": 7408.43, "ser_ci_low_ns": 6591.897222222222, "ser_ci_high_ns": 6711.773333333333, "deser_mean_ns": 2891.0666666666666, "deser_median_ns": 2906.0, "deser_std_ns": 178.47259569953684, "deser_mad_ns": 108.5, "deser_cv": 0.06173243867299388, "deser_min_ns": 2462.0, "deser_max_ns": 3314.0, "deser_p5_ns": 2537.05, "deser_p25_ns": 2793.5, "deser_p50_ns": 2906.0, "deser_p75_ns": 3008.75, "deser_p95_ns": 3138.6, "deser_p99_ns": 3311.33, "deser_ci_low_ns": 2855.3180555555555, "deser_ci_high_ns": 2928.3166666666666, "total_mean_ns": 9543.511111111111, "total_median_ns": 9547.0, "total_std_ns": 432.0024512114302, "total_mad_ns": 285.0, "total_cv": 0.04526661583790349, "total_min_ns": 8507.0, "total_max_ns": 10584.0, "total_p5_ns": 8790.1, "total_p25_ns": 9271.75, "total_p50_ns": 9547.0, "total_p75_ns": 9837.5, "total_p95_ns": 10222.449999999999, "total_p99_ns": 10551.07, "total_ci_low_ns": 9454.719166666668, "total_ci_high_ns": 9631.182777777776, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "BinaryCodable", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "4.0.0", "avg_time_ser_ns": 23646.81818181818, "avg_time_deser_ns": 12118.954545454546, "avg_time_total_ns": 35765.77272727273, "median_size_bytes": 122.0, "avg_ops_per_sec": 27959.69229087739, "min_ops_per_sec": 26126.71456564337, "max_ops_per_sec": 30799.556486386595, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 23646.81818181818, "ser_median_ns": 23629.0, "ser_std_ns": 789.1052337999345, "ser_mad_ns": 560.0, "ser_cv": 0.0333704614182161, "ser_min_ns": 21708.0, "ser_max_ns": 25582.0, "ser_p5_ns": 22389.6, "ser_p25_ns": 23173.25, "ser_p50_ns": 23629.0, "ser_p75_ns": 24209.25, "ser_p95_ns": 25016.7, "ser_p99_ns": 25227.91, "ser_ci_low_ns": 23483.92471590909, "ser_ci_high_ns": 23813.180681818183, "deser_mean_ns": 12118.954545454546, "deser_median_ns": 12192.0, "deser_std_ns": 547.0390498383703, "deser_mad_ns": 336.0, "deser_cv": 0.045139128774399774, "deser_min_ns": 10577.0, "deser_max_ns": 13157.0, "deser_p5_ns": 11128.95, "deser_p25_ns": 11848.5, "deser_p50_ns": 12192.0, "deser_p75_ns": 12453.0, "deser_p95_ns": 12857.699999999999, "deser_p99_ns": 13121.33, "deser_ci_low_ns": 12007.251704545455, "deser_ci_high_ns": 12230.551420454545, "total_mean_ns": 35765.77272727273, "total_median_ns": 35814.5, "total_std_ns": 1260.8064899994213, "total_mad_ns": 826.5, "total_cv": 0.035251761498725, "total_min_ns": 32468.0, "total_max_ns": 38275.0, "total_p5_ns": 33504.3, "total_p25_ns": 34985.25, "total_p50_ns": 35814.5, "total_p75_ns": 36623.0, "total_p95_ns": 37779.899999999994, "total_p99_ns": 38192.35, "total_ci_low_ns": 35501.77130681818, "total_ci_high_ns": 36032.45681818182, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.831240068295454}, {"serializer": "SwiftMsgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "1.2.1", "avg_time_ser_ns": 24615.39534883721, "avg_time_deser_ns": 11188.127906976744, "avg_time_total_ns": 35803.523255813954, "median_size_bytes": 124.0, "avg_ops_per_sec": 27930.212142952023, "min_ops_per_sec": 26279.827604330916, "max_ops_per_sec": 30217.87084881999, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 24615.39534883721, "ser_median_ns": 24692.5, "ser_std_ns": 830.0817575476565, "ser_mad_ns": 458.5, "ser_cv": 0.03372205669598836, "ser_min_ns": 22811.0, "ser_max_ns": 26361.0, "ser_p5_ns": 23115.5, "ser_p25_ns": 24086.25, "ser_p50_ns": 24692.5, "ser_p75_ns": 25075.0, "ser_p95_ns": 25909.25, "ser_p99_ns": 26294.7, "ser_ci_low_ns": 24432.38546511628, "ser_ci_high_ns": 24787.734593023255, "deser_mean_ns": 11188.127906976744, "deser_median_ns": 11220.0, "deser_std_ns": 365.6943692246663, "deser_mad_ns": 235.5, "deser_cv": 0.03268593032410944, "deser_min_ns": 10205.0, "deser_max_ns": 12017.0, "deser_p5_ns": 10570.0, "deser_p25_ns": 10973.5, "deser_p50_ns": 11220.0, "deser_p75_ns": 11430.25, "deser_p95_ns": 11709.5, "deser_p99_ns": 11927.75, "deser_ci_low_ns": 11107.931395348838, "deser_ci_high_ns": 11266.775290697675, "total_mean_ns": 35803.523255813954, "total_median_ns": 35866.0, "total_std_ns": 1126.1691621624814, "total_mad_ns": 671.5, "total_cv": 0.03145414360804864, "total_min_ns": 33093.0, "total_max_ns": 38052.0, "total_p5_ns": 33870.25, "total_p25_ns": 35201.5, "total_p50_ns": 35866.0, "total_p75_ns": 36551.0, "total_p95_ns": 37522.0, "total_p99_ns": 37865.0, "total_ci_low_ns": 35563.220639534884, "total_ci_high_ns": 36045.51656976744, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.921492988408154}, {"serializer": "SwiftBSON", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "3.1.0", "avg_time_ser_ns": 24179.776470588236, "avg_time_deser_ns": 23043.811764705883, "avg_time_total_ns": 47223.58823529412, "median_size_bytes": 144.0, "avg_ops_per_sec": 21175.858027082675, "min_ops_per_sec": 19823.570224997522, "max_ops_per_sec": 23449.407902450464, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 24179.776470588236, "ser_median_ns": 24148.0, "ser_std_ns": 611.5289265531144, "ser_mad_ns": 391.0, "ser_cv": 0.025290925550819923, "ser_min_ns": 22313.0, "ser_max_ns": 25598.0, "ser_p5_ns": 23205.0, "ser_p25_ns": 23765.0, "ser_p50_ns": 24148.0, "ser_p75_ns": 24567.0, "ser_p95_ns": 25108.4, "ser_p99_ns": 25541.72, "ser_ci_low_ns": 24048.273529411767, "ser_ci_high_ns": 24316.178529411765, "deser_mean_ns": 23043.811764705883, "deser_median_ns": 23135.0, "deser_std_ns": 1022.0875753890691, "deser_mad_ns": 647.0, "deser_cv": 0.044354101909238296, "deser_min_ns": 20332.0, "deser_max_ns": 25331.0, "deser_p5_ns": 21028.8, "deser_p25_ns": 22426.0, "deser_p50_ns": 23135.0, "deser_p75_ns": 23687.0, "deser_p95_ns": 24550.2, "deser_p99_ns": 24980.719999999998, "deser_ci_low_ns": 22814.10617647059, "deser_ci_high_ns": 23250.121764705884, "total_mean_ns": 47223.58823529412, "total_median_ns": 47272.0, "total_std_ns": 1527.3124099145502, "total_mad_ns": 1060.0, "total_cv": 0.03234215075535202, "total_min_ns": 42645.0, "total_max_ns": 50445.0, "total_p5_ns": 44572.8, "total_p25_ns": 46299.0, "total_p50_ns": 47272.0, "total_p75_ns": 48332.0, "total_p95_ns": 49632.6, "total_p99_ns": 50289.6, "total_ci_low_ns": 46909.69852941176, "total_ci_high_ns": 47540.297647058826, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 33.84616343452261}, {"serializer": "Foundation.PropertyListEncoder", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 27497.126436781607, "avg_time_deser_ns": 19477.666666666668, "avg_time_total_ns": 46974.793103448275, "median_size_bytes": 197.0, "avg_ops_per_sec": 21288.012866768604, "min_ops_per_sec": 19753.086419753086, "max_ops_per_sec": 23468.11856093497, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 27497.126436781607, "ser_median_ns": 27492.0, "ser_std_ns": 756.1089623180119, "ser_mad_ns": 464.0, "ser_cv": 0.027497744684571862, "ser_min_ns": 25762.0, "ser_max_ns": 29518.0, "ser_p5_ns": 26133.8, "ser_p25_ns": 27057.5, "ser_p50_ns": 27492.0, "ser_p75_ns": 27959.0, "ser_p95_ns": 28715.7, "ser_p99_ns": 29229.04, "ser_ci_low_ns": 27333.58247126437, "ser_ci_high_ns": 27656.0, "deser_mean_ns": 19477.666666666668, "deser_median_ns": 19645.0, "deser_std_ns": 1100.0489911570924, "deser_mad_ns": 563.0, "deser_cv": 0.05647745235519787, "deser_min_ns": 16849.0, "deser_max_ns": 21804.0, "deser_p5_ns": 17347.7, "deser_p25_ns": 19009.5, "deser_p50_ns": 19645.0, "deser_p75_ns": 20173.0, "deser_p95_ns": 21069.8, "deser_p99_ns": 21749.82, "deser_ci_low_ns": 19236.423850574713, "deser_ci_high_ns": 19697.60172413793, "total_mean_ns": 46974.793103448275, "total_median_ns": 47218.0, "total_std_ns": 1725.4679522872889, "total_mad_ns": 914.0, "total_cv": 0.03673178396948868, "total_min_ns": 42611.0, "total_max_ns": 50625.0, "total_p5_ns": 43515.7, "total_p25_ns": 46093.0, "total_p50_ns": 47218.0, "total_p75_ns": 47968.5, "total_p95_ns": 49309.7, "total_p99_ns": 50519.22, "total_ci_low_ns": 46611.50747126437, "total_ci_high_ns": 47318.75689655173, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.859407057791618}, {"serializer": "FlatBuffers", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "24.3.25", "avg_time_ser_ns": 11585.80459770115, "avg_time_deser_ns": 3073.287356321839, "avg_time_total_ns": 14659.091954022988, "median_size_bytes": 120.0, "avg_ops_per_sec": 68217.04940090534, "min_ops_per_sec": 63139.28526329082, "max_ops_per_sec": 74465.70854121677, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 11585.80459770115, "ser_median_ns": 11566.0, "ser_std_ns": 332.2012852655807, "ser_mad_ns": 220.0, "ser_cv": 0.028673130334987345, "ser_min_ns": 10807.0, "ser_max_ns": 12453.0, "ser_p5_ns": 11143.2, "ser_p25_ns": 11344.0, "ser_p50_ns": 11566.0, "ser_p75_ns": 11782.0, "ser_p95_ns": 12224.2, "ser_p99_ns": 12435.8, "ser_ci_low_ns": 11521.519540229885, "ser_ci_high_ns": 11657.836206896553, "deser_mean_ns": 3073.287356321839, "deser_median_ns": 3075.0, "deser_std_ns": 208.04398618348895, "deser_mad_ns": 157.0, "deser_cv": 0.06769428369772731, "deser_min_ns": 2617.0, "deser_max_ns": 3523.0, "deser_p5_ns": 2742.5, "deser_p25_ns": 2920.0, "deser_p50_ns": 3075.0, "deser_p75_ns": 3228.5, "deser_p95_ns": 3418.7, "deser_p99_ns": 3510.1, "deser_ci_low_ns": 3027.9862068965517, "deser_ci_high_ns": 3114.230459770115, "total_mean_ns": 14659.091954022988, "total_median_ns": 14613.0, "total_std_ns": 489.5636318045615, "total_mad_ns": 354.0, "total_cv": 0.0333965864556984, "total_min_ns": 13429.0, "total_max_ns": 15838.0, "total_p5_ns": 13964.8, "total_p25_ns": 14291.0, "total_p50_ns": 14613.0, "total_p75_ns": 14989.5, "total_p95_ns": 15518.0, "total_p99_ns": 15813.92, "total_ci_low_ns": 14559.227298850576, "total_ci_high_ns": 14761.139080459769, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.044567992801586}, {"serializer": "Yams", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "5.4.0", "avg_time_ser_ns": 86090.92941176471, "avg_time_deser_ns": 60939.91764705882, "avg_time_total_ns": 147030.84705882354, "median_size_bytes": 157.0, "avg_ops_per_sec": 6801.293878147379, "min_ops_per_sec": 6495.784236030816, "max_ops_per_sec": 7232.906832927085, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 86090.92941176471, "ser_median_ns": 85790.0, "ser_std_ns": 2518.969483114622, "ser_mad_ns": 1429.0, "ser_cv": 0.029259406308260783, "ser_min_ns": 80204.0, "ser_max_ns": 92548.0, "ser_p5_ns": 82413.6, "ser_p25_ns": 84490.0, "ser_p50_ns": 85790.0, "ser_p75_ns": 87432.0, "ser_p95_ns": 90430.2, "ser_p99_ns": 92483.32, "ser_ci_low_ns": 85565.97941176471, "ser_ci_high_ns": 86621.21882352942, "deser_mean_ns": 60939.91764705882, "deser_median_ns": 61025.0, "deser_std_ns": 1363.3907766315283, "deser_mad_ns": 932.0, "deser_cv": 0.022372704612562442, "deser_min_ns": 57866.0, "deser_max_ns": 63967.0, "deser_p5_ns": 58451.0, "deser_p25_ns": 59936.0, "deser_p50_ns": 61025.0, "deser_p75_ns": 61801.0, "deser_p95_ns": 62900.6, "deser_p99_ns": 63903.159999999996, "deser_ci_low_ns": 60650.76470588236, "deser_ci_high_ns": 61230.620294117645, "total_mean_ns": 147030.84705882354, "total_median_ns": 146993.0, "total_std_ns": 3431.77359221661, "total_mad_ns": 2261.0, "total_cv": 0.023340500723930666, "total_min_ns": 138257.0, "total_max_ns": 153946.0, "total_p5_ns": 141299.8, "total_p25_ns": 144787.0, "total_p50_ns": 146993.0, "total_p75_ns": 149254.0, "total_p95_ns": 152575.2, "total_p99_ns": 153167.32, "total_ci_low_ns": 146301.1467647059, "total_ci_high_ns": 147782.17352941178, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 56.77044190271629}, {"serializer": "TOML", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "2.0.0", "avg_time_ser_ns": 55202.416666666664, "avg_time_deser_ns": 20626.72619047619, "avg_time_total_ns": 75829.14285714286, "median_size_bytes": 167.0, "avg_ops_per_sec": 13187.541917543953, "min_ops_per_sec": 12187.98751950078, "max_ops_per_sec": 14410.052452590928, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 55202.416666666664, "ser_median_ns": 55153.5, "ser_std_ns": 1993.7250853273263, "ser_mad_ns": 1432.0, "ser_cv": 0.036116626874620396, "ser_min_ns": 50631.0, "ser_max_ns": 61132.0, "ser_p5_ns": 52140.3, "ser_p25_ns": 53852.5, "ser_p50_ns": 55153.5, "ser_p75_ns": 56652.25, "ser_p95_ns": 58181.45, "ser_p99_ns": 59498.560000000005, "ser_ci_low_ns": 54779.822916666664, "ser_ci_high_ns": 55630.87976190476, "deser_mean_ns": 20626.72619047619, "deser_median_ns": 20608.0, "deser_std_ns": 737.1598435674892, "deser_mad_ns": 380.0, "deser_cv": 0.03573809225759985, "deser_min_ns": 18670.0, "deser_max_ns": 22343.0, "deser_p5_ns": 19155.6, "deser_p25_ns": 20276.25, "deser_p50_ns": 20608.0, "deser_p75_ns": 21162.75, "deser_p95_ns": 21770.8, "deser_p99_ns": 21932.98, "deser_ci_low_ns": 20464.785119047618, "deser_ci_high_ns": 20778.31845238095, "total_mean_ns": 75829.14285714286, "total_median_ns": 76025.5, "total_std_ns": 2422.400388456986, "total_mad_ns": 1655.5, "total_cv": 0.03194550666385126, "total_min_ns": 69396.0, "total_max_ns": 82048.0, "total_p5_ns": 71853.7, "total_p25_ns": 74331.5, "total_p50_ns": 76025.5, "total_p75_ns": 77609.0, "total_p95_ns": 79676.5, "total_p99_ns": 80881.85, "total_ci_low_ns": 75308.05178571428, "total_ci_high_ns": 76339.49404761905, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 38.56702300542953}, {"serializer": "SwiftCbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "0.0.4", "avg_time_ser_ns": 26471.0, "avg_time_deser_ns": 11705.416666666666, "avg_time_total_ns": 38176.416666666664, "median_size_bytes": 124.0, "avg_ops_per_sec": 26194.18183564461, "min_ops_per_sec": 23950.374823365986, "max_ops_per_sec": 28569.796011656475, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 26471.0, "ser_median_ns": 26481.0, "ser_std_ns": 919.4978724006911, "ser_mad_ns": 633.5, "ser_cv": 0.03473604595220019, "ser_min_ns": 24177.0, "ser_max_ns": 29109.0, "ser_p5_ns": 24892.3, "ser_p25_ns": 25904.75, "ser_p50_ns": 26481.0, "ser_p75_ns": 27143.0, "ser_p95_ns": 27775.65, "ser_p99_ns": 28276.510000000002, "ser_ci_low_ns": 26280.922321428574, "ser_ci_high_ns": 26664.71101190476, "deser_mean_ns": 11705.416666666666, "deser_median_ns": 11622.5, "deser_std_ns": 392.9745449413836, "deser_mad_ns": 223.5, "deser_cv": 0.033572025339384214, "deser_min_ns": 10825.0, "deser_max_ns": 12644.0, "deser_p5_ns": 11031.3, "deser_p25_ns": 11461.0, "deser_p50_ns": 11622.5, "deser_p75_ns": 11938.75, "deser_p95_ns": 12372.35, "deser_p99_ns": 12585.9, "deser_ci_low_ns": 11622.749702380952, "deser_ci_high_ns": 11787.515476190476, "total_mean_ns": 38176.416666666664, "total_median_ns": 38146.0, "total_std_ns": 1250.605580618083, "total_mad_ns": 792.0, "total_cv": 0.032758589983381964, "total_min_ns": 35002.0, "total_max_ns": 41753.0, "total_p5_ns": 35947.05, "total_p25_ns": 37455.0, "total_p50_ns": 38146.0, "total_p75_ns": 39122.75, "total_p95_ns": 40054.1, "total_p99_ns": 40634.990000000005, "total_ci_low_ns": 37917.90892857143, "total_ci_high_ns": 38444.663095238095, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.897581587545154}, {"serializer": "Foundation.JSONEncoder", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 20715.022222222222, "avg_time_deser_ns": 12440.933333333332, "avg_time_total_ns": 33155.955555555556, "median_size_bytes": 168.0, "avg_ops_per_sec": 30160.494042297076, "min_ops_per_sec": 28089.887640449437, "max_ops_per_sec": 33073.15782510914, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 20715.022222222222, "ser_median_ns": 20651.0, "ser_std_ns": 633.4518946782073, "ser_mad_ns": 382.5, "ser_cv": 0.03057934902906675, "ser_min_ns": 19275.0, "ser_max_ns": 22375.0, "ser_p5_ns": 19742.65, "ser_p25_ns": 20318.0, "ser_p50_ns": 20651.0, "ser_p75_ns": 21174.5, "ser_p95_ns": 21777.2, "ser_p99_ns": 22092.87, "ser_ci_low_ns": 20586.561666666665, "ser_ci_high_ns": 20846.404166666664, "deser_mean_ns": 12440.933333333332, "deser_median_ns": 12514.5, "deser_std_ns": 645.1660321101571, "deser_mad_ns": 464.5, "deser_cv": 0.051858330466376355, "deser_min_ns": 10746.0, "deser_max_ns": 14314.0, "deser_p5_ns": 11324.65, "deser_p25_ns": 11999.25, "deser_p50_ns": 12514.5, "deser_p75_ns": 12930.5, "deser_p95_ns": 13391.4, "deser_p99_ns": 13672.31, "deser_ci_low_ns": 12309.185555555556, "deser_ci_high_ns": 12566.022777777778, "total_mean_ns": 33155.955555555556, "total_median_ns": 33079.5, "total_std_ns": 1206.554793580718, "total_mad_ns": 841.0, "total_cv": 0.03639028866349622, "total_min_ns": 30236.0, "total_max_ns": 35600.0, "total_p5_ns": 31118.65, "total_p25_ns": 32433.25, "total_p50_ns": 33079.5, "total_p75_ns": 33957.75, "total_p95_ns": 35108.6, "total_p99_ns": 35502.1, "total_ci_low_ns": 32901.99833333334, "total_ci_high_ns": 33405.78916666666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.946576182670093}, {"serializer": "CapnProto", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "capnproto-1.0.2", "avg_time_ser_ns": 16795.02298850575, "avg_time_deser_ns": 6393.0114942528735, "avg_time_total_ns": 23188.03448275862, "median_size_bytes": 96.0, "avg_ops_per_sec": 43125.690568708895, "min_ops_per_sec": 39937.697192379885, "max_ops_per_sec": 50122.80086211218, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 16795.02298850575, "ser_median_ns": 16977.0, "ser_std_ns": 853.394834558676, "ser_mad_ns": 479.0, "ser_cv": 0.05081236477870415, "ser_min_ns": 14513.0, "ser_max_ns": 18325.0, "ser_p5_ns": 14922.1, "ser_p25_ns": 16383.0, "ser_p50_ns": 16977.0, "ser_p75_ns": 17355.0, "ser_p95_ns": 17963.4, "ser_p99_ns": 18289.74, "ser_ci_low_ns": 16613.100287356323, "ser_ci_high_ns": 16966.14425287356, "deser_mean_ns": 6393.0114942528735, "deser_median_ns": 6528.0, "deser_std_ns": 353.03325142333546, "deser_mad_ns": 168.0, "deser_cv": 0.05522174514166005, "deser_min_ns": 5438.0, "deser_max_ns": 6796.0, "deser_p5_ns": 5605.6, "deser_p25_ns": 6245.5, "deser_p50_ns": 6528.0, "deser_p75_ns": 6648.0, "deser_p95_ns": 6739.0, "deser_p99_ns": 6768.48, "deser_ci_low_ns": 6312.96408045977, "deser_ci_high_ns": 6462.6212643678155, "total_mean_ns": 23188.03448275862, "total_median_ns": 23542.0, "total_std_ns": 1178.5319745667416, "total_mad_ns": 606.0, "total_cv": 0.0508250052604948, "total_min_ns": 19951.0, "total_max_ns": 25039.0, "total_p5_ns": 20529.5, "total_p25_ns": 22647.5, "total_p50_ns": 23542.0, "total_p75_ns": 24028.0, "total_p95_ns": 24637.2, "total_p99_ns": 24846.36, "total_ci_low_ns": 22924.483045977013, "total_ci_high_ns": 23420.475862068964, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.408020331222207}, {"serializer": "IkigaJSON", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "2.5.3", "avg_time_ser_ns": 19649.89285714286, "avg_time_deser_ns": 12760.833333333334, "avg_time_total_ns": 32410.72619047619, "median_size_bytes": 168.0, "avg_ops_per_sec": 30853.98315739829, "min_ops_per_sec": 29353.058588704942, "max_ops_per_sec": 32528.787977359963, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 19649.89285714286, "ser_median_ns": 19665.0, "ser_std_ns": 385.66091035998215, "ser_mad_ns": 258.5, "ser_cv": 0.019626616448434834, "ser_min_ns": 18854.0, "ser_max_ns": 20558.0, "ser_p5_ns": 18936.6, "ser_p25_ns": 19410.5, "ser_p50_ns": 19665.0, "ser_p75_ns": 19922.75, "ser_p95_ns": 20270.55, "ser_p99_ns": 20483.3, "ser_ci_low_ns": 19568.64255952381, "ser_ci_high_ns": 19729.461607142857, "deser_mean_ns": 12760.833333333334, "deser_median_ns": 12719.0, "deser_std_ns": 387.7057583014216, "deser_mad_ns": 270.5, "deser_cv": 0.030382479590002346, "deser_min_ns": 11798.0, "deser_max_ns": 13600.0, "deser_p5_ns": 12222.45, "deser_p25_ns": 12490.0, "deser_p50_ns": 12719.0, "deser_p75_ns": 13000.0, "deser_p95_ns": 13459.05, "deser_p99_ns": 13525.3, "deser_ci_low_ns": 12678.681845238096, "deser_ci_high_ns": 12842.063095238094, "total_mean_ns": 32410.72619047619, "total_median_ns": 32422.0, "total_std_ns": 692.0563099728696, "total_mad_ns": 473.0, "total_cv": 0.02135269373187413, "total_min_ns": 30742.0, "total_max_ns": 34068.0, "total_p5_ns": 31236.5, "total_p25_ns": 32042.5, "total_p50_ns": 32422.0, "total_p75_ns": 32892.0, "total_p95_ns": 33487.35, "total_p99_ns": 34002.43, "total_ci_low_ns": 32267.286904761902, "total_ci_high_ns": 32561.596726190473, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 39.77260455162377}, {"serializer": "XMLCoder", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "0.18.2", "avg_time_ser_ns": 76670.36046511628, "avg_time_deser_ns": 80625.56976744186, "avg_time_total_ns": 157295.93023255814, "median_size_bytes": 254.0, "avg_ops_per_sec": 6357.443568447859, "min_ops_per_sec": 6003.986647133696, "max_ops_per_sec": 6736.4109749607605, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 76670.36046511628, "ser_median_ns": 76292.0, "ser_std_ns": 1609.0048580542366, "ser_mad_ns": 1094.5, "ser_cv": 0.02098600878218522, "ser_min_ns": 73336.0, "ser_max_ns": 80391.0, "ser_p5_ns": 74388.0, "ser_p25_ns": 75544.0, "ser_p50_ns": 76292.0, "ser_p75_ns": 77611.5, "ser_p95_ns": 79404.75, "ser_p99_ns": 79968.55, "ser_ci_low_ns": 76335.00872093023, "ser_ci_high_ns": 77017.19360465117, "deser_mean_ns": 80625.56976744186, "deser_median_ns": 80820.5, "deser_std_ns": 2527.234855078233, "deser_mad_ns": 1280.5, "deser_cv": 0.03134532707635858, "deser_min_ns": 75075.0, "deser_max_ns": 86662.0, "deser_p5_ns": 75844.75, "deser_p25_ns": 79538.0, "deser_p50_ns": 80820.5, "deser_p75_ns": 82006.75, "deser_p95_ns": 84849.25, "deser_p99_ns": 85571.45000000001, "deser_ci_low_ns": 80056.58401162791, "deser_ci_high_ns": 81145.50261627907, "total_mean_ns": 157295.93023255814, "total_median_ns": 157005.0, "total_std_ns": 3800.399557293317, "total_mad_ns": 2155.5, "total_cv": 0.02416082572304649, "total_min_ns": 148447.0, "total_max_ns": 166556.0, "total_p5_ns": 151304.0, "total_p25_ns": 155143.0, "total_p50_ns": 157005.0, "total_p75_ns": 159245.5, "total_p95_ns": 164089.25, "total_p99_ns": 164957.15000000002, "total_ci_low_ns": 156494.8441860465, "total_ci_high_ns": 158122.04709302326, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 55.01404444821084}, {"serializer": "SwiftAvroCore", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "2.3.0", "avg_time_ser_ns": 41701.131868131866, "avg_time_deser_ns": 12039.835164835165, "avg_time_total_ns": 53740.96703296703, "median_size_bytes": 44.0, "avg_ops_per_sec": 18607.778296705317, "min_ops_per_sec": 16634.22991832593, "max_ops_per_sec": 22048.285745783265, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 41701.131868131866, "ser_median_ns": 41786.0, "ser_std_ns": 2407.18648222263, "ser_mad_ns": 1604.0, "ser_cv": 0.057724727708463215, "ser_min_ns": 34915.0, "ser_max_ns": 47993.0, "ser_p5_ns": 37688.0, "ser_p25_ns": 40343.5, "ser_p50_ns": 41786.0, "ser_p75_ns": 43449.0, "ser_p95_ns": 44794.0, "ser_p99_ns": 46987.7, "ser_ci_low_ns": 41223.327472527475, "ser_ci_high_ns": 42209.526648351646, "deser_mean_ns": 12039.835164835165, "deser_median_ns": 12022.0, "deser_std_ns": 617.0453839555125, "deser_mad_ns": 397.0, "deser_cv": 0.051250318256658656, "deser_min_ns": 10440.0, "deser_max_ns": 13642.0, "deser_p5_ns": 11011.0, "deser_p25_ns": 11657.0, "deser_p50_ns": 12022.0, "deser_p75_ns": 12443.0, "deser_p95_ns": 12953.5, "deser_p99_ns": 13503.4, "deser_ci_low_ns": 11914.846978021978, "deser_ci_high_ns": 12167.046153846153, "total_mean_ns": 53740.96703296703, "total_median_ns": 54082.0, "total_std_ns": 2852.4566155062803, "total_mad_ns": 1834.0, "total_cv": 0.053077880302311274, "total_min_ns": 45355.0, "total_max_ns": 60117.0, "total_p5_ns": 49031.0, "total_p25_ns": 52165.0, "total_p50_ns": 54082.0, "total_p75_ns": 55576.0, "total_p95_ns": 57955.5, "total_p99_ns": 59601.299999999996, "total_ci_low_ns": 53198.97664835165, "total_ci_high_ns": 54318.9043956044, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.517267792531175}, {"serializer": "IkigaJSON", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "2.5.3", "avg_time_ser_ns": 292735.9156626506, "avg_time_deser_ns": 468760.421686747, "avg_time_total_ns": 761496.3373493976, "median_size_bytes": 16546.0, "avg_ops_per_sec": 1313.2039524717632, "min_ops_per_sec": 1252.2650343809364, "max_ops_per_sec": 1356.1252788532604, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 292735.9156626506, "ser_median_ns": 292459.0, "ser_std_ns": 6286.577201262593, "ser_mad_ns": 3593.0, "ser_cv": 0.021475250780321933, "ser_min_ns": 282248.0, "ser_max_ns": 313235.0, "ser_p5_ns": 283955.1, "ser_p25_ns": 288789.0, "ser_p50_ns": 292459.0, "ser_p75_ns": 295721.5, "ser_p95_ns": 304851.39999999997, "ser_p99_ns": 310282.18, "ser_ci_low_ns": 291432.42530120484, "ser_ci_high_ns": 294091.57138554216, "deser_mean_ns": 468760.421686747, "deser_median_ns": 468920.0, "deser_std_ns": 7154.578580285157, "deser_mad_ns": 4570.0, "deser_cv": 0.015262761635337598, "deser_min_ns": 453121.0, "deser_max_ns": 488716.0, "deser_p5_ns": 457824.4, "deser_p25_ns": 463119.5, "deser_p50_ns": 468920.0, "deser_p75_ns": 472946.0, "deser_p95_ns": 481078.0, "deser_p99_ns": 485929.63999999996, "deser_ci_low_ns": 467243.8373493976, "deser_ci_high_ns": 470388.3957831325, "total_mean_ns": 761496.3373493976, "total_median_ns": 761234.0, "total_std_ns": 12096.414289585791, "total_mad_ns": 6930.0, "total_cv": 0.015885059055819977, "total_min_ns": 737395.0, "total_max_ns": 798553.0, "total_p5_ns": 743361.3, "total_p25_ns": 754384.0, "total_p50_ns": 761234.0, "total_p75_ns": 767990.5, "total_p95_ns": 784585.1, "total_p99_ns": 792597.34, "total_ci_low_ns": 758956.2295180723, "total_ci_high_ns": 764107.8774096385, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 74.51925471738237}, {"serializer": "Foundation.PropertyListEncoder", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 516378.14285714284, "avg_time_deser_ns": 791951.3516483516, "avg_time_total_ns": 1308329.4945054946, "median_size_bytes": 9627.0, "avg_ops_per_sec": 764.3334528493275, "min_ops_per_sec": 718.0379755924531, "max_ops_per_sec": 792.8290200791878, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 516378.14285714284, "ser_median_ns": 513278.0, "ser_std_ns": 15558.618095998849, "ser_mad_ns": 9703.0, "ser_cv": 0.030130280127490167, "ser_min_ns": 491074.0, "ser_max_ns": 559193.0, "ser_p5_ns": 493864.0, "ser_p25_ns": 505402.0, "ser_p50_ns": 513278.0, "ser_p75_ns": 525674.5, "ser_p95_ns": 548539.0, "ser_p99_ns": 557137.4, "ser_ci_low_ns": 513201.4728021978, "ser_ci_high_ns": 519638.4436813187, "deser_mean_ns": 791951.3516483516, "deser_median_ns": 788890.0, "deser_std_ns": 16786.69748830479, "deser_mad_ns": 10671.0, "deser_cv": 0.0211966271076693, "deser_min_ns": 761242.0, "deser_max_ns": 843331.0, "deser_p5_ns": 767702.0, "deser_p25_ns": 780167.0, "deser_p50_ns": 788890.0, "deser_p75_ns": 804022.5, "deser_p95_ns": 820086.0, "deser_p99_ns": 835273.2999999999, "deser_ci_low_ns": 788459.557967033, "deser_ci_high_ns": 795368.1030219779, "total_mean_ns": 1308329.4945054946, "total_median_ns": 1304308.0, "total_std_ns": 28158.78405809678, "total_mad_ns": 22516.0, "total_cv": 0.02152270064716371, "total_min_ns": 1261306.0, "total_max_ns": 1392684.0, "total_p5_ns": 1273112.5, "total_p25_ns": 1284994.0, "total_p50_ns": 1304308.0, "total_p75_ns": 1328995.5, "total_p95_ns": 1353831.5, "total_p99_ns": 1375647.0, "total_ci_low_ns": 1302543.0645604397, "total_ci_high_ns": 1314171.7997252746, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 59.26338378068566}, {"serializer": "XMLCoder", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "0.18.2", "avg_time_ser_ns": 4254995.177777777, "avg_time_deser_ns": 4806013.3, "avg_time_total_ns": 9061008.477777777, "median_size_bytes": 25064.0, "avg_ops_per_sec": 110.36299132182813, "min_ops_per_sec": 108.00938169489402, "max_ops_per_sec": 112.34170211609077, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 4254995.177777777, "ser_median_ns": 4257537.5, "ser_std_ns": 38432.53684217766, "ser_mad_ns": 24175.5, "ser_cv": 0.009032333818589547, "ser_min_ns": 4164614.0, "ser_max_ns": 4348671.0, "ser_p5_ns": 4192564.25, "ser_p25_ns": 4229614.75, "ser_p50_ns": 4257537.5, "ser_p75_ns": 4278610.75, "ser_p95_ns": 4316082.0, "ser_p99_ns": 4345980.53, "ser_ci_low_ns": 4246907.146944444, "ser_ci_high_ns": 4262977.613611111, "deser_mean_ns": 4806013.3, "deser_median_ns": 4802566.0, "deser_std_ns": 51384.70352691974, "deser_mad_ns": 30337.5, "deser_cv": 0.010691752252728835, "deser_min_ns": 4700276.0, "deser_max_ns": 4931545.0, "deser_p5_ns": 4732008.45, "deser_p25_ns": 4771685.25, "deser_p50_ns": 4802566.0, "deser_p75_ns": 4830791.0, "deser_p95_ns": 4908373.95, "deser_p99_ns": 4928445.13, "deser_ci_low_ns": 4796213.9925, "deser_ci_high_ns": 4817200.3741666665, "total_mean_ns": 9061008.477777777, "total_median_ns": 9054661.5, "total_std_ns": 72535.40476119428, "total_mad_ns": 43172.5, "total_cv": 0.008005224246184975, "total_min_ns": 8901414.0, "total_max_ns": 9258455.0, "total_p5_ns": 8964063.4, "total_p25_ns": 9010929.25, "total_p50_ns": 9054661.5, "total_p75_ns": 9094302.5, "total_p95_ns": 9213997.25, "total_p99_ns": 9255952.32, "total_ci_low_ns": 9046243.076111112, "total_ci_high_ns": 9076141.092777777, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 167.44912311467644}, {"serializer": "TOML", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "2.0.0", "avg_time_ser_ns": 3182671.1413043477, "avg_time_deser_ns": 785158.9021739131, "avg_time_total_ns": 3967830.0434782607, "median_size_bytes": 17445.0, "avg_ops_per_sec": 252.02692379519982, "min_ops_per_sec": 244.785877225685, "max_ops_per_sec": 256.6662645561855, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 3182671.1413043477, "ser_median_ns": 3179741.5, "ser_std_ns": 34218.076260331116, "ser_mad_ns": 22840.5, "ser_cv": 0.010751370387047777, "ser_min_ns": 3113550.0, "ser_max_ns": 3277173.0, "ser_p5_ns": 3133834.65, "ser_p25_ns": 3157338.5, "ser_p50_ns": 3179741.5, "ser_p75_ns": 3208112.75, "ser_p95_ns": 3237161.2, "ser_p99_ns": 3265628.74, "ser_ci_low_ns": 3176033.6660326086, "ser_ci_high_ns": 3189925.8095108694, "deser_mean_ns": 785158.9021739131, "deser_median_ns": 783360.0, "deser_std_ns": 16920.05983224021, "deser_mad_ns": 10829.0, "deser_cv": 0.021549854157410304, "deser_min_ns": 752719.0, "deser_max_ns": 823417.0, "deser_p5_ns": 760335.8, "deser_p25_ns": 773218.0, "deser_p50_ns": 783360.0, "deser_p75_ns": 794144.25, "deser_p95_ns": 817200.55, "deser_p99_ns": 822559.78, "deser_ci_low_ns": 781841.7690217391, "deser_ci_high_ns": 788510.5100543478, "total_mean_ns": 3967830.0434782607, "total_median_ns": 3964898.0, "total_std_ns": 45159.045041177036, "total_mad_ns": 35404.5, "total_cv": 0.011381295203256722, "total_min_ns": 3896110.0, "total_max_ns": 4085203.0, "total_p5_ns": 3900432.25, "total_p25_ns": 3927991.75, "total_p50_ns": 3964898.0, "total_p75_ns": 3999039.75, "total_p95_ns": 4046286.75, "total_p99_ns": 4067673.67, "total_ci_low_ns": 3958515.336956522, "total_ci_high_ns": 3976706.4633152173, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 115.92778436931063}, {"serializer": "FlatBuffers", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "24.3.25", "avg_time_ser_ns": 28839.735632183907, "avg_time_deser_ns": 33857.44827586207, "avg_time_total_ns": 62697.183908045976, "median_size_bytes": 8040.0, "avg_ops_per_sec": 15949.679677266482, "min_ops_per_sec": 10571.83030098001, "max_ops_per_sec": 18953.034380804365, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 28839.735632183907, "ser_median_ns": 24706.0, "ser_std_ns": 9527.561339632495, "ser_mad_ns": 2197.0, "ser_cv": 0.33036229808570594, "ser_min_ns": 21094.0, "ser_max_ns": 60724.0, "ser_p5_ns": 21922.8, "ser_p25_ns": 22983.0, "ser_p50_ns": 24706.0, "ser_p75_ns": 28018.0, "ser_p95_ns": 47938.70000000001, "ser_p99_ns": 59226.74, "ser_ci_low_ns": 27019.107183908047, "ser_ci_high_ns": 30893.988505747126, "deser_mean_ns": 33857.44827586207, "deser_median_ns": 33636.0, "deser_std_ns": 1261.4933542268943, "deser_mad_ns": 860.0, "deser_cv": 0.03725896127636554, "deser_min_ns": 31583.0, "deser_max_ns": 37881.0, "deser_p5_ns": 32109.7, "deser_p25_ns": 32900.5, "deser_p50_ns": 33636.0, "deser_p75_ns": 34531.0, "deser_p95_ns": 35934.6, "deser_p99_ns": 36813.74, "deser_ci_low_ns": 33603.661206896555, "deser_ci_high_ns": 34138.68965517241, "total_mean_ns": 62697.183908045976, "total_median_ns": 58783.0, "total_std_ns": 9674.110185064117, "total_mad_ns": 3059.0, "total_cv": 0.15429895861435383, "total_min_ns": 52762.0, "total_max_ns": 94591.0, "total_p5_ns": 54341.8, "total_p25_ns": 56080.5, "total_p50_ns": 58783.0, "total_p75_ns": 64425.5, "total_p95_ns": 82691.30000000002, "total_p99_ns": 92116.78, "total_ci_low_ns": 60702.52068965517, "total_ci_high_ns": 64886.1974137931, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 0.7900786448880823, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.3133391236305982}, {"serializer": "SwiftProtobuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "1.38.1", "avg_time_ser_ns": 27119.526315789473, "avg_time_deser_ns": 25107.526315789473, "avg_time_total_ns": 52227.05263157895, "median_size_bytes": 4841.0, "avg_ops_per_sec": 19147.16511104348, "min_ops_per_sec": 14689.896289332197, "max_ops_per_sec": 24237.723593000144, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 27119.526315789473, "ser_median_ns": 26487.0, "ser_std_ns": 4854.10854012333, "ser_mad_ns": 2368.5, "ser_cv": 0.17898942937278303, "ser_min_ns": 19450.0, "ser_max_ns": 43260.0, "ser_p5_ns": 21982.75, "ser_p25_ns": 23978.75, "ser_p50_ns": 26487.0, "ser_p75_ns": 28163.5, "ser_p95_ns": 39472.75, "ser_p99_ns": 43023.0, "ser_ci_low_ns": 26141.134868421053, "ser_ci_high_ns": 28201.024999999998, "deser_mean_ns": 25107.526315789473, "deser_median_ns": 25050.0, "deser_std_ns": 1245.9457609776782, "deser_mad_ns": 920.5, "deser_cv": 0.04962439331166349, "deser_min_ns": 21688.0, "deser_max_ns": 28055.0, "deser_p5_ns": 23413.75, "deser_p25_ns": 24206.5, "deser_p50_ns": 25050.0, "deser_p75_ns": 26010.25, "deser_p95_ns": 26842.5, "deser_p99_ns": 27779.75, "deser_ci_low_ns": 24835.921381578948, "deser_ci_high_ns": 25400.160526315787, "total_mean_ns": 52227.05263157895, "total_median_ns": 52369.5, "total_std_ns": 5277.009011159603, "total_mad_ns": 2619.0, "total_cv": 0.10103976282913721, "total_min_ns": 41258.0, "total_max_ns": 68074.0, "total_p5_ns": 46134.75, "total_p25_ns": 48259.75, "total_p50_ns": 52369.5, "total_p75_ns": 54335.25, "total_p95_ns": 63420.75, "total_p99_ns": 66622.0, "total_ci_low_ns": 51096.66217105263, "total_ci_high_ns": 53446.23947368421, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "Yams", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "5.4.0", "avg_time_ser_ns": 5197639.989361702, "avg_time_deser_ns": 3994434.8936170214, "avg_time_total_ns": 9192074.882978724, "median_size_bytes": 16915.0, "avg_ops_per_sec": 108.78936613666342, "min_ops_per_sec": 105.85219751808353, "max_ops_per_sec": 110.62184299087835, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 5197639.989361702, "ser_median_ns": 5182103.0, "ser_std_ns": 64691.243687191425, "ser_mad_ns": 45195.5, "ser_cv": 0.012446272504367093, "ser_min_ns": 5098263.0, "ser_max_ns": 5406375.0, "ser_p5_ns": 5116657.3, "ser_p25_ns": 5146065.0, "ser_p50_ns": 5182103.0, "ser_p75_ns": 5240504.0, "ser_p95_ns": 5302287.5, "ser_p99_ns": 5363767.9799999995, "ser_ci_low_ns": 5185771.223138298, "ser_ci_high_ns": 5211303.399202128, "deser_mean_ns": 3994434.8936170214, "deser_median_ns": 4001808.0, "deser_std_ns": 44533.15642280265, "deser_mad_ns": 26778.0, "deser_cv": 0.01114880017044844, "deser_min_ns": 3887878.0, "deser_max_ns": 4110867.0, "deser_p5_ns": 3920070.6, "deser_p25_ns": 3965196.75, "deser_p50_ns": 4001808.0, "deser_p75_ns": 4020550.25, "deser_p95_ns": 4058461.05, "deser_p99_ns": 4088496.78, "deser_ci_low_ns": 3985375.5079787234, "deser_ci_high_ns": 4003610.08643617, "total_mean_ns": 9192074.882978724, "total_median_ns": 9184648.5, "total_std_ns": 91188.28783699183, "total_mad_ns": 61532.5, "total_cv": 0.009920316032873955, "total_min_ns": 9039806.0, "total_max_ns": 9447135.0, "total_p5_ns": 9051500.3, "total_p25_ns": 9131022.25, "total_p50_ns": 9184648.5, "total_p75_ns": 9257042.0, "total_p95_ns": 9351979.3, "total_p99_ns": 9396901.049999999, "total_ci_low_ns": 9173752.460638298, "total_ci_high_ns": 9210131.300797872, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 133.93107486065622}, {"serializer": "SwiftCbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "0.0.4", "avg_time_ser_ns": 754781.595505618, "avg_time_deser_ns": 533090.7640449438, "avg_time_total_ns": 1287872.3595505618, "median_size_bytes": 12030.0, "avg_ops_per_sec": 776.4744639359892, "min_ops_per_sec": 742.2119698008794, "max_ops_per_sec": 810.1548043800209, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 754781.595505618, "ser_median_ns": 753511.0, "ser_std_ns": 16600.2186094033, "ser_mad_ns": 9660.0, "ser_cv": 0.02199340671294858, "ser_min_ns": 718147.0, "ser_max_ns": 799211.0, "ser_p5_ns": 728573.2, "ser_p25_ns": 744173.0, "ser_p50_ns": 753511.0, "ser_p75_ns": 765115.0, "ser_p95_ns": 783474.0, "ser_p99_ns": 798225.4, "ser_ci_low_ns": 751353.8514044944, "ser_ci_high_ns": 758383.4081460674, "deser_mean_ns": 533090.7640449438, "deser_median_ns": 533509.0, "deser_std_ns": 10338.615344934287, "deser_mad_ns": 6010.0, "deser_cv": 0.019393724375353572, "deser_min_ns": 510851.0, "deser_max_ns": 562684.0, "deser_p5_ns": 517130.6, "deser_p25_ns": 526342.0, "deser_p50_ns": 533509.0, "deser_p75_ns": 537997.0, "deser_p95_ns": 550895.6, "deser_p99_ns": 557509.6, "deser_ci_low_ns": 531040.2435393259, "deser_ci_high_ns": 535291.2741573034, "total_mean_ns": 1287872.3595505618, "total_median_ns": 1287783.0, "total_std_ns": 23698.074002699803, "total_mad_ns": 15581.0, "total_cv": 0.018400949307561733, "total_min_ns": 1234332.0, "total_max_ns": 1347324.0, "total_p5_ns": 1250177.6, "total_p25_ns": 1270457.0, "total_p50_ns": 1287783.0, "total_p75_ns": 1302895.0, "total_p95_ns": 1325742.0, "total_p99_ns": 1340447.68, "total_ci_low_ns": 1282979.0983146066, "total_ci_high_ns": 1292892.6994382022, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 69.18934954883487}, {"serializer": "Foundation.JSONEncoder", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 267376.17045454547, "avg_time_deser_ns": 401397.6931818182, "avg_time_total_ns": 668773.8636363636, "median_size_bytes": 16546.0, "avg_ops_per_sec": 1495.2737455417903, "min_ops_per_sec": 1378.536462978714, "max_ops_per_sec": 1562.7881390631399, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 267376.17045454547, "ser_median_ns": 263879.5, "ser_std_ns": 12804.5640634763, "ser_mad_ns": 6654.0, "ser_cv": 0.04788969802996376, "ser_min_ns": 250152.0, "ser_max_ns": 302256.0, "ser_p5_ns": 251411.55, "ser_p25_ns": 258740.75, "ser_p50_ns": 263879.5, "ser_p75_ns": 271416.75, "ser_p95_ns": 295516.65, "ser_p99_ns": 301283.33999999997, "ser_ci_low_ns": 264847.15625, "ser_ci_high_ns": 270134.784375, "deser_mean_ns": 401397.6931818182, "deser_median_ns": 400832.5, "deser_std_ns": 8445.784511117297, "deser_mad_ns": 4799.5, "deser_cv": 0.02104093933417717, "deser_min_ns": 382822.0, "deser_max_ns": 423935.0, "deser_p5_ns": 388180.95, "deser_p25_ns": 396430.25, "deser_p50_ns": 400832.5, "deser_p75_ns": 406625.0, "deser_p95_ns": 413916.7, "deser_p99_ns": 423252.92, "deser_ci_low_ns": 399649.86164772726, "deser_ci_high_ns": 403099.04573863634, "total_mean_ns": 668773.8636363636, "total_median_ns": 668061.5, "total_std_ns": 17717.14227831133, "total_mad_ns": 12466.0, "total_cv": 0.02649197769478739, "total_min_ns": 639882.0, "total_max_ns": 725407.0, "total_p5_ns": 644923.35, "total_p25_ns": 654846.75, "total_p50_ns": 668061.5, "total_p75_ns": 676875.0, "total_p95_ns": 701101.7, "total_p99_ns": 717330.7899999999, "total_ci_low_ns": 665216.5607954545, "total_ci_high_ns": 672781.087784091, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 45.556409808654905}, {"serializer": "BinaryCodable", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "4.0.0", "avg_time_ser_ns": 734119.0760869565, "avg_time_deser_ns": 550121.8260869565, "avg_time_total_ns": 1284240.902173913, "median_size_bytes": 12048.0, "avg_ops_per_sec": 778.6701064475044, "min_ops_per_sec": 748.5035542691274, "max_ops_per_sec": 806.162954554982, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 734119.0760869565, "ser_median_ns": 734660.5, "ser_std_ns": 12969.631091226103, "ser_mad_ns": 7293.5, "ser_cv": 0.017666931038432584, "ser_min_ns": 706840.0, "ser_max_ns": 764377.0, "ser_p5_ns": 713637.35, "ser_p25_ns": 725204.25, "ser_p50_ns": 734660.5, "ser_p75_ns": 741172.25, "ser_p95_ns": 757928.7, "ser_p99_ns": 763314.12, "ser_ci_low_ns": 731404.4972826086, "ser_ci_high_ns": 736645.3255434782, "deser_mean_ns": 550121.8260869565, "deser_median_ns": 550701.5, "deser_std_ns": 8805.840900755695, "deser_mad_ns": 5577.0, "deser_cv": 0.016007074220981327, "deser_min_ns": 532253.0, "deser_max_ns": 574390.0, "deser_p5_ns": 535606.2, "deser_p25_ns": 543410.0, "deser_p50_ns": 550701.5, "deser_p75_ns": 555764.75, "deser_p95_ns": 563460.35, "deser_p99_ns": 569653.4500000001, "deser_ci_low_ns": 548366.4211956522, "deser_ci_high_ns": 551820.625, "total_mean_ns": 1284240.902173913, "total_median_ns": 1283782.0, "total_std_ns": 19410.53814386095, "total_mad_ns": 12263.5, "total_cv": 0.01511440580268355, "total_min_ns": 1240444.0, "total_max_ns": 1335999.0, "total_p5_ns": 1250710.3, "total_p25_ns": 1274098.25, "total_p50_ns": 1283782.0, "total_p75_ns": 1297432.25, "total_p95_ns": 1311798.2, "total_p99_ns": 1331051.33, "total_ci_low_ns": 1280260.3801630435, "total_ci_high_ns": 1288179.9839673913, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 82.85173066468082}, {"serializer": "SwiftMsgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "1.2.1", "avg_time_ser_ns": 639987.2446808511, "avg_time_deser_ns": 502620.9574468085, "avg_time_total_ns": 1142608.2021276595, "median_size_bytes": 12041.0, "avg_ops_per_sec": 875.1906367711105, "min_ops_per_sec": 831.8699354718491, "max_ops_per_sec": 915.4248166175236, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 639987.2446808511, "ser_median_ns": 638666.5, "ser_std_ns": 16548.562356221977, "ser_mad_ns": 10777.5, "ser_cv": 0.025857644029256263, "ser_min_ns": 597921.0, "ser_max_ns": 680898.0, "ser_p5_ns": 615531.75, "ser_p25_ns": 628272.0, "ser_p50_ns": 638666.5, "ser_p75_ns": 650459.5, "ser_p95_ns": 668068.0, "ser_p99_ns": 679756.89, "ser_ci_low_ns": 636708.7590425531, "ser_ci_high_ns": 643466.3936170213, "deser_mean_ns": 502620.9574468085, "deser_median_ns": 502237.0, "deser_std_ns": 10289.494211959822, "deser_mad_ns": 7853.5, "deser_cv": 0.02047167763204291, "deser_min_ns": 482316.0, "deser_max_ns": 529938.0, "deser_p5_ns": 489503.15, "deser_p25_ns": 493817.0, "deser_p50_ns": 502237.0, "deser_p75_ns": 509243.25, "deser_p95_ns": 521299.8, "deser_p99_ns": 529898.01, "deser_ci_low_ns": 500596.93537234043, "deser_ci_high_ns": 504653.7156914894, "total_mean_ns": 1142608.2021276595, "total_median_ns": 1141601.5, "total_std_ns": 24739.628175237955, "total_mad_ns": 18143.0, "total_cv": 0.021651890936167012, "total_min_ns": 1092389.0, "total_max_ns": 1202111.0, "total_p5_ns": 1107838.1, "total_p25_ns": 1122863.0, "total_p50_ns": 1141601.5, "total_p75_ns": 1157652.75, "total_p95_ns": 1190005.1, "total_p99_ns": 1198317.53, "total_ci_low_ns": 1137730.1138297874, "total_ci_high_ns": 1147725.023138298, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 57.91985528760826}, {"serializer": "CapnProto", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "capnproto-1.0.2", "avg_time_ser_ns": 80960.25531914894, "avg_time_deser_ns": 58343.117021276594, "avg_time_total_ns": 139303.37234042553, "median_size_bytes": 7600.0, "avg_ops_per_sec": 7178.577109793358, "min_ops_per_sec": 5493.720677265885, "max_ops_per_sec": 9205.644901453572, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 80960.25531914894, "ser_median_ns": 80861.5, "ser_std_ns": 15337.093154464927, "ser_mad_ns": 12891.0, "ser_cv": 0.18943978244640436, "ser_min_ns": 58296.0, "ser_max_ns": 121592.0, "ser_p5_ns": 59424.45, "ser_p25_ns": 66090.75, "ser_p50_ns": 80861.5, "ser_p75_ns": 92453.5, "ser_p95_ns": 106805.4, "ser_p99_ns": 112757.92999999993, "ser_ci_low_ns": 77792.42765957447, "ser_ci_high_ns": 84092.69281914894, "deser_mean_ns": 58343.117021276594, "deser_median_ns": 58933.0, "deser_std_ns": 4399.45003370444, "deser_mad_ns": 3223.5, "deser_cv": 0.0754064962298817, "deser_min_ns": 46959.0, "deser_max_ns": 71329.0, "deser_p5_ns": 51504.9, "deser_p25_ns": 54938.75, "deser_p50_ns": 58933.0, "deser_p75_ns": 61410.5, "deser_p95_ns": 64891.4, "deser_p99_ns": 66596.22999999997, "deser_ci_low_ns": 57431.57765957447, "deser_ci_high_ns": 59235.509042553196, "total_mean_ns": 139303.37234042553, "total_median_ns": 140372.5, "total_std_ns": 18445.875655219756, "total_mad_ns": 14926.0, "total_cv": 0.1324151407486551, "total_min_ns": 108629.0, "total_max_ns": 182026.0, "total_p5_ns": 111468.7, "total_p25_ns": 121558.25, "total_p50_ns": 140372.5, "total_p75_ns": 153381.25, "total_p95_ns": 170996.7, "total_p99_ns": 174583.20999999993, "total_ci_low_ns": 135765.127393617, "total_ci_high_ns": 143172.85478723404, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 6.1177107471559244}, {"serializer": "SwiftBSON", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "3.1.0", "avg_time_ser_ns": 708996.6847826086, "avg_time_deser_ns": 1141819.043478261, "avg_time_total_ns": 1850815.7282608696, "median_size_bytes": 14461.0, "avg_ops_per_sec": 540.3023027795729, "min_ops_per_sec": 518.223591714434, "max_ops_per_sec": 556.8148852209637, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 708996.6847826086, "ser_median_ns": 706438.0, "ser_std_ns": 18639.31868120576, "ser_mad_ns": 12965.0, "ser_cv": 0.026289712041348848, "ser_min_ns": 676408.0, "ser_max_ns": 763343.0, "ser_p5_ns": 684491.55, "ser_p25_ns": 695414.5, "ser_p50_ns": 706438.0, "ser_p75_ns": 720747.5, "ser_p95_ns": 741791.35, "ser_p99_ns": 757121.3300000001, "ser_ci_low_ns": 705359.0494565218, "ser_ci_high_ns": 712951.99375, "deser_mean_ns": 1141819.043478261, "deser_median_ns": 1144282.0, "deser_std_ns": 15181.781161999277, "deser_mad_ns": 11375.0, "deser_cv": 0.013296135888355695, "deser_min_ns": 1110393.0, "deser_max_ns": 1182566.0, "deser_p5_ns": 1118389.0, "deser_p25_ns": 1129834.25, "deser_p50_ns": 1144282.0, "deser_p75_ns": 1152477.0, "deser_p95_ns": 1165201.4, "deser_p99_ns": 1171814.35, "deser_ci_low_ns": 1138640.5864130436, "deser_ci_high_ns": 1144965.9845108697, "total_mean_ns": 1850815.7282608696, "total_median_ns": 1849751.5, "total_std_ns": 29469.016755394845, "total_mad_ns": 18924.5, "total_cv": 0.01592217761358965, "total_min_ns": 1795929.0, "total_max_ns": 1929669.0, "total_p5_ns": 1808216.4, "total_p25_ns": 1831503.0, "total_p50_ns": 1849751.5, "total_p75_ns": 1868409.0, "total_p95_ns": 1902487.8, "total_p99_ns": 1927474.08, "total_ci_low_ns": 1845110.647554348, "total_ci_high_ns": 1856989.1084239131, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 80.99640051290771}, {"serializer": "SwiftAvroCore", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "2.3.0", "avg_time_ser_ns": 2069483.757894737, "avg_time_deser_ns": 421172.5789473684, "avg_time_total_ns": 2490656.3368421053, "median_size_bytes": 4051.0, "avg_ops_per_sec": 401.5005945251751, "min_ops_per_sec": 384.5863927180874, "max_ops_per_sec": 413.5049047884281, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 2069483.757894737, "ser_median_ns": 2062124.0, "ser_std_ns": 37637.17016396689, "ser_mad_ns": 28162.0, "ser_cv": 0.018186743442845266, "ser_min_ns": 2009491.0, "ser_max_ns": 2166661.0, "ser_p5_ns": 2018530.0, "ser_p25_ns": 2043144.0, "ser_p50_ns": 2062124.0, "ser_p75_ns": 2096197.5, "ser_p95_ns": 2133209.2, "ser_p99_ns": 2150898.14, "ser_ci_low_ns": 2062198.4849999999, "ser_ci_high_ns": 2076912.232894737, "deser_mean_ns": 421172.5789473684, "deser_median_ns": 421242.0, "deser_std_ns": 9292.98641687552, "deser_mad_ns": 6710.0, "deser_cv": 0.022064557099375673, "deser_min_ns": 403066.0, "deser_max_ns": 446160.0, "deser_p5_ns": 406508.9, "deser_p25_ns": 414976.5, "deser_p50_ns": 421242.0, "deser_p75_ns": 427953.5, "deser_p95_ns": 435297.7, "deser_p99_ns": 439811.24, "deser_ci_low_ns": 419226.7492105263, "deser_ci_high_ns": 423073.18868421053, "total_mean_ns": 2490656.3368421053, "total_median_ns": 2488098.0, "total_std_ns": 42648.622507652275, "total_mad_ns": 30116.0, "total_cv": 0.01712344729250215, "total_min_ns": 2418351.0, "total_max_ns": 2600196.0, "total_p5_ns": 2429064.4, "total_p25_ns": 2457891.0, "total_p50_ns": 2488098.0, "total_p75_ns": 2517136.0, "total_p95_ns": 2559202.5, "total_p99_ns": 2595044.8, "total_ci_low_ns": 2482630.8049999997, "total_ci_high_ns": 2498914.647894737, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 75.86014426794317}, {"serializer": "SwiftBSON", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "3.1.0", "avg_time_ser_ns": 1661971.5714285714, "avg_time_deser_ns": 1137833.1098901099, "avg_time_total_ns": 2799804.681318681, "median_size_bytes": 14461.0, "avg_ops_per_sec": 357.1677719779401, "min_ops_per_sec": 347.11820728719135, "max_ops_per_sec": 369.01403877009096, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 1661971.5714285714, "ser_median_ns": 1660721.0, "ser_std_ns": 23429.403731276958, "ser_mad_ns": 16901.0, "ser_cv": 0.014097355294193077, "ser_min_ns": 1603820.0, "ser_max_ns": 1718259.0, "ser_p5_ns": 1625664.0, "ser_p25_ns": 1643899.5, "ser_p50_ns": 1660721.0, "ser_p75_ns": 1676919.0, "ser_p95_ns": 1704748.0, "ser_p99_ns": 1715750.7, "ser_ci_low_ns": 1657260.6576923076, "ser_ci_high_ns": 1666586.561263736, "deser_mean_ns": 1137833.1098901099, "deser_median_ns": 1135587.0, "deser_std_ns": 16600.10309904433, "deser_mad_ns": 9930.0, "deser_cv": 0.014589224865013411, "deser_min_ns": 1095761.0, "deser_max_ns": 1181187.0, "deser_p5_ns": 1111902.5, "deser_p25_ns": 1127563.0, "deser_p50_ns": 1135587.0, "deser_p75_ns": 1149581.5, "deser_p95_ns": 1163405.5, "deser_p99_ns": 1176944.4, "deser_ci_low_ns": 1134594.3005494506, "deser_ci_high_ns": 1141234.5384615385, "total_mean_ns": 2799804.681318681, "total_median_ns": 2795055.0, "total_std_ns": 32202.64993163662, "total_mad_ns": 23125.0, "total_cv": 0.011501748727868218, "total_min_ns": 2709924.0, "total_max_ns": 2880863.0, "total_p5_ns": 2755223.0, "total_p25_ns": 2778529.0, "total_p50_ns": 2795055.0, "total_p75_ns": 2821738.5, "total_p95_ns": 2859881.0, "total_p99_ns": 2878713.8, "total_ci_low_ns": 2793450.0164835164, "total_ci_high_ns": 2806236.5387362638, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 97.36110527262603}, {"serializer": "SwiftCbor", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "0.0.4", "avg_time_ser_ns": 1587049.414893617, "avg_time_deser_ns": 516774.670212766, "avg_time_total_ns": 2103824.085106383, "median_size_bytes": 12030.0, "avg_ops_per_sec": 475.3249128951927, "min_ops_per_sec": 456.39655749204616, "max_ops_per_sec": 491.95457488237366, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 1587049.414893617, "ser_median_ns": 1583895.0, "ser_std_ns": 26924.46477355012, "ser_mad_ns": 15822.0, "ser_cv": 0.01696510803058701, "ser_min_ns": 1531252.0, "ser_max_ns": 1659824.0, "ser_p5_ns": 1548172.6, "ser_p25_ns": 1569056.0, "ser_p50_ns": 1583895.0, "ser_p75_ns": 1604034.25, "ser_p95_ns": 1635416.7, "ser_p99_ns": 1658946.08, "ser_ci_low_ns": 1581784.8180851066, "ser_ci_high_ns": 1592319.1268617022, "deser_mean_ns": 516774.670212766, "deser_median_ns": 514703.5, "deser_std_ns": 9769.477562096525, "deser_mad_ns": 5622.5, "deser_cv": 0.01890471442432394, "deser_min_ns": 496727.0, "deser_max_ns": 542198.0, "deser_p5_ns": 500138.25, "deser_p25_ns": 511468.0, "deser_p50_ns": 514703.5, "deser_p75_ns": 523522.25, "deser_p95_ns": 535574.3, "deser_p99_ns": 539119.7, "deser_ci_low_ns": 514781.2481382979, "deser_ci_high_ns": 518790.3255319149, "total_mean_ns": 2103824.085106383, "total_median_ns": 2102755.5, "total_std_ns": 32601.740061965218, "total_mad_ns": 21877.0, "total_cv": 0.015496419255185332, "total_min_ns": 2032708.0, "total_max_ns": 2191077.0, "total_p5_ns": 2056934.8, "total_p25_ns": 2083521.5, "total_p50_ns": 2102755.5, "total_p75_ns": 2125205.75, "total_p95_ns": 2160864.35, "total_p99_ns": 2186212.17, "total_ci_low_ns": 2097450.967287234, "total_ci_high_ns": 2110751.3614361705, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 68.1875631808127}, {"serializer": "TOML", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "2.0.0", "avg_time_ser_ns": 4305989.543478261, "avg_time_deser_ns": 805210.1521739131, "avg_time_total_ns": 5111199.695652174, "median_size_bytes": 17445.0, "avg_ops_per_sec": 195.6487829756773, "min_ops_per_sec": 190.24510608732973, "max_ops_per_sec": 199.973003644508, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 4305989.543478261, "ser_median_ns": 4297469.5, "ser_std_ns": 39378.137110518466, "ser_mad_ns": 21924.5, "ser_cv": 0.009144968122405119, "ser_min_ns": 4218707.0, "ser_max_ns": 4405976.0, "ser_p5_ns": 4244142.5, "ser_p25_ns": 4282350.75, "ser_p50_ns": 4297469.5, "ser_p75_ns": 4329397.75, "ser_p95_ns": 4383785.6, "ser_p99_ns": 4401849.15, "ser_ci_low_ns": 4298164.227717391, "ser_ci_high_ns": 4314436.141304348, "deser_mean_ns": 805210.1521739131, "deser_median_ns": 804744.0, "deser_std_ns": 22618.114232824893, "deser_mad_ns": 16228.5, "deser_cv": 0.028089703255430053, "deser_min_ns": 759306.0, "deser_max_ns": 862233.0, "deser_p5_ns": 772517.45, "deser_p25_ns": 789172.25, "deser_p50_ns": 804744.0, "deser_p75_ns": 821533.75, "deser_p95_ns": 839058.0, "deser_p99_ns": 855592.73, "deser_ci_low_ns": 800588.3774456523, "deser_ci_high_ns": 809840.3673913043, "total_mean_ns": 5111199.695652174, "total_median_ns": 5102942.0, "total_std_ns": 51862.339376667536, "total_mad_ns": 28160.5, "total_cv": 0.01014680358131655, "total_min_ns": 5000675.0, "total_max_ns": 5256377.0, "total_p5_ns": 5033346.65, "total_p25_ns": 5078503.75, "total_p50_ns": 5102942.0, "total_p75_ns": 5135964.5, "total_p95_ns": 5209377.2, "total_p99_ns": 5232750.67, "total_ci_low_ns": 5100990.706793478, "total_ci_high_ns": 5122031.939945652, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 123.4902251377356}, {"serializer": "Yams", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "5.4.0", "avg_time_ser_ns": 6279593.468085106, "avg_time_deser_ns": 3987081.265957447, "avg_time_total_ns": 10266674.734042553, "median_size_bytes": 16915.0, "avg_ops_per_sec": 97.40252086531675, "min_ops_per_sec": 95.07057183617971, "max_ops_per_sec": 99.34024171864976, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 6279593.468085106, "ser_median_ns": 6273253.0, "ser_std_ns": 60102.48111256362, "ser_mad_ns": 39494.0, "ser_cv": 0.009571078353722031, "ser_min_ns": 6118892.0, "ser_max_ns": 6438458.0, "ser_p5_ns": 6203717.35, "ser_p25_ns": 6238643.0, "ser_p50_ns": 6273253.0, "ser_p75_ns": 6316569.25, "ser_p95_ns": 6403723.2, "ser_p99_ns": 6427080.38, "ser_ci_low_ns": 6267370.54787234, "ser_ci_high_ns": 6291908.635106383, "deser_mean_ns": 3987081.265957447, "deser_median_ns": 3978895.5, "deser_std_ns": 47455.696861224365, "deser_mad_ns": 25925.0, "deser_cv": 0.011902365087567004, "deser_min_ns": 3885535.0, "deser_max_ns": 4100628.0, "deser_p5_ns": 3918888.65, "deser_p25_ns": 3958183.75, "deser_p50_ns": 3978895.5, "deser_p75_ns": 4018278.5, "deser_p95_ns": 4073911.25, "deser_p99_ns": 4092862.5, "deser_ci_low_ns": 3977931.8013297874, "deser_ci_high_ns": 3996209.9276595744, "total_mean_ns": 10266674.734042553, "total_median_ns": 10262675.5, "total_std_ns": 90390.75709458797, "total_mad_ns": 62296.0, "total_cv": 0.008804287603937382, "total_min_ns": 10066414.0, "total_max_ns": 10518502.0, "total_p5_ns": 10134920.3, "total_p25_ns": 10201190.0, "total_p50_ns": 10262675.5, "total_p75_ns": 10324841.0, "total_p95_ns": 10419461.75, "total_p99_ns": 10490883.79, "total_ci_low_ns": 10249339.689095745, "total_ci_high_ns": 10284940.339361701, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 150.38378735589134}, {"serializer": "SwiftAvroCore", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "2.3.0", "avg_time_ser_ns": 2368591.505376344, "avg_time_deser_ns": 419298.65591397847, "avg_time_total_ns": 2787890.1612903224, "median_size_bytes": 4051.0, "avg_ops_per_sec": 358.694188847515, "min_ops_per_sec": 343.7940701023613, "max_ops_per_sec": 374.25359798052756, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 2368591.505376344, "ser_median_ns": 2364934.0, "ser_std_ns": 44460.20097712786, "ser_mad_ns": 31786.0, "ser_cv": 0.01877073394724668, "ser_min_ns": 2262150.0, "ser_max_ns": 2476220.0, "ser_p5_ns": 2308814.4, "ser_p25_ns": 2335098.0, "ser_p50_ns": 2364934.0, "ser_p75_ns": 2398282.0, "ser_p95_ns": 2442206.8, "ser_p99_ns": 2476063.6, "ser_ci_low_ns": 2359358.7744623655, "ser_ci_high_ns": 2377612.3099462367, "deser_mean_ns": 419298.65591397847, "deser_median_ns": 418237.0, "deser_std_ns": 8414.458145377983, "deser_mad_ns": 6551.0, "deser_cv": 0.020067934935389484, "deser_min_ns": 399415.0, "deser_max_ns": 442881.0, "deser_p5_ns": 408592.2, "deser_p25_ns": 412800.0, "deser_p50_ns": 418237.0, "deser_p75_ns": 424922.0, "deser_p95_ns": 433317.6, "deser_p99_ns": 439622.36, "deser_ci_low_ns": 417567.81935483875, "deser_ci_high_ns": 420994.74059139786, "total_mean_ns": 2787890.1612903224, "total_median_ns": 2777102.0, "total_std_ns": 46751.6922179876, "total_mad_ns": 33182.0, "total_cv": 0.01676956031737974, "total_min_ns": 2671985.0, "total_max_ns": 2908718.0, "total_p5_ns": 2725901.6, "total_p25_ns": 2754820.0, "total_p50_ns": 2777102.0, "total_p75_ns": 2815645.0, "total_p95_ns": 2867961.8, "total_p99_ns": 2901873.2, "total_ci_low_ns": 2778515.7706989245, "total_ci_high_ns": 2797112.6384408604, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 69.03546636518577}, {"serializer": "XMLCoder", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "0.18.2", "avg_time_ser_ns": 5901744.362637362, "avg_time_deser_ns": 4736094.065934066, "avg_time_total_ns": 10637838.42857143, "median_size_bytes": 25064.0, "avg_ops_per_sec": 94.00405982047722, "min_ops_per_sec": 91.30937460565764, "max_ops_per_sec": 95.41758025024023, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 5901744.362637362, "ser_median_ns": 5884561.0, "ser_std_ns": 65593.30450172427, "ser_mad_ns": 38008.0, "ser_cv": 0.011114223265409624, "ser_min_ns": 5785995.0, "ser_max_ns": 6092556.0, "ser_p5_ns": 5832599.5, "ser_p25_ns": 5852471.5, "ser_p50_ns": 5884561.0, "ser_p75_ns": 5938344.0, "ser_p95_ns": 6030797.5, "ser_p99_ns": 6072204.3, "ser_ci_low_ns": 5888686.765659341, "ser_ci_high_ns": 5915789.510439561, "deser_mean_ns": 4736094.065934066, "deser_median_ns": 4719920.0, "deser_std_ns": 63850.035548376465, "deser_mad_ns": 36745.0, "deser_cv": 0.01348158095246442, "deser_min_ns": 4613930.0, "deser_max_ns": 4898113.0, "deser_p5_ns": 4659535.0, "deser_p25_ns": 4687770.5, "deser_p50_ns": 4719920.0, "deser_p75_ns": 4769170.0, "deser_p95_ns": 4861582.5, "deser_p99_ns": 4897019.5, "deser_ci_low_ns": 4723447.610989011, "deser_ci_high_ns": 4749519.813461538, "total_mean_ns": 10637838.42857143, "total_median_ns": 10605550.0, "total_std_ns": 115138.23824131706, "total_mad_ns": 63193.0, "total_cv": 0.010823461835261127, "total_min_ns": 10480249.0, "total_max_ns": 10951778.0, "total_p5_ns": 10508310.0, "total_p25_ns": 10556415.5, "total_p50_ns": 10605550.0, "total_p75_ns": 10704046.5, "total_p95_ns": 10890072.5, "total_p99_ns": 10947611.0, "total_ci_low_ns": 10613747.71043956, "total_ci_high_ns": 10662510.8510989, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 123.92033794709931}, {"serializer": "SwiftMsgpack", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "1.2.1", "avg_time_ser_ns": 1475738.9659090908, "avg_time_deser_ns": 485884.5909090909, "avg_time_total_ns": 1961623.5568181819, "median_size_bytes": 12041.0, "avg_ops_per_sec": 509.7818062615607, "min_ops_per_sec": 491.2761635261838, "max_ops_per_sec": 526.1056241217324, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 1475738.9659090908, "ser_median_ns": 1474546.5, "ser_std_ns": 23332.716794210326, "ser_mad_ns": 15747.0, "ser_cv": 0.015810869898550663, "ser_min_ns": 1432117.0, "ser_max_ns": 1536282.0, "ser_p5_ns": 1442687.1, "ser_p25_ns": 1458122.0, "ser_p50_ns": 1474546.5, "ser_p75_ns": 1489228.75, "ser_p95_ns": 1518840.0, "ser_p99_ns": 1524863.25, "ser_ci_low_ns": 1470857.6389204545, "ser_ci_high_ns": 1480696.6144886364, "deser_mean_ns": 485884.5909090909, "deser_median_ns": 484851.5, "deser_std_ns": 9999.040115582087, "deser_mad_ns": 6613.0, "deser_cv": 0.020579043465597184, "deser_min_ns": 465702.0, "deser_max_ns": 511949.0, "deser_p5_ns": 471023.6, "deser_p25_ns": 479193.5, "deser_p50_ns": 484851.5, "deser_p75_ns": 492718.25, "deser_p95_ns": 504955.95, "deser_p99_ns": 510811.91, "deser_ci_low_ns": 483876.9426136364, "deser_ci_high_ns": 488015.68806818186, "total_mean_ns": 1961623.5568181819, "total_median_ns": 1960925.5, "total_std_ns": 29943.501722778215, "total_mad_ns": 19873.0, "total_cv": 0.015264652394034033, "total_min_ns": 1900759.0, "total_max_ns": 2035515.0, "total_p5_ns": 1915633.15, "total_p25_ns": 1941839.0, "total_p50_ns": 1960925.5, "total_p75_ns": 1980930.5, "total_p95_ns": 2015882.85, "total_p99_ns": 2031508.65, "total_ci_low_ns": 1955243.2980113635, "total_ci_high_ns": 1967711.5488636363, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 68.01549712918842}, {"serializer": "Foundation.JSONEncoder", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 1365602.1157894738, "avg_time_deser_ns": 404288.8526315789, "avg_time_total_ns": 1769890.9684210527, "median_size_bytes": 16546.0, "avg_ops_per_sec": 565.006555681854, "min_ops_per_sec": 541.2652508250236, "max_ops_per_sec": 589.115154928449, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1365602.1157894738, "ser_median_ns": 1362034.0, "ser_std_ns": 23345.300884333603, "ser_mad_ns": 15715.0, "ser_cv": 0.01709524363971665, "ser_min_ns": 1314514.0, "ser_max_ns": 1421445.0, "ser_p5_ns": 1336950.2, "ser_p25_ns": 1348010.5, "ser_p50_ns": 1362034.0, "ser_p75_ns": 1380022.0, "ser_p95_ns": 1409550.3, "ser_p99_ns": 1418190.72, "ser_ci_low_ns": 1360832.6363157895, "ser_ci_high_ns": 1370378.2626315788, "deser_mean_ns": 404288.8526315789, "deser_median_ns": 402127.0, "deser_std_ns": 10468.972166997612, "deser_mad_ns": 6533.0, "deser_cv": 0.025894783145400734, "deser_min_ns": 381891.0, "deser_max_ns": 432680.0, "deser_p5_ns": 391374.4, "deser_p25_ns": 396411.5, "deser_p50_ns": 402127.0, "deser_p75_ns": 409679.0, "deser_p95_ns": 423880.7, "deser_p99_ns": 432173.34, "deser_ci_low_ns": 402257.0007894737, "deser_ci_high_ns": 406441.2357894737, "total_mean_ns": 1769890.9684210527, "total_median_ns": 1768441.0, "total_std_ns": 28677.21977772328, "total_mad_ns": 19716.0, "total_cv": 0.016202817173142973, "total_min_ns": 1697461.0, "total_max_ns": 1847523.0, "total_p5_ns": 1730390.5, "total_p25_ns": 1749603.0, "total_p50_ns": 1768441.0, "total_p75_ns": 1788782.0, "total_p95_ns": 1819430.6, "total_p99_ns": 1839300.82, "total_ci_low_ns": 1764450.4405263157, "total_ci_high_ns": 1775621.5007894738, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 61.17241295106795}, {"serializer": "FlatBuffers", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "24.3.25", "avg_time_ser_ns": 560048.0674157303, "avg_time_deser_ns": 36124.93258426966, "avg_time_total_ns": 596173.0, "median_size_bytes": 8040.0, "avg_ops_per_sec": 1677.3654627096498, "min_ops_per_sec": 1587.3066263702424, "max_ops_per_sec": 1763.5875603587842, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 560048.0674157303, "ser_median_ns": 557438.0, "ser_std_ns": 12340.632441799135, "ser_mad_ns": 7244.0, "ser_cv": 0.02203495228319132, "ser_min_ns": 534497.0, "ser_max_ns": 591468.0, "ser_p5_ns": 546281.2, "ser_p25_ns": 551056.0, "ser_p50_ns": 557438.0, "ser_p75_ns": 566216.0, "ser_p95_ns": 585405.0, "ser_p99_ns": 588503.28, "ser_ci_low_ns": 557624.4691011235, "ser_ci_high_ns": 562633.6241573034, "deser_mean_ns": 36124.93258426966, "deser_median_ns": 36158.0, "deser_std_ns": 1619.5620816481733, "deser_mad_ns": 1188.0, "deser_cv": 0.044832252015147005, "deser_min_ns": 31574.0, "deser_max_ns": 39762.0, "deser_p5_ns": 33936.6, "deser_p25_ns": 34964.0, "deser_p50_ns": 36158.0, "deser_p75_ns": 37253.0, "deser_p95_ns": 38624.799999999996, "deser_p99_ns": 39080.0, "deser_ci_low_ns": 35781.967134831466, "deser_ci_high_ns": 36440.57275280899, "total_mean_ns": 596173.0, "total_median_ns": 593441.0, "total_std_ns": 13049.28899055772, "total_mad_ns": 8663.0, "total_cv": 0.021888426665678785, "total_min_ns": 567026.0, "total_max_ns": 629998.0, "total_p5_ns": 579822.6, "total_p25_ns": 585992.0, "total_p50_ns": 593441.0, "total_p75_ns": 603888.0, "total_p95_ns": 621545.6, "total_p99_ns": 627421.36, "total_ci_low_ns": 593394.493258427, "total_ci_high_ns": 598891.8098314607, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 16.089427120427743}, {"serializer": "IkigaJSON", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "2.5.3", "avg_time_ser_ns": 1388885.9468085107, "avg_time_deser_ns": 467825.6382978723, "avg_time_total_ns": 1856711.585106383, "median_size_bytes": 16546.0, "avg_ops_per_sec": 538.5866108778029, "min_ops_per_sec": 522.0653531850425, "max_ops_per_sec": 557.9743744688782, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 1388885.9468085107, "ser_median_ns": 1385127.5, "ser_std_ns": 20644.670802546778, "ser_mad_ns": 12467.5, "ser_cv": 0.014864194464625188, "ser_min_ns": 1345105.0, "ser_max_ns": 1443074.0, "ser_p5_ns": 1358669.85, "ser_p25_ns": 1373737.5, "ser_p50_ns": 1385127.5, "ser_p75_ns": 1402155.25, "ser_p95_ns": 1426255.3, "ser_p99_ns": 1441652.03, "ser_ci_low_ns": 1384967.9396276595, "ser_ci_high_ns": 1393113.646542553, "deser_mean_ns": 467825.6382978723, "deser_median_ns": 466829.0, "deser_std_ns": 9358.928714600252, "deser_mad_ns": 6394.5, "deser_cv": 0.02000516420744189, "deser_min_ns": 447092.0, "deser_max_ns": 496015.0, "deser_p5_ns": 453649.1, "deser_p25_ns": 461696.5, "deser_p50_ns": 466829.0, "deser_p75_ns": 475057.25, "deser_p95_ns": 482943.35, "deser_p99_ns": 490658.19999999995, "deser_ci_low_ns": 465832.4933510638, "deser_ci_high_ns": 469653.52978723403, "total_mean_ns": 1856711.585106383, "total_median_ns": 1855203.5, "total_std_ns": 25456.800917113273, "total_mad_ns": 14179.0, "total_cv": 0.01371069212973898, "total_min_ns": 1792197.0, "total_max_ns": 1915469.0, "total_p5_ns": 1814264.5, "total_p25_ns": 1841986.75, "total_p50_ns": 1855203.5, "total_p75_ns": 1872824.25, "total_p95_ns": 1900472.5999999999, "total_p99_ns": 1911477.44, "total_ci_low_ns": 1851604.1375000002, "total_ci_high_ns": 1862103.8271276597, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 71.7581168457035}, {"serializer": "Foundation.PropertyListEncoder", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 1168179.1382978724, "avg_time_deser_ns": 779915.9255319149, "avg_time_total_ns": 1948095.0638297873, "median_size_bytes": 9627.0, "avg_ops_per_sec": 513.321972098264, "min_ops_per_sec": 493.76547028939103, "max_ops_per_sec": 532.0496040486846, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 1168179.1382978724, "ser_median_ns": 1166077.5, "ser_std_ns": 20144.42986305519, "ser_mad_ns": 12694.0, "ser_cv": 0.01724429858626579, "ser_min_ns": 1127890.0, "ser_max_ns": 1215989.0, "ser_p5_ns": 1140585.05, "ser_p25_ns": 1155407.0, "ser_p50_ns": 1166077.5, "ser_p75_ns": 1179190.75, "ser_p95_ns": 1209814.3, "ser_p99_ns": 1214985.53, "ser_ci_low_ns": 1164103.7098404255, "ser_ci_high_ns": 1172047.5276595745, "deser_mean_ns": 779915.9255319149, "deser_median_ns": 779743.5, "deser_std_ns": 14412.23548003672, "deser_mad_ns": 10324.5, "deser_cv": 0.01847921680815448, "deser_min_ns": 740471.0, "deser_max_ns": 809264.0, "deser_p5_ns": 759529.95, "deser_p25_ns": 770592.75, "deser_p50_ns": 779743.5, "deser_p75_ns": 791074.0, "deser_p95_ns": 805933.0, "deser_p99_ns": 809130.08, "deser_ci_low_ns": 777072.7808510638, "deser_ci_high_ns": 782621.0837765958, "total_mean_ns": 1948095.0638297873, "total_median_ns": 1944696.5, "total_std_ns": 28981.72345803528, "total_mad_ns": 17689.5, "total_cv": 0.014876955440285191, "total_min_ns": 1879524.0, "total_max_ns": 2025253.0, "total_p5_ns": 1909519.15, "total_p25_ns": 1928384.5, "total_p50_ns": 1944696.5, "total_p75_ns": 1966439.0, "total_p95_ns": 1998971.6, "total_p99_ns": 2009180.74, "total_ci_low_ns": 1942557.4789893616, "total_ci_high_ns": 1954155.160106383, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 68.54820373765993}, {"serializer": "SwiftProtobuf", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "1.38.1", "avg_time_ser_ns": 356423.78651685396, "avg_time_deser_ns": 27699.1797752809, "avg_time_total_ns": 384122.96629213484, "median_size_bytes": 4841.0, "avg_ops_per_sec": 2603.333015083185, "min_ops_per_sec": 2386.8741019386193, "max_ops_per_sec": 2762.9575803122693, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 356423.78651685396, "ser_median_ns": 352716.0, "ser_std_ns": 12613.500560791555, "ser_mad_ns": 6675.0, "ser_cv": 0.035389053811634735, "ser_min_ns": 336165.0, "ser_max_ns": 391845.0, "ser_p5_ns": 343225.0, "ser_p25_ns": 346683.0, "ser_p50_ns": 352716.0, "ser_p75_ns": 361004.0, "ser_p95_ns": 380883.2, "ser_p99_ns": 385993.88, "ser_ci_low_ns": 353867.7915730337, "ser_ci_high_ns": 359088.9196629214, "deser_mean_ns": 27699.1797752809, "deser_median_ns": 27572.0, "deser_std_ns": 1547.670599803267, "deser_mad_ns": 927.0, "deser_cv": 0.05587423932258195, "deser_min_ns": 24392.0, "deser_max_ns": 31591.0, "deser_p5_ns": 25550.0, "deser_p25_ns": 26645.0, "deser_p50_ns": 27572.0, "deser_p75_ns": 28478.0, "deser_p95_ns": 30632.6, "deser_p99_ns": 31337.56, "deser_ci_low_ns": 27383.49129213483, "deser_ci_high_ns": 28022.096348314604, "total_mean_ns": 384122.96629213484, "total_median_ns": 380957.0, "total_std_ns": 13196.741071920196, "total_mad_ns": 7885.0, "total_cv": 0.03435551172403411, "total_min_ns": 361931.0, "total_max_ns": 418958.0, "total_p5_ns": 369474.8, "total_p25_ns": 374205.0, "total_p50_ns": 380957.0, "total_p75_ns": 390383.0, "total_p95_ns": 410645.2, "total_p99_ns": 415343.84, "total_ci_low_ns": 381449.83848314604, "total_ci_high_ns": 386935.24803370785, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "CapnProto", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "capnproto-1.0.2", "avg_time_ser_ns": 587550.9347826086, "avg_time_deser_ns": 59913.19565217391, "avg_time_total_ns": 647464.1304347826, "median_size_bytes": 7600.0, "avg_ops_per_sec": 1544.4871043720736, "min_ops_per_sec": 1436.8125749836563, "max_ops_per_sec": 1674.5874653779042, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 587550.9347826086, "ser_median_ns": 585121.0, "ser_std_ns": 18001.074268800316, "ser_mad_ns": 11592.5, "ser_cv": 0.030637470222833765, "ser_min_ns": 548850.0, "ser_max_ns": 631975.0, "ser_p5_ns": 560894.7, "ser_p25_ns": 575507.25, "ser_p50_ns": 585121.0, "ser_p75_ns": 597414.5, "ser_p95_ns": 620698.4500000001, "ser_p99_ns": 629836.5, "ser_ci_low_ns": 584000.4040760869, "ser_ci_high_ns": 591201.1339673913, "deser_mean_ns": 59913.19565217391, "deser_median_ns": 60679.0, "deser_std_ns": 3936.9817391050747, "deser_mad_ns": 2442.5, "deser_cv": 0.06571142961495868, "deser_min_ns": 48312.0, "deser_max_ns": 69160.0, "deser_p5_ns": 53123.3, "deser_p25_ns": 56709.5, "deser_p50_ns": 60679.0, "deser_p75_ns": 62559.75, "deser_p95_ns": 65760.1, "deser_p99_ns": 68036.15000000001, "deser_ci_low_ns": 59083.99701086956, "deser_ci_high_ns": 60724.34918478261, "total_mean_ns": 647464.1304347826, "total_median_ns": 647141.5, "total_std_ns": 20818.785457822552, "total_mad_ns": 14229.0, "total_cv": 0.03215434566829579, "total_min_ns": 597162.0, "total_max_ns": 695985.0, "total_p5_ns": 616249.2, "total_p25_ns": 632857.5, "total_p50_ns": 647141.5, "total_p75_ns": 659567.5, "total_p95_ns": 684187.7, "total_p99_ns": 692698.08, "total_ci_low_ns": 643283.4307065217, "total_ci_high_ns": 651789.4937499999, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.992014571015506}, {"serializer": "BinaryCodable", "test_data": "message", "type_config_hash": "99d1c7fab316", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "4.0.0", "avg_time_ser_ns": 1548719.3626373627, "avg_time_deser_ns": 534011.3626373627, "avg_time_total_ns": 2082730.7252747254, "median_size_bytes": 12048.0, "avg_ops_per_sec": 480.1388810683117, "min_ops_per_sec": 463.57054083384287, "max_ops_per_sec": 495.3746865516671, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 1548719.3626373627, "ser_median_ns": 1544770.0, "ser_std_ns": 21614.417993817864, "ser_mad_ns": 14020.0, "ser_cv": 0.013956316757743633, "ser_min_ns": 1501892.0, "ser_max_ns": 1605983.0, "ser_p5_ns": 1519365.0, "ser_p25_ns": 1532248.5, "ser_p50_ns": 1544770.0, "ser_p75_ns": 1562889.0, "ser_p95_ns": 1589641.5, "ser_p99_ns": 1604250.5, "ser_ci_low_ns": 1544460.6631868132, "ser_ci_high_ns": 1553199.4354395603, "deser_mean_ns": 534011.3626373627, "deser_median_ns": 533547.0, "deser_std_ns": 7959.692497573123, "deser_mad_ns": 5149.0, "deser_cv": 0.014905474030106742, "deser_min_ns": 516782.0, "deser_max_ns": 557205.0, "deser_p5_ns": 522731.0, "deser_p25_ns": 528905.5, "deser_p50_ns": 533547.0, "deser_p75_ns": 539767.0, "deser_p95_ns": 547653.0, "deser_p99_ns": 556539.0, "deser_ci_low_ns": 532434.7244505495, "deser_ci_high_ns": 535647.0016483516, "total_mean_ns": 2082730.7252747254, "total_median_ns": 2077075.0, "total_std_ns": 26463.57937453995, "total_mad_ns": 16641.0, "total_cv": 0.012706193389954065, "total_min_ns": 2018674.0, "total_max_ns": 2157169.0, "total_p5_ns": 2049932.0, "total_p25_ns": 2063383.0, "total_p50_ns": 2077075.0, "total_p75_ns": 2097515.5, "total_p95_ns": 2134542.5, "total_p99_ns": 2143809.4, "total_ci_low_ns": 2077533.279120879, "total_ci_high_ns": 2087964.9972527472, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 80.61854363346545}, {"serializer": "Foundation.JSONEncoder", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 21555.54430379747, "avg_time_deser_ns": 31334.41772151899, "avg_time_total_ns": 52889.962025316454, "median_size_bytes": 448.0, "avg_ops_per_sec": 18907.17939107873, "min_ops_per_sec": 17427.9788772896, "max_ops_per_sec": 20174.713014707366, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 21555.54430379747, "ser_median_ns": 21530.0, "ser_std_ns": 667.6155963954637, "ser_mad_ns": 434.0, "ser_cv": 0.030971873731708507, "ser_min_ns": 19756.0, "ser_max_ns": 23638.0, "ser_p5_ns": 20526.2, "ser_p25_ns": 21145.0, "ser_p50_ns": 21530.0, "ser_p75_ns": 21999.5, "ser_p95_ns": 22586.1, "ser_p99_ns": 22967.2, "ser_ci_low_ns": 21410.101265822785, "ser_ci_high_ns": 21699.52088607595, "deser_mean_ns": 31334.41772151899, "deser_median_ns": 30845.0, "deser_std_ns": 1760.7321438100755, "deser_mad_ns": 1328.0, "deser_cv": 0.05619163437017974, "deser_min_ns": 28459.0, "deser_max_ns": 36063.0, "deser_p5_ns": 28926.1, "deser_p25_ns": 30094.0, "deser_p50_ns": 30845.0, "deser_p75_ns": 32570.0, "deser_p95_ns": 34078.99999999999, "deser_p99_ns": 35481.12, "deser_ci_low_ns": 30946.925, "deser_ci_high_ns": 31727.597151898735, "total_mean_ns": 52889.962025316454, "total_median_ns": 52605.0, "total_std_ns": 2024.5050072006397, "total_mad_ns": 1546.0, "total_cv": 0.038277679349279635, "total_min_ns": 49567.0, "total_max_ns": 57379.0, "total_p5_ns": 49904.0, "total_p25_ns": 51327.0, "total_p50_ns": 52605.0, "total_p75_ns": 54347.0, "total_p95_ns": 56641.2, "total_p99_ns": 57198.04, "total_ci_low_ns": 52456.273101265826, "total_ci_high_ns": 53353.23860759493, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.557756724063633}, {"serializer": "Foundation.PropertyListEncoder", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 36489.5625, "avg_time_deser_ns": 53342.95, "avg_time_total_ns": 89832.5125, "median_size_bytes": 399.0, "avg_ops_per_sec": 11131.82713218669, "min_ops_per_sec": 10386.373078520981, "max_ops_per_sec": 12293.923113804847, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 36489.5625, "ser_median_ns": 36143.5, "ser_std_ns": 1749.9846497970536, "ser_mad_ns": 1432.0, "ser_cv": 0.04795849908578799, "ser_min_ns": 32194.0, "ser_max_ns": 40501.0, "ser_p5_ns": 34087.45, "ser_p25_ns": 35418.75, "ser_p50_ns": 36143.5, "ser_p75_ns": 37781.75, "ser_p95_ns": 38998.9, "ser_p99_ns": 40439.38, "ser_ci_low_ns": 36114.3471875, "ser_ci_high_ns": 36875.364687500005, "deser_mean_ns": 53342.95, "deser_median_ns": 53384.0, "deser_std_ns": 1747.1043812512582, "deser_mad_ns": 870.5, "deser_cv": 0.03275230149909704, "deser_min_ns": 49015.0, "deser_max_ns": 57387.0, "deser_p5_ns": 50062.0, "deser_p25_ns": 52525.5, "deser_p50_ns": 53384.0, "deser_p75_ns": 54266.75, "deser_p95_ns": 56055.299999999996, "deser_p99_ns": 57235.32, "deser_ci_low_ns": 52968.909687499996, "deser_ci_high_ns": 53704.978437499994, "total_mean_ns": 89832.5125, "total_median_ns": 89923.0, "total_std_ns": 3049.9326076544994, "total_mad_ns": 1871.0, "total_cv": 0.03395132255322926, "total_min_ns": 81341.0, "total_max_ns": 96280.0, "total_p5_ns": 84538.35, "total_p25_ns": 88201.5, "total_p50_ns": 89923.0, "total_p75_ns": 91812.75, "total_p95_ns": 94201.3, "total_p99_ns": 95858.93, "total_ci_low_ns": 89157.15, "total_ci_high_ns": 90496.998125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 36.92688282244051}, {"serializer": "TOML", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "2.0.0", "avg_time_ser_ns": 149079.16470588234, "avg_time_deser_ns": 41342.129411764705, "avg_time_total_ns": 190421.29411764705, "median_size_bytes": 508.0, "avg_ops_per_sec": 5251.513517086881, "min_ops_per_sec": 5024.974121383275, "max_ops_per_sec": 5575.192622905121, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 149079.16470588234, "ser_median_ns": 148756.0, "ser_std_ns": 3248.031362911045, "ser_mad_ns": 2083.0, "ser_cv": 0.021787292471882793, "ser_min_ns": 140742.0, "ser_max_ns": 156063.0, "ser_p5_ns": 143581.6, "ser_p25_ns": 147365.0, "ser_p50_ns": 148756.0, "ser_p75_ns": 151450.0, "ser_p95_ns": 154680.6, "ser_p99_ns": 155881.56, "ser_ci_low_ns": 148428.95470588235, "ser_ci_high_ns": 149741.05029411765, "deser_mean_ns": 41342.129411764705, "deser_median_ns": 41175.0, "deser_std_ns": 1577.4216816135913, "deser_mad_ns": 845.0, "deser_cv": 0.038155308012864604, "deser_min_ns": 37926.0, "deser_max_ns": 45739.0, "deser_p5_ns": 39128.2, "deser_p25_ns": 40360.0, "deser_p50_ns": 41175.0, "deser_p75_ns": 42020.0, "deser_p95_ns": 44585.0, "deser_p99_ns": 45618.04, "deser_ci_low_ns": 41016.90176470588, "deser_ci_high_ns": 41695.11794117647, "total_mean_ns": 190421.29411764705, "total_median_ns": 189776.0, "total_std_ns": 4247.530082921383, "total_mad_ns": 2572.0, "total_cv": 0.0223059616446948, "total_min_ns": 179366.0, "total_max_ns": 199006.0, "total_p5_ns": 183656.8, "total_p25_ns": 187907.0, "total_p50_ns": 189776.0, "total_p75_ns": 193679.0, "total_p95_ns": 197181.4, "total_p99_ns": 198764.92, "total_ci_low_ns": 189468.57117647058, "total_ci_high_ns": 191329.33735294116, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 58.2484470347472}, {"serializer": "SwiftProtobuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "1.38.1", "avg_time_ser_ns": 4509.986842105263, "avg_time_deser_ns": 4257.355263157895, "avg_time_total_ns": 8767.342105263158, "median_size_bytes": 155.0, "avg_ops_per_sec": 114059.65319862288, "min_ops_per_sec": 104766.89366160294, "max_ops_per_sec": 123685.83797155226, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 4509.986842105263, "ser_median_ns": 4508.5, "ser_std_ns": 201.73794839980258, "ser_mad_ns": 130.0, "ser_cv": 0.04473138292031718, "ser_min_ns": 4064.0, "ser_max_ns": 5193.0, "ser_p5_ns": 4155.25, "ser_p25_ns": 4386.0, "ser_p50_ns": 4508.5, "ser_p75_ns": 4642.0, "ser_p95_ns": 4838.5, "ser_p99_ns": 4952.25, "ser_ci_low_ns": 4465.430921052632, "ser_ci_high_ns": 4554.277302631579, "deser_mean_ns": 4257.355263157895, "deser_median_ns": 4242.0, "deser_std_ns": 127.66223184088744, "deser_mad_ns": 81.5, "deser_cv": 0.029986276443886416, "deser_min_ns": 3984.0, "deser_max_ns": 4670.0, "deser_p5_ns": 4076.75, "deser_p25_ns": 4177.75, "deser_p50_ns": 4242.0, "deser_p75_ns": 4331.0, "deser_p95_ns": 4483.75, "deser_p99_ns": 4601.0, "deser_ci_low_ns": 4231.23322368421, "deser_ci_high_ns": 4286.161184210527, "total_mean_ns": 8767.342105263158, "total_median_ns": 8755.0, "total_std_ns": 291.65187250700467, "total_mad_ns": 163.0, "total_cv": 0.033265711432877924, "total_min_ns": 8085.0, "total_max_ns": 9545.0, "total_p5_ns": 8290.25, "total_p25_ns": 8623.0, "total_p50_ns": 8755.0, "total_p75_ns": 8923.75, "total_p95_ns": 9190.5, "total_p99_ns": 9542.75, "total_ci_low_ns": 8702.692763157895, "total_ci_high_ns": 8835.225, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 0.9956741167988464, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 3.9177658548893683}, {"serializer": "SwiftBSON", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "3.1.0", "avg_time_ser_ns": 44069.3734939759, "avg_time_deser_ns": 60910.89156626506, "avg_time_total_ns": 104980.26506024097, "median_size_bytes": 525.0, "avg_ops_per_sec": 9525.599877521443, "min_ops_per_sec": 8877.68327977131, "max_ops_per_sec": 10276.22492601118, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 44069.3734939759, "ser_median_ns": 44041.0, "ser_std_ns": 1847.803823071366, "ser_mad_ns": 1196.0, "ser_cv": 0.04192943254171637, "ser_min_ns": 39973.0, "ser_max_ns": 48701.0, "ser_p5_ns": 41178.9, "ser_p25_ns": 42773.5, "ser_p50_ns": 44041.0, "ser_p75_ns": 45079.5, "ser_p95_ns": 47254.0, "ser_p99_ns": 48311.5, "ser_ci_low_ns": 43692.91596385543, "ser_ci_high_ns": 44441.7734939759, "deser_mean_ns": 60910.89156626506, "deser_median_ns": 60645.0, "deser_std_ns": 1717.586082708337, "deser_mad_ns": 1000.0, "deser_cv": 0.028198340863879363, "deser_min_ns": 57339.0, "deser_max_ns": 65897.0, "deser_p5_ns": 58311.4, "deser_p25_ns": 59931.5, "deser_p50_ns": 60645.0, "deser_p75_ns": 61849.5, "deser_p95_ns": 64359.399999999994, "deser_p99_ns": 65219.67999999999, "deser_ci_low_ns": 60566.53373493976, "deser_ci_high_ns": 61284.71686746988, "total_mean_ns": 104980.26506024097, "total_median_ns": 105293.0, "total_std_ns": 3013.707181805619, "total_mad_ns": 1835.0, "total_cv": 0.028707368761893094, "total_min_ns": 97312.0, "total_max_ns": 112642.0, "total_p5_ns": 100051.0, "total_p25_ns": 103215.5, "total_p50_ns": 105293.0, "total_p75_ns": 107039.0, "total_p95_ns": 109536.8, "total_p99_ns": 112240.2, "total_ci_low_ns": 104345.6171686747, "total_ci_high_ns": 105643.2593373494, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 43.87407344553997}, {"serializer": "SwiftMsgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "1.2.1", "avg_time_ser_ns": 45601.10975609756, "avg_time_deser_ns": 32885.9756097561, "avg_time_total_ns": 78487.08536585367, "median_size_bytes": 329.0, "avg_ops_per_sec": 12740.949614050221, "min_ops_per_sec": 12033.259930447757, "max_ops_per_sec": 13706.328211735357, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 45601.10975609756, "ser_median_ns": 45668.5, "ser_std_ns": 1246.874710370065, "ser_mad_ns": 766.5, "ser_cv": 0.027343078206629366, "ser_min_ns": 42150.0, "ser_max_ns": 49443.0, "ser_p5_ns": 43607.8, "ser_p25_ns": 44858.75, "ser_p50_ns": 45668.5, "ser_p75_ns": 46318.5, "ser_p95_ns": 47539.8, "ser_p99_ns": 48367.32, "ser_ci_low_ns": 45325.653353658534, "ser_ci_high_ns": 45874.76371951219, "deser_mean_ns": 32885.9756097561, "deser_median_ns": 32978.0, "deser_std_ns": 797.3416012145618, "deser_mad_ns": 494.0, "deser_cv": 0.02424564229677343, "deser_min_ns": 30809.0, "deser_max_ns": 35042.0, "deser_p5_ns": 31643.05, "deser_p25_ns": 32329.0, "deser_p50_ns": 32978.0, "deser_p75_ns": 33346.25, "deser_p95_ns": 34105.95, "deser_p99_ns": 34574.63, "deser_ci_low_ns": 32713.595731707315, "deser_ci_high_ns": 33058.87896341464, "total_mean_ns": 78487.08536585367, "total_median_ns": 78577.5, "total_std_ns": 1869.2374770769827, "total_mad_ns": 1195.5, "total_cv": 0.023815860512132192, "total_min_ns": 72959.0, "total_max_ns": 83103.0, "total_p5_ns": 75634.55, "total_p25_ns": 77232.25, "total_p50_ns": 78577.5, "total_p75_ns": 79711.0, "total_p95_ns": 81335.35, "total_p99_ns": 83009.04, "total_ci_low_ns": 78100.35792682927, "total_ci_high_ns": 78903.51402439024, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 51.27941288363359}, {"serializer": "IkigaJSON", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "2.5.3", "avg_time_ser_ns": 18859.430379746835, "avg_time_deser_ns": 31741.443037974685, "avg_time_total_ns": 50600.873417721516, "median_size_bytes": 448.0, "avg_ops_per_sec": 19762.50472486466, "min_ops_per_sec": 18628.21802466376, "max_ops_per_sec": 21472.129176329126, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 18859.430379746835, "ser_median_ns": 18500.0, "ser_std_ns": 1071.4938013095204, "ser_mad_ns": 638.0, "ser_cv": 0.05681474889401744, "ser_min_ns": 17062.0, "ser_max_ns": 21726.0, "ser_p5_ns": 17557.8, "ser_p25_ns": 18030.0, "ser_p50_ns": 18500.0, "ser_p75_ns": 19788.5, "ser_p95_ns": 20687.2, "ser_p99_ns": 21201.84, "ser_ci_low_ns": 18626.86424050633, "ser_ci_high_ns": 19098.046835443038, "deser_mean_ns": 31741.443037974685, "deser_median_ns": 31724.0, "deser_std_ns": 802.5421587589803, "deser_mad_ns": 439.0, "deser_cv": 0.025283732620436903, "deser_min_ns": 29510.0, "deser_max_ns": 34202.0, "deser_p5_ns": 30614.3, "deser_p25_ns": 31282.5, "deser_p50_ns": 31724.0, "deser_p75_ns": 32139.5, "deser_p95_ns": 33112.299999999996, "deser_p99_ns": 33731.659999999996, "deser_ci_low_ns": 31556.031329113925, "deser_ci_high_ns": 31912.17088607595, "total_mean_ns": 50600.873417721516, "total_median_ns": 50481.0, "total_std_ns": 1489.0653441525385, "total_mad_ns": 932.0, "total_cv": 0.02942766089944676, "total_min_ns": 46572.0, "total_max_ns": 53682.0, "total_p5_ns": 48718.0, "total_p25_ns": 49639.0, "total_p50_ns": 50481.0, "total_p75_ns": 51425.5, "total_p95_ns": 53493.3, "total_p99_ns": 53634.42, "total_ci_low_ns": 50269.37088607595, "total_ci_high_ns": 50932.21012658228, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 39.118137991641625}, {"serializer": "CapnProto", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "capnproto-1.0.2", "avg_time_ser_ns": 15628.260869565218, "avg_time_deser_ns": 10129.782608695652, "avg_time_total_ns": 25758.043478260868, "median_size_bytes": 376.0, "avg_ops_per_sec": 38822.82444487581, "min_ops_per_sec": 33166.39580776757, "max_ops_per_sec": 45316.53600398786, "runs": 69, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 30, "ser_mean_ns": 15628.260869565218, "ser_median_ns": 15383.0, "ser_std_ns": 1624.3517499042132, "ser_mad_ns": 1246.0, "ser_cv": 0.10393682083126138, "ser_min_ns": 12688.0, "ser_max_ns": 19491.0, "ser_p5_ns": 13530.8, "ser_p25_ns": 14360.0, "ser_p50_ns": 15383.0, "ser_p75_ns": 16991.0, "ser_p95_ns": 18422.4, "ser_p99_ns": 18906.199999999993, "ser_ci_low_ns": 15251.66811594203, "ser_ci_high_ns": 16005.694927536231, "deser_mean_ns": 10129.782608695652, "deser_median_ns": 10159.0, "deser_std_ns": 257.1386596397553, "deser_mad_ns": 113.0, "deser_cv": 0.02538442033484719, "deser_min_ns": 9379.0, "deser_max_ns": 10660.0, "deser_p5_ns": 9567.2, "deser_p25_ns": 10008.0, "deser_p50_ns": 10159.0, "deser_p75_ns": 10255.0, "deser_p95_ns": 10505.6, "deser_p99_ns": 10656.6, "deser_ci_low_ns": 10071.540217391304, "deser_ci_high_ns": 10189.496376811594, "total_mean_ns": 25758.043478260868, "total_median_ns": 25662.0, "total_std_ns": 1774.7067233670452, "total_mad_ns": 1253.0, "total_cv": 0.06889912756241957, "total_min_ns": 22067.0, "total_max_ns": 30151.0, "total_p5_ns": 23291.6, "total_p25_ns": 24442.0, "total_p50_ns": 25662.0, "total_p75_ns": 27165.0, "total_p95_ns": 28698.4, "total_p99_ns": 29475.759999999995, "total_ci_low_ns": 25352.41376811594, "total_ci_high_ns": 26166.464130434782, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.383946462089167}, {"serializer": "SwiftAvroCore", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "2.3.0", "avg_time_ser_ns": 106651.53488372093, "avg_time_deser_ns": 28996.39534883721, "avg_time_total_ns": 135647.93023255814, "median_size_bytes": 114.0, "avg_ops_per_sec": 7372.025494864356, "min_ops_per_sec": 6881.22320623714, "max_ops_per_sec": 7799.521109403882, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 106651.53488372093, "ser_median_ns": 106683.0, "ser_std_ns": 3086.8404585297035, "ser_mad_ns": 1896.0, "ser_cv": 0.028943235199523343, "ser_min_ns": 100514.0, "ser_max_ns": 114909.0, "ser_p5_ns": 101262.75, "ser_p25_ns": 104765.75, "ser_p50_ns": 106683.0, "ser_p75_ns": 108518.25, "ser_p95_ns": 111414.0, "ser_p99_ns": 114060.70000000001, "ser_ci_low_ns": 105939.87529069767, "ser_ci_high_ns": 107329.30523255814, "deser_mean_ns": 28996.39534883721, "deser_median_ns": 29036.0, "deser_std_ns": 1114.6743051521137, "deser_mad_ns": 716.0, "deser_cv": 0.03844182325913877, "deser_min_ns": 26575.0, "deser_max_ns": 31834.0, "deser_p5_ns": 27331.25, "deser_p25_ns": 28172.0, "deser_p50_ns": 29036.0, "deser_p75_ns": 29696.25, "deser_p95_ns": 30821.0, "deser_p99_ns": 31475.300000000003, "deser_ci_low_ns": 28772.95203488372, "deser_ci_high_ns": 29230.36191860465, "total_mean_ns": 135647.93023255814, "total_median_ns": 136074.5, "total_std_ns": 3627.2303963239524, "total_mad_ns": 2101.0, "total_cv": 0.026740034957447117, "total_min_ns": 128213.0, "total_max_ns": 145323.0, "total_p5_ns": 129646.25, "total_p25_ns": 133596.5, "total_p50_ns": 136074.5, "total_p75_ns": 137436.5, "total_p95_ns": 141686.25, "total_p99_ns": 144479.80000000002, "total_ci_low_ns": 134924.4406976744, "total_ci_high_ns": 136416.31162790698, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 47.60930799414924}, {"serializer": "FlatBuffers", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "24.3.25", "avg_time_ser_ns": 3781.5342465753424, "avg_time_deser_ns": 3821.7397260273974, "avg_time_total_ns": 7603.273972602739, "median_size_bytes": 440.0, "avg_ops_per_sec": 131522.2894247071, "min_ops_per_sec": 120438.39576056847, "max_ops_per_sec": 142308.23964707556, "runs": 73, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 26, "ser_mean_ns": 3781.5342465753424, "ser_median_ns": 3773.0, "ser_std_ns": 131.2078590752285, "ser_mad_ns": 63.0, "ser_cv": 0.03469699082959617, "ser_min_ns": 3441.0, "ser_max_ns": 4113.0, "ser_p5_ns": 3576.0, "ser_p25_ns": 3716.0, "ser_p50_ns": 3773.0, "ser_p75_ns": 3843.0, "ser_p95_ns": 4017.0, "ser_p99_ns": 4107.96, "ser_ci_low_ns": 3752.483561643836, "ser_ci_high_ns": 3811.153082191781, "deser_mean_ns": 3821.7397260273974, "deser_median_ns": 3801.0, "deser_std_ns": 220.09442590985935, "deser_mad_ns": 169.0, "deser_cv": 0.05759011384551872, "deser_min_ns": 3472.0, "deser_max_ns": 4296.0, "deser_p5_ns": 3519.8, "deser_p25_ns": 3639.0, "deser_p50_ns": 3801.0, "deser_p75_ns": 3970.0, "deser_p95_ns": 4235.8, "deser_p99_ns": 4291.68, "deser_ci_low_ns": 3771.792123287671, "deser_ci_high_ns": 3872.5876712328763, "total_mean_ns": 7603.273972602739, "total_median_ns": 7554.0, "total_std_ns": 299.67135982021915, "total_mad_ns": 203.0, "total_cv": 0.0394134633185704, "total_min_ns": 7027.0, "total_max_ns": 8303.0, "total_p5_ns": 7130.4, "total_p25_ns": 7391.0, "total_p50_ns": 7554.0, "total_p75_ns": 7834.0, "total_p95_ns": 8027.599999999999, "total_p99_ns": 8296.52, "total_ci_low_ns": 7535.4089041095895, "total_ci_high_ns": 7669.81095890411, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "BinaryCodable", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "4.0.0", "avg_time_ser_ns": 43777.7125, "avg_time_deser_ns": 33215.725, "avg_time_total_ns": 76993.4375, "median_size_bytes": 337.0, "avg_ops_per_sec": 12988.119929052395, "min_ops_per_sec": 12107.27041588474, "max_ops_per_sec": 13870.58741937721, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 43777.7125, "ser_median_ns": 43648.5, "ser_std_ns": 1359.1142703399785, "ser_mad_ns": 847.0, "ser_cv": 0.031045803737232237, "ser_min_ns": 41155.0, "ser_max_ns": 47225.0, "ser_p5_ns": 41799.2, "ser_p25_ns": 42888.5, "ser_p50_ns": 43648.5, "ser_p75_ns": 44566.5, "ser_p95_ns": 46709.5, "ser_p99_ns": 47116.77, "ser_ci_low_ns": 43473.6246875, "ser_ci_high_ns": 44077.2834375, "deser_mean_ns": 33215.725, "deser_median_ns": 33103.0, "deser_std_ns": 941.9813883914848, "deser_mad_ns": 621.0, "deser_cv": 0.0283595010613643, "deser_min_ns": 30940.0, "deser_max_ns": 35888.0, "deser_p5_ns": 31861.6, "deser_p25_ns": 32649.25, "deser_p50_ns": 33103.0, "deser_p75_ns": 33800.0, "deser_p95_ns": 34996.3, "deser_p99_ns": 35357.119999999995, "deser_ci_low_ns": 33014.0778125, "deser_ci_high_ns": 33434.4834375, "total_mean_ns": 76993.4375, "total_median_ns": 76847.0, "total_std_ns": 2105.338373499704, "total_mad_ns": 1197.0, "total_cv": 0.02734438728625026, "total_min_ns": 72095.0, "total_max_ns": 82595.0, "total_p5_ns": 73723.2, "total_p25_ns": 75691.75, "total_p50_ns": 76847.0, "total_p75_ns": 78075.75, "total_p95_ns": 80665.1, "total_p99_ns": 82448.85, "total_ci_low_ns": 76545.284375, "total_ci_high_ns": 77452.484375, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 44.92745226863602}, {"serializer": "Yams", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "5.4.0", "avg_time_ser_ns": 227762.1935483871, "avg_time_deser_ns": 174885.30107526883, "avg_time_total_ns": 402647.4946236559, "median_size_bytes": 429.0, "avg_ops_per_sec": 2483.5619576738554, "min_ops_per_sec": 2395.2784271643736, "max_ops_per_sec": 2583.1649970810236, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 227762.1935483871, "ser_median_ns": 227900.0, "ser_std_ns": 4634.597581747582, "ser_mad_ns": 3574.0, "ser_cv": 0.020348405982325516, "ser_min_ns": 218329.0, "ser_max_ns": 237592.0, "ser_p5_ns": 220198.6, "ser_p25_ns": 224039.0, "ser_p50_ns": 227900.0, "ser_p75_ns": 231025.0, "ser_p95_ns": 235704.19999999998, "ser_p99_ns": 236993.08, "ser_ci_low_ns": 226847.80322580645, "ser_ci_high_ns": 228763.02930107526, "deser_mean_ns": 174885.30107526883, "deser_median_ns": 174887.0, "deser_std_ns": 3423.147660906318, "deser_mad_ns": 2367.0, "deser_cv": 0.019573672800740585, "deser_min_ns": 167319.0, "deser_max_ns": 184084.0, "deser_p5_ns": 170250.4, "deser_p25_ns": 172305.0, "deser_p50_ns": 174887.0, "deser_p75_ns": 176973.0, "deser_p95_ns": 181318.8, "deser_p99_ns": 183750.96, "deser_ci_low_ns": 174182.04784946237, "deser_ci_high_ns": 175553.25887096775, "total_mean_ns": 402647.4946236559, "total_median_ns": 402546.0, "total_std_ns": 7019.684542682465, "total_mad_ns": 5560.0, "total_cv": 0.017433821485077362, "total_min_ns": 387122.0, "total_max_ns": 417488.0, "total_p5_ns": 392653.4, "total_p25_ns": 396986.0, "total_p50_ns": 402546.0, "total_p75_ns": 408105.0, "total_p95_ns": 413662.6, "total_p99_ns": 416105.24, "total_ci_low_ns": 401182.30860215053, "total_ci_high_ns": 404000.30456989247, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 74.73997258552967}, {"serializer": "SwiftCbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "0.0.4", "avg_time_ser_ns": 51260.43529411765, "avg_time_deser_ns": 35791.25882352941, "avg_time_total_ns": 87051.69411764706, "median_size_bytes": 332.0, "avg_ops_per_sec": 11487.427213633982, "min_ops_per_sec": 10730.30452604245, "max_ops_per_sec": 12159.08952737619, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 51260.43529411765, "ser_median_ns": 51236.0, "ser_std_ns": 1426.6611491359051, "ser_mad_ns": 969.0, "ser_cv": 0.027831623764997964, "ser_min_ns": 48259.0, "ser_max_ns": 55257.0, "ser_p5_ns": 48970.0, "ser_p25_ns": 50336.0, "ser_p50_ns": 51236.0, "ser_p75_ns": 52205.0, "ser_p95_ns": 53776.6, "ser_p99_ns": 55197.36, "ser_ci_low_ns": 50974.76823529412, "ser_ci_high_ns": 51560.65823529412, "deser_mean_ns": 35791.25882352941, "deser_median_ns": 35752.0, "deser_std_ns": 942.834040248325, "deser_mad_ns": 564.0, "deser_cv": 0.026342578362415676, "deser_min_ns": 33604.0, "deser_max_ns": 38405.0, "deser_p5_ns": 34531.8, "deser_p25_ns": 35045.0, "deser_p50_ns": 35752.0, "deser_p75_ns": 36251.0, "deser_p95_ns": 37370.8, "deser_p99_ns": 38310.08, "deser_ci_low_ns": 35593.79882352941, "deser_ci_high_ns": 35990.8044117647, "total_mean_ns": 87051.69411764706, "total_median_ns": 86914.0, "total_std_ns": 2177.445560106358, "total_mad_ns": 1518.0, "total_cv": 0.025013247383372263, "total_min_ns": 82243.0, "total_max_ns": 93194.0, "total_p5_ns": 83816.6, "total_p25_ns": 85400.0, "total_p50_ns": 86914.0, "total_p75_ns": 88463.0, "total_p95_ns": 90684.2, "total_p99_ns": 92403.56, "total_ci_low_ns": 86605.29823529412, "total_ci_high_ns": 87513.92588235294, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 49.087081357206955}, {"serializer": "XMLCoder", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "0.18.2", "avg_time_ser_ns": 180261.587628866, "avg_time_deser_ns": 219841.65979381444, "avg_time_total_ns": 400103.24742268043, "median_size_bytes": 729.0, "avg_ops_per_sec": 2499.354870128239, "min_ops_per_sec": 2351.6076765880994, "max_ops_per_sec": 2653.0265727141523, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 180261.587628866, "ser_median_ns": 180147.0, "ser_std_ns": 4097.401129457389, "ser_mad_ns": 2759.0, "ser_cv": 0.022730306458264304, "ser_min_ns": 171720.0, "ser_max_ns": 190348.0, "ser_p5_ns": 175047.6, "ser_p25_ns": 177388.0, "ser_p50_ns": 180147.0, "ser_p75_ns": 182745.0, "ser_p95_ns": 188091.6, "ser_p99_ns": 190147.36, "ser_ci_low_ns": 179481.63298969073, "ser_ci_high_ns": 181081.94278350516, "deser_mean_ns": 219841.65979381444, "deser_median_ns": 218908.0, "deser_std_ns": 6828.2331427539975, "deser_mad_ns": 3755.0, "deser_cv": 0.03105977797455712, "deser_min_ns": 205208.0, "deser_max_ns": 234893.0, "deser_p5_ns": 208956.0, "deser_p25_ns": 215778.0, "deser_p50_ns": 218908.0, "deser_p75_ns": 223777.0, "deser_p95_ns": 232282.99999999997, "deser_p99_ns": 234631.88, "deser_ci_low_ns": 218489.31417525775, "deser_ci_high_ns": 221170.54639175258, "total_mean_ns": 400103.24742268043, "total_median_ns": 399229.0, "total_std_ns": 9774.440929271146, "total_mad_ns": 5817.0, "total_cv": 0.024429796539354627, "total_min_ns": 376928.0, "total_max_ns": 425241.0, "total_p5_ns": 385327.8, "total_p25_ns": 394047.0, "total_p50_ns": 399229.0, "total_p75_ns": 405718.0, "total_p95_ns": 418383.6, "total_p99_ns": 422027.87999999995, "total_ci_low_ns": 398239.47783505154, "total_ci_high_ns": 402027.668814433, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 52.864927947402485}, {"serializer": "FlatBuffers", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "24.3.25", "avg_time_ser_ns": 35093.625, "avg_time_deser_ns": 5086.170454545455, "avg_time_total_ns": 40179.795454545456, "median_size_bytes": 440.0, "avg_ops_per_sec": 24888.130680786533, "min_ops_per_sec": 22846.69865204478, "max_ops_per_sec": 26656.004264960684, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 35093.625, "ser_median_ns": 34740.5, "ser_std_ns": 1158.698906795547, "ser_mad_ns": 616.5, "ser_cv": 0.03301736160899727, "ser_min_ns": 33237.0, "ser_max_ns": 38359.0, "ser_p5_ns": 33864.7, "ser_p25_ns": 34227.0, "ser_p50_ns": 34740.5, "ser_p75_ns": 35646.25, "ser_p95_ns": 37422.65, "ser_p99_ns": 38153.68, "ser_ci_low_ns": 34859.9, "ser_ci_high_ns": 35342.78920454545, "deser_mean_ns": 5086.170454545455, "deser_median_ns": 5071.5, "deser_std_ns": 284.9459404906304, "deser_mad_ns": 202.0, "deser_cv": 0.056023671058050624, "deser_min_ns": 4278.0, "deser_max_ns": 5955.0, "deser_p5_ns": 4694.15, "deser_p25_ns": 4882.75, "deser_p50_ns": 5071.5, "deser_p75_ns": 5284.5, "deser_p95_ns": 5539.15, "deser_p99_ns": 5740.979999999999, "deser_ci_low_ns": 5024.678124999999, "deser_ci_high_ns": 5144.482954545455, "total_mean_ns": 40179.795454545456, "total_median_ns": 39963.0, "total_std_ns": 1354.4367973958847, "total_mad_ns": 862.5, "total_cv": 0.03370940001245477, "total_min_ns": 37515.0, "total_max_ns": 43770.0, "total_p5_ns": 38511.85, "total_p25_ns": 39167.0, "total_p50_ns": 39963.0, "total_p75_ns": 40873.25, "total_p95_ns": 42921.6, "total_p99_ns": 43455.93, "total_ci_low_ns": 39899.25852272727, "total_ci_high_ns": 40465.29801136364, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.5730990311073}, {"serializer": "SwiftAvroCore", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "2.3.0", "avg_time_ser_ns": 118190.23863636363, "avg_time_deser_ns": 30954.420454545456, "avg_time_total_ns": 149144.6590909091, "median_size_bytes": 114.0, "avg_ops_per_sec": 6704.899834129921, "min_ops_per_sec": 6195.211101818294, "max_ops_per_sec": 7138.47208143569, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 118190.23863636363, "ser_median_ns": 117875.5, "ser_std_ns": 3644.5449584128296, "ser_mad_ns": 2555.5, "ser_cv": 0.03083626025687295, "ser_min_ns": 111626.0, "ser_max_ns": 129128.0, "ser_p5_ns": 112883.85, "ser_p25_ns": 115767.0, "ser_p50_ns": 117875.5, "ser_p75_ns": 120695.0, "ser_p95_ns": 123920.3, "ser_p99_ns": 127793.42, "ser_ci_low_ns": 117427.21193181818, "ser_ci_high_ns": 118909.740625, "deser_mean_ns": 30954.420454545456, "deser_median_ns": 31003.0, "deser_std_ns": 1345.9282292148762, "deser_mad_ns": 836.5, "deser_cv": 0.04348097006665926, "deser_min_ns": 28399.0, "deser_max_ns": 34400.0, "deser_p5_ns": 29249.05, "deser_p25_ns": 29754.75, "deser_p50_ns": 31003.0, "deser_p75_ns": 31651.5, "deser_p95_ns": 33897.7, "deser_p99_ns": 34312.13, "deser_ci_low_ns": 30685.329829545455, "deser_ci_high_ns": 31240.883806818183, "total_mean_ns": 149144.6590909091, "total_median_ns": 148720.5, "total_std_ns": 4469.679038816025, "total_mad_ns": 2684.0, "total_cv": 0.029968750245971554, "total_min_ns": 140086.0, "total_max_ns": 161415.0, "total_p5_ns": 143153.25, "total_p25_ns": 146072.75, "total_p50_ns": 148720.5, "total_p75_ns": 151417.0, "total_p95_ns": 155657.85, "total_p99_ns": 161165.31, "total_ci_low_ns": 148205.82698863637, "total_ci_high_ns": 150107.5965909091, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 37.79356393822433}, {"serializer": "CapnProto", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "capnproto-1.0.2", "avg_time_ser_ns": 41320.85897435898, "avg_time_deser_ns": 11589.628205128205, "avg_time_total_ns": 52910.48717948718, "median_size_bytes": 376.0, "avg_ops_per_sec": 18899.844875888597, "min_ops_per_sec": 17398.56635813209, "max_ops_per_sec": 20207.735521157498, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 41320.85897435898, "ser_median_ns": 41006.0, "ser_std_ns": 1599.5762159905264, "ser_mad_ns": 921.0, "ser_cv": 0.038711107554252895, "ser_min_ns": 38665.0, "ser_max_ns": 45634.0, "ser_p5_ns": 39214.9, "ser_p25_ns": 40163.5, "ser_p50_ns": 41006.0, "ser_p75_ns": 42261.75, "ser_p95_ns": 44590.9, "ser_p99_ns": 45471.53, "ser_ci_low_ns": 40955.8483974359, "ser_ci_high_ns": 41706.09262820513, "deser_mean_ns": 11589.628205128205, "deser_median_ns": 11620.5, "deser_std_ns": 343.8264478005236, "deser_mad_ns": 229.0, "deser_cv": 0.029666736647202065, "deser_min_ns": 10698.0, "deser_max_ns": 12368.0, "deser_p5_ns": 10959.25, "deser_p25_ns": 11360.75, "deser_p50_ns": 11620.5, "deser_p75_ns": 11823.0, "deser_p95_ns": 12091.9, "deser_p99_ns": 12220.93, "deser_ci_low_ns": 11514.753525641025, "deser_ci_high_ns": 11666.74967948718, "total_mean_ns": 52910.48717948718, "total_median_ns": 52547.5, "total_std_ns": 1825.5331385908173, "total_mad_ns": 1073.5, "total_cv": 0.03450229313516048, "total_min_ns": 49486.0, "total_max_ns": 57476.0, "total_p5_ns": 50322.15, "total_p25_ns": 51640.0, "total_p50_ns": 52547.5, "total_p75_ns": 53967.75, "total_p95_ns": 56493.05, "total_p99_ns": 57409.01, "total_ci_low_ns": 52501.07211538461, "total_ci_high_ns": 53322.32307692308, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 19.586333107258483}, {"serializer": "SwiftMsgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "1.2.1", "avg_time_ser_ns": 70339.17045454546, "avg_time_deser_ns": 33483.78409090909, "avg_time_total_ns": 103822.95454545454, "median_size_bytes": 329.0, "avg_ops_per_sec": 9631.781376075092, "min_ops_per_sec": 9054.116454045832, "max_ops_per_sec": 10290.183165260341, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 70339.17045454546, "ser_median_ns": 69894.0, "ser_std_ns": 1934.5100613612321, "ser_mad_ns": 1007.5, "ser_cv": 0.02750259988652198, "ser_min_ns": 65308.0, "ser_max_ns": 75764.0, "ser_p5_ns": 68049.15, "ser_p25_ns": 69041.5, "ser_p50_ns": 69894.0, "ser_p75_ns": 71288.75, "ser_p95_ns": 73973.15, "ser_p99_ns": 74933.15, "ser_ci_low_ns": 69938.20994318182, "ser_ci_high_ns": 70739.22727272726, "deser_mean_ns": 33483.78409090909, "deser_median_ns": 33356.5, "deser_std_ns": 931.5720423503591, "deser_mad_ns": 576.5, "deser_cv": 0.027821587901209848, "deser_min_ns": 31512.0, "deser_max_ns": 35818.0, "deser_p5_ns": 31879.2, "deser_p25_ns": 32919.75, "deser_p50_ns": 33356.5, "deser_p75_ns": 34072.25, "deser_p95_ns": 35245.35, "deser_p99_ns": 35785.81, "deser_ci_low_ns": 33294.03352272727, "deser_ci_high_ns": 33675.68579545455, "total_mean_ns": 103822.95454545454, "total_median_ns": 103318.5, "total_std_ns": 2581.4629457807196, "total_mad_ns": 1218.5, "total_cv": 0.02486408672419868, "total_min_ns": 97180.0, "total_max_ns": 110447.0, "total_p5_ns": 100631.5, "total_p25_ns": 102181.5, "total_p50_ns": 103318.5, "total_p75_ns": 104794.0, "total_p95_ns": 109081.7, "total_p99_ns": 110420.9, "total_ci_low_ns": 103305.22840909091, "total_ci_high_ns": 104380.74573863635, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 39.688827381981795}, {"serializer": "BinaryCodable", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "4.0.0", "avg_time_ser_ns": 68703.27058823529, "avg_time_deser_ns": 34214.2705882353, "avg_time_total_ns": 102917.5411764706, "median_size_bytes": 337.0, "avg_ops_per_sec": 9716.516626503158, "min_ops_per_sec": 9233.610341643584, "max_ops_per_sec": 10279.182599399695, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 68703.27058823529, "ser_median_ns": 68287.0, "ser_std_ns": 1643.469438400965, "ser_mad_ns": 914.0, "ser_cv": 0.023921269312648877, "ser_min_ns": 65137.0, "ser_max_ns": 73132.0, "ser_p5_ns": 66762.2, "ser_p25_ns": 67577.0, "ser_p50_ns": 68287.0, "ser_p75_ns": 69479.0, "ser_p95_ns": 72194.8, "ser_p99_ns": 72794.31999999999, "ser_ci_low_ns": 68356.81647058824, "ser_ci_high_ns": 69059.84617647059, "deser_mean_ns": 34214.2705882353, "deser_median_ns": 34253.0, "deser_std_ns": 795.1001791962968, "deser_mad_ns": 477.0, "deser_cv": 0.023238846409009667, "deser_min_ns": 32147.0, "deser_max_ns": 36266.0, "deser_p5_ns": 32662.0, "deser_p25_ns": 33764.0, "deser_p50_ns": 34253.0, "deser_p75_ns": 34654.0, "deser_p95_ns": 35475.6, "deser_p99_ns": 36083.72, "deser_ci_low_ns": 34043.93970588235, "deser_ci_high_ns": 34380.013235294115, "total_mean_ns": 102917.5411764706, "total_median_ns": 102703.0, "total_std_ns": 2126.3408517749854, "total_mad_ns": 1236.0, "total_cv": 0.020660626239884534, "total_min_ns": 97284.0, "total_max_ns": 108300.0, "total_p5_ns": 100124.8, "total_p25_ns": 101548.0, "total_p50_ns": 102703.0, "total_p75_ns": 103982.0, "total_p95_ns": 106668.4, "total_p99_ns": 108228.6, "total_ci_low_ns": 102483.21235294118, "total_ci_high_ns": 103358.37352941177, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 46.17786892039313}, {"serializer": "IkigaJSON", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "2.5.3", "avg_time_ser_ns": 49123.38961038961, "avg_time_deser_ns": 33135.66233766234, "avg_time_total_ns": 82259.05194805194, "median_size_bytes": 448.0, "avg_ops_per_sec": 12156.716814965455, "min_ops_per_sec": 11382.780130219006, "max_ops_per_sec": 12864.549161874622, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 49123.38961038961, "ser_median_ns": 49145.0, "ser_std_ns": 1072.2925287714434, "ser_mad_ns": 667.0, "ser_cv": 0.02182855330782494, "ser_min_ns": 47042.0, "ser_max_ns": 52460.0, "ser_p5_ns": 47863.8, "ser_p25_ns": 48310.0, "ser_p50_ns": 49145.0, "ser_p75_ns": 49685.0, "ser_p95_ns": 51172.4, "ser_p99_ns": 51965.24, "ser_ci_low_ns": 48885.98798701299, "ser_ci_high_ns": 49364.806818181816, "deser_mean_ns": 33135.66233766234, "deser_median_ns": 33081.0, "deser_std_ns": 1120.3095156249126, "deser_mad_ns": 578.0, "deser_cv": 0.033809781866094075, "deser_min_ns": 30397.0, "deser_max_ns": 36592.0, "deser_p5_ns": 31337.0, "deser_p25_ns": 32520.0, "deser_p50_ns": 33081.0, "deser_p75_ns": 33670.0, "deser_p95_ns": 34977.200000000004, "deser_p99_ns": 36547.92, "deser_ci_low_ns": 32894.4237012987, "deser_ci_high_ns": 33392.90487012987, "total_mean_ns": 82259.05194805194, "total_median_ns": 82282.0, "total_std_ns": 1851.1211744586171, "total_mad_ns": 1124.0, "total_cv": 0.022503555908079675, "total_min_ns": 77733.0, "total_max_ns": 87852.0, "total_p5_ns": 79532.0, "total_p25_ns": 81054.0, "total_p50_ns": 82282.0, "total_p75_ns": 83257.0, "total_p95_ns": 85500.4, "total_p99_ns": 86989.4, "total_ci_low_ns": 81822.25162337662, "total_ci_high_ns": 82661.49350649351, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 38.43190832936013}, {"serializer": "SwiftBSON", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "3.1.0", "avg_time_ser_ns": 80511.36781609195, "avg_time_deser_ns": 62485.7816091954, "avg_time_total_ns": 142997.14942528735, "median_size_bytes": 525.0, "avg_ops_per_sec": 6993.146395008919, "min_ops_per_sec": 6622.823574602796, "max_ops_per_sec": 7260.0024684008395, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 80511.36781609195, "ser_median_ns": 79841.0, "ser_std_ns": 2318.1214633733393, "ser_mad_ns": 1177.0, "ser_cv": 0.0287924739853943, "ser_min_ns": 77437.0, "ser_max_ns": 86488.0, "ser_p5_ns": 78000.9, "ser_p25_ns": 78810.5, "ser_p50_ns": 79841.0, "ser_p75_ns": 81514.5, "ser_p95_ns": 85462.5, "ser_p99_ns": 86384.8, "ser_ci_low_ns": 80017.48563218392, "ser_ci_high_ns": 80991.47902298851, "deser_mean_ns": 62485.7816091954, "deser_median_ns": 62296.0, "deser_std_ns": 1493.0246140846093, "deser_mad_ns": 894.0, "deser_cv": 0.023893829534251933, "deser_min_ns": 59616.0, "deser_max_ns": 66543.0, "deser_p5_ns": 60440.6, "deser_p25_ns": 61461.0, "deser_p50_ns": 62296.0, "deser_p75_ns": 63393.5, "deser_p95_ns": 65334.5, "deser_p99_ns": 66438.94, "deser_ci_low_ns": 62187.94482758621, "deser_ci_high_ns": 62789.83735632184, "total_mean_ns": 142997.14942528735, "total_median_ns": 142067.0, "total_std_ns": 3254.6553474831753, "total_mad_ns": 1990.0, "total_cv": 0.02276028131024847, "total_min_ns": 137741.0, "total_max_ns": 150993.0, "total_p5_ns": 138468.9, "total_p25_ns": 140749.0, "total_p50_ns": 142067.0, "total_p75_ns": 145315.0, "total_p95_ns": 149340.9, "total_p99_ns": 150505.38, "total_ci_low_ns": 142341.87413793104, "total_ci_high_ns": 143686.04022988505, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 48.24782613800479}, {"serializer": "XMLCoder", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "0.18.2", "avg_time_ser_ns": 229923.6551724138, "avg_time_deser_ns": 220098.2988505747, "avg_time_total_ns": 450021.9540229885, "median_size_bytes": 729.0, "avg_ops_per_sec": 2222.1138125828343, "min_ops_per_sec": 2128.3343017254406, "max_ops_per_sec": 2330.442807437841, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 229923.6551724138, "ser_median_ns": 229007.0, "ser_std_ns": 4042.659034071241, "ser_mad_ns": 2631.0, "ser_cv": 0.017582614677205594, "ser_min_ns": 220977.0, "ser_max_ns": 240134.0, "ser_p5_ns": 225409.1, "ser_p25_ns": 227096.5, "ser_p50_ns": 229007.0, "ser_p75_ns": 232590.0, "ser_p95_ns": 237480.0, "ser_p99_ns": 239879.44, "ser_ci_low_ns": 229104.6471264368, "ser_ci_high_ns": 230768.7436781609, "deser_mean_ns": 220098.2988505747, "deser_median_ns": 218784.0, "deser_std_ns": 5135.59399457275, "deser_mad_ns": 2747.0, "deser_cv": 0.02333318349752134, "deser_min_ns": 208126.0, "deser_max_ns": 232363.0, "deser_p5_ns": 212975.2, "deser_p25_ns": 216964.0, "deser_p50_ns": 218784.0, "deser_p75_ns": 222718.5, "deser_p95_ns": 229903.0, "deser_p99_ns": 231915.8, "deser_ci_low_ns": 219019.88103448277, "deser_ci_high_ns": 221169.06752873564, "total_mean_ns": 450021.9540229885, "total_median_ns": 448577.0, "total_std_ns": 7674.496427549249, "total_mad_ns": 5041.0, "total_cv": 0.017053604516274804, "total_min_ns": 429103.0, "total_max_ns": 469851.0, "total_p5_ns": 438773.0, "total_p25_ns": 445369.5, "total_p50_ns": 448577.0, "total_p75_ns": 455065.0, "total_p95_ns": 462840.0, "total_p99_ns": 468640.12, "total_ci_low_ns": 448411.2448275862, "total_ci_high_ns": 451700.3163793104, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 76.1617151613235}, {"serializer": "Foundation.PropertyListEncoder", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 64583.8202247191, "avg_time_deser_ns": 54501.93258426966, "avg_time_total_ns": 119085.75280898876, "median_size_bytes": 399.0, "avg_ops_per_sec": 8397.310143422283, "min_ops_per_sec": 7877.799573023263, "max_ops_per_sec": 9031.955056991636, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 64583.8202247191, "ser_median_ns": 64448.0, "ser_std_ns": 2102.268382884836, "ser_mad_ns": 1533.0, "ser_cv": 0.03255100697930229, "ser_min_ns": 60457.0, "ser_max_ns": 70001.0, "ser_p5_ns": 61294.6, "ser_p25_ns": 63003.0, "ser_p50_ns": 64448.0, "ser_p75_ns": 66169.0, "ser_p95_ns": 67868.4, "ser_p99_ns": 69256.52, "ser_ci_low_ns": 64169.04803370786, "ser_ci_high_ns": 65004.70533707865, "deser_mean_ns": 54501.93258426966, "deser_median_ns": 54279.0, "deser_std_ns": 1990.8876092527676, "deser_mad_ns": 1065.0, "deser_cv": 0.03652875255706762, "deser_min_ns": 50039.0, "deser_max_ns": 59417.0, "deser_p5_ns": 50964.4, "deser_p25_ns": 53329.0, "deser_p50_ns": 54279.0, "deser_p75_ns": 55674.0, "deser_p95_ns": 58608.6, "deser_p99_ns": 59416.12, "deser_ci_low_ns": 54109.15730337079, "deser_ci_high_ns": 54896.019943820225, "total_mean_ns": 119085.75280898876, "total_median_ns": 119035.0, "total_std_ns": 3552.4618649379768, "total_mad_ns": 2548.0, "total_cv": 0.029831124052564512, "total_min_ns": 110718.0, "total_max_ns": 126939.0, "total_p5_ns": 112864.4, "total_p25_ns": 117074.0, "total_p50_ns": 119035.0, "total_p75_ns": 121677.0, "total_p95_ns": 125147.59999999999, "total_p99_ns": 126056.36, "total_ci_low_ns": 118388.36432584269, "total_ci_high_ns": 119808.72949438203, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 35.54752435316029}, {"serializer": "SwiftCbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "0.0.4", "avg_time_ser_ns": 76164.49367088608, "avg_time_deser_ns": 37573.07594936709, "avg_time_total_ns": 113737.56962025317, "median_size_bytes": 332.0, "avg_ops_per_sec": 8792.16958247656, "min_ops_per_sec": 8287.063893262617, "max_ops_per_sec": 9200.393776853649, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 76164.49367088608, "ser_median_ns": 75979.0, "ser_std_ns": 1764.6698091189294, "ser_mad_ns": 1244.0, "ser_cv": 0.02316919241588125, "ser_min_ns": 72864.0, "ser_max_ns": 81352.0, "ser_p5_ns": 73722.5, "ser_p25_ns": 74987.5, "ser_p50_ns": 75979.0, "ser_p75_ns": 77508.5, "ser_p95_ns": 79335.4, "ser_p99_ns": 80401.18, "ser_ci_low_ns": 75777.41044303797, "ser_ci_high_ns": 76567.05696202531, "deser_mean_ns": 37573.07594936709, "deser_median_ns": 37431.0, "deser_std_ns": 808.3845361338285, "deser_mad_ns": 526.0, "deser_cv": 0.02151499486555733, "deser_min_ns": 35699.0, "deser_max_ns": 40537.0, "deser_p5_ns": 36500.8, "deser_p25_ns": 37102.0, "deser_p50_ns": 37431.0, "deser_p75_ns": 38040.0, "deser_p95_ns": 38644.1, "deser_p99_ns": 39698.5, "deser_ci_low_ns": 37389.17753164557, "deser_ci_high_ns": 37754.06518987342, "total_mean_ns": 113737.56962025317, "total_median_ns": 113807.0, "total_std_ns": 2302.115858896591, "total_mad_ns": 1463.0, "total_cv": 0.020240593029927506, "total_min_ns": 108691.0, "total_max_ns": 120670.0, "total_p5_ns": 110314.8, "total_p25_ns": 112177.5, "total_p50_ns": 113807.0, "total_p75_ns": 115085.0, "total_p95_ns": 117312.2, "total_p99_ns": 119203.59999999999, "total_ci_low_ns": 113220.34651898735, "total_ci_high_ns": 114244.36234177214, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 49.76187148324048}, {"serializer": "Yams", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "5.4.0", "avg_time_ser_ns": 258685.32967032967, "avg_time_deser_ns": 177603.96703296702, "avg_time_total_ns": 436289.2967032967, "median_size_bytes": 429.0, "avg_ops_per_sec": 2292.057145468001, "min_ops_per_sec": 2159.6359717606, "max_ops_per_sec": 2404.915647583661, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 258685.32967032967, "ser_median_ns": 257351.0, "ser_std_ns": 6332.605470552026, "ser_mad_ns": 3362.0, "ser_cv": 0.024479955931874225, "ser_min_ns": 242754.0, "ser_max_ns": 274054.0, "ser_p5_ns": 250590.5, "ser_p25_ns": 254666.5, "ser_p50_ns": 257351.0, "ser_p75_ns": 262048.0, "ser_p95_ns": 270898.5, "ser_p99_ns": 273970.3, "ser_ci_low_ns": 257370.6467032967, "ser_ci_high_ns": 259979.01016483514, "deser_mean_ns": 177603.96703296702, "deser_median_ns": 176493.0, "deser_std_ns": 5021.907885456703, "deser_mad_ns": 2516.0, "deser_cv": 0.028275876768701524, "deser_min_ns": 170172.0, "deser_max_ns": 191260.0, "deser_p5_ns": 171019.0, "deser_p25_ns": 174109.0, "deser_p50_ns": 176493.0, "deser_p75_ns": 180847.5, "deser_p95_ns": 187689.5, "deser_p99_ns": 189812.8, "deser_ci_low_ns": 176607.10164835167, "deser_ci_high_ns": 178594.99423076923, "total_mean_ns": 436289.2967032967, "total_median_ns": 433418.0, "total_std_ns": 9711.679243163879, "total_mad_ns": 5330.0, "total_cv": 0.022259723803787036, "total_min_ns": 415815.0, "total_max_ns": 463041.0, "total_p5_ns": 424549.5, "total_p25_ns": 429743.0, "total_p50_ns": 433418.0, "total_p75_ns": 442385.0, "total_p95_ns": 455776.0, "total_p99_ns": 460167.3, "total_ci_low_ns": 434407.195054945, "total_ci_high_ns": 438320.3563186813, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 57.873075026979315}, {"serializer": "Foundation.JSONEncoder", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 53523.81081081081, "avg_time_deser_ns": 30406.135135135137, "avg_time_total_ns": 83929.94594594595, "median_size_bytes": 448.0, "avg_ops_per_sec": 11914.698487284119, "min_ops_per_sec": 10995.17311900076, "max_ops_per_sec": 12571.658453183143, "runs": 74, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 25, "ser_mean_ns": 53523.81081081081, "ser_median_ns": 53208.5, "ser_std_ns": 1564.217189450345, "ser_mad_ns": 899.0, "ser_cv": 0.029224697676690878, "ser_min_ns": 50652.0, "ser_max_ns": 59372.0, "ser_p5_ns": 51635.6, "ser_p25_ns": 52403.75, "ser_p50_ns": 53208.5, "ser_p75_ns": 54268.0, "ser_p95_ns": 56389.149999999994, "ser_p99_ns": 58004.70999999999, "ser_ci_low_ns": 53177.18716216216, "ser_ci_high_ns": 53877.145270270266, "deser_mean_ns": 30406.135135135137, "deser_median_ns": 30481.5, "deser_std_ns": 612.7666056462175, "deser_mad_ns": 373.5, "deser_cv": 0.02015272914242062, "deser_min_ns": 28892.0, "deser_max_ns": 31866.0, "deser_p5_ns": 29374.65, "deser_p25_ns": 30097.25, "deser_p50_ns": 30481.5, "deser_p75_ns": 30842.5, "deser_p95_ns": 31327.7, "deser_p99_ns": 31683.5, "deser_ci_low_ns": 30266.629391891893, "deser_ci_high_ns": 30541.67060810811, "total_mean_ns": 83929.94594594595, "total_median_ns": 83793.5, "total_std_ns": 1998.9182752205595, "total_mad_ns": 1397.5, "total_cv": 0.02381650854997498, "total_min_ns": 79544.0, "total_max_ns": 90949.0, "total_p5_ns": 81157.85, "total_p25_ns": 82378.5, "total_p50_ns": 83793.5, "total_p75_ns": 85127.25, "total_p95_ns": 87421.4, "total_p99_ns": 89078.01, "total_ci_low_ns": 83468.99155405405, "total_ci_high_ns": 84385.66486486486, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 37.56672391128822}, {"serializer": "SwiftProtobuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "1.38.1", "avg_time_ser_ns": 17306.234567901236, "avg_time_deser_ns": 5620.111111111111, "avg_time_total_ns": 22926.345679012345, "median_size_bytes": 155.0, "avg_ops_per_sec": 43617.94129778992, "min_ops_per_sec": 38095.23809523809, "max_ops_per_sec": 46694.06051550243, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 17306.234567901236, "ser_median_ns": 17088.0, "ser_std_ns": 1071.227488346954, "ser_mad_ns": 705.0, "ser_cv": 0.06189835715816627, "ser_min_ns": 15975.0, "ser_max_ns": 20572.0, "ser_p5_ns": 16168.0, "ser_p25_ns": 16395.0, "ser_p50_ns": 17088.0, "ser_p75_ns": 17812.0, "ser_p95_ns": 19306.0, "ser_p99_ns": 20170.4, "ser_ci_low_ns": 17082.09351851852, "ser_ci_high_ns": 17550.124382716047, "deser_mean_ns": 5620.111111111111, "deser_median_ns": 5585.0, "deser_std_ns": 175.50733602901047, "deser_mad_ns": 106.0, "deser_cv": 0.03122844594336004, "deser_min_ns": 5207.0, "deser_max_ns": 6168.0, "deser_p5_ns": 5411.0, "deser_p25_ns": 5496.0, "deser_p50_ns": 5585.0, "deser_p75_ns": 5718.0, "deser_p95_ns": 5942.0, "deser_p99_ns": 6088.0, "deser_ci_low_ns": 5583.224382716049, "deser_ci_high_ns": 5659.163888888888, "total_mean_ns": 22926.345679012345, "total_median_ns": 22731.0, "total_std_ns": 1160.9218121873434, "total_mad_ns": 782.0, "total_cv": 0.05063701945531144, "total_min_ns": 21416.0, "total_max_ns": 26250.0, "total_p5_ns": 21691.0, "total_p25_ns": 21929.0, "total_p50_ns": 22731.0, "total_p75_ns": 23443.0, "total_p95_ns": 25101.0, "total_p99_ns": 26059.600000000002, "total_ci_low_ns": 22692.40339506173, "total_ci_high_ns": 23194.199074074073, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "TOML", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "2.0.0", "avg_time_ser_ns": 184538.9012345679, "avg_time_deser_ns": 42529.641975308645, "avg_time_total_ns": 227068.54320987655, "median_size_bytes": 508.0, "avg_ops_per_sec": 4403.956558067635, "min_ops_per_sec": 4189.657411713444, "max_ops_per_sec": 4598.990981378685, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 184538.9012345679, "ser_median_ns": 183779.0, "ser_std_ns": 3692.210481557553, "ser_mad_ns": 2193.0, "ser_cv": 0.020007762357186546, "ser_min_ns": 176969.0, "ser_max_ns": 193607.0, "ser_p5_ns": 178863.0, "ser_p25_ns": 182345.0, "ser_p50_ns": 183779.0, "ser_p75_ns": 186374.0, "ser_p95_ns": 191488.0, "ser_p99_ns": 193136.6, "ser_ci_low_ns": 183762.66851851853, "ser_ci_high_ns": 185335.3401234568, "deser_mean_ns": 42529.641975308645, "deser_median_ns": 42439.0, "deser_std_ns": 1265.4872115971973, "deser_mad_ns": 767.0, "deser_cv": 0.02975541652412449, "deser_min_ns": 39452.0, "deser_max_ns": 45990.0, "deser_p5_ns": 40507.0, "deser_p25_ns": 41889.0, "deser_p50_ns": 42439.0, "deser_p75_ns": 43240.0, "deser_p95_ns": 44625.0, "deser_p99_ns": 45465.200000000004, "deser_ci_low_ns": 42247.43456790123, "deser_ci_high_ns": 42796.86543209876, "total_mean_ns": 227068.54320987655, "total_median_ns": 226486.0, "total_std_ns": 4418.810119957019, "total_mad_ns": 2491.0, "total_cv": 0.019460247806640348, "total_min_ns": 217439.0, "total_max_ns": 238683.0, "total_p5_ns": 218366.0, "total_p25_ns": 224989.0, "total_p50_ns": 226486.0, "total_p75_ns": 229751.0, "total_p95_ns": 235186.0, "total_p99_ns": 236671.0, "total_ci_low_ns": 226107.61697530863, "total_ci_high_ns": 228018.96450617284, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 62.89340824140689}, {"serializer": "SwiftBSON", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "3.1.0", "avg_time_ser_ns": 2985786.4146341463, "avg_time_deser_ns": 4614347.390243903, "avg_time_total_ns": 7600133.804878049, "median_size_bytes": 53446.0, "avg_ops_per_sec": 131.57663084275737, "min_ops_per_sec": 128.67957640227604, "max_ops_per_sec": 134.0144483657072, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 2985786.4146341463, "ser_median_ns": 2980801.5, "ser_std_ns": 49514.38495333894, "ser_mad_ns": 31324.5, "ser_cv": 0.01658336467426322, "ser_min_ns": 2895974.0, "ser_max_ns": 3128987.0, "ser_p5_ns": 2919384.1, "ser_p25_ns": 2946889.25, "ser_p50_ns": 2980801.5, "ser_p75_ns": 3008385.25, "ser_p95_ns": 3080670.45, "ser_p99_ns": 3120622.13, "ser_ci_low_ns": 2975166.110060976, "ser_ci_high_ns": 2997055.955487805, "deser_mean_ns": 4614347.390243903, "deser_median_ns": 4620021.5, "deser_std_ns": 37635.870211956855, "deser_mad_ns": 21980.0, "deser_cv": 0.008156271522064037, "deser_min_ns": 4524140.0, "deser_max_ns": 4690180.0, "deser_p5_ns": 4548556.65, "deser_p25_ns": 4592500.0, "deser_p50_ns": 4620021.5, "deser_p75_ns": 4640596.75, "deser_p95_ns": 4666465.0, "deser_p99_ns": 4690057.69, "deser_ci_low_ns": 4606148.47652439, "deser_ci_high_ns": 4622166.641463415, "total_mean_ns": 7600133.804878049, "total_median_ns": 7588448.5, "total_std_ns": 64489.07663182699, "total_mad_ns": 38615.0, "total_cv": 0.008485255429376191, "total_min_ns": 7461882.0, "total_max_ns": 7771241.0, "total_p5_ns": 7504850.8, "total_p25_ns": 7560303.0, "total_p50_ns": 7588448.5, "total_p75_ns": 7639176.25, "total_p95_ns": 7706841.75, "total_p99_ns": 7744184.57, "total_ci_low_ns": 7587607.286890244, "total_ci_high_ns": 7614425.064024391, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 162.00092929440092}, {"serializer": "SwiftProtobuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "1.38.1", "avg_time_ser_ns": 168910.58139534883, "avg_time_deser_ns": 156002.91860465117, "avg_time_total_ns": 324913.5, "median_size_bytes": 16265.0, "avg_ops_per_sec": 3077.7422298550227, "min_ops_per_sec": 2896.9804772485636, "max_ops_per_sec": 3241.165393428861, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 168910.58139534883, "ser_median_ns": 167958.5, "ser_std_ns": 5308.236652965379, "ser_mad_ns": 3221.0, "ser_cv": 0.031426312129854216, "ser_min_ns": 157384.0, "ser_max_ns": 184542.0, "ser_p5_ns": 162402.0, "ser_p25_ns": 165287.75, "ser_p50_ns": 167958.5, "ser_p75_ns": 171856.25, "ser_p95_ns": 179626.5, "ser_p99_ns": 181159.85000000003, "ser_ci_low_ns": 167850.04622093023, "ser_ci_high_ns": 170065.55174418603, "deser_mean_ns": 156002.91860465117, "deser_median_ns": 155420.5, "deser_std_ns": 3731.8055343543865, "deser_mad_ns": 2461.5, "deser_cv": 0.023921382803174837, "deser_min_ns": 148102.0, "deser_max_ns": 166750.0, "deser_p5_ns": 151633.0, "deser_p25_ns": 152977.5, "deser_p50_ns": 155420.5, "deser_p75_ns": 157981.5, "deser_p95_ns": 163208.25, "deser_p99_ns": 165688.35, "deser_ci_low_ns": 155255.025872093, "deser_ci_high_ns": 156800.34127906975, "total_mean_ns": 324913.5, "total_median_ns": 323427.0, "total_std_ns": 7971.3412167663255, "total_mad_ns": 5773.5, "total_cv": 0.024533733491425642, "total_min_ns": 308531.0, "total_max_ns": 345187.0, "total_p5_ns": 314936.25, "total_p25_ns": 318900.25, "total_p50_ns": 323427.0, "total_p75_ns": 330192.5, "total_p95_ns": 339937.0, "total_p99_ns": 343668.9, "total_ci_low_ns": 323211.1337209302, "total_ci_high_ns": 326634.60145348834, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.064669868580538}, {"serializer": "SwiftAvroCore", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "2.3.0", "avg_time_ser_ns": 8006797.674698795, "avg_time_deser_ns": 1926747.3975903615, "avg_time_total_ns": 9933545.072289156, "median_size_bytes": 11967.0, "avg_ops_per_sec": 100.6689950790703, "min_ops_per_sec": 97.40133245022793, "max_ops_per_sec": 102.6619104087987, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 8006797.674698795, "ser_median_ns": 7990990.0, "ser_std_ns": 92333.8496904639, "ser_mad_ns": 56026.0, "ser_cv": 0.011531932420652478, "ser_min_ns": 7845648.0, "ser_max_ns": 8323029.0, "ser_p5_ns": 7896263.0, "ser_p25_ns": 7942107.5, "ser_p50_ns": 7990990.0, "ser_p75_ns": 8047945.0, "ser_p95_ns": 8158514.1, "ser_p99_ns": 8319963.02, "ser_ci_low_ns": 7986848.567771085, "ser_ci_high_ns": 8026904.374698795, "deser_mean_ns": 1926747.3975903615, "deser_median_ns": 1929393.0, "deser_std_ns": 29331.00458972439, "deser_mad_ns": 20451.0, "deser_cv": 0.015223066929482545, "deser_min_ns": 1875713.0, "deser_max_ns": 2000247.0, "deser_p5_ns": 1884030.0, "deser_p25_ns": 1903476.0, "deser_p50_ns": 1929393.0, "deser_p75_ns": 1944242.0, "deser_p95_ns": 1977569.5, "deser_p99_ns": 1999991.98, "deser_ci_low_ns": 1920630.604819277, "deser_ci_high_ns": 1933208.3698795182, "total_mean_ns": 9933545.072289156, "total_median_ns": 9914984.0, "total_std_ns": 109951.47697105602, "total_mad_ns": 69325.0, "total_cv": 0.01106870469413575, "total_min_ns": 9740711.0, "total_max_ns": 10266800.0, "total_p5_ns": 9796014.1, "total_p25_ns": 9850988.5, "total_p50_ns": 9914984.0, "total_p75_ns": 9987850.5, "total_p95_ns": 10111871.4, "total_p99_ns": 10243842.459999999, "total_ci_low_ns": 9909948.514759036, "total_ci_high_ns": 9958323.18072289, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 125.06170559969725}, {"serializer": "SwiftMsgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "1.2.1", "avg_time_ser_ns": 3049899.6666666665, "avg_time_deser_ns": 2484007.4, "avg_time_total_ns": 5533907.066666666, "median_size_bytes": 33310.0, "avg_ops_per_sec": 180.7041549402721, "min_ops_per_sec": 170.82678283798975, "max_ops_per_sec": 187.4753352762027, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 3049899.6666666665, "ser_median_ns": 3034666.0, "ser_std_ns": 62808.865794424455, "ser_mad_ns": 43627.0, "ser_cv": 0.02059374820781245, "ser_min_ns": 2960771.0, "ser_max_ns": 3219044.0, "ser_p5_ns": 2973007.65, "ser_p25_ns": 3002194.25, "ser_p50_ns": 3034666.0, "ser_p75_ns": 3083438.25, "ser_p95_ns": 3170172.75, "ser_p99_ns": 3211143.47, "ser_ci_low_ns": 3037799.4622222222, "ser_ci_high_ns": 3063262.4122222224, "deser_mean_ns": 2484007.4, "deser_median_ns": 2476063.5, "deser_std_ns": 68167.4063770603, "deser_mad_ns": 43201.5, "deser_cv": 0.027442513406787876, "deser_min_ns": 2342787.0, "deser_max_ns": 2682826.0, "deser_p5_ns": 2392002.9, "deser_p25_ns": 2438899.75, "deser_p50_ns": 2476063.5, "deser_p75_ns": 2526855.25, "deser_p95_ns": 2600220.45, "deser_p99_ns": 2666396.6, "deser_ci_low_ns": 2470145.414722222, "deser_ci_high_ns": 2497957.450277778, "total_mean_ns": 5533907.066666666, "total_median_ns": 5521411.0, "total_std_ns": 117736.83469670825, "total_mad_ns": 84531.5, "total_cv": 0.02127553521921117, "total_min_ns": 5334035.0, "total_max_ns": 5853883.0, "total_p5_ns": 5375097.25, "total_p25_ns": 5439179.5, "total_p50_ns": 5521411.0, "total_p75_ns": 5606546.0, "total_p95_ns": 5742259.8, "total_p99_ns": 5818549.11, "total_ci_low_ns": 5509970.680555555, "total_ci_high_ns": 5559066.669722223, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 62.50624550210424}, {"serializer": "TOML", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "2.0.0", "avg_time_ser_ns": 15607072.320987655, "avg_time_deser_ns": 2808750.765432099, "avg_time_total_ns": 18415823.086419754, "median_size_bytes": 57803.0, "avg_ops_per_sec": 54.30112981142954, "min_ops_per_sec": 52.639549683391536, "max_ops_per_sec": 55.244303014118124, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 15607072.320987655, "ser_median_ns": 15594358.0, "ser_std_ns": 121303.93292602131, "ser_mad_ns": 78650.0, "ser_cv": 0.007772369502183796, "ser_min_ns": 15363528.0, "ser_max_ns": 16057925.0, "ser_p5_ns": 15456041.0, "ser_p25_ns": 15521946.0, "ser_p50_ns": 15594358.0, "ser_p75_ns": 15673061.0, "ser_p95_ns": 15772646.0, "ser_p99_ns": 16037673.8, "ser_ci_low_ns": 15580947.819135802, "ser_ci_high_ns": 15634772.416358024, "deser_mean_ns": 2808750.765432099, "deser_median_ns": 2805094.0, "deser_std_ns": 50787.35630210328, "deser_mad_ns": 35856.0, "deser_cv": 0.01808183087198559, "deser_min_ns": 2735134.0, "deser_max_ns": 2964512.0, "deser_p5_ns": 2740318.0, "deser_p25_ns": 2769238.0, "deser_p50_ns": 2805094.0, "deser_p75_ns": 2839692.0, "deser_p95_ns": 2906582.0, "deser_p99_ns": 2951545.6, "deser_ci_low_ns": 2798649.3941358025, "deser_ci_high_ns": 2819632.09845679, "total_mean_ns": 18415823.086419754, "total_median_ns": 18403108.0, "total_std_ns": 155977.37748582306, "total_mad_ns": 97874.0, "total_cv": 0.008469747822504025, "total_min_ns": 18101414.0, "total_max_ns": 18997123.0, "total_p5_ns": 18227700.0, "total_p25_ns": 18297064.0, "total_p50_ns": 18403108.0, "total_p75_ns": 18484654.0, "total_p95_ns": 18676591.0, "total_p99_ns": 18935258.2, "total_ci_low_ns": 18383490.241049383, "total_ci_high_ns": 18450668.03302469, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 166.46137950517837}, {"serializer": "Foundation.PropertyListEncoder", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 2199389.9759036144, "avg_time_deser_ns": 3943979.674698795, "avg_time_total_ns": 6143369.65060241, "median_size_bytes": 32240.0, "avg_ops_per_sec": 162.77711693645873, "min_ops_per_sec": 158.40808742985888, "max_ops_per_sec": 165.52183489561116, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 2199389.9759036144, "ser_median_ns": 2194976.0, "ser_std_ns": 37466.39795771995, "ser_mad_ns": 24136.0, "ser_cv": 0.017034904390853634, "ser_min_ns": 2137759.0, "ser_max_ns": 2311429.0, "ser_p5_ns": 2146523.3, "ser_p25_ns": 2171994.5, "ser_p50_ns": 2194976.0, "ser_p75_ns": 2219298.0, "ser_p95_ns": 2272235.9, "ser_p99_ns": 2295788.32, "ser_ci_low_ns": 2191603.85873494, "ser_ci_high_ns": 2207498.100301205, "deser_mean_ns": 3943979.674698795, "deser_median_ns": 3937245.0, "deser_std_ns": 36154.603573255095, "deser_mad_ns": 19039.0, "deser_cv": 0.009167035977693331, "deser_min_ns": 3874281.0, "deser_max_ns": 4051060.0, "deser_p5_ns": 3900303.0, "deser_p25_ns": 3918815.5, "deser_p50_ns": 3937245.0, "deser_p75_ns": 3961747.5, "deser_p95_ns": 4023601.3, "deser_p99_ns": 4042304.86, "deser_ci_low_ns": 3936467.8388554216, "deser_ci_high_ns": 3951873.3358433736, "total_mean_ns": 6143369.65060241, "total_median_ns": 6137837.0, "total_std_ns": 56654.584777647535, "total_mad_ns": 36872.0, "total_cv": 0.009222069971337647, "total_min_ns": 6041499.0, "total_max_ns": 6312809.0, "total_p5_ns": 6070169.6, "total_p25_ns": 6102426.0, "total_p50_ns": 6137837.0, "total_p75_ns": 6174077.5, "total_p95_ns": 6242465.7, "total_p99_ns": 6301122.36, "total_ci_low_ns": 6131856.195783133, "total_ci_high_ns": 6155165.472289157, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 147.28516491709826}, {"serializer": "XMLCoder", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "0.18.2", "avg_time_ser_ns": 15240722.535714285, "avg_time_deser_ns": 17621228.464285713, "avg_time_total_ns": 32861951.0, "median_size_bytes": 73422.0, "avg_ops_per_sec": 30.430329593029946, "min_ops_per_sec": 29.67949646003742, "max_ops_per_sec": 31.071584051415766, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 15240722.535714285, "ser_median_ns": 15231727.5, "ser_std_ns": 155183.9332799231, "ser_mad_ns": 90461.5, "ser_cv": 0.010182190044879661, "ser_min_ns": 14908061.0, "ser_max_ns": 15704137.0, "ser_p5_ns": 15005639.25, "ser_p25_ns": 15139224.75, "ser_p50_ns": 15231727.5, "ser_p75_ns": 15319456.0, "ser_p95_ns": 15506682.35, "ser_p99_ns": 15673799.67, "ser_ci_low_ns": 15208939.030952381, "ser_ci_high_ns": 15274196.136011904, "deser_mean_ns": 17621228.464285713, "deser_median_ns": 17599036.5, "deser_std_ns": 202030.6349310353, "deser_mad_ns": 140865.0, "deser_cv": 0.011465184469999138, "deser_min_ns": 17228099.0, "deser_max_ns": 18181293.0, "deser_p5_ns": 17331684.8, "deser_p25_ns": 17484067.75, "deser_p50_ns": 17599036.5, "deser_p75_ns": 17772726.75, "deser_p95_ns": 17987340.5, "deser_p99_ns": 18124612.3, "deser_ci_low_ns": 17577256.060416665, "deser_ci_high_ns": 17664981.39375, "total_mean_ns": 32861951.0, "total_median_ns": 32835792.0, "total_std_ns": 297444.0905544014, "total_mad_ns": 183150.5, "total_cv": 0.00905132171106948, "total_min_ns": 32183747.0, "total_max_ns": 33693294.0, "total_p5_ns": 32367898.2, "total_p25_ns": 32700245.5, "total_p50_ns": 32835792.0, "total_p75_ns": 33052701.75, "total_p95_ns": 33333959.95, "total_p99_ns": 33538530.54, "total_ci_low_ns": 32799364.39166667, "total_ci_high_ns": 32928973.86875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 155.29858910353943}, {"serializer": "CapnProto", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "capnproto-1.0.2", "avg_time_ser_ns": 370878.0989010989, "avg_time_deser_ns": 502866.64835164836, "avg_time_total_ns": 873744.7472527473, "median_size_bytes": 38792.0, "avg_ops_per_sec": 1144.4990120332375, "min_ops_per_sec": 1052.7545850094064, "max_ops_per_sec": 1239.03914992002, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 370878.0989010989, "ser_median_ns": 368881.0, "ser_std_ns": 18485.907214268776, "ser_mad_ns": 11433.0, "ser_cv": 0.04984362050237527, "ser_min_ns": 330440.0, "ser_max_ns": 421272.0, "ser_p5_ns": 347848.5, "ser_p25_ns": 358241.0, "ser_p50_ns": 368881.0, "ser_p75_ns": 380929.0, "ser_p95_ns": 404133.5, "ser_p99_ns": 413914.49999999994, "ser_ci_low_ns": 367212.3521978022, "ser_ci_high_ns": 374686.52032967034, "deser_mean_ns": 502866.64835164836, "deser_median_ns": 502120.0, "deser_std_ns": 12076.599165671718, "deser_mad_ns": 8731.0, "deser_cv": 0.024015510285396186, "deser_min_ns": 473770.0, "deser_max_ns": 536948.0, "deser_p5_ns": 488312.5, "deser_p25_ns": 493259.0, "deser_p50_ns": 502120.0, "deser_p75_ns": 509929.5, "deser_p95_ns": 526156.5, "deser_p99_ns": 536164.1, "deser_ci_low_ns": 500581.5804945055, "deser_ci_high_ns": 505436.64230769227, "total_mean_ns": 873744.7472527473, "total_median_ns": 870633.0, "total_std_ns": 25726.877524225907, "total_mad_ns": 16770.0, "total_cv": 0.02944438590917665, "total_min_ns": 807077.0, "total_max_ns": 949889.0, "total_p5_ns": 840733.0, "total_p25_ns": 855124.5, "total_p50_ns": 870633.0, "total_p75_ns": 887763.0, "total_p95_ns": 916591.5, "total_p99_ns": 937545.4999999999, "total_ci_low_ns": 868553.6626373626, "total_ci_high_ns": 878707.7832417582, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 33.38461271173582}, {"serializer": "BinaryCodable", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "4.0.0", "avg_time_ser_ns": 3145793.2558139535, "avg_time_deser_ns": 2399122.1744186045, "avg_time_total_ns": 5544915.430232558, "median_size_bytes": 34464.0, "avg_ops_per_sec": 180.34540158136537, "min_ops_per_sec": 173.77166889268173, "max_ops_per_sec": 183.65692152431572, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 3145793.2558139535, "ser_median_ns": 3126068.5, "ser_std_ns": 55587.66445115129, "ser_mad_ns": 29763.5, "ser_cv": 0.017670476070992893, "ser_min_ns": 3068325.0, "ser_max_ns": 3287358.0, "ser_p5_ns": 3078331.25, "ser_p25_ns": 3104761.5, "ser_p50_ns": 3126068.5, "ser_p75_ns": 3182945.5, "ser_p95_ns": 3255966.0, "ser_p99_ns": 3283146.25, "ser_ci_low_ns": 3134549.009011628, "ser_ci_high_ns": 3158022.0898255813, "deser_mean_ns": 2399122.1744186045, "deser_median_ns": 2396058.5, "deser_std_ns": 35490.64650338232, "deser_mad_ns": 26127.0, "deser_cv": 0.01479318013972465, "deser_min_ns": 2342223.0, "deser_max_ns": 2497537.0, "deser_p5_ns": 2349784.5, "deser_p25_ns": 2370593.25, "deser_p50_ns": 2396058.5, "deser_p75_ns": 2421769.25, "deser_p95_ns": 2456413.75, "deser_p99_ns": 2494161.65, "deser_ci_low_ns": 2391875.173255814, "deser_ci_high_ns": 2406370.2811046513, "total_mean_ns": 5544915.430232558, "total_median_ns": 5526491.0, "total_std_ns": 74734.0137807239, "total_mad_ns": 48992.0, "total_cv": 0.013477935727071942, "total_min_ns": 5444935.0, "total_max_ns": 5754678.0, "total_p5_ns": 5456833.25, "total_p25_ns": 5481863.5, "total_p50_ns": 5526491.0, "total_p75_ns": 5586422.75, "total_p95_ns": 5683980.75, "total_p99_ns": 5743226.8, "total_ci_low_ns": 5529639.238081395, "total_ci_high_ns": 5561285.95755814, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 99.63793131500287}, {"serializer": "Foundation.JSONEncoder", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 1235345.775280899, "avg_time_deser_ns": 1903908.168539326, "avg_time_total_ns": 3139253.9438202246, "median_size_bytes": 45404.0, "avg_ops_per_sec": 318.5470235590686, "min_ops_per_sec": 305.14775101530284, "max_ops_per_sec": 331.478490195032, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 1235345.775280899, "ser_median_ns": 1230964.0, "ser_std_ns": 28402.10030436002, "ser_mad_ns": 17363.0, "ser_cv": 0.022991214988290883, "ser_min_ns": 1187124.0, "ser_max_ns": 1305184.0, "ser_p5_ns": 1198449.6, "ser_p25_ns": 1215672.0, "ser_p50_ns": 1230964.0, "ser_p75_ns": 1250283.0, "ser_p95_ns": 1293728.2, "ser_p99_ns": 1303712.64, "ser_ci_low_ns": 1229449.4303370786, "ser_ci_high_ns": 1241251.6266853933, "deser_mean_ns": 1903908.168539326, "deser_median_ns": 1899662.0, "deser_std_ns": 33158.99927423925, "deser_mad_ns": 22602.0, "deser_cv": 0.017416280796609406, "deser_min_ns": 1824353.0, "deser_max_ns": 1983002.0, "deser_p5_ns": 1854923.6, "deser_p25_ns": 1877502.0, "deser_p50_ns": 1899662.0, "deser_p75_ns": 1923785.0, "deser_p95_ns": 1961254.8, "deser_p99_ns": 1976686.24, "deser_ci_low_ns": 1897215.092977528, "deser_ci_high_ns": 1910522.772752809, "total_mean_ns": 3139253.9438202246, "total_median_ns": 3133056.0, "total_std_ns": 53068.2200258565, "total_mad_ns": 31803.0, "total_cv": 0.016904723534814346, "total_min_ns": 3016787.0, "total_max_ns": 3277101.0, "total_p5_ns": 3068383.0, "total_p25_ns": 3104437.0, "total_p50_ns": 3133056.0, "total_p75_ns": 3167634.0, "total_p95_ns": 3235655.2, "total_p99_ns": 3271783.16, "total_ci_low_ns": 3128365.999438202, "total_ci_high_ns": 3150427.6626404496, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 75.82704684203856}, {"serializer": "IkigaJSON", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "2.5.3", "avg_time_ser_ns": 1127675.2808988765, "avg_time_deser_ns": 2208657.786516854, "avg_time_total_ns": 3336333.0674157306, "median_size_bytes": 45404.0, "avg_ops_per_sec": 299.7302666710622, "min_ops_per_sec": 288.8273494083083, "max_ops_per_sec": 306.2939110608245, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 1127675.2808988765, "ser_median_ns": 1126053.0, "ser_std_ns": 17120.245435520836, "ser_mad_ns": 12493.0, "ser_cv": 0.015181892984187956, "ser_min_ns": 1094215.0, "ser_max_ns": 1177061.0, "ser_p5_ns": 1106389.2, "ser_p25_ns": 1113951.0, "ser_p50_ns": 1126053.0, "ser_p75_ns": 1138758.0, "ser_p95_ns": 1158328.8, "ser_p99_ns": 1170053.56, "ser_ci_low_ns": 1124347.8910112358, "ser_ci_high_ns": 1131134.5050561798, "deser_mean_ns": 2208657.786516854, "deser_median_ns": 2202432.0, "deser_std_ns": 30659.26333637041, "deser_mad_ns": 19399.0, "deser_cv": 0.013881400515523664, "deser_min_ns": 2152218.0, "deser_max_ns": 2306061.0, "deser_p5_ns": 2170382.0, "deser_p25_ns": 2186402.0, "deser_p50_ns": 2202432.0, "deser_p75_ns": 2229502.0, "deser_p95_ns": 2265288.6, "deser_p99_ns": 2290065.24, "deser_ci_low_ns": 2202260.575, "deser_ci_high_ns": 2215283.6603932586, "total_mean_ns": 3336333.0674157306, "total_median_ns": 3324118.0, "total_std_ns": 41251.1912083644, "total_mad_ns": 25813.0, "total_cv": 0.012364230541382039, "total_min_ns": 3264838.0, "total_max_ns": 3462276.0, "total_p5_ns": 3283810.2, "total_p25_ns": 3308352.0, "total_p50_ns": 3324118.0, "total_p75_ns": 3361663.0, "total_p95_ns": 3411292.8, "total_p99_ns": 3445124.8000000003, "total_ci_low_ns": 3328326.1558988765, "total_ci_high_ns": 3344896.025280899, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 103.85357863570913}, {"serializer": "FlatBuffers", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "24.3.25", "avg_time_ser_ns": 83581.58139534884, "avg_time_deser_ns": 158990.1976744186, "avg_time_total_ns": 242571.77906976745, "median_size_bytes": 38472.0, "avg_ops_per_sec": 4122.491098654903, "min_ops_per_sec": 3926.403492928547, "max_ops_per_sec": 4300.723811817529, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 83581.58139534884, "ser_median_ns": 83316.5, "ser_std_ns": 2367.7243900873473, "ser_mad_ns": 1518.0, "ser_cv": 0.028328303324243, "ser_min_ns": 79565.0, "ser_max_ns": 89992.0, "ser_p5_ns": 79946.5, "ser_p25_ns": 81908.5, "ser_p50_ns": 83316.5, "ser_p75_ns": 85098.75, "ser_p95_ns": 88099.25, "ser_p99_ns": 89195.55, "ser_ci_low_ns": 83106.73808139535, "ser_ci_high_ns": 84098.43343023256, "deser_mean_ns": 158990.1976744186, "deser_median_ns": 158124.0, "deser_std_ns": 4200.328967004055, "deser_mad_ns": 2890.5, "deser_cv": 0.026418792028962204, "deser_min_ns": 151706.0, "deser_max_ns": 170829.0, "deser_p5_ns": 153770.75, "deser_p25_ns": 155973.75, "deser_p50_ns": 158124.0, "deser_p75_ns": 161976.75, "deser_p95_ns": 166385.0, "deser_p99_ns": 170701.5, "deser_ci_low_ns": 158133.88226744186, "deser_ci_high_ns": 159885.3226744186, "total_mean_ns": 242571.77906976745, "total_median_ns": 241936.5, "total_std_ns": 5366.409329504419, "total_mad_ns": 3725.0, "total_cv": 0.022122974692620593, "total_min_ns": 232519.0, "total_max_ns": 254686.0, "total_p5_ns": 234779.25, "total_p25_ns": 238390.5, "total_p50_ns": 241936.5, "total_p75_ns": 246599.0, "total_p95_ns": 252587.75, "total_p99_ns": 253421.2, "total_ci_low_ns": 241446.84476744186, "total_ci_high_ns": 243753.45813953487, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "Yams", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "5.4.0", "avg_time_ser_ns": 19188001.333333332, "avg_time_deser_ns": 14157456.452380951, "avg_time_total_ns": 33345457.785714287, "median_size_bytes": 49403.0, "avg_ops_per_sec": 29.989091960477314, "min_ops_per_sec": 29.19843151865568, "max_ops_per_sec": 30.372355665022926, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 19188001.333333332, "ser_median_ns": 19171113.0, "ser_std_ns": 163459.306897557, "ser_mad_ns": 97259.0, "ser_cv": 0.0085188292442734, "ser_min_ns": 18868100.0, "ser_max_ns": 19807920.0, "ser_p5_ns": 18954008.0, "ser_p25_ns": 19087590.25, "ser_p50_ns": 19171113.0, "ser_p75_ns": 19269894.25, "ser_p95_ns": 19450040.65, "ser_p99_ns": 19558426.98, "ser_ci_low_ns": 19153558.48779762, "ser_ci_high_ns": 19222568.45625, "deser_mean_ns": 14157456.452380951, "deser_median_ns": 14144084.5, "deser_std_ns": 134592.90106795853, "deser_mad_ns": 91157.5, "deser_cv": 0.009506856088215138, "deser_min_ns": 13919275.0, "deser_max_ns": 14492530.0, "deser_p5_ns": 13964542.8, "deser_p25_ns": 14051508.25, "deser_p50_ns": 14144084.5, "deser_p75_ns": 14235065.0, "deser_p95_ns": 14413641.15, "deser_p99_ns": 14449340.95, "deser_ci_low_ns": 14129410.784821428, "deser_ci_high_ns": 14185294.159523811, "total_mean_ns": 33345457.785714287, "total_median_ns": 33343709.5, "total_std_ns": 235650.0049273642, "total_mad_ns": 159629.5, "total_cv": 0.007066929668253658, "total_min_ns": 32924677.0, "total_max_ns": 34248415.0, "total_p5_ns": 33042298.4, "total_p25_ns": 33162853.5, "total_p50_ns": 33343709.5, "total_p75_ns": 33467045.25, "total_p95_ns": 33758609.95, "total_p99_ns": 33904915.35, "total_ci_low_ns": 33297080.139880955, "total_ci_high_ns": 33396313.440178573, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 198.9081814262152}, {"serializer": "SwiftCbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "0.0.4", "avg_time_ser_ns": 3526003.8333333335, "avg_time_deser_ns": 2746531.4777777777, "avg_time_total_ns": 6272535.311111111, "median_size_bytes": 33372.0, "avg_ops_per_sec": 159.42516867599122, "min_ops_per_sec": 151.2576925881008, "max_ops_per_sec": 163.92217237531096, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 3526003.8333333335, "ser_median_ns": 3514156.5, "ser_std_ns": 75493.0990015614, "ser_mad_ns": 57626.5, "ser_cv": 0.021410384835059422, "ser_min_ns": 3417796.0, "ser_max_ns": 3762507.0, "ser_p5_ns": 3438363.05, "ser_p25_ns": 3458712.0, "ser_p50_ns": 3514156.5, "ser_p75_ns": 3576190.5, "ser_p95_ns": 3675535.05, "ser_p99_ns": 3732255.9, "ser_ci_low_ns": 3510573.2994444445, "ser_ci_high_ns": 3541829.9075, "deser_mean_ns": 2746531.4777777777, "deser_median_ns": 2736529.0, "deser_std_ns": 52956.7927253712, "deser_mad_ns": 36336.0, "deser_cv": 0.019281334713927477, "deser_min_ns": 2637880.0, "deser_max_ns": 2886125.0, "deser_p5_ns": 2685536.55, "deser_p25_ns": 2705321.5, "deser_p50_ns": 2736529.0, "deser_p75_ns": 2781578.75, "deser_p95_ns": 2843169.5, "deser_p99_ns": 2867199.15, "deser_ci_low_ns": 2735878.0725, "deser_ci_high_ns": 2757487.6938888887, "total_mean_ns": 6272535.311111111, "total_median_ns": 6252302.5, "total_std_ns": 115573.07307049641, "total_mad_ns": 79643.0, "total_cv": 0.01842525666866655, "total_min_ns": 6100456.0, "total_max_ns": 6611234.0, "total_p5_ns": 6136636.9, "total_p25_ns": 6174454.25, "total_p50_ns": 6252302.5, "total_p75_ns": 6347171.75, "total_p95_ns": 6483943.2, "total_p99_ns": 6545122.13, "total_ci_low_ns": 6249127.545555555, "total_ci_high_ns": 6296956.502222222, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 72.5625039918674}, {"serializer": "XMLCoder", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "0.18.2", "avg_time_ser_ns": 20086098.913978495, "avg_time_deser_ns": 17721818.924731184, "avg_time_total_ns": 37807917.838709675, "median_size_bytes": 73422.0, "avg_ops_per_sec": 26.4494861702262, "min_ops_per_sec": 25.945199846144966, "max_ops_per_sec": 26.814801641795224, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 20086098.913978495, "ser_median_ns": 20062520.0, "ser_std_ns": 193712.4682871641, "ser_mad_ns": 151729.0, "ser_cv": 0.009644106061448996, "ser_min_ns": 19758309.0, "ser_max_ns": 20581486.0, "ser_p5_ns": 19807713.2, "ser_p25_ns": 19920310.0, "ser_p50_ns": 20062520.0, "ser_p75_ns": 20219564.0, "ser_p95_ns": 20378437.4, "ser_p99_ns": 20561051.88, "ser_ci_low_ns": 20045260.726612903, "ser_ci_high_ns": 20122651.744623657, "deser_mean_ns": 17721818.924731184, "deser_median_ns": 17691623.0, "deser_std_ns": 153415.01410235855, "deser_mad_ns": 95907.0, "deser_cv": 0.008656843564080466, "deser_min_ns": 17384578.0, "deser_max_ns": 18087394.0, "deser_p5_ns": 17493537.4, "deser_p25_ns": 17613591.0, "deser_p50_ns": 17691623.0, "deser_p75_ns": 17842951.0, "deser_p95_ns": 17964948.6, "deser_p99_ns": 18074194.76, "deser_ci_low_ns": 17691808.518817205, "deser_ci_high_ns": 17750760.475537635, "total_mean_ns": 37807917.838709675, "total_median_ns": 37778471.0, "total_std_ns": 257563.45201228486, "total_mad_ns": 176244.0, "total_cv": 0.006812420961954648, "total_min_ns": 37292836.0, "total_max_ns": 38542775.0, "total_p5_ns": 37434737.6, "total_p25_ns": 37608444.0, "total_p50_ns": 37778471.0, "total_p75_ns": 37973951.0, "total_p95_ns": 38243205.4, "total_p99_ns": 38369060.6, "total_ci_low_ns": 37755522.47580645, "total_ci_high_ns": 37863448.45215054, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 197.82975342914233}, {"serializer": "Yams", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "5.4.0", "avg_time_ser_ns": 22389696.725274727, "avg_time_deser_ns": 14135866.0, "avg_time_total_ns": 36525562.72527473, "median_size_bytes": 49403.0, "avg_ops_per_sec": 27.378086068692554, "min_ops_per_sec": 27.048087252585397, "max_ops_per_sec": 27.66681081075099, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 22389696.725274727, "ser_median_ns": 22384925.0, "ser_std_ns": 131348.42328005703, "ser_mad_ns": 89351.0, "ser_cv": 0.005866467281434128, "ser_min_ns": 22107473.0, "ser_max_ns": 22752617.0, "ser_p5_ns": 22194094.5, "ser_p25_ns": 22289325.0, "ser_p50_ns": 22384925.0, "ser_p75_ns": 22471573.5, "ser_p95_ns": 22632060.5, "ser_p99_ns": 22674959.599999998, "ser_ci_low_ns": 22362946.098626375, "ser_ci_high_ns": 22416437.44010989, "deser_mean_ns": 14135866.0, "deser_median_ns": 14126758.0, "deser_std_ns": 118779.81625119087, "deser_mad_ns": 76330.0, "deser_cv": 0.008402726529184053, "deser_min_ns": 13871030.0, "deser_max_ns": 14485747.0, "deser_p5_ns": 13954824.5, "deser_p25_ns": 14053417.0, "deser_p50_ns": 14126758.0, "deser_p75_ns": 14205681.0, "deser_p95_ns": 14324784.5, "deser_p99_ns": 14462471.2, "deser_ci_low_ns": 14112476.731593408, "deser_ci_high_ns": 14160125.938736264, "total_mean_ns": 36525562.72527473, "total_median_ns": 36502610.0, "total_std_ns": 171506.67191201277, "total_mad_ns": 129832.0, "total_cv": 0.0046955244249621015, "total_min_ns": 36144390.0, "total_max_ns": 36971191.0, "total_p5_ns": 36280068.5, "total_p25_ns": 36399832.5, "total_p50_ns": 36502610.0, "total_p75_ns": 36664032.5, "total_p95_ns": 36780034.0, "total_p99_ns": 36944596.0, "total_ci_low_ns": 36491102.63214286, "total_ci_high_ns": 36562571.538461536, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 286.89239858912737}, {"serializer": "SwiftMsgpack", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "1.2.1", "avg_time_ser_ns": 5341565.494736842, "avg_time_deser_ns": 2331532.9789473685, "avg_time_total_ns": 7673098.47368421, "median_size_bytes": 33310.0, "avg_ops_per_sec": 130.32544850422775, "min_ops_per_sec": 127.06181620889471, "max_ops_per_sec": 133.59732164089576, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 5341565.494736842, "ser_median_ns": 5335350.0, "ser_std_ns": 65652.6966109937, "ser_mad_ns": 41280.0, "ser_cv": 0.012290909224212023, "ser_min_ns": 5192441.0, "ser_max_ns": 5518259.0, "ser_p5_ns": 5239455.9, "ser_p25_ns": 5295729.0, "ser_p50_ns": 5335350.0, "ser_p75_ns": 5381481.5, "ser_p95_ns": 5452185.6, "ser_p99_ns": 5501901.12, "ser_ci_low_ns": 5328668.511842106, "ser_ci_high_ns": 5355456.927631579, "deser_mean_ns": 2331532.9789473685, "deser_median_ns": 2330023.0, "deser_std_ns": 35309.98763142614, "deser_mad_ns": 22700.0, "deser_cv": 0.015144537070784973, "deser_min_ns": 2260591.0, "deser_max_ns": 2426472.0, "deser_p5_ns": 2273147.6, "deser_p25_ns": 2307874.5, "deser_p50_ns": 2330023.0, "deser_p75_ns": 2354026.5, "deser_p95_ns": 2391413.7, "deser_p99_ns": 2420729.54, "deser_ci_low_ns": 2324369.787894737, "deser_ci_high_ns": 2338570.1344736842, "total_mean_ns": 7673098.47368421, "total_median_ns": 7667855.0, "total_std_ns": 82429.28148120227, "total_mad_ns": 56221.0, "total_cv": 0.01074263307891892, "total_min_ns": 7485180.0, "total_max_ns": 7870185.0, "total_p5_ns": 7552753.7, "total_p25_ns": 7611099.5, "total_p50_ns": 7667855.0, "total_p75_ns": 7723708.5, "total_p95_ns": 7827473.4, "total_p99_ns": 7848377.0, "total_ci_low_ns": 7656196.650789473, "total_ci_high_ns": 7689687.891842105, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 102.86891951958759}, {"serializer": "SwiftBSON", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "3.1.0", "avg_time_ser_ns": 6528152.608695652, "avg_time_deser_ns": 4582031.869565218, "avg_time_total_ns": 11110184.47826087, "median_size_bytes": 53446.0, "avg_ops_per_sec": 90.00750635209388, "min_ops_per_sec": 88.19129185073659, "max_ops_per_sec": 92.16547389182539, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 6528152.608695652, "ser_median_ns": 6517697.5, "ser_std_ns": 84469.18033912653, "ser_mad_ns": 52758.5, "ser_cv": 0.012939216559767859, "ser_min_ns": 6338777.0, "ser_max_ns": 6693957.0, "ser_p5_ns": 6399252.45, "ser_p25_ns": 6473935.25, "ser_p50_ns": 6517697.5, "ser_p75_ns": 6588032.5, "ser_p95_ns": 6674202.05, "ser_p99_ns": 6688554.33, "ser_ci_low_ns": 6511540.847554348, "ser_ci_high_ns": 6544868.313043478, "deser_mean_ns": 4582031.869565218, "deser_median_ns": 4581702.5, "deser_std_ns": 36978.67712472808, "deser_mad_ns": 26188.0, "deser_cv": 0.008070366635890931, "deser_min_ns": 4492421.0, "deser_max_ns": 4683953.0, "deser_p5_ns": 4526925.0, "deser_p25_ns": 4555031.0, "deser_p50_ns": 4581702.5, "deser_p75_ns": 4606198.5, "deser_p95_ns": 4641595.4, "deser_p99_ns": 4667579.37, "deser_ci_low_ns": 4574816.050543479, "deser_ci_high_ns": 4589401.930706522, "total_mean_ns": 11110184.47826087, "total_median_ns": 11103979.5, "total_std_ns": 99753.26860606087, "total_mad_ns": 73409.0, "total_cv": 0.008978542957702151, "total_min_ns": 10850050.0, "total_max_ns": 11338988.0, "total_p5_ns": 10969852.6, "total_p25_ns": 11034843.5, "total_p50_ns": 11103979.5, "total_p75_ns": 11182361.0, "total_p95_ns": 11278693.5, "total_p99_ns": 11315246.1, "total_ci_low_ns": 11090827.14701087, "total_ci_high_ns": 11131132.40625, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 133.90723411687966}, {"serializer": "SwiftProtobuf", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "1.38.1", "avg_time_ser_ns": 1245447.2391304348, "avg_time_deser_ns": 158391.78260869565, "avg_time_total_ns": 1403839.0217391304, "median_size_bytes": 16265.0, "avg_ops_per_sec": 712.3323860603057, "min_ops_per_sec": 681.2666654858044, "max_ops_per_sec": 733.759696634391, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 1245447.2391304348, "ser_median_ns": 1245172.0, "ser_std_ns": 19585.577502234504, "ser_mad_ns": 14089.0, "ser_cv": 0.015725738423017468, "ser_min_ns": 1206262.0, "ser_max_ns": 1302454.0, "ser_p5_ns": 1216660.25, "ser_p25_ns": 1232163.75, "ser_p50_ns": 1245172.0, "ser_p75_ns": 1260300.75, "ser_p95_ns": 1277137.4, "ser_p99_ns": 1286629.1, "ser_ci_low_ns": 1241684.2173913042, "ser_ci_high_ns": 1249513.3725543479, "deser_mean_ns": 158391.78260869565, "deser_median_ns": 157399.5, "deser_std_ns": 4076.0853063631, "deser_mad_ns": 2490.5, "deser_cv": 0.025734196807627344, "deser_min_ns": 150677.0, "deser_max_ns": 167242.0, "deser_p5_ns": 152141.1, "deser_p25_ns": 155703.75, "deser_p50_ns": 157399.5, "deser_p75_ns": 161070.0, "deser_p95_ns": 166349.15, "deser_p99_ns": 166592.26, "deser_ci_low_ns": 157592.4122282609, "deser_ci_high_ns": 159210.66086956524, "total_mean_ns": 1403839.0217391304, "total_median_ns": 1403471.0, "total_std_ns": 21703.9383922777, "total_mad_ns": 15858.5, "total_cv": 0.015460418221877048, "total_min_ns": 1362844.0, "total_max_ns": 1467854.0, "total_p5_ns": 1372963.4, "total_p25_ns": 1388206.75, "total_p50_ns": 1403471.0, "total_p75_ns": 1420256.75, "total_p95_ns": 1441141.6, "total_p99_ns": 1452086.4300000002, "total_ci_low_ns": 1399442.8470108695, "total_ci_high_ns": 1408178.079347826, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "BinaryCodable", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "4.0.0", "avg_time_ser_ns": 5449658.768421053, "avg_time_deser_ns": 2334295.0315789473, "avg_time_total_ns": 7783953.8, "median_size_bytes": 34464.0, "avg_ops_per_sec": 128.469416146843, "min_ops_per_sec": 125.2809739042237, "max_ops_per_sec": 132.18885981027725, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 5449658.768421053, "ser_median_ns": 5436430.0, "ser_std_ns": 67802.77740379966, "ser_mad_ns": 34127.0, "ser_cv": 0.0124416555760691, "ser_min_ns": 5280064.0, "ser_max_ns": 5623890.0, "ser_p5_ns": 5335864.6, "ser_p25_ns": 5411040.0, "ser_p50_ns": 5436430.0, "ser_p75_ns": 5493903.0, "ser_p95_ns": 5575306.9, "ser_p99_ns": 5599101.26, "ser_ci_low_ns": 5435863.533421053, "ser_ci_high_ns": 5462731.118421053, "deser_mean_ns": 2334295.0315789473, "deser_median_ns": 2330464.0, "deser_std_ns": 32319.294855330623, "deser_mad_ns": 20505.0, "deser_cv": 0.013845419888277548, "deser_min_ns": 2275479.0, "deser_max_ns": 2423258.0, "deser_p5_ns": 2286348.4, "deser_p25_ns": 2312782.0, "deser_p50_ns": 2330464.0, "deser_p75_ns": 2354592.5, "deser_p95_ns": 2396031.9, "deser_p99_ns": 2415866.78, "deser_ci_low_ns": 2328040.1328947367, "deser_ci_high_ns": 2340280.590263158, "total_mean_ns": 7783953.8, "total_median_ns": 7773820.0, "total_std_ns": 88664.6160150591, "total_mad_ns": 53541.0, "total_cv": 0.01139069145233867, "total_min_ns": 7564934.0, "total_max_ns": 7982058.0, "total_p5_ns": 7636965.2, "total_p25_ns": 7726207.5, "total_p50_ns": 7773820.0, "total_p75_ns": 7837764.0, "total_p95_ns": 7950405.1, "total_p99_ns": 7965160.56, "total_ci_low_ns": 7765785.22868421, "total_ci_high_ns": 7801622.229473685, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 97.7437360581684}, {"serializer": "CapnProto", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "capnproto-1.0.2", "avg_time_ser_ns": 2924529.5934065934, "avg_time_deser_ns": 522283.7912087912, "avg_time_total_ns": 3446813.3846153845, "median_size_bytes": 38792.0, "avg_ops_per_sec": 290.1230465401555, "min_ops_per_sec": 279.63744446050805, "max_ops_per_sec": 301.7391338457467, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 2924529.5934065934, "ser_median_ns": 2918124.0, "ser_std_ns": 41712.101155947006, "ser_mad_ns": 26938.0, "ser_cv": 0.014262841193328225, "ser_min_ns": 2822020.0, "ser_max_ns": 3025691.0, "ser_p5_ns": 2862137.0, "ser_p25_ns": 2897007.0, "ser_p50_ns": 2918124.0, "ser_p75_ns": 2952584.5, "ser_p95_ns": 3002168.5, "ser_p99_ns": 3021765.2, "ser_ci_low_ns": 2916371.1928571425, "ser_ci_high_ns": 2933294.3456043955, "deser_mean_ns": 522283.7912087912, "deser_median_ns": 523969.0, "deser_std_ns": 18564.509018564597, "deser_mad_ns": 12086.0, "deser_cv": 0.035544869151689105, "deser_min_ns": 483967.0, "deser_max_ns": 569177.0, "deser_p5_ns": 492233.0, "deser_p25_ns": 508601.0, "deser_p50_ns": 523969.0, "deser_p75_ns": 534194.5, "deser_p95_ns": 550218.5, "deser_p99_ns": 565193.6, "deser_ci_low_ns": 518561.72087912087, "deser_ci_high_ns": 525985.364010989, "total_mean_ns": 3446813.3846153845, "total_median_ns": 3441718.0, "total_std_ns": 50908.26570056494, "total_mad_ns": 31788.0, "total_cv": 0.014769661139123601, "total_min_ns": 3314121.0, "total_max_ns": 3576059.0, "total_p5_ns": 3369235.0, "total_p25_ns": 3413626.5, "total_p50_ns": 3441718.0, "total_p75_ns": 3477005.0, "total_p95_ns": 3541333.0, "total_p99_ns": 3571729.1, "total_ci_low_ns": 3436921.9552197806, "total_ci_high_ns": 3456858.1263736263, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 52.08962846854572}, {"serializer": "SwiftAvroCore", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "2.3.0", "avg_time_ser_ns": 8817717.263157895, "avg_time_deser_ns": 1930837.252631579, "avg_time_total_ns": 10748554.515789473, "median_size_bytes": 11967.0, "avg_ops_per_sec": 93.03576574236232, "min_ops_per_sec": 91.24001845603094, "max_ops_per_sec": 94.73438798601228, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 8817717.263157895, "ser_median_ns": 8809936.0, "ser_std_ns": 80288.73571164695, "ser_mad_ns": 53615.0, "ser_cv": 0.009105387858953996, "ser_min_ns": 8646846.0, "ser_max_ns": 9010381.0, "ser_p5_ns": 8700268.8, "ser_p25_ns": 8756501.5, "ser_p50_ns": 8809936.0, "ser_p75_ns": 8866705.5, "ser_p95_ns": 8966331.8, "ser_p99_ns": 9001059.96, "ser_ci_low_ns": 8802275.928421054, "ser_ci_high_ns": 8833678.36631579, "deser_mean_ns": 1930837.252631579, "deser_median_ns": 1927374.0, "deser_std_ns": 22130.27835869605, "deser_mad_ns": 14143.0, "deser_cv": 0.01146149336436006, "deser_min_ns": 1892912.0, "deser_max_ns": 1985735.0, "deser_p5_ns": 1901814.4, "deser_p25_ns": 1914962.5, "deser_p50_ns": 1927374.0, "deser_p75_ns": 1945197.5, "deser_p95_ns": 1972283.8, "deser_p99_ns": 1983244.0, "deser_ci_low_ns": 1926394.6763157893, "deser_ci_high_ns": 1935422.0650000002, "total_mean_ns": 10748554.515789473, "total_median_ns": 10744720.0, "total_std_ns": 87895.6256966984, "total_mad_ns": 54461.0, "total_cv": 0.008177436842096392, "total_min_ns": 10555829.0, "total_max_ns": 10960103.0, "total_p5_ns": 10632800.3, "total_p25_ns": 10685873.5, "total_p50_ns": 10744720.0, "total_p75_ns": 10794687.0, "total_p95_ns": 10914907.4, "total_p99_ns": 10956560.14, "total_ci_low_ns": 10731582.728157895, "total_ci_high_ns": 10766367.300263157, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 144.34457562562451}, {"serializer": "FlatBuffers", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "24.3.25", "avg_time_ser_ns": 2610506.5172413792, "avg_time_deser_ns": 187585.4827586207, "avg_time_total_ns": 2798092.0, "median_size_bytes": 38472.0, "avg_ops_per_sec": 357.3863904403429, "min_ops_per_sec": 348.071613646078, "max_ops_per_sec": 367.64570718490006, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 2610506.5172413792, "ser_median_ns": 2613088.0, "ser_std_ns": 29428.49262426343, "ser_mad_ns": 18083.0, "ser_cv": 0.011273096784053091, "ser_min_ns": 2545219.0, "ser_max_ns": 2683952.0, "ser_p5_ns": 2556834.5, "ser_p25_ns": 2595005.5, "ser_p50_ns": 2613088.0, "ser_p75_ns": 2630891.0, "ser_p95_ns": 2659382.2, "ser_p99_ns": 2668625.08, "ser_ci_low_ns": 2603999.5287356325, "ser_ci_high_ns": 2616644.4301724136, "deser_mean_ns": 187585.4827586207, "deser_median_ns": 189048.0, "deser_std_ns": 17129.752532092974, "deser_mad_ns": 14278.0, "deser_cv": 0.09131704799424709, "deser_min_ns": 156767.0, "deser_max_ns": 228103.0, "deser_p5_ns": 161307.6, "deser_p25_ns": 172679.5, "deser_p50_ns": 189048.0, "deser_p75_ns": 201315.5, "deser_p95_ns": 214988.0, "deser_p99_ns": 220542.74, "deser_ci_low_ns": 184141.7908045977, "deser_ci_high_ns": 191178.7048850575, "total_mean_ns": 2798092.0, "total_median_ns": 2799019.0, "total_std_ns": 33444.75482670795, "total_mad_ns": 16002.0, "total_cv": 0.011952700206679389, "total_min_ns": 2720010.0, "total_max_ns": 2872972.0, "total_p5_ns": 2744378.8, "total_p25_ns": 2783418.5, "total_p50_ns": 2799019.0, "total_p75_ns": 2816828.0, "total_p95_ns": 2851228.9, "total_p99_ns": 2870098.74, "total_ci_low_ns": 2791030.8344827583, "total_ci_high_ns": 2805298.060344828, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 49.531017138488316}, {"serializer": "Foundation.PropertyListEncoder", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 4337858.621052631, "avg_time_deser_ns": 3869125.052631579, "avg_time_total_ns": 8206983.6736842105, "median_size_bytes": 32240.0, "avg_ops_per_sec": 121.84744599974186, "min_ops_per_sec": 118.86311236641123, "max_ops_per_sec": 124.31520966754633, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 4337858.621052631, "ser_median_ns": 4333581.0, "ser_std_ns": 56810.86127410793, "ser_mad_ns": 41423.0, "ser_cv": 0.01309652209465557, "ser_min_ns": 4209365.0, "ser_max_ns": 4455214.0, "ser_p5_ns": 4246168.2, "ser_p25_ns": 4302437.0, "ser_p50_ns": 4333581.0, "ser_p75_ns": 4377439.0, "ser_p95_ns": 4445924.3, "ser_p99_ns": 4454620.86, "ser_ci_low_ns": 4326880.686052632, "ser_ci_high_ns": 4349562.071052632, "deser_mean_ns": 3869125.052631579, "deser_median_ns": 3867451.0, "deser_std_ns": 42912.37600793198, "deser_mad_ns": 30091.0, "deser_cv": 0.011090976751641874, "deser_min_ns": 3770543.0, "deser_max_ns": 3983024.0, "deser_p5_ns": 3804372.0, "deser_p25_ns": 3840235.0, "deser_p50_ns": 3867451.0, "deser_p75_ns": 3899268.0, "deser_p95_ns": 3939512.3, "deser_p99_ns": 3971223.24, "deser_ci_low_ns": 3860397.2157894736, "deser_ci_high_ns": 3877942.827368421, "total_mean_ns": 8206983.6736842105, "total_median_ns": 8197756.0, "total_std_ns": 77181.79775263437, "total_mad_ns": 39234.0, "total_cv": 0.009404404933827116, "total_min_ns": 8044068.0, "total_max_ns": 8413039.0, "total_p5_ns": 8082992.7, "total_p25_ns": 8163181.5, "total_p50_ns": 8197756.0, "total_p75_ns": 8249070.5, "total_p95_ns": 8347908.5, "total_p99_ns": 8379156.7, "total_ci_low_ns": 8192400.327631579, "total_ci_high_ns": 8223671.655263158, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 118.6950121021844}, {"serializer": "Foundation.JSONEncoder", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 4206684.913978495, "avg_time_deser_ns": 1877078.3978494625, "avg_time_total_ns": 6083763.311827957, "median_size_bytes": 45404.0, "avg_ops_per_sec": 164.37194360533647, "min_ops_per_sec": 159.42672699799155, "max_ops_per_sec": 168.51394461317372, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 4206684.913978495, "ser_median_ns": 4200046.0, "ser_std_ns": 57031.15386360563, "ser_mad_ns": 33379.0, "ser_cv": 0.013557267784448374, "ser_min_ns": 4091761.0, "ser_max_ns": 4341843.0, "ser_p5_ns": 4131445.4, "ser_p25_ns": 4168763.0, "ser_p50_ns": 4200046.0, "ser_p75_ns": 4235251.0, "ser_p95_ns": 4317481.4, "ser_p99_ns": 4335522.6, "ser_ci_low_ns": 4195514.989247312, "ser_ci_high_ns": 4218702.131989247, "deser_mean_ns": 1877078.3978494625, "deser_median_ns": 1875068.0, "deser_std_ns": 27583.661906587964, "deser_mad_ns": 18436.0, "deser_cv": 0.014694997256475866, "deser_min_ns": 1818261.0, "deser_max_ns": 1958092.0, "deser_p5_ns": 1839949.6, "deser_p25_ns": 1857030.0, "deser_p50_ns": 1875068.0, "deser_p75_ns": 1893583.0, "deser_p95_ns": 1922485.8, "deser_p99_ns": 1956949.36, "deser_ci_low_ns": 1871722.5994623655, "deser_ci_high_ns": 1882322.6806451613, "total_mean_ns": 6083763.311827957, "total_median_ns": 6072300.0, "total_std_ns": 69883.6050636713, "total_mad_ns": 41758.0, "total_cv": 0.011486903990463386, "total_min_ns": 5934227.0, "total_max_ns": 6272474.0, "total_p5_ns": 6001472.8, "total_p25_ns": 6032999.0, "total_p50_ns": 6072300.0, "total_p75_ns": 6124208.0, "total_p95_ns": 6224003.2, "total_p99_ns": 6259530.52, "total_ci_low_ns": 6069669.0209677415, "total_ci_high_ns": 6097852.697849462, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 89.87138033117134}, {"serializer": "TOML", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "2.0.0", "avg_time_ser_ns": 19388138.157894738, "avg_time_deser_ns": 2806639.4105263157, "avg_time_total_ns": 22194777.56842105, "median_size_bytes": 57803.0, "avg_ops_per_sec": 45.05564414499066, "min_ops_per_sec": 44.38427711838276, "max_ops_per_sec": 45.81067556407716, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 19388138.157894738, "ser_median_ns": 19383622.0, "ser_std_ns": 146343.51327258808, "ser_mad_ns": 108619.0, "ser_cv": 0.0075480952364163885, "ser_min_ns": 19059794.0, "ser_max_ns": 19705204.0, "ser_p5_ns": 19181320.4, "ser_p25_ns": 19273459.5, "ser_p50_ns": 19383622.0, "ser_p75_ns": 19484219.5, "ser_p95_ns": 19626054.8, "ser_p99_ns": 19703783.66, "ser_ci_low_ns": 19358281.917894736, "ser_ci_high_ns": 19416654.075789474, "deser_mean_ns": 2806639.4105263157, "deser_median_ns": 2805878.0, "deser_std_ns": 45272.537762033855, "deser_mad_ns": 31586.0, "deser_cv": 0.016130514519335462, "deser_min_ns": 2719792.0, "deser_max_ns": 2916030.0, "deser_p5_ns": 2733040.1, "deser_p25_ns": 2775391.5, "deser_p50_ns": 2805878.0, "deser_p75_ns": 2838051.0, "deser_p95_ns": 2885711.4, "deser_p99_ns": 2904468.94, "deser_ci_low_ns": 2797516.622894737, "deser_ci_high_ns": 2815906.332368421, "total_mean_ns": 22194777.56842105, "total_median_ns": 22189401.0, "total_std_ns": 165253.164241225, "total_mad_ns": 117305.0, "total_cv": 0.007445587761886329, "total_min_ns": 21828973.0, "total_max_ns": 22530501.0, "total_p5_ns": 21939181.8, "total_p25_ns": 22074991.5, "total_p50_ns": 22189401.0, "total_p75_ns": 22310150.0, "total_p95_ns": 22461509.3, "total_p99_ns": 22489675.86, "total_ci_low_ns": 22162053.35105263, "total_ci_high_ns": 22229135.82263158, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 174.33453227347684}, {"serializer": "SwiftCbor", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "0.0.4", "avg_time_ser_ns": 5822596.29787234, "avg_time_deser_ns": 2600033.244680851, "avg_time_total_ns": 8422629.542553192, "median_size_bytes": 33372.0, "avg_ops_per_sec": 118.72776725460315, "min_ops_per_sec": 115.73232871499617, "max_ops_per_sec": 120.98528480178013, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 5822596.29787234, "ser_median_ns": 5815444.5, "ser_std_ns": 68629.98646205087, "ser_mad_ns": 49525.5, "ser_cv": 0.011786835794734602, "ser_min_ns": 5700694.0, "ser_max_ns": 6022364.0, "ser_p5_ns": 5714924.8, "ser_p25_ns": 5774280.75, "ser_p50_ns": 5815444.5, "ser_p75_ns": 5875116.5, "ser_p95_ns": 5943556.8, "ser_p99_ns": 6005938.34, "ser_ci_low_ns": 5809031.824734042, "ser_ci_high_ns": 5837036.880585106, "deser_mean_ns": 2600033.244680851, "deser_median_ns": 2598314.0, "deser_std_ns": 30494.162314130925, "deser_mad_ns": 20112.5, "deser_cv": 0.011728374003107804, "deser_min_ns": 2546084.0, "deser_max_ns": 2673182.0, "deser_p5_ns": 2554768.65, "deser_p25_ns": 2578947.75, "deser_p50_ns": 2598314.0, "deser_p75_ns": 2618507.75, "deser_p95_ns": 2653880.55, "deser_p99_ns": 2668083.7399999998, "deser_ci_low_ns": 2593747.3742021276, "deser_ci_high_ns": 2606105.839361702, "total_mean_ns": 8422629.542553192, "total_median_ns": 8413379.5, "total_std_ns": 80561.6820510596, "total_mad_ns": 53897.0, "total_cv": 0.009564908636197545, "total_min_ns": 8265468.0, "total_max_ns": 8640628.0, "total_p5_ns": 8306585.05, "total_p25_ns": 8365008.5, "total_p50_ns": 8413379.5, "total_p75_ns": 8471836.0, "total_p95_ns": 8565436.3, "total_p99_ns": 8632056.19, "total_ci_low_ns": 8406785.814361703, "total_ci_high_ns": 8438990.881382978, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 117.93052084096158}, {"serializer": "IkigaJSON", "test_data": "document", "type_config_hash": "c4a54cdecc67", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "2.5.3", "avg_time_ser_ns": 4102228.6808510637, "avg_time_deser_ns": 2210839.8723404254, "avg_time_total_ns": 6313068.55319149, "median_size_bytes": 45404.0, "avg_ops_per_sec": 158.40157469769008, "min_ops_per_sec": 155.3546233380551, "max_ops_per_sec": 160.74919412410256, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 4102228.6808510637, "ser_median_ns": 4099103.0, "ser_std_ns": 38814.080348990734, "ser_mad_ns": 23773.0, "ser_cv": 0.009461705665062587, "ser_min_ns": 4022497.0, "ser_max_ns": 4207023.0, "ser_p5_ns": 4044119.1, "ser_p25_ns": 4075878.5, "ser_p50_ns": 4099103.0, "ser_p75_ns": 4124800.5, "ser_p95_ns": 4172229.25, "ser_p99_ns": 4190588.9699999997, "ser_ci_low_ns": 4094242.6537234043, "ser_ci_high_ns": 4109852.9420212763, "deser_mean_ns": 2210839.8723404254, "deser_median_ns": 2207780.5, "deser_std_ns": 24638.932027299667, "deser_mad_ns": 16051.5, "deser_cv": 0.011144602707574907, "deser_min_ns": 2160884.0, "deser_max_ns": 2267159.0, "deser_p5_ns": 2179514.05, "deser_p25_ns": 2192111.0, "deser_p50_ns": 2207780.5, "deser_p75_ns": 2225683.0, "deser_p95_ns": 2256691.1, "deser_p99_ns": 2266574.96, "deser_ci_low_ns": 2205978.4547872343, "deser_ci_high_ns": 2215872.1925531914, "total_mean_ns": 6313068.55319149, "total_median_ns": 6311538.5, "total_std_ns": 49548.96231883655, "total_mad_ns": 34735.0, "total_cv": 0.00784863365594022, "total_min_ns": 6220871.0, "total_max_ns": 6436886.0, "total_p5_ns": 6239088.5, "total_p25_ns": 6279539.5, "total_p50_ns": 6311538.5, "total_p75_ns": 6349328.75, "total_p95_ns": 6404031.3, "total_p99_ns": 6429054.47, "total_ci_low_ns": 6302890.813829787, "total_ci_high_ns": 6322540.210106383, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 127.35280168578112}, {"serializer": "IkigaJSON", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "2.5.3", "avg_time_ser_ns": 22836.369047619046, "avg_time_deser_ns": 22926.190476190477, "avg_time_total_ns": 45762.55952380953, "median_size_bytes": 663.0, "avg_ops_per_sec": 21851.92459525163, "min_ops_per_sec": 20219.99352960207, "max_ops_per_sec": 23269.34264107039, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 22836.369047619046, "ser_median_ns": 22726.0, "ser_std_ns": 1159.87693343611, "ser_mad_ns": 759.5, "ser_cv": 0.050790777247359316, "ser_min_ns": 20971.0, "ser_max_ns": 26625.0, "ser_p5_ns": 21346.45, "ser_p25_ns": 21951.0, "ser_p50_ns": 22726.0, "ser_p75_ns": 23471.25, "ser_p95_ns": 24896.6, "ser_p99_ns": 25716.980000000003, "ser_ci_low_ns": 22598.84136904762, "ser_ci_high_ns": 23077.85208333333, "deser_mean_ns": 22926.190476190477, "deser_median_ns": 22960.5, "deser_std_ns": 475.65190461726905, "deser_mad_ns": 325.0, "deser_cv": 0.020747097303899988, "deser_min_ns": 21861.0, "deser_max_ns": 24301.0, "deser_p5_ns": 22014.8, "deser_p25_ns": 22631.75, "deser_p50_ns": 22960.5, "deser_p75_ns": 23270.5, "deser_p95_ns": 23571.6, "deser_p99_ns": 23785.57, "deser_ci_low_ns": 22818.435714285715, "deser_ci_high_ns": 23025.713988095238, "total_mean_ns": 45762.55952380953, "total_median_ns": 45704.0, "total_std_ns": 1367.2156152498053, "total_mad_ns": 908.0, "total_cv": 0.029876292529889305, "total_min_ns": 42975.0, "total_max_ns": 49456.0, "total_p5_ns": 43657.85, "total_p25_ns": 44839.25, "total_p50_ns": 45704.0, "total_p75_ns": 46621.25, "total_p95_ns": 48212.2, "total_p99_ns": 49055.94, "total_ci_low_ns": 45494.7625, "total_ci_high_ns": 46056.99732142857, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 42.332792723408396}, {"serializer": "Yams", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "5.4.0", "avg_time_ser_ns": 326766.6853932584, "avg_time_deser_ns": 134021.47191011236, "avg_time_total_ns": 460788.15730337077, "median_size_bytes": 767.0, "avg_ops_per_sec": 2170.194663535214, "min_ops_per_sec": 2077.2400957192235, "max_ops_per_sec": 2284.1949697458376, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 326766.6853932584, "ser_median_ns": 326467.0, "ser_std_ns": 6551.324185362531, "ser_mad_ns": 4293.0, "ser_cv": 0.020048935458270842, "ser_min_ns": 309805.0, "ser_max_ns": 343856.0, "ser_p5_ns": 315445.4, "ser_p25_ns": 322174.0, "ser_p50_ns": 326467.0, "ser_p75_ns": 330365.0, "ser_p95_ns": 337815.4, "ser_p99_ns": 342204.24, "ser_ci_low_ns": 325444.44353932585, "ser_ci_high_ns": 328179.9862359551, "deser_mean_ns": 134021.47191011236, "deser_median_ns": 133638.0, "deser_std_ns": 3483.850632463399, "deser_mad_ns": 2169.0, "deser_cv": 0.02599471997143863, "deser_min_ns": 126772.0, "deser_max_ns": 142814.0, "deser_p5_ns": 129100.6, "deser_p25_ns": 131476.0, "deser_p50_ns": 133638.0, "deser_p75_ns": 136034.0, "deser_p95_ns": 140065.6, "deser_p99_ns": 142457.6, "deser_ci_low_ns": 133325.0452247191, "deser_ci_high_ns": 134746.3679775281, "total_mean_ns": 460788.15730337077, "total_median_ns": 461076.0, "total_std_ns": 8591.60156635388, "total_mad_ns": 5473.0, "total_cv": 0.018645447870521976, "total_min_ns": 437791.0, "total_max_ns": 481408.0, "total_p5_ns": 445921.6, "total_p25_ns": 455669.0, "total_p50_ns": 461076.0, "total_p75_ns": 466549.0, "total_p95_ns": 474213.0, "total_p99_ns": 477644.24, "total_ci_low_ns": 458968.66629213485, "total_ci_high_ns": 462560.27050561795, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 73.52838783939744}, {"serializer": "SwiftMsgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "1.2.1", "avg_time_ser_ns": 34444.41025641026, "avg_time_deser_ns": 26785.371794871793, "avg_time_total_ns": 61229.782051282054, "median_size_bytes": 346.0, "avg_ops_per_sec": 16331.921599238512, "min_ops_per_sec": 15549.197661400673, "max_ops_per_sec": 17258.042247687423, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 34444.41025641026, "ser_median_ns": 34445.5, "ser_std_ns": 927.1775273194272, "ser_mad_ns": 487.5, "ser_cv": 0.026918083962458768, "ser_min_ns": 32012.0, "ser_max_ns": 37249.0, "ser_p5_ns": 32824.65, "ser_p25_ns": 33972.0, "ser_p50_ns": 34445.5, "ser_p75_ns": 34928.75, "ser_p95_ns": 35800.05, "ser_p99_ns": 36709.23, "ser_ci_low_ns": 34241.41442307692, "ser_ci_high_ns": 34647.69743589743, "deser_mean_ns": 26785.371794871793, "deser_median_ns": 26763.0, "deser_std_ns": 533.4117853034677, "deser_mad_ns": 334.5, "deser_cv": 0.01991429461530164, "deser_min_ns": 25615.0, "deser_max_ns": 28467.0, "deser_p5_ns": 25927.95, "deser_p25_ns": 26439.5, "deser_p50_ns": 26763.0, "deser_p75_ns": 27100.5, "deser_p95_ns": 27694.5, "deser_p99_ns": 28028.870000000003, "deser_ci_low_ns": 26672.181730769233, "deser_ci_high_ns": 26909.145512820513, "total_mean_ns": 61229.782051282054, "total_median_ns": 61255.0, "total_std_ns": 1293.5297389885109, "total_mad_ns": 742.0, "total_cv": 0.021125826283443817, "total_min_ns": 57944.0, "total_max_ns": 64312.0, "total_p5_ns": 59047.2, "total_p25_ns": 60473.0, "total_p50_ns": 61255.0, "total_p75_ns": 61924.75, "total_p95_ns": 63486.85, "total_p99_ns": 64229.61, "total_ci_low_ns": 60953.32692307692, "total_ci_high_ns": 61526.702884615384, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 62.43598498622095}, {"serializer": "BinaryCodable", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "4.0.0", "avg_time_ser_ns": 18322.8, "avg_time_deser_ns": 12864.1625, "avg_time_total_ns": 31186.9625, "median_size_bytes": 310.0, "avg_ops_per_sec": 32064.680874259553, "min_ops_per_sec": 30416.40052316209, "max_ops_per_sec": 34436.44753607218, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 18322.8, "ser_median_ns": 18318.5, "ser_std_ns": 530.1164285778185, "ser_mad_ns": 320.0, "ser_cv": 0.02893206434485005, "ser_min_ns": 17028.0, "ser_max_ns": 19460.0, "ser_p5_ns": 17321.05, "ser_p25_ns": 18014.5, "ser_p50_ns": 18318.5, "ser_p75_ns": 18697.5, "ser_p95_ns": 19164.8, "ser_p99_ns": 19339.129999999997, "ser_ci_low_ns": 18208.9996875, "ser_ci_high_ns": 18435.1565625, "deser_mean_ns": 12864.1625, "deser_median_ns": 12843.5, "deser_std_ns": 359.81765578052506, "deser_mad_ns": 239.5, "deser_cv": 0.027970546530372658, "deser_min_ns": 12011.0, "deser_max_ns": 13719.0, "deser_p5_ns": 12258.15, "deser_p25_ns": 12663.75, "deser_p50_ns": 12843.5, "deser_p75_ns": 13130.5, "deser_p95_ns": 13417.4, "deser_p99_ns": 13621.83, "deser_ci_low_ns": 12785.548125, "deser_ci_high_ns": 12939.3834375, "total_mean_ns": 31186.9625, "total_median_ns": 31189.5, "total_std_ns": 812.0157671935232, "total_mad_ns": 542.5, "total_cv": 0.026037026439927363, "total_min_ns": 29039.0, "total_max_ns": 32877.0, "total_p5_ns": 29830.15, "total_p25_ns": 30665.5, "total_p50_ns": 31189.5, "total_p75_ns": 31739.75, "total_p95_ns": 32463.85, "total_p99_ns": 32869.1, "total_ci_low_ns": 31014.904375, "total_ci_high_ns": 31365.0303125, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 46.091558117386796}, {"serializer": "Foundation.JSONEncoder", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 25815.219512195123, "avg_time_deser_ns": 24002.439024390245, "avg_time_total_ns": 49817.65853658537, "median_size_bytes": 663.0, "avg_ops_per_sec": 20073.20354620068, "min_ops_per_sec": 18537.74284443126, "max_ops_per_sec": 21973.675536707025, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 25815.219512195123, "ser_median_ns": 25569.5, "ser_std_ns": 1403.317462955833, "ser_mad_ns": 855.5, "ser_cv": 0.054360082520038426, "ser_min_ns": 23092.0, "ser_max_ns": 29293.0, "ser_p5_ns": 23821.15, "ser_p25_ns": 24860.75, "ser_p50_ns": 25569.5, "ser_p75_ns": 26476.25, "ser_p95_ns": 28681.100000000002, "ser_p99_ns": 28888.809999999998, "ser_ci_low_ns": 25522.74817073171, "ser_ci_high_ns": 26136.433231707317, "deser_mean_ns": 24002.439024390245, "deser_median_ns": 24036.0, "deser_std_ns": 715.861909877772, "deser_mad_ns": 464.5, "deser_cv": 0.029824548628176656, "deser_min_ns": 21889.0, "deser_max_ns": 25557.0, "deser_p5_ns": 22725.1, "deser_p25_ns": 23587.25, "deser_p50_ns": 24036.0, "deser_p75_ns": 24502.5, "deser_p95_ns": 25039.0, "deser_p99_ns": 25283.219999999998, "deser_ci_low_ns": 23846.2131097561, "deser_ci_high_ns": 24152.054268292686, "total_mean_ns": 49817.65853658537, "total_median_ns": 49605.0, "total_std_ns": 1890.334814027335, "total_mad_ns": 1325.5, "total_cv": 0.037945075492440104, "total_min_ns": 45509.0, "total_max_ns": 53944.0, "total_p5_ns": 46843.2, "total_p25_ns": 48352.25, "total_p50_ns": 49605.0, "total_p75_ns": 51062.0, "total_p95_ns": 53092.75, "total_p99_ns": 53773.9, "total_ci_low_ns": 49433.791768292685, "total_ci_high_ns": 50200.66341463415, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 33.94319173483616}, {"serializer": "TOML", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "2.0.0", "avg_time_ser_ns": 50413.89156626506, "avg_time_deser_ns": 55023.51807228916, "avg_time_total_ns": 105437.40963855422, "median_size_bytes": 694.0, "avg_ops_per_sec": 9484.299770148566, "min_ops_per_sec": 8780.093771401478, "max_ops_per_sec": 10388.854836531369, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 50413.89156626506, "ser_median_ns": 50441.0, "ser_std_ns": 2518.0689708102263, "ser_mad_ns": 1550.0, "ser_cv": 0.04994791896793812, "ser_min_ns": 44038.0, "ser_max_ns": 57107.0, "ser_p5_ns": 45955.7, "ser_p25_ns": 48953.5, "ser_p50_ns": 50441.0, "ser_p75_ns": 52010.5, "ser_p95_ns": 54455.7, "ser_p99_ns": 56824.1, "ser_ci_low_ns": 49882.62560240964, "ser_ci_high_ns": 50955.01686746988, "deser_mean_ns": 55023.51807228916, "deser_median_ns": 55307.0, "deser_std_ns": 1265.1994864538428, "deser_mad_ns": 731.0, "deser_cv": 0.02299379484953399, "deser_min_ns": 51677.0, "deser_max_ns": 58609.0, "deser_p5_ns": 52870.2, "deser_p25_ns": 54278.5, "deser_p50_ns": 55307.0, "deser_p75_ns": 55854.5, "deser_p95_ns": 56545.4, "deser_p99_ns": 58599.16, "deser_ci_low_ns": 54763.561144578314, "deser_ci_high_ns": 55293.76024096386, "total_mean_ns": 105437.40963855422, "total_median_ns": 105468.0, "total_std_ns": 3226.007844168652, "total_mad_ns": 2153.0, "total_cv": 0.030596425454946216, "total_min_ns": 96257.0, "total_max_ns": 113894.0, "total_p5_ns": 100056.9, "total_p25_ns": 103644.5, "total_p50_ns": 105468.0, "total_p75_ns": 107625.5, "total_p95_ns": 109863.5, "total_p99_ns": 113174.04, "total_ci_low_ns": 104732.97710843374, "total_ci_high_ns": 106113.44246987952, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 44.12279177401301}, {"serializer": "Foundation.PropertyListEncoder", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 28798.378048780487, "avg_time_deser_ns": 49442.829268292684, "avg_time_total_ns": 78241.20731707317, "median_size_bytes": 514.0, "avg_ops_per_sec": 12780.988871343605, "min_ops_per_sec": 11769.275130344722, "max_ops_per_sec": 14024.852037811, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 28798.378048780487, "ser_median_ns": 28836.5, "ser_std_ns": 1396.744288837826, "ser_mad_ns": 894.5, "ser_cv": 0.04850079704044212, "ser_min_ns": 25445.0, "ser_max_ns": 31886.0, "ser_p5_ns": 26603.5, "ser_p25_ns": 27848.25, "ser_p50_ns": 28836.5, "ser_p75_ns": 29581.0, "ser_p95_ns": 31116.5, "ser_p99_ns": 31852.79, "ser_ci_low_ns": 28486.034146341466, "ser_ci_high_ns": 29090.57682926829, "deser_mean_ns": 49442.829268292684, "deser_median_ns": 49521.0, "deser_std_ns": 1520.5125825525722, "deser_mad_ns": 906.5, "deser_cv": 0.030752944462417033, "deser_min_ns": 45857.0, "deser_max_ns": 53597.0, "deser_p5_ns": 46583.5, "deser_p25_ns": 48599.0, "deser_p50_ns": 49521.0, "deser_p75_ns": 50337.75, "deser_p95_ns": 52173.25, "deser_p99_ns": 53179.04, "deser_ci_low_ns": 49130.03658536586, "deser_ci_high_ns": 49772.15030487804, "total_mean_ns": 78241.20731707317, "total_median_ns": 78517.0, "total_std_ns": 2594.5283723651064, "total_mad_ns": 1475.0, "total_cv": 0.03316063825358366, "total_min_ns": 71302.0, "total_max_ns": 84967.0, "total_p5_ns": 74382.85, "total_p25_ns": 76510.75, "total_p50_ns": 78517.0, "total_p75_ns": 79479.25, "total_p95_ns": 82409.4, "total_p99_ns": 84476.95, "total_ci_low_ns": 77700.9268292683, "total_ci_high_ns": 78796.44725609756, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 40.21549602820768}, {"serializer": "SwiftProtobuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "1.38.1", "avg_time_ser_ns": 1958.6506024096386, "avg_time_deser_ns": 2203.289156626506, "avg_time_total_ns": 4161.939759036145, "median_size_bytes": 291.0, "avg_ops_per_sec": 240272.57910902295, "min_ops_per_sec": 214546.23471358078, "max_ops_per_sec": 271517.78441487916, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 1958.6506024096386, "ser_median_ns": 1967.0, "ser_std_ns": 108.08368863816908, "ser_mad_ns": 68.0, "ser_cv": 0.055182730654052665, "ser_min_ns": 1706.0, "ser_max_ns": 2252.0, "ser_p5_ns": 1755.0, "ser_p25_ns": 1900.0, "ser_p50_ns": 1967.0, "ser_p75_ns": 2034.0, "ser_p95_ns": 2138.7999999999997, "ser_p99_ns": 2204.4399999999996, "ser_ci_low_ns": 1936.2759036144578, "ser_ci_high_ns": 1980.928313253012, "deser_mean_ns": 2203.289156626506, "deser_median_ns": 2204.0, "deser_std_ns": 98.3234495664483, "deser_mad_ns": 67.0, "deser_cv": 0.04462575838978531, "deser_min_ns": 1932.0, "deser_max_ns": 2491.0, "deser_p5_ns": 2054.9, "deser_p25_ns": 2136.0, "deser_p50_ns": 2204.0, "deser_p75_ns": 2270.5, "deser_p95_ns": 2340.7999999999997, "deser_p99_ns": 2445.8999999999996, "deser_ci_low_ns": 2182.720481927711, "deser_ci_high_ns": 2223.9647590361446, "total_mean_ns": 4161.939759036145, "total_median_ns": 4161.0, "total_std_ns": 182.9373709569047, "total_mad_ns": 106.0, "total_cv": 0.04395483393523956, "total_min_ns": 3683.0, "total_max_ns": 4661.0, "total_p5_ns": 3878.2, "total_p25_ns": 4059.5, "total_p50_ns": 4161.0, "total_p75_ns": 4269.5, "total_p95_ns": 4458.799999999999, "total_p99_ns": 4596.219999999999, "total_ci_low_ns": 4122.344277108434, "total_ci_high_ns": 4198.281626506024, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "SwiftCbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "0.0.4", "avg_time_ser_ns": 34855.81176470588, "avg_time_deser_ns": 24264.894117647058, "avg_time_total_ns": 59120.705882352944, "median_size_bytes": 345.0, "avg_ops_per_sec": 16914.54770499437, "min_ops_per_sec": 15947.182930135392, "max_ops_per_sec": 17915.688768654712, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 34855.81176470588, "ser_median_ns": 34915.0, "ser_std_ns": 1014.8483993530599, "ser_mad_ns": 696.0, "ser_cv": 0.029115615100396824, "ser_min_ns": 32342.0, "ser_max_ns": 37123.0, "ser_p5_ns": 33315.2, "ser_p25_ns": 34148.0, "ser_p50_ns": 34915.0, "ser_p75_ns": 35504.0, "ser_p95_ns": 36575.6, "ser_p99_ns": 37014.64, "ser_ci_low_ns": 34643.33882352941, "ser_ci_high_ns": 35072.95617647059, "deser_mean_ns": 24264.894117647058, "deser_median_ns": 24248.0, "deser_std_ns": 547.4790933936027, "deser_mad_ns": 348.0, "deser_cv": 0.022562599726962715, "deser_min_ns": 23277.0, "deser_max_ns": 26102.0, "deser_p5_ns": 23502.0, "deser_p25_ns": 23806.0, "deser_p50_ns": 24248.0, "deser_p75_ns": 24502.0, "deser_p95_ns": 25227.0, "deser_p99_ns": 25629.92, "deser_ci_low_ns": 24154.16705882353, "deser_ci_high_ns": 24381.660588235292, "total_mean_ns": 59120.705882352944, "total_median_ns": 59064.0, "total_std_ns": 1417.2977207106674, "total_mad_ns": 1080.0, "total_cv": 0.023972949909140367, "total_min_ns": 55817.0, "total_max_ns": 62707.0, "total_p5_ns": 56793.2, "total_p25_ns": 58113.0, "total_p50_ns": 59064.0, "total_p75_ns": 60175.0, "total_p95_ns": 61348.4, "total_p99_ns": 62087.92, "total_ci_low_ns": 58809.88470588236, "total_ci_high_ns": 59403.59470588235, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 53.82914769175417}, {"serializer": "FlatBuffers", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "24.3.25", "avg_time_ser_ns": 4022.8101265822784, "avg_time_deser_ns": 3066.772151898734, "avg_time_total_ns": 7089.5822784810125, "median_size_bytes": 376.0, "avg_ops_per_sec": 141052.033916765, "min_ops_per_sec": 127258.84448969203, "max_ops_per_sec": 158328.05573147562, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 4022.8101265822784, "ser_median_ns": 4045.0, "ser_std_ns": 149.57144557713897, "ser_mad_ns": 75.0, "ser_cv": 0.037180836497548726, "ser_min_ns": 3672.0, "ser_max_ns": 4418.0, "ser_p5_ns": 3767.5, "ser_p25_ns": 3931.0, "ser_p50_ns": 4045.0, "ser_p75_ns": 4095.5, "ser_p95_ns": 4299.3, "ser_p99_ns": 4364.96, "ser_ci_low_ns": 3990.157278481013, "ser_ci_high_ns": 4054.4316455696203, "deser_mean_ns": 3066.772151898734, "deser_median_ns": 3049.0, "deser_std_ns": 219.57295086827585, "deser_mad_ns": 160.0, "deser_cv": 0.07159741252128281, "deser_min_ns": 2593.0, "deser_max_ns": 3534.0, "deser_p5_ns": 2744.3, "deser_p25_ns": 2897.5, "deser_p50_ns": 3049.0, "deser_p75_ns": 3220.0, "deser_p95_ns": 3434.7, "deser_p99_ns": 3513.72, "deser_ci_low_ns": 3019.746518987342, "deser_ci_high_ns": 3111.8924050632913, "total_mean_ns": 7089.5822784810125, "total_median_ns": 7106.0, "total_std_ns": 304.66882430343, "total_mad_ns": 211.0, "total_cv": 0.042974157339028325, "total_min_ns": 6316.0, "total_max_ns": 7858.0, "total_p5_ns": 6533.6, "total_p25_ns": 6878.0, "total_p50_ns": 7106.0, "total_p75_ns": 7311.5, "total_p95_ns": 7564.2, "total_p99_ns": 7684.84, "total_ci_low_ns": 7020.676898734177, "total_ci_high_ns": 7155.904746835443, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 11.664681254502828}, {"serializer": "SwiftAvroCore", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "2.3.0", "avg_time_ser_ns": 39656.67857142857, "avg_time_deser_ns": 16776.35714285714, "avg_time_total_ns": 56433.03571428572, "median_size_bytes": 288.0, "avg_ops_per_sec": 17720.11707934499, "min_ops_per_sec": 16161.093782827222, "max_ops_per_sec": 20048.51741213737, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 39656.67857142857, "ser_median_ns": 39892.5, "ser_std_ns": 2281.499676738301, "ser_mad_ns": 1333.0, "ser_cv": 0.05753128499223462, "ser_min_ns": 33829.0, "ser_max_ns": 44504.0, "ser_p5_ns": 35269.65, "ser_p25_ns": 38509.0, "ser_p50_ns": 39892.5, "ser_p75_ns": 41058.5, "ser_p95_ns": 43288.7, "ser_p99_ns": 43696.41, "ser_ci_low_ns": 39176.10297619048, "ser_ci_high_ns": 40114.114583333336, "deser_mean_ns": 16776.35714285714, "deser_median_ns": 16816.5, "deser_std_ns": 408.45818363657526, "deser_mad_ns": 289.5, "deser_cv": 0.024347251322703524, "deser_min_ns": 15751.0, "deser_max_ns": 17654.0, "deser_p5_ns": 16051.65, "deser_p25_ns": 16490.25, "deser_p50_ns": 16816.5, "deser_p75_ns": 17040.75, "deser_p95_ns": 17353.5, "deser_p99_ns": 17641.55, "deser_ci_low_ns": 16686.425, "deser_ci_high_ns": 16866.252083333333, "total_mean_ns": 56433.03571428572, "total_median_ns": 56625.0, "total_std_ns": 2534.3988828722886, "total_mad_ns": 1593.0, "total_cv": 0.0449098449302581, "total_min_ns": 49879.0, "total_max_ns": 61877.0, "total_p5_ns": 51711.05, "total_p25_ns": 54966.25, "total_p50_ns": 56625.0, "total_p75_ns": 57925.25, "total_p95_ns": 60128.35, "total_p99_ns": 61302.64, "total_ci_low_ns": 55913.71577380953, "total_ci_high_ns": 56964.81815476191, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.87307934063164}, {"serializer": "SwiftBSON", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "3.1.0", "avg_time_ser_ns": 44971.90243902439, "avg_time_deser_ns": 69781.17073170732, "avg_time_total_ns": 114753.0731707317, "median_size_bytes": 463.0, "avg_ops_per_sec": 8714.363566648728, "min_ops_per_sec": 8239.947264337508, "max_ops_per_sec": 9167.751517262875, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 44971.90243902439, "ser_median_ns": 44703.0, "ser_std_ns": 1368.1722385412463, "ser_mad_ns": 850.5, "ser_cv": 0.03042282323716006, "ser_min_ns": 42181.0, "ser_max_ns": 49101.0, "ser_p5_ns": 43072.2, "ser_p25_ns": 44002.25, "ser_p50_ns": 44703.0, "ser_p75_ns": 45647.0, "ser_p95_ns": 47393.35, "ser_p99_ns": 48465.15, "ser_ci_low_ns": 44684.27469512195, "ser_ci_high_ns": 45264.00853658537, "deser_mean_ns": 69781.17073170732, "deser_median_ns": 69793.5, "deser_std_ns": 1653.9586541839778, "deser_mad_ns": 1087.5, "deser_cv": 0.02370207660377427, "deser_min_ns": 65717.0, "deser_max_ns": 73704.0, "deser_p5_ns": 67304.05, "deser_p25_ns": 68811.25, "deser_p50_ns": 69793.5, "deser_p75_ns": 70914.5, "deser_p95_ns": 72301.75, "deser_p99_ns": 73625.43, "deser_ci_low_ns": 69429.35487804878, "deser_ci_high_ns": 70152.52134146342, "total_mean_ns": 114753.0731707317, "total_median_ns": 114759.0, "total_std_ns": 2526.628953986548, "total_mad_ns": 1518.5, "total_cv": 0.02201796330306016, "total_min_ns": 109078.0, "total_max_ns": 121360.0, "total_p5_ns": 110271.55, "total_p25_ns": 113275.25, "total_p50_ns": 114759.0, "total_p75_ns": 116282.25, "total_p95_ns": 118811.3, "total_p99_ns": 121014.94, "total_ci_low_ns": 114219.41463414633, "total_ci_high_ns": 115304.27103658537, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 61.64172629063131}, {"serializer": "CapnProto", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "capnproto-1.0.2", "avg_time_ser_ns": 12384.95, "avg_time_deser_ns": 7344.275, "avg_time_total_ns": 19729.225, "median_size_bytes": 344.0, "avg_ops_per_sec": 50686.22817165905, "min_ops_per_sec": 41252.42357988532, "max_ops_per_sec": 62960.39790971479, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 12384.95, "ser_median_ns": 12022.0, "ser_std_ns": 1336.1024547617046, "ser_mad_ns": 729.5, "ser_cv": 0.10788113434141475, "ser_min_ns": 9353.0, "ser_max_ns": 16070.0, "ser_p5_ns": 10772.85, "ser_p25_ns": 11528.0, "ser_p50_ns": 12022.0, "ser_p75_ns": 13046.75, "ser_p95_ns": 14944.55, "ser_p99_ns": 15541.489999999996, "ser_ci_low_ns": 12112.7784375, "ser_ci_high_ns": 12678.373125, "deser_mean_ns": 7344.275, "deser_median_ns": 7363.5, "deser_std_ns": 320.02191281776993, "deser_mad_ns": 164.5, "deser_cv": 0.04357433685663594, "deser_min_ns": 6530.0, "deser_max_ns": 8174.0, "deser_p5_ns": 6763.3, "deser_p25_ns": 7193.75, "deser_p50_ns": 7363.5, "deser_p75_ns": 7503.5, "deser_p95_ns": 7852.55, "deser_p99_ns": 8171.63, "deser_ci_low_ns": 7277.2825, "deser_ci_high_ns": 7411.664375, "total_mean_ns": 19729.225, "total_median_ns": 19473.0, "total_std_ns": 1585.5613067916788, "total_mad_ns": 902.5, "total_cv": 0.08036612217619693, "total_min_ns": 15883.0, "total_max_ns": 24241.0, "total_p5_ns": 17611.3, "total_p25_ns": 18711.75, "total_p50_ns": 19473.0, "total_p75_ns": 20602.0, "total_p95_ns": 22535.95, "total_p99_ns": 23484.179999999993, "total_ci_low_ns": 19389.27125, "total_ci_high_ns": 20069.732500000002, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.855377805816005}, {"serializer": "XMLCoder", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "0.18.2", "avg_time_ser_ns": 245601.15384615384, "avg_time_deser_ns": 243838.47252747254, "avg_time_total_ns": 489439.62637362635, "median_size_bytes": 1201.0, "avg_ops_per_sec": 2043.1529163448326, "min_ops_per_sec": 1958.9060684951096, "max_ops_per_sec": 2129.8619423488967, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 245601.15384615384, "ser_median_ns": 245296.0, "ser_std_ns": 4724.287974389079, "ser_mad_ns": 3065.0, "ser_cv": 0.019235609851199657, "ser_min_ns": 236371.0, "ser_max_ns": 258337.0, "ser_p5_ns": 238676.0, "ser_p25_ns": 242266.5, "ser_p50_ns": 245296.0, "ser_p75_ns": 248263.0, "ser_p95_ns": 253867.0, "ser_p99_ns": 257958.1, "ser_ci_low_ns": 244665.8447802198, "ser_ci_high_ns": 246543.82554945056, "deser_mean_ns": 243838.47252747254, "deser_median_ns": 243461.0, "deser_std_ns": 5149.228924672248, "deser_mad_ns": 3185.0, "deser_cv": 0.021117376890113598, "deser_min_ns": 231641.0, "deser_max_ns": 256372.0, "deser_p5_ns": 236021.0, "deser_p25_ns": 240608.5, "deser_p50_ns": 243461.0, "deser_p75_ns": 246849.0, "deser_p95_ns": 252184.0, "deser_p99_ns": 256085.8, "deser_ci_low_ns": 242781.2892857143, "deser_ci_high_ns": 244885.54945054944, "total_mean_ns": 489439.62637362635, "total_median_ns": 488149.0, "total_std_ns": 8460.324332695987, "total_mad_ns": 5697.0, "total_cv": 0.01728573633357096, "total_min_ns": 469514.0, "total_max_ns": 510489.0, "total_p5_ns": 475426.0, "total_p25_ns": 484194.0, "total_p50_ns": 488149.0, "total_p75_ns": 494127.5, "total_p95_ns": 504810.5, "total_p99_ns": 509486.39999999997, "total_ci_low_ns": 487681.96620879124, "total_ci_high_ns": 491223.2370879121, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 78.93200963429885}, {"serializer": "SwiftAvroCore", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "2.3.0", "avg_time_ser_ns": 61026.21951219512, "avg_time_deser_ns": 18259.719512195123, "avg_time_total_ns": 79285.93902439025, "median_size_bytes": 288.0, "avg_ops_per_sec": 12612.576861735548, "min_ops_per_sec": 11344.556881608205, "max_ops_per_sec": 13875.206393695105, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 61026.21951219512, "ser_median_ns": 60686.0, "ser_std_ns": 2858.987833604927, "ser_mad_ns": 1884.5, "ser_cv": 0.04684851620267258, "ser_min_ns": 55081.0, "ser_max_ns": 69305.0, "ser_p5_ns": 56833.35, "ser_p25_ns": 59008.5, "ser_p50_ns": 60686.0, "ser_p75_ns": 62764.0, "ser_p95_ns": 65414.5, "ser_p99_ns": 69147.05, "ser_ci_low_ns": 60445.19542682927, "ser_ci_high_ns": 61635.9875, "deser_mean_ns": 18259.719512195123, "deser_median_ns": 18248.0, "deser_std_ns": 522.1176319469421, "deser_mad_ns": 348.0, "deser_cv": 0.028593956856688585, "deser_min_ns": 16869.0, "deser_max_ns": 19603.0, "deser_p5_ns": 17348.05, "deser_p25_ns": 17953.5, "deser_p50_ns": 18248.0, "deser_p75_ns": 18639.75, "deser_p95_ns": 19028.5, "deser_p99_ns": 19262.8, "deser_ci_low_ns": 18143.644207317077, "deser_ci_high_ns": 18377.41493902439, "total_mean_ns": 79285.93902439025, "total_median_ns": 78990.5, "total_std_ns": 3206.018284905695, "total_mad_ns": 2109.0, "total_cv": 0.040436152038502655, "total_min_ns": 72071.0, "total_max_ns": 88148.0, "total_p5_ns": 74492.25, "total_p25_ns": 77297.5, "total_p50_ns": 78990.5, "total_p75_ns": 81296.5, "total_p95_ns": 84572.15000000001, "total_p99_ns": 87452.20999999999, "total_ci_low_ns": 78596.74695121951, "total_ci_high_ns": 79972.59786585365, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.760954164389325}, {"serializer": "Yams", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "5.4.0", "avg_time_ser_ns": 378716.94444444444, "avg_time_deser_ns": 136027.6888888889, "avg_time_total_ns": 514744.63333333336, "median_size_bytes": 767.0, "avg_ops_per_sec": 1942.710880780431, "min_ops_per_sec": 1825.963743663906, "max_ops_per_sec": 2077.0243718039787, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 378716.94444444444, "ser_median_ns": 378389.5, "ser_std_ns": 9531.002091178421, "ser_mad_ns": 6913.0, "ser_cv": 0.025166558378209993, "ser_min_ns": 353706.0, "ser_max_ns": 403352.0, "ser_p5_ns": 365543.85, "ser_p25_ns": 372094.75, "ser_p50_ns": 378389.5, "ser_p75_ns": 385580.0, "ser_p95_ns": 393437.55, "ser_p99_ns": 400806.6, "ser_ci_low_ns": 376719.9188888889, "ser_ci_high_ns": 380674.335, "deser_mean_ns": 136027.6888888889, "deser_median_ns": 135750.5, "deser_std_ns": 3246.895255624787, "deser_mad_ns": 1884.0, "deser_cv": 0.02386937014181678, "deser_min_ns": 127752.0, "deser_max_ns": 144893.0, "deser_p5_ns": 131893.0, "deser_p25_ns": 133922.0, "deser_p50_ns": 135750.5, "deser_p75_ns": 137638.0, "deser_p95_ns": 142353.1, "deser_p99_ns": 144368.79, "deser_ci_low_ns": 135351.8322222222, "deser_ci_high_ns": 136705.43666666668, "total_mean_ns": 514744.63333333336, "total_median_ns": 514861.0, "total_std_ns": 11159.049869394814, "total_mad_ns": 8033.5, "total_cv": 0.02167880760044475, "total_min_ns": 481458.0, "total_max_ns": 547656.0, "total_p5_ns": 499145.4, "total_p25_ns": 506789.75, "total_p50_ns": 514861.0, "total_p75_ns": 522247.25, "total_p95_ns": 532078.1, "total_p99_ns": 539193.88, "total_ci_low_ns": 512465.95722222223, "total_ci_high_ns": 516912.1263888889, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 59.7408031459612}, {"serializer": "SwiftBSON", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "3.1.0", "avg_time_ser_ns": 76831.8735632184, "avg_time_deser_ns": 70704.55172413793, "avg_time_total_ns": 147536.4252873563, "median_size_bytes": 463.0, "avg_ops_per_sec": 6777.987185553009, "min_ops_per_sec": 6422.4013358594775, "max_ops_per_sec": 7148.72931336455, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 76831.8735632184, "ser_median_ns": 76687.0, "ser_std_ns": 1882.484304913711, "ser_mad_ns": 1236.0, "ser_cv": 0.02450134582966762, "ser_min_ns": 72217.0, "ser_max_ns": 82147.0, "ser_p5_ns": 74171.5, "ser_p25_ns": 75471.5, "ser_p50_ns": 76687.0, "ser_p75_ns": 77978.0, "ser_p95_ns": 80079.5, "ser_p99_ns": 81492.54, "ser_ci_low_ns": 76442.20316091954, "ser_ci_high_ns": 77236.22844827586, "deser_mean_ns": 70704.55172413793, "deser_median_ns": 70555.0, "deser_std_ns": 1493.0415869737312, "deser_mad_ns": 953.0, "deser_cv": 0.0211166261657242, "deser_min_ns": 66873.0, "deser_max_ns": 74520.0, "deser_p5_ns": 68154.8, "deser_p25_ns": 69859.5, "deser_p50_ns": 70555.0, "deser_p75_ns": 71872.5, "deser_p95_ns": 72809.2, "deser_p99_ns": 74459.8, "deser_ci_low_ns": 70404.21206896553, "deser_ci_high_ns": 71022.50431034483, "total_mean_ns": 147536.4252873563, "total_median_ns": 147597.0, "total_std_ns": 3078.0289360207485, "total_mad_ns": 2116.0, "total_cv": 0.020862840685109997, "total_min_ns": 139885.0, "total_max_ns": 155705.0, "total_p5_ns": 142218.3, "total_p25_ns": 145505.5, "total_p50_ns": 147597.0, "total_p75_ns": 149711.5, "total_p95_ns": 152854.2, "total_p99_ns": 153958.34, "total_ci_low_ns": 146903.2879310345, "total_ci_high_ns": 148162.5537356322, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 51.12259024841839}, {"serializer": "XMLCoder", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "0.18.2", "avg_time_ser_ns": 324715.3181818182, "avg_time_deser_ns": 243078.23863636365, "avg_time_total_ns": 567793.5568181818, "median_size_bytes": 1201.0, "avg_ops_per_sec": 1761.203500800237, "min_ops_per_sec": 1710.170555309481, "max_ops_per_sec": 1823.0443747231252, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 324715.3181818182, "ser_median_ns": 325529.5, "ser_std_ns": 5128.048309134289, "ser_mad_ns": 3637.5, "ser_cv": 0.015792443478945876, "ser_min_ns": 315883.0, "ser_max_ns": 337035.0, "ser_p5_ns": 317033.15, "ser_p25_ns": 319953.75, "ser_p50_ns": 325529.5, "ser_p75_ns": 328492.75, "ser_p95_ns": 332638.95, "ser_p99_ns": 336122.37, "ser_ci_low_ns": 323637.075, "ser_ci_high_ns": 325831.31875000003, "deser_mean_ns": 243078.23863636365, "deser_median_ns": 243470.5, "deser_std_ns": 4782.564458997608, "deser_mad_ns": 3122.0, "deser_cv": 0.01967500046827373, "deser_min_ns": 232095.0, "deser_max_ns": 256129.0, "deser_p5_ns": 234990.55, "deser_p25_ns": 239922.25, "deser_p50_ns": 243470.5, "deser_p75_ns": 246379.75, "deser_p95_ns": 249804.5, "deser_p99_ns": 256088.98, "deser_ci_low_ns": 242103.73636363636, "deser_ci_high_ns": 244100.453125, "total_mean_ns": 567793.5568181818, "total_median_ns": 567434.0, "total_std_ns": 8112.745901709242, "total_mad_ns": 6025.5, "total_cv": 0.014288196483193093, "total_min_ns": 548533.0, "total_max_ns": 584737.0, "total_p5_ns": 556248.2, "total_p25_ns": 562381.0, "total_p50_ns": 567434.0, "total_p75_ns": 573526.0, "total_p95_ns": 581133.05, "total_p99_ns": 584663.92, "total_ci_low_ns": 566005.3073863636, "total_ci_high_ns": 569404.6642045454, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 91.1779187365377}, {"serializer": "BinaryCodable", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "4.0.0", "avg_time_ser_ns": 40924.76829268293, "avg_time_deser_ns": 13923.134146341463, "avg_time_total_ns": 54847.90243902439, "median_size_bytes": 310.0, "avg_ops_per_sec": 18232.237798186026, "min_ops_per_sec": 17034.033999931864, "max_ops_per_sec": 19571.00360106466, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 40924.76829268293, "ser_median_ns": 40578.0, "ser_std_ns": 1277.470816257515, "ser_mad_ns": 641.5, "ser_cv": 0.031215101992059856, "ser_min_ns": 38315.0, "ser_max_ns": 44580.0, "ser_p5_ns": 39423.7, "ser_p25_ns": 40091.75, "ser_p50_ns": 40578.0, "ser_p75_ns": 41362.25, "ser_p95_ns": 43332.35, "ser_p99_ns": 44326.47, "ser_ci_low_ns": 40649.44512195122, "ser_ci_high_ns": 41205.59329268293, "deser_mean_ns": 13923.134146341463, "deser_median_ns": 13974.5, "deser_std_ns": 415.32327917784727, "deser_mad_ns": 275.5, "deser_cv": 0.029829726181800843, "deser_min_ns": 12781.0, "deser_max_ns": 14839.0, "deser_p5_ns": 13267.65, "deser_p25_ns": 13651.75, "deser_p50_ns": 13974.5, "deser_p75_ns": 14201.5, "deser_p95_ns": 14534.8, "deser_p99_ns": 14709.4, "deser_ci_low_ns": 13834.060365853658, "deser_ci_high_ns": 14012.31768292683, "total_mean_ns": 54847.90243902439, "total_median_ns": 54739.5, "total_std_ns": 1541.7596937679073, "total_mad_ns": 921.0, "total_cv": 0.028109729364434954, "total_min_ns": 51096.0, "total_max_ns": 58706.0, "total_p5_ns": 52792.1, "total_p25_ns": 53814.75, "total_p50_ns": 54739.5, "total_p75_ns": 55547.25, "total_p95_ns": 57654.7, "total_p99_ns": 58465.43, "total_ci_low_ns": 54503.92317073171, "total_ci_high_ns": 55186.83445121951, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 20.688890932132857}, {"serializer": "SwiftCbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "0.0.4", "avg_time_ser_ns": 60132.35, "avg_time_deser_ns": 25369.7, "avg_time_total_ns": 85502.05, "median_size_bytes": 345.0, "avg_ops_per_sec": 11695.626011306162, "min_ops_per_sec": 10854.698999196753, "max_ops_per_sec": 12499.062570307227, "runs": 80, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 19, "ser_mean_ns": 60132.35, "ser_median_ns": 59775.5, "ser_std_ns": 1931.7954795173177, "ser_mad_ns": 1109.5, "ser_cv": 0.03212572732509735, "ser_min_ns": 56009.0, "ser_max_ns": 65222.0, "ser_p5_ns": 57550.55, "ser_p25_ns": 58747.0, "ser_p50_ns": 59775.5, "ser_p75_ns": 61380.25, "ser_p95_ns": 63482.049999999996, "ser_p99_ns": 64826.21, "ser_ci_low_ns": 59732.3465625, "ser_ci_high_ns": 60555.9725, "deser_mean_ns": 25369.7, "deser_median_ns": 25405.0, "deser_std_ns": 559.0143993978842, "deser_mad_ns": 409.5, "deser_cv": 0.022034726441301403, "deser_min_ns": 23923.0, "deser_max_ns": 26904.0, "deser_p5_ns": 24468.55, "deser_p25_ns": 24963.5, "deser_p50_ns": 25405.0, "deser_p75_ns": 25673.0, "deser_p95_ns": 26286.9, "deser_p99_ns": 26670.16, "deser_ci_low_ns": 25244.5925, "deser_ci_high_ns": 25494.891875, "total_mean_ns": 85502.05, "total_median_ns": 85425.0, "total_std_ns": 2361.7233511446198, "total_mad_ns": 1552.0, "total_cv": 0.02762183305715617, "total_min_ns": 80006.0, "total_max_ns": 92126.0, "total_p5_ns": 82146.7, "total_p25_ns": 83848.5, "total_p50_ns": 85425.0, "total_p75_ns": 86928.25, "total_p95_ns": 89589.75, "total_p99_ns": 91286.23, "total_ci_low_ns": 85004.8878125, "total_ci_high_ns": 86029.6371875, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 31.639278971904055}, {"serializer": "Foundation.PropertyListEncoder", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 64397.22093023256, "avg_time_deser_ns": 50608.40697674418, "avg_time_total_ns": 115005.62790697675, "median_size_bytes": 514.0, "avg_ops_per_sec": 8695.226644115697, "min_ops_per_sec": 8063.150595463671, "max_ops_per_sec": 9248.640449853872, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 64397.22093023256, "ser_median_ns": 63802.5, "ser_std_ns": 2189.246517713681, "ser_mad_ns": 1182.5, "ser_cv": 0.03399597818181461, "ser_min_ns": 60844.0, "ser_max_ns": 71082.0, "ser_p5_ns": 61790.75, "ser_p25_ns": 62947.75, "ser_p50_ns": 63802.5, "ser_p75_ns": 65590.25, "ser_p95_ns": 68239.25, "ser_p99_ns": 70980.0, "ser_ci_low_ns": 63960.43953488372, "ser_ci_high_ns": 64909.02558139535, "deser_mean_ns": 50608.40697674418, "deser_median_ns": 50739.0, "deser_std_ns": 1278.4773883105406, "deser_mad_ns": 858.5, "deser_cv": 0.02526215434716277, "deser_min_ns": 47280.0, "deser_max_ns": 54003.0, "deser_p5_ns": 48733.0, "deser_p25_ns": 49840.5, "deser_p50_ns": 50739.0, "deser_p75_ns": 51457.75, "deser_p95_ns": 52463.0, "deser_p99_ns": 53486.200000000004, "deser_ci_low_ns": 50327.651162790695, "deser_ci_high_ns": 50876.6273255814, "total_mean_ns": 115005.62790697675, "total_median_ns": 114508.5, "total_std_ns": 3117.9033832010805, "total_mad_ns": 1948.0, "total_cv": 0.02711087657138851, "total_min_ns": 108124.0, "total_max_ns": 124021.0, "total_p5_ns": 110606.75, "total_p25_ns": 113241.0, "total_p50_ns": 114508.5, "total_p75_ns": 116838.0, "total_p95_ns": 120025.0, "total_p99_ns": 123040.1, "total_ci_low_ns": 114381.44796511628, "total_ci_high_ns": 115685.38808139534, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 37.04558716545778}, {"serializer": "IkigaJSON", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "2.5.3", "avg_time_ser_ns": 66872.21126760563, "avg_time_deser_ns": 24115.436619718308, "avg_time_total_ns": 90987.64788732394, "median_size_bytes": 663.0, "avg_ops_per_sec": 10990.502812407753, "min_ops_per_sec": 10361.942657009336, "max_ops_per_sec": 11345.715290620497, "runs": 71, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 28, "ser_mean_ns": 66872.21126760563, "ser_median_ns": 66568.0, "ser_std_ns": 1634.0951005328645, "ser_mad_ns": 1065.0, "ser_cv": 0.02443608592504337, "ser_min_ns": 64827.0, "ser_max_ns": 71905.0, "ser_p5_ns": 65130.0, "ser_p25_ns": 65521.0, "ser_p50_ns": 66568.0, "ser_p75_ns": 67647.0, "ser_p95_ns": 70380.5, "ser_p99_ns": 71900.8, "ser_ci_low_ns": 66506.46584507042, "ser_ci_high_ns": 67259.24683098591, "deser_mean_ns": 24115.436619718308, "deser_median_ns": 24099.0, "deser_std_ns": 483.8101673884194, "deser_mad_ns": 249.0, "deser_cv": 0.020062260328010218, "deser_min_ns": 22916.0, "deser_max_ns": 25355.0, "deser_p5_ns": 23386.0, "deser_p25_ns": 23860.5, "deser_p50_ns": 24099.0, "deser_p75_ns": 24344.0, "deser_p95_ns": 24944.0, "deser_p99_ns": 25313.0, "deser_ci_low_ns": 24004.143309859155, "deser_ci_high_ns": 24228.25704225352, "total_mean_ns": 90987.64788732394, "total_median_ns": 90638.0, "total_std_ns": 1854.3768233066608, "total_mad_ns": 1157.0, "total_cv": 0.020380533691815608, "total_min_ns": 88139.0, "total_max_ns": 96507.0, "total_p5_ns": 88984.0, "total_p25_ns": 89592.5, "total_p50_ns": 90638.0, "total_p75_ns": 91979.0, "total_p95_ns": 94462.0, "total_p99_ns": 96268.3, "total_ci_low_ns": 90591.49718309859, "total_ci_high_ns": 91444.76795774647, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 42.1073194177458}, {"serializer": "CapnProto", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "capnproto-1.0.2", "avg_time_ser_ns": 36381.69512195122, "avg_time_deser_ns": 8724.390243902439, "avg_time_total_ns": 45106.08536585366, "median_size_bytes": 344.0, "avg_ops_per_sec": 22169.957598604266, "min_ops_per_sec": 20236.36069289299, "max_ops_per_sec": 24503.79808870375, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 36381.69512195122, "ser_median_ns": 36306.0, "ser_std_ns": 1412.1973045185616, "ser_mad_ns": 857.0, "ser_cv": 0.03881614915921001, "ser_min_ns": 33082.0, "ser_max_ns": 40071.0, "ser_p5_ns": 34469.15, "ser_p25_ns": 35442.0, "ser_p50_ns": 36306.0, "ser_p75_ns": 37083.5, "ser_p95_ns": 39062.85, "ser_p99_ns": 40036.98, "ser_ci_low_ns": 36087.641158536586, "ser_ci_high_ns": 36689.92591463414, "deser_mean_ns": 8724.390243902439, "deser_median_ns": 8707.5, "deser_std_ns": 373.6961780429262, "deser_mad_ns": 226.5, "deser_cv": 0.04283350097780256, "deser_min_ns": 7728.0, "deser_max_ns": 9836.0, "deser_p5_ns": 8036.45, "deser_p25_ns": 8533.75, "deser_p50_ns": 8707.5, "deser_p75_ns": 8986.25, "deser_p95_ns": 9218.95, "deser_p99_ns": 9438.289999999999, "deser_ci_low_ns": 8644.859451219512, "deser_ci_high_ns": 8801.564329268293, "total_mean_ns": 45106.08536585366, "total_median_ns": 44914.0, "total_std_ns": 1706.9159120748477, "total_mad_ns": 998.0, "total_cv": 0.0378422533950823, "total_min_ns": 40810.0, "total_max_ns": 49416.0, "total_p5_ns": 42443.95, "total_p25_ns": 43992.5, "total_p50_ns": 44914.0, "total_p75_ns": 46016.25, "total_p95_ns": 48052.9, "total_p99_ns": 49087.14, "total_ci_low_ns": 44745.66951219512, "total_ci_high_ns": 45469.3118902439, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 12.708742088389885}, {"serializer": "Foundation.JSONEncoder", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 70892.74666666667, "avg_time_deser_ns": 24976.92, "avg_time_total_ns": 95869.66666666667, "median_size_bytes": 663.0, "avg_ops_per_sec": 10430.827964354383, "min_ops_per_sec": 9677.918860328275, "max_ops_per_sec": 11002.189435697705, "runs": 75, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 24, "ser_mean_ns": 70892.74666666667, "ser_median_ns": 70687.0, "ser_std_ns": 2101.719251787292, "ser_mad_ns": 1461.0, "ser_cv": 0.029646463857148125, "ser_min_ns": 67818.0, "ser_max_ns": 77409.0, "ser_p5_ns": 68217.8, "ser_p25_ns": 69249.0, "ser_p50_ns": 70687.0, "ser_p75_ns": 72199.0, "ser_p95_ns": 74332.9, "ser_p99_ns": 76547.64, "ser_ci_low_ns": 70427.70300000001, "ser_ci_high_ns": 71362.22133333333, "deser_mean_ns": 24976.92, "deser_median_ns": 24963.0, "deser_std_ns": 696.9221283421649, "deser_mad_ns": 426.0, "deser_cv": 0.02790264485541712, "deser_min_ns": 23073.0, "deser_max_ns": 27190.0, "deser_p5_ns": 23837.5, "deser_p25_ns": 24596.5, "deser_p50_ns": 24963.0, "deser_p75_ns": 25400.0, "deser_p95_ns": 26083.8, "deser_p99_ns": 26489.220000000005, "deser_ci_low_ns": 24810.388333333332, "deser_ci_high_ns": 25125.097333333335, "total_mean_ns": 95869.66666666667, "total_median_ns": 95948.0, "total_std_ns": 2532.2790788799985, "total_mad_ns": 1666.0, "total_cv": 0.026413767429531047, "total_min_ns": 90891.0, "total_max_ns": 103328.0, "total_p5_ns": 92394.9, "total_p25_ns": 94217.5, "total_p50_ns": 95948.0, "total_p75_ns": 97274.0, "total_p95_ns": 100289.3, "total_p99_ns": 102591.70000000001, "total_ci_low_ns": 95326.91166666667, "total_ci_high_ns": 96439.209, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 35.51787462779482}, {"serializer": "TOML", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "2.0.0", "avg_time_ser_ns": 96719.30952380953, "avg_time_deser_ns": 56169.119047619046, "avg_time_total_ns": 152888.42857142858, "median_size_bytes": 694.0, "avg_ops_per_sec": 6540.71736719307, "min_ops_per_sec": 6160.93596939247, "max_ops_per_sec": 6990.367273896571, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 96719.30952380953, "ser_median_ns": 96540.5, "ser_std_ns": 3362.2310076530835, "ser_mad_ns": 2449.0, "ser_cv": 0.0347627689259444, "ser_min_ns": 89972.0, "ser_max_ns": 105452.0, "ser_p5_ns": 91473.2, "ser_p25_ns": 94166.75, "ser_p50_ns": 96540.5, "ser_p75_ns": 99019.25, "ser_p95_ns": 102932.45, "ser_p99_ns": 104713.3, "ser_ci_low_ns": 96004.19791666666, "ser_ci_high_ns": 97424.13363095238, "deser_mean_ns": 56169.119047619046, "deser_median_ns": 56257.5, "deser_std_ns": 1374.7749818487223, "deser_mad_ns": 894.0, "deser_cv": 0.0244756372390889, "deser_min_ns": 52967.0, "deser_max_ns": 59242.0, "deser_p5_ns": 53893.45, "deser_p25_ns": 55430.0, "deser_p50_ns": 56257.5, "deser_p75_ns": 57171.75, "deser_p95_ns": 58099.15, "deser_p99_ns": 59074.340000000004, "deser_ci_low_ns": 55861.97529761904, "deser_ci_high_ns": 56450.29761904762, "total_mean_ns": 152888.42857142858, "total_median_ns": 152794.5, "total_std_ns": 4372.742968335281, "total_mad_ns": 3110.0, "total_cv": 0.028600875875261948, "total_min_ns": 143054.0, "total_max_ns": 162313.0, "total_p5_ns": 146239.85, "total_p25_ns": 149824.75, "total_p50_ns": 152794.5, "total_p75_ns": 155888.25, "total_p95_ns": 160434.35, "total_p99_ns": 162304.7, "total_ci_low_ns": 151954.4011904762, "total_ci_high_ns": 153792.52053571428, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 39.02950272863012}, {"serializer": "SwiftProtobuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "1.38.1", "avg_time_ser_ns": 22993.14814814815, "avg_time_deser_ns": 3440.5555555555557, "avg_time_total_ns": 26433.703703703704, "median_size_bytes": 291.0, "avg_ops_per_sec": 37830.491376049096, "min_ops_per_sec": 33739.32993690745, "max_ops_per_sec": 40141.29736673089, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 22993.14814814815, "ser_median_ns": 22604.0, "ser_std_ns": 1045.4255606104998, "ser_mad_ns": 352.0, "ser_cv": 0.045466830112808956, "ser_min_ns": 21811.0, "ser_max_ns": 25890.0, "ser_p5_ns": 22069.0, "ser_p25_ns": 22326.0, "ser_p50_ns": 22604.0, "ser_p75_ns": 23133.0, "ser_p95_ns": 25313.0, "ser_p99_ns": 25798.0, "ser_ci_low_ns": 22771.18364197531, "ser_ci_high_ns": 23226.41172839506, "deser_mean_ns": 3440.5555555555557, "deser_median_ns": 3440.0, "deser_std_ns": 171.93814294681678, "deser_mad_ns": 115.0, "deser_cv": 0.049973947570526436, "deser_min_ns": 3083.0, "deser_max_ns": 3898.0, "deser_p5_ns": 3139.0, "deser_p25_ns": 3326.0, "deser_p50_ns": 3440.0, "deser_p75_ns": 3555.0, "deser_p95_ns": 3749.0, "deser_p99_ns": 3783.6000000000004, "deser_ci_low_ns": 3403.8533950617284, "deser_ci_high_ns": 3479.0938271604937, "total_mean_ns": 26433.703703703704, "total_median_ns": 25981.0, "total_std_ns": 1163.605683258341, "total_mad_ns": 365.0, "total_cv": 0.044019774765626386, "total_min_ns": 24912.0, "total_max_ns": 29639.0, "total_p5_ns": 25383.0, "total_p25_ns": 25696.0, "total_p50_ns": 25981.0, "total_p75_ns": 26734.0, "total_p95_ns": 29064.0, "total_p99_ns": 29459.8, "total_ci_low_ns": 26186.626543209877, "total_ci_high_ns": 26687.61913580247, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "SwiftMsgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "1.2.1", "avg_time_ser_ns": 59507.27848101266, "avg_time_deser_ns": 28157.3417721519, "avg_time_total_ns": 87664.62025316455, "median_size_bytes": 346.0, "avg_ops_per_sec": 11407.110384008098, "min_ops_per_sec": 10627.670202138288, "max_ops_per_sec": 12229.872687025329, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 59507.27848101266, "ser_median_ns": 59180.0, "ser_std_ns": 1743.984113494369, "ser_mad_ns": 973.0, "ser_cv": 0.029307072311344776, "ser_min_ns": 55568.0, "ser_max_ns": 64529.0, "ser_p5_ns": 57454.5, "ser_p25_ns": 58417.0, "ser_p50_ns": 59180.0, "ser_p75_ns": 60298.0, "ser_p95_ns": 63117.5, "ser_p99_ns": 64411.22, "ser_ci_low_ns": 59142.09905063291, "ser_ci_high_ns": 59876.32911392405, "deser_mean_ns": 28157.3417721519, "deser_median_ns": 28084.0, "deser_std_ns": 766.9971230861692, "deser_mad_ns": 351.0, "deser_cv": 0.027239685098567886, "deser_min_ns": 26199.0, "deser_max_ns": 30733.0, "deser_p5_ns": 27062.9, "deser_p25_ns": 27788.5, "deser_p50_ns": 28084.0, "deser_p75_ns": 28508.0, "deser_p95_ns": 29599.1, "deser_p99_ns": 30214.3, "deser_ci_low_ns": 27985.36930379747, "deser_ci_high_ns": 28335.407278481012, "total_mean_ns": 87664.62025316455, "total_median_ns": 87497.0, "total_std_ns": 2231.16659323414, "total_mad_ns": 1248.0, "total_cv": 0.02545116361413313, "total_min_ns": 81767.0, "total_max_ns": 94094.0, "total_p5_ns": 84591.2, "total_p25_ns": 86248.0, "total_p50_ns": 87497.0, "total_p75_ns": 88709.0, "total_p95_ns": 91769.7, "total_p99_ns": 93515.24, "total_ci_low_ns": 87167.6161392405, "total_ci_high_ns": 88151.0579113924, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 34.373336142281275}, {"serializer": "FlatBuffers", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "24.3.25", "avg_time_ser_ns": 30428.571428571428, "avg_time_deser_ns": 4204.833333333333, "avg_time_total_ns": 34633.40476190476, "median_size_bytes": 376.0, "avg_ops_per_sec": 28873.857678005614, "min_ops_per_sec": 26106.934001670845, "max_ops_per_sec": 31024.10573015233, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 30428.571428571428, "ser_median_ns": 30216.5, "ser_std_ns": 951.8967151336703, "ser_mad_ns": 582.0, "ser_cv": 0.03128299063819574, "ser_min_ns": 28780.0, "ser_max_ns": 33460.0, "ser_p5_ns": 29330.7, "ser_p25_ns": 29698.75, "ser_p50_ns": 30216.5, "ser_p75_ns": 30922.25, "ser_p95_ns": 32230.75, "ser_p99_ns": 33188.590000000004, "ser_ci_low_ns": 30234.62648809524, "ser_ci_high_ns": 30633.504166666666, "deser_mean_ns": 4204.833333333333, "deser_median_ns": 4217.5, "deser_std_ns": 285.8049648128013, "deser_mad_ns": 219.5, "deser_cv": 0.06797058103281176, "deser_min_ns": 3453.0, "deser_max_ns": 5171.0, "deser_p5_ns": 3767.05, "deser_p25_ns": 3993.0, "deser_p50_ns": 4217.5, "deser_p75_ns": 4403.25, "deser_p95_ns": 4606.6, "deser_p99_ns": 4795.010000000001, "deser_ci_low_ns": 4145.308630952381, "deser_ci_high_ns": 4266.715476190476, "total_mean_ns": 34633.40476190476, "total_median_ns": 34367.0, "total_std_ns": 1152.912666825397, "total_mad_ns": 619.0, "total_cv": 0.033289036257086416, "total_min_ns": 32233.0, "total_max_ns": 38304.0, "total_p5_ns": 33162.25, "total_p25_ns": 33850.75, "total_p50_ns": 34367.0, "total_p75_ns": 35256.5, "total_p95_ns": 36658.299999999996, "total_p99_ns": 38050.020000000004, "total_ci_low_ns": 34397.818452380954, "total_ci_high_ns": 34886.69494047619, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.04723184300728}, {"serializer": "CapnProto", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "capnproto-1.0.2", "avg_time_ser_ns": 182105.33333333334, "avg_time_deser_ns": 251258.88095238095, "avg_time_total_ns": 433364.21428571426, "median_size_bytes": 35728.0, "avg_ops_per_sec": 2307.527864635141, "min_ops_per_sec": 1981.634214103687, "max_ops_per_sec": 2707.1585393255386, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 182105.33333333334, "ser_median_ns": 178762.0, "ser_std_ns": 15850.308133779068, "ser_mad_ns": 6919.0, "ser_cv": 0.08703923077731057, "ser_min_ns": 144527.0, "ser_max_ns": 223808.0, "ser_p5_ns": 154515.65, "ser_p25_ns": 174374.0, "ser_p50_ns": 178762.0, "ser_p75_ns": 191941.25, "ser_p95_ns": 212050.05, "ser_p99_ns": 222577.11000000002, "ser_ci_low_ns": 178786.56011904762, "ser_ci_high_ns": 185450.28630952383, "deser_mean_ns": 251258.88095238095, "deser_median_ns": 249546.0, "deser_std_ns": 10636.678220949356, "deser_mad_ns": 3996.5, "deser_cv": 0.04233354132849632, "deser_min_ns": 224864.0, "deser_max_ns": 281265.0, "deser_p5_ns": 235619.65, "deser_p25_ns": 245892.25, "deser_p50_ns": 249546.0, "deser_p75_ns": 255218.0, "deser_p95_ns": 273951.3, "deser_p99_ns": 280976.16, "deser_ci_low_ns": 249107.36547619046, "deser_ci_high_ns": 253458.0449404762, "total_mean_ns": 433364.21428571426, "total_median_ns": 430779.5, "total_std_ns": 23245.00494033976, "total_mad_ns": 10951.5, "total_cv": 0.053638496613415514, "total_min_ns": 369391.0, "total_max_ns": 504634.0, "total_p5_ns": 390135.3, "total_p25_ns": 422866.5, "total_p50_ns": 430779.5, "total_p75_ns": 448537.0, "total_p95_ns": 467454.35, "total_p99_ns": 484406.07000000007, "total_ci_low_ns": 428439.5431547619, "total_ci_high_ns": 438276.9889880952, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.809423485241368}, {"serializer": "BinaryCodable", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "4.0.0", "avg_time_ser_ns": 935273.3917525773, "avg_time_deser_ns": 622519.1134020619, "avg_time_total_ns": 1557792.5051546392, "median_size_bytes": 31232.0, "avg_ops_per_sec": 641.9340166877564, "min_ops_per_sec": 617.3643604197831, "max_ops_per_sec": 664.5622196378135, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 935273.3917525773, "ser_median_ns": 930726.0, "ser_std_ns": 19926.37800680122, "ser_mad_ns": 13422.0, "ser_cv": 0.02130540458278392, "ser_min_ns": 899671.0, "ser_max_ns": 990121.0, "ser_p5_ns": 910773.4, "ser_p25_ns": 918218.0, "ser_p50_ns": 930726.0, "ser_p75_ns": 947096.0, "ser_p95_ns": 970455.2, "ser_p99_ns": 976869.1599999999, "ser_ci_low_ns": 931286.6445876289, "ser_ci_high_ns": 939365.9974226804, "deser_mean_ns": 622519.1134020619, "deser_median_ns": 619372.0, "deser_std_ns": 11454.581333172157, "deser_mad_ns": 7554.0, "deser_cv": 0.01840036889883262, "deser_min_ns": 603939.0, "deser_max_ns": 653306.0, "deser_p5_ns": 606935.6, "deser_p25_ns": 614509.0, "deser_p50_ns": 619372.0, "deser_p75_ns": 629719.0, "deser_p95_ns": 644882.2, "deser_p99_ns": 650987.6, "deser_ci_low_ns": 620319.0842783506, "deser_ci_high_ns": 624822.28685567, "total_mean_ns": 1557792.5051546392, "total_median_ns": 1551012.0, "total_std_ns": 27634.0441345769, "total_mad_ns": 18568.0, "total_cv": 0.017739232948635685, "total_min_ns": 1504750.0, "total_max_ns": 1619789.0, "total_p5_ns": 1522773.4, "total_p25_ns": 1536463.0, "total_p50_ns": 1551012.0, "total_p75_ns": 1574495.0, "total_p95_ns": 1608963.8, "total_p99_ns": 1615661.0, "total_ci_low_ns": 1552407.4832474226, "total_ci_high_ns": 1563434.6427835051, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 72.49603582996393}, {"serializer": "Foundation.JSONEncoder", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 1738893.6704545454, "avg_time_deser_ns": 1514413.2386363635, "avg_time_total_ns": 3253306.909090909, "median_size_bytes": 65958.0, "avg_ops_per_sec": 307.3795457802153, "min_ops_per_sec": 296.0718080720426, "max_ops_per_sec": 317.0681595081131, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 1738893.6704545454, "ser_median_ns": 1734025.0, "ser_std_ns": 39739.462057723904, "ser_mad_ns": 25805.5, "ser_cv": 0.02285330192002829, "ser_min_ns": 1670206.0, "ser_max_ns": 1847649.0, "ser_p5_ns": 1691359.15, "ser_p25_ns": 1709590.25, "ser_p50_ns": 1734025.0, "ser_p75_ns": 1761751.25, "ser_p95_ns": 1811564.95, "ser_p99_ns": 1846557.15, "ser_ci_low_ns": 1730830.8644886364, "ser_ci_high_ns": 1747458.4818181817, "deser_mean_ns": 1514413.2386363635, "deser_median_ns": 1510147.5, "deser_std_ns": 17212.92679434429, "deser_mad_ns": 9830.0, "deser_cv": 0.011366069943923283, "deser_min_ns": 1482208.0, "deser_max_ns": 1565947.0, "deser_p5_ns": 1492945.75, "deser_p25_ns": 1502825.25, "deser_p50_ns": 1510147.5, "deser_p75_ns": 1525204.75, "deser_p95_ns": 1545256.05, "deser_p99_ns": 1563288.28, "deser_ci_low_ns": 1511035.0423295456, "deser_ci_high_ns": 1517981.996590909, "total_mean_ns": 3253306.909090909, "total_median_ns": 3240046.5, "total_std_ns": 47116.55623274074, "total_mad_ns": 28066.0, "total_cv": 0.014482665653547822, "total_min_ns": 3153896.0, "total_max_ns": 3377559.0, "total_p5_ns": 3193248.85, "total_p25_ns": 3221315.5, "total_p50_ns": 3240046.5, "total_p75_ns": 3279065.5, "total_p95_ns": 3346849.35, "total_p99_ns": 3375400.53, "total_ci_low_ns": 3244117.7889204547, "total_ci_high_ns": 3263241.75, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 93.3321526259622}, {"serializer": "TOML", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "2.0.0", "avg_time_ser_ns": 3527411.4395604394, "avg_time_deser_ns": 4138830.978021978, "avg_time_total_ns": 7666242.417582418, "median_size_bytes": 70057.0, "avg_ops_per_sec": 130.4420008564449, "min_ops_per_sec": 127.18644630003817, "max_ops_per_sec": 132.96887451288515, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 3527411.4395604394, "ser_median_ns": 3519671.0, "ser_std_ns": 49870.23210052461, "ser_mad_ns": 34810.0, "ser_cv": 0.01413791188099653, "ser_min_ns": 3422042.0, "ser_max_ns": 3649273.0, "ser_p5_ns": 3463105.5, "ser_p25_ns": 3490716.0, "ser_p50_ns": 3519671.0, "ser_p75_ns": 3556373.5, "ser_p95_ns": 3629893.0, "ser_p99_ns": 3644004.4, "ser_ci_low_ns": 3517413.7634615386, "ser_ci_high_ns": 3537890.62967033, "deser_mean_ns": 4138830.978021978, "deser_median_ns": 4134357.0, "deser_std_ns": 54459.30788069158, "deser_mad_ns": 29181.0, "deser_cv": 0.01315813768909178, "deser_min_ns": 4022972.0, "deser_max_ns": 4302766.0, "deser_p5_ns": 4053975.0, "deser_p25_ns": 4106283.5, "deser_p50_ns": 4134357.0, "deser_p75_ns": 4163539.0, "deser_p95_ns": 4234156.5, "deser_p99_ns": 4278041.2, "deser_ci_low_ns": 4127617.301373626, "deser_ci_high_ns": 4150538.554120879, "total_mean_ns": 7666242.417582418, "total_median_ns": 7646689.0, "total_std_ns": 82876.42672156419, "total_mad_ns": 49315.0, "total_cv": 0.010810566925393368, "total_min_ns": 7520557.0, "total_max_ns": 7862473.0, "total_p5_ns": 7540275.5, "total_p25_ns": 7608476.0, "total_p50_ns": 7646689.0, "total_p75_ns": 7711358.0, "total_p95_ns": 7830092.5, "total_p99_ns": 7857109.9, "total_ci_low_ns": 7649050.821153847, "total_ci_high_ns": 7683203.295879121, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 125.73942019363157}, {"serializer": "SwiftMsgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "1.2.1", "avg_time_ser_ns": 2430582.6907216497, "avg_time_deser_ns": 2116872.350515464, "avg_time_total_ns": 4547455.041237113, "median_size_bytes": 34635.0, "avg_ops_per_sec": 219.90321859849655, "min_ops_per_sec": 208.92664146872087, "max_ops_per_sec": 226.74739478580761, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 2430582.6907216497, "ser_median_ns": 2420112.0, "ser_std_ns": 45289.484928982325, "ser_mad_ns": 29679.0, "ser_cv": 0.018633180060841994, "ser_min_ns": 2366720.0, "ser_max_ns": 2549837.0, "ser_p5_ns": 2374509.6, "ser_p25_ns": 2395055.0, "ser_p50_ns": 2420112.0, "ser_p75_ns": 2455908.0, "ser_p95_ns": 2524318.6, "ser_p99_ns": 2545657.16, "ser_ci_low_ns": 2421834.0092783505, "ser_ci_high_ns": 2439558.9358247425, "deser_mean_ns": 2116872.350515464, "deser_median_ns": 2102681.0, "deser_std_ns": 59733.92369762227, "deser_mad_ns": 32546.0, "deser_cv": 0.02821800931127326, "deser_min_ns": 1985569.0, "deser_max_ns": 2262949.0, "deser_p5_ns": 2034315.4, "deser_p25_ns": 2076624.0, "deser_p50_ns": 2102681.0, "deser_p75_ns": 2157103.0, "deser_p95_ns": 2234313.8, "deser_p99_ns": 2251986.76, "deser_ci_low_ns": 2104598.8927835054, "deser_ci_high_ns": 2128853.9636597936, "total_mean_ns": 4547455.041237113, "total_median_ns": 4524785.0, "total_std_ns": 86982.56700649821, "total_mad_ns": 52459.0, "total_cv": 0.01912774644668835, "total_min_ns": 4410194.0, "total_max_ns": 4786369.0, "total_p5_ns": 4430284.0, "total_p25_ns": 4482225.0, "total_p50_ns": 4524785.0, "total_p75_ns": 4604086.0, "total_p95_ns": 4708730.399999999, "total_p99_ns": 4758126.76, "total_ci_low_ns": 4531005.55128866, "total_ci_high_ns": 4564981.471907216, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 69.59492047275194}, {"serializer": "SwiftProtobuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "1.38.1", "avg_time_ser_ns": 27467.756097560974, "avg_time_deser_ns": 40222.29268292683, "avg_time_total_ns": 67690.0487804878, "median_size_bytes": 29432.0, "avg_ops_per_sec": 14773.220259345682, "min_ops_per_sec": 12943.97846121984, "max_ops_per_sec": 16697.835960459524, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 27467.756097560974, "ser_median_ns": 27193.0, "ser_std_ns": 1858.849229576109, "ser_mad_ns": 1066.5, "ser_cv": 0.0676738654214702, "ser_min_ns": 22590.0, "ser_max_ns": 32091.0, "ser_p5_ns": 25208.35, "ser_p25_ns": 26147.25, "ser_p50_ns": 27193.0, "ser_p75_ns": 28259.75, "ser_p95_ns": 31157.15, "ser_p99_ns": 32037.54, "ser_ci_low_ns": 27073.34481707317, "ser_ci_high_ns": 27868.296036585365, "deser_mean_ns": 40222.29268292683, "deser_median_ns": 39779.5, "deser_std_ns": 1734.967139460436, "deser_mad_ns": 865.0, "deser_cv": 0.04313446657894959, "deser_min_ns": 37112.0, "deser_max_ns": 45231.0, "deser_p5_ns": 37940.65, "deser_p25_ns": 39256.0, "deser_p50_ns": 39779.5, "deser_p75_ns": 41166.75, "deser_p95_ns": 43678.0, "deser_p99_ns": 44886.75, "deser_ci_low_ns": 39876.29786585366, "deser_ci_high_ns": 40605.23597560976, "total_mean_ns": 67690.0487804878, "total_median_ns": 66590.5, "total_std_ns": 3212.2456930709423, "total_mad_ns": 1386.0, "total_cv": 0.04745521315087156, "total_min_ns": 59888.0, "total_max_ns": 77256.0, "total_p5_ns": 63462.65, "total_p25_ns": 65768.5, "total_p50_ns": 66590.5, "total_p75_ns": 70377.0, "total_p95_ns": 73356.0, "total_p99_ns": 75268.26, "total_ci_low_ns": 66969.27256097562, "total_ci_high_ns": 68382.92317073171, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "IkigaJSON", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "2.5.3", "avg_time_ser_ns": 1640398.5894736843, "avg_time_deser_ns": 1523241.9684210527, "avg_time_total_ns": 3163640.557894737, "median_size_bytes": 65958.0, "avg_ops_per_sec": 316.0915349578954, "min_ops_per_sec": 307.2701657568909, "max_ops_per_sec": 323.5210477940879, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 1640398.5894736843, "ser_median_ns": 1633567.0, "ser_std_ns": 22543.934771196735, "ser_mad_ns": 11760.0, "ser_cv": 0.01374296156791373, "ser_min_ns": 1587696.0, "ser_max_ns": 1708168.0, "ser_p5_ns": 1615591.0, "ser_p25_ns": 1624211.5, "ser_p50_ns": 1633567.0, "ser_p75_ns": 1656751.5, "ser_p95_ns": 1679374.3, "ser_p99_ns": 1690990.44, "ser_ci_low_ns": 1635668.1215789474, "ser_ci_high_ns": 1645010.7689473685, "deser_mean_ns": 1523241.9684210527, "deser_median_ns": 1516689.0, "deser_std_ns": 22228.86433841342, "deser_mad_ns": 14265.0, "deser_cv": 0.01459312755244999, "deser_min_ns": 1478983.0, "deser_max_ns": 1593409.0, "deser_p5_ns": 1497174.0, "deser_p25_ns": 1506748.0, "deser_p50_ns": 1516689.0, "deser_p75_ns": 1539247.5, "deser_p95_ns": 1560542.2, "deser_p99_ns": 1583473.2, "deser_ci_low_ns": 1518937.7860526314, "deser_ci_high_ns": 1527828.742368421, "total_mean_ns": 3163640.557894737, "total_median_ns": 3156371.0, "total_std_ns": 36169.83447091689, "total_mad_ns": 23782.0, "total_cv": 0.011432978497085116, "total_min_ns": 3090989.0, "total_max_ns": 3254465.0, "total_p5_ns": 3118547.5, "total_p25_ns": 3137069.5, "total_p50_ns": 3156371.0, "total_p75_ns": 3186560.0, "total_p95_ns": 3230333.4, "total_p99_ns": 3252688.4, "total_ci_low_ns": 3156544.688421053, "total_ci_high_ns": 3170847.629473684, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 115.8947635133048}, {"serializer": "XMLCoder", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "0.18.2", "avg_time_ser_ns": 22450584.19148936, "avg_time_deser_ns": 21298123.05319149, "avg_time_total_ns": 43748707.24468085, "median_size_bytes": 119676.0, "avg_ops_per_sec": 22.857818275797946, "min_ops_per_sec": 22.423354731193307, "max_ops_per_sec": 23.29762289228153, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 22450584.19148936, "ser_median_ns": 22434334.0, "ser_std_ns": 209947.47013608806, "ser_mad_ns": 158903.5, "ser_cv": 0.009351537062259413, "ser_min_ns": 22123609.0, "ser_max_ns": 22963563.0, "ser_p5_ns": 22162915.9, "ser_p25_ns": 22269536.0, "ser_p50_ns": 22434334.0, "ser_p75_ns": 22579914.5, "ser_p95_ns": 22816972.05, "ser_p99_ns": 22921228.47, "ser_ci_low_ns": 22409197.537765957, "ser_ci_high_ns": 22495117.214893617, "deser_mean_ns": 21298123.05319149, "deser_median_ns": 21291700.5, "deser_std_ns": 278742.634855218, "deser_mad_ns": 172499.0, "deser_cv": 0.013087661957772794, "deser_min_ns": 20699595.0, "deser_max_ns": 22041760.0, "deser_p5_ns": 20812650.9, "deser_p25_ns": 21124102.25, "deser_p50_ns": 21291700.5, "deser_p75_ns": 21465103.75, "deser_p95_ns": 21737696.3, "deser_p99_ns": 21973551.94, "deser_ci_low_ns": 21242889.586968087, "deser_ci_high_ns": 21353030.54574468, "total_mean_ns": 43748707.24468085, "total_median_ns": 43777714.0, "total_std_ns": 360154.69143565453, "total_mad_ns": 216785.0, "total_cv": 0.008232350488012274, "total_min_ns": 42922834.0, "total_max_ns": 44596360.0, "total_p5_ns": 43085542.15, "total_p25_ns": 43507830.0, "total_p50_ns": 43777714.0, "total_p75_ns": 43965960.75, "total_p95_ns": 44312767.7, "total_p99_ns": 44512792.06, "total_ci_low_ns": 43677090.44521277, "total_ci_high_ns": 43820803.23723404, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 165.17452325650257}, {"serializer": "SwiftBSON", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "3.1.0", "avg_time_ser_ns": 3478582.6404494382, "avg_time_deser_ns": 5707650.651685393, "avg_time_total_ns": 9186233.29213483, "median_size_bytes": 46739.0, "avg_ops_per_sec": 108.85854606546852, "min_ops_per_sec": 105.73338206937358, "max_ops_per_sec": 111.24344136480573, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 3478582.6404494382, "ser_median_ns": 3473913.0, "ser_std_ns": 39552.37056774657, "ser_mad_ns": 25694.0, "ser_cv": 0.011370254685867213, "ser_min_ns": 3401749.0, "ser_max_ns": 3581321.0, "ser_p5_ns": 3422027.4, "ser_p25_ns": 3448461.0, "ser_p50_ns": 3473913.0, "ser_p75_ns": 3503390.0, "ser_p95_ns": 3546200.4, "ser_p99_ns": 3576708.04, "ser_ci_low_ns": 3471159.7985955058, "ser_ci_high_ns": 3487024.7300561797, "deser_mean_ns": 5707650.651685393, "deser_median_ns": 5700208.0, "deser_std_ns": 73903.13976109373, "deser_mad_ns": 52608.0, "deser_cv": 0.012948083944007874, "deser_min_ns": 5570860.0, "deser_max_ns": 5887742.0, "deser_p5_ns": 5604863.2, "deser_p25_ns": 5649614.0, "deser_p50_ns": 5700208.0, "deser_p75_ns": 5759128.0, "deser_p95_ns": 5842854.4, "deser_p99_ns": 5885502.4, "deser_ci_low_ns": 5692615.876123596, "deser_ci_high_ns": 5722500.400561797, "total_mean_ns": 9186233.29213483, "total_median_ns": 9181343.0, "total_std_ns": 93515.10085435427, "total_mad_ns": 64134.0, "total_cv": 0.01017991791417066, "total_min_ns": 8989294.0, "total_max_ns": 9457751.0, "total_p5_ns": 9038817.4, "total_p25_ns": 9119574.0, "total_p50_ns": 9181343.0, "total_p75_ns": 9249188.0, "total_p95_ns": 9329419.4, "total_p99_ns": 9409205.8, "total_ci_low_ns": 9166728.606741574, "total_ci_high_ns": 9205716.16966292, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 134.45455620459842}, {"serializer": "FlatBuffers", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "24.3.25", "avg_time_ser_ns": 28902.31325301205, "avg_time_deser_ns": 92828.32530120482, "avg_time_total_ns": 121730.63855421687, "median_size_bytes": 34184.0, "avg_ops_per_sec": 8214.858739565521, "min_ops_per_sec": 7403.732962159521, "max_ops_per_sec": 8853.474988933156, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 28902.31325301205, "ser_median_ns": 28863.0, "ser_std_ns": 1602.3022911995076, "ser_mad_ns": 1010.0, "ser_cv": 0.055438548367145804, "ser_min_ns": 25281.0, "ser_max_ns": 33624.0, "ser_p5_ns": 26796.2, "ser_p25_ns": 27768.5, "ser_p50_ns": 28863.0, "ser_p75_ns": 29752.5, "ser_p95_ns": 31765.999999999996, "ser_p99_ns": 33583.0, "ser_ci_low_ns": 28567.089759036146, "ser_ci_high_ns": 29257.64668674699, "deser_mean_ns": 92828.32530120482, "deser_median_ns": 92479.0, "deser_std_ns": 3631.7026683000095, "deser_mad_ns": 2435.0, "deser_cv": 0.039122785599288126, "deser_min_ns": 87262.0, "deser_max_ns": 102370.0, "deser_p5_ns": 87972.8, "deser_p25_ns": 90125.5, "deser_p50_ns": 92479.0, "deser_p75_ns": 95219.5, "deser_p95_ns": 99440.9, "deser_p99_ns": 101609.85999999999, "deser_ci_low_ns": 92027.32319277109, "deser_ci_high_ns": 93625.95572289157, "total_mean_ns": 121730.63855421687, "total_median_ns": 121504.0, "total_std_ns": 4441.00516961467, "total_mad_ns": 3069.0, "total_cv": 0.036482230130064734, "total_min_ns": 112950.0, "total_max_ns": 135067.0, "total_p5_ns": 115426.1, "total_p25_ns": 118387.0, "total_p50_ns": 121504.0, "total_p75_ns": 124464.0, "total_p95_ns": 128543.7, "total_p99_ns": 133034.21999999997, "total_ci_low_ns": 120793.53885542168, "total_ci_high_ns": 122672.85060240964, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.866118865140376}, {"serializer": "Foundation.PropertyListEncoder", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 1979235.4186046512, "avg_time_deser_ns": 3833660.697674419, "avg_time_total_ns": 5812896.116279069, "median_size_bytes": 48907.0, "avg_ops_per_sec": 172.0312869861016, "min_ops_per_sec": 168.50252981273135, "max_ops_per_sec": 175.25292063373558, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 1979235.4186046512, "ser_median_ns": 1975921.0, "ser_std_ns": 37434.524409636215, "ser_mad_ns": 26602.5, "ser_cv": 0.01891362899923614, "ser_min_ns": 1899845.0, "ser_max_ns": 2079155.0, "ser_p5_ns": 1928949.0, "ser_p25_ns": 1949760.25, "ser_p50_ns": 1975921.0, "ser_p75_ns": 2005195.75, "ser_p95_ns": 2045492.25, "ser_p99_ns": 2077925.05, "ser_ci_low_ns": 1971379.9031976745, "ser_ci_high_ns": 1987494.2171511627, "deser_mean_ns": 3833660.697674419, "deser_median_ns": 3828896.0, "deser_std_ns": 29592.26724513558, "deser_mad_ns": 17257.5, "deser_cv": 0.0077190626867648686, "deser_min_ns": 3776751.0, "deser_max_ns": 3919228.0, "deser_p5_ns": 3797127.75, "deser_p25_ns": 3812800.0, "deser_p50_ns": 3828896.0, "deser_p75_ns": 3850058.25, "deser_p95_ns": 3891847.5, "deser_p99_ns": 3907590.65, "deser_ci_low_ns": 3827775.901744186, "deser_ci_high_ns": 3839885.0093023255, "total_mean_ns": 5812896.116279069, "total_median_ns": 5808705.0, "total_std_ns": 47706.64611102725, "total_mad_ns": 30901.5, "total_cv": 0.008207035728270516, "total_min_ns": 5706039.0, "total_max_ns": 5934629.0, "total_p5_ns": 5749249.5, "total_p25_ns": 5780533.5, "total_p50_ns": 5808705.0, "total_p75_ns": 5840567.75, "total_p95_ns": 5906705.25, "total_p99_ns": 5930686.7, "total_ci_low_ns": 5803236.327616279, "total_ci_high_ns": 5823374.488953489, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 167.17278086788923}, {"serializer": "SwiftAvroCore", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "2.3.0", "avg_time_ser_ns": 1825950.3085106383, "avg_time_deser_ns": 996550.9042553192, "avg_time_total_ns": 2822501.212765957, "median_size_bytes": 28835.0, "avg_ops_per_sec": 354.29568479087857, "min_ops_per_sec": 343.4753592494651, "max_ops_per_sec": 365.09768371076524, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 1825950.3085106383, "ser_median_ns": 1821653.0, "ser_std_ns": 27370.400914018785, "ser_mad_ns": 18359.0, "ser_cv": 0.014989674574629488, "ser_min_ns": 1746190.0, "ser_max_ns": 1895305.0, "ser_p5_ns": 1786912.5, "ser_p25_ns": 1806674.5, "ser_p50_ns": 1821653.0, "ser_p75_ns": 1847457.25, "ser_p95_ns": 1870474.45, "ser_p99_ns": 1886589.97, "ser_ci_low_ns": 1820718.8167553192, "ser_ci_high_ns": 1831325.2664893616, "deser_mean_ns": 996550.9042553192, "deser_median_ns": 996146.5, "deser_std_ns": 11879.402523867424, "deser_mad_ns": 8268.0, "deser_cv": 0.011920517530155075, "deser_min_ns": 965890.0, "deser_max_ns": 1030049.0, "deser_p5_ns": 979617.85, "deser_p25_ns": 988060.75, "deser_p50_ns": 996146.5, "deser_p75_ns": 1004339.75, "deser_p95_ns": 1016203.0, "deser_p99_ns": 1024723.82, "deser_ci_low_ns": 994200.2031914893, "deser_ci_high_ns": 998896.615425532, "total_mean_ns": 2822501.212765957, "total_median_ns": 2815285.0, "total_std_ns": 34499.00210458715, "total_mad_ns": 21953.5, "total_cv": 0.012222847575246663, "total_min_ns": 2738993.0, "total_max_ns": 2911417.0, "total_p5_ns": 2771387.45, "total_p25_ns": 2799181.0, "total_p50_ns": 2815285.0, "total_p75_ns": 2846726.0, "total_p95_ns": 2885229.65, "total_p99_ns": 2894346.85, "total_ci_low_ns": 2815433.1140957447, "total_ci_high_ns": 2829691.3694148934, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 108.34433643472673}, {"serializer": "Yams", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "5.4.0", "avg_time_ser_ns": 28481002.319148935, "avg_time_deser_ns": 10929389.117021276, "avg_time_total_ns": 39410391.43617021, "median_size_bytes": 84281.0, "avg_ops_per_sec": 25.374018464638144, "min_ops_per_sec": 24.921925836834657, "max_ops_per_sec": 25.68849468580826, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 28481002.319148935, "ser_median_ns": 28433159.0, "ser_std_ns": 223993.74477562253, "ser_mad_ns": 154847.0, "ser_cv": 0.007864672116016873, "ser_min_ns": 28094095.0, "ser_max_ns": 29073158.0, "ser_p5_ns": 28206385.1, "ser_p25_ns": 28307306.0, "ser_p50_ns": 28433159.0, "ser_p75_ns": 28623082.5, "ser_p95_ns": 28871492.9, "ser_p99_ns": 28991111.54, "ser_ci_low_ns": 28436916.028723404, "ser_ci_high_ns": 28526358.161968086, "deser_mean_ns": 10929389.117021276, "deser_median_ns": 10904972.5, "deser_std_ns": 97713.3104853014, "deser_mad_ns": 55692.5, "deser_cv": 0.008940418301433158, "deser_min_ns": 10774757.0, "deser_max_ns": 11174561.0, "deser_p5_ns": 10801531.1, "deser_p25_ns": 10861181.25, "deser_p50_ns": 10904972.5, "deser_p75_ns": 10972071.25, "deser_p95_ns": 11133626.05, "deser_p99_ns": 11172318.77, "deser_ci_low_ns": 10909383.124202127, "deser_ci_high_ns": 10949093.173404256, "total_mean_ns": 39410391.43617021, "total_median_ns": 39344175.0, "total_std_ns": 263858.8520896258, "total_mad_ns": 187436.0, "total_cv": 0.00669515938498039, "total_min_ns": 38927933.0, "total_max_ns": 40125310.0, "total_p5_ns": 39069023.9, "total_p25_ns": 39214639.5, "total_p50_ns": 39344175.0, "total_p75_ns": 39597185.5, "total_p95_ns": 39871598.6, "total_p99_ns": 39999302.44, "total_ci_low_ns": 39356390.06702128, "total_ci_high_ns": 39462518.51329787, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 203.05744574470225}, {"serializer": "SwiftCbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "0.0.4", "avg_time_ser_ns": 2452842.4086021506, "avg_time_deser_ns": 1808496.0215053763, "avg_time_total_ns": 4261338.4301075265, "median_size_bytes": 34534.0, "avg_ops_per_sec": 234.66805474419147, "min_ops_per_sec": 225.13385333249883, "max_ops_per_sec": 241.09084930037847, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 2452842.4086021506, "ser_median_ns": 2445328.0, "ser_std_ns": 52530.03725286849, "ser_mad_ns": 39164.0, "ser_cv": 0.021415985417018623, "ser_min_ns": 2367501.0, "ser_max_ns": 2587164.0, "ser_p5_ns": 2384850.6, "ser_p25_ns": 2411270.0, "ser_p50_ns": 2445328.0, "ser_p75_ns": 2490870.0, "ser_p95_ns": 2540559.0, "ser_p99_ns": 2581737.84, "ser_ci_low_ns": 2442404.171236559, "ser_ci_high_ns": 2463729.8516129036, "deser_mean_ns": 1808496.0215053763, "deser_median_ns": 1802204.0, "deser_std_ns": 30279.40778238086, "deser_mad_ns": 19546.0, "deser_cv": 0.016742866681662114, "deser_min_ns": 1756591.0, "deser_max_ns": 1887179.0, "deser_p5_ns": 1765398.0, "deser_p25_ns": 1788446.0, "deser_p50_ns": 1802204.0, "deser_p75_ns": 1827531.0, "deser_p95_ns": 1867443.5999999999, "deser_p99_ns": 1876800.48, "deser_ci_low_ns": 1802562.941129032, "deser_ci_high_ns": 1814494.8045698926, "total_mean_ns": 4261338.4301075265, "total_median_ns": 4244915.0, "total_std_ns": 71413.11911982065, "total_mad_ns": 52631.0, "total_cv": 0.01675837774706354, "total_min_ns": 4147814.0, "total_max_ns": 4441802.0, "total_p5_ns": 4165739.2, "total_p25_ns": 4209943.0, "total_p50_ns": 4244915.0, "total_p75_ns": 4306364.0, "total_p95_ns": 4398211.8, "total_p99_ns": 4436098.0, "total_ci_low_ns": 4247839.714784946, "total_ci_high_ns": 4276002.177150537, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 80.10637162016555}, {"serializer": "BinaryCodable", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "4.0.0", "avg_time_ser_ns": 3011278.138297872, "avg_time_deser_ns": 612559.5319148937, "avg_time_total_ns": 3623837.670212766, "median_size_bytes": 31232.0, "avg_ops_per_sec": 275.9505504950742, "min_ops_per_sec": 265.1925496805093, "max_ops_per_sec": 284.5572758307579, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 3011278.138297872, "ser_median_ns": 3000894.0, "ser_std_ns": 52308.09987290689, "ser_mad_ns": 31774.0, "ser_cv": 0.01737073012540585, "ser_min_ns": 2909003.0, "ser_max_ns": 3147714.0, "ser_p5_ns": 2939198.5, "ser_p25_ns": 2974607.5, "ser_p50_ns": 3000894.0, "ser_p75_ns": 3042411.0, "ser_p95_ns": 3112177.05, "ser_p99_ns": 3145796.34, "ser_ci_low_ns": 3000730.757712766, "ser_ci_high_ns": 3022117.816223404, "deser_mean_ns": 612559.5319148937, "deser_median_ns": 611755.0, "deser_std_ns": 15129.937436496684, "deser_mad_ns": 10951.5, "deser_cv": 0.02469953800114692, "deser_min_ns": 584498.0, "deser_max_ns": 652380.0, "deser_p5_ns": 593273.9, "deser_p25_ns": 600794.75, "deser_p50_ns": 611755.0, "deser_p75_ns": 621778.75, "deser_p95_ns": 641465.05, "deser_p99_ns": 646960.89, "deser_ci_low_ns": 609616.4260638298, "deser_ci_high_ns": 615569.4569148936, "total_mean_ns": 3623837.670212766, "total_median_ns": 3611496.0, "total_std_ns": 58688.64203728345, "total_mad_ns": 36884.0, "total_cv": 0.016195163077996722, "total_min_ns": 3514231.0, "total_max_ns": 3770845.0, "total_p5_ns": 3545374.0, "total_p25_ns": 3586059.75, "total_p50_ns": 3611496.0, "total_p75_ns": 3664721.5, "total_p95_ns": 3754971.0, "total_p99_ns": 3766382.86, "total_ci_low_ns": 3612153.1829787237, "total_ci_high_ns": 3636001.738031915, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 33.31719163506661}, {"serializer": "TOML", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "2.0.0", "avg_time_ser_ns": 8092985.688172043, "avg_time_deser_ns": 4225779.043010753, "avg_time_total_ns": 12318764.731182795, "median_size_bytes": 70057.0, "avg_ops_per_sec": 81.17697040423828, "min_ops_per_sec": 78.65196200072029, "max_ops_per_sec": 83.14704929830127, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 8092985.688172043, "ser_median_ns": 8077783.0, "ser_std_ns": 88844.78444883751, "ser_mad_ns": 47744.0, "ser_cv": 0.010977998463371164, "ser_min_ns": 7936095.0, "ser_max_ns": 8326203.0, "ser_p5_ns": 7968954.4, "ser_p25_ns": 8038010.0, "ser_p50_ns": 8077783.0, "ser_p75_ns": 8132529.0, "ser_p95_ns": 8268927.0, "ser_p99_ns": 8322968.28, "ser_ci_low_ns": 8075589.283333333, "ser_ci_high_ns": 8111380.420698925, "deser_mean_ns": 4225779.043010753, "deser_median_ns": 4204683.0, "deser_std_ns": 95170.97211105573, "deser_mad_ns": 64484.0, "deser_cv": 0.0225215211544163, "deser_min_ns": 4050713.0, "deser_max_ns": 4458871.0, "deser_p5_ns": 4103191.6, "deser_p25_ns": 4150966.0, "deser_p50_ns": 4204683.0, "deser_p75_ns": 4294332.0, "deser_p95_ns": 4410817.8, "deser_p99_ns": 4436372.4, "deser_ci_low_ns": 4206823.713978495, "deser_ci_high_ns": 4245424.126612903, "total_mean_ns": 12318764.731182795, "total_median_ns": 12307876.0, "total_std_ns": 142719.70759538337, "total_mad_ns": 101851.0, "total_cv": 0.011585553479571976, "total_min_ns": 12026885.0, "total_max_ns": 12714241.0, "total_p5_ns": 12099887.6, "total_p25_ns": 12218989.0, "total_p50_ns": 12307876.0, "total_p75_ns": 12414156.0, "total_p95_ns": 12577600.8, "total_p99_ns": 12635216.68, "total_ci_low_ns": 12290410.626344087, "total_ci_high_ns": 12348187.369892472, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 97.36777819338992}, {"serializer": "CapnProto", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "capnproto-1.0.2", "avg_time_ser_ns": 2529943.340659341, "avg_time_deser_ns": 282013.032967033, "avg_time_total_ns": 2811956.3736263737, "median_size_bytes": 35728.0, "avg_ops_per_sec": 355.62429395388284, "min_ops_per_sec": 334.28727779506784, "max_ops_per_sec": 380.8543019016817, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 2529943.340659341, "ser_median_ns": 2523297.0, "ser_std_ns": 50257.89164813816, "ser_mad_ns": 32393.0, "ser_cv": 0.019865224189186865, "ser_min_ns": 2391494.0, "ser_max_ns": 2674405.0, "ser_p5_ns": 2466789.0, "ser_p25_ns": 2496334.5, "ser_p50_ns": 2523297.0, "ser_p75_ns": 2560087.5, "ser_p95_ns": 2616675.5, "ser_p99_ns": 2663363.8, "ser_ci_low_ns": 2520075.0667582415, "ser_ci_high_ns": 2540985.551923077, "deser_mean_ns": 282013.032967033, "deser_median_ns": 286302.0, "deser_std_ns": 24254.89362190674, "deser_mad_ns": 16316.0, "deser_cv": 0.08600628618728451, "deser_min_ns": 226877.0, "deser_max_ns": 345682.0, "deser_p5_ns": 246072.5, "deser_p25_ns": 264388.5, "deser_p50_ns": 286302.0, "deser_p75_ns": 296858.0, "deser_p95_ns": 317288.5, "deser_p99_ns": 334396.8999999999, "deser_ci_low_ns": 277079.6343406593, "deser_ci_high_ns": 286789.0879120879, "total_mean_ns": 2811956.3736263737, "total_median_ns": 2806624.0, "total_std_ns": 67832.24082701682, "total_mad_ns": 42303.0, "total_cv": 0.024122792751417606, "total_min_ns": 2625676.0, "total_max_ns": 2991439.0, "total_p5_ns": 2721121.0, "total_p25_ns": 2764354.0, "total_p50_ns": 2806624.0, "total_p75_ns": 2849311.0, "total_p95_ns": 2941741.0, "total_p99_ns": 2973773.8, "total_ci_low_ns": 2798298.929945055, "total_ci_high_ns": 2825384.1447802195, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.782112154879213}, {"serializer": "IkigaJSON", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "2.5.3", "avg_time_ser_ns": 5957503.488372093, "avg_time_deser_ns": 1524274.2558139535, "avg_time_total_ns": 7481777.7441860465, "median_size_bytes": 65958.0, "avg_ops_per_sec": 133.65807354770487, "min_ops_per_sec": 130.0353592148777, "max_ops_per_sec": 136.98487522595656, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 5957503.488372093, "ser_median_ns": 5941838.0, "ser_std_ns": 74215.95189203625, "ser_mad_ns": 38844.5, "ser_cv": 0.012457559116312997, "ser_min_ns": 5811066.0, "ser_max_ns": 6142405.0, "ser_p5_ns": 5856808.5, "ser_p25_ns": 5914576.5, "ser_p50_ns": 5941838.0, "ser_p75_ns": 6004977.5, "ser_p95_ns": 6102017.75, "ser_p99_ns": 6133407.75, "ser_ci_low_ns": 5942854.248546512, "ser_ci_high_ns": 5974309.410465117, "deser_mean_ns": 1524274.2558139535, "deser_median_ns": 1523994.5, "deser_std_ns": 19101.357568745825, "deser_mad_ns": 12015.5, "deser_cv": 0.012531444059944327, "deser_min_ns": 1480752.0, "deser_max_ns": 1574982.0, "deser_p5_ns": 1495996.5, "deser_p25_ns": 1512617.0, "deser_p50_ns": 1523994.5, "deser_p75_ns": 1536073.0, "deser_p95_ns": 1558592.5, "deser_p99_ns": 1566510.05, "deser_ci_low_ns": 1520262.7223837208, "deser_ci_high_ns": 1528185.4988372093, "total_mean_ns": 7481777.7441860465, "total_median_ns": 7462351.0, "total_std_ns": 80795.79815067351, "total_mad_ns": 45881.5, "total_cv": 0.010799010731568236, "total_min_ns": 7300076.0, "total_max_ns": 7690216.0, "total_p5_ns": 7371627.75, "total_p25_ns": 7427008.5, "total_p50_ns": 7462351.0, "total_p75_ns": 7528439.0, "total_p95_ns": 7632761.0, "total_p99_ns": 7674155.25, "total_ci_low_ns": 7465746.4090116285, "total_ci_high_ns": 7498950.927616279, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 88.2575079550243}, {"serializer": "Yams", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "5.4.0", "avg_time_ser_ns": 34258174.95698924, "avg_time_deser_ns": 11027647.247311829, "avg_time_total_ns": 45285822.204301074, "median_size_bytes": 84281.0, "avg_ops_per_sec": 22.081966304788075, "min_ops_per_sec": 21.681799984874775, "max_ops_per_sec": 22.44318384571945, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 34258174.95698924, "ser_median_ns": 34220434.0, "ser_std_ns": 287975.74356939504, "ser_mad_ns": 173866.0, "ser_cv": 0.008406044511447133, "ser_min_ns": 33708763.0, "ser_max_ns": 34991877.0, "ser_p5_ns": 33843502.6, "ser_p25_ns": 34053077.0, "ser_p50_ns": 34220434.0, "ser_p75_ns": 34416108.0, "ser_p95_ns": 34848017.8, "ser_p99_ns": 34980444.16, "ser_ci_low_ns": 34200777.98306452, "ser_ci_high_ns": 34319002.48037634, "deser_mean_ns": 11027647.247311829, "deser_median_ns": 11005050.0, "deser_std_ns": 140599.22006367694, "deser_mad_ns": 100232.0, "deser_cv": 0.012749702353595897, "deser_min_ns": 10780476.0, "deser_max_ns": 11424362.0, "deser_p5_ns": 10847506.6, "deser_p25_ns": 10905140.0, "deser_p50_ns": 11005050.0, "deser_p75_ns": 11105282.0, "deser_p95_ns": 11293602.6, "deser_p99_ns": 11359483.6, "deser_ci_low_ns": 10999002.699731184, "deser_ci_high_ns": 11057050.573655915, "total_mean_ns": 45285822.204301074, "total_median_ns": 45246770.0, "total_std_ns": 325603.39598610776, "total_mad_ns": 250572.0, "total_cv": 0.007189963218889801, "total_min_ns": 44556958.0, "total_max_ns": 46121632.0, "total_p5_ns": 44854382.6, "total_p25_ns": 45004317.0, "total_p50_ns": 45246770.0, "total_p75_ns": 45497342.0, "total_p95_ns": 45835126.8, "total_p99_ns": 46013580.76, "total_ci_low_ns": 45218270.205913976, "total_ci_high_ns": 45352320.69946237, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 182.69585209230044}, {"serializer": "SwiftProtobuf", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "1.38.1", "avg_time_ser_ns": 1967570.8488372094, "avg_time_deser_ns": 46058.11627906977, "avg_time_total_ns": 2013628.965116279, "median_size_bytes": 29432.0, "avg_ops_per_sec": 496.6158201554545, "min_ops_per_sec": 478.5137744975127, "max_ops_per_sec": 513.1181213308847, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 1967570.8488372094, "ser_median_ns": 1969490.5, "ser_std_ns": 32101.29477708207, "ser_mad_ns": 17643.5, "ser_cv": 0.016315191290851468, "ser_min_ns": 1908741.0, "ser_max_ns": 2046433.0, "ser_p5_ns": 1916529.5, "ser_p25_ns": 1946962.25, "ser_p50_ns": 1969490.5, "ser_p75_ns": 1982382.0, "ser_p95_ns": 2023959.0, "ser_p99_ns": 2042348.75, "ser_ci_low_ns": 1961264.1546511627, "ser_ci_high_ns": 1974255.0683139535, "deser_mean_ns": 46058.11627906977, "deser_median_ns": 44824.0, "deser_std_ns": 4103.909388457919, "deser_mad_ns": 2243.0, "deser_cv": 0.08910284918280216, "deser_min_ns": 39364.0, "deser_max_ns": 58059.0, "deser_p5_ns": 41251.75, "deser_p25_ns": 43311.0, "deser_p50_ns": 44824.0, "deser_p75_ns": 48188.25, "deser_p95_ns": 54196.5, "deser_p99_ns": 58036.9, "deser_ci_low_ns": 45246.21627906977, "deser_ci_high_ns": 46943.339825581395, "total_mean_ns": 2013628.965116279, "total_median_ns": 2013652.0, "total_std_ns": 32888.10327421208, "total_mad_ns": 16869.0, "total_cv": 0.01633275238088012, "total_min_ns": 1948869.0, "total_max_ns": 2089804.0, "total_p5_ns": 1959442.0, "total_p25_ns": 1992019.75, "total_p50_ns": 2013652.0, "total_p75_ns": 2027950.0, "total_p95_ns": 2067886.25, "total_p99_ns": 2087656.9, "total_ci_low_ns": 2007078.364244186, "total_ci_high_ns": 2020203.107267442, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "SwiftMsgpack", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "1.2.1", "avg_time_ser_ns": 4815590.4130434785, "avg_time_deser_ns": 2036436.0652173914, "avg_time_total_ns": 6852026.478260869, "median_size_bytes": 34635.0, "avg_ops_per_sec": 145.94222645996146, "min_ops_per_sec": 139.56270538396632, "max_ops_per_sec": 151.68276096601898, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 4815590.4130434785, "ser_median_ns": 4797144.0, "ser_std_ns": 92090.06579611622, "ser_mad_ns": 59831.0, "ser_cv": 0.01912331778605623, "ser_min_ns": 4623953.0, "ser_max_ns": 5080542.0, "ser_p5_ns": 4696900.15, "ser_p25_ns": 4753158.25, "ser_p50_ns": 4797144.0, "ser_p75_ns": 4878123.75, "ser_p95_ns": 4972094.75, "ser_p99_ns": 5071608.53, "ser_ci_low_ns": 4797055.191847825, "ser_ci_high_ns": 4834398.944836956, "deser_mean_ns": 2036436.0652173914, "deser_median_ns": 2031300.5, "deser_std_ns": 45821.055575353734, "deser_mad_ns": 26786.5, "deser_cv": 0.022500610924145216, "deser_min_ns": 1940414.0, "deser_max_ns": 2143600.0, "deser_p5_ns": 1967569.15, "deser_p25_ns": 2007507.0, "deser_p50_ns": 2031300.5, "deser_p75_ns": 2060573.0, "deser_p95_ns": 2124445.9, "deser_p99_ns": 2141492.44, "deser_ci_low_ns": 2027275.233423913, "deser_ci_high_ns": 2046059.2978260869, "total_mean_ns": 6852026.478260869, "total_median_ns": 6841200.0, "total_std_ns": 113334.22148482314, "total_mad_ns": 74207.5, "total_cv": 0.016540248617601488, "total_min_ns": 6592707.0, "total_max_ns": 7165238.0, "total_p5_ns": 6691952.65, "total_p25_ns": 6767265.75, "total_p50_ns": 6841200.0, "total_p75_ns": 6915900.5, "total_p95_ns": 7068198.6, "total_p99_ns": 7102278.74, "total_ci_low_ns": 6829285.904347827, "total_ci_high_ns": 6873955.848913044, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 56.92162734733914}, {"serializer": "SwiftAvroCore", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "2.3.0", "avg_time_ser_ns": 3720521.3695652173, "avg_time_deser_ns": 992834.3152173914, "avg_time_total_ns": 4713355.684782608, "median_size_bytes": 28835.0, "avg_ops_per_sec": 212.163067435918, "min_ops_per_sec": 206.34247237899666, "max_ops_per_sec": 217.35095267096065, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 3720521.3695652173, "ser_median_ns": 3714665.0, "ser_std_ns": 48880.23588338917, "ser_mad_ns": 32274.5, "ser_cv": 0.013138007023220337, "ser_min_ns": 3626266.0, "ser_max_ns": 3853434.0, "ser_p5_ns": 3653009.9, "ser_p25_ns": 3683103.5, "ser_p50_ns": 3714665.0, "ser_p75_ns": 3746706.75, "ser_p95_ns": 3812971.75, "ser_p99_ns": 3834057.37, "ser_ci_low_ns": 3710361.289673913, "ser_ci_high_ns": 3730818.8127717394, "deser_mean_ns": 992834.3152173914, "deser_median_ns": 990735.0, "deser_std_ns": 17171.648533588283, "deser_mad_ns": 10852.0, "deser_cv": 0.017295583231154106, "deser_min_ns": 959334.0, "deser_max_ns": 1033985.0, "deser_p5_ns": 966951.5, "deser_p25_ns": 982402.25, "deser_p50_ns": 990735.0, "deser_p75_ns": 1002365.25, "deser_p95_ns": 1027492.9, "deser_p99_ns": 1032362.47, "deser_ci_low_ns": 989590.0141304347, "deser_ci_high_ns": 996285.1975543479, "total_mean_ns": 4713355.684782608, "total_median_ns": 4707474.5, "total_std_ns": 56661.67312241508, "total_mad_ns": 35117.0, "total_cv": 0.012021514375702893, "total_min_ns": 4600854.0, "total_max_ns": 4846312.0, "total_p5_ns": 4634446.0, "total_p25_ns": 4674849.5, "total_p50_ns": 4707474.5, "total_p75_ns": 4749666.5, "total_p95_ns": 4816180.9, "total_p99_ns": 4825187.26, "total_ci_low_ns": 4701984.93451087, "total_ci_high_ns": 4724698.015217391, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 57.54371104579207}, {"serializer": "FlatBuffers", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "24.3.25", "avg_time_ser_ns": 2265892.9777777777, "avg_time_deser_ns": 99732.56666666667, "avg_time_total_ns": 2365625.5444444446, "median_size_bytes": 34184.0, "avg_ops_per_sec": 422.72117087526846, "min_ops_per_sec": 406.7942780316852, "max_ops_per_sec": 439.24476255526247, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 2265892.9777777777, "ser_median_ns": 2261543.0, "ser_std_ns": 33037.09948839701, "ser_mad_ns": 22359.0, "ser_cv": 0.014580167647987235, "ser_min_ns": 2193440.0, "ser_max_ns": 2352665.0, "ser_p5_ns": 2220614.4, "ser_p25_ns": 2243340.0, "ser_p50_ns": 2261543.0, "ser_p75_ns": 2286235.75, "ser_p95_ns": 2328571.1, "ser_p99_ns": 2342579.52, "ser_ci_low_ns": 2259339.4744444443, "ser_ci_high_ns": 2272797.6127777775, "deser_mean_ns": 99732.56666666667, "deser_median_ns": 97823.5, "deser_std_ns": 8009.713350437691, "deser_mad_ns": 4460.0, "deser_cv": 0.08031191433394398, "deser_min_ns": 83195.0, "deser_max_ns": 121246.0, "deser_p5_ns": 90985.4, "deser_p25_ns": 93819.5, "deser_p50_ns": 97823.5, "deser_p75_ns": 104246.75, "deser_p95_ns": 114513.45, "deser_p99_ns": 120958.53, "deser_ci_low_ns": 98125.56277777778, "deser_ci_high_ns": 101400.5861111111, "total_mean_ns": 2365625.5444444446, "total_median_ns": 2359758.5, "total_std_ns": 38146.10044545355, "total_mad_ns": 25616.0, "total_cv": 0.016125164244627725, "total_min_ns": 2276635.0, "total_max_ns": 2458245.0, "total_p5_ns": 2314815.65, "total_p25_ns": 2342709.25, "total_p50_ns": 2359758.5, "total_p75_ns": 2387375.75, "total_p95_ns": 2440689.95, "total_p99_ns": 2451802.29, "total_ci_low_ns": 2357872.3666666667, "total_ci_high_ns": 2373670.2977777775, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 9.82430778838743}, {"serializer": "Foundation.JSONEncoder", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 6037701.766666667, "avg_time_deser_ns": 1525200.8111111112, "avg_time_total_ns": 7562902.577777778, "median_size_bytes": 65958.0, "avg_ops_per_sec": 132.224366202775, "min_ops_per_sec": 128.59546490089662, "max_ops_per_sec": 135.63064520176076, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 6037701.766666667, "ser_median_ns": 6026196.5, "ser_std_ns": 70245.23218832815, "ser_mad_ns": 42842.5, "ser_cv": 0.011634432256350018, "ser_min_ns": 5883330.0, "ser_max_ns": 6215498.0, "ser_p5_ns": 5943833.5, "ser_p25_ns": 5990864.25, "ser_p50_ns": 6026196.5, "ser_p75_ns": 6084702.75, "ser_p95_ns": 6163456.7, "ser_p99_ns": 6201832.94, "ser_ci_low_ns": 6023339.9747222215, "ser_ci_high_ns": 6052256.181944445, "deser_mean_ns": 1525200.8111111112, "deser_median_ns": 1526066.5, "deser_std_ns": 21544.772461657474, "deser_mad_ns": 13882.5, "deser_cv": 0.01412585956203503, "deser_min_ns": 1475394.0, "deser_max_ns": 1569686.0, "deser_p5_ns": 1489206.55, "deser_p25_ns": 1511092.25, "deser_p50_ns": 1526066.5, "deser_p75_ns": 1539203.5, "deser_p95_ns": 1561627.1, "deser_p99_ns": 1568340.32, "deser_ci_low_ns": 1521049.3527777777, "deser_ci_high_ns": 1529657.2547222222, "total_mean_ns": 7562902.577777778, "total_median_ns": 7548844.5, "total_std_ns": 79756.12885765615, "total_mad_ns": 50937.0, "total_cv": 0.010545703588990438, "total_min_ns": 7372965.0, "total_max_ns": 7776324.0, "total_p5_ns": 7441688.45, "total_p25_ns": 7514197.5, "total_p50_ns": 7548844.5, "total_p75_ns": 7612932.5, "total_p95_ns": 7703207.55, "total_p99_ns": 7743186.63, "total_ci_low_ns": 7545732.721111111, "total_ci_high_ns": 7579627.014444444, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 89.84537218741765}, {"serializer": "XMLCoder", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "0.18.2", "avg_time_ser_ns": 30416805.483146068, "avg_time_deser_ns": 21522683.696629215, "avg_time_total_ns": 51939489.17977528, "median_size_bytes": 119676.0, "avg_ops_per_sec": 19.253173563928502, "min_ops_per_sec": 18.89250438943724, "max_ops_per_sec": 19.56719822982602, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 30416805.483146068, "ser_median_ns": 30414682.0, "ser_std_ns": 261419.8584457539, "ser_mad_ns": 187447.0, "ser_cv": 0.00859458625892211, "ser_min_ns": 29879429.0, "ser_max_ns": 31023944.0, "ser_p5_ns": 30032165.2, "ser_p25_ns": 30222473.0, "ser_p50_ns": 30414682.0, "ser_p75_ns": 30597495.0, "ser_p95_ns": 30853878.2, "ser_p99_ns": 31020139.76, "ser_ci_low_ns": 30364598.96938202, "ser_ci_high_ns": 30470114.289044943, "deser_mean_ns": 21522683.696629215, "deser_median_ns": 21505881.0, "deser_std_ns": 310331.0281261038, "deser_mad_ns": 199534.0, "deser_cv": 0.014418788683620641, "deser_min_ns": 20778343.0, "deser_max_ns": 22359543.0, "deser_p5_ns": 21103081.4, "deser_p25_ns": 21306347.0, "deser_p50_ns": 21505881.0, "deser_p75_ns": 21698726.0, "deser_p95_ns": 22091685.2, "deser_p99_ns": 22288160.04, "deser_ci_low_ns": 21457107.607584268, "deser_ci_high_ns": 21588159.716011234, "total_mean_ns": 51939489.17977528, "total_median_ns": 51952714.0, "total_std_ns": 387142.366129126, "total_mad_ns": 256157.0, "total_cv": 0.007453719169034018, "total_min_ns": 51105937.0, "total_max_ns": 52931045.0, "total_p5_ns": 51316145.0, "total_p25_ns": 51687352.0, "total_p50_ns": 51952714.0, "total_p75_ns": 52203507.0, "total_p95_ns": 52528874.4, "total_p99_ns": 52890524.52, "total_ci_low_ns": 51860746.986516856, "total_ci_high_ns": 52018228.82275281, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 179.40665923037267}, {"serializer": "SwiftBSON", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "3.1.0", "avg_time_ser_ns": 6665834.72631579, "avg_time_deser_ns": 5684175.231578947, "avg_time_total_ns": 12350009.957894737, "median_size_bytes": 46739.0, "avg_ops_per_sec": 80.97159463104323, "min_ops_per_sec": 78.3523994756344, "max_ops_per_sec": 83.0663166584348, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 6665834.72631579, "ser_median_ns": 6642429.0, "ser_std_ns": 130501.84988901965, "ser_mad_ns": 85297.0, "ser_cv": 0.01957772060771571, "ser_min_ns": 6444259.0, "ser_max_ns": 7001349.0, "ser_p5_ns": 6505437.0, "ser_p25_ns": 6564529.0, "ser_p50_ns": 6642429.0, "ser_p75_ns": 6743735.5, "ser_p95_ns": 6917689.3, "ser_p99_ns": 6955148.94, "ser_ci_low_ns": 6639349.097894737, "ser_ci_high_ns": 6692775.832894737, "deser_mean_ns": 5684175.231578947, "deser_median_ns": 5670790.0, "deser_std_ns": 60535.477960827244, "deser_mad_ns": 38409.0, "deser_cv": 0.01064982613915858, "deser_min_ns": 5561573.0, "deser_max_ns": 5871018.0, "deser_p5_ns": 5599040.7, "deser_p25_ns": 5640631.0, "deser_p50_ns": 5670790.0, "deser_p75_ns": 5730909.5, "deser_p95_ns": 5778431.1, "deser_p99_ns": 5827242.2, "deser_ci_low_ns": 5672455.141052632, "deser_ci_high_ns": 5695904.67131579, "total_mean_ns": 12350009.957894737, "total_median_ns": 12308543.0, "total_std_ns": 159217.61984198593, "total_mad_ns": 91706.0, "total_cv": 0.012892104571964831, "total_min_ns": 12038574.0, "total_max_ns": 12762851.0, "total_p5_ns": 12131606.1, "total_p25_ns": 12246827.0, "total_p50_ns": 12308543.0, "total_p75_ns": 12451665.0, "total_p95_ns": 12656944.1, "total_p99_ns": 12749595.12, "total_ci_low_ns": 12319624.22263158, "total_ci_high_ns": 12382832.915526316, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 87.53736992532194}, {"serializer": "Foundation.PropertyListEncoder", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 5197660.852631579, "avg_time_deser_ns": 3816181.294736842, "avg_time_total_ns": 9013842.147368422, "median_size_bytes": 48907.0, "avg_ops_per_sec": 110.94048283194626, "min_ops_per_sec": 107.58510492829076, "max_ops_per_sec": 114.40574225301516, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 5197660.852631579, "ser_median_ns": 5188967.0, "ser_std_ns": 73669.94274392336, "ser_mad_ns": 42033.0, "ser_cv": 0.014173672510130055, "ser_min_ns": 5038251.0, "ser_max_ns": 5377488.0, "ser_p5_ns": 5078399.0, "ser_p25_ns": 5153950.5, "ser_p50_ns": 5188967.0, "ser_p75_ns": 5241813.0, "ser_p95_ns": 5326304.0, "ser_p99_ns": 5373759.96, "ser_ci_low_ns": 5183236.522368421, "ser_ci_high_ns": 5212828.665, "deser_mean_ns": 3816181.294736842, "deser_median_ns": 3815420.0, "deser_std_ns": 53074.61522312168, "deser_mad_ns": 32472.0, "deser_cv": 0.013907781398205721, "deser_min_ns": 3697585.0, "deser_max_ns": 3941388.0, "deser_p5_ns": 3732892.5, "deser_p25_ns": 3782974.5, "deser_p50_ns": 3815420.0, "deser_p75_ns": 3847839.0, "deser_p95_ns": 3910011.7, "deser_p99_ns": 3934412.2600000002, "deser_ci_low_ns": 3805497.240789474, "deser_ci_high_ns": 3826339.330526316, "total_mean_ns": 9013842.147368422, "total_median_ns": 9016796.0, "total_std_ns": 101256.95719391109, "total_mad_ns": 72542.0, "total_cv": 0.011233495721186211, "total_min_ns": 8740820.0, "total_max_ns": 9294967.0, "total_p5_ns": 8827083.0, "total_p25_ns": 8946857.5, "total_p50_ns": 9016796.0, "total_p75_ns": 9090112.5, "total_p95_ns": 9164613.3, "total_p99_ns": 9196467.22, "total_ci_low_ns": 8993403.436842106, "total_ci_high_ns": 9033241.18631579, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 90.7690616111147}, {"serializer": "SwiftCbor", "test_data": "telemetry", "type_config_hash": "0dc568076b54", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "0.0.4", "avg_time_ser_ns": 4815506.319587629, "avg_time_deser_ns": 1805173.4536082475, "avg_time_total_ns": 6620679.773195877, "median_size_bytes": 34534.0, "avg_ops_per_sec": 151.04189211031553, "min_ops_per_sec": 144.20868727553017, "max_ops_per_sec": 157.8221801713791, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 4815506.319587629, "ser_median_ns": 4819172.0, "ser_std_ns": 89676.57078827622, "ser_mad_ns": 59767.0, "ser_cv": 0.018622459371199742, "ser_min_ns": 4584877.0, "ser_max_ns": 5028581.0, "ser_p5_ns": 4685489.0, "ser_p25_ns": 4756771.0, "ser_p50_ns": 4819172.0, "ser_p75_ns": 4878318.0, "ser_p95_ns": 4987502.4, "ser_p99_ns": 5021634.4399999995, "ser_ci_low_ns": 4798186.179896907, "ser_ci_high_ns": 4833863.022164948, "deser_mean_ns": 1805173.4536082475, "deser_median_ns": 1796302.0, "deser_std_ns": 56622.29796294562, "deser_mad_ns": 33583.0, "deser_cv": 0.031366679944116654, "deser_min_ns": 1686843.0, "deser_max_ns": 1961252.0, "deser_p5_ns": 1730466.8, "deser_p25_ns": 1763083.0, "deser_p50_ns": 1796302.0, "deser_p75_ns": 1842309.0, "deser_p95_ns": 1907724.4, "deser_p99_ns": 1945250.72, "deser_ci_low_ns": 1793970.6100515465, "deser_ci_high_ns": 1816223.242783505, "total_mean_ns": 6620679.773195877, "total_median_ns": 6609796.0, "total_std_ns": 120725.74394741312, "total_mad_ns": 88970.0, "total_cv": 0.018234644792242752, "total_min_ns": 6336245.0, "total_max_ns": 6934395.0, "total_p5_ns": 6452448.4, "total_p25_ns": 6535448.0, "total_p50_ns": 6609796.0, "total_p75_ns": 6710335.0, "total_p95_ns": 6827160.6, "total_p99_ns": 6890704.4399999995, "total_ci_low_ns": 6596691.173711341, "total_ci_high_ns": 6645156.664175258, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 50.5477283600855}, {"serializer": "BinaryCodable", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "4.0.0", "avg_time_ser_ns": 24293.353658536584, "avg_time_deser_ns": 12344.036585365853, "avg_time_total_ns": 36637.39024390244, "median_size_bytes": 344.0, "avg_ops_per_sec": 27294.520525146574, "min_ops_per_sec": 25305.56469367614, "max_ops_per_sec": 29824.038174768863, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 24293.353658536584, "ser_median_ns": 24136.5, "ser_std_ns": 1135.543437334244, "ser_mad_ns": 788.5, "ser_cv": 0.046742967368575666, "ser_min_ns": 21947.0, "ser_max_ns": 26820.0, "ser_p5_ns": 22560.95, "ser_p25_ns": 23536.75, "ser_p50_ns": 24136.5, "ser_p75_ns": 25055.0, "ser_p95_ns": 26356.95, "ser_p99_ns": 26777.07, "ser_ci_low_ns": 24059.447256097563, "ser_ci_high_ns": 24535.059146341464, "deser_mean_ns": 12344.036585365853, "deser_median_ns": 12346.5, "deser_std_ns": 431.27128883211367, "deser_mad_ns": 304.5, "deser_cv": 0.0349376223773831, "deser_min_ns": 11416.0, "deser_max_ns": 13728.0, "deser_p5_ns": 11682.7, "deser_p25_ns": 12024.5, "deser_p50_ns": 12346.5, "deser_p75_ns": 12619.0, "deser_p95_ns": 12974.6, "deser_p99_ns": 13641.33, "deser_ci_low_ns": 12255.663414634148, "deser_ci_high_ns": 12435.295731707316, "total_mean_ns": 36637.39024390244, "total_median_ns": 36513.5, "total_std_ns": 1443.9191417128861, "total_mad_ns": 1011.5, "total_cv": 0.0394110806501344, "total_min_ns": 33530.0, "total_max_ns": 39517.0, "total_p5_ns": 34297.95, "total_p25_ns": 35600.25, "total_p50_ns": 36513.5, "total_p75_ns": 37689.25, "total_p95_ns": 39046.65, "total_p99_ns": 39296.68, "total_ci_low_ns": 36337.52134146341, "total_ci_high_ns": 36957.98140243903, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.238117986229067}, {"serializer": "CapnProto", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "capnproto-1.0.2", "avg_time_ser_ns": 18185.275862068964, "avg_time_deser_ns": 12702.528735632184, "avg_time_total_ns": 30887.80459770115, "median_size_bytes": 736.0, "avg_ops_per_sec": 32375.237185825303, "min_ops_per_sec": 27807.903006034314, "max_ops_per_sec": 40620.68405231944, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 18185.275862068964, "ser_median_ns": 18426.0, "ser_std_ns": 1795.8380287043756, "ser_mad_ns": 1156.0, "ser_cv": 0.09875231161327352, "ser_min_ns": 13542.0, "ser_max_ns": 22833.0, "ser_p5_ns": 15383.4, "ser_p25_ns": 17091.5, "ser_p50_ns": 18426.0, "ser_p75_ns": 19213.5, "ser_p95_ns": 20650.2, "ser_p99_ns": 22569.84, "ser_ci_low_ns": 17828.818390804598, "ser_ci_high_ns": 18557.686781609194, "deser_mean_ns": 12702.528735632184, "deser_median_ns": 12766.0, "deser_std_ns": 696.6901289616272, "deser_mad_ns": 522.0, "deser_cv": 0.05484656980206816, "deser_min_ns": 10960.0, "deser_max_ns": 14137.0, "deser_p5_ns": 11482.8, "deser_p25_ns": 12247.5, "deser_p50_ns": 12766.0, "deser_p75_ns": 13279.5, "deser_p95_ns": 13627.4, "deser_p99_ns": 13782.68, "deser_ci_low_ns": 12561.407183908046, "deser_ci_high_ns": 12844.74856321839, "total_mean_ns": 30887.80459770115, "total_median_ns": 31425.0, "total_std_ns": 2359.128952571761, "total_mad_ns": 1460.0, "total_cv": 0.07637735939145837, "total_min_ns": 24618.0, "total_max_ns": 35961.0, "total_p5_ns": 26901.6, "total_p25_ns": 29535.0, "total_p50_ns": 31425.0, "total_p75_ns": 32496.5, "total_p95_ns": 34082.9, "total_p99_ns": 35886.18, "total_ci_low_ns": 30374.087068965517, "total_ci_high_ns": 31373.491666666665, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.214519713187158}, {"serializer": "SwiftAvroCore", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "2.3.0", "avg_time_ser_ns": 25912.154761904763, "avg_time_deser_ns": 18328.619047619046, "avg_time_total_ns": 44240.77380952381, "median_size_bytes": 338.0, "avg_ops_per_sec": 22603.582936985786, "min_ops_per_sec": 19530.868537723873, "max_ops_per_sec": 26020.660404361064, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 25912.154761904763, "ser_median_ns": 26024.5, "ser_std_ns": 1925.4793707244658, "ser_mad_ns": 1387.0, "ser_cv": 0.07430796043080312, "ser_min_ns": 20855.0, "ser_max_ns": 31162.0, "ser_p5_ns": 23394.9, "ser_p25_ns": 24403.5, "ser_p50_ns": 26024.5, "ser_p75_ns": 27191.5, "ser_p95_ns": 28896.5, "ser_p99_ns": 30275.56, "ser_ci_low_ns": 25530.599107142854, "ser_ci_high_ns": 26319.250297619048, "deser_mean_ns": 18328.619047619046, "deser_median_ns": 18242.5, "deser_std_ns": 543.0030487558225, "deser_mad_ns": 308.5, "deser_cv": 0.02962596621955327, "deser_min_ns": 17232.0, "deser_max_ns": 20039.0, "deser_p5_ns": 17601.4, "deser_p25_ns": 17964.25, "deser_p50_ns": 18242.5, "deser_p75_ns": 18758.75, "deser_p95_ns": 19215.85, "deser_p99_ns": 19604.08, "deser_ci_low_ns": 18218.167261904764, "deser_ci_high_ns": 18446.947023809524, "total_mean_ns": 44240.77380952381, "total_median_ns": 44051.5, "total_std_ns": 2337.575535026921, "total_mad_ns": 1646.5, "total_cv": 0.05283758247744993, "total_min_ns": 38431.0, "total_max_ns": 51201.0, "total_p5_ns": 41027.2, "total_p25_ns": 42394.25, "total_p50_ns": 44051.5, "total_p75_ns": 45689.5, "total_p95_ns": 48110.45, "total_p99_ns": 49726.920000000006, "total_ci_low_ns": 43758.85029761905, "total_ci_high_ns": 44736.684226190475, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.4990423643681}, {"serializer": "IkigaJSON", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "2.5.3", "avg_time_ser_ns": 13832.858823529412, "avg_time_deser_ns": 18569.55294117647, "avg_time_total_ns": 32402.41176470588, "median_size_bytes": 411.0, "avg_ops_per_sec": 30861.90025796918, "min_ops_per_sec": 28271.748042181447, "max_ops_per_sec": 34189.203049676915, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 13832.858823529412, "ser_median_ns": 13712.0, "ser_std_ns": 750.4966316497677, "ser_mad_ns": 490.0, "ser_cv": 0.05425462959060842, "ser_min_ns": 12372.0, "ser_max_ns": 15643.0, "ser_p5_ns": 12894.0, "ser_p25_ns": 13352.0, "ser_p50_ns": 13712.0, "ser_p75_ns": 14235.0, "ser_p95_ns": 15417.6, "ser_p99_ns": 15622.84, "ser_ci_low_ns": 13671.893529411764, "ser_ci_high_ns": 13999.703235294119, "deser_mean_ns": 18569.55294117647, "deser_median_ns": 18612.0, "deser_std_ns": 638.183984254622, "deser_mad_ns": 386.0, "deser_cv": 0.03436722393243518, "deser_min_ns": 16869.0, "deser_max_ns": 20483.0, "deser_p5_ns": 17281.0, "deser_p25_ns": 18201.0, "deser_p50_ns": 18612.0, "deser_p75_ns": 18994.0, "deser_p95_ns": 19409.4, "deser_p99_ns": 19756.399999999998, "deser_ci_low_ns": 18433.422647058826, "deser_ci_high_ns": 18708.104117647057, "total_mean_ns": 32402.41176470588, "total_median_ns": 32392.0, "total_std_ns": 1175.7699634719374, "total_mad_ns": 625.0, "total_cv": 0.036286495338987, "total_min_ns": 29249.0, "total_max_ns": 35371.0, "total_p5_ns": 30639.2, "total_p25_ns": 31682.0, "total_p50_ns": 32392.0, "total_p75_ns": 32961.0, "total_p95_ns": 34624.0, "total_p99_ns": 35100.52, "total_ci_low_ns": 32152.730294117646, "total_ci_high_ns": 32635.31794117647, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 31.414727763237718}, {"serializer": "Yams", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "5.4.0", "avg_time_ser_ns": 244625.75862068965, "avg_time_deser_ns": 56291.5632183908, "avg_time_total_ns": 300917.3218390805, "median_size_bytes": 407.0, "avg_ops_per_sec": 3323.1719393500493, "min_ops_per_sec": 3169.5620616099472, "max_ops_per_sec": 3476.68880158537, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 244625.75862068965, "ser_median_ns": 244626.0, "ser_std_ns": 5166.201739944225, "ser_mad_ns": 3166.0, "ser_cv": 0.021118797010885527, "ser_min_ns": 233425.0, "ser_max_ns": 256760.0, "ser_p5_ns": 235687.2, "ser_p25_ns": 241183.5, "ser_p50_ns": 244626.0, "ser_p75_ns": 247716.5, "ser_p95_ns": 253573.5, "ser_p99_ns": 256708.4, "ser_ci_low_ns": 243523.01436781607, "ser_ci_high_ns": 245636.81264367816, "deser_mean_ns": 56291.5632183908, "deser_median_ns": 56346.0, "deser_std_ns": 1771.8038417147377, "deser_mad_ns": 1233.0, "deser_cv": 0.03147547768110086, "deser_min_ns": 52085.0, "deser_max_ns": 61529.0, "deser_p5_ns": 53308.7, "deser_p25_ns": 55093.0, "deser_p50_ns": 56346.0, "deser_p75_ns": 57454.0, "deser_p95_ns": 58590.5, "deser_p99_ns": 61081.8, "deser_ci_low_ns": 55925.12816091954, "deser_ci_high_ns": 56640.79568965518, "total_mean_ns": 300917.3218390805, "total_median_ns": 301253.0, "total_std_ns": 6260.022976208397, "total_mad_ns": 4488.0, "total_cv": 0.020803132694222327, "total_min_ns": 287630.0, "total_max_ns": 315501.0, "total_p5_ns": 290292.1, "total_p25_ns": 296120.0, "total_p50_ns": 301253.0, "total_p75_ns": 304937.5, "total_p95_ns": 310471.9, "total_p99_ns": 315090.78, "total_ci_low_ns": 299505.97931034485, "total_ci_high_ns": 302116.1626436782, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 66.42683879288762}, {"serializer": "SwiftBSON", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "3.1.0", "avg_time_ser_ns": 43599.69565217391, "avg_time_deser_ns": 48626.663043478264, "avg_time_total_ns": 92226.35869565218, "median_size_bytes": 599.0, "avg_ops_per_sec": 10842.887154419803, "min_ops_per_sec": 10138.800174387363, "max_ops_per_sec": 11837.541579364797, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 43599.69565217391, "ser_median_ns": 43549.0, "ser_std_ns": 1867.3825763817908, "ser_mad_ns": 1273.0, "ser_cv": 0.042830174579181535, "ser_min_ns": 39052.0, "ser_max_ns": 48318.0, "ser_p5_ns": 40536.0, "ser_p25_ns": 42220.75, "ser_p50_ns": 43549.0, "ser_p75_ns": 44641.0, "ser_p95_ns": 46532.6, "ser_p99_ns": 48196.06, "ser_ci_low_ns": 43216.77744565217, "ser_ci_high_ns": 43975.61766304348, "deser_mean_ns": 48626.663043478264, "deser_median_ns": 48693.0, "deser_std_ns": 1400.771359535927, "deser_mad_ns": 990.5, "deser_cv": 0.028806651986040332, "deser_min_ns": 44570.0, "deser_max_ns": 52755.0, "deser_p5_ns": 46494.6, "deser_p25_ns": 47599.25, "deser_p50_ns": 48693.0, "deser_p75_ns": 49550.75, "deser_p95_ns": 50594.5, "deser_p99_ns": 52370.07, "deser_ci_low_ns": 48335.65326086956, "deser_ci_high_ns": 48910.60108695652, "total_mean_ns": 92226.35869565218, "total_median_ns": 92410.0, "total_std_ns": 2909.6065992211466, "total_mad_ns": 2065.0, "total_cv": 0.031548536019110056, "total_min_ns": 84477.0, "total_max_ns": 98631.0, "total_p5_ns": 87302.75, "total_p25_ns": 90479.25, "total_p50_ns": 92410.0, "total_p75_ns": 94577.5, "total_p95_ns": 96262.9, "total_p99_ns": 97748.3, "total_ci_low_ns": 91621.71114130435, "total_ci_high_ns": 92781.42065217391, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 41.286772227060126}, {"serializer": "Foundation.JSONEncoder", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 18787.64285714286, "avg_time_deser_ns": 16615.464285714286, "avg_time_total_ns": 35403.107142857145, "median_size_bytes": 411.0, "avg_ops_per_sec": 28246.1083419837, "min_ops_per_sec": 25420.066600574493, "max_ops_per_sec": 32014.342425406583, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 18787.64285714286, "ser_median_ns": 18808.5, "ser_std_ns": 875.3895469241264, "ser_mad_ns": 569.0, "ser_cv": 0.046593899702075336, "ser_min_ns": 16584.0, "ser_max_ns": 21053.0, "ser_p5_ns": 17303.05, "ser_p25_ns": 18223.0, "ser_p50_ns": 18808.5, "ser_p75_ns": 19334.25, "ser_p95_ns": 20104.1, "ser_p99_ns": 20958.38, "ser_ci_low_ns": 18594.881250000002, "ser_ci_high_ns": 18974.11577380952, "deser_mean_ns": 16615.464285714286, "deser_median_ns": 16500.5, "deser_std_ns": 941.4565803503771, "deser_mad_ns": 500.0, "deser_cv": 0.05666146694196361, "deser_min_ns": 14652.0, "deser_max_ns": 19120.0, "deser_p5_ns": 15410.05, "deser_p25_ns": 16022.5, "deser_p50_ns": 16500.5, "deser_p75_ns": 17010.75, "deser_p95_ns": 18629.5, "deser_p99_ns": 19029.53, "deser_ci_low_ns": 16410.538988095235, "deser_ci_high_ns": 16812.779166666667, "total_mean_ns": 35403.107142857145, "total_median_ns": 35357.5, "total_std_ns": 1609.9270358222004, "total_mad_ns": 1041.5, "total_cv": 0.04547417347652255, "total_min_ns": 31236.0, "total_max_ns": 39339.0, "total_p5_ns": 32792.6, "total_p25_ns": 34306.0, "total_p50_ns": 35357.5, "total_p75_ns": 36389.0, "total_p95_ns": 37961.75, "total_p99_ns": 38889.97, "total_ci_low_ns": 35044.82291666667, "total_ci_high_ns": 35736.30952380952, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.071795361745806}, {"serializer": "TOML", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "2.0.0", "avg_time_ser_ns": 41123.057471264365, "avg_time_deser_ns": 30417.137931034482, "avg_time_total_ns": 71540.19540229885, "median_size_bytes": 441.0, "avg_ops_per_sec": 13978.15583780005, "min_ops_per_sec": 13036.44991395943, "max_ops_per_sec": 15450.935554147803, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 41123.057471264365, "ser_median_ns": 41309.0, "ser_std_ns": 2090.9509428716538, "ser_mad_ns": 1290.0, "ser_cv": 0.050846193630732624, "ser_min_ns": 36098.0, "ser_max_ns": 45083.0, "ser_p5_ns": 37244.1, "ser_p25_ns": 40037.5, "ser_p50_ns": 41309.0, "ser_p75_ns": 42623.0, "ser_p95_ns": 44171.4, "ser_p99_ns": 44452.62, "ser_ci_low_ns": 40658.393103448274, "ser_ci_high_ns": 41557.254310344826, "deser_mean_ns": 30417.137931034482, "deser_median_ns": 30398.0, "deser_std_ns": 1034.8909859723547, "deser_mad_ns": 651.0, "deser_cv": 0.03402328609347757, "deser_min_ns": 27664.0, "deser_max_ns": 32870.0, "deser_p5_ns": 28622.9, "deser_p25_ns": 29794.0, "deser_p50_ns": 30398.0, "deser_p75_ns": 31159.0, "deser_p95_ns": 31895.9, "deser_p99_ns": 32440.0, "deser_ci_low_ns": 30201.297413793105, "deser_ci_high_ns": 30627.466954022988, "total_mean_ns": 71540.19540229885, "total_median_ns": 71452.0, "total_std_ns": 2950.3745045651267, "total_mad_ns": 1957.0, "total_cv": 0.04124079460468346, "total_min_ns": 64721.0, "total_max_ns": 76708.0, "total_p5_ns": 65531.9, "total_p25_ns": 69984.0, "total_p50_ns": 71452.0, "total_p75_ns": 73997.0, "total_p95_ns": 75686.2, "total_p99_ns": 76432.8, "total_ci_low_ns": 70926.25287356322, "total_ci_high_ns": 72147.03821839081, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 31.474024556124775}, {"serializer": "SwiftProtobuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "1.38.1", "avg_time_ser_ns": 2100.8045977011493, "avg_time_deser_ns": 3000.6666666666665, "avg_time_total_ns": 5101.471264367816, "median_size_bytes": 368.0, "avg_ops_per_sec": 196021.8823508206, "min_ops_per_sec": 162601.62601626015, "max_ops_per_sec": 236183.27822390175, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 2100.8045977011493, "ser_median_ns": 2123.0, "ser_std_ns": 182.4702485517086, "ser_mad_ns": 103.0, "ser_cv": 0.08685731588334328, "ser_min_ns": 1602.0, "ser_max_ns": 2574.0, "ser_p5_ns": 1818.8, "ser_p25_ns": 1988.5, "ser_p50_ns": 2123.0, "ser_p75_ns": 2211.5, "ser_p95_ns": 2306.7000000000003, "ser_p99_ns": 2568.84, "ser_ci_low_ns": 2061.827011494253, "ser_ci_high_ns": 2137.0252873563218, "deser_mean_ns": 3000.6666666666665, "deser_median_ns": 3004.0, "deser_std_ns": 207.0667607581012, "deser_mad_ns": 156.0, "deser_cv": 0.06900691871520813, "deser_min_ns": 2580.0, "deser_max_ns": 3576.0, "deser_p5_ns": 2645.3, "deser_p25_ns": 2858.0, "deser_p50_ns": 3004.0, "deser_p75_ns": 3161.0, "deser_p95_ns": 3342.1, "deser_p99_ns": 3418.62, "deser_ci_low_ns": 2957.86091954023, "deser_ci_high_ns": 3042.5097701149425, "total_mean_ns": 5101.471264367816, "total_median_ns": 5159.0, "total_std_ns": 359.83364499673814, "total_mad_ns": 233.0, "total_cv": 0.07053526842541755, "total_min_ns": 4234.0, "total_max_ns": 6150.0, "total_p5_ns": 4434.7, "total_p25_ns": 4853.0, "total_p50_ns": 5159.0, "total_p75_ns": 5340.5, "total_p95_ns": 5547.9, "total_p99_ns": 5974.56, "total_ci_low_ns": 5024.349425287356, "total_ci_high_ns": 5175.703448275862, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "XMLCoder", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "0.18.2", "avg_time_ser_ns": 192002.72043010753, "avg_time_deser_ns": 182489.0, "avg_time_total_ns": 374491.72043010755, "median_size_bytes": 803.0, "avg_ops_per_sec": 2670.286004858772, "min_ops_per_sec": 2551.196128304756, "max_ops_per_sec": 2868.6584718656322, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 192002.72043010753, "ser_median_ns": 192475.0, "ser_std_ns": 4483.999516070619, "ser_mad_ns": 3262.0, "ser_cv": 0.023353833247914197, "ser_min_ns": 180124.0, "ser_max_ns": 202402.0, "ser_p5_ns": 184288.8, "ser_p25_ns": 189027.0, "ser_p50_ns": 192475.0, "ser_p75_ns": 194592.0, "ser_p95_ns": 199452.0, "ser_p99_ns": 201415.76, "ser_ci_low_ns": 191096.4698924731, "ser_ci_high_ns": 192929.58951612902, "deser_mean_ns": 182489.0, "deser_median_ns": 182134.0, "deser_std_ns": 6686.490507310081, "deser_mad_ns": 3571.0, "deser_cv": 0.03664051261889802, "deser_min_ns": 167768.0, "deser_max_ns": 196255.0, "deser_p5_ns": 172242.0, "deser_p25_ns": 178697.0, "deser_p50_ns": 182134.0, "deser_p75_ns": 186356.0, "deser_p95_ns": 194363.59999999998, "deser_p99_ns": 196171.28, "deser_ci_low_ns": 181094.29274193547, "deser_ci_high_ns": 183797.9674731183, "total_mean_ns": 374491.72043010755, "total_median_ns": 376196.0, "total_std_ns": 9614.584706224447, "total_mad_ns": 7059.0, "total_cv": 0.025673690983560326, "total_min_ns": 348595.0, "total_max_ns": 391973.0, "total_p5_ns": 356777.2, "total_p25_ns": 367925.0, "total_p50_ns": 376196.0, "total_p75_ns": 381140.0, "total_p95_ns": 388126.6, "total_p99_ns": 391378.68, "total_ci_low_ns": 372552.8427419355, "total_ci_high_ns": 376368.4752688172, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 53.180266277923195}, {"serializer": "FlatBuffers", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "24.3.25", "avg_time_ser_ns": 4213.545454545455, "avg_time_deser_ns": 5986.558441558442, "avg_time_total_ns": 10200.103896103896, "median_size_bytes": 684.0, "avg_ops_per_sec": 98038.21707953064, "min_ops_per_sec": 89726.33467922836, "max_ops_per_sec": 110144.28901861438, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 4213.545454545455, "ser_median_ns": 4214.0, "ser_std_ns": 215.66235461056309, "ser_mad_ns": 141.0, "ser_cv": 0.05118310860463427, "ser_min_ns": 3568.0, "ser_max_ns": 4741.0, "ser_p5_ns": 3900.4, "ser_p25_ns": 4081.0, "ser_p50_ns": 4214.0, "ser_p75_ns": 4355.0, "ser_p95_ns": 4581.8, "ser_p99_ns": 4693.88, "ser_ci_low_ns": 4165.402597402597, "ser_ci_high_ns": 4259.15487012987, "deser_mean_ns": 5986.558441558442, "deser_median_ns": 5991.0, "deser_std_ns": 240.44095968090824, "deser_mad_ns": 143.0, "deser_cv": 0.04016346988476334, "deser_min_ns": 5472.0, "deser_max_ns": 6623.0, "deser_p5_ns": 5587.2, "deser_p25_ns": 5837.0, "deser_p50_ns": 5991.0, "deser_p75_ns": 6115.0, "deser_p95_ns": 6392.6, "deser_p99_ns": 6559.16, "deser_ci_low_ns": 5932.318181818181, "deser_ci_high_ns": 6040.105844155843, "total_mean_ns": 10200.103896103896, "total_median_ns": 10218.0, "total_std_ns": 411.41989641828354, "total_mad_ns": 226.0, "total_cv": 0.04033487311589369, "total_min_ns": 9079.0, "total_max_ns": 11145.0, "total_p5_ns": 9517.8, "total_p25_ns": 9976.0, "total_p50_ns": 10218.0, "total_p75_ns": 10392.0, "total_p95_ns": 10913.800000000001, "total_p99_ns": 11062.92, "total_ci_low_ns": 10108.074675324675, "total_ci_high_ns": 10289.754870129871, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.18533992304065}, {"serializer": "Foundation.PropertyListEncoder", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 27598.352941176472, "avg_time_deser_ns": 44137.882352941175, "avg_time_total_ns": 71736.23529411765, "median_size_bytes": 504.0, "avg_ops_per_sec": 13939.956507335697, "min_ops_per_sec": 13087.97738397508, "max_ops_per_sec": 15213.984694731396, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 27598.352941176472, "ser_median_ns": 27630.0, "ser_std_ns": 1134.9032233325147, "ser_mad_ns": 753.0, "ser_cv": 0.04112213601121283, "ser_min_ns": 24860.0, "ser_max_ns": 29790.0, "ser_p5_ns": 25470.8, "ser_p25_ns": 26969.0, "ser_p50_ns": 27630.0, "ser_p75_ns": 28444.0, "ser_p95_ns": 29313.4, "ser_p99_ns": 29572.44, "ser_ci_low_ns": 27355.531470588237, "ser_ci_high_ns": 27824.93617647059, "deser_mean_ns": 44137.882352941175, "deser_median_ns": 44157.0, "deser_std_ns": 1354.7706835630954, "deser_mad_ns": 884.0, "deser_cv": 0.030694057153215888, "deser_min_ns": 40869.0, "deser_max_ns": 48138.0, "deser_p5_ns": 41964.2, "deser_p25_ns": 43273.0, "deser_p50_ns": 44157.0, "deser_p75_ns": 45038.0, "deser_p95_ns": 46035.6, "deser_p99_ns": 47571.0, "deser_ci_low_ns": 43864.27970588235, "deser_ci_high_ns": 44422.68676470588, "total_mean_ns": 71736.23529411765, "total_median_ns": 71805.0, "total_std_ns": 2248.059489379032, "total_mad_ns": 1553.0, "total_cv": 0.031337851507847, "total_min_ns": 65729.0, "total_max_ns": 76406.0, "total_p5_ns": 67286.6, "total_p25_ns": 70310.0, "total_p50_ns": 71805.0, "total_p75_ns": 73358.0, "total_p95_ns": 74812.2, "total_p99_ns": 76269.08, "total_ci_low_ns": 71250.20823529412, "total_ci_high_ns": 72226.92470588235, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 41.44120147144612}, {"serializer": "SwiftMsgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "1.2.1", "avg_time_ser_ns": 29559.068965517243, "avg_time_deser_ns": 24413.264367816093, "avg_time_total_ns": 53972.333333333336, "median_size_bytes": 346.0, "avg_ops_per_sec": 18528.011265030847, "min_ops_per_sec": 17019.828099736194, "max_ops_per_sec": 19840.4825205349, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 29559.068965517243, "ser_median_ns": 29563.0, "ser_std_ns": 993.2334533546838, "ser_mad_ns": 727.0, "ser_cv": 0.03360164877024244, "ser_min_ns": 27095.0, "ser_max_ns": 32609.0, "ser_p5_ns": 28140.2, "ser_p25_ns": 28831.5, "ser_p50_ns": 29563.0, "ser_p75_ns": 30281.5, "ser_p95_ns": 30996.100000000002, "ser_p99_ns": 32164.38, "ser_ci_low_ns": 29365.081896551725, "ser_ci_high_ns": 29768.43735632184, "deser_mean_ns": 24413.264367816093, "deser_median_ns": 24423.0, "deser_std_ns": 718.26537590727, "deser_mad_ns": 519.0, "deser_cv": 0.02942111161726313, "deser_min_ns": 22886.0, "deser_max_ns": 26316.0, "deser_p5_ns": 23260.2, "deser_p25_ns": 23898.5, "deser_p50_ns": 24423.0, "deser_p75_ns": 24882.5, "deser_p95_ns": 25615.0, "deser_p99_ns": 26169.8, "deser_ci_low_ns": 24262.147413793104, "deser_ci_high_ns": 24560.78132183908, "total_mean_ns": 53972.333333333336, "total_median_ns": 54164.0, "total_std_ns": 1571.4875612103203, "total_mad_ns": 1169.0, "total_cv": 0.02911653923696067, "total_min_ns": 50402.0, "total_max_ns": 58755.0, "total_p5_ns": 51326.9, "total_p25_ns": 52784.0, "total_p50_ns": 54164.0, "total_p75_ns": 55101.0, "total_p95_ns": 55988.8, "total_p99_ns": 58456.58, "total_ci_low_ns": 53653.8606321839, "total_ci_high_ns": 54309.80948275862, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 42.68317927236778}, {"serializer": "SwiftCbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "0.0.4", "avg_time_ser_ns": 33491.2183908046, "avg_time_deser_ns": 23866.126436781607, "avg_time_total_ns": 57357.34482758621, "median_size_bytes": 345.0, "avg_ops_per_sec": 17434.55878241851, "min_ops_per_sec": 15842.337061563321, "max_ops_per_sec": 18672.044215400703, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 33491.2183908046, "ser_median_ns": 33373.0, "ser_std_ns": 1387.1927183334622, "ser_mad_ns": 923.0, "ser_cv": 0.04141959549355576, "ser_min_ns": 31021.0, "ser_max_ns": 37448.0, "ser_p5_ns": 31432.0, "ser_p25_ns": 32527.0, "ser_p50_ns": 33373.0, "ser_p75_ns": 34357.5, "ser_p95_ns": 35978.8, "ser_p99_ns": 37257.94, "ser_ci_low_ns": 33199.28218390804, "ser_ci_high_ns": 33779.0341954023, "deser_mean_ns": 23866.126436781607, "deser_median_ns": 23871.0, "deser_std_ns": 678.2718602345176, "deser_mad_ns": 434.0, "deser_cv": 0.02841985531381371, "deser_min_ns": 22077.0, "deser_max_ns": 25895.0, "deser_p5_ns": 22848.7, "deser_p25_ns": 23407.0, "deser_p50_ns": 23871.0, "deser_p75_ns": 24277.5, "deser_p95_ns": 24953.6, "deser_p99_ns": 25568.2, "deser_ci_low_ns": 23724.04195402299, "deser_ci_high_ns": 24003.11091954023, "total_mean_ns": 57357.34482758621, "total_median_ns": 57375.0, "total_std_ns": 1974.7835549785282, "total_mad_ns": 1249.0, "total_cv": 0.03442947997182654, "total_min_ns": 53556.0, "total_max_ns": 63122.0, "total_p5_ns": 54344.9, "total_p25_ns": 55947.0, "total_p50_ns": 57375.0, "total_p75_ns": 58434.0, "total_p95_ns": 60270.5, "total_p99_ns": 62658.46, "total_ci_low_ns": 56943.9433908046, "total_ci_high_ns": 57748.81350574712, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 36.655348176076664}, {"serializer": "IkigaJSON", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "2.5.3", "avg_time_ser_ns": 41408.20481927711, "avg_time_deser_ns": 19650.927710843374, "avg_time_total_ns": 61059.132530120485, "median_size_bytes": 411.0, "avg_ops_per_sec": 16377.566443589742, "min_ops_per_sec": 15492.10677159987, "max_ops_per_sec": 17261.617068286956, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 41408.20481927711, "ser_median_ns": 41337.0, "ser_std_ns": 1026.562102466477, "ser_mad_ns": 603.0, "ser_cv": 0.024791272815298984, "ser_min_ns": 39606.0, "ser_max_ns": 44089.0, "ser_p5_ns": 40134.5, "ser_p25_ns": 40693.5, "ser_p50_ns": 41337.0, "ser_p75_ns": 41835.0, "ser_p95_ns": 43667.3, "ser_p99_ns": 44019.3, "ser_ci_low_ns": 41200.308132530125, "ser_ci_high_ns": 41635.83192771084, "deser_mean_ns": 19650.927710843374, "deser_median_ns": 19642.0, "deser_std_ns": 528.2084026800113, "deser_mad_ns": 279.0, "deser_cv": 0.026879565710709225, "deser_min_ns": 18326.0, "deser_max_ns": 21323.0, "deser_p5_ns": 18879.4, "deser_p25_ns": 19360.5, "deser_p50_ns": 19642.0, "deser_p75_ns": 19913.5, "deser_p95_ns": 20480.899999999998, "deser_p99_ns": 21204.92, "deser_ci_low_ns": 19538.9421686747, "deser_ci_high_ns": 19770.299397590363, "total_mean_ns": 61059.132530120485, "total_median_ns": 61007.0, "total_std_ns": 1379.864227777363, "total_mad_ns": 927.0, "total_cv": 0.022598818073556414, "total_min_ns": 57932.0, "total_max_ns": 64549.0, "total_p5_ns": 59150.3, "total_p25_ns": 60100.5, "total_p50_ns": 61007.0, "total_p75_ns": 61959.0, "total_p95_ns": 63449.799999999996, "total_p99_ns": 63979.92, "total_ci_low_ns": 60771.23795180723, "total_ci_high_ns": 61359.43644578313, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.76186419978906}, {"serializer": "TOML", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "2.0.0", "avg_time_ser_ns": 71415.8, "avg_time_deser_ns": 31762.2, "avg_time_total_ns": 103178.0, "median_size_bytes": 441.0, "avg_ops_per_sec": 9691.988602221403, "min_ops_per_sec": 8920.049595475752, "max_ops_per_sec": 10427.854885971406, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 71415.8, "ser_median_ns": 71043.0, "ser_std_ns": 2698.20096501707, "ser_mad_ns": 1797.0, "ser_cv": 0.0377815688547502, "ser_min_ns": 66193.0, "ser_max_ns": 78383.0, "ser_p5_ns": 67475.8, "ser_p25_ns": 69466.0, "ser_p50_ns": 71043.0, "ser_p75_ns": 73197.0, "ser_p95_ns": 76304.4, "ser_p99_ns": 77973.92, "ser_ci_low_ns": 70868.87323529412, "ser_ci_high_ns": 71979.26705882353, "deser_mean_ns": 31762.2, "deser_median_ns": 31631.0, "deser_std_ns": 1097.8321365308996, "deser_mad_ns": 779.0, "deser_cv": 0.03456410880011144, "deser_min_ns": 29622.0, "deser_max_ns": 34534.0, "deser_p5_ns": 30164.2, "deser_p25_ns": 31007.0, "deser_p50_ns": 31631.0, "deser_p75_ns": 32556.0, "deser_p95_ns": 33650.6, "deser_p99_ns": 33964.479999999996, "deser_ci_low_ns": 31532.35970588235, "deser_ci_high_ns": 32005.631470588236, "total_mean_ns": 103178.0, "total_median_ns": 102785.0, "total_std_ns": 3525.2336700666283, "total_mad_ns": 2354.0, "total_cv": 0.03416652455045289, "total_min_ns": 95897.0, "total_max_ns": 112107.0, "total_p5_ns": 98193.0, "total_p25_ns": 100734.0, "total_p50_ns": 102785.0, "total_p75_ns": 105479.0, "total_p95_ns": 109804.8, "total_p99_ns": 111311.51999999999, "total_ci_low_ns": 102407.49117647058, "total_ci_high_ns": 103964.7232352941, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.24439328332781}, {"serializer": "BinaryCodable", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "4.0.0", "avg_time_ser_ns": 47989.10256410256, "avg_time_deser_ns": 13262.935897435897, "avg_time_total_ns": 61252.03846153846, "median_size_bytes": 344.0, "avg_ops_per_sec": 16325.987266985778, "min_ops_per_sec": 15348.722986247543, "max_ops_per_sec": 16988.023443472353, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 47989.10256410256, "ser_median_ns": 47977.5, "ser_std_ns": 1169.374275899807, "ser_mad_ns": 745.5, "ser_cv": 0.0243674962318328, "ser_min_ns": 46092.0, "ser_max_ns": 51723.0, "ser_p5_ns": 46477.6, "ser_p25_ns": 47090.25, "ser_p50_ns": 47977.5, "ser_p75_ns": 48574.5, "ser_p95_ns": 49979.8, "ser_p99_ns": 51633.68, "ser_ci_low_ns": 47734.907051282054, "ser_ci_high_ns": 48252.14455128205, "deser_mean_ns": 13262.935897435897, "deser_median_ns": 13209.0, "deser_std_ns": 362.48931340248134, "deser_mad_ns": 221.0, "deser_cv": 0.027331000934156732, "deser_min_ns": 12510.0, "deser_max_ns": 14415.0, "deser_p5_ns": 12738.8, "deser_p25_ns": 13030.75, "deser_p50_ns": 13209.0, "deser_p75_ns": 13474.25, "deser_p95_ns": 13809.999999999998, "deser_p99_ns": 14330.300000000001, "deser_ci_low_ns": 13183.546474358975, "deser_ci_high_ns": 13343.39326923077, "total_mean_ns": 61252.03846153846, "total_median_ns": 61154.0, "total_std_ns": 1403.2840650889852, "total_mad_ns": 1005.0, "total_cv": 0.022909997778606812, "total_min_ns": 58865.0, "total_max_ns": 65152.0, "total_p5_ns": 59317.7, "total_p25_ns": 60086.5, "total_p50_ns": 61154.0, "total_p75_ns": 61977.25, "total_p95_ns": 64128.6, "total_p99_ns": 64894.82, "total_ci_low_ns": 60966.20416666666, "total_ci_high_ns": 61562.45865384615, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.775466635742607}, {"serializer": "XMLCoder", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "0.18.2", "avg_time_ser_ns": 242326.2068965517, "avg_time_deser_ns": 179085.5287356322, "avg_time_total_ns": 421411.7356321839, "median_size_bytes": 803.0, "avg_ops_per_sec": 2372.9761547808885, "min_ops_per_sec": 2269.240893536294, "max_ops_per_sec": 2473.2334311909362, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 242326.2068965517, "ser_median_ns": 242468.0, "ser_std_ns": 4871.82082177565, "ser_mad_ns": 3474.0, "ser_cv": 0.020104391036234126, "ser_min_ns": 235424.0, "ser_max_ns": 256347.0, "ser_p5_ns": 236149.5, "ser_p25_ns": 238312.0, "ser_p50_ns": 242468.0, "ser_p75_ns": 244832.0, "ser_p95_ns": 250842.6, "ser_p99_ns": 255477.54, "ser_ci_low_ns": 241305.27844827587, "ser_ci_high_ns": 243393.84166666667, "deser_mean_ns": 179085.5287356322, "deser_median_ns": 178814.0, "deser_std_ns": 4492.120527486655, "deser_mad_ns": 2409.0, "deser_cv": 0.025083660076845, "deser_min_ns": 168764.0, "deser_max_ns": 190297.0, "deser_p5_ns": 172102.0, "deser_p25_ns": 176541.0, "deser_p50_ns": 178814.0, "deser_p75_ns": 181355.0, "deser_p95_ns": 187330.8, "deser_p99_ns": 189778.42, "deser_ci_low_ns": 178117.09022988507, "deser_ci_high_ns": 180012.16408045977, "total_mean_ns": 421411.7356321839, "total_median_ns": 421494.0, "total_std_ns": 7648.066175184068, "total_mad_ns": 5088.0, "total_cv": 0.018148678663898066, "total_min_ns": 404329.0, "total_max_ns": 440676.0, "total_p5_ns": 409123.8, "total_p25_ns": 416071.0, "total_p50_ns": 421494.0, "total_p75_ns": 425870.5, "total_p95_ns": 435017.0, "total_p99_ns": 437505.18, "total_ci_low_ns": 419829.5020114943, "total_ci_high_ns": 423078.0816091954, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 70.63048778426854}, {"serializer": "SwiftAvroCore", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "2.3.0", "avg_time_ser_ns": 50368.282352941176, "avg_time_deser_ns": 19442.929411764704, "avg_time_total_ns": 69811.21176470588, "median_size_bytes": 338.0, "avg_ops_per_sec": 14324.346687612795, "min_ops_per_sec": 13133.873573332983, "max_ops_per_sec": 15441.392195920384, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 50368.282352941176, "ser_median_ns": 50049.0, "ser_std_ns": 2025.9891212264029, "ser_mad_ns": 1308.0, "ser_cv": 0.040223510244599366, "ser_min_ns": 45998.0, "ser_max_ns": 56175.0, "ser_p5_ns": 47296.8, "ser_p25_ns": 49225.0, "ser_p50_ns": 50049.0, "ser_p75_ns": 51591.0, "ser_p95_ns": 53738.799999999996, "ser_p99_ns": 55947.36, "ser_ci_low_ns": 49936.66735294118, "ser_ci_high_ns": 50785.28735294117, "deser_mean_ns": 19442.929411764704, "deser_median_ns": 19367.0, "deser_std_ns": 417.3711317576359, "deser_mad_ns": 287.0, "deser_cv": 0.02146647364286007, "deser_min_ns": 18476.0, "deser_max_ns": 20480.0, "deser_p5_ns": 18783.4, "deser_p25_ns": 19164.0, "deser_p50_ns": 19367.0, "deser_p75_ns": 19735.0, "deser_p95_ns": 20096.4, "deser_p99_ns": 20439.68, "deser_ci_low_ns": 19355.632647058825, "deser_ci_high_ns": 19534.636470588237, "total_mean_ns": 69811.21176470588, "total_median_ns": 69540.0, "total_std_ns": 2293.9355405384995, "total_mad_ns": 1273.0, "total_cv": 0.03285912796170992, "total_min_ns": 64761.0, "total_max_ns": 76139.0, "total_p5_ns": 66356.6, "total_p25_ns": 68580.0, "total_p50_ns": 69540.0, "total_p75_ns": 71012.0, "total_p95_ns": 73813.4, "total_p99_ns": 75878.6, "total_ci_low_ns": 69330.51323529411, "total_ci_high_ns": 70318.85176470588, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.11487424725993}, {"serializer": "SwiftProtobuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "1.38.1", "avg_time_ser_ns": 27970.976470588233, "avg_time_deser_ns": 4207.435294117647, "avg_time_total_ns": 32178.41176470588, "median_size_bytes": 368.0, "avg_ops_per_sec": 31076.735772796157, "min_ops_per_sec": 28555.111364934324, "max_ops_per_sec": 32967.39524610161, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 27970.976470588233, "ser_median_ns": 27802.0, "ser_std_ns": 847.2075134631109, "ser_mad_ns": 461.0, "ser_cv": 0.030288807198202688, "ser_min_ns": 26744.0, "ser_max_ns": 30397.0, "ser_p5_ns": 26973.4, "ser_p25_ns": 27347.0, "ser_p50_ns": 27802.0, "ser_p75_ns": 28265.0, "ser_p95_ns": 29703.4, "ser_p99_ns": 30280.239999999998, "ser_ci_low_ns": 27801.839117647058, "ser_ci_high_ns": 28146.729411764707, "deser_mean_ns": 4207.435294117647, "deser_median_ns": 4194.0, "deser_std_ns": 240.91420361074722, "deser_mad_ns": 139.0, "deser_cv": 0.05725915831612807, "deser_min_ns": 3589.0, "deser_max_ns": 4764.0, "deser_p5_ns": 3820.4, "deser_p25_ns": 4068.0, "deser_p50_ns": 4194.0, "deser_p75_ns": 4352.0, "deser_p95_ns": 4635.0, "deser_p99_ns": 4762.32, "deser_ci_low_ns": 4158.564117647059, "deser_ci_high_ns": 4257.664705882353, "total_mean_ns": 32178.41176470588, "total_median_ns": 31937.0, "total_std_ns": 1016.9972759962308, "total_mad_ns": 575.0, "total_cv": 0.03160495562778831, "total_min_ns": 30333.0, "total_max_ns": 35020.0, "total_p5_ns": 31020.8, "total_p25_ns": 31556.0, "total_p50_ns": 31937.0, "total_p75_ns": 32570.0, "total_p95_ns": 34291.0, "total_p99_ns": 34762.96, "total_ci_low_ns": 31961.0, "total_ci_high_ns": 32411.52705882353, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "Yams", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "5.4.0", "avg_time_ser_ns": 271074.26829268294, "avg_time_deser_ns": 56688.81707317073, "avg_time_total_ns": 327763.0853658537, "median_size_bytes": 407.0, "avg_ops_per_sec": 3050.9842158819874, "min_ops_per_sec": 2894.0628301040415, "max_ops_per_sec": 3213.099162666358, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 271074.26829268294, "ser_median_ns": 270419.5, "ser_std_ns": 5840.756039445198, "ser_mad_ns": 3438.5, "ser_cv": 0.02154670037931762, "ser_min_ns": 258143.0, "ser_max_ns": 287272.0, "ser_p5_ns": 261498.85, "ser_p25_ns": 267351.25, "ser_p50_ns": 270419.5, "ser_p75_ns": 274775.75, "ser_p95_ns": 280005.6, "ser_p99_ns": 286872.67, "ser_ci_low_ns": 269781.64268292685, "ser_ci_high_ns": 272398.3173780488, "deser_mean_ns": 56688.81707317073, "deser_median_ns": 56967.0, "deser_std_ns": 1479.7172580109775, "deser_mad_ns": 814.0, "deser_cv": 0.026102454318301296, "deser_min_ns": 52694.0, "deser_max_ns": 59496.0, "deser_p5_ns": 53726.75, "deser_p25_ns": 55822.75, "deser_p50_ns": 56967.0, "deser_p75_ns": 57522.0, "deser_p95_ns": 58749.55, "deser_p99_ns": 59318.61, "deser_ci_low_ns": 56368.42987804878, "deser_ci_high_ns": 57004.3256097561, "total_mean_ns": 327763.0853658537, "total_median_ns": 327647.0, "total_std_ns": 6468.655599444729, "total_mad_ns": 3957.0, "total_cv": 0.019735766131882503, "total_min_ns": 311226.0, "total_max_ns": 345535.0, "total_p5_ns": 317050.4, "total_p25_ns": 323443.25, "total_p50_ns": 327647.0, "total_p75_ns": 331450.25, "total_p95_ns": 337850.2, "total_p99_ns": 344090.77, "total_ci_low_ns": 326387.5368902439, "total_ci_high_ns": 329207.28993902437, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 64.10467422574575}, {"serializer": "Foundation.JSONEncoder", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 47373.75862068965, "avg_time_deser_ns": 17022.25287356322, "avg_time_total_ns": 64396.011494252874, "median_size_bytes": 411.0, "avg_ops_per_sec": 15528.912067624664, "min_ops_per_sec": 14628.00971299845, "max_ops_per_sec": 16288.23663550184, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 47373.75862068965, "ser_median_ns": 47156.0, "ser_std_ns": 1149.9953383678749, "ser_mad_ns": 746.0, "ser_cv": 0.024274944016488376, "ser_min_ns": 45221.0, "ser_max_ns": 50974.0, "ser_p5_ns": 46034.9, "ser_p25_ns": 46508.5, "ser_p50_ns": 47156.0, "ser_p75_ns": 48102.5, "ser_p95_ns": 49731.7, "ser_p99_ns": 50390.06, "ser_ci_low_ns": 47131.310057471266, "ser_ci_high_ns": 47617.676436781614, "deser_mean_ns": 17022.25287356322, "deser_median_ns": 17012.0, "deser_std_ns": 513.3864363087836, "deser_mad_ns": 290.0, "deser_cv": 0.030159723282345875, "deser_min_ns": 15808.0, "deser_max_ns": 18582.0, "deser_p5_ns": 16205.2, "deser_p25_ns": 16689.5, "deser_p50_ns": 17012.0, "deser_p75_ns": 17274.5, "deser_p95_ns": 17752.3, "deser_p99_ns": 18309.38, "deser_ci_low_ns": 16920.191954022986, "deser_ci_high_ns": 17125.52356321839, "total_mean_ns": 64396.011494252874, "total_median_ns": 64060.0, "total_std_ns": 1480.5076399530562, "total_mad_ns": 950.0, "total_cv": 0.022990672956277526, "total_min_ns": 61394.0, "total_max_ns": 68362.0, "total_p5_ns": 62341.2, "total_p25_ns": 63268.0, "total_p50_ns": 64060.0, "total_p75_ns": 65488.5, "total_p95_ns": 67116.3, "total_p99_ns": 67998.22, "total_ci_low_ns": 64107.86408045977, "total_ci_high_ns": 64717.51293103448, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.20145641003882}, {"serializer": "SwiftMsgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "1.2.1", "avg_time_ser_ns": 54173.256097560974, "avg_time_deser_ns": 25934.51219512195, "avg_time_total_ns": 80107.76829268293, "median_size_bytes": 346.0, "avg_ops_per_sec": 12483.18385735557, "min_ops_per_sec": 11799.82772251525, "max_ops_per_sec": 13255.391630545724, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 54173.256097560974, "ser_median_ns": 53995.0, "ser_std_ns": 1337.4657333649054, "ser_mad_ns": 909.0, "ser_cv": 0.024688671675120552, "ser_min_ns": 50936.0, "ser_max_ns": 58218.0, "ser_p5_ns": 52440.35, "ser_p25_ns": 53154.5, "ser_p50_ns": 53995.0, "ser_p75_ns": 55036.0, "ser_p95_ns": 56255.7, "ser_p99_ns": 58076.25, "ser_ci_low_ns": 53900.09512195122, "ser_ci_high_ns": 54460.55152439025, "deser_mean_ns": 25934.51219512195, "deser_median_ns": 25894.5, "deser_std_ns": 694.7808295311629, "deser_mad_ns": 427.5, "deser_cv": 0.026789816762462372, "deser_min_ns": 24505.0, "deser_max_ns": 27865.0, "deser_p5_ns": 24882.4, "deser_p25_ns": 25459.25, "deser_p50_ns": 25894.5, "deser_p75_ns": 26307.25, "deser_p95_ns": 27227.3, "deser_p99_ns": 27690.85, "deser_ci_low_ns": 25781.165548780486, "deser_ci_high_ns": 26082.51280487805, "total_mean_ns": 80107.76829268293, "total_median_ns": 80042.0, "total_std_ns": 1769.2706337015065, "total_mad_ns": 1147.0, "total_cv": 0.022086130613915907, "total_min_ns": 75441.0, "total_max_ns": 84747.0, "total_p5_ns": 77658.35, "total_p25_ns": 78902.0, "total_p50_ns": 80042.0, "total_p75_ns": 81195.75, "total_p95_ns": 83133.05, "total_p99_ns": 84468.36, "total_ci_low_ns": 79738.58506097562, "total_ci_high_ns": 80480.01676829268, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 33.21578351022716}, {"serializer": "SwiftCbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "0.0.4", "avg_time_ser_ns": 57910.545454545456, "avg_time_deser_ns": 25099.883116883117, "avg_time_total_ns": 83010.42857142857, "median_size_bytes": 345.0, "avg_ops_per_sec": 12046.679160793912, "min_ops_per_sec": 11434.844257421213, "max_ops_per_sec": 12620.52602352466, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 57910.545454545456, "ser_median_ns": 57976.0, "ser_std_ns": 1339.0953991550707, "ser_mad_ns": 883.0, "ser_cv": 0.02312351556429631, "ser_min_ns": 55178.0, "ser_max_ns": 61630.0, "ser_p5_ns": 55749.2, "ser_p25_ns": 56964.0, "ser_p50_ns": 57976.0, "ser_p75_ns": 58662.0, "ser_p95_ns": 59971.200000000004, "ser_p99_ns": 61243.159999999996, "ser_ci_low_ns": 57621.125, "ser_ci_high_ns": 58205.86785714286, "deser_mean_ns": 25099.883116883117, "deser_median_ns": 25039.0, "deser_std_ns": 469.92236128137426, "deser_mad_ns": 323.0, "deser_cv": 0.018722093608686447, "deser_min_ns": 24032.0, "deser_max_ns": 26331.0, "deser_p5_ns": 24470.4, "deser_p25_ns": 24758.0, "deser_p50_ns": 25039.0, "deser_p75_ns": 25394.0, "deser_p95_ns": 25970.2, "deser_p99_ns": 26207.12, "deser_ci_low_ns": 25004.850974025972, "deser_ci_high_ns": 25201.325324675323, "total_mean_ns": 83010.42857142857, "total_median_ns": 82982.0, "total_std_ns": 1690.3035497287356, "total_mad_ns": 1092.0, "total_cv": 0.020362544547933133, "total_min_ns": 79236.0, "total_max_ns": 87452.0, "total_p5_ns": 80291.6, "total_p25_ns": 81929.0, "total_p50_ns": 82982.0, "total_p75_ns": 84074.0, "total_p95_ns": 85475.8, "total_p99_ns": 87195.88, "total_ci_low_ns": 82619.15097402598, "total_ci_high_ns": 83374.22532467532, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 36.702996076360655}, {"serializer": "SwiftBSON", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "3.1.0", "avg_time_ser_ns": 83831.07058823529, "avg_time_deser_ns": 48995.2, "avg_time_total_ns": 132826.2705882353, "median_size_bytes": 599.0, "avg_ops_per_sec": 7528.631162882112, "min_ops_per_sec": 7000.644059253451, "max_ops_per_sec": 7887.990534411359, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 83831.07058823529, "ser_median_ns": 83395.0, "ser_std_ns": 2429.5637409107953, "ser_mad_ns": 1525.0, "ser_cv": 0.02898166185714627, "ser_min_ns": 79992.0, "ser_max_ns": 90182.0, "ser_p5_ns": 80997.8, "ser_p25_ns": 81876.0, "ser_p50_ns": 83395.0, "ser_p75_ns": 85059.0, "ser_p95_ns": 88616.6, "ser_p99_ns": 89604.08, "ser_ci_low_ns": 83320.61411764706, "ser_ci_high_ns": 84360.2311764706, "deser_mean_ns": 48995.2, "deser_median_ns": 48904.0, "deser_std_ns": 1180.15070466203, "deser_mad_ns": 768.0, "deser_cv": 0.024087067807908327, "deser_min_ns": 46646.0, "deser_max_ns": 52662.0, "deser_p5_ns": 47408.6, "deser_p25_ns": 48164.0, "deser_p50_ns": 48904.0, "deser_p75_ns": 49672.0, "deser_p95_ns": 50680.4, "deser_p99_ns": 52618.32, "deser_ci_low_ns": 48754.27147058823, "deser_ci_high_ns": 49243.894705882354, "total_mean_ns": 132826.2705882353, "total_median_ns": 132540.0, "total_std_ns": 3301.201539512817, "total_mad_ns": 2346.0, "total_cv": 0.0248535287853306, "total_min_ns": 126775.0, "total_max_ns": 142844.0, "total_p5_ns": 128678.0, "total_p25_ns": 130191.0, "total_p50_ns": 132540.0, "total_p75_ns": 134714.0, "total_p95_ns": 139041.2, "total_p99_ns": 140180.36, "total_ci_low_ns": 132120.59382352943, "total_ci_high_ns": 133495.4776470588, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 41.02163292652727}, {"serializer": "CapnProto", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "capnproto-1.0.2", "avg_time_ser_ns": 67955.16883116883, "avg_time_deser_ns": 14273.74025974026, "avg_time_total_ns": 82228.90909090909, "median_size_bytes": 736.0, "avg_ops_per_sec": 12161.173133094091, "min_ops_per_sec": 10983.941477559807, "max_ops_per_sec": 13152.702880441931, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 67955.16883116883, "ser_median_ns": 67894.0, "ser_std_ns": 2299.2467782812646, "ser_mad_ns": 1266.0, "ser_cv": 0.0338347592659747, "ser_min_ns": 63170.0, "ser_max_ns": 74865.0, "ser_p5_ns": 64521.0, "ser_p25_ns": 66480.0, "ser_p50_ns": 67894.0, "ser_p75_ns": 68980.0, "ser_p95_ns": 72010.8, "ser_p99_ns": 74171.12, "ser_ci_low_ns": 67459.4814935065, "ser_ci_high_ns": 68482.67435064935, "deser_mean_ns": 14273.74025974026, "deser_median_ns": 14388.0, "deser_std_ns": 628.4778269881294, "deser_mad_ns": 352.0, "deser_cv": 0.044030353330779044, "deser_min_ns": 12619.0, "deser_max_ns": 16177.0, "deser_p5_ns": 13069.6, "deser_p25_ns": 13991.0, "deser_p50_ns": 14388.0, "deser_p75_ns": 14711.0, "deser_p95_ns": 15116.8, "deser_p99_ns": 15546.959999999995, "deser_ci_low_ns": 14134.112662337662, "deser_ci_high_ns": 14406.469805194805, "total_mean_ns": 82228.90909090909, "total_median_ns": 82324.0, "total_std_ns": 2787.0436288288015, "total_mad_ns": 1447.0, "total_cv": 0.033893720099673876, "total_min_ns": 76030.0, "total_max_ns": 91042.0, "total_p5_ns": 77669.8, "total_p25_ns": 80705.0, "total_p50_ns": 82324.0, "total_p75_ns": 83750.0, "total_p95_ns": 86388.2, "total_p99_ns": 89279.55999999998, "total_ci_low_ns": 81618.45292207792, "total_ci_high_ns": 82869.3525974026, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.213651728819638}, {"serializer": "Foundation.PropertyListEncoder", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 61643.08860759494, "avg_time_deser_ns": 44876.15189873418, "avg_time_total_ns": 106519.24050632911, "median_size_bytes": 504.0, "avg_ops_per_sec": 9387.975310813285, "min_ops_per_sec": 8881.152418337804, "max_ops_per_sec": 9935.123642613733, "runs": 79, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 20, "ser_mean_ns": 61643.08860759494, "ser_median_ns": 61522.0, "ser_std_ns": 1405.8490197766655, "ser_mad_ns": 910.0, "ser_cv": 0.022806271579381136, "ser_min_ns": 58983.0, "ser_max_ns": 65846.0, "ser_p5_ns": 59598.3, "ser_p25_ns": 60725.0, "ser_p50_ns": 61522.0, "ser_p75_ns": 62440.5, "ser_p95_ns": 64273.8, "ser_p99_ns": 65190.02, "ser_ci_low_ns": 61328.97626582279, "ser_ci_high_ns": 61949.240506329115, "deser_mean_ns": 44876.15189873418, "deser_median_ns": 44874.0, "deser_std_ns": 1253.2943163110695, "deser_mad_ns": 800.0, "deser_cv": 0.027927847270398893, "deser_min_ns": 41463.0, "deser_max_ns": 48878.0, "deser_p5_ns": 42955.0, "deser_p25_ns": 44146.5, "deser_p50_ns": 44874.0, "deser_p75_ns": 45750.5, "deser_p95_ns": 46712.5, "deser_p99_ns": 47409.259999999995, "deser_ci_low_ns": 44612.28924050633, "deser_ci_high_ns": 45145.957278481015, "total_mean_ns": 106519.24050632911, "total_median_ns": 106602.0, "total_std_ns": 2353.3512177819184, "total_mad_ns": 1859.0, "total_cv": 0.022093203130209026, "total_min_ns": 100653.0, "total_max_ns": 112598.0, "total_p5_ns": 103100.6, "total_p25_ns": 104663.0, "total_p50_ns": 106602.0, "total_p75_ns": 108351.5, "total_p95_ns": 109636.0, "total_p99_ns": 111119.9, "total_ci_low_ns": 105989.40158227849, "total_ci_high_ns": 107015.83924050632, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 41.34658269378162}, {"serializer": "FlatBuffers", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "24.3.25", "avg_time_ser_ns": 51224.37234042553, "avg_time_deser_ns": 7247.755319148936, "avg_time_total_ns": 58472.12765957447, "median_size_bytes": 684.0, "avg_ops_per_sec": 17102.165425243522, "min_ops_per_sec": 15641.863884500477, "max_ops_per_sec": 18254.171078091345, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 51224.37234042553, "ser_median_ns": 50682.0, "ser_std_ns": 1918.401513043666, "ser_mad_ns": 1111.0, "ser_cv": 0.037450952064271396, "ser_min_ns": 48523.0, "ser_max_ns": 56207.0, "ser_p5_ns": 49139.3, "ser_p25_ns": 49814.0, "ser_p50_ns": 50682.0, "ser_p75_ns": 52017.75, "ser_p95_ns": 55779.15, "ser_p99_ns": 56054.479999999996, "ser_ci_low_ns": 50839.90664893617, "ser_ci_high_ns": 51622.63457446809, "deser_mean_ns": 7247.755319148936, "deser_median_ns": 7177.5, "deser_std_ns": 391.8618553534904, "deser_mad_ns": 256.0, "deser_cv": 0.05406665072124766, "deser_min_ns": 6259.0, "deser_max_ns": 8263.0, "deser_p5_ns": 6688.45, "deser_p25_ns": 6985.75, "deser_p50_ns": 7177.5, "deser_p75_ns": 7479.25, "deser_p95_ns": 8044.1, "deser_p99_ns": 8132.799999999999, "deser_ci_low_ns": 7166.769946808511, "deser_ci_high_ns": 7326.493617021277, "total_mean_ns": 58472.12765957447, "total_median_ns": 57899.0, "total_std_ns": 2151.818566891298, "total_mad_ns": 1342.0, "total_cv": 0.03680075709608542, "total_min_ns": 54782.0, "total_max_ns": 63931.0, "total_p5_ns": 56070.95, "total_p25_ns": 56920.5, "total_p50_ns": 57899.0, "total_p75_ns": 59453.5, "total_p95_ns": 63190.0, "total_p99_ns": 63758.02, "total_ci_low_ns": 58073.26675531915, "total_ci_high_ns": 58868.0414893617, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 15.31216939537779}, {"serializer": "SwiftAvroCore", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "2.3.0", "avg_time_ser_ns": 918509.1382978724, "avg_time_deser_ns": 1282317.1489361702, "avg_time_total_ns": 2200826.287234043, "median_size_bytes": 34033.0, "avg_ops_per_sec": 454.3747981385579, "min_ops_per_sec": 436.52472192283903, "max_ops_per_sec": 470.5114035496321, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 918509.1382978724, "ser_median_ns": 917670.5, "ser_std_ns": 23561.014597702306, "ser_mad_ns": 15643.5, "ser_cv": 0.025651366562736876, "ser_min_ns": 877629.0, "ser_max_ns": 976970.0, "ser_p5_ns": 886513.05, "ser_p25_ns": 901524.75, "ser_p50_ns": 917670.5, "ser_p75_ns": 931042.0, "ser_p95_ns": 964381.5499999999, "ser_p99_ns": 972117.26, "ser_ci_low_ns": 914054.3909574468, "ser_ci_high_ns": 923608.8462765957, "deser_mean_ns": 1282317.1489361702, "deser_median_ns": 1279449.5, "deser_std_ns": 18596.50091145166, "deser_mad_ns": 11506.5, "deser_cv": 0.014502263287112398, "deser_min_ns": 1244631.0, "deser_max_ns": 1331903.0, "deser_p5_ns": 1257575.25, "deser_p25_ns": 1269925.25, "deser_p50_ns": 1279449.5, "deser_p75_ns": 1294503.75, "deser_p95_ns": 1315348.55, "deser_p99_ns": 1330674.47, "deser_ci_low_ns": 1278813.0401595745, "deser_ci_high_ns": 1286157.459042553, "total_mean_ns": 2200826.287234043, "total_median_ns": 2196676.0, "total_std_ns": 36058.4551707877, "total_mad_ns": 25098.5, "total_cv": 0.0163840532894149, "total_min_ns": 2125347.0, "total_max_ns": 2290821.0, "total_p5_ns": 2148258.25, "total_p25_ns": 2174546.0, "total_p50_ns": 2196676.0, "total_p75_ns": 2226286.75, "total_p95_ns": 2259649.4499999997, "total_p99_ns": 2287748.28, "total_ci_low_ns": 2193601.1962765954, "total_ci_high_ns": 2208092.355585106, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 73.14378037937362}, {"serializer": "BinaryCodable", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "4.0.0", "avg_time_ser_ns": 1656850.1123595505, "avg_time_deser_ns": 812602.6853932585, "avg_time_total_ns": 2469452.797752809, "median_size_bytes": 34830.0, "avg_ops_per_sec": 404.9480115230368, "min_ops_per_sec": 383.462783978158, "max_ops_per_sec": 415.91490048404177, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 1656850.1123595505, "ser_median_ns": 1646728.0, "ser_std_ns": 38900.25737746071, "ser_mad_ns": 24015.0, "ser_cv": 0.023478440860327517, "ser_min_ns": 1602152.0, "ser_max_ns": 1788927.0, "ser_p5_ns": 1611330.8, "ser_p25_ns": 1627179.0, "ser_p50_ns": 1646728.0, "ser_p75_ns": 1676988.0, "ser_p95_ns": 1731490.4, "ser_p99_ns": 1761511.4800000002, "ser_ci_low_ns": 1649253.1140449438, "ser_ci_high_ns": 1664917.4761235954, "deser_mean_ns": 812602.6853932585, "deser_median_ns": 809777.0, "deser_std_ns": 14169.300159624478, "deser_mad_ns": 9111.0, "deser_cv": 0.01743693494289556, "deser_min_ns": 787055.0, "deser_max_ns": 854063.0, "deser_p5_ns": 793914.4, "deser_p25_ns": 803003.0, "deser_p50_ns": 809777.0, "deser_p75_ns": 820418.0, "deser_p95_ns": 837544.0, "deser_p99_ns": 852512.4400000001, "deser_ci_low_ns": 809763.3845505619, "deser_ci_high_ns": 815581.5828651686, "total_mean_ns": 2469452.797752809, "total_median_ns": 2457788.0, "total_std_ns": 45299.96813995964, "total_mad_ns": 29317.0, "total_cv": 0.018344132020333578, "total_min_ns": 2404338.0, "total_max_ns": 2607815.0, "total_p5_ns": 2411830.2, "total_p25_ns": 2435360.0, "total_p50_ns": 2457788.0, "total_p75_ns": 2494991.0, "total_p95_ns": 2553222.0, "total_p99_ns": 2603686.04, "total_ci_low_ns": 2460170.036235955, "total_ci_high_ns": 2479420.3867977527, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 67.128698078858}, {"serializer": "TOML", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "2.0.0", "avg_time_ser_ns": 3029313.6021505375, "avg_time_deser_ns": 2313359.505376344, "avg_time_total_ns": 5342673.107526882, "median_size_bytes": 45430.0, "avg_ops_per_sec": 187.17222256985494, "min_ops_per_sec": 179.38001602581062, "max_ops_per_sec": 193.9795347711226, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 3029313.6021505375, "ser_median_ns": 3022218.0, "ser_std_ns": 43206.59624312106, "ser_mad_ns": 24573.0, "ser_cv": 0.014262833736476903, "ser_min_ns": 2935833.0, "ser_max_ns": 3141692.0, "ser_p5_ns": 2968983.8, "ser_p25_ns": 3003988.0, "ser_p50_ns": 3022218.0, "ser_p75_ns": 3048222.0, "ser_p95_ns": 3115200.4, "ser_p99_ns": 3139678.12, "ser_ci_low_ns": 3020242.7478494626, "ser_ci_high_ns": 3038520.4389784946, "deser_mean_ns": 2313359.505376344, "deser_median_ns": 2302724.0, "deser_std_ns": 79354.62199651139, "deser_mad_ns": 52893.0, "deser_cv": 0.03430276263247797, "deser_min_ns": 2185153.0, "deser_max_ns": 2525127.0, "deser_p5_ns": 2195860.4, "deser_p25_ns": 2257101.0, "deser_p50_ns": 2302724.0, "deser_p75_ns": 2365475.0, "deser_p95_ns": 2447196.6, "deser_p99_ns": 2519481.88, "deser_ci_low_ns": 2297808.2370967744, "deser_ci_high_ns": 2329121.7526881723, "total_mean_ns": 5342673.107526882, "total_median_ns": 5328816.0, "total_std_ns": 99348.42670462358, "total_mad_ns": 72633.0, "total_cv": 0.018595265835122724, "total_min_ns": 5155183.0, "total_max_ns": 5574757.0, "total_p5_ns": 5213892.8, "total_p25_ns": 5262307.0, "total_p50_ns": 5328816.0, "total_p75_ns": 5404660.0, "total_p95_ns": 5544125.2, "total_p99_ns": 5574055.96, "total_ci_low_ns": 5322125.834408603, "total_ci_high_ns": 5363274.576881721, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 69.12086741108371}, {"serializer": "CapnProto", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "capnproto-1.0.2", "avg_time_ser_ns": 803983.4666666667, "avg_time_deser_ns": 814166.2444444444, "avg_time_total_ns": 1618149.711111111, "median_size_bytes": 71584.0, "avg_ops_per_sec": 617.9897899022858, "min_ops_per_sec": 581.151738137676, "max_ops_per_sec": 659.2805271607095, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 803983.4666666667, "ser_median_ns": 804208.0, "ser_std_ns": 30044.341399660032, "ser_mad_ns": 22598.5, "ser_cv": 0.037369352288081914, "ser_min_ns": 733765.0, "ser_max_ns": 879591.0, "ser_p5_ns": 755135.5, "ser_p25_ns": 780439.0, "ser_p50_ns": 804208.0, "ser_p75_ns": 823540.0, "ser_p95_ns": 856152.5, "ser_p99_ns": 873297.8099999999, "ser_ci_low_ns": 797866.8986111111, "ser_ci_high_ns": 810293.896111111, "deser_mean_ns": 814166.2444444444, "deser_median_ns": 811945.0, "deser_std_ns": 24804.034054066808, "deser_mad_ns": 16100.0, "deser_cv": 0.030465564279187382, "deser_min_ns": 760476.0, "deser_max_ns": 879224.0, "deser_p5_ns": 776193.35, "deser_p25_ns": 796008.25, "deser_p50_ns": 811945.0, "deser_p75_ns": 829200.75, "deser_p95_ns": 861376.85, "deser_p99_ns": 877030.15, "deser_ci_low_ns": 809072.5094444444, "deser_ci_high_ns": 819139.2486111111, "total_mean_ns": 1618149.711111111, "total_median_ns": 1614655.0, "total_std_ns": 46185.068251532895, "total_mad_ns": 30843.5, "total_cv": 0.028541900625387542, "total_min_ns": 1516805.0, "total_max_ns": 1720721.0, "total_p5_ns": 1540808.8, "total_p25_ns": 1592013.75, "total_p50_ns": 1614655.0, "total_p75_ns": 1649031.75, "total_p95_ns": 1698841.6, "total_p99_ns": 1709620.03, "total_ci_low_ns": 1608446.1408333334, "total_ci_high_ns": 1627525.9969444445, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 41.07379255894156}, {"serializer": "IkigaJSON", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "2.5.3", "avg_time_ser_ns": 894316.088888889, "avg_time_deser_ns": 1256732.8666666667, "avg_time_total_ns": 2151048.9555555554, "median_size_bytes": 41431.0, "avg_ops_per_sec": 464.8894658660747, "min_ops_per_sec": 446.5952471547417, "max_ops_per_sec": 480.14435059756363, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 894316.088888889, "ser_median_ns": 892638.0, "ser_std_ns": 16496.331356977556, "ser_mad_ns": 11412.5, "ser_cv": 0.01844575040293956, "ser_min_ns": 863996.0, "ser_max_ns": 937068.0, "ser_p5_ns": 870641.35, "ser_p25_ns": 881529.0, "ser_p50_ns": 892638.0, "ser_p75_ns": 904470.0, "ser_p95_ns": 922970.75, "ser_p99_ns": 928659.28, "ser_ci_low_ns": 891150.0650000001, "ser_ci_high_ns": 897531.7458333333, "deser_mean_ns": 1256732.8666666667, "deser_median_ns": 1250355.0, "deser_std_ns": 20882.17726400658, "deser_mad_ns": 10828.5, "deser_cv": 0.016616241858457996, "deser_min_ns": 1217689.0, "deser_max_ns": 1322865.0, "deser_p5_ns": 1229806.05, "deser_p25_ns": 1243906.0, "deser_p50_ns": 1250355.0, "deser_p75_ns": 1268432.0, "deser_p95_ns": 1295678.7, "deser_p99_ns": 1315140.69, "deser_ci_low_ns": 1252669.9847222222, "deser_ci_high_ns": 1260956.4869444445, "total_mean_ns": 2151048.9555555554, "total_median_ns": 2146636.5, "total_std_ns": 31894.900613484748, "total_mad_ns": 21786.5, "total_cv": 0.014827603310054463, "total_min_ns": 2082707.0, "total_max_ns": 2239164.0, "total_p5_ns": 2104428.4, "total_p25_ns": 2129768.25, "total_p50_ns": 2146636.5, "total_p75_ns": 2170950.0, "total_p95_ns": 2204689.1, "total_p99_ns": 2226651.49, "total_ci_low_ns": 2144370.8719444447, "total_ci_high_ns": 2157759.446388889, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 81.08479640632959}, {"serializer": "Foundation.JSONEncoder", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 1278729.8666666667, "avg_time_deser_ns": 1031365.0333333333, "avg_time_total_ns": 2310094.9, "median_size_bytes": 41431.0, "avg_ops_per_sec": 432.88264910675315, "min_ops_per_sec": 421.40643555052117, "max_ops_per_sec": 442.8692078797061, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 1278729.8666666667, "ser_median_ns": 1278296.5, "ser_std_ns": 18521.09928921334, "ser_mad_ns": 13632.5, "ser_cv": 0.014483981153496693, "ser_min_ns": 1237192.0, "ser_max_ns": 1322365.0, "ser_p5_ns": 1251362.9, "ser_p25_ns": 1265300.25, "ser_p50_ns": 1278296.5, "ser_p75_ns": 1292935.25, "ser_p95_ns": 1309278.85, "ser_p99_ns": 1316504.35, "ser_ci_low_ns": 1274882.331111111, "ser_ci_high_ns": 1282563.7744444446, "deser_mean_ns": 1031365.0333333333, "deser_median_ns": 1029297.5, "deser_std_ns": 10956.047058870265, "deser_mad_ns": 6091.0, "deser_cv": 0.010622860679560494, "deser_min_ns": 1006182.0, "deser_max_ns": 1059363.0, "deser_p5_ns": 1019169.0, "deser_p25_ns": 1024417.0, "deser_p50_ns": 1029297.5, "deser_p75_ns": 1036065.0, "deser_p95_ns": 1053353.0, "deser_p99_ns": 1059034.59, "deser_ci_low_ns": 1029205.5680555556, "deser_ci_high_ns": 1033544.7791666667, "total_mean_ns": 2310094.9, "total_median_ns": 2308073.5, "total_std_ns": 24152.021237699595, "total_mad_ns": 16125.5, "total_cv": 0.010454990934657965, "total_min_ns": 2258003.0, "total_max_ns": 2373006.0, "total_p5_ns": 2274336.2, "total_p25_ns": 2294368.5, "total_p50_ns": 2308073.5, "total_p75_ns": 2324922.5, "total_p95_ns": 2350609.6, "total_p99_ns": 2363602.26, "total_ci_low_ns": 2305212.199722222, "total_ci_high_ns": 2315154.2177777775, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 114.39252098462919}, {"serializer": "Yams", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "5.4.0", "avg_time_ser_ns": 21934313.923913043, "avg_time_deser_ns": 3551292.163043478, "avg_time_total_ns": 25485606.086956523, "median_size_bytes": 47530.0, "avg_ops_per_sec": 39.23783474436568, "min_ops_per_sec": 38.159201639288774, "max_ops_per_sec": 40.12347920478314, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 21934313.923913043, "ser_median_ns": 21869892.0, "ser_std_ns": 249448.16315541294, "ser_mad_ns": 168372.0, "ser_cv": 0.011372508117678651, "ser_min_ns": 21417251.0, "ser_max_ns": 22649830.0, "ser_p5_ns": 21640500.05, "ser_p25_ns": 21736463.5, "ser_p50_ns": 21869892.0, "ser_p75_ns": 22096837.0, "ser_p95_ns": 22415200.95, "ser_p99_ns": 22555978.97, "ser_ci_low_ns": 21884175.888586957, "ser_ci_high_ns": 21984965.345108695, "deser_mean_ns": 3551292.163043478, "deser_median_ns": 3544179.5, "deser_std_ns": 50634.705896833635, "deser_mad_ns": 35742.0, "deser_cv": 0.014258107632980384, "deser_min_ns": 3450675.0, "deser_max_ns": 3703130.0, "deser_p5_ns": 3478994.0, "deser_p25_ns": 3511734.75, "deser_p50_ns": 3544179.5, "deser_p75_ns": 3583427.0, "deser_p95_ns": 3638768.9, "deser_p99_ns": 3677926.64, "deser_ci_low_ns": 3541087.4312500004, "deser_ci_high_ns": 3561414.936141304, "total_mean_ns": 25485606.086956523, "total_median_ns": 25434986.0, "total_std_ns": 267735.76105320634, "total_mad_ns": 204818.5, "total_cv": 0.010505371547362686, "total_min_ns": 24923063.0, "total_max_ns": 26205999.0, "total_p5_ns": 25162879.55, "total_p25_ns": 25260951.25, "total_p50_ns": 25434986.0, "total_p75_ns": 25678806.25, "total_p95_ns": 25974127.3, "total_p99_ns": 26110696.52, "total_ci_low_ns": 25432340.82798913, "total_ci_high_ns": 25541633.195923913, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 126.56989614836527}, {"serializer": "XMLCoder", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "0.18.2", "avg_time_ser_ns": 17280269.882978722, "avg_time_deser_ns": 15344318.031914894, "avg_time_total_ns": 32624587.914893616, "median_size_bytes": 80549.0, "avg_ops_per_sec": 30.65172815695505, "min_ops_per_sec": 29.543027854289296, "max_ops_per_sec": 31.33529467209745, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 17280269.882978722, "ser_median_ns": 17240523.0, "ser_std_ns": 238063.14126148808, "ser_mad_ns": 172838.5, "ser_cv": 0.013776586990460329, "ser_min_ns": 16923097.0, "ser_max_ns": 17928811.0, "ser_p5_ns": 16971099.95, "ser_p25_ns": 17087311.25, "ser_p50_ns": 17240523.0, "ser_p75_ns": 17438658.25, "ser_p95_ns": 17724129.6, "ser_p99_ns": 17889405.97, "ser_ci_low_ns": 17235019.743882976, "ser_ci_high_ns": 17328949.189095743, "deser_mean_ns": 15344318.031914894, "deser_median_ns": 15291666.5, "deser_std_ns": 258533.06499795255, "deser_mad_ns": 173998.0, "deser_cv": 0.016848781709309302, "deser_min_ns": 14847647.0, "deser_max_ns": 15962494.0, "deser_p5_ns": 14980612.9, "deser_p25_ns": 15174773.75, "deser_p50_ns": 15291666.5, "deser_p75_ns": 15522340.0, "deser_p95_ns": 15813536.799999999, "deser_p99_ns": 15955803.58, "deser_ci_low_ns": 15292734.60531915, "deser_ci_high_ns": 15395565.277659575, "total_mean_ns": 32624587.914893616, "total_median_ns": 32583038.5, "total_std_ns": 401937.26950106426, "total_mad_ns": 276598.5, "total_cv": 0.0123200719208954, "total_min_ns": 31912896.0, "total_max_ns": 33848934.0, "total_p5_ns": 32033072.65, "total_p25_ns": 32356418.25, "total_p50_ns": 32583038.5, "total_p75_ns": 32909888.5, "total_p95_ns": 33225244.8, "total_p99_ns": 33779649.93, "total_ci_low_ns": 32542468.464893617, "total_ci_high_ns": 32708008.194148935, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 107.60974769466165}, {"serializer": "SwiftProtobuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "1.38.1", "avg_time_ser_ns": 57322.28, "avg_time_deser_ns": 141071.61333333334, "avg_time_total_ns": 198393.89333333334, "median_size_bytes": 37330.0, "avg_ops_per_sec": 5040.47772438157, "min_ops_per_sec": 4641.706662705744, "max_ops_per_sec": 5439.246338027403, "runs": 75, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 24, "ser_mean_ns": 57322.28, "ser_median_ns": 57175.0, "ser_std_ns": 3319.3686657946655, "ser_mad_ns": 1636.0, "ser_cv": 0.057907129056880946, "ser_min_ns": 49617.0, "ser_max_ns": 68438.0, "ser_p5_ns": 52168.2, "ser_p25_ns": 55507.5, "ser_p50_ns": 57175.0, "ser_p75_ns": 58618.5, "ser_p95_ns": 63176.4, "ser_p99_ns": 66249.08000000002, "ser_ci_low_ns": 56616.43333333333, "ser_ci_high_ns": 58098.299333333336, "deser_mean_ns": 141071.61333333334, "deser_median_ns": 140764.0, "deser_std_ns": 3909.6128407662936, "deser_mad_ns": 2749.0, "deser_cv": 0.02771367497958928, "deser_min_ns": 134232.0, "deser_max_ns": 152097.0, "deser_p5_ns": 135331.0, "deser_p25_ns": 138123.5, "deser_p50_ns": 140764.0, "deser_p75_ns": 143364.5, "deser_p95_ns": 148638.4, "deser_p99_ns": 150514.14, "deser_ci_low_ns": 140216.006, "deser_ci_high_ns": 141952.6193333333, "total_mean_ns": 198393.89333333334, "total_median_ns": 197636.0, "total_std_ns": 6493.553688234354, "total_mad_ns": 3763.0, "total_cv": 0.03273061271762105, "total_min_ns": 183849.0, "total_max_ns": 215438.0, "total_p5_ns": 188218.2, "total_p25_ns": 194146.0, "total_p50_ns": 197636.0, "total_p75_ns": 201662.0, "total_p95_ns": 210087.0, "total_p99_ns": 212617.86000000002, "total_ci_low_ns": 196904.93533333333, "total_ci_high_ns": 199823.93333333332, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "SwiftMsgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "1.2.1", "avg_time_ser_ns": 2218134.510638298, "avg_time_deser_ns": 2047506.3723404256, "avg_time_total_ns": 4265640.882978723, "median_size_bytes": 34833.0, "avg_ops_per_sec": 234.43136153123461, "min_ops_per_sec": 219.04979702845807, "max_ops_per_sec": 246.63047282267837, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 2218134.510638298, "ser_median_ns": 2206119.5, "ser_std_ns": 53672.7141057575, "ser_mad_ns": 36045.5, "ser_cv": 0.024197231434045202, "ser_min_ns": 2115585.0, "ser_max_ns": 2371785.0, "ser_p5_ns": 2156428.85, "ser_p25_ns": 2174415.0, "ser_p50_ns": 2206119.5, "ser_p75_ns": 2256524.25, "ser_p95_ns": 2317790.8, "ser_p99_ns": 2346960.51, "ser_ci_low_ns": 2207279.8603723403, "ser_ci_high_ns": 2228866.397606383, "deser_mean_ns": 2047506.3723404256, "deser_median_ns": 2056056.5, "deser_std_ns": 82039.22418476643, "deser_mad_ns": 66637.5, "deser_cv": 0.0400678724584337, "deser_min_ns": 1838323.0, "deser_max_ns": 2223276.0, "deser_p5_ns": 1930828.2, "deser_p25_ns": 1985571.5, "deser_p50_ns": 2056056.5, "deser_p75_ns": 2098805.75, "deser_p95_ns": 2183912.3, "deser_p99_ns": 2213491.4699999997, "deser_ci_low_ns": 2030543.672074468, "deser_ci_high_ns": 2064272.7787234043, "total_mean_ns": 4265640.882978723, "total_median_ns": 4259455.0, "total_std_ns": 103790.2533006446, "total_mad_ns": 74447.5, "total_cv": 0.024331690394941832, "total_min_ns": 4054649.0, "total_max_ns": 4565172.0, "total_p5_ns": 4107801.1, "total_p25_ns": 4189525.0, "total_p50_ns": 4259455.0, "total_p75_ns": 4347103.75, "total_p95_ns": 4429855.899999999, "total_p99_ns": 4474428.18, "total_ci_low_ns": 4244205.421010639, "total_ci_high_ns": 4286138.958510638, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 52.19485654826504}, {"serializer": "SwiftCbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "0.0.4", "avg_time_ser_ns": 2523901.9569892474, "avg_time_deser_ns": 1983660.1720430108, "avg_time_total_ns": 4507562.129032258, "median_size_bytes": 34732.0, "avg_ops_per_sec": 221.8494102519876, "min_ops_per_sec": 210.51528035688236, "max_ops_per_sec": 228.09859972550615, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 2523901.9569892474, "ser_median_ns": 2520028.0, "ser_std_ns": 52136.40729102381, "ser_mad_ns": 35035.0, "ser_cv": 0.020657065202808876, "ser_min_ns": 2444884.0, "ser_max_ns": 2660744.0, "ser_p5_ns": 2454583.0, "ser_p25_ns": 2478457.0, "ser_p50_ns": 2520028.0, "ser_p75_ns": 2554037.0, "ser_p95_ns": 2619498.0, "ser_p99_ns": 2655708.84, "ser_ci_low_ns": 2513632.0166666666, "ser_ci_high_ns": 2535147.260752688, "deser_mean_ns": 1983660.1720430108, "deser_median_ns": 1970328.0, "deser_std_ns": 50217.5512215348, "deser_mad_ns": 30336.0, "deser_cv": 0.02531560190060919, "deser_min_ns": 1909670.0, "deser_max_ns": 2141845.0, "deser_p5_ns": 1927377.0, "deser_p25_ns": 1943923.0, "deser_p50_ns": 1970328.0, "deser_p75_ns": 2013953.0, "deser_p95_ns": 2075381.9999999998, "deser_p99_ns": 2140379.44, "deser_ci_low_ns": 1973656.2069892474, "deser_ci_high_ns": 1993455.8798387095, "total_mean_ns": 4507562.129032258, "total_median_ns": 4481142.0, "total_std_ns": 86244.77688397007, "total_mad_ns": 47084.0, "total_cv": 0.01913335288902301, "total_min_ns": 4384069.0, "total_max_ns": 4750249.0, "total_p5_ns": 4398930.2, "total_p25_ns": 4443426.0, "total_p50_ns": 4481142.0, "total_p75_ns": 4562936.0, "total_p95_ns": 4674729.4, "total_p99_ns": 4737888.8, "total_ci_low_ns": 4490253.17795699, "total_ci_high_ns": 4525714.966129032, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 66.65969050438694}, {"serializer": "FlatBuffers", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "24.3.25", "avg_time_ser_ns": 90699.70833333333, "avg_time_deser_ns": 408103.5729166667, "avg_time_total_ns": 498803.28125, "median_size_bytes": 65868.0, "avg_ops_per_sec": 2004.7983595737423, "min_ops_per_sec": 1863.971115903588, "max_ops_per_sec": 2119.955565731342, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 90699.70833333333, "ser_median_ns": 85325.0, "ser_std_ns": 10763.224017010465, "ser_mad_ns": 3533.0, "ser_cv": 0.11866878311729741, "ser_min_ns": 77764.0, "ser_max_ns": 116068.0, "ser_p5_ns": 80934.75, "ser_p25_ns": 83164.0, "ser_p50_ns": 85325.0, "ser_p75_ns": 102664.25, "ser_p95_ns": 110931.25, "ser_p99_ns": 114469.15, "ser_ci_low_ns": 88731.334375, "ser_ci_high_ns": 92721.95781250001, "deser_mean_ns": 408103.5729166667, "deser_median_ns": 406741.0, "deser_std_ns": 9752.105340030337, "deser_mad_ns": 6464.5, "deser_cv": 0.02389615280830115, "deser_min_ns": 387425.0, "deser_max_ns": 434959.0, "deser_p5_ns": 393946.0, "deser_p25_ns": 400847.25, "deser_p50_ns": 406741.0, "deser_p75_ns": 413976.25, "deser_p95_ns": 424828.0, "deser_p99_ns": 430429.39999999997, "deser_ci_low_ns": 406183.7643229167, "deser_ci_high_ns": 409984.69557291665, "total_mean_ns": 498803.28125, "total_median_ns": 495843.0, "total_std_ns": 15224.946247733737, "total_mad_ns": 12385.5, "total_cv": 0.030522947262054997, "total_min_ns": 471708.0, "total_max_ns": 536489.0, "total_p5_ns": 480065.25, "total_p25_ns": 485444.75, "total_p50_ns": 495843.0, "total_p75_ns": 509571.0, "total_p95_ns": 524525.75, "total_p99_ns": 532683.3, "total_ci_low_ns": 495836.83098958334, "total_ci_high_ns": 501973.2278645833, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 24.520498949820258}, {"serializer": "SwiftBSON", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "3.1.0", "avg_time_ser_ns": 3569151.9655172415, "avg_time_deser_ns": 4010812.908045977, "avg_time_total_ns": 7579964.873563218, "median_size_bytes": 60537.0, "avg_ops_per_sec": 131.92673273298644, "min_ops_per_sec": 128.40280267365452, "max_ops_per_sec": 134.9218128094769, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 3569151.9655172415, "ser_median_ns": 3561042.0, "ser_std_ns": 47699.840998576656, "ser_mad_ns": 32080.0, "ser_cv": 0.013364474659364635, "ser_min_ns": 3471107.0, "ser_max_ns": 3699675.0, "ser_p5_ns": 3505225.5, "ser_p25_ns": 3540600.0, "ser_p50_ns": 3561042.0, "ser_p75_ns": 3597722.5, "ser_p95_ns": 3652119.2, "ser_p99_ns": 3693818.4, "ser_ci_low_ns": 3559085.625, "ser_ci_high_ns": 3579320.599712644, "deser_mean_ns": 4010812.908045977, "deser_median_ns": 4016835.0, "deser_std_ns": 57901.92505407908, "deser_mad_ns": 36524.0, "deser_cv": 0.014436456245047902, "deser_min_ns": 3905718.0, "deser_max_ns": 4168518.0, "deser_p5_ns": 3918326.1, "deser_p25_ns": 3973249.5, "deser_p50_ns": 4016835.0, "deser_p75_ns": 4046505.0, "deser_p95_ns": 4092368.1, "deser_p99_ns": 4155375.48, "deser_ci_low_ns": 3998959.6893678163, "deser_ci_high_ns": 4022549.016091954, "total_mean_ns": 7579964.873563218, "total_median_ns": 7583692.0, "total_std_ns": 84945.30372851898, "total_mad_ns": 59467.0, "total_cv": 0.01120655638191468, "total_min_ns": 7411700.0, "total_max_ns": 7787992.0, "total_p5_ns": 7440156.0, "total_p25_ns": 7518537.5, "total_p50_ns": 7583692.0, "total_p75_ns": 7636249.0, "total_p95_ns": 7720639.4, "total_p99_ns": 7756062.78, "total_ci_low_ns": 7561871.187931034, "total_ci_high_ns": 7597207.22816092, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 117.67584048249073}, {"serializer": "Foundation.PropertyListEncoder", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 1988430.611111111, "avg_time_deser_ns": 3459618.811111111, "avg_time_total_ns": 5448049.422222222, "median_size_bytes": 49031.0, "avg_ops_per_sec": 183.55193253590326, "min_ops_per_sec": 177.81359338689907, "max_ops_per_sec": 187.17702604156528, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 1988430.611111111, "ser_median_ns": 1980969.0, "ser_std_ns": 39223.04127798171, "ser_mad_ns": 18054.5, "ser_cv": 0.019725627366028304, "ser_min_ns": 1927567.0, "ser_max_ns": 2087316.0, "ser_p5_ns": 1940251.0, "ser_p25_ns": 1962899.75, "ser_p50_ns": 1980969.0, "ser_p75_ns": 1998456.0, "ser_p95_ns": 2082846.9, "ser_p99_ns": 2086935.08, "ser_ci_low_ns": 1980829.8294444445, "ser_ci_high_ns": 1996787.7136111113, "deser_mean_ns": 3459618.811111111, "deser_median_ns": 3458147.0, "deser_std_ns": 35964.31427354298, "deser_mad_ns": 26865.5, "deser_cv": 0.010395455753113006, "deser_min_ns": 3385164.0, "deser_max_ns": 3552929.0, "deser_p5_ns": 3411078.8, "deser_p25_ns": 3429652.75, "deser_p50_ns": 3458147.0, "deser_p75_ns": 3480407.25, "deser_p95_ns": 3531871.5, "deser_p99_ns": 3549462.45, "deser_ci_low_ns": 3452520.5, "deser_ci_high_ns": 3467105.8816666664, "total_mean_ns": 5448049.422222222, "total_median_ns": 5439182.5, "total_std_ns": 58459.54594456276, "total_mad_ns": 35521.0, "total_cv": 0.01073036263329592, "total_min_ns": 5342536.0, "total_max_ns": 5623867.0, "total_p5_ns": 5359199.1, "total_p25_ns": 5408971.75, "total_p50_ns": 5439182.5, "total_p75_ns": 5483320.75, "total_p95_ns": 5558972.3, "total_p99_ns": 5582091.29, "total_ci_low_ns": 5435555.376666667, "total_ci_high_ns": 5460137.593611111, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 120.35160003899485}, {"serializer": "SwiftBSON", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "3.1.0", "avg_time_ser_ns": 7694724.912087912, "avg_time_deser_ns": 3970363.164835165, "avg_time_total_ns": 11665088.076923076, "median_size_bytes": 60537.0, "avg_ops_per_sec": 85.72588508596773, "min_ops_per_sec": 82.52650606953569, "max_ops_per_sec": 87.62365011385818, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 7694724.912087912, "ser_median_ns": 7661825.0, "ser_std_ns": 140528.0365882472, "ser_mad_ns": 80995.0, "ser_cv": 0.01826290584702863, "ser_min_ns": 7426636.0, "ser_max_ns": 8074465.0, "ser_p5_ns": 7492338.5, "ser_p25_ns": 7587431.0, "ser_p50_ns": 7661825.0, "ser_p75_ns": 7782998.5, "ser_p95_ns": 7956266.5, "ser_p99_ns": 8056124.8, "ser_ci_low_ns": 7666715.778021977, "ser_ci_high_ns": 7723742.853021978, "deser_mean_ns": 3970363.164835165, "deser_median_ns": 3964823.0, "deser_std_ns": 39804.67443383551, "deser_mad_ns": 26558.0, "deser_cv": 0.010025449255216446, "deser_min_ns": 3881830.0, "deser_max_ns": 4071697.0, "deser_p5_ns": 3900026.0, "deser_p25_ns": 3944909.0, "deser_p50_ns": 3964823.0, "deser_p75_ns": 3995146.5, "deser_p95_ns": 4034228.0, "deser_p99_ns": 4064078.5, "deser_ci_low_ns": 3962290.7043956043, "deser_ci_high_ns": 3979064.662912088, "total_mean_ns": 11665088.076923076, "total_median_ns": 11635431.0, "total_std_ns": 153405.98504905796, "total_mad_ns": 94546.0, "total_cv": 0.013150863845815227, "total_min_ns": 11412444.0, "total_max_ns": 12117319.0, "total_p5_ns": 11471646.5, "total_p25_ns": 11553739.5, "total_p50_ns": 11635431.0, "total_p75_ns": 11773358.0, "total_p95_ns": 11933886.0, "total_p99_ns": 12083973.1, "total_ci_low_ns": 11633806.677472528, "total_ci_high_ns": 11697835.1, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 79.14710427979954}, {"serializer": "SwiftCbor", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "0.0.4", "avg_time_ser_ns": 4913292.14893617, "avg_time_deser_ns": 1983478.755319149, "avg_time_total_ns": 6896770.904255319, "median_size_bytes": 34732.0, "avg_ops_per_sec": 144.99539188448296, "min_ops_per_sec": 138.13543682292917, "max_ops_per_sec": 151.81134464924975, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 4913292.14893617, "ser_median_ns": 4900458.5, "ser_std_ns": 93939.38406822435, "ser_mad_ns": 63282.0, "ser_cv": 0.019119437888211913, "ser_min_ns": 4698142.0, "ser_max_ns": 5151129.0, "ser_p5_ns": 4795229.45, "ser_p25_ns": 4847481.75, "ser_p50_ns": 4900458.5, "ser_p75_ns": 4966166.75, "ser_p95_ns": 5076421.2, "ser_p99_ns": 5143882.44, "ser_ci_low_ns": 4895516.650531915, "ser_ci_high_ns": 4932322.674468085, "deser_mean_ns": 1983478.755319149, "deser_median_ns": 1966434.0, "deser_std_ns": 68714.58797609452, "deser_mad_ns": 38569.5, "deser_cv": 0.0346434706153624, "deser_min_ns": 1887952.0, "deser_max_ns": 2167500.0, "deser_p5_ns": 1900496.9, "deser_p25_ns": 1929883.0, "deser_p50_ns": 1966434.0, "deser_p75_ns": 2017978.0, "deser_p95_ns": 2116001.1, "deser_p99_ns": 2156610.63, "deser_ci_low_ns": 1969953.9715425533, "deser_ci_high_ns": 1998203.835106383, "total_mean_ns": 6896770.904255319, "total_median_ns": 6878625.5, "total_std_ns": 134996.86746609124, "total_mad_ns": 91047.5, "total_cv": 0.01957392370142351, "total_min_ns": 6587123.0, "total_max_ns": 7239272.0, "total_p5_ns": 6726842.75, "total_p25_ns": 6791260.0, "total_p50_ns": 6878625.5, "total_p75_ns": 6971967.5, "total_p95_ns": 7140152.1, "total_p99_ns": 7213961.12, "total_ci_low_ns": 6871277.063297872, "total_ci_high_ns": 6922862.3401595745, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 41.576619961929644}, {"serializer": "IkigaJSON", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "2.5.3", "avg_time_ser_ns": 3612428.712765957, "avg_time_deser_ns": 1286046.319148936, "avg_time_total_ns": 4898475.031914894, "median_size_bytes": 41431.0, "avg_ops_per_sec": 204.14516629863962, "min_ops_per_sec": 198.88453619032296, "max_ops_per_sec": 209.52426049983688, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 3612428.712765957, "ser_median_ns": 3606553.5, "ser_std_ns": 54286.054409656834, "ser_mad_ns": 33992.5, "ser_cv": 0.015027578044049816, "ser_min_ns": 3500164.0, "ser_max_ns": 3739134.0, "ser_p5_ns": 3529816.55, "ser_p25_ns": 3581469.0, "ser_p50_ns": 3606553.5, "ser_p75_ns": 3645176.25, "ser_p95_ns": 3709389.5, "ser_p99_ns": 3736146.84, "ser_ci_low_ns": 3602019.644148936, "ser_ci_high_ns": 3623366.992287234, "deser_mean_ns": 1286046.319148936, "deser_median_ns": 1283963.0, "deser_std_ns": 24390.260851683768, "deser_mad_ns": 15239.5, "deser_cv": 0.018965305128219995, "deser_min_ns": 1233545.0, "deser_max_ns": 1341835.0, "deser_p5_ns": 1248333.45, "deser_p25_ns": 1270956.5, "deser_p50_ns": 1283963.0, "deser_p75_ns": 1300374.75, "deser_p95_ns": 1332627.1, "deser_p99_ns": 1338322.39, "deser_ci_low_ns": 1281039.5901595745, "deser_ci_high_ns": 1290799.9909574469, "total_mean_ns": 4898475.031914894, "total_median_ns": 4890443.0, "total_std_ns": 62551.64729588725, "total_mad_ns": 42840.0, "total_cv": 0.012769616439472754, "total_min_ns": 4772717.0, "total_max_ns": 5028043.0, "total_p5_ns": 4807355.45, "total_p25_ns": 4856734.25, "total_p50_ns": 4890443.0, "total_p75_ns": 4956555.5, "total_p95_ns": 5000726.9, "total_p99_ns": 5021889.19, "total_ci_low_ns": 4886582.944680851, "total_ci_high_ns": 4910673.084308511, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 41.176189180431386}, {"serializer": "XMLCoder", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "0.18.2", "avg_time_ser_ns": 22802118.384615384, "avg_time_deser_ns": 15596978.076923076, "avg_time_total_ns": 38399096.461538464, "median_size_bytes": 80549.0, "avg_ops_per_sec": 26.042279432320136, "min_ops_per_sec": 25.35718897100223, "max_ops_per_sec": 26.704925923873603, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 22802118.384615384, "ser_median_ns": 22767479.0, "ser_std_ns": 314565.0749728643, "ser_mad_ns": 203075.0, "ser_cv": 0.013795432058852116, "ser_min_ns": 22240072.0, "ser_max_ns": 23572196.0, "ser_p5_ns": 22395764.0, "ser_p25_ns": 22590994.0, "ser_p50_ns": 22767479.0, "ser_p75_ns": 23002477.0, "ser_p95_ns": 23355557.5, "ser_p99_ns": 23553509.3, "ser_ci_low_ns": 22739238.850824177, "ser_ci_high_ns": 22865160.451923076, "deser_mean_ns": 15596978.076923076, "deser_median_ns": 15583462.0, "deser_std_ns": 234082.8910190781, "deser_mad_ns": 165789.0, "deser_cv": 0.01500822081460906, "deser_min_ns": 15206203.0, "deser_max_ns": 16233663.0, "deser_p5_ns": 15241297.5, "deser_p25_ns": 15444932.0, "deser_p50_ns": 15583462.0, "deser_p75_ns": 15749813.5, "deser_p95_ns": 16000011.5, "deser_p99_ns": 16181487.299999999, "deser_ci_low_ns": 15549926.09423077, "deser_ci_high_ns": 15645530.604120879, "total_mean_ns": 38399096.461538464, "total_median_ns": 38377321.0, "total_std_ns": 455743.3378122508, "total_mad_ns": 325062.0, "total_cv": 0.011868595352724906, "total_min_ns": 37446275.0, "total_max_ns": 39436548.0, "total_p5_ns": 37699890.0, "total_p25_ns": 38066542.5, "total_p50_ns": 38377321.0, "total_p75_ns": 38717750.5, "total_p95_ns": 39143083.5, "total_p99_ns": 39343126.2, "total_ci_low_ns": 38309844.33076923, "total_ci_high_ns": 38491597.903021984, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 109.32194074198016}, {"serializer": "SwiftMsgpack", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "1.2.1", "avg_time_ser_ns": 4600725.494623655, "avg_time_deser_ns": 1916299.8064516129, "avg_time_total_ns": 6517025.301075269, "median_size_bytes": 34833.0, "avg_ops_per_sec": 153.44424086170207, "min_ops_per_sec": 147.65094725465212, "max_ops_per_sec": 159.2018764169962, "runs": 93, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 6, "ser_mean_ns": 4600725.494623655, "ser_median_ns": 4589604.0, "ser_std_ns": 75794.37765465876, "ser_mad_ns": 53445.0, "ser_cv": 0.016474440334080142, "ser_min_ns": 4454180.0, "ser_max_ns": 4796930.0, "ser_p5_ns": 4503444.8, "ser_p25_ns": 4546160.0, "ser_p50_ns": 4589604.0, "ser_p75_ns": 4645316.0, "ser_p95_ns": 4754241.2, "ser_p99_ns": 4781790.4799999995, "ser_ci_low_ns": 4585703.5056451615, "ser_ci_high_ns": 4615494.7330645155, "deser_mean_ns": 1916299.8064516129, "deser_median_ns": 1910916.0, "deser_std_ns": 61613.448782511565, "deser_mad_ns": 48880.0, "deser_cv": 0.03215230131270554, "deser_min_ns": 1811040.0, "deser_max_ns": 2106117.0, "deser_p5_ns": 1824591.0, "deser_p25_ns": 1864158.0, "deser_p50_ns": 1910916.0, "deser_p75_ns": 1968241.0, "deser_p95_ns": 2012810.6, "deser_p99_ns": 2072275.72, "deser_ci_low_ns": 1904472.183333333, "deser_ci_high_ns": 1928073.6190860216, "total_mean_ns": 6517025.301075269, "total_median_ns": 6520260.0, "total_std_ns": 110350.48277763081, "total_mad_ns": 62056.0, "total_cv": 0.016932646058535887, "total_min_ns": 6281333.0, "total_max_ns": 6772730.0, "total_p5_ns": 6347438.4, "total_p25_ns": 6448547.0, "total_p50_ns": 6520260.0, "total_p75_ns": 6571922.0, "total_p95_ns": 6732314.2, "total_p99_ns": 6747955.32, "total_ci_low_ns": 6494869.362096774, "total_ci_high_ns": 6538543.331182796, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 45.404125677590095}, {"serializer": "TOML", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "2.0.0", "avg_time_ser_ns": 6031748.914893617, "avg_time_deser_ns": 2440727.6063829786, "avg_time_total_ns": 8472476.521276595, "median_size_bytes": 45430.0, "avg_ops_per_sec": 118.02924416358542, "min_ops_per_sec": 113.49260204148223, "max_ops_per_sec": 122.07004427968786, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 6031748.914893617, "ser_median_ns": 6021884.0, "ser_std_ns": 78710.79745015921, "ser_mad_ns": 45062.5, "ser_cv": 0.013049415444964265, "ser_min_ns": 5840973.0, "ser_max_ns": 6217847.0, "ser_p5_ns": 5905718.1, "ser_p25_ns": 5982080.25, "ser_p50_ns": 6021884.0, "ser_p75_ns": 6080950.0, "ser_p95_ns": 6161598.7, "ser_p99_ns": 6214385.54, "ser_ci_low_ns": 6015833.408510638, "ser_ci_high_ns": 6047202.406382979, "deser_mean_ns": 2440727.6063829786, "deser_median_ns": 2420546.0, "deser_std_ns": 128547.91996010362, "deser_mad_ns": 102496.0, "deser_cv": 0.052667868230738143, "deser_min_ns": 2243103.0, "deser_max_ns": 2817040.0, "deser_p5_ns": 2276130.2, "deser_p25_ns": 2333959.5, "deser_p50_ns": 2420546.0, "deser_p75_ns": 2539728.0, "deser_p95_ns": 2646575.3, "deser_p99_ns": 2677808.769999999, "deser_ci_low_ns": 2415313.2284574467, "deser_ci_high_ns": 2466975.2494680854, "total_mean_ns": 8472476.521276595, "total_median_ns": 8459350.0, "total_std_ns": 159297.51557355857, "total_mad_ns": 124563.0, "total_cv": 0.018801765360284096, "total_min_ns": 8192018.0, "total_max_ns": 8811147.0, "total_p5_ns": 8226689.8, "total_p25_ns": 8343145.5, "total_p50_ns": 8459350.0, "total_p75_ns": 8603732.25, "total_p95_ns": 8705638.9, "total_p99_ns": 8798462.73, "total_ci_low_ns": 8441697.003989363, "total_ci_high_ns": 8505085.905053193, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 48.96886149103091}, {"serializer": "Foundation.JSONEncoder", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 3992618.0224719103, "avg_time_deser_ns": 1056079.2584269664, "avg_time_total_ns": 5048697.2808988765, "median_size_bytes": 41431.0, "avg_ops_per_sec": 198.07089717646107, "min_ops_per_sec": 191.67652363189444, "max_ops_per_sec": 204.73574245881485, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 3992618.0224719103, "ser_median_ns": 3986548.0, "ser_std_ns": 54089.02718540171, "ser_mad_ns": 28403.0, "ser_cv": 0.013547258185223064, "ser_min_ns": 3863471.0, "ser_max_ns": 4136376.0, "ser_p5_ns": 3902585.6, "ser_p25_ns": 3961946.0, "ser_p50_ns": 3986548.0, "ser_p75_ns": 4023875.0, "ser_p95_ns": 4092060.8, "ser_p99_ns": 4108089.2800000003, "ser_ci_low_ns": 3981695.0671348316, "ser_ci_high_ns": 4004222.227808989, "deser_mean_ns": 1056079.2584269664, "deser_median_ns": 1057822.0, "deser_std_ns": 24374.46397430576, "deser_mad_ns": 19462.0, "deser_cv": 0.02308014647557003, "deser_min_ns": 1000256.0, "deser_max_ns": 1111897.0, "deser_p5_ns": 1016571.2, "deser_p25_ns": 1038125.0, "deser_p50_ns": 1057822.0, "deser_p75_ns": 1075492.0, "deser_p95_ns": 1092229.4, "deser_p99_ns": 1104662.52, "deser_ci_low_ns": 1051040.609550562, "deser_ci_high_ns": 1060973.9216292135, "total_mean_ns": 5048697.2808988765, "total_median_ns": 5047499.0, "total_std_ns": 66499.94889129764, "total_mad_ns": 42489.0, "total_cv": 0.013171704539088131, "total_min_ns": 4884345.0, "total_max_ns": 5217123.0, "total_p5_ns": 4931001.8, "total_p25_ns": 5005010.0, "total_p50_ns": 5047499.0, "total_p75_ns": 5089272.0, "total_p95_ns": 5155544.0, "total_p99_ns": 5186931.08, "total_ci_low_ns": 5035219.065168539, "total_ci_high_ns": 5062003.865168539, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 42.328639319144024}, {"serializer": "Foundation.PropertyListEncoder", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 5226561.67816092, "avg_time_deser_ns": 3449337.896551724, "avg_time_total_ns": 8675899.574712643, "median_size_bytes": 49031.0, "avg_ops_per_sec": 115.26182286787491, "min_ops_per_sec": 112.3516606979847, "max_ops_per_sec": 117.32030108143508, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 5226561.67816092, "ser_median_ns": 5215952.0, "ser_std_ns": 61690.17845663518, "ser_mad_ns": 35429.0, "ser_cv": 0.011803204908956937, "ser_min_ns": 5086974.0, "ser_max_ns": 5403569.0, "ser_p5_ns": 5143796.6, "ser_p25_ns": 5186383.5, "ser_p50_ns": 5215952.0, "ser_p75_ns": 5270377.0, "ser_p95_ns": 5338399.7, "ser_p99_ns": 5401859.32, "ser_ci_low_ns": 5213523.239655172, "ser_ci_high_ns": 5240100.314367816, "deser_mean_ns": 3449337.896551724, "deser_median_ns": 3446850.0, "deser_std_ns": 37709.12061009708, "deser_mad_ns": 24732.0, "deser_cv": 0.010932277944643983, "deser_min_ns": 3358250.0, "deser_max_ns": 3555200.0, "deser_p5_ns": 3399691.0, "deser_p25_ns": 3421354.0, "deser_p50_ns": 3446850.0, "deser_p75_ns": 3469858.5, "deser_p95_ns": 3520488.4, "deser_p99_ns": 3550314.34, "deser_ci_low_ns": 3441682.232183908, "deser_ci_high_ns": 3457196.536206897, "total_mean_ns": 8675899.574712643, "total_median_ns": 8670489.0, "total_std_ns": 72764.25613864303, "total_mad_ns": 46808.0, "total_cv": 0.008386940802164953, "total_min_ns": 8523674.0, "total_max_ns": 8900625.0, "total_p5_ns": 8576026.3, "total_p25_ns": 8625863.5, "total_p50_ns": 8670489.0, "total_p75_ns": 8713642.0, "total_p95_ns": 8803497.7, "total_p99_ns": 8887700.06, "total_ci_low_ns": 8660208.366666665, "total_ci_high_ns": 8691245.837068966, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 100.32219029303644}, {"serializer": "BinaryCodable", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "4.0.0", "avg_time_ser_ns": 4063322.3298969073, "avg_time_deser_ns": 777781.6701030928, "avg_time_total_ns": 4841104.0, "median_size_bytes": 34830.0, "avg_ops_per_sec": 206.56445306690375, "min_ops_per_sec": 195.47021239206867, "max_ops_per_sec": 216.07671241874976, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 4063322.3298969073, "ser_median_ns": 4048049.0, "ser_std_ns": 94712.40308051457, "ser_mad_ns": 70770.0, "ser_cv": 0.023309104075658595, "ser_min_ns": 3885614.0, "ser_max_ns": 4293020.0, "ser_p5_ns": 3943789.2, "ser_p25_ns": 3996909.0, "ser_p50_ns": 4048049.0, "ser_p75_ns": 4142122.0, "ser_p95_ns": 4246369.399999999, "ser_p99_ns": 4280084.0, "ser_ci_low_ns": 4045059.6716494844, "ser_ci_high_ns": 4081946.0917525776, "deser_mean_ns": 777781.6701030928, "deser_median_ns": 772483.0, "deser_std_ns": 25191.78293930121, "deser_mad_ns": 17571.0, "deser_cv": 0.032389273118203096, "deser_min_ns": 732554.0, "deser_max_ns": 845758.0, "deser_p5_ns": 744870.8, "deser_p25_ns": 757100.0, "deser_p50_ns": 772483.0, "deser_p75_ns": 793565.0, "deser_p95_ns": 826637.7999999999, "deser_p99_ns": 843152.5599999999, "deser_ci_low_ns": 773000.4837628866, "deser_ci_high_ns": 782394.6105670104, "total_mean_ns": 4841104.0, "total_median_ns": 4820496.0, "total_std_ns": 108292.10020222313, "total_mad_ns": 78580.0, "total_cv": 0.022369298449738558, "total_min_ns": 4627986.0, "total_max_ns": 5115869.0, "total_p5_ns": 4698868.6, "total_p25_ns": 4763411.0, "total_p50_ns": 4820496.0, "total_p75_ns": 4924987.0, "total_p95_ns": 5031282.6, "total_p99_ns": 5099037.32, "total_ci_low_ns": 4819883.318556701, "total_ci_high_ns": 4862925.93685567, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.874150469291273}, {"serializer": "SwiftAvroCore", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "2.3.0", "avg_time_ser_ns": 3138981.336956522, "avg_time_deser_ns": 1281327.7826086956, "avg_time_total_ns": 4420309.119565218, "median_size_bytes": 34033.0, "avg_ops_per_sec": 226.22852224831738, "min_ops_per_sec": 216.722010244016, "max_ops_per_sec": 232.5482427143217, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 3138981.336956522, "ser_median_ns": 3135475.0, "ser_std_ns": 46953.28184723483, "ser_mad_ns": 33970.0, "ser_cv": 0.014958127114180157, "ser_min_ns": 3037957.0, "ser_max_ns": 3269005.0, "ser_p5_ns": 3073900.75, "ser_p25_ns": 3104712.75, "ser_p50_ns": 3135475.0, "ser_p75_ns": 3170547.25, "ser_p95_ns": 3218487.35, "ser_p99_ns": 3260522.89, "ser_ci_low_ns": 3130529.7994565214, "ser_ci_high_ns": 3148560.8684782605, "deser_mean_ns": 1281327.7826086956, "deser_median_ns": 1276256.0, "deser_std_ns": 26652.908523562837, "deser_mad_ns": 14078.0, "deser_cv": 0.020801007271768774, "deser_min_ns": 1223252.0, "deser_max_ns": 1353757.0, "deser_p5_ns": 1248929.75, "deser_p25_ns": 1263910.75, "deser_p50_ns": 1276256.0, "deser_p75_ns": 1292539.5, "deser_p95_ns": 1335809.75, "deser_p99_ns": 1348238.76, "deser_ci_low_ns": 1276284.9562499998, "deser_ci_high_ns": 1286417.8972826088, "total_mean_ns": 4420309.119565218, "total_median_ns": 4411459.5, "total_std_ns": 66270.30708731539, "total_mad_ns": 42917.0, "total_cv": 0.014992233641305554, "total_min_ns": 4300183.0, "total_max_ns": 4614206.0, "total_p5_ns": 4331453.05, "total_p25_ns": 4378030.0, "total_p50_ns": 4411459.5, "total_p75_ns": 4459333.5, "total_p95_ns": 4528003.5, "total_p99_ns": 4590419.51, "total_ci_low_ns": 4407070.3399456525, "total_ci_high_ns": 4434744.355978261, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 31.137102156866128}, {"serializer": "CapnProto", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "capnproto-1.0.2", "avg_time_ser_ns": 5498700.164835165, "avg_time_deser_ns": 878008.8681318681, "avg_time_total_ns": 6376709.032967033, "median_size_bytes": 71584.0, "avg_ops_per_sec": 156.82070403872697, "min_ops_per_sec": 150.53775095395773, "max_ops_per_sec": 163.53063959122574, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 5498700.164835165, "ser_median_ns": 5485605.0, "ser_std_ns": 79190.11867654866, "ser_mad_ns": 47519.0, "ser_cv": 0.014401606980314874, "ser_min_ns": 5277119.0, "ser_max_ns": 5691924.0, "ser_p5_ns": 5401142.5, "ser_p25_ns": 5444428.5, "ser_p50_ns": 5485605.0, "ser_p75_ns": 5542478.5, "ser_p95_ns": 5629661.5, "ser_p99_ns": 5691042.0, "ser_ci_low_ns": 5482821.014835165, "ser_ci_high_ns": 5514740.832967033, "deser_mean_ns": 878008.8681318681, "deser_median_ns": 872307.0, "deser_std_ns": 33191.33180120939, "deser_mad_ns": 18622.0, "deser_cv": 0.03780295735717374, "deser_min_ns": 814607.0, "deser_max_ns": 960408.0, "deser_p5_ns": 832813.5, "deser_p25_ns": 855016.0, "deser_p50_ns": 872307.0, "deser_p75_ns": 894458.5, "deser_p95_ns": 936282.5, "deser_p99_ns": 957106.7999999999, "deser_ci_low_ns": 871427.0104395604, "deser_ci_high_ns": 884424.2489010989, "total_mean_ns": 6376709.032967033, "total_median_ns": 6359047.0, "total_std_ns": 95373.4131715322, "total_mad_ns": 52979.0, "total_cv": 0.014956525800136077, "total_min_ns": 6115062.0, "total_max_ns": 6642852.0, "total_p5_ns": 6251358.5, "total_p25_ns": 6322970.0, "total_p50_ns": 6359047.0, "total_p75_ns": 6425976.0, "total_p95_ns": 6538392.0, "total_p99_ns": 6627959.7, "total_ci_low_ns": 6358499.0859890105, "total_ci_high_ns": 6396493.96510989, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 49.73704351720609}, {"serializer": "Yams", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "5.4.0", "avg_time_ser_ns": 25263764.043956045, "avg_time_deser_ns": 3577739.4945054944, "avg_time_total_ns": 28841503.53846154, "median_size_bytes": 47530.0, "avg_ops_per_sec": 34.67225620420418, "min_ops_per_sec": 33.6265523866042, "max_ops_per_sec": 35.4216999426381, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 25263764.043956045, "ser_median_ns": 25235790.0, "ser_std_ns": 300168.0270230478, "ser_mad_ns": 208153.0, "ser_cv": 0.0118813659952171, "ser_min_ns": 24717827.0, "ser_max_ns": 26143472.0, "ser_p5_ns": 24856842.0, "ser_p25_ns": 25027337.5, "ser_p50_ns": 25235790.0, "ser_p75_ns": 25438753.5, "ser_p95_ns": 25814424.0, "ser_p99_ns": 25982017.4, "ser_ci_low_ns": 25202667.09175824, "ser_ci_high_ns": 25327303.993406594, "deser_mean_ns": 3577739.4945054944, "deser_median_ns": 3572834.0, "deser_std_ns": 53135.2218475286, "deser_mad_ns": 36055.0, "deser_cv": 0.014851618439277342, "deser_min_ns": 3483041.0, "deser_max_ns": 3719836.0, "deser_p5_ns": 3509369.5, "deser_p25_ns": 3538438.0, "deser_p50_ns": 3572834.0, "deser_p75_ns": 3609804.5, "deser_p95_ns": 3681698.0, "deser_p99_ns": 3705851.8, "deser_ci_low_ns": 3567723.9722527475, "deser_ci_high_ns": 3588659.1576923076, "total_mean_ns": 28841503.53846154, "total_median_ns": 28835790.0, "total_std_ns": 326345.1344252076, "total_mad_ns": 218956.0, "total_cv": 0.011315122111786253, "total_min_ns": 28231282.0, "total_max_ns": 29738404.0, "total_p5_ns": 28397549.0, "total_p25_ns": 28587264.5, "total_p50_ns": 28835790.0, "total_p75_ns": 29027086.0, "total_p95_ns": 29433336.5, "total_p99_ns": 29622563.2, "total_ci_low_ns": 28776430.732967034, "total_ci_high_ns": 28908324.53956044, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 111.37567411921616}, {"serializer": "FlatBuffers", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "24.3.25", "avg_time_ser_ns": 4384404.695652174, "avg_time_deser_ns": 444948.22826086957, "avg_time_total_ns": 4829352.923913044, "median_size_bytes": 65868.0, "avg_ops_per_sec": 207.06707829291082, "min_ops_per_sec": 200.8163183340278, "max_ops_per_sec": 213.57992417058372, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 4384404.695652174, "ser_median_ns": 4381140.0, "ser_std_ns": 59718.68079656631, "ser_mad_ns": 38281.0, "ser_cv": 0.013620704506540368, "ser_min_ns": 4250922.0, "ser_max_ns": 4534756.0, "ser_p5_ns": 4300350.5, "ser_p25_ns": 4341625.75, "ser_p50_ns": 4381140.0, "ser_p75_ns": 4414660.0, "ser_p95_ns": 4494342.85, "ser_p99_ns": 4527877.31, "ser_ci_low_ns": 4371788.138043479, "ser_ci_high_ns": 4396201.331250001, "deser_mean_ns": 444948.22826086957, "deser_median_ns": 443722.0, "deser_std_ns": 14492.013445914105, "deser_mad_ns": 9499.0, "deser_cv": 0.03257011158929158, "deser_min_ns": 410015.0, "deser_max_ns": 485361.0, "deser_p5_ns": 424031.0, "deser_p25_ns": 434901.5, "deser_p50_ns": 443722.0, "deser_p75_ns": 454497.0, "deser_p95_ns": 468768.45, "deser_p99_ns": 484794.98, "deser_ci_low_ns": 441783.8644021739, "deser_ci_high_ns": 447824.8929347826, "total_mean_ns": 4829352.923913044, "total_median_ns": 4822456.0, "total_std_ns": 59102.99029924652, "total_mad_ns": 40120.5, "total_cv": 0.012238283519639227, "total_min_ns": 4682088.0, "total_max_ns": 4979675.0, "total_p5_ns": 4746678.35, "total_p25_ns": 4785863.0, "total_p50_ns": 4822456.0, "total_p75_ns": 4865930.75, "total_p95_ns": 4934443.35, "total_p99_ns": 4964124.01, "total_ci_low_ns": 4817814.13451087, "total_ci_high_ns": 4842117.844836957, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 41.53030514143933}, {"serializer": "SwiftProtobuf", "test_data": "strings", "type_config_hash": "68ff6ad99f20", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "1.38.1", "avg_time_ser_ns": 2503435.561797753, "avg_time_deser_ns": 162751.77528089887, "avg_time_total_ns": 2666187.337078652, "median_size_bytes": 37330.0, "avg_ops_per_sec": 375.0674178415769, "min_ops_per_sec": 359.5910299298402, "max_ops_per_sec": 390.53133350048074, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 2503435.561797753, "ser_median_ns": 2508054.0, "ser_std_ns": 37743.24905227034, "ser_mad_ns": 25423.0, "ser_cv": 0.015076581010603832, "ser_min_ns": 2400693.0, "ser_max_ns": 2614062.0, "ser_p5_ns": 2452951.6, "ser_p25_ns": 2474261.0, "ser_p50_ns": 2508054.0, "ser_p75_ns": 2522941.0, "ser_p95_ns": 2566570.0, "ser_p99_ns": 2596259.6, "ser_ci_low_ns": 2495954.9477528087, "ser_ci_high_ns": 2510947.3165730336, "deser_mean_ns": 162751.77528089887, "deser_median_ns": 161751.0, "deser_std_ns": 14199.082809489691, "deser_mad_ns": 11078.0, "deser_cv": 0.08724379678797978, "deser_min_ns": 139481.0, "deser_max_ns": 200496.0, "deser_p5_ns": 140791.4, "deser_p25_ns": 152972.0, "deser_p50_ns": 161751.0, "deser_p75_ns": 173348.0, "deser_p95_ns": 186937.6, "deser_p99_ns": 195047.04000000004, "deser_ci_low_ns": 159899.83117977527, "deser_ci_high_ns": 165585.23679775282, "total_mean_ns": 2666187.337078652, "total_median_ns": 2669987.0, "total_std_ns": 43127.97025975134, "total_mad_ns": 29527.0, "total_cv": 0.01617589644207326, "total_min_ns": 2560614.0, "total_max_ns": 2780937.0, "total_p5_ns": 2602170.2, "total_p25_ns": 2633955.0, "total_p50_ns": 2669987.0, "total_p75_ns": 2694025.0, "total_p95_ns": 2740006.0, "total_p99_ns": 2777623.8, "total_ci_low_ns": 2657700.1601123596, "total_ci_high_ns": 2675135.2893258426, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "Foundation.PropertyListEncoder", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 22660.329268292684, "avg_time_deser_ns": 31066.243902439026, "avg_time_total_ns": 53726.57317073171, "median_size_bytes": 264.0, "avg_ops_per_sec": 18612.76349828252, "min_ops_per_sec": 16687.24760537997, "max_ops_per_sec": 20896.894721444394, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 22660.329268292684, "ser_median_ns": 22374.5, "ser_std_ns": 1619.6115755563126, "ser_mad_ns": 1059.0, "ser_cv": 0.0714734351994851, "ser_min_ns": 19651.0, "ser_max_ns": 26407.0, "ser_p5_ns": 20482.1, "ser_p25_ns": 21446.0, "ser_p50_ns": 22374.5, "ser_p75_ns": 23677.5, "ser_p95_ns": 25551.350000000002, "ser_p99_ns": 26255.53, "ser_ci_low_ns": 22319.871646341464, "ser_ci_high_ns": 22994.988414634146, "deser_mean_ns": 31066.243902439026, "deser_median_ns": 31029.0, "deser_std_ns": 1259.535271547011, "deser_mad_ns": 882.0, "deser_cv": 0.040543532571960667, "deser_min_ns": 27597.0, "deser_max_ns": 34368.0, "deser_p5_ns": 28929.0, "deser_p25_ns": 30182.5, "deser_p50_ns": 31029.0, "deser_p75_ns": 31972.0, "deser_p95_ns": 32930.5, "deser_p99_ns": 33383.03999999999, "deser_ci_low_ns": 30803.09481707317, "deser_ci_high_ns": 31338.984146341463, "total_mean_ns": 53726.57317073171, "total_median_ns": 53579.5, "total_std_ns": 2446.278266832593, "total_mad_ns": 1652.0, "total_cv": 0.04553199883154351, "total_min_ns": 47854.0, "total_max_ns": 59926.0, "total_p5_ns": 50305.9, "total_p25_ns": 51957.75, "total_p50_ns": 53579.5, "total_p75_ns": 55233.75, "total_p95_ns": 58127.05, "total_p99_ns": 59286.909999999996, "total_ci_low_ns": 53205.67926829268, "total_ci_high_ns": 54275.351219512195, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.311206402856595}, {"serializer": "SwiftMsgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "1.2.1", "avg_time_ser_ns": 25138.164705882355, "avg_time_deser_ns": 19418.34117647059, "avg_time_total_ns": 44556.50588235294, "median_size_bytes": 199.0, "avg_ops_per_sec": 22443.411578107167, "min_ops_per_sec": 20316.944331572533, "max_ops_per_sec": 24970.65947511674, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 25138.164705882355, "ser_median_ns": 25020.0, "ser_std_ns": 1144.9666437962996, "ser_mad_ns": 728.0, "ser_cv": 0.04554694653298919, "ser_min_ns": 22596.0, "ser_max_ns": 28222.0, "ser_p5_ns": 23378.4, "ser_p25_ns": 24418.0, "ser_p50_ns": 25020.0, "ser_p75_ns": 25879.0, "ser_p95_ns": 27163.2, "ser_p99_ns": 28061.559999999998, "ser_ci_low_ns": 24903.41705882353, "ser_ci_high_ns": 25391.60470588235, "deser_mean_ns": 19418.34117647059, "deser_median_ns": 19380.0, "deser_std_ns": 766.4147290956704, "deser_mad_ns": 502.0, "deser_cv": 0.03946859940973451, "deser_min_ns": 17451.0, "deser_max_ns": 21536.0, "deser_p5_ns": 18317.6, "deser_p25_ns": 18936.0, "deser_p50_ns": 19380.0, "deser_p75_ns": 19882.0, "deser_p95_ns": 20620.8, "deser_p99_ns": 21501.56, "deser_ci_low_ns": 19257.485294117647, "deser_ci_high_ns": 19567.85823529412, "total_mean_ns": 44556.50588235294, "total_median_ns": 44498.0, "total_std_ns": 1820.6642601477272, "total_mad_ns": 1170.0, "total_cv": 0.04086191733604542, "total_min_ns": 40047.0, "total_max_ns": 49220.0, "total_p5_ns": 41607.2, "total_p25_ns": 43434.0, "total_p50_ns": 44498.0, "total_p75_ns": 45668.0, "total_p95_ns": 47554.4, "total_p99_ns": 48902.479999999996, "total_ci_low_ns": 44192.60823529412, "total_ci_high_ns": 44960.574411764705, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.094313351914394}, {"serializer": "SwiftAvroCore", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "2.3.0", "avg_time_ser_ns": 61606.68965517241, "avg_time_deser_ns": 17625.44827586207, "avg_time_total_ns": 79232.13793103448, "median_size_bytes": 105.0, "avg_ops_per_sec": 12621.141194882606, "min_ops_per_sec": 11519.675605934937, "max_ops_per_sec": 14188.824881523313, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 61606.68965517241, "ser_median_ns": 61775.0, "ser_std_ns": 2824.476396466089, "ser_mad_ns": 1891.0, "ser_cv": 0.04584691065654345, "ser_min_ns": 54564.0, "ser_max_ns": 67738.0, "ser_p5_ns": 57402.8, "ser_p25_ns": 59612.0, "ser_p50_ns": 61775.0, "ser_p75_ns": 63455.5, "ser_p95_ns": 66334.9, "ser_p99_ns": 67416.36, "ser_ci_low_ns": 61021.58045977011, "ser_ci_high_ns": 62169.355747126436, "deser_mean_ns": 17625.44827586207, "deser_median_ns": 17626.0, "deser_std_ns": 605.027690287341, "deser_mad_ns": 400.0, "deser_cv": 0.03432693914037479, "deser_min_ns": 15914.0, "deser_max_ns": 19115.0, "deser_p5_ns": 16694.2, "deser_p25_ns": 17217.5, "deser_p50_ns": 17626.0, "deser_p75_ns": 17992.5, "deser_p95_ns": 18563.3, "deser_p99_ns": 19076.3, "deser_ci_low_ns": 17499.23850574713, "deser_ci_high_ns": 17750.093965517244, "total_mean_ns": 79232.13793103448, "total_median_ns": 79329.0, "total_std_ns": 3263.2750212745996, "total_mad_ns": 2086.0, "total_cv": 0.04118625480124026, "total_min_ns": 70478.0, "total_max_ns": 86808.0, "total_p5_ns": 74331.6, "total_p25_ns": 77019.0, "total_p50_ns": 79329.0, "total_p75_ns": 81179.5, "total_p95_ns": 84647.2, "total_p99_ns": 86525.06, "total_ci_low_ns": 78552.0011494253, "total_ci_high_ns": 79933.00948275863, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.108555496466153}, {"serializer": "TOML", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "2.0.0", "avg_time_ser_ns": 76273.42857142857, "avg_time_deser_ns": 26275.70238095238, "avg_time_total_ns": 102549.13095238095, "median_size_bytes": 282.0, "avg_ops_per_sec": 9751.423446624365, "min_ops_per_sec": 9179.786110983614, "max_ops_per_sec": 10731.686377197313, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 76273.42857142857, "ser_median_ns": 76328.0, "ser_std_ns": 2852.1397137313797, "ser_mad_ns": 1740.5, "ser_cv": 0.03739362143738441, "ser_min_ns": 69194.0, "ser_max_ns": 82397.0, "ser_p5_ns": 71684.85, "ser_p25_ns": 74724.5, "ser_p50_ns": 76328.0, "ser_p75_ns": 78242.75, "ser_p95_ns": 81079.85, "ser_p99_ns": 81925.56, "ser_ci_low_ns": 75679.25535714286, "ser_ci_high_ns": 76889.59375, "deser_mean_ns": 26275.70238095238, "deser_median_ns": 26152.5, "deser_std_ns": 1121.6827159116724, "deser_mad_ns": 690.5, "deser_cv": 0.04268897172182905, "deser_min_ns": 23538.0, "deser_max_ns": 29445.0, "deser_p5_ns": 24301.05, "deser_p25_ns": 25624.25, "deser_p50_ns": 26152.5, "deser_p75_ns": 27065.75, "deser_p95_ns": 27979.05, "deser_p99_ns": 29122.13, "deser_ci_low_ns": 26025.331845238095, "deser_ci_high_ns": 26528.26607142857, "total_mean_ns": 102549.13095238095, "total_median_ns": 102757.0, "total_std_ns": 3545.955441724143, "total_mad_ns": 2039.0, "total_cv": 0.034578113035114065, "total_min_ns": 93182.0, "total_max_ns": 108935.0, "total_p5_ns": 96669.3, "total_p25_ns": 100744.5, "total_p50_ns": 102757.0, "total_p75_ns": 104447.5, "total_p95_ns": 108009.75, "total_p99_ns": 108287.6, "total_ci_low_ns": 101746.65982142856, "total_ci_high_ns": 103294.00059523809, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 36.95724065330331}, {"serializer": "SwiftBSON", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "3.1.0", "avg_time_ser_ns": 27209.31395348837, "avg_time_deser_ns": 37384.058139534885, "avg_time_total_ns": 64593.37209302326, "median_size_bytes": 291.0, "avg_ops_per_sec": 15481.464546546102, "min_ops_per_sec": 14504.525411928522, "max_ops_per_sec": 17013.457644997194, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 27209.31395348837, "ser_median_ns": 27160.5, "ser_std_ns": 1066.1172351562127, "ser_mad_ns": 627.5, "ser_cv": 0.03918206967579685, "ser_min_ns": 24576.0, "ser_max_ns": 29737.0, "ser_p5_ns": 25697.0, "ser_p25_ns": 26503.25, "ser_p50_ns": 27160.5, "ser_p75_ns": 27765.25, "ser_p95_ns": 29265.75, "ser_p99_ns": 29592.5, "ser_ci_low_ns": 26996.74941860465, "ser_ci_high_ns": 27433.09215116279, "deser_mean_ns": 37384.058139534885, "deser_median_ns": 37257.5, "deser_std_ns": 1315.200046109302, "deser_mad_ns": 919.5, "deser_cv": 0.03518077254214502, "deser_min_ns": 34201.0, "deser_max_ns": 40964.0, "deser_p5_ns": 35525.75, "deser_p25_ns": 36378.5, "deser_p50_ns": 37257.5, "deser_p75_ns": 38178.5, "deser_p95_ns": 39625.0, "deser_p99_ns": 40956.35, "deser_ci_low_ns": 37117.23023255814, "deser_ci_high_ns": 37665.07529069768, "total_mean_ns": 64593.37209302326, "total_median_ns": 64755.0, "total_std_ns": 2097.3487356044175, "total_mad_ns": 1266.5, "total_cv": 0.03247003009200308, "total_min_ns": 58777.0, "total_max_ns": 68944.0, "total_p5_ns": 61140.0, "total_p25_ns": 63318.25, "total_p50_ns": 64755.0, "total_p75_ns": 65872.25, "total_p95_ns": 68085.5, "total_p99_ns": 68829.25, "total_ci_low_ns": 64159.118313953484, "total_ci_high_ns": 65044.92063953488, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 37.34031636852162}, {"serializer": "XMLCoder", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "0.18.2", "avg_time_ser_ns": 94875.81318681319, "avg_time_deser_ns": 116911.36263736263, "avg_time_total_ns": 211787.17582417582, "median_size_bytes": 376.0, "avg_ops_per_sec": 4721.721209551389, "min_ops_per_sec": 4367.899433483443, "max_ops_per_sec": 5214.525582462507, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 94875.81318681319, "ser_median_ns": 94546.0, "ser_std_ns": 3056.123830068583, "ser_mad_ns": 2059.0, "ser_cv": 0.03221183278873181, "ser_min_ns": 86224.0, "ser_max_ns": 102069.0, "ser_p5_ns": 90986.0, "ser_p25_ns": 92906.5, "ser_p50_ns": 94546.0, "ser_p75_ns": 97079.5, "ser_p95_ns": 100238.5, "ser_p99_ns": 101496.59999999999, "ser_ci_low_ns": 94271.51346153847, "ser_ci_high_ns": 95486.41813186812, "deser_mean_ns": 116911.36263736263, "deser_median_ns": 116932.0, "deser_std_ns": 4967.395862614722, "deser_mad_ns": 3386.0, "deser_cv": 0.042488563562659544, "deser_min_ns": 105548.0, "deser_max_ns": 130590.0, "deser_p5_ns": 110081.5, "deser_p25_ns": 113090.5, "deser_p50_ns": 116932.0, "deser_p75_ns": 119522.5, "deser_p95_ns": 125775.5, "deser_p99_ns": 129258.9, "deser_ci_low_ns": 115860.22527472526, "deser_ci_high_ns": 117955.24587912088, "total_mean_ns": 211787.17582417582, "total_median_ns": 211811.0, "total_std_ns": 6955.959469873307, "total_mad_ns": 4886.0, "total_cv": 0.032844101361680623, "total_min_ns": 191772.0, "total_max_ns": 228943.0, "total_p5_ns": 202142.5, "total_p25_ns": 206677.5, "total_p50_ns": 211811.0, "total_p75_ns": 216282.5, "total_p95_ns": 222124.5, "total_p99_ns": 227179.9, "total_ci_low_ns": 210327.93186813185, "total_ci_high_ns": 213259.42884615384, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 39.677354219350995}, {"serializer": "Foundation.JSONEncoder", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 14203.564102564103, "avg_time_deser_ns": 16456.0, "avg_time_total_ns": 30659.5641025641, "median_size_bytes": 257.0, "avg_ops_per_sec": 32616.249750151164, "min_ops_per_sec": 28250.18362619357, "max_ops_per_sec": 39181.882297625576, "runs": 78, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 21, "ser_mean_ns": 14203.564102564103, "ser_median_ns": 14342.0, "ser_std_ns": 783.7122548709433, "ser_mad_ns": 566.0, "ser_cv": 0.05517715477691007, "ser_min_ns": 12030.0, "ser_max_ns": 15579.0, "ser_p5_ns": 12580.95, "ser_p25_ns": 13724.0, "ser_p50_ns": 14342.0, "ser_p75_ns": 14811.25, "ser_p95_ns": 15111.2, "ser_p99_ns": 15574.38, "ser_ci_low_ns": 14033.564423076923, "ser_ci_high_ns": 14370.553525641026, "deser_mean_ns": 16456.0, "deser_median_ns": 16439.5, "deser_std_ns": 1188.553830414175, "deser_mad_ns": 770.0, "deser_cv": 0.07222616859590271, "deser_min_ns": 13492.0, "deser_max_ns": 19825.0, "deser_p5_ns": 14515.85, "deser_p25_ns": 15681.75, "deser_p50_ns": 16439.5, "deser_p75_ns": 17212.25, "deser_p95_ns": 18372.2, "deser_p99_ns": 19302.940000000002, "deser_ci_low_ns": 16182.409615384617, "deser_ci_high_ns": 16723.154166666667, "total_mean_ns": 30659.5641025641, "total_median_ns": 30761.5, "total_std_ns": 1815.5399296344974, "total_mad_ns": 1237.5, "total_cv": 0.05921610377633064, "total_min_ns": 25522.0, "total_max_ns": 35398.0, "total_p5_ns": 27307.0, "total_p25_ns": 29475.0, "total_p50_ns": 30761.5, "total_p75_ns": 31902.0, "total_p95_ns": 33091.65, "total_p99_ns": 34512.50000000001, "total_ci_low_ns": 30265.81057692308, "total_ci_high_ns": 31075.268269230768, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 18.13039954088435}, {"serializer": "Yams", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "5.4.0", "avg_time_ser_ns": 143396.82352941178, "avg_time_deser_ns": 86913.56470588235, "avg_time_total_ns": 230310.38823529411, "median_size_bytes": 227.0, "avg_ops_per_sec": 4341.966542031794, "min_ops_per_sec": 4024.209645225678, "max_ops_per_sec": 4575.988871195065, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 143396.82352941178, "ser_median_ns": 143205.0, "ser_std_ns": 4560.859970539366, "ser_mad_ns": 3119.0, "ser_cv": 0.03180586472059403, "ser_min_ns": 134375.0, "ser_max_ns": 157907.0, "ser_p5_ns": 136701.4, "ser_p25_ns": 140242.0, "ser_p50_ns": 143205.0, "ser_p75_ns": 146350.0, "ser_p95_ns": 150351.0, "ser_p99_ns": 156132.91999999998, "ser_ci_low_ns": 142432.68941176473, "ser_ci_high_ns": 144404.37205882353, "deser_mean_ns": 86913.56470588235, "deser_median_ns": 86464.0, "deser_std_ns": 2721.516329124607, "deser_mad_ns": 1551.0, "deser_cv": 0.03131290654495976, "deser_min_ns": 82023.0, "deser_max_ns": 93757.0, "deser_p5_ns": 83530.6, "deser_p25_ns": 85025.0, "deser_p50_ns": 86464.0, "deser_p75_ns": 88809.0, "deser_p95_ns": 92491.0, "deser_p99_ns": 93724.24, "deser_ci_low_ns": 86372.84794117647, "deser_ci_high_ns": 87519.35647058823, "total_mean_ns": 230310.38823529411, "total_median_ns": 230146.0, "total_std_ns": 6270.354032486291, "total_mad_ns": 4521.0, "total_cv": 0.027225667415749617, "total_min_ns": 218532.0, "total_max_ns": 248496.0, "total_p5_ns": 220360.2, "total_p25_ns": 225625.0, "total_p50_ns": 230146.0, "total_p75_ns": 234645.0, "total_p95_ns": 240768.0, "total_p99_ns": 244049.03999999998, "total_ci_low_ns": 228923.7276470588, "total_ci_high_ns": 231691.7694117647, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 48.75245835124167}, {"serializer": "SwiftProtobuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "1.38.1", "avg_time_ser_ns": 3809.6315789473683, "avg_time_deser_ns": 3111.565789473684, "avg_time_total_ns": 6921.1973684210525, "median_size_bytes": 123.0, "avg_ops_per_sec": 144483.67049358285, "min_ops_per_sec": 132205.18244315177, "max_ops_per_sec": 159846.547314578, "runs": 76, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 23, "ser_mean_ns": 3809.6315789473683, "ser_median_ns": 3793.0, "ser_std_ns": 162.83593723788476, "ser_mad_ns": 102.5, "ser_cv": 0.04274322434162456, "ser_min_ns": 3487.0, "ser_max_ns": 4277.0, "ser_p5_ns": 3551.75, "ser_p25_ns": 3694.5, "ser_p50_ns": 3793.0, "ser_p75_ns": 3902.5, "ser_p95_ns": 4071.0, "ser_p99_ns": 4237.25, "ser_ci_low_ns": 3773.2730263157896, "ser_ci_high_ns": 3847.672039473684, "deser_mean_ns": 3111.565789473684, "deser_median_ns": 3118.0, "deser_std_ns": 111.23145065149104, "deser_mad_ns": 70.0, "deser_cv": 0.03574774186931321, "deser_min_ns": 2726.0, "deser_max_ns": 3336.0, "deser_p5_ns": 2952.0, "deser_p25_ns": 3046.5, "deser_p50_ns": 3118.0, "deser_p75_ns": 3187.5, "deser_p95_ns": 3289.25, "deser_p99_ns": 3324.0, "deser_ci_low_ns": 3086.336513157895, "deser_ci_high_ns": 3135.540789473684, "total_mean_ns": 6921.1973684210525, "total_median_ns": 6913.0, "total_std_ns": 236.58887095476223, "total_mad_ns": 165.5, "total_cv": 0.03418322847347666, "total_min_ns": 6256.0, "total_max_ns": 7564.0, "total_p5_ns": 6523.75, "total_p25_ns": 6765.0, "total_p50_ns": 6913.0, "total_p75_ns": 7086.0, "total_p95_ns": 7310.75, "total_p99_ns": 7425.25, "total_ci_low_ns": 6868.728947368421, "total_ci_high_ns": 6974.899013157895, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "IkigaJSON", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "2.5.3", "avg_time_ser_ns": 12228.689655172413, "avg_time_deser_ns": 17419.97701149425, "avg_time_total_ns": 29648.666666666668, "median_size_bytes": 257.0, "avg_ops_per_sec": 33728.32954826524, "min_ops_per_sec": 30149.541726965752, "max_ops_per_sec": 37167.81267422412, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 12228.689655172413, "ser_median_ns": 12047.0, "ser_std_ns": 1135.4072449427492, "ser_mad_ns": 720.0, "ser_cv": 0.09284782564275003, "ser_min_ns": 10225.0, "ser_max_ns": 15285.0, "ser_p5_ns": 10829.6, "ser_p25_ns": 11451.5, "ser_p50_ns": 12047.0, "ser_p75_ns": 12844.0, "ser_p95_ns": 14624.8, "ser_p99_ns": 15173.2, "ser_ci_low_ns": 11987.203448275863, "ser_ci_high_ns": 12471.86091954023, "deser_mean_ns": 17419.97701149425, "deser_median_ns": 17407.0, "deser_std_ns": 580.3141486240798, "deser_mad_ns": 349.0, "deser_cv": 0.033313140898014404, "deser_min_ns": 15848.0, "deser_max_ns": 18535.0, "deser_p5_ns": 16510.3, "deser_p25_ns": 17074.0, "deser_p50_ns": 17407.0, "deser_p75_ns": 17777.0, "deser_p95_ns": 18360.6, "deser_p99_ns": 18525.54, "deser_ci_low_ns": 17294.60114942529, "deser_ci_high_ns": 17538.95172413793, "total_mean_ns": 29648.666666666668, "total_median_ns": 29648.0, "total_std_ns": 1285.523218668739, "total_mad_ns": 779.0, "total_cv": 0.043358550761205865, "total_min_ns": 26905.0, "total_max_ns": 33168.0, "total_p5_ns": 27767.8, "total_p25_ns": 28787.0, "total_p50_ns": 29648.0, "total_p75_ns": 30331.5, "total_p95_ns": 31981.7, "total_p99_ns": 32511.82, "total_ci_low_ns": 29381.819827586205, "total_ci_high_ns": 29910.616666666665, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.729168868425965}, {"serializer": "FlatBuffers", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "24.3.25", "avg_time_ser_ns": 5677.064935064935, "avg_time_deser_ns": 3649.753246753247, "avg_time_total_ns": 9326.818181818182, "median_size_bytes": 296.0, "avg_ops_per_sec": 107217.70066767387, "min_ops_per_sec": 96274.1888899586, "max_ops_per_sec": 117481.2030075188, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 5677.064935064935, "ser_median_ns": 5678.0, "ser_std_ns": 189.89500822562158, "ser_mad_ns": 102.0, "ser_cv": 0.03344950434734627, "ser_min_ns": 5164.0, "ser_max_ns": 6280.0, "ser_p5_ns": 5401.2, "ser_p25_ns": 5573.0, "ser_p50_ns": 5678.0, "ser_p75_ns": 5780.0, "ser_p95_ns": 5942.400000000001, "ser_p99_ns": 6144.719999999999, "ser_ci_low_ns": 5634.862987012987, "ser_ci_high_ns": 5719.507792207793, "deser_mean_ns": 3649.753246753247, "deser_median_ns": 3640.0, "deser_std_ns": 229.87268534904936, "deser_mad_ns": 175.0, "deser_cv": 0.0629830757883536, "deser_min_ns": 3194.0, "deser_max_ns": 4107.0, "deser_p5_ns": 3294.0, "deser_p25_ns": 3499.0, "deser_p50_ns": 3640.0, "deser_p75_ns": 3840.0, "deser_p95_ns": 4005.2000000000003, "deser_p99_ns": 4090.2799999999997, "deser_ci_low_ns": 3597.660714285714, "deser_ci_high_ns": 3701.9795454545456, "total_mean_ns": 9326.818181818182, "total_median_ns": 9301.0, "total_std_ns": 373.4587882312813, "total_mad_ns": 282.0, "total_cv": 0.04004139256829372, "total_min_ns": 8512.0, "total_max_ns": 10387.0, "total_p5_ns": 8702.4, "total_p25_ns": 9068.0, "total_p50_ns": 9301.0, "total_p75_ns": 9638.0, "total_p95_ns": 9837.4, "total_p99_ns": 10001.679999999997, "total_ci_low_ns": 9247.788961038961, "total_ci_high_ns": 9409.452272727272, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 7.646267529613975}, {"serializer": "SwiftCbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "0.0.4", "avg_time_ser_ns": 27535.268292682926, "avg_time_deser_ns": 19552.353658536584, "avg_time_total_ns": 47087.62195121951, "median_size_bytes": 199.0, "avg_ops_per_sec": 21237.00366597301, "min_ops_per_sec": 20031.248748046954, "max_ops_per_sec": 22885.913720105276, "runs": 82, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 17, "ser_mean_ns": 27535.268292682926, "ser_median_ns": 27616.5, "ser_std_ns": 927.6044288990316, "ser_mad_ns": 564.0, "ser_cv": 0.033687866013839725, "ser_min_ns": 25259.0, "ser_max_ns": 29593.0, "ser_p5_ns": 25582.85, "ser_p25_ns": 27026.5, "ser_p50_ns": 27616.5, "ser_p75_ns": 28105.75, "ser_p95_ns": 28800.55, "ser_p99_ns": 29477.17, "ser_ci_low_ns": 27336.01981707317, "ser_ci_high_ns": 27733.866463414633, "deser_mean_ns": 19552.353658536584, "deser_median_ns": 19626.5, "deser_std_ns": 541.1598511462419, "deser_mad_ns": 339.5, "deser_cv": 0.027677478660476804, "deser_min_ns": 18132.0, "deser_max_ns": 21036.0, "deser_p5_ns": 18665.95, "deser_p25_ns": 19120.75, "deser_p50_ns": 19626.5, "deser_p75_ns": 19852.25, "deser_p95_ns": 20324.65, "deser_p99_ns": 20693.37, "deser_ci_low_ns": 19433.44756097561, "deser_ci_high_ns": 19665.27195121951, "total_mean_ns": 47087.62195121951, "total_median_ns": 47285.0, "total_std_ns": 1354.5181243312413, "total_mad_ns": 764.5, "total_cv": 0.02876590637204946, "total_min_ns": 43695.0, "total_max_ns": 49922.0, "total_p5_ns": 44401.4, "total_p25_ns": 46371.75, "total_p50_ns": 47285.0, "total_p75_ns": 47916.75, "total_p95_ns": 49164.85, "total_p99_ns": 49751.09, "total_ci_low_ns": 46787.95914634146, "total_ci_high_ns": 47382.31493902439, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 40.38803711334461}, {"serializer": "BinaryCodable", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "4.0.0", "avg_time_ser_ns": 25323.428571428572, "avg_time_deser_ns": 18889.916666666668, "avg_time_total_ns": 44213.34523809524, "median_size_bytes": 197.0, "avg_ops_per_sec": 22617.60549026218, "min_ops_per_sec": 20310.75454453133, "max_ops_per_sec": 24822.51898922703, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 25323.428571428572, "ser_median_ns": 25358.0, "ser_std_ns": 1094.14282107446, "ser_mad_ns": 696.5, "ser_cv": 0.04320674106147452, "ser_min_ns": 23087.0, "ser_max_ns": 28805.0, "ser_p5_ns": 23500.15, "ser_p25_ns": 24638.5, "ser_p50_ns": 25358.0, "ser_p75_ns": 25907.5, "ser_p95_ns": 26933.85, "ser_p99_ns": 28340.2, "ser_ci_low_ns": 25087.322023809524, "ser_ci_high_ns": 25547.146726190476, "deser_mean_ns": 18889.916666666668, "deser_median_ns": 18881.0, "deser_std_ns": 784.8744080076643, "deser_mad_ns": 515.5, "deser_cv": 0.04154991373745239, "deser_min_ns": 17199.0, "deser_max_ns": 20976.0, "deser_p5_ns": 17572.9, "deser_p25_ns": 18366.75, "deser_p50_ns": 18881.0, "deser_p75_ns": 19375.5, "deser_p95_ns": 20166.399999999998, "deser_p99_ns": 20882.21, "deser_ci_low_ns": 18719.680357142857, "deser_ci_high_ns": 19056.95, "total_mean_ns": 44213.34523809524, "total_median_ns": 44332.0, "total_std_ns": 1747.071542828222, "total_mad_ns": 1077.5, "total_cv": 0.03951457491895241, "total_min_ns": 40286.0, "total_max_ns": 49235.0, "total_p5_ns": 41228.55, "total_p25_ns": 43134.75, "total_p50_ns": 44332.0, "total_p75_ns": 45278.5, "total_p95_ns": 46719.65, "total_p99_ns": 48488.83, "total_ci_low_ns": 43838.36607142857, "total_ci_high_ns": 44574.61696428571, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.070842461067024}, {"serializer": "CapnProto", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "bytes", "language": "swift", "serializer_version": "capnproto-1.0.2", "avg_time_ser_ns": 15040.675675675675, "avg_time_deser_ns": 9482.918918918918, "avg_time_total_ns": 24523.594594594593, "median_size_bytes": 256.0, "avg_ops_per_sec": 40777.05640348567, "min_ops_per_sec": 32837.48727547368, "max_ops_per_sec": 47303.689687795646, "runs": 74, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 25, "ser_mean_ns": 15040.675675675675, "ser_median_ns": 14832.0, "ser_std_ns": 1602.85803905799, "ser_mad_ns": 928.5, "ser_cv": 0.10656822031274765, "ser_min_ns": 12384.0, "ser_max_ns": 20046.0, "ser_p5_ns": 12987.05, "ser_p25_ns": 13983.0, "ser_p50_ns": 14832.0, "ser_p75_ns": 15848.75, "ser_p95_ns": 18480.399999999998, "ser_p99_ns": 20020.45, "ser_ci_low_ns": 14685.879054054054, "ser_ci_high_ns": 15400.844594594593, "deser_mean_ns": 9482.918918918918, "deser_median_ns": 9505.5, "deser_std_ns": 380.2958025608363, "deser_mad_ns": 279.0, "deser_cv": 0.04010324308500902, "deser_min_ns": 8575.0, "deser_max_ns": 10536.0, "deser_p5_ns": 8904.6, "deser_p25_ns": 9216.25, "deser_p50_ns": 9505.5, "deser_p75_ns": 9706.25, "deser_p95_ns": 10022.949999999999, "deser_p99_ns": 10441.83, "deser_ci_low_ns": 9402.325337837838, "deser_ci_high_ns": 9565.610135135135, "total_mean_ns": 24523.594594594593, "total_median_ns": 24332.0, "total_std_ns": 1855.5773160557853, "total_mad_ns": 1165.5, "total_cv": 0.07566498087783531, "total_min_ns": 21140.0, "total_max_ns": 30453.0, "total_p5_ns": 21969.3, "total_p25_ns": 23238.75, "total_p50_ns": 24332.0, "total_p75_ns": 25551.75, "total_p95_ns": 28286.7, "total_p99_ns": 29903.309999999998, "total_ci_low_ns": 24108.792567567565, "total_ci_high_ns": 24948.89391891892, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 13.327699522814653}, {"serializer": "Yams", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "5.4.0", "avg_time_ser_ns": 161485.61627906977, "avg_time_deser_ns": 86787.05813953489, "avg_time_total_ns": 248272.67441860464, "median_size_bytes": 227.0, "avg_ops_per_sec": 4027.829491673868, "min_ops_per_sec": 3755.9108647233584, "max_ops_per_sec": 4329.154256424465, "runs": 86, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 13, "ser_mean_ns": 161485.61627906977, "ser_median_ns": 161295.0, "ser_std_ns": 4516.334680373415, "ser_mad_ns": 2516.5, "ser_cv": 0.0279674114911173, "ser_min_ns": 150801.0, "ser_max_ns": 172526.0, "ser_p5_ns": 153470.5, "ser_p25_ns": 158998.0, "ser_p50_ns": 161295.0, "ser_p75_ns": 164052.25, "ser_p95_ns": 169737.25, "ser_p99_ns": 171611.4, "ser_ci_low_ns": 160562.26831395348, "ser_ci_high_ns": 162429.64941860468, "deser_mean_ns": 86787.05813953489, "deser_median_ns": 86485.0, "deser_std_ns": 3063.8789768552087, "deser_mad_ns": 1579.0, "deser_cv": 0.03530340862492599, "deser_min_ns": 80191.0, "deser_max_ns": 94856.0, "deser_p5_ns": 81427.0, "deser_p25_ns": 85434.0, "deser_p50_ns": 86485.0, "deser_p75_ns": 88201.75, "deser_p95_ns": 91976.75, "deser_p99_ns": 93892.1, "deser_ci_low_ns": 86161.9761627907, "deser_ci_high_ns": 87439.33662790697, "total_mean_ns": 248272.67441860464, "total_median_ns": 248225.5, "total_std_ns": 6971.4459390419825, "total_mad_ns": 3678.0, "total_cv": 0.028079795552883317, "total_min_ns": 230992.0, "total_max_ns": 266247.0, "total_p5_ns": 234943.75, "total_p25_ns": 244696.75, "total_p50_ns": 248225.5, "total_p75_ns": 252134.75, "total_p95_ns": 259401.0, "total_p99_ns": 263889.10000000003, "total_ci_low_ns": 246760.27674418603, "total_ci_high_ns": 249703.1636627907, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 45.8298634575211}, {"serializer": "BinaryCodable", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "4.0.0", "avg_time_ser_ns": 41674.666666666664, "avg_time_deser_ns": 20567.563218390806, "avg_time_total_ns": 62242.22988505747, "median_size_bytes": 197.0, "avg_ops_per_sec": 16066.262437041487, "min_ops_per_sec": 14342.263782915496, "max_ops_per_sec": 17604.084147522226, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 41674.666666666664, "ser_median_ns": 41090.0, "ser_std_ns": 1929.4337744329243, "ser_mad_ns": 1034.0, "ser_cv": 0.04629752146226943, "ser_min_ns": 38562.0, "ser_max_ns": 47190.0, "ser_p5_ns": 39474.3, "ser_p25_ns": 40195.5, "ser_p50_ns": 41090.0, "ser_p75_ns": 42580.0, "ser_p95_ns": 45520.1, "ser_p99_ns": 46346.340000000004, "ser_ci_low_ns": 41279.785632183906, "ser_ci_high_ns": 42085.24224137931, "deser_mean_ns": 20567.563218390806, "deser_median_ns": 20331.0, "deser_std_ns": 1024.849582850377, "deser_mad_ns": 549.0, "deser_cv": 0.049828439663381796, "deser_min_ns": 18243.0, "deser_max_ns": 23515.0, "deser_p5_ns": 19330.6, "deser_p25_ns": 19907.5, "deser_p50_ns": 20331.0, "deser_p75_ns": 20996.5, "deser_p95_ns": 22764.2, "deser_p99_ns": 23506.4, "deser_ci_low_ns": 20363.36091954023, "deser_ci_high_ns": 20775.795689655173, "total_mean_ns": 62242.22988505747, "total_median_ns": 61594.0, "total_std_ns": 2720.7869872996835, "total_mad_ns": 1655.0, "total_cv": 0.04371287777324418, "total_min_ns": 56805.0, "total_max_ns": 69724.0, "total_p5_ns": 59153.6, "total_p25_ns": 60214.5, "total_p50_ns": 61594.0, "total_p75_ns": 63678.5, "total_p95_ns": 67622.1, "total_p99_ns": 69015.36, "total_ci_low_ns": 61699.94396551724, "total_ci_high_ns": 62829.700287356325, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 21.853607675550514}, {"serializer": "Foundation.JSONEncoder", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 33255.90909090909, "avg_time_deser_ns": 16983.454545454544, "avg_time_total_ns": 50239.36363636364, "median_size_bytes": 257.0, "avg_ops_per_sec": 19904.71072122005, "min_ops_per_sec": 18179.50442670933, "max_ops_per_sec": 21497.054903478223, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 33255.90909090909, "ser_median_ns": 33210.0, "ser_std_ns": 1009.5785361100753, "ser_mad_ns": 614.0, "ser_cv": 0.030357869133881416, "ser_min_ns": 30792.0, "ser_max_ns": 36306.0, "ser_p5_ns": 31861.0, "ser_p25_ns": 32610.0, "ser_p50_ns": 33210.0, "ser_p75_ns": 33824.0, "ser_p95_ns": 35103.4, "ser_p99_ns": 35624.28, "ser_ci_low_ns": 33037.7211038961, "ser_ci_high_ns": 33474.03831168831, "deser_mean_ns": 16983.454545454544, "deser_median_ns": 16896.0, "deser_std_ns": 831.1044418732434, "deser_mad_ns": 409.0, "deser_cv": 0.04893612425251142, "deser_min_ns": 15037.0, "deser_max_ns": 19376.0, "deser_p5_ns": 15704.2, "deser_p25_ns": 16487.0, "deser_p50_ns": 16896.0, "deser_p75_ns": 17285.0, "deser_p95_ns": 18685.8, "deser_p99_ns": 18984.6, "deser_ci_low_ns": 16801.872727272726, "deser_ci_high_ns": 17168.74577922078, "total_mean_ns": 50239.36363636364, "total_median_ns": 49990.0, "total_std_ns": 1659.874336628267, "total_mad_ns": 950.0, "total_cv": 0.03303931850416268, "total_min_ns": 46518.0, "total_max_ns": 55007.0, "total_p5_ns": 47565.2, "total_p25_ns": 49282.0, "total_p50_ns": 49990.0, "total_p75_ns": 51293.0, "total_p95_ns": 53324.200000000004, "total_p99_ns": 54280.439999999995, "total_ci_low_ns": 49890.18668831169, "total_ci_high_ns": 50595.40779220779, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 25.431404230499187}, {"serializer": "XMLCoder", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "0.18.2", "avg_time_ser_ns": 122829.63333333333, "avg_time_deser_ns": 118149.61111111111, "avg_time_total_ns": 240979.24444444446, "median_size_bytes": 376.0, "avg_ops_per_sec": 4149.734979480943, "min_ops_per_sec": 3853.0003313580287, "max_ops_per_sec": 4471.771939631079, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 122829.63333333333, "ser_median_ns": 122695.0, "ser_std_ns": 3777.3961706891537, "ser_mad_ns": 2632.0, "ser_cv": 0.030753133980609623, "ser_min_ns": 114730.0, "ser_max_ns": 132327.0, "ser_p5_ns": 117078.8, "ser_p25_ns": 120153.25, "ser_p50_ns": 122695.0, "ser_p75_ns": 125515.5, "ser_p95_ns": 129033.55, "ser_p99_ns": 131471.71, "ser_ci_low_ns": 122020.52777777778, "ser_ci_high_ns": 123607.6738888889, "deser_mean_ns": 118149.61111111111, "deser_median_ns": 117817.0, "deser_std_ns": 4613.927279114161, "deser_mad_ns": 2714.5, "deser_cv": 0.039051565517004526, "deser_min_ns": 108263.0, "deser_max_ns": 130031.0, "deser_p5_ns": 111335.15, "deser_p25_ns": 114905.25, "deser_p50_ns": 117817.0, "deser_p75_ns": 120103.25, "deser_p95_ns": 127527.25, "deser_p99_ns": 128770.76, "deser_ci_low_ns": 117225.10888888889, "deser_ci_high_ns": 119081.70611111111, "total_mean_ns": 240979.24444444446, "total_median_ns": 240011.5, "total_std_ns": 7455.2470419449855, "total_mad_ns": 4722.0, "total_cv": 0.03093729943063094, "total_min_ns": 223625.0, "total_max_ns": 259538.0, "total_p5_ns": 230106.45, "total_p25_ns": 236038.5, "total_p50_ns": 240011.5, "total_p75_ns": 246090.0, "total_p95_ns": 255072.65, "total_p99_ns": 258689.83, "total_ci_low_ns": 239440.17500000002, "total_ci_high_ns": 242471.19222222222, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 41.07206287702552}, {"serializer": "SwiftBSON", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "3.1.0", "avg_time_ser_ns": 49178.04705882353, "avg_time_deser_ns": 39233.623529411765, "avg_time_total_ns": 88411.6705882353, "median_size_bytes": 291.0, "avg_ops_per_sec": 11310.723950205136, "min_ops_per_sec": 10315.978418973147, "max_ops_per_sec": 12475.361161705632, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 49178.04705882353, "ser_median_ns": 49006.0, "ser_std_ns": 2012.78042060445, "ser_mad_ns": 1110.0, "ser_cv": 0.04092843333524194, "ser_min_ns": 44792.0, "ser_max_ns": 54203.0, "ser_p5_ns": 46057.8, "ser_p25_ns": 47934.0, "ser_p50_ns": 49006.0, "ser_p75_ns": 50278.0, "ser_p95_ns": 53226.4, "ser_p99_ns": 53917.4, "ser_ci_low_ns": 48752.72352941176, "ser_ci_high_ns": 49605.699705882354, "deser_mean_ns": 39233.623529411765, "deser_median_ns": 39242.0, "deser_std_ns": 1583.6608431436457, "deser_mad_ns": 842.0, "deser_cv": 0.04036488860011727, "deser_min_ns": 35061.0, "deser_max_ns": 43635.0, "deser_p5_ns": 36807.0, "deser_p25_ns": 38342.0, "deser_p50_ns": 39242.0, "deser_p75_ns": 40041.0, "deser_p95_ns": 42067.6, "deser_p99_ns": 42878.159999999996, "deser_ci_low_ns": 38903.312941176475, "deser_ci_high_ns": 39570.58470588236, "total_mean_ns": 88411.6705882353, "total_median_ns": 88337.0, "total_std_ns": 3276.9795594500165, "total_mad_ns": 1735.0, "total_cv": 0.037065011187403976, "total_min_ns": 80158.0, "total_max_ns": 96937.0, "total_p5_ns": 82426.2, "total_p25_ns": 86791.0, "total_p50_ns": 88337.0, "total_p75_ns": 90359.0, "total_p95_ns": 93468.2, "total_p99_ns": 95939.92, "total_ci_low_ns": 87720.1288235294, "total_ci_high_ns": 89088.26382352941, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 29.348247090635976}, {"serializer": "SwiftAvroCore", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "2.3.0", "avg_time_ser_ns": 72564.86419753087, "avg_time_deser_ns": 19414.876543209877, "avg_time_total_ns": 91979.74074074074, "median_size_bytes": 105.0, "avg_ops_per_sec": 10871.959324376181, "min_ops_per_sec": 9874.690181595552, "max_ops_per_sec": 12108.149995762147, "runs": 81, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 18, "ser_mean_ns": 72564.86419753087, "ser_median_ns": 72348.0, "ser_std_ns": 3015.8273066983065, "ser_mad_ns": 1890.0, "ser_cv": 0.04156043479236504, "ser_min_ns": 64405.0, "ser_max_ns": 80951.0, "ser_p5_ns": 68736.0, "ser_p25_ns": 70413.0, "ser_p50_ns": 72348.0, "ser_p75_ns": 74150.0, "ser_p95_ns": 78498.0, "ser_p99_ns": 80611.8, "ser_ci_low_ns": 71909.55401234569, "ser_ci_high_ns": 73245.56820987654, "deser_mean_ns": 19414.876543209877, "deser_median_ns": 19367.0, "deser_std_ns": 602.1293545143777, "deser_mad_ns": 344.0, "deser_cv": 0.031013813205264255, "deser_min_ns": 18130.0, "deser_max_ns": 20853.0, "deser_p5_ns": 18419.0, "deser_p25_ns": 19091.0, "deser_p50_ns": 19367.0, "deser_p75_ns": 19849.0, "deser_p95_ns": 20330.0, "deser_p99_ns": 20843.4, "deser_ci_low_ns": 19289.492901234567, "deser_ci_high_ns": 19549.350925925926, "total_mean_ns": 91979.74074074074, "total_median_ns": 92080.0, "total_std_ns": 3395.2663694391404, "total_mad_ns": 2257.0, "total_cv": 0.03691319786396472, "total_min_ns": 82589.0, "total_max_ns": 101269.0, "total_p5_ns": 87630.0, "total_p25_ns": 89626.0, "total_p50_ns": 92080.0, "total_p75_ns": 93897.0, "total_p95_ns": 98473.0, "total_p99_ns": 101120.2, "total_ci_low_ns": 91251.98425925926, "total_ci_high_ns": 92677.2262345679, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.14153592769356}, {"serializer": "SwiftCbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "0.0.4", "avg_time_ser_ns": 43205.623529411765, "avg_time_deser_ns": 21407.44705882353, "avg_time_total_ns": 64613.07058823529, "median_size_bytes": 199.0, "avg_ops_per_sec": 15476.744734401764, "min_ops_per_sec": 14266.55633863098, "max_ops_per_sec": 17012.878749213156, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 43205.623529411765, "ser_median_ns": 43155.0, "ser_std_ns": 1849.3201001376447, "ser_mad_ns": 1001.0, "ser_cv": 0.04280276383185952, "ser_min_ns": 38880.0, "ser_max_ns": 48149.0, "ser_p5_ns": 40478.0, "ser_p25_ns": 42120.0, "ser_p50_ns": 43155.0, "ser_p75_ns": 43987.0, "ser_p95_ns": 47112.0, "ser_p99_ns": 47803.76, "ser_ci_low_ns": 42812.68205882353, "ser_ci_high_ns": 43594.26176470588, "deser_mean_ns": 21407.44705882353, "deser_median_ns": 21419.0, "deser_std_ns": 675.2559216059237, "deser_mad_ns": 430.0, "deser_cv": 0.03154303825909044, "deser_min_ns": 19663.0, "deser_max_ns": 23205.0, "deser_p5_ns": 20397.6, "deser_p25_ns": 20989.0, "deser_p50_ns": 21419.0, "deser_p75_ns": 21839.0, "deser_p95_ns": 22427.0, "deser_p99_ns": 22926.12, "deser_ci_low_ns": 21264.51088235294, "deser_ci_high_ns": 21554.559999999998, "total_mean_ns": 64613.07058823529, "total_median_ns": 64588.0, "total_std_ns": 2400.930116336044, "total_mad_ns": 1409.0, "total_cv": 0.03715858253567048, "total_min_ns": 58779.0, "total_max_ns": 70094.0, "total_p5_ns": 61248.8, "total_p25_ns": 63040.0, "total_p50_ns": 64588.0, "total_p75_ns": 65857.0, "total_p95_ns": 69081.2, "total_p99_ns": 69999.92, "total_ci_low_ns": 64132.66794117647, "total_ci_high_ns": 65131.141764705884, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.017420073954728}, {"serializer": "TOML", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "2.0.0", "avg_time_ser_ns": 98018.14606741573, "avg_time_deser_ns": 28939.011235955055, "avg_time_total_ns": 126957.15730337078, "median_size_bytes": 282.0, "avg_ops_per_sec": 7876.672896908424, "min_ops_per_sec": 7211.3131080038365, "max_ops_per_sec": 8658.233547191701, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 98018.14606741573, "ser_median_ns": 98074.0, "ser_std_ns": 3270.2682005336897, "ser_mad_ns": 2164.0, "ser_cv": 0.03336390588620639, "ser_min_ns": 88980.0, "ser_max_ns": 106749.0, "ser_p5_ns": 93532.4, "ser_p25_ns": 95624.0, "ser_p50_ns": 98074.0, "ser_p75_ns": 99470.0, "ser_p95_ns": 103363.2, "ser_p99_ns": 106562.44, "ser_ci_low_ns": 97366.875, "ser_ci_high_ns": 98721.32443820225, "deser_mean_ns": 28939.011235955055, "deser_median_ns": 28438.0, "deser_std_ns": 1904.43728562332, "deser_mad_ns": 1063.0, "deser_cv": 0.06580865082415692, "deser_min_ns": 25003.0, "deser_max_ns": 35078.0, "deser_p5_ns": 26539.0, "deser_p25_ns": 27742.0, "deser_p50_ns": 28438.0, "deser_p75_ns": 29828.0, "deser_p95_ns": 32606.8, "deser_p99_ns": 33900.560000000005, "deser_ci_low_ns": 28538.08146067416, "deser_ci_high_ns": 29364.77584269663, "total_mean_ns": 126957.15730337078, "total_median_ns": 126780.0, "total_std_ns": 4338.123620086947, "total_mad_ns": 3085.0, "total_cv": 0.034169980741777115, "total_min_ns": 115497.0, "total_max_ns": 138671.0, "total_p5_ns": 121258.4, "total_p25_ns": 123695.0, "total_p50_ns": 126780.0, "total_p75_ns": 129793.0, "total_p95_ns": 135021.4, "total_p99_ns": 138370.04, "total_ci_low_ns": 126037.18539325842, "total_ci_high_ns": 127865.73623595506, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 34.28303749002833}, {"serializer": "CapnProto", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "capnproto-1.0.2", "avg_time_ser_ns": 32798.54794520548, "avg_time_deser_ns": 11095.09589041096, "avg_time_total_ns": 43893.643835616436, "median_size_bytes": 256.0, "avg_ops_per_sec": 22782.341874943046, "min_ops_per_sec": 20468.315048305223, "max_ops_per_sec": 24975.648742476085, "runs": 73, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 26, "ser_mean_ns": 32798.54794520548, "ser_median_ns": 32662.0, "ser_std_ns": 1258.1138002879095, "ser_mad_ns": 651.0, "ser_cv": 0.03835882620138437, "ser_min_ns": 29979.0, "ser_max_ns": 37369.0, "ser_p5_ns": 31229.0, "ser_p25_ns": 32041.0, "ser_p50_ns": 32662.0, "ser_p75_ns": 33335.0, "ser_p95_ns": 34858.4, "ser_p99_ns": 36701.56, "ser_ci_low_ns": 32516.534589041094, "ser_ci_high_ns": 33092.755479452055, "deser_mean_ns": 11095.09589041096, "deser_median_ns": 11103.0, "deser_std_ns": 360.3411255857875, "deser_mad_ns": 201.0, "deser_cv": 0.032477513411778236, "deser_min_ns": 10060.0, "deser_max_ns": 12006.0, "deser_p5_ns": 10426.8, "deser_p25_ns": 10916.0, "deser_p50_ns": 11103.0, "deser_p75_ns": 11308.0, "deser_p95_ns": 11621.6, "deser_p99_ns": 11857.68, "deser_ci_low_ns": 11014.90308219178, "deser_ci_high_ns": 11176.786643835616, "total_mean_ns": 43893.643835616436, "total_median_ns": 43902.0, "total_std_ns": 1522.5626457633764, "total_mad_ns": 877.0, "total_cv": 0.034687542721799046, "total_min_ns": 40039.0, "total_max_ns": 48856.0, "total_p5_ns": 42024.8, "total_p25_ns": 42826.0, "total_p50_ns": 43902.0, "total_p75_ns": 44743.0, "total_p95_ns": 46332.6, "total_p99_ns": 47986.96, "total_ci_low_ns": 43539.996232876714, "total_ci_high_ns": 44235.65171232876, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 22.110506826696316}, {"serializer": "IkigaJSON", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "2.5.3", "avg_time_ser_ns": 29530.79220779221, "avg_time_deser_ns": 18782.506493506495, "avg_time_total_ns": 48313.2987012987, "median_size_bytes": 257.0, "avg_ops_per_sec": 20698.23479002313, "min_ops_per_sec": 19278.9666473877, "max_ops_per_sec": 22144.960914143987, "runs": 77, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 22, "ser_mean_ns": 29530.79220779221, "ser_median_ns": 29417.0, "ser_std_ns": 834.7523165217827, "ser_mad_ns": 467.0, "ser_cv": 0.02826718330643087, "ser_min_ns": 27982.0, "ser_max_ns": 32148.0, "ser_p5_ns": 28517.6, "ser_p25_ns": 28975.0, "ser_p50_ns": 29417.0, "ser_p75_ns": 29932.0, "ser_p95_ns": 30926.4, "ser_p99_ns": 32130.52, "ser_ci_low_ns": 29356.89025974026, "ser_ci_high_ns": 29726.124025974026, "deser_mean_ns": 18782.506493506495, "deser_median_ns": 18792.0, "deser_std_ns": 729.8765509060712, "deser_mad_ns": 361.0, "deser_cv": 0.03885937966577596, "deser_min_ns": 17153.0, "deser_max_ns": 20667.0, "deser_p5_ns": 17462.4, "deser_p25_ns": 18487.0, "deser_p50_ns": 18792.0, "deser_p75_ns": 19184.0, "deser_p95_ns": 19915.2, "deser_p99_ns": 20611.52, "deser_ci_low_ns": 18624.202597402596, "deser_ci_high_ns": 18943.11753246753, "total_mean_ns": 48313.2987012987, "total_median_ns": 48219.0, "total_std_ns": 1370.479334748239, "total_mad_ns": 893.0, "total_cv": 0.028366503045493752, "total_min_ns": 45157.0, "total_max_ns": 51870.0, "total_p5_ns": 46283.2, "total_p25_ns": 47344.0, "total_p50_ns": 48219.0, "total_p75_ns": 49112.0, "total_p95_ns": 50596.4, "total_p99_ns": 51762.84, "total_ci_low_ns": 48017.36396103896, "total_ci_high_ns": 48604.533441558444, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 27.95453239103669}, {"serializer": "SwiftMsgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "1.2.1", "avg_time_ser_ns": 41002.02352941177, "avg_time_deser_ns": 22049.164705882355, "avg_time_total_ns": 63051.18823529412, "median_size_bytes": 199.0, "avg_ops_per_sec": 15860.129332824068, "min_ops_per_sec": 14353.79227191824, "max_ops_per_sec": 17157.073003345628, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 41002.02352941177, "ser_median_ns": 40844.0, "ser_std_ns": 1331.9482506077024, "ser_mad_ns": 756.0, "ser_cv": 0.03248493942383753, "ser_min_ns": 37967.0, "ser_max_ns": 44579.0, "ser_p5_ns": 39178.6, "ser_p25_ns": 40127.0, "ser_p50_ns": 40844.0, "ser_p75_ns": 41618.0, "ser_p95_ns": 43515.0, "ser_p99_ns": 44443.76, "ser_ci_low_ns": 40735.47588235294, "ser_ci_high_ns": 41287.513235294115, "deser_mean_ns": 22049.164705882355, "deser_median_ns": 21482.0, "deser_std_ns": 1513.6990551928998, "deser_mad_ns": 543.0, "deser_cv": 0.06865108385666283, "deser_min_ns": 18935.0, "deser_max_ns": 26126.0, "deser_p5_ns": 20368.2, "deser_p25_ns": 21060.0, "deser_p50_ns": 21482.0, "deser_p75_ns": 22773.0, "deser_p95_ns": 24952.4, "deser_p99_ns": 26009.239999999998, "deser_ci_low_ns": 21739.72705882353, "deser_ci_high_ns": 22387.356764705884, "total_mean_ns": 63051.18823529412, "total_median_ns": 62370.0, "total_std_ns": 2525.9839077557276, "total_mad_ns": 1562.0, "total_cv": 0.04006243146963818, "total_min_ns": 58285.0, "total_max_ns": 69668.0, "total_p5_ns": 60093.4, "total_p25_ns": 61529.0, "total_p50_ns": 62370.0, "total_p75_ns": 64540.0, "total_p95_ns": 68201.0, "total_p99_ns": 69332.0, "total_ci_low_ns": 62526.73235294118, "total_ci_high_ns": 63597.3505882353, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 23.981621212501526}, {"serializer": "FlatBuffers", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "24.3.25", "avg_time_ser_ns": 27137.24705882353, "avg_time_deser_ns": 4864.8, "avg_time_total_ns": 32002.04705882353, "median_size_bytes": 296.0, "avg_ops_per_sec": 31248.001046991845, "min_ops_per_sec": 28146.021559852514, "max_ops_per_sec": 33740.46831770025, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 27137.24705882353, "ser_median_ns": 27022.0, "ser_std_ns": 973.1516534519408, "ser_mad_ns": 624.0, "ser_cv": 0.035860367536268783, "ser_min_ns": 25507.0, "ser_max_ns": 30427.0, "ser_p5_ns": 26003.8, "ser_p25_ns": 26411.0, "ser_p50_ns": 27022.0, "ser_p75_ns": 27709.0, "ser_p95_ns": 28949.8, "ser_p99_ns": 30086.8, "ser_ci_low_ns": 26943.66794117647, "ser_ci_high_ns": 27356.944411764704, "deser_mean_ns": 4864.8, "deser_median_ns": 4886.0, "deser_std_ns": 266.3958207880396, "deser_mad_ns": 193.0, "deser_cv": 0.05475987107137798, "deser_min_ns": 4107.0, "deser_max_ns": 5447.0, "deser_p5_ns": 4409.6, "deser_p25_ns": 4687.0, "deser_p50_ns": 4886.0, "deser_p75_ns": 5048.0, "deser_p95_ns": 5247.0, "deser_p99_ns": 5361.32, "deser_ci_low_ns": 4808.864411764706, "deser_ci_high_ns": 4919.190588235294, "total_mean_ns": 32002.04705882353, "total_median_ns": 31945.0, "total_std_ns": 1120.2930410205643, "total_mad_ns": 712.0, "total_cv": 0.03500691811874827, "total_min_ns": 29638.0, "total_max_ns": 35529.0, "total_p5_ns": 30533.0, "total_p25_ns": 31159.0, "total_p50_ns": 31945.0, "total_p75_ns": 32573.0, "total_p95_ns": 33930.0, "total_p99_ns": 35392.92, "total_ci_low_ns": 31778.284411764707, "total_ci_high_ns": 32249.79588235294, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 14.718736946079451}, {"serializer": "Foundation.PropertyListEncoder", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 40903.90588235294, "avg_time_deser_ns": 33011.882352941175, "avg_time_total_ns": 73915.78823529412, "median_size_bytes": 264.0, "avg_ops_per_sec": 13528.909369358642, "min_ops_per_sec": 12480.343459051994, "max_ops_per_sec": 15027.42505071756, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 40903.90588235294, "ser_median_ns": 41033.0, "ser_std_ns": 1372.804208836176, "ser_mad_ns": 764.0, "ser_cv": 0.03356168999568428, "ser_min_ns": 37653.0, "ser_max_ns": 44552.0, "ser_p5_ns": 38662.0, "ser_p25_ns": 40047.0, "ser_p50_ns": 41033.0, "ser_p75_ns": 41683.0, "ser_p95_ns": 43677.6, "ser_p99_ns": 44031.2, "ser_ci_low_ns": 40631.41205882353, "ser_ci_high_ns": 41196.94411764706, "deser_mean_ns": 33011.882352941175, "deser_median_ns": 33100.0, "deser_std_ns": 1726.4702389541494, "deser_mad_ns": 1127.0, "deser_cv": 0.052298448797795695, "deser_min_ns": 28892.0, "deser_max_ns": 37925.0, "deser_p5_ns": 30194.6, "deser_p25_ns": 31875.0, "deser_p50_ns": 33100.0, "deser_p75_ns": 34211.0, "deser_p95_ns": 35559.2, "deser_p99_ns": 37644.44, "deser_ci_low_ns": 32648.817941176472, "deser_ci_high_ns": 33396.22794117647, "total_mean_ns": 73915.78823529412, "total_median_ns": 74116.0, "total_std_ns": 2851.502716171972, "total_mad_ns": 1889.0, "total_cv": 0.038577721813570616, "total_min_ns": 66545.0, "total_max_ns": 80126.0, "total_p5_ns": 69045.8, "total_p25_ns": 72020.0, "total_p50_ns": 74116.0, "total_p75_ns": 75804.0, "total_p95_ns": 78631.6, "total_p99_ns": 79628.72, "total_ci_low_ns": 73321.64588235294, "total_ci_high_ns": 74479.46617647058, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 26.58658424968461}, {"serializer": "SwiftProtobuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 1, "mode": "stream", "language": "swift", "serializer_version": "1.38.1", "avg_time_ser_ns": 13776.614457831325, "avg_time_deser_ns": 4464.21686746988, "avg_time_total_ns": 18240.831325301206, "median_size_bytes": 123.0, "avg_ops_per_sec": 54822.062775885424, "min_ops_per_sec": 49554.013875123885, "max_ops_per_sec": 58757.85886362301, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 13776.614457831325, "ser_median_ns": 13684.0, "ser_std_ns": 549.4262823968489, "ser_mad_ns": 354.0, "ser_cv": 0.03988108138458699, "ser_min_ns": 12878.0, "ser_max_ns": 15319.0, "ser_p5_ns": 13060.7, "ser_p25_ns": 13389.0, "ser_p50_ns": 13684.0, "ser_p75_ns": 14093.0, "ser_p95_ns": 14848.9, "ser_p99_ns": 15080.379999999997, "ser_ci_low_ns": 13661.856626506025, "ser_ci_high_ns": 13893.378012048192, "deser_mean_ns": 4464.21686746988, "deser_median_ns": 4442.0, "deser_std_ns": 186.3841462032682, "deser_mad_ns": 112.0, "deser_cv": 0.04175069261563506, "deser_min_ns": 3961.0, "deser_max_ns": 5001.0, "deser_p5_ns": 4201.4, "deser_p25_ns": 4352.5, "deser_p50_ns": 4442.0, "deser_p75_ns": 4587.5, "deser_p95_ns": 4754.5, "deser_p99_ns": 4994.44, "deser_ci_low_ns": 4424.153614457831, "deser_ci_high_ns": 4503.210240963855, "total_mean_ns": 18240.831325301206, "total_median_ns": 18130.0, "total_std_ns": 684.0470640504402, "total_mad_ns": 366.0, "total_cv": 0.03750087108703335, "total_min_ns": 17019.0, "total_max_ns": 20180.0, "total_p5_ns": 17302.0, "total_p25_ns": 17784.0, "total_p50_ns": 18130.0, "total_p75_ns": 18634.5, "total_p95_ns": 19578.3, "total_p99_ns": 20010.26, "total_ci_low_ns": 18103.526204819278, "total_ci_high_ns": 18394.138253012046, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "XMLCoder", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "0.18.2", "avg_time_ser_ns": 7310540.434782608, "avg_time_deser_ns": 8133229.880434782, "avg_time_total_ns": 15443770.31521739, "median_size_bytes": 37564.0, "avg_ops_per_sec": 64.75102773411868, "min_ops_per_sec": 62.56726371895186, "max_ops_per_sec": 66.06021190134172, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 7310540.434782608, "ser_median_ns": 7288774.5, "ser_std_ns": 88212.47008782657, "ser_mad_ns": 53969.0, "ser_cv": 0.012066477283693422, "ser_min_ns": 7192862.0, "ser_max_ns": 7572794.0, "ser_p5_ns": 7204147.7, "ser_p25_ns": 7247783.25, "ser_p50_ns": 7288774.5, "ser_p75_ns": 7354952.5, "ser_p95_ns": 7472335.15, "ser_p99_ns": 7571754.78, "ser_ci_low_ns": 7293045.947282609, "ser_ci_high_ns": 7328782.411141304, "deser_mean_ns": 8133229.880434782, "deser_median_ns": 8101589.0, "deser_std_ns": 133695.57511740827, "deser_mad_ns": 79855.5, "deser_cv": 0.016438189634726177, "deser_min_ns": 7940864.0, "deser_max_ns": 8548785.0, "deser_p5_ns": 7973941.55, "deser_p25_ns": 8032710.5, "deser_p50_ns": 8101589.0, "deser_p75_ns": 8229065.25, "deser_p95_ns": 8348449.85, "deser_p99_ns": 8546267.03, "deser_ci_low_ns": 8107080.567119565, "deser_ci_high_ns": 8162383.646467391, "total_mean_ns": 15443770.31521739, "total_median_ns": 15388949.0, "total_std_ns": 187687.96148786682, "total_mad_ns": 109612.0, "total_cv": 0.012152988399661063, "total_min_ns": 15137705.0, "total_max_ns": 15982799.0, "total_p5_ns": 15211563.65, "total_p25_ns": 15306548.5, "total_p50_ns": 15388949.0, "total_p75_ns": 15545836.25, "total_p95_ns": 15830287.95, "total_p99_ns": 15904942.13, "total_ci_low_ns": 15405472.85027174, "total_ci_high_ns": 15481903.416576087, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 111.37972945859794}, {"serializer": "BinaryCodable", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "4.0.0", "avg_time_ser_ns": 1591135.25, "avg_time_deser_ns": 1147434.956521739, "avg_time_total_ns": 2738570.2065217393, "median_size_bytes": 19845.0, "avg_ops_per_sec": 365.15404922559975, "min_ops_per_sec": 351.92593226059273, "max_ops_per_sec": 375.14837118080203, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 1591135.25, "ser_median_ns": 1585073.0, "ser_std_ns": 31199.417546206332, "ser_mad_ns": 19813.5, "ser_cv": 0.01960827500126487, "ser_min_ns": 1543538.0, "ser_max_ns": 1675729.0, "ser_p5_ns": 1552133.5, "ser_p25_ns": 1568099.75, "ser_p50_ns": 1585073.0, "ser_p75_ns": 1611133.5, "ser_p95_ns": 1647500.05, "ser_p99_ns": 1666176.73, "ser_ci_low_ns": 1584864.1108695653, "ser_ci_high_ns": 1597606.0714673912, "deser_mean_ns": 1147434.956521739, "deser_median_ns": 1146524.0, "deser_std_ns": 15837.477621978202, "deser_mad_ns": 9530.0, "deser_cv": 0.013802505782102821, "deser_min_ns": 1118272.0, "deser_max_ns": 1190735.0, "deser_p5_ns": 1127069.75, "deser_p25_ns": 1136560.75, "deser_p50_ns": 1146524.0, "deser_p75_ns": 1155192.5, "deser_p95_ns": 1177834.35, "deser_p99_ns": 1189664.84, "deser_ci_low_ns": 1144407.6114130435, "deser_ci_high_ns": 1150828.4124999999, "total_mean_ns": 2738570.2065217393, "total_median_ns": 2729238.5, "total_std_ns": 41859.66841132799, "total_mad_ns": 27531.0, "total_cv": 0.015285227419637344, "total_min_ns": 2665612.0, "total_max_ns": 2841507.0, "total_p5_ns": 2685145.05, "total_p25_ns": 2706922.25, "total_p50_ns": 2729238.5, "total_p75_ns": 2765797.75, "total_p95_ns": 2818614.4, "total_p99_ns": 2841194.87, "total_ci_low_ns": 2730095.8279891303, "total_ci_high_ns": 2747054.174456522, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 82.16552613900679}, {"serializer": "Foundation.PropertyListEncoder", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 1189206.3626373627, "avg_time_deser_ns": 1938086.2747252746, "avg_time_total_ns": 3127292.6373626376, "median_size_bytes": 21061.0, "avg_ops_per_sec": 319.76540604250494, "min_ops_per_sec": 308.2311906539371, "max_ops_per_sec": 328.70635313778155, "runs": 91, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 8, "ser_mean_ns": 1189206.3626373627, "ser_median_ns": 1185226.0, "ser_std_ns": 25608.816472073955, "ser_mad_ns": 16177.0, "ser_cv": 0.02153437559422403, "ser_min_ns": 1143339.0, "ser_max_ns": 1261984.0, "ser_p5_ns": 1154812.0, "ser_p25_ns": 1171491.5, "ser_p50_ns": 1185226.0, "ser_p75_ns": 1202053.5, "ser_p95_ns": 1239996.5, "ser_p99_ns": 1251812.2, "ser_ci_low_ns": 1184031.4821428573, "ser_ci_high_ns": 1194595.9854395604, "deser_mean_ns": 1938086.2747252746, "deser_median_ns": 1930183.0, "deser_std_ns": 26158.292872461407, "deser_mad_ns": 11253.0, "deser_cv": 0.013496970291567318, "deser_min_ns": 1886185.0, "deser_max_ns": 1998997.0, "deser_p5_ns": 1906000.0, "deser_p25_ns": 1921763.0, "deser_p50_ns": 1930183.0, "deser_p75_ns": 1949400.0, "deser_p95_ns": 1987737.5, "deser_p99_ns": 1996062.1, "deser_ci_low_ns": 1933032.7032967033, "deser_ci_high_ns": 1943475.073901099, "total_mean_ns": 3127292.6373626376, "total_median_ns": 3118172.0, "total_std_ns": 44879.75806023035, "total_mad_ns": 25126.0, "total_cv": 0.014350994059218943, "total_min_ns": 3042229.0, "total_max_ns": 3244318.0, "total_p5_ns": 3073094.5, "total_p25_ns": 3095488.5, "total_p50_ns": 3118172.0, "total_p75_ns": 3152455.5, "total_p95_ns": 3213815.0, "total_p99_ns": 3233747.5, "total_ci_low_ns": 3118230.8126373626, "total_ci_high_ns": 3136970.7815934066, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 88.74511494849465}, {"serializer": "SwiftBSON", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "3.1.0", "avg_time_ser_ns": 1693029.3863636365, "avg_time_deser_ns": 2501201.534090909, "avg_time_total_ns": 4194230.9204545454, "median_size_bytes": 29452.0, "avg_ops_per_sec": 238.4227332651551, "min_ops_per_sec": 229.11654264970073, "max_ops_per_sec": 243.17575868404953, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 1693029.3863636365, "ser_median_ns": 1685043.0, "ser_std_ns": 41063.46479478389, "ser_mad_ns": 27157.0, "ser_cv": 0.024254431213968364, "ser_min_ns": 1634343.0, "ser_max_ns": 1807580.0, "ser_p5_ns": 1638932.3, "ser_p25_ns": 1663869.75, "ser_p50_ns": 1685043.0, "ser_p75_ns": 1717935.25, "ser_p95_ns": 1768013.8, "ser_p99_ns": 1798712.96, "ser_ci_low_ns": 1684571.4903409092, "ser_ci_high_ns": 1701421.0991477275, "deser_mean_ns": 2501201.534090909, "deser_median_ns": 2491709.5, "deser_std_ns": 28312.722400415016, "deser_mad_ns": 13287.0, "deser_cv": 0.011319648582698317, "deser_min_ns": 2464201.0, "deser_max_ns": 2583659.0, "deser_p5_ns": 2471688.5, "deser_p25_ns": 2480648.5, "deser_p50_ns": 2491709.5, "deser_p75_ns": 2510057.5, "deser_p95_ns": 2558893.3, "deser_p99_ns": 2574496.16, "deser_ci_low_ns": 2495677.7556818184, "deser_ci_high_ns": 2507119.7704545455, "total_mean_ns": 4194230.9204545454, "total_median_ns": 4178280.5, "total_std_ns": 55069.65733186264, "total_mad_ns": 26419.0, "total_cv": 0.013129858221038179, "total_min_ns": 4112252.0, "total_max_ns": 4364591.0, "total_p5_ns": 4125629.05, "total_p25_ns": 4156884.75, "total_p50_ns": 4178280.5, "total_p75_ns": 4214296.75, "total_p95_ns": 4297499.65, "total_p99_ns": 4334224.52, "total_ci_low_ns": 4183129.037215909, "total_ci_high_ns": 4206285.0829545455, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 99.82951003694679}, {"serializer": "TOML", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "2.0.0", "avg_time_ser_ns": 7232091.516853932, "avg_time_deser_ns": 1562808.3595505618, "avg_time_total_ns": 8794899.876404494, "median_size_bytes": 31645.0, "avg_ops_per_sec": 113.70226086175948, "min_ops_per_sec": 109.83226087622201, "max_ops_per_sec": 115.99488230579267, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 7232091.516853932, "ser_median_ns": 7225378.0, "ser_std_ns": 60432.92298192201, "ser_mad_ns": 45057.0, "ser_cv": 0.008356216571801795, "ser_min_ns": 7136487.0, "ser_max_ns": 7405826.0, "ser_p5_ns": 7155228.0, "ser_p25_ns": 7179962.0, "ser_p50_ns": 7225378.0, "ser_p75_ns": 7256963.0, "ser_p95_ns": 7344081.2, "ser_p99_ns": 7402158.16, "ser_ci_low_ns": 7220174.793539326, "ser_ci_high_ns": 7244854.669943821, "deser_mean_ns": 1562808.3595505618, "deser_median_ns": 1541796.0, "deser_std_ns": 78463.87125052685, "deser_mad_ns": 49598.0, "deser_cv": 0.0502069692493146, "deser_min_ns": 1454624.0, "deser_max_ns": 1776891.0, "deser_p5_ns": 1462809.6, "deser_p25_ns": 1510405.0, "deser_p50_ns": 1541796.0, "deser_p75_ns": 1606121.0, "deser_p95_ns": 1706485.0, "deser_p99_ns": 1774698.92, "deser_ci_low_ns": 1547901.079213483, "deser_ci_high_ns": 1579458.264044944, "total_mean_ns": 8794899.876404494, "total_median_ns": 8771386.0, "total_std_ns": 116783.3244902538, "total_mad_ns": 81797.0, "total_cv": 0.013278528025494342, "total_min_ns": 8621070.0, "total_max_ns": 9104793.0, "total_p5_ns": 8630689.4, "total_p25_ns": 8707552.0, "total_p50_ns": 8771386.0, "total_p75_ns": 8875282.0, "total_p95_ns": 9005919.6, "total_p99_ns": 9068705.96, "total_ci_low_ns": 8772447.285112359, "total_ci_high_ns": 8820207.431741573, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 101.60395176659735}, {"serializer": "FlatBuffers", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "24.3.25", "avg_time_ser_ns": 57835.9156626506, "avg_time_deser_ns": 150989.92771084336, "avg_time_total_ns": 208825.843373494, "median_size_bytes": 26000.0, "avg_ops_per_sec": 4788.679331281124, "min_ops_per_sec": 4459.626996797988, "max_ops_per_sec": 5034.460884756156, "runs": 83, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 16, "ser_mean_ns": 57835.9156626506, "ser_median_ns": 57108.0, "ser_std_ns": 3052.454726716537, "ser_mad_ns": 1445.0, "ser_cv": 0.05277784040839104, "ser_min_ns": 52216.0, "ser_max_ns": 68146.0, "ser_p5_ns": 53307.2, "ser_p25_ns": 56142.5, "ser_p50_ns": 57108.0, "ser_p75_ns": 59205.0, "ser_p95_ns": 63986.1, "ser_p99_ns": 66592.09999999999, "ser_ci_low_ns": 57227.76987951807, "ser_ci_high_ns": 58493.33765060241, "deser_mean_ns": 150989.92771084336, "deser_median_ns": 150088.0, "deser_std_ns": 3980.044878969707, "deser_mad_ns": 2170.0, "deser_cv": 0.02635967139868946, "deser_min_ns": 145135.0, "deser_max_ns": 161143.0, "deser_p5_ns": 146014.1, "deser_p25_ns": 148125.0, "deser_p50_ns": 150088.0, "deser_p75_ns": 152980.0, "deser_p95_ns": 159452.8, "deser_p99_ns": 161071.66, "deser_ci_low_ns": 150124.6141566265, "deser_ci_high_ns": 151856.32650602408, "total_mean_ns": 208825.843373494, "total_median_ns": 207270.0, "total_std_ns": 6165.481403636184, "total_mad_ns": 3577.0, "total_cv": 0.02952451336499073, "total_min_ns": 198631.0, "total_max_ns": 224234.0, "total_p5_ns": 200545.2, "total_p25_ns": 204136.0, "total_p50_ns": 207270.0, "total_p75_ns": 211812.0, "total_p95_ns": 220739.8, "total_p99_ns": 222685.02, "total_ci_low_ns": 207521.05060240964, "total_ci_high_ns": 210081.95843373492, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "SwiftMsgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "1.2.1", "avg_time_ser_ns": 1478747.6597938144, "avg_time_deser_ns": 1297889.3092783506, "avg_time_total_ns": 2776636.969072165, "median_size_bytes": 19848.0, "avg_ops_per_sec": 360.14790955338964, "min_ops_per_sec": 329.27621137425405, "max_ops_per_sec": 383.485577107445, "runs": 97, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 2, "ser_mean_ns": 1478747.6597938144, "ser_median_ns": 1466784.0, "ser_std_ns": 45754.16170822757, "ser_mad_ns": 28164.0, "ser_cv": 0.030941155784893815, "ser_min_ns": 1389290.0, "ser_max_ns": 1602808.0, "ser_p5_ns": 1423540.8, "ser_p25_ns": 1442106.0, "ser_p50_ns": 1466784.0, "ser_p75_ns": 1512272.0, "ser_p95_ns": 1558190.7999999998, "ser_p99_ns": 1601104.96, "ser_ci_low_ns": 1470296.7667525774, "ser_ci_high_ns": 1487743.5342783504, "deser_mean_ns": 1297889.3092783506, "deser_median_ns": 1287960.0, "deser_std_ns": 49323.827079178314, "deser_mad_ns": 34069.0, "deser_cv": 0.03800310760445606, "deser_min_ns": 1215955.0, "deser_max_ns": 1434156.0, "deser_p5_ns": 1233739.8, "deser_p25_ns": 1260433.0, "deser_p50_ns": 1287960.0, "deser_p75_ns": 1329422.0, "deser_p95_ns": 1387442.8, "deser_p99_ns": 1415261.2799999998, "deser_ci_low_ns": 1288433.0275773196, "deser_ci_high_ns": 1307738.2963917525, "total_mean_ns": 2776636.969072165, "total_median_ns": 2757996.0, "total_std_ns": 87362.15387879802, "total_mad_ns": 59015.0, "total_cv": 0.03146329709353066, "total_min_ns": 2607660.0, "total_max_ns": 3036964.0, "total_p5_ns": 2672648.0, "total_p25_ns": 2707416.0, "total_p50_ns": 2757996.0, "total_p75_ns": 2842830.0, "total_p95_ns": 2927920.6, "total_p99_ns": 2981283.0399999996, "total_ci_low_ns": 2759543.576030928, "total_ci_high_ns": 2793332.576546392, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 39.77003114685655}, {"serializer": "Foundation.JSONEncoder", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 638087.4479166666, "avg_time_deser_ns": 733749.9375, "avg_time_total_ns": 1371837.3854166667, "median_size_bytes": 25746.0, "avg_ops_per_sec": 728.9493715731264, "min_ops_per_sec": 700.1070463673896, "max_ops_per_sec": 758.6436059240962, "runs": 96, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 3, "ser_mean_ns": 638087.4479166666, "ser_median_ns": 636649.0, "ser_std_ns": 13865.633856765813, "ser_mad_ns": 9958.5, "ser_cv": 0.021729989991241212, "ser_min_ns": 611761.0, "ser_max_ns": 674564.0, "ser_p5_ns": 619249.5, "ser_p25_ns": 628480.0, "ser_p50_ns": 636649.0, "ser_p75_ns": 647627.75, "ser_p95_ns": 663209.25, "ser_p99_ns": 672926.2, "ser_ci_low_ns": 635276.8682291667, "ser_ci_high_ns": 640959.3421875, "deser_mean_ns": 733749.9375, "deser_median_ns": 731616.0, "deser_std_ns": 17987.252729473374, "deser_mad_ns": 13372.5, "deser_cv": 0.024514145501338968, "deser_min_ns": 706381.0, "deser_max_ns": 782397.0, "deser_p5_ns": 711375.75, "deser_p25_ns": 719007.5, "deser_p50_ns": 731616.0, "deser_p75_ns": 745446.75, "deser_p95_ns": 769974.25, "deser_p99_ns": 779166.05, "deser_ci_low_ns": 730307.5736979167, "deser_ci_high_ns": 737290.796875, "total_mean_ns": 1371837.3854166667, "total_median_ns": 1365803.0, "total_std_ns": 26001.167524543278, "total_mad_ns": 17973.0, "total_cv": 0.018953534727183405, "total_min_ns": 1318142.0, "total_max_ns": 1428353.0, "total_p5_ns": 1333280.25, "total_p25_ns": 1352265.5, "total_p50_ns": 1365803.0, "total_p75_ns": 1391371.0, "total_p95_ns": 1415181.5, "total_p99_ns": 1425460.25, "total_ci_low_ns": 1366362.89453125, "total_ci_high_ns": 1376963.1744791667, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 59.37151994837124}, {"serializer": "SwiftAvroCore", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "2.3.0", "avg_time_ser_ns": 3857180.5531914895, "avg_time_deser_ns": 978040.4680851063, "avg_time_total_ns": 4835221.021276596, "median_size_bytes": 10448.0, "avg_ops_per_sec": 206.8157785548301, "min_ops_per_sec": 200.60140300621262, "max_ops_per_sec": 210.4077786914151, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 3857180.5531914895, "ser_median_ns": 3847103.5, "ser_std_ns": 43804.01860992734, "ser_mad_ns": 26581.5, "ser_cv": 0.011356486429882894, "ser_min_ns": 3784145.0, "ser_max_ns": 3969990.0, "ser_p5_ns": 3801450.4, "ser_p25_ns": 3825450.25, "ser_p50_ns": 3847103.5, "ser_p75_ns": 3882724.5, "ser_p95_ns": 3934685.6, "ser_p99_ns": 3960799.7399999998, "ser_ci_low_ns": 3848844.7337765954, "ser_ci_high_ns": 3865937.3856382975, "deser_mean_ns": 978040.4680851063, "deser_median_ns": 973027.5, "deser_std_ns": 20560.75571845608, "deser_mad_ns": 12231.0, "deser_cv": 0.02102239773238804, "deser_min_ns": 939130.0, "deser_max_ns": 1031518.0, "deser_p5_ns": 952692.65, "deser_p25_ns": 962539.75, "deser_p50_ns": 973027.5, "deser_p75_ns": 990664.25, "deser_p95_ns": 1017047.8, "deser_p99_ns": 1020412.8699999999, "deser_ci_low_ns": 973946.8723404255, "deser_ci_high_ns": 982224.9319148937, "total_mean_ns": 4835221.021276596, "total_median_ns": 4818067.0, "total_std_ns": 53571.03003017737, "total_mad_ns": 31593.5, "total_cv": 0.011079334283675317, "total_min_ns": 4752676.0, "total_max_ns": 4985010.0, "total_p5_ns": 4761479.2, "total_p25_ns": 4797686.25, "total_p50_ns": 4818067.0, "total_p75_ns": 4867346.0, "total_p95_ns": 4931877.6, "total_p99_ns": 4974234.09, "total_ci_low_ns": 4824713.883244681, "total_ci_high_ns": 4846244.855585107, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 117.27379536673712}, {"serializer": "SwiftProtobuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "1.38.1", "avg_time_ser_ns": 123494.0, "avg_time_deser_ns": 99663.75280898876, "avg_time_total_ns": 223157.75280898876, "median_size_bytes": 12477.0, "avg_ops_per_sec": 4481.134925462111, "min_ops_per_sec": 3968.0177767196396, "max_ops_per_sec": 5000.550060506655, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 123494.0, "ser_median_ns": 119234.0, "ser_std_ns": 10789.954616974237, "ser_mad_ns": 4482.0, "ser_cv": 0.08737229838675756, "ser_min_ns": 106933.0, "ser_max_ns": 148652.0, "ser_p5_ns": 111334.0, "ser_p25_ns": 116376.0, "ser_p50_ns": 119234.0, "ser_p75_ns": 129712.0, "ser_p95_ns": 143096.8, "ser_p99_ns": 146708.96000000002, "ser_ci_low_ns": 121290.75926966291, "ser_ci_high_ns": 125767.54662921348, "deser_mean_ns": 99663.75280898876, "deser_median_ns": 99146.0, "deser_std_ns": 3095.549221649818, "deser_mad_ns": 2160.0, "deser_cv": 0.031059930359863264, "deser_min_ns": 93045.0, "deser_max_ns": 108209.0, "deser_p5_ns": 95606.4, "deser_p25_ns": 97524.0, "deser_p50_ns": 99146.0, "deser_p75_ns": 101405.0, "deser_p95_ns": 105802.0, "deser_p99_ns": 107887.8, "deser_ci_low_ns": 99017.0786516854, "deser_ci_high_ns": 100307.63286516853, "total_mean_ns": 223157.75280898876, "total_median_ns": 220076.0, "total_std_ns": 11941.158923580333, "total_mad_ns": 6820.0, "total_cv": 0.05350994430294938, "total_min_ns": 199978.0, "total_max_ns": 252015.0, "total_p5_ns": 206749.8, "total_p25_ns": 214667.0, "total_p50_ns": 220076.0, "total_p75_ns": 231080.0, "total_p95_ns": 244162.0, "total_p99_ns": 249463.88, "total_ci_low_ns": 220592.61011235957, "total_ci_high_ns": 225727.86095505618, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 0.7319615540814945, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 1.4864102517248803}, {"serializer": "IkigaJSON", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "2.5.3", "avg_time_ser_ns": 561529.6170212766, "avg_time_deser_ns": 942441.9893617021, "avg_time_total_ns": 1503971.6063829786, "median_size_bytes": 25746.0, "avg_ops_per_sec": 664.9061696084674, "min_ops_per_sec": 639.1528412580828, "max_ops_per_sec": 685.279779175444, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 561529.6170212766, "ser_median_ns": 558376.5, "ser_std_ns": 12378.083092084406, "ser_mad_ns": 8330.0, "ser_cv": 0.02204350886734331, "ser_min_ns": 543511.0, "ser_max_ns": 597645.0, "ser_p5_ns": 546738.25, "ser_p25_ns": 551330.0, "ser_p50_ns": 558376.5, "ser_p75_ns": 571957.25, "ser_p95_ns": 584229.9, "ser_p99_ns": 587711.6699999999, "ser_ci_low_ns": 559039.164361702, "ser_ci_high_ns": 564033.8292553192, "deser_mean_ns": 942441.9893617021, "deser_median_ns": 940249.0, "deser_std_ns": 14191.978917756189, "deser_mad_ns": 8927.5, "deser_cv": 0.01505872942627285, "deser_min_ns": 915747.0, "deser_max_ns": 982151.0, "deser_p5_ns": 924129.15, "deser_p25_ns": 932124.25, "deser_p50_ns": 940249.0, "deser_p75_ns": 949841.0, "deser_p95_ns": 968371.2, "deser_p99_ns": 975457.7899999999, "deser_ci_low_ns": 939641.0433510639, "deser_ci_high_ns": 945308.835106383, "total_mean_ns": 1503971.6063829786, "total_median_ns": 1497582.5, "total_std_ns": 21862.37799597973, "total_mad_ns": 16127.0, "total_cv": 0.014536430011839324, "total_min_ns": 1459258.0, "total_max_ns": 1564571.0, "total_p5_ns": 1474635.25, "total_p25_ns": 1488818.0, "total_p50_ns": 1497582.5, "total_p75_ns": 1519880.0, "total_p95_ns": 1542487.75, "total_p99_ns": 1554988.28, "total_ci_low_ns": 1499655.2007978724, "total_ci_high_ns": 1508381.9297872342, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 78.21925952907057}, {"serializer": "SwiftCbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "0.0.4", "avg_time_ser_ns": 1677922.2777777778, "avg_time_deser_ns": 1332067.5333333334, "avg_time_total_ns": 3009989.811111111, "median_size_bytes": 19847.0, "avg_ops_per_sec": 332.22703821407913, "min_ops_per_sec": 315.091529362907, "max_ops_per_sec": 347.09880931224455, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 1677922.2777777778, "ser_median_ns": 1671865.0, "ser_std_ns": 34558.31593217528, "ser_mad_ns": 19776.5, "ser_cv": 0.020595897908897154, "ser_min_ns": 1609666.0, "ser_max_ns": 1760579.0, "ser_p5_ns": 1631165.5, "ser_p25_ns": 1654597.5, "ser_p50_ns": 1671865.0, "ser_p75_ns": 1696309.25, "ser_p95_ns": 1738857.2, "ser_p99_ns": 1757345.63, "ser_ci_low_ns": 1670701.4811111111, "ser_ci_high_ns": 1685288.0622222223, "deser_mean_ns": 1332067.5333333334, "deser_median_ns": 1326793.5, "deser_std_ns": 38665.029048906836, "deser_mad_ns": 23588.5, "deser_cv": 0.029026327931101516, "deser_min_ns": 1270131.0, "deser_max_ns": 1428144.0, "deser_p5_ns": 1283603.25, "deser_p25_ns": 1302935.0, "deser_p50_ns": 1326793.5, "deser_p75_ns": 1348583.5, "deser_p95_ns": 1411951.6, "deser_p99_ns": 1425973.29, "deser_ci_low_ns": 1324878.7611111111, "deser_ci_high_ns": 1340173.347222222, "total_mean_ns": 3009989.811111111, "total_median_ns": 2996794.5, "total_std_ns": 66367.66214762615, "total_mad_ns": 35150.0, "total_cv": 0.022049131828498488, "total_min_ns": 2881024.0, "total_max_ns": 3173681.0, "total_p5_ns": 2922667.7, "total_p25_ns": 2964560.25, "total_p50_ns": 2996794.5, "total_p75_ns": 3041946.0, "total_p95_ns": 3146257.85, "total_p99_ns": 3164444.58, "total_ci_low_ns": 2997086.4269444444, "total_ci_high_ns": 3024118.639444445, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 58.01676001758397}, {"serializer": "CapnProto", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "capnproto-1.0.2", "avg_time_ser_ns": 355164.8333333333, "avg_time_deser_ns": 432024.39285714284, "avg_time_total_ns": 787189.2261904762, "median_size_bytes": 27400.0, "avg_ops_per_sec": 1270.3425894678467, "min_ops_per_sec": 1154.334526145677, "max_ops_per_sec": 1360.0631069281615, "runs": 84, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 15, "ser_mean_ns": 355164.8333333333, "ser_median_ns": 350604.0, "ser_std_ns": 20736.84633040723, "ser_mad_ns": 11790.0, "ser_cv": 0.05838654163979419, "ser_min_ns": 319732.0, "ser_max_ns": 419123.0, "ser_p5_ns": 327294.15, "ser_p25_ns": 342346.5, "ser_p50_ns": 350604.0, "ser_p75_ns": 366005.25, "ser_p95_ns": 397445.54999999993, "ser_p99_ns": 416879.51, "ser_ci_low_ns": 351054.4529761905, "ser_ci_high_ns": 359783.8020833334, "deser_mean_ns": 432024.39285714284, "deser_median_ns": 429578.5, "deser_std_ns": 10580.792957755488, "deser_mad_ns": 5048.5, "deser_cv": 0.024491193397161326, "deser_min_ns": 407877.0, "deser_max_ns": 464049.0, "deser_p5_ns": 415698.95, "deser_p25_ns": 426832.75, "deser_p50_ns": 429578.5, "deser_p75_ns": 437918.5, "deser_p95_ns": 450430.8, "deser_p99_ns": 461358.97000000003, "deser_ci_low_ns": 429825.2208333333, "deser_ci_high_ns": 434358.3104166667, "total_mean_ns": 787189.2261904762, "total_median_ns": 781908.0, "total_std_ns": 27688.720501686435, "total_mad_ns": 16633.0, "total_cv": 0.0351741609011638, "total_min_ns": 735260.0, "total_max_ns": 866300.0, "total_p5_ns": 745805.25, "total_p25_ns": 769949.0, "total_p50_ns": 781908.0, "total_p75_ns": 800681.5, "total_p95_ns": 843578.5499999999, "total_p99_ns": 863624.91, "total_ci_low_ns": 781177.2184523809, "total_ci_high_ns": 793238.5172619048, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 28.62428145036356}, {"serializer": "Yams", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "bytes", "language": "swift", "serializer_version": "5.4.0", "avg_time_ser_ns": 10948544.239130436, "avg_time_deser_ns": 5730428.108695652, "avg_time_total_ns": 16678972.347826088, "median_size_bytes": 25245.0, "avg_ops_per_sec": 59.955732232528014, "min_ops_per_sec": 58.62715259117651, "max_ops_per_sec": 60.932655949059324, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 10948544.239130436, "ser_median_ns": 10916294.5, "ser_std_ns": 96425.96375781529, "ser_mad_ns": 56541.0, "ser_cv": 0.008807194970559274, "ser_min_ns": 10791138.0, "ser_max_ns": 11195359.0, "ser_p5_ns": 10821605.2, "ser_p25_ns": 10878765.75, "ser_p50_ns": 10916294.5, "ser_p75_ns": 11030239.0, "ser_p95_ns": 11129997.3, "ser_p99_ns": 11192527.08, "ser_ci_low_ns": 10930190.348641304, "ser_ci_high_ns": 10969207.264945652, "deser_mean_ns": 5730428.108695652, "deser_median_ns": 5714583.0, "deser_std_ns": 94517.02450910096, "deser_mad_ns": 70164.0, "deser_cv": 0.016493885398488093, "deser_min_ns": 5574990.0, "deser_max_ns": 5994905.0, "deser_p5_ns": 5603363.35, "deser_p25_ns": 5657792.0, "deser_p50_ns": 5714583.0, "deser_p75_ns": 5790650.0, "deser_p95_ns": 5900810.95, "deser_p99_ns": 5982425.26, "deser_ci_low_ns": 5710676.54375, "deser_ci_high_ns": 5749125.189673914, "total_mean_ns": 16678972.347826088, "total_median_ns": 16661540.0, "total_std_ns": 159117.0983407603, "total_mad_ns": 127718.0, "total_cv": 0.009539982141735452, "total_min_ns": 16411561.0, "total_max_ns": 17056943.0, "total_p5_ns": 16461115.8, "total_p25_ns": 16546619.0, "total_p50_ns": 16661540.0, "total_p75_ns": 16806546.75, "total_p95_ns": 16912846.6, "total_p99_ns": 17041445.7, "total_ci_low_ns": 16647351.077989131, "total_ci_high_ns": 16710419.73097826, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "FlatBuffers", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 142.00373698022528}, {"serializer": "CapnProto", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "capnproto-1.0.2", "avg_time_ser_ns": 2183695.3913043477, "avg_time_deser_ns": 436368.6195652174, "avg_time_total_ns": 2620064.0108695654, "median_size_bytes": 27400.0, "avg_ops_per_sec": 381.6700644913301, "min_ops_per_sec": 363.3326175680767, "max_ops_per_sec": 400.3632095036617, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 2183695.3913043477, "ser_median_ns": 2177400.0, "ser_std_ns": 44597.45367489896, "ser_mad_ns": 26213.0, "ser_cv": 0.020422927965360757, "ser_min_ns": 2087282.0, "ser_max_ns": 2290372.0, "ser_p5_ns": 2111510.9, "ser_p25_ns": 2153909.0, "ser_p50_ns": 2177400.0, "ser_p75_ns": 2213132.5, "ser_p95_ns": 2272193.4, "ser_p99_ns": 2286401.67, "ser_ci_low_ns": 2174903.804347826, "ser_ci_high_ns": 2192963.8010869566, "deser_mean_ns": 436368.6195652174, "deser_median_ns": 435255.0, "deser_std_ns": 14064.61506318808, "deser_mad_ns": 8620.0, "deser_cv": 0.03223104144656776, "deser_min_ns": 410450.0, "deser_max_ns": 471787.0, "deser_p5_ns": 415601.95, "deser_p25_ns": 427177.0, "deser_p50_ns": 435255.0, "deser_p75_ns": 443944.5, "deser_p95_ns": 459702.8, "deser_p99_ns": 470614.01, "deser_ci_low_ns": 433686.0092391304, "deser_ci_high_ns": 439363.09211956523, "total_mean_ns": 2620064.0108695654, "total_median_ns": 2616502.0, "total_std_ns": 52901.18043085525, "total_mad_ns": 29251.0, "total_cv": 0.020190796946712015, "total_min_ns": 2497732.0, "total_max_ns": 2752299.0, "total_p5_ns": 2536813.65, "total_p25_ns": 2587665.75, "total_p50_ns": 2616502.0, "total_p75_ns": 2647200.25, "total_p95_ns": 2717813.55, "total_p99_ns": 2743052.49, "total_ci_low_ns": 2609389.646467391, "total_ci_high_ns": 2630917.1883152174, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 38.000674659419786}, {"serializer": "SwiftBSON", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "3.1.0", "avg_time_ser_ns": 3612448.6, "avg_time_deser_ns": 2494980.822222222, "avg_time_total_ns": 6107429.422222222, "median_size_bytes": 29452.0, "avg_ops_per_sec": 163.7350071310598, "min_ops_per_sec": 157.6734960313581, "max_ops_per_sec": 168.1973183292355, "runs": 90, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 9, "ser_mean_ns": 3612448.6, "ser_median_ns": 3602000.5, "ser_std_ns": 56371.85512208746, "ser_mad_ns": 35741.0, "ser_cv": 0.015604887809915816, "ser_min_ns": 3501027.0, "ser_max_ns": 3761977.0, "ser_p5_ns": 3539072.15, "ser_p25_ns": 3572079.5, "ser_p50_ns": 3602000.5, "ser_p75_ns": 3643369.25, "ser_p95_ns": 3711892.7, "ser_p99_ns": 3744887.22, "ser_ci_low_ns": 3601275.838333333, "ser_ci_high_ns": 3624333.2955555553, "deser_mean_ns": 2494980.822222222, "deser_median_ns": 2492857.5, "deser_std_ns": 31122.790171840308, "deser_mad_ns": 18679.0, "deser_cv": 0.012474160079563238, "deser_min_ns": 2431607.0, "deser_max_ns": 2580243.0, "deser_p5_ns": 2445330.85, "deser_p25_ns": 2472697.25, "deser_p50_ns": 2492857.5, "deser_p75_ns": 2508831.5, "deser_p95_ns": 2559514.2, "deser_p99_ns": 2576940.21, "deser_ci_low_ns": 2488912.92, "deser_ci_high_ns": 2501520.766388889, "total_mean_ns": 6107429.422222222, "total_median_ns": 6083400.0, "total_std_ns": 75041.66330404533, "total_mad_ns": 49090.0, "total_cv": 0.01228694727621445, "total_min_ns": 5945398.0, "total_max_ns": 6342220.0, "total_p5_ns": 6005976.7, "total_p25_ns": 6054654.25, "total_p50_ns": 6083400.0, "total_p75_ns": 6153618.5, "total_p95_ns": 6239622.5, "total_p99_ns": 6269652.07, "total_ci_low_ns": 6092032.415277778, "total_ci_high_ns": 6124059.856666666, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 90.02626841207372}, {"serializer": "SwiftProtobuf", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "1.38.1", "avg_time_ser_ns": 955656.1647058823, "avg_time_deser_ns": 103311.56470588235, "avg_time_total_ns": 1058967.7294117648, "median_size_bytes": 12477.0, "avg_ops_per_sec": 944.3158391195545, "min_ops_per_sec": 897.4485537616556, "max_ops_per_sec": 977.7149432974219, "runs": 85, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 14, "ser_mean_ns": 955656.1647058823, "ser_median_ns": 953980.0, "ser_std_ns": 20142.19972668556, "ser_mad_ns": 12546.0, "ser_cv": 0.02107682707502298, "ser_min_ns": 923681.0, "ser_max_ns": 1005832.0, "ser_p5_ns": 925230.6, "ser_p25_ns": 941434.0, "ser_p50_ns": 953980.0, "ser_p75_ns": 965638.0, "ser_p95_ns": 991366.4, "ser_p99_ns": 1002099.04, "ser_ci_low_ns": 951591.9720588236, "ser_ci_high_ns": 959933.7244117648, "deser_mean_ns": 103311.56470588235, "deser_median_ns": 103431.0, "deser_std_ns": 3017.8457013755565, "deser_mad_ns": 2153.0, "deser_cv": 0.029211112134126128, "deser_min_ns": 97192.0, "deser_max_ns": 110842.0, "deser_p5_ns": 98246.2, "deser_p25_ns": 101278.0, "deser_p50_ns": 103431.0, "deser_p75_ns": 105511.0, "deser_p95_ns": 108222.0, "deser_p99_ns": 109595.43999999999, "deser_ci_low_ns": 102666.57794117647, "deser_ci_high_ns": 103957.76852941175, "total_mean_ns": 1058967.7294117648, "total_median_ns": 1055910.0, "total_std_ns": 21308.010386431935, "total_mad_ns": 12601.0, "total_cv": 0.020121491708031656, "total_min_ns": 1022793.0, "total_max_ns": 1114270.0, "total_p5_ns": 1027853.4, "total_p25_ns": 1044042.0, "total_p50_ns": 1055910.0, "total_p75_ns": 1069656.0, "total_p95_ns": 1099305.2, "total_p99_ns": 1107391.24, "total_ci_low_ns": 1054667.784117647, "total_ci_high_ns": 1063618.4035294116, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 0.0, "effect_vs_fastest_cliffs_label": "reference", "effect_vs_fastest_hedges_g": 0.0}, {"serializer": "BinaryCodable", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "4.0.0", "avg_time_ser_ns": 2917987.0344827585, "avg_time_deser_ns": 1125551.6781609196, "avg_time_total_ns": 4043538.7126436783, "median_size_bytes": 19845.0, "avg_ops_per_sec": 247.3081305919282, "min_ops_per_sec": 239.0705891775135, "max_ops_per_sec": 254.0466455045811, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 2917987.0344827585, "ser_median_ns": 2913705.0, "ser_std_ns": 34236.02803061054, "ser_mad_ns": 20115.0, "ser_cv": 0.011732755363897363, "ser_min_ns": 2844000.0, "ser_max_ns": 3011241.0, "ser_p5_ns": 2871084.6, "ser_p25_ns": 2896487.0, "ser_p50_ns": 2913705.0, "ser_p75_ns": 2939928.5, "ser_p95_ns": 2984482.4, "ser_p99_ns": 2998249.84, "ser_ci_low_ns": 2910891.995689655, "ser_ci_high_ns": 2924828.207758621, "deser_mean_ns": 1125551.6781609196, "deser_median_ns": 1126010.0, "deser_std_ns": 18873.802813407827, "deser_mad_ns": 11670.0, "deser_cv": 0.016768490669612283, "deser_min_ns": 1083872.0, "deser_max_ns": 1173982.0, "deser_p5_ns": 1094337.7, "deser_p25_ns": 1112189.0, "deser_p50_ns": 1126010.0, "deser_p75_ns": 1135430.5, "deser_p95_ns": 1158021.2, "deser_p99_ns": 1171954.12, "deser_ci_low_ns": 1121620.0393678162, "deser_ci_high_ns": 1129422.1086206897, "total_mean_ns": 4043538.7126436783, "total_median_ns": 4037234.0, "total_std_ns": 44239.29971582619, "total_mad_ns": 27278.0, "total_cv": 0.010940738511416996, "total_min_ns": 3936285.0, "total_max_ns": 4182865.0, "total_p5_ns": 3988103.1, "total_p25_ns": 4012700.5, "total_p50_ns": 4037234.0, "total_p75_ns": 4066450.0, "total_p95_ns": 4134039.7, "total_p99_ns": 4154111.7600000002, "total_ci_low_ns": 4034295.004310345, "total_ci_high_ns": 4053147.0497126435, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 85.26587370773224}, {"serializer": "IkigaJSON", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "2.5.3", "avg_time_ser_ns": 2252910.840909091, "avg_time_deser_ns": 946991.9545454546, "avg_time_total_ns": 3199902.7954545454, "median_size_bytes": 25746.0, "avg_ops_per_sec": 312.509492919753, "min_ops_per_sec": 304.0135565725147, "max_ops_per_sec": 322.6314335934173, "runs": 88, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 11, "ser_mean_ns": 2252910.840909091, "ser_median_ns": 2253566.5, "ser_std_ns": 32681.732509361857, "ser_mad_ns": 20786.0, "ser_cv": 0.01450644735509115, "ser_min_ns": 2184288.0, "ser_max_ns": 2341455.0, "ser_p5_ns": 2201261.0, "ser_p25_ns": 2230825.0, "ser_p50_ns": 2253566.5, "ser_p75_ns": 2269469.5, "ser_p95_ns": 2314669.9499999997, "ser_p99_ns": 2337121.53, "ser_ci_low_ns": 2246201.1977272728, "ser_ci_high_ns": 2259842.6610795455, "deser_mean_ns": 946991.9545454546, "deser_median_ns": 946449.0, "deser_std_ns": 18740.699038661292, "deser_mad_ns": 11449.0, "deser_cv": 0.019789713047410857, "deser_min_ns": 906322.0, "deser_max_ns": 993848.0, "deser_p5_ns": 914281.55, "deser_p25_ns": 936430.25, "deser_p50_ns": 946449.0, "deser_p75_ns": 960178.0, "deser_p95_ns": 976358.7, "deser_p99_ns": 990281.87, "deser_ci_low_ns": 942857.2428977273, "deser_ci_high_ns": 951060.2681818182, "total_mean_ns": 3199902.7954545454, "total_median_ns": 3200939.0, "total_std_ns": 40241.690283265096, "total_mad_ns": 23467.5, "total_cv": 0.012575910224656926, "total_min_ns": 3099512.0, "total_max_ns": 3289327.0, "total_p5_ns": 3136426.65, "total_p25_ns": 3176066.75, "total_p50_ns": 3200939.0, "total_p75_ns": 3222037.25, "total_p95_ns": 3271925.15, "total_p99_ns": 3288273.43, "total_ci_low_ns": 3191881.867045454, "total_ci_high_ns": 3208001.0946022724, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 65.87670304542713}, {"serializer": "SwiftCbor", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "0.0.4", "avg_time_ser_ns": 3000977.989361702, "avg_time_deser_ns": 1244821.3936170214, "avg_time_total_ns": 4245799.382978723, "median_size_bytes": 19847.0, "avg_ops_per_sec": 235.52690784424922, "min_ops_per_sec": 223.59794585039106, "max_ops_per_sec": 244.94602859206003, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 3000977.989361702, "ser_median_ns": 2983928.0, "ser_std_ns": 65033.83886778949, "ser_mad_ns": 43140.5, "ser_cv": 0.02167088165868953, "ser_min_ns": 2880145.0, "ser_max_ns": 3161343.0, "ser_p5_ns": 2918894.0, "ser_p25_ns": 2953610.25, "ser_p50_ns": 2983928.0, "ser_p75_ns": 3049262.25, "ser_p95_ns": 3114737.4, "ser_p99_ns": 3159836.4, "ser_ci_low_ns": 2988488.198138298, "ser_ci_high_ns": 3014692.0718085105, "deser_mean_ns": 1244821.3936170214, "deser_median_ns": 1240520.0, "deser_std_ns": 25795.348662662924, "deser_mad_ns": 11972.0, "deser_cv": 0.02072212832694861, "deser_min_ns": 1195417.0, "deser_max_ns": 1310970.0, "deser_p5_ns": 1204584.4, "deser_p25_ns": 1230056.25, "deser_p50_ns": 1240520.0, "deser_p75_ns": 1256471.75, "deser_p95_ns": 1298184.5, "deser_p99_ns": 1307158.8599999999, "deser_ci_low_ns": 1239698.2303191489, "deser_ci_high_ns": 1249874.0215425533, "total_mean_ns": 4245799.382978723, "total_median_ns": 4217688.5, "total_std_ns": 82564.01613998425, "total_mad_ns": 54551.5, "total_cv": 0.019446047420653177, "total_min_ns": 4082532.0, "total_max_ns": 4472313.0, "total_p5_ns": 4144501.3, "total_p25_ns": 4183807.75, "total_p50_ns": 4217688.5, "total_p75_ns": 4304886.75, "total_p95_ns": 4390158.899999999, "total_p99_ns": 4432518.3, "total_ci_low_ns": 4229983.599734043, "total_ci_high_ns": 4262552.989095745, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 51.496915466823054}, {"serializer": "Foundation.JSONEncoder", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 2340856.294736842, "avg_time_deser_ns": 747110.7052631578, "avg_time_total_ns": 3087967.0, "median_size_bytes": 25746.0, "avg_ops_per_sec": 323.8376575915481, "min_ops_per_sec": 308.8742029501193, "max_ops_per_sec": 338.1351911833278, "runs": 95, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 4, "ser_mean_ns": 2340856.294736842, "ser_median_ns": 2336697.0, "ser_std_ns": 44859.467343683595, "ser_mad_ns": 28860.0, "ser_cv": 0.019163699815552614, "ser_min_ns": 2235034.0, "ser_max_ns": 2442654.0, "ser_p5_ns": 2275511.7, "ser_p25_ns": 2310124.0, "ser_p50_ns": 2336697.0, "ser_p75_ns": 2372673.5, "ser_p95_ns": 2430917.0, "ser_p99_ns": 2440898.08, "ser_ci_low_ns": 2331875.109736842, "ser_ci_high_ns": 2350013.813157895, "deser_mean_ns": 747110.7052631578, "deser_median_ns": 741910.0, "deser_std_ns": 21898.58369940544, "deser_mad_ns": 13826.0, "deser_cv": 0.02931102920241521, "deser_min_ns": 711718.0, "deser_max_ns": 800113.0, "deser_p5_ns": 718219.1, "deser_p25_ns": 730834.5, "deser_p50_ns": 741910.0, "deser_p75_ns": 758812.5, "deser_p95_ns": 790416.8, "deser_p99_ns": 799154.2, "deser_ci_low_ns": 742800.0928947368, "deser_ci_high_ns": 751186.9671052631, "total_mean_ns": 3087967.0, "total_median_ns": 3080257.0, "total_std_ns": 59694.645470519914, "total_mad_ns": 38415.0, "total_cv": 0.019331374159931084, "total_min_ns": 2957397.0, "total_max_ns": 3237564.0, "total_p5_ns": 3004379.5, "total_p25_ns": 3044852.5, "total_p50_ns": 3080257.0, "total_p75_ns": 3121326.0, "total_p95_ns": 3192815.1, "total_p99_ns": 3229688.68, "total_ci_low_ns": 3076173.9234210528, "total_ci_high_ns": 3099902.535263158, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 44.13073708105392}, {"serializer": "XMLCoder", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "0.18.2", "avg_time_ser_ns": 9835117.91954023, "avg_time_deser_ns": 8004560.586206896, "avg_time_total_ns": 17839678.50574713, "median_size_bytes": 37564.0, "avg_ops_per_sec": 56.054821821920484, "min_ops_per_sec": 54.39939020459556, "max_ops_per_sec": 57.21340945005326, "runs": 87, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 12, "ser_mean_ns": 9835117.91954023, "ser_median_ns": 9828561.0, "ser_std_ns": 114751.87443898637, "ser_mad_ns": 84352.0, "ser_cv": 0.011667564677694354, "ser_min_ns": 9624293.0, "ser_max_ns": 10120821.0, "ser_p5_ns": 9664457.7, "ser_p25_ns": 9741920.5, "ser_p50_ns": 9828561.0, "ser_p75_ns": 9904471.0, "ser_p95_ns": 10039803.7, "ser_p99_ns": 10116750.62, "ser_ci_low_ns": 9811741.991091954, "ser_ci_high_ns": 9859543.968103448, "deser_mean_ns": 8004560.586206896, "deser_median_ns": 7992580.0, "deser_std_ns": 112759.20944511471, "deser_mad_ns": 74514.0, "deser_cv": 0.014086870632151425, "deser_min_ns": 7778306.0, "deser_max_ns": 8308152.0, "deser_p5_ns": 7855336.9, "deser_p25_ns": 7918832.5, "deser_p50_ns": 7992580.0, "deser_p75_ns": 8067204.0, "deser_p95_ns": 8211797.4, "deser_p99_ns": 8272306.34, "deser_ci_low_ns": 7981557.5, "deser_ci_high_ns": 8027652.907471264, "total_mean_ns": 17839678.50574713, "total_median_ns": 17837888.0, "total_std_ns": 173255.33061424943, "total_mad_ns": 115764.0, "total_cv": 0.009711796687279678, "total_min_ns": 17478420.0, "total_max_ns": 18382559.0, "total_p5_ns": 17593780.8, "total_p25_ns": 17708744.5, "total_p50_ns": 17837888.0, "total_p75_ns": 17927101.5, "total_p95_ns": 18123040.8, "total_p99_ns": 18238629.4, "total_ci_low_ns": 17803209.84856322, "total_ci_high_ns": 17876921.26178161, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 134.58333054020073}, {"serializer": "FlatBuffers", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "24.3.25", "avg_time_ser_ns": 1771933.4673913044, "avg_time_deser_ns": 157671.03260869565, "avg_time_total_ns": 1929604.5, "median_size_bytes": 26000.0, "avg_ops_per_sec": 518.2409141355132, "min_ops_per_sec": 495.83941149811926, "max_ops_per_sec": 538.730986836647, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 1771933.4673913044, "ser_median_ns": 1767642.0, "ser_std_ns": 30937.234320031766, "ser_mad_ns": 14636.5, "ser_cv": 0.017459591395143366, "ser_min_ns": 1710452.0, "ser_max_ns": 1849980.0, "ser_p5_ns": 1725355.9, "ser_p25_ns": 1755162.25, "ser_p50_ns": 1767642.0, "ser_p75_ns": 1786486.5, "ser_p95_ns": 1833854.5, "ser_p99_ns": 1848826.12, "ser_ci_low_ns": 1765481.6233695652, "ser_ci_high_ns": 1778249.1407608695, "deser_mean_ns": 157671.03260869565, "deser_median_ns": 156143.0, "deser_std_ns": 5165.881130656014, "deser_mad_ns": 3123.5, "deser_cv": 0.0327636665098565, "deser_min_ns": 145762.0, "deser_max_ns": 171303.0, "deser_p5_ns": 152112.35, "deser_p25_ns": 154079.0, "deser_p50_ns": 156143.0, "deser_p75_ns": 161082.75, "deser_p95_ns": 167765.05, "deser_p99_ns": 170357.51, "deser_ci_low_ns": 156593.23532608696, "deser_ci_high_ns": 158697.7695652174, "total_mean_ns": 1929604.5, "total_median_ns": 1925443.5, "total_std_ns": 34247.03321729947, "total_mad_ns": 17436.5, "total_cv": 0.017748213800962562, "total_min_ns": 1856214.0, "total_max_ns": 2016782.0, "total_p5_ns": 1876092.65, "total_p25_ns": 1909130.75, "total_p50_ns": 1925443.5, "total_p75_ns": 1943529.0, "total_p95_ns": 1999512.9, "total_p99_ns": 2016500.81, "total_ci_low_ns": 1922500.4467391304, "total_ci_high_ns": 1936663.5236413043, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 30.130103616945494}, {"serializer": "TOML", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "2.0.0", "avg_time_ser_ns": 9342697.52173913, "avg_time_deser_ns": 1489188.456521739, "avg_time_total_ns": 10831885.97826087, "median_size_bytes": 31645.0, "avg_ops_per_sec": 92.3200264484834, "min_ops_per_sec": 89.17597210504252, "max_ops_per_sec": 94.77391067577874, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 9342697.52173913, "ser_median_ns": 9322486.5, "ser_std_ns": 107776.11988120501, "ser_mad_ns": 58287.0, "ser_cv": 0.011535867412000151, "ser_min_ns": 9117024.0, "ser_max_ns": 9609119.0, "ser_p5_ns": 9210561.3, "ser_p25_ns": 9265841.5, "ser_p50_ns": 9322486.5, "ser_p75_ns": 9381910.25, "ser_p95_ns": 9558265.7, "ser_p99_ns": 9592794.51, "ser_ci_low_ns": 9321290.109510869, "ser_ci_high_ns": 9364417.58125, "deser_mean_ns": 1489188.456521739, "deser_median_ns": 1479520.0, "deser_std_ns": 54084.879322688124, "deser_mad_ns": 33878.0, "deser_cv": 0.03631835788534975, "deser_min_ns": 1417934.0, "deser_max_ns": 1631794.0, "deser_p5_ns": 1425549.35, "deser_p25_ns": 1448124.75, "deser_p50_ns": 1479520.0, "deser_p75_ns": 1516929.5, "deser_p95_ns": 1594519.5, "deser_p99_ns": 1626453.21, "deser_ci_low_ns": 1478502.8633152174, "deser_ci_high_ns": 1499985.6861413042, "total_mean_ns": 10831885.97826087, "total_median_ns": 10798609.5, "total_std_ns": 148922.87231049608, "total_mad_ns": 72130.5, "total_cv": 0.013748563510489115, "total_min_ns": 10551427.0, "total_max_ns": 11213783.0, "total_p5_ns": 10655621.15, "total_p25_ns": 10737113.25, "total_p50_ns": 10798609.5, "total_p75_ns": 10894568.5, "total_p95_ns": 11119489.9, "total_p99_ns": 11161583.58, "total_ci_low_ns": 10802459.146467391, "total_ci_high_ns": 10864351.636141306, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 89.76934116181}, {"serializer": "Foundation.PropertyListEncoder", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "Foundation", "avg_time_ser_ns": 2558054.2608695654, "avg_time_deser_ns": 1900882.5217391304, "avg_time_total_ns": 4458936.782608695, "median_size_bytes": 21061.0, "avg_ops_per_sec": 224.26870995353096, "min_ops_per_sec": 218.18231008375363, "max_ops_per_sec": 230.14096364164013, "runs": 92, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 7, "ser_mean_ns": 2558054.2608695654, "ser_median_ns": 2551642.0, "ser_std_ns": 37884.957550333085, "ser_mad_ns": 21305.0, "ser_cv": 0.014810067999673613, "ser_min_ns": 2479548.0, "ser_max_ns": 2642714.0, "ser_p5_ns": 2494972.35, "ser_p25_ns": 2534248.5, "ser_p50_ns": 2551642.0, "ser_p75_ns": 2586532.25, "ser_p95_ns": 2624682.7, "ser_p99_ns": 2641403.6, "ser_ci_low_ns": 2550553.9008152173, "ser_ci_high_ns": 2565476.868478261, "deser_mean_ns": 1900882.5217391304, "deser_median_ns": 1898818.0, "deser_std_ns": 24090.548305484102, "deser_mad_ns": 16718.5, "deser_cv": 0.012673349367978561, "deser_min_ns": 1844534.0, "deser_max_ns": 1959355.0, "deser_p5_ns": 1866092.7, "deser_p25_ns": 1882316.75, "deser_p50_ns": 1898818.0, "deser_p75_ns": 1915894.25, "deser_p95_ns": 1939617.1, "deser_p99_ns": 1953880.44, "deser_ci_low_ns": 1896046.9027173913, "deser_ci_high_ns": 1905840.9529891303, "total_mean_ns": 4458936.782608695, "total_median_ns": 4447788.0, "total_std_ns": 53165.83260712997, "total_mad_ns": 31547.5, "total_cv": 0.01192343269240641, "total_min_ns": 4345163.0, "total_max_ns": 4583323.0, "total_p5_ns": 4370136.15, "total_p25_ns": 4425430.0, "total_p50_ns": 4447788.0, "total_p75_ns": 4496816.0, "total_p95_ns": 4557573.7, "total_p99_ns": 4582235.55, "total_ci_low_ns": 4448547.707336956, "total_ci_high_ns": 4469960.406793478, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 82.40439851684074}, {"serializer": "Yams", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "5.4.0", "avg_time_ser_ns": 12609435.11235955, "avg_time_deser_ns": 5690150.303370787, "avg_time_total_ns": 18299585.41573034, "median_size_bytes": 25245.0, "avg_ops_per_sec": 54.64604674269829, "min_ops_per_sec": 53.340149493236574, "max_ops_per_sec": 55.53682730323719, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 12609435.11235955, "ser_median_ns": 12576992.0, "ser_std_ns": 124007.84594665025, "ser_mad_ns": 81096.0, "ser_cv": 0.00983452825932701, "ser_min_ns": 12436766.0, "ser_max_ns": 12999566.0, "ser_p5_ns": 12468456.2, "ser_p25_ns": 12517398.0, "ser_p50_ns": 12576992.0, "ser_p75_ns": 12687819.0, "ser_p95_ns": 12818793.2, "ser_p99_ns": 12979293.44, "ser_ci_low_ns": 12583596.729213482, "ser_ci_high_ns": 12635011.003370788, "deser_mean_ns": 5690150.303370787, "deser_median_ns": 5672326.0, "deser_std_ns": 76124.7605921604, "deser_mad_ns": 50377.0, "deser_cv": 0.013378339153372604, "deser_min_ns": 5565776.0, "deser_max_ns": 5920050.0, "deser_p5_ns": 5593663.6, "deser_p25_ns": 5634790.0, "deser_p50_ns": 5672326.0, "deser_p75_ns": 5733801.0, "deser_p95_ns": 5845139.8, "deser_p99_ns": 5879083.36, "deser_ci_low_ns": 5675063.633426966, "deser_ci_high_ns": 5705282.358707866, "total_mean_ns": 18299585.41573034, "total_median_ns": 18266126.0, "total_std_ns": 169319.1534631358, "total_mad_ns": 121940.0, "total_cv": 0.009252622374580624, "total_min_ns": 18006070.0, "total_max_ns": 18747604.0, "total_p5_ns": 18077432.6, "total_p25_ns": 18179752.0, "total_p50_ns": 18266126.0, "total_p75_ns": 18416493.0, "total_p95_ns": 18613844.6, "total_p99_ns": 18719900.72, "total_ci_low_ns": 18263755.60477528, "total_ci_high_ns": 18334825.099719103, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 140.6730488261324}, {"serializer": "SwiftAvroCore", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "2.3.0", "avg_time_ser_ns": 4552571.808988764, "avg_time_deser_ns": 985248.6404494382, "avg_time_total_ns": 5537820.449438202, "median_size_bytes": 10448.0, "avg_ops_per_sec": 180.5764576750493, "min_ops_per_sec": 175.34231202865794, "max_ops_per_sec": 183.95595064388263, "runs": 89, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 10, "ser_mean_ns": 4552571.808988764, "ser_median_ns": 4541496.0, "ser_std_ns": 49557.569253499234, "ser_mad_ns": 25249.0, "ser_cv": 0.010885620553123613, "ser_min_ns": 4450122.0, "ser_max_ns": 4680950.0, "ser_p5_ns": 4487479.0, "ser_p25_ns": 4521890.0, "ser_p50_ns": 4541496.0, "ser_p75_ns": 4572741.0, "ser_p95_ns": 4656390.2, "ser_p99_ns": 4668198.8, "ser_ci_low_ns": 4543138.338483145, "ser_ci_high_ns": 4562545.677247191, "deser_mean_ns": 985248.6404494382, "deser_median_ns": 983137.0, "deser_std_ns": 19876.193051811773, "deser_mad_ns": 14148.0, "deser_cv": 0.02017378378999326, "deser_min_ns": 953931.0, "deser_max_ns": 1036670.0, "deser_p5_ns": 960955.2, "deser_p25_ns": 969618.0, "deser_p50_ns": 983137.0, "deser_p75_ns": 997285.0, "deser_p95_ns": 1021288.2, "deser_p99_ns": 1028761.4400000001, "deser_ci_low_ns": 981382.7556179775, "deser_ci_high_ns": 989646.8491573033, "total_mean_ns": 5537820.449438202, "total_median_ns": 5529748.0, "total_std_ns": 58345.07088435368, "total_mad_ns": 32046.0, "total_cv": 0.010535746223096243, "total_min_ns": 5436084.0, "total_max_ns": 5703130.0, "total_p5_ns": 5458990.2, "total_p25_ns": 5496826.0, "total_p50_ns": 5529748.0, "total_p75_ns": 5560201.0, "total_p95_ns": 5651137.0, "total_p99_ns": 5693623.36, "total_ci_low_ns": 5526367.431179775, "total_ci_high_ns": 5550111.496348315, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 100.63812337566743}, {"serializer": "SwiftMsgpack", "test_data": "event", "type_config_hash": "963dc8e1b85e", "data_type_instance_count": 100, "mode": "stream", "language": "swift", "serializer_version": "1.2.1", "avg_time_ser_ns": 2786859.989361702, "avg_time_deser_ns": 1137120.670212766, "avg_time_total_ns": 3923980.659574468, "median_size_bytes": 19848.0, "avg_ops_per_sec": 254.84325402063627, "min_ops_per_sec": 243.02145660742534, "max_ops_per_sec": 263.6705257484815, "runs": 94, "runs_raw": 100, "warmup_skipped": 1, "outliers_removed": 5, "ser_mean_ns": 2786859.989361702, "ser_median_ns": 2779812.0, "ser_std_ns": 50579.70569489982, "ser_mad_ns": 34285.0, "ser_cv": 0.018149352995119255, "ser_min_ns": 2701427.0, "ser_max_ns": 2911837.0, "ser_p5_ns": 2719819.45, "ser_p25_ns": 2749420.75, "ser_p50_ns": 2779812.0, "ser_p75_ns": 2817584.75, "ser_p95_ns": 2884939.15, "ser_p99_ns": 2910398.29, "ser_ci_low_ns": 2777739.500531915, "ser_ci_high_ns": 2797372.6800531917, "deser_mean_ns": 1137120.670212766, "deser_median_ns": 1135441.0, "deser_std_ns": 24867.199550225116, "deser_mad_ns": 17825.5, "deser_cv": 0.021868566988209114, "deser_min_ns": 1074738.0, "deser_max_ns": 1204573.0, "deser_p5_ns": 1102555.05, "deser_p25_ns": 1117617.0, "deser_p50_ns": 1135441.0, "deser_p75_ns": 1152513.75, "deser_p95_ns": 1181412.8, "deser_p99_ns": 1187211.7599999998, "deser_ci_low_ns": 1132104.7962765957, "deser_ci_high_ns": 1142067.7734042553, "total_mean_ns": 3923980.659574468, "total_median_ns": 3917063.5, "total_std_ns": 67027.00899365533, "total_mad_ns": 43242.5, "total_cv": 0.017081381079213576, "total_min_ns": 3792612.0, "total_max_ns": 4114863.0, "total_p5_ns": 3827962.15, "total_p25_ns": 3874232.75, "total_p50_ns": 3917063.5, "total_p75_ns": 3960701.5, "total_p95_ns": 4052612.1, "total_p99_ns": 4092275.1599999997, "total_ci_low_ns": 3910553.8662234046, "total_ci_high_ns": 3936611.388297872, "mean_fidelity": 1.0, "mean_memory_peak_bytes": 0.0, "StreamMode": "adapted", "fastest_in_group": "SwiftProtobuf", "effect_vs_fastest_cliffs_delta": 1.0, "effect_vs_fastest_cliffs_label": "large", "effect_vs_fastest_hedges_g": 56.2091175569665}], "pareto_front": [{"serializer": "SwiftAvroCore", "test_data": "message", "mode": "bytes", "time": 46619.22619047619, "size": 44.0}, {"serializer": "SwiftProtobuf", "test_data": "message", "mode": "bytes", "time": 3355.215909090909, "size": 50.0}, {"serializer": "SwiftProtobuf", "test_data": "message", "mode": "stream", "time": 9543.511111111111, "size": 50.0}, {"serializer": "SwiftAvroCore", "test_data": "message", "mode": "stream", "time": 53740.96703296703, "size": 44.0}, {"serializer": "SwiftProtobuf", "test_data": "document", "mode": "bytes", "time": 8767.342105263158, "size": 155.0}, {"serializer": "SwiftAvroCore", "test_data": "document", "mode": "bytes", "time": 135647.93023255814, "size": 114.0}, {"serializer": "FlatBuffers", "test_data": "document", "mode": "bytes", "time": 7603.273972602739, "size": 440.0}, {"serializer": "SwiftAvroCore", "test_data": "document", "mode": "stream", "time": 149144.6590909091, "size": 114.0}, {"serializer": "SwiftProtobuf", "test_data": "document", "mode": "stream", "time": 22926.345679012345, "size": 155.0}, {"serializer": "SwiftProtobuf", "test_data": "telemetry", "mode": "bytes", "time": 4161.939759036145, "size": 291.0}, {"serializer": "SwiftAvroCore", "test_data": "telemetry", "mode": "bytes", "time": 56433.03571428572, "size": 288.0}, {"serializer": "SwiftAvroCore", "test_data": "telemetry", "mode": "stream", "time": 79285.93902439025, "size": 288.0}, {"serializer": "SwiftProtobuf", "test_data": "telemetry", "mode": "stream", "time": 26433.703703703704, "size": 291.0}, {"serializer": "BinaryCodable", "test_data": "strings", "mode": "bytes", "time": 36637.39024390244, "size": 344.0}, {"serializer": "SwiftAvroCore", "test_data": "strings", "mode": "bytes", "time": 44240.77380952381, "size": 338.0}, {"serializer": "SwiftProtobuf", "test_data": "strings", "mode": "bytes", "time": 5101.471264367816, "size": 368.0}, {"serializer": "BinaryCodable", "test_data": "strings", "mode": "stream", "time": 61252.03846153846, "size": 344.0}, {"serializer": "SwiftAvroCore", "test_data": "strings", "mode": "stream", "time": 69811.21176470588, "size": 338.0}, {"serializer": "SwiftProtobuf", "test_data": "strings", "mode": "stream", "time": 32178.41176470588, "size": 368.0}, {"serializer": "SwiftAvroCore", "test_data": "event", "mode": "bytes", "time": 79232.13793103448, "size": 105.0}, {"serializer": "SwiftProtobuf", "test_data": "event", "mode": "bytes", "time": 6921.1973684210525, "size": 123.0}, {"serializer": "SwiftAvroCore", "test_data": "event", "mode": "stream", "time": 91979.74074074074, "size": 105.0}, {"serializer": "SwiftProtobuf", "test_data": "event", "mode": "stream", "time": 18240.831325301206, "size": 123.0}]} \ No newline at end of file diff --git a/dashboard/public/data/stats_swift_latest.json.gz b/dashboard/public/data/stats_swift_latest.json.gz new file mode 100644 index 00000000..69bdfabf Binary files /dev/null and b/dashboard/public/data/stats_swift_latest.json.gz differ diff --git a/dashboard/public/data/swift_latest.json.gz b/dashboard/public/data/swift_latest.json.gz index d3c90968..e844d4fc 100644 Binary files a/dashboard/public/data/swift_latest.json.gz and b/dashboard/public/data/swift_latest.json.gz differ diff --git a/dashboard/scripts/sync-data.py b/dashboard/scripts/sync-data.py index f47c06fa..48c6991e 100644 --- a/dashboard/scripts/sync-data.py +++ b/dashboard/scripts/sync-data.py @@ -102,26 +102,42 @@ def main(): except Exception as e: print(f"Error loading stats JSON: {e}") - # Plain stats JSON for cross-lang fetch (must stay in sync with reports/) + # Multi-policy stats as gzip only (schema 2.2; recommendation A). + # Dashboard prefers stats__latest.json.gz over plain JSON. dest_stats_path = os.path.join(target_data_dir, f"stats_{lang}_latest.json") + dest_stats_gz_path = os.path.join(target_data_dir, f"stats_{lang}_latest.json.gz") if stats_data: - print(f"Copying stats JSON to: {dest_stats_path}") - with open(dest_stats_path, "w", encoding="utf-8") as f: - json.dump(stats_data, f, indent=None) - elif os.path.exists(dest_stats_path): - # Drop outdated stats when reports has no file for this language - print(f"Removing stale stats file: {dest_stats_path}") - os.remove(dest_stats_path) - - # Assemble compact payload + stats_bytes = json.dumps(stats_data, indent=None, separators=(",", ":")).encode( + "utf-8" + ) + print(f"Writing gzipped stats to: {dest_stats_gz_path} ({len(stats_bytes)} raw bytes)") + with gzip.open(dest_stats_gz_path, "wb", compresslevel=9) as f: + f.write(stats_bytes) + # Remove plain JSON if present (avoid double storage in git) + if os.path.exists(dest_stats_path): + print(f"Removing plain stats file: {dest_stats_path}") + os.remove(dest_stats_path) + else: + for p in (dest_stats_path, dest_stats_gz_path): + if os.path.exists(p): + print(f"Removing stale stats file: {p}") + os.remove(p) + + # Assemble compact payload. + # Omit full CSV by default (multi-MB); set DASHBOARD_INCLUDE_CSV=1 to embed. + include_csv = os.environ.get("DASHBOARD_INCLUDE_CSV", "").strip() in ("1", "true", "yes") payload = { "language": lang, "run_id": latest_run, "stats": stats_data, "configs": configs_data, "errors": errors_data, - "csv_data": csv_data } + if include_csv: + payload["csv_data"] = csv_data + elif csv_data: + payload["csv_omitted"] = True + payload["csv_bytes"] = len(csv_data.encode("utf-8")) # Write as gzip-compressed JSON dest_gzip_path = os.path.join(target_data_dir, f"{lang}_latest.json.gz") diff --git a/dashboard/vite.config.js b/dashboard/vite.config.js index e8654146..b0f62491 100644 --- a/dashboard/vite.config.js +++ b/dashboard/vite.config.js @@ -1,9 +1,33 @@ import { defineConfig } from 'vite'; +import { existsSync, readdirSync, unlinkSync } from 'fs'; +import { resolve, join } from 'path'; +import { fileURLToPath } from 'url'; + +const __dirname = fileURLToPath(new URL('.', import.meta.url)); + +/** Remove prior hashed assets so docs/dashboard/assets does not accumulate orphans. */ +function cleanDashboardAssets() { + return { + name: 'clean-dashboard-assets', + buildStart() { + const assetsDir = resolve(__dirname, '../docs/dashboard/assets'); + if (!existsSync(assetsDir)) return; + for (const f of readdirSync(assetsDir)) { + try { + unlinkSync(join(assetsDir, f)); + } catch (_) { + /* ignore */ + } + } + }, + }; +} export default defineConfig({ base: './', + plugins: [cleanDashboardAssets()], build: { outDir: '../docs/dashboard', - emptyOutDir: false - } + emptyOutDir: false, + }, }); diff --git a/docs/analysis/ANALYSIS_METHODOLOGY.md b/docs/analysis/ANALYSIS_METHODOLOGY.md index d174cc07..8024f474 100644 --- a/docs/analysis/ANALYSIS_METHODOLOGY.md +++ b/docs/analysis/ANALYSIS_METHODOLOGY.md @@ -114,6 +114,29 @@ Default method: **[John Tukey](https://en.wikipedia.org/wiki/John_Tukey "John Tu Removed count: `outliers_removed`. Final `runs` is the same for serialize, deserialize, and total. IQR mainly stabilizes the **mean** against rare stalls; always look at dispersion and [confidence intervals](https://en.wikipedia.org/wiki/Confidence_interval "Confidence interval — range of plausible values for a parameter") too. +### Dashboard filter policies (multi-aggregation export) + +Machine-readable `stats__latest.json` (schema **2.2**, published as **`.json.gz`**) recomputes every group under **four fixed sample policies** so the dashboard can research outliers without re-running filters in the browser: + +| Policy id | Behavior | +|-----------|----------| +| `all` | Post-warmup only; no drop, no winsorize | +| `iqr_1.5` | Paired IQR with **k = 1.5** (canonical / default rankings) | +| `iqr_3` | Paired IQR with **k = 3** (looser fences) | +| `winsorize_5_95` | Clip each series at the 5th/95th percentile; **n** unchanged (`values_clipped` counts affected rows) | + +Export fields (compact): + +- `default_filter_policy` — usually `iqr_1.5` +- `filter_policies` — catalog once (label, description, method, k, …) +- `groups[]` — identity fields once + `variants.` metrics (no duplicated flat lists) +- per-variant `filter` — counts / fences / method only (labels live in the catalog) +- Pareto is **not** precomputed; the dashboard recalculates from the active policy metrics + +Published dashboard path: `dashboard/public/data/stats__latest.json.gz` (gzip of the same JSON). + +Markdown language pages still use the configured single `statistics.outlier_method` path (default IQR 1.5). The multi-policy pack is for the interactive dashboard **Samples** control. + ### Descriptive statistics (per group) | Kind | What we report | diff --git a/docs/analysis/METRICS.md b/docs/analysis/METRICS.md index 29be8004..05c552c5 100644 --- a/docs/analysis/METRICS.md +++ b/docs/analysis/METRICS.md @@ -75,6 +75,8 @@ After warmup drop and optional outlier filter, analysis groups rows by: | `total_ci_low_ns` / `total_ci_high_ns` | [Bootstrap](https://en.wikipedia.org/wiki/Bootstrapping_(statistics) "Bootstrapping (statistics)") [confidence interval](https://en.wikipedia.org/wiki/Confidence_interval "Confidence interval") on **mean** total | medium | — | | `avg_ops_per_sec` | `1e9 / total_mean_ns` | high (display) | **yes** | | `runs` / `runs_raw` / `warmup_skipped` / `outliers_removed` | Sample provenance | high | — | +| `values_clipped` | Rows touched by winsorize (0 for drop filters) | medium | — | +| `filter` | Policy provenance block (`policy`, `method`, `iqr_k`, fences, counts) | high (dashboard) | — | **Tip:** lower time is better; higher ops/s is better. Medians resist wild spikes better than means; means still matter for throughput.