onoma 0.0.15

A fast, language-agnostic semantic symbol indexer and typo-resistant fuzzy finder, enabling real-time search across virtually unlimited code symbols without the need for language servers.
Documentation
/// The default score for a resolved symbol, before any bonuses of penalties are applied.
///
/// Symbols who's calculated score is below this can be presumed to have incurred more penalties
/// than bonuses, and thus likely not a good match for a given query.
///
/// See [`resolver::utils::calculate_score`].
pub const DEFAULT_SCORE: i64 = 1000;

/// The number of seconds the Resolver thread will attempt to send a resolved
/// symbol back to the caller, before timing out and shutting down.
///
/// This number should be long enough to not prematurely shut down the resolving
/// thread while the caller is still alive and processing messages. But also not
/// too long that the Resolving thread is holding a connection in the sqlx pool
/// and starving future queries from being processed.
pub const RESOLVER_SEND_TIMEOUT_SECS: u64 = 2;

/// The minimum length a query must be for the clear intent scoring will be
/// applied: [`scoring::calculate_clear_intent_bonus`]
pub const MIN_CLEAR_INTENT_QUERY_LENGTH: u8 = 3;