Member Junction
    Preparing search index...

    Provides entity-level LIKE-based search using RunView + UserSearchString. Searches all entities where AllowUserSearchAPI=true, returning results with rank-based scores.

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    config: SearchProviderConfig = null

    Config from the SearchProvider metadata record, set during Initialize()

    SourceType: SearchSource = 'entity'

    Which search source this provider represents

    PerEntityFetchDepth: number = 15

    How many rows to fetch PER ENTITY as the relevance-ranking candidate pool. This is DELIBERATELY decoupled from the global topK budget (bug C3): previously the per-entity limit was topK / entityCount floored at 3, so with ~150 searchable entities each entity returned only ~3 arbitrary rows and real matches beyond row 3 were never fetched — and enabling MORE entities starved each one further. Now each entity contributes up to this many candidates; the engine still trims the fused, relevance-sorted result set back to topK, so the returned count is unchanged — we only widen the candidate pool per entity. Public + static so a deployment can tune it at startup (larger entity counts may lower it to bound the row-materialization cost of the parallel fan-out).

    Accessors

    Methods