We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ad7b48 commit ec21e29Copy full SHA for ec21e29
src/query/mod.rs
@@ -66,8 +66,8 @@ pub static QUERY_RUNTIME: Lazy<Runtime> =
66
Lazy::new(|| Runtime::new().expect("Runtime should be constructible"));
67
68
69
-/// This function executes a query on the dedicated runtime, ensuring that the query is not isolated to a single CPU
70
-/// at a time and has access to the entire thread, enabling better concurrent processing, and thus quicker results.
+/// This function executes a query on the dedicated runtime, ensuring that the query is not isolated to a single thread/CPU
+/// at a time and has access to the entire thread pool, enabling better concurrent processing, and thus quicker results.
71
pub async fn execute(
72
query: Query,
73
stream_name: &str,
0 commit comments