Algostream_data_ingestion.Symbol_internPer-Domain string interning for symbols.
Avoids repeated allocation of identical symbol strings on the parser hot path. NOT thread-safe; each ingestion Domain owns its own table.
val create : ?initial_size:int -> unit -> tval intern : t -> string -> stringReturn the canonical interned copy of s. First call for a given value allocates; subsequent calls return the cached string.
val intern_bytes : t -> Stdlib.Bytes.t -> off:int -> len:int -> stringIntern a substring of b without first allocating an unbound copy. The implementation still allocates exactly once on first sighting.
val size : t -> int