QueryBuilder<O> |
QueryBuilder.cheapOnly() |
Only perform the cheapest optimizations, used to indicate that the query
will not be used much.
|
QueryBuilder<O> |
QueryBuilder.exactOnly() |
Only accept exact methods, no approximate methods.
|
QueryBuilder<O> |
QueryBuilder.linearOnly() |
Only build linear-scan queries, useful as reference for evaluation of
approximate methods.
|
QueryBuilder<O> |
QueryBuilder.noCache() |
Avoid caching optimizations such as computing a distance matrix, because
the results will be used to, e.g., build a similar data structure.
|
QueryBuilder<O> |
QueryBuilder.optimizedOnly() |
Only query for optimized functions, returning null otherwise.
|
QueryBuilder<O> |
QueryBuilder.precomputed() |
Indicate that the almost all pairwise distances / each objects knn will be
used multiple times, and results should be precomputed and cached.
|