RTCForge API Reference v1.1.1
    Preparing search index...

    Interface RingNode

    A node placed on a HashRing, with an optional relative weight.

    interface RingNode {
        id: string;
        weight?: number;
    }
    Index

    Properties

    Properties

    id: string

    Unique identifier for the node.

    weight?: number

    Relative weight controlling the share of keys routed to this node; higher weights attract proportionally more keys. Must be greater than 0.

    1