Skip to content

Tool for local SDK search index benchmark #8751

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 13, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions app/bin/tools/sdk_search_benchmark.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// Copyright (c) 2024, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

import 'package:pub_dev/search/flutter_sdk_mem_index.dart';

/// Loads a Dart SDK search snapshot and executes queries on it, benchmarking their total time to complete.
Future<void> main() async {
final index = await createFlutterSdkMemIndex();

// NOTE: please add more queries to this list, especially if there is a performance bottleneck.
final queries = [
'chart',
'json',
'camera',
'android camera',
'sql database',
];

final sw = Stopwatch()..start();
var count = 0;
for (var i = 0; i < 100; i++) {
index!.search(queries[i % queries.length]);
count++;
}
sw.stop();
print('${(sw.elapsedMilliseconds / count).toStringAsFixed(2)} ms/request');
}