@pond-ts/process API Reference
    Preparing search index...

    Function bind

    • Binds a dataset, producing a graph its plans resolve against.

      One graph per data binding — two instruments get two graphs and share no nodes, even though their specs produce identical ids.

      Parameters

      • series: TimeSeries<SeriesSchema>
      • options: {
            budgetBytes?: number;
            registry: Registry;
            units?: Readonly<Record<string, string>>;
        }
        • OptionalbudgetBytes?: number

          Cap on retained node values, in bytes — [PND-PROCCACHE]. Unbounded when omitted, which is the behaviour every existing caller has.

          Bytes rather than entries because entries are not the unit anyone has a limit in: one node over 1M rows outweighs fifty over 5,000. Enforced after each run, LRU, skipping any node whose consumer still holds its outlet.

        • registry: Registry
        • Optionalunits?: Readonly<Record<string, string>>

      Returns BoundGraph